Skip to content

Instantly share code, notes, and snippets.

@ocefpaf
Created March 6, 2015 20:37
Show Gist options
  • Save ocefpaf/41e037957d3ebd9abeb2 to your computer and use it in GitHub Desktop.
Save ocefpaf/41e037957d3ebd9abeb2 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"worksheets": [
{
"cells": [
{
"metadata": {},
"cell_type": "code",
"input": "import iris\nimport pytz\nfrom datetime import datetime, timedelta\n\nfrom utilities import CF_names\n\nstop = datetime(2014, 7, 7, 12)\nstop = stop.replace(tzinfo=pytz.utc)\nstart = stop - timedelta(days=7)\n\nbbox = [-87.40, 24.25, -74.70, 36.70]\n\nname_list = CF_names['sea_water_temperature']\n\nunits = iris.unit.Unit('celsius')",
"prompt_number": 1,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "import warnings\nfrom utilities import quick_load_cubes, proc_cube\n\nurl = (\"http://tds.marine.rutgers.edu/thredds/dodsC/roms/espresso/2013_da/his_Best/\"\n \"ESPRESSO_Real-Time_v2_History_Best_Available_best.ncd\")\n\nwith warnings.catch_warnings():\n warnings.simplefilter(\"ignore\") # Suppress iris warnings.\n cube = quick_load_cubes(url, name_list, callback=None, strict=True)\n cube = proc_cube(cube, bbox=bbox, time=(start, stop), units=units)",
"prompt_number": 2,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "import numpy.ma as ma\nc = cube[-1, -1, ...]\n\nc.data = ma.masked_invalid(c.data)",
"prompt_number": 3,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "%matplotlib inline\nimport cartopy.crs as ccrs\nimport matplotlib.pyplot as plt\nfrom cartopy.feature import NaturalEarthFeature\nfrom cartopy.mpl.gridliner import LONGITUDE_FORMATTER, LATITUDE_FORMATTER\n\nstates = NaturalEarthFeature(category='cultural', scale='50m', facecolor='none',\n name='admin_1_states_provinces_shp')\n\ndef make_map(projection=ccrs.PlateCarree()):\n fig, ax = plt.subplots(figsize=(8, 6),\n subplot_kw=dict(projection=projection))\n ax.coastlines(resolution='50m')\n gl = ax.gridlines(draw_labels=True)\n gl.xlabels_top = gl.ylabels_right = False\n gl.xformatter = LONGITUDE_FORMATTER\n gl.yformatter = LATITUDE_FORMATTER\n return fig, ax",
"prompt_number": 4,
"outputs": [],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "lon = c.coord(axis='X').points\nlat = c.coord(axis='Y').points\n\nextent = (lon.min(), lon.max(),\n lat.min(), lat.max())\n\n\nfig, ax = make_map()\nax.set_extent(extent)\ncs = ax.pcolormesh(lon, lat, c.data)\nax.plot(-76.67, 34.72, 'k*')\n_ = ax.add_feature(states, edgecolor='gray')",
"prompt_number": 5,
"outputs": [
{
"png": "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\nQBP5//LWTDh9vTDuAAAAAElFTkSuQmCC\n",
"text": "<matplotlib.figure.Figure at 0x7f68056bce90>",
"output_type": "display_data",
"metadata": {}
}
],
"language": "python",
"trusted": true,
"collapsed": false
},
{
"metadata": {},
"cell_type": "code",
"input": "import mplleaflet\n\n\nfig, ax = plt.subplots()\ncs = ax.pcolormesh(lon, lat, c.data)\n\nax.plot(-76.67, 34.72, 'k*')\nmplleaflet.display(fig)",
"prompt_number": 6,
"outputs": [
{
"text": "<IPython.core.display.HTML at 0x7f67d80d0fd0>",
"html": "<head>\n <link rel=\"stylesheet\" href=\"http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css\" />\n <script src=\"http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js\"></script>\n <style>\n .leaflet-container .leaflet-tile {\n margin: 0;\n }\n #mape36e674c1f5148cdbfe66045661b36a7 {\n height:320.0px;\n }\n </style> \n</head>\n<body>\n <div id=\"mape36e674c1f5148cdbfe66045661b36a7\"></div>\n<script text=\"text/javascript\">\nfunce36e674c1f5148cdbfe66045661b36a7 = function() {\nvar map = L.map('mape36e674c1f5148cdbfe66045661b36a7');\nL.tileLayer(\n \"http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png\",\n {maxZoom:19, attribution: '<a href=\"https://github.com/jwass/mplleaflet\">mplleaflet</a> | Map data (c) <a href=\"http://openstreetmap.org\">OpenStreetMap</a> contributors'}).addTo(map);\nvar gjData = {\"type\": \"FeatureCollection\", \"features\": [{\"geometry\": {\"type\": \"Point\", \"coordinates\": [-76.670000000000002, 34.719999999999999]}, \"type\": \"Feature\", \"properties\": {\"anchor_x\": 3.9999999999999996, \"html\": \"<svg width=\\\"8px\\\" height=\\\"7px\\\" viewBox=\\\"-4.0 -3.21352549156 8.0 7.0\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" version=\\\"1.1\\\"> <path d=\\\"M 1.83697019872e-16 3.0 L -0.673541945031 0.92705095582 L -2.85316954889 0.927050983125 L -1.08981375991 -0.35410195582 L -1.76335575688 -2.42705098312 L -2.10498047677e-16 -1.145898 L 1.76335575688 -2.42705098312 L 1.08981375991 -0.35410195582 L 2.85316954889 0.927050983125 L 0.673541945031 0.92705095582 Z\\\" fill-opacity=\\\"1\\\" stroke=\\\"#000000\\\" stroke-width=\\\"0.5\\\" stroke-opacity=\\\"1\\\" fill=\\\"#000000\\\" /></svg>\", \"anchor_y\": 3.2135254915624212}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8382859932547, 33.744605290701315], [-75.77521778061383, 33.79426702695166], [-75.8215081639205, 33.834601023389695], [-75.88457871901879, 33.78496306522733], [-75.8382859932547, 33.744605290701315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77521778061383, 33.79426702695166], [-75.71214909387969, 33.843907826209154], [-75.7584371770887, 33.884217995721556], [-75.8215081639205, 33.834601023389695], [-75.77521778061383, 33.79426702695166]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF1D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.71214909387969, 33.843907826209154], [-75.64907989836253, 33.89352615649872], [-75.69536572693312, 33.93381244667433], [-75.7584371770887, 33.884217995721556], [-75.71214909387969, 33.843907826209154]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64907989836253, 33.89352615649872], [-75.58600971551957, 33.943102560968], [-75.63229337772404, 33.9833648711265], [-75.69536572693312, 33.93381244667433], [-75.64907989836253, 33.89352615649872]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58600971551957, 33.943102560968], [-75.52293902417514, 33.99265797592256], [-75.5692205655323, 34.03289625454327], [-75.63229337772404, 33.9833648711265], [-75.58600971551957, 33.943102560968]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52293902417514, 33.99265797592256], [-75.45986774857154, 34.04218932731838], [-75.50614722138656, 34.08240351523416], [-75.5692205655323, 34.03289625454327], [-75.52293902417514, 33.99265797592256]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45986774857154, 34.04218932731838], [-75.39679546703042, 34.09168017069349], [-75.44307296155498, 34.131870166430964], [-75.50614722138656, 34.08240351523416], [-75.45986774857154, 34.04218932731838]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39679546703042, 34.09168017069349], [-75.33372265594647, 34.141149961565354], [-75.37999821982122, 34.18131571175081], [-75.44307296155498, 34.131870166430964], [-75.39679546703042, 34.09168017069349]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33372265594647, 34.141149961565354], [-75.27064919751614, 34.19059407251621], [-75.31692288900686, 34.23073551191125], [-75.37999821982122, 34.18131571175081], [-75.33372265594647, 34.141149961565354]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27064919751614, 34.19059407251621], [-75.20757474564087, 34.239999080964694], [-75.25384665456265, 34.280116109251736], [-75.31692288900686, 34.23073551191125], [-75.27064919751614, 34.19059407251621]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20757474564087, 34.239999080964694], [-75.14449975666244, 34.28938296336931], [-75.19076993179809, 34.32947552609844], [-75.25384665456265, 34.280116109251736], [-75.20757474564087, 34.239999080964694]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14449975666244, 34.28938296336931], [-75.08142407295607, 34.33873952512792], [-75.1276925774863, 34.37880755179224], [-75.19076993179809, 34.32947552609844], [-75.14449975666244, 34.28938296336931]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08142407295607, 34.33873952512792], [-75.0183474360693, 34.388058380239], [-75.06461435734361, 34.428101773303595], [-75.1276925774863, 34.37880755179224], [-75.08142407295607, 34.33873952512792]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0183474360693, 34.388058380239], [-74.9552702677949, 34.43735602537816], [-75.00153565484337, 34.47737473001971], [-75.06461435734361, 34.428101773303595], [-75.0183474360693, 34.388058380239]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.9552702677949, 34.43735602537816], [-74.892192375961, 34.48662468256354], [-74.93845629573501, 34.52661862387694], [-75.00153565484337, 34.47737473001971], [-74.9552702677949, 34.43735602537816]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.892192375961, 34.48662468256354], [-74.82911359510852, 34.53585702233047], [-74.87537613086836, 34.57582610685746], [-74.93845629573501, 34.52661862387694], [-74.892192375961, 34.48662468256354]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.82911359510852, 34.53585702233047], [-74.76603430140058, 34.58506805817078], [-74.81229550163033, 34.62501223133075], [-74.87537613086836, 34.57582610685746], [-74.82911359510852, 34.53585702233047]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.76603430140058, 34.58506805817078], [-74.70295427620269, 34.6342484103289], [-74.74921421043747, 34.674167593711225], [-74.81229550163033, 34.62501223133075], [-74.76603430140058, 34.58506805817078]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.70295427620269, 34.6342484103289], [-74.63987344588152, 34.68339383092653], [-74.68613219206435, 34.723287936122205], [-74.74921421043747, 34.674167593711225], [-74.70295427620269, 34.6342484103289]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63987344588152, 34.68339383092653], [-74.57679213340579, 34.73251784411948], [-74.62304973879122, 34.77238681731428], [-74.68613219206435, 34.723287936122205], [-74.63987344588152, 34.68339383092653]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.57679213340579, 34.73251784411948], [-74.5137101042834, 34.781609448008325], [-74.55996663980666, 34.82145320816411], [-74.62304973879122, 34.77238681731428], [-74.57679213340579, 34.73251784411948]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5137101042834, 34.781609448008325], [-74.45062736942651, 34.83066750612649], [-74.4968829068507, 34.87048597056203], [-74.55996663980666, 34.82145320816411], [-74.5137101042834, 34.781609448008325]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.45062736942651, 34.83066750612649], [-74.38754419450964, 34.879704044434256], [-74.43379877928678, 34.919497160533396], [-74.4968829068507, 34.87048597056203], [-74.45062736942651, 34.83066750612649]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.38754419450964, 34.879704044434256], [-74.32446034199754, 34.92870641677776], [-74.37071404531807, 34.96847410170979], [-74.43379877928678, 34.919497160533396], [-74.38754419450964, 34.879704044434256]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.32446034199754, 34.92870641677776], [-74.26137589448379, 34.97767663229351], [-74.307628781391, 35.017418809526085], [-74.37071404531807, 34.96847410170979], [-74.32446034199754, 34.92870641677776]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.26137589448379, 34.97767663229351], [-74.19829105955034, 35.0266252073103], [-74.24454317322599, 35.06634182576968], [-74.307628781391, 35.017418809526085], [-74.26137589448379, 34.97767663229351]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.19829105955034, 35.0266252073103], [-74.13520561133402, 35.075537827797916], [-74.18145702214213, 35.11522880363352], [-74.24454317322599, 35.06634182576968], [-74.19829105955034, 35.0266252073103]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.13520561133402, 35.075537827797916], [-74.07211968625485, 35.12441968660092], [-74.118370452253, 35.16408494963398], [-74.18145702214213, 35.11522880363352], [-74.13520561133402, 35.075537827797916]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.07211968625485, 35.12441968660092], [-74.00903343606632, 35.17327977659118], [-74.05528359779494, 35.212919277555095], [-74.118370452253, 35.16408494963398], [-74.07211968625485, 35.12441968660092]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.00903343606632, 35.17327977659118], [-73.94594666290442, 35.2221020909392], [-73.99219628889679, 35.26171574566258], [-74.05528359779494, 35.212919277555095], [-74.00903343606632, 35.17327977659118]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.94594666290442, 35.2221020909392], [-73.88285953477649, 35.270895047760256], [-73.92910867606308, 35.310482792447615], [-73.99219628889679, 35.26171574566258], [-73.94594666290442, 35.2221020909392]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.88285953477649, 35.270895047760256], [-73.81977215265249, 35.31966610047154], [-73.86602084684651, 35.359227887857976], [-73.92910867606308, 35.310482792447615], [-73.88285953477649, 35.270895047760256]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.81977215265249, 35.31966610047154], [-73.75668436434778, 35.368397523402784], [-73.8029326772311, 35.407933269617004], [-73.86602084684651, 35.359227887857976], [-73.81977215265249, 35.31966610047154]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.75668436434778, 35.368397523402784], [-73.69359634341794, 35.41710100453019], [-73.73984431912983, 35.45661065205347], [-73.8029326772311, 35.407933269617004], [-73.75668436434778, 35.368397523402784]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.69359634341794, 35.41710100453019], [-73.63050814757696, 35.465782439872676], [-73.6767558205904, 35.50526594357652], [-73.73984431912983, 35.45661065205347], [-73.69359634341794, 35.41710100453019]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.63050814757696, 35.465782439872676], [-73.56741968913097, 35.51442235790931], [-73.61366712163806, 35.553879634766034], [-73.6767558205904, 35.50526594357652], [-73.63050814757696, 35.465782439872676]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.56741968913097, 35.51442235790931], [-73.50433111788116, 35.56303576371013], [-73.550578347401, 35.60246676226977], [-73.61366712163806, 35.553879634766034], [-73.56741968913097, 35.51442235790931]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88457871901879, 33.78496306522733], [-75.8215081639205, 33.834601023389695], [-75.86779988308999, 33.87491562304262], [-75.93087273714461, 33.825301452210525], [-75.88457871901879, 33.78496306522733]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8215081639205, 33.834601023389695], [-75.7584371770887, 33.884217995721556], [-75.80472663647195, 33.924508761949575], [-75.86779988308999, 33.87491562304262], [-75.8215081639205, 33.834601023389695]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7584371770887, 33.884217995721556], [-75.69536572693312, 33.93381244667433], [-75.74165296856636, 33.97407933001005], [-75.80472663647195, 33.924508761949575], [-75.7584371770887, 33.884217995721556]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69536572693312, 33.93381244667433], [-75.63229337772404, 33.9833648711265], [-75.6785784833296, 34.023607776524315], [-75.74165296856636, 33.97407933001005], [-75.69536572693312, 33.93381244667433]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.63229337772404, 33.9833648711265], [-75.5692205655323, 34.03289625454327], [-75.61550357729939, 34.07311513334911], [-75.6785784833296, 34.023607776524315], [-75.63229337772404, 33.9833648711265]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5692205655323, 34.03289625454327], [-75.50614722138656, 34.08240351523416], [-75.55242818779865, 34.12259831157148], [-75.61550357729939, 34.07311513334911], [-75.5692205655323, 34.03289625454327]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.50614722138656, 34.08240351523416], [-75.44307296155498, 34.131870166430964], [-75.48935196637487, 34.172040784421235], [-75.55242818779865, 34.12259831157148], [-75.50614722138656, 34.08240351523416]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.44307296155498, 34.131870166430964], [-75.37999821982122, 34.18131571175081], [-75.4262753073128, 34.22146210093655], [-75.48935196637487, 34.172040784421235], [-75.44307296155498, 34.131870166430964]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37999821982122, 34.18131571175081], [-75.31692288900686, 34.23073551191125], [-75.3631981133161, 34.27085761061308], [-75.4262753073128, 34.22146210093655], [-75.37999821982122, 34.18131571175081]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.31692288900686, 34.23073551191125], [-75.25384665456265, 34.280116109251736], [-75.30012009926224, 34.32021382255786], [-75.3631981133161, 34.27085761061308], [-75.31692288900686, 34.23073551191125]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25384665456265, 34.280116109251736], [-75.19076993179809, 34.32947552609844], [-75.23704164232664, 34.36954880246179], [-75.30012009926224, 34.32021382255786], [-75.25384665456265, 34.280116109251736]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19076993179809, 34.32947552609844], [-75.1276925774863, 34.37880755179224], [-75.17396261270996, 34.418856324453515], [-75.23704164232664, 34.36954880246179], [-75.19076993179809, 34.32947552609844]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1276925774863, 34.37880755179224], [-75.06461435734361, 34.428101773303595], [-75.11088279875253, 34.46812594983532], [-75.17396261270996, 34.418856324453515], [-75.1276925774863, 34.37880755179224]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06461435734361, 34.428101773303595], [-75.00153565484337, 34.47737473001971], [-75.0478025482204, 34.51737425843748], [-75.11088279875253, 34.46812594983532], [-75.06461435734361, 34.428101773303595]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00153565484337, 34.47737473001971], [-74.93845629573501, 34.52661862387694], [-74.98472170362105, 34.56659343313631], [-75.0478025482204, 34.51737425843748], [-75.00153565484337, 34.47737473001971]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.93845629573501, 34.52661862387694], [-74.87537613086836, 34.57582610685746], [-74.92164013113742, 34.61577610823765], [-74.98472170362105, 34.56659343313631], [-74.93845629573501, 34.52661862387694]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87537613086836, 34.57582610685746], [-74.81229550163033, 34.62501223133075], [-74.85855813966548, 34.66493737298805], [-74.92164013113742, 34.61577610823765], [-74.87537613086836, 34.57582610685746]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.81229550163033, 34.62501223133075], [-74.74921421043747, 34.674167593711225], [-74.79547555135605, 34.714067801142], [-74.85855813966548, 34.66493737298805], [-74.81229550163033, 34.62501223133075]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.74921421043747, 34.674167593711225], [-74.68613219206435, 34.723287936122205], [-74.73239230894515, 34.76316312524606], [-74.79547555135605, 34.714067801142], [-74.74921421043747, 34.674167593711225]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.68613219206435, 34.723287936122205], [-74.62304973879122, 34.77238681731428], [-74.66930867596837, 34.812236936925956], [-74.73239230894515, 34.76316312524606], [-74.68613219206435, 34.723287936122205]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.62304973879122, 34.77238681731428], [-74.55996663980666, 34.82145320816411], [-74.6062244638654, 34.861278181123524], [-74.66930867596837, 34.812236936925956], [-74.62304973879122, 34.77238681731428]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.55996663980666, 34.82145320816411], [-74.4968829068507, 34.87048597056203], [-74.54313968522757, 34.91028571809535], [-74.6062244638654, 34.861278181123524], [-74.55996663980666, 34.82145320816411]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.4968829068507, 34.87048597056203], [-74.43379877928678, 34.919497160533396], [-74.4800545547149, 34.959271632490214], [-74.54313968522757, 34.91028571809535], [-74.4968829068507, 34.87048597056203]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.43379877928678, 34.919497160533396], [-74.37071404531807, 34.96847410170979], [-74.41696888476531, 35.00822321910612], [-74.4800545547149, 34.959271632490214], [-74.43379877928678, 34.919497160533396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.37071404531807, 34.96847410170979], [-74.307628781391, 35.017418809526085], [-74.35388274610162, 35.05714249932376], [-74.41696888476531, 35.00822321910612], [-74.37071404531807, 34.96847410170979]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.307628781391, 35.017418809526085], [-74.24454317322599, 35.06634182576968], [-74.29079630387426, 35.10604003921122], [-74.35388274610162, 35.05714249932376], [-74.307628781391, 35.017418809526085]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.24454317322599, 35.06634182576968], [-74.18145702214213, 35.11522880363352], [-74.22770938504053, 35.154901460634335], [-74.29079630387426, 35.10604003921122], [-74.24454317322599, 35.06634182576968]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.18145702214213, 35.11522880363352], [-74.118370452253, 35.16408494963398], [-74.16462210215924, 35.2037319831185], [-74.22770938504053, 35.154901460634335], [-74.18145702214213, 35.11522880363352]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.118370452253, 35.16408494963398], [-74.05528359779494, 35.212919277555095], [-74.1015345729538, 35.252540640424606], [-74.16462210215924, 35.2037319831185], [-74.118370452253, 35.16408494963398]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.05528359779494, 35.212919277555095], [-73.99219628889679, 35.26171574566258], [-74.03844665399012, 35.30131135741382], [-74.1015345729538, 35.252540640424606], [-74.05528359779494, 35.212919277555095]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.99219628889679, 35.26171574566258], [-73.92910867606308, 35.310482792447615], [-73.97535847928032, 35.35005259202849], [-74.03844665399012, 35.30131135741382], [-73.99219628889679, 35.26171574566258]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.92910867606308, 35.310482792447615], [-73.86602084684651, 35.359227887857976], [-73.91227012371066, 35.3987718300298], [-73.97535847928032, 35.35005259202849], [-73.92910867606308, 35.310482792447615]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.86602084684651, 35.359227887857976], [-73.8029326772311, 35.407933269617004], [-73.84918148988785, 35.447451274072655], [-73.91227012371066, 35.3987718300298], [-73.86602084684651, 35.359227887857976]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.8029326772311, 35.407933269617004], [-73.73984431912983, 35.45661065205347], [-73.78609270928958, 35.49610266369375], [-73.84918148988785, 35.447451274072655], [-73.8029326772311, 35.407933269617004]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.73984431912983, 35.45661065205347], [-73.6767558205904, 35.50526594357652], [-73.72300382082973, 35.54473191916821], [-73.78609270928958, 35.49610266369375], [-73.73984431912983, 35.45661065205347]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.6767558205904, 35.50526594357652], [-73.61366712163806, 35.553879634766034], [-73.65991479073202, 35.59331949474505], [-73.72300382082973, 35.54473191916821], [-73.6767558205904, 35.50526594357652]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.61366712163806, 35.553879634766034], [-73.550578347401, 35.60246676226977], [-73.59682572080305, 35.64188045731909], [-73.65991479073202, 35.59331949474505], [-73.61366712163806, 35.553879634766034]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93087273714461, 33.825301452210525], [-75.86779988308999, 33.87491562304262], [-75.91409281697182, 33.91521092123064], [-75.97716793052295, 33.865620543222775], [-75.93087273714461, 33.825301452210525]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.86779988308999, 33.87491562304262], [-75.80472663647195, 33.924508761949575], [-75.85101734709598, 33.96478022375369], [-75.91409281697182, 33.91521092123064], [-75.86779988308999, 33.87491562304262]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80472663647195, 33.924508761949575], [-75.74165296856636, 33.97407933001005], [-75.78794149482287, 34.01432690868331], [-75.85101734709598, 33.96478022375369], [-75.80472663647195, 33.924508761949575]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74165296856636, 33.97407933001005], [-75.6785784833296, 34.023607776524315], [-75.72486490090719, 34.06383138224116], [-75.78794149482287, 34.01432690868331], [-75.74165296856636, 33.97407933001005]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6785784833296, 34.023607776524315], [-75.61550357729939, 34.07311513334911], [-75.66178792531325, 34.11331472011743], [-75.72486490090719, 34.06383138224116], [-75.6785784833296, 34.023607776524315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61550357729939, 34.07311513334911], [-75.55242818779865, 34.12259831157148], [-75.5987105112031, 34.162773826570906], [-75.66178792531325, 34.11331472011743], [-75.61550357729939, 34.07311513334911]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.55242818779865, 34.12259831157148], [-75.48935196637487, 34.172040784421235], [-75.53563234292506, 34.21219213698358], [-75.5987105112031, 34.162773826570906], [-75.55242818779865, 34.12259831157148]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48935196637487, 34.172040784421235], [-75.4262753073128, 34.22146210093655], [-75.47255377813936, 34.26158924332659], [-75.53563234292506, 34.21219213698358], [-75.48935196637487, 34.172040784421235]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4262753073128, 34.22146210093655], [-75.3631981133161, 34.27085761061308], [-75.40947472874062, 34.31096048447505], [-75.47255377813936, 34.26158924332659], [-75.4262753073128, 34.22146210093655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3631981133161, 34.27085761061308], [-75.30012009926224, 34.32021382255786], [-75.34639493704694, 34.360292338042825], [-75.40947472874062, 34.31096048447505], [-75.3631981133161, 34.27085761061308]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30012009926224, 34.32021382255786], [-75.23704164232664, 34.36954880246179], [-75.28331474479029, 34.40960291074766], [-75.34639493704694, 34.360292338042825], [-75.30012009926224, 34.32021382255786]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.23704164232664, 34.36954880246179], [-75.17396261270996, 34.418856324453515], [-75.22023403469119, 34.45888596230121], [-75.28331474479029, 34.40960291074766], [-75.23704164232664, 34.36954880246179]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.17396261270996, 34.418856324453515], [-75.11088279875253, 34.46812594983532], [-75.15715261625647, 34.508131029629595], [-75.22023403469119, 34.45888596230121], [-75.17396261270996, 34.418856324453515]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11088279875253, 34.46812594983532], [-75.0478025482204, 34.51737425843748], [-75.09407080398383, 34.557354730874486], [-75.15715261625647, 34.508131029629595], [-75.11088279875253, 34.46812594983532]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0478025482204, 34.51737425843748], [-74.98472170362105, 34.56659343313631], [-75.03098845604377, 34.60654923082037], [-75.09407080398383, 34.557354730874486], [-75.0478025482204, 34.51737425843748]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98472170362105, 34.56659343313631], [-74.92164013113742, 34.61577610823765], [-74.96790545302125, 34.65570714693948], [-75.03098845604377, 34.60654923082037], [-74.98472170362105, 34.56659343313631]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.92164013113742, 34.61577610823765], [-74.85855813966548, 34.66493737298805], [-74.90482207346768, 34.70484360346396], [-74.96790545302125, 34.65570714693948], [-74.92164013113742, 34.61577610823765]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.85855813966548, 34.66493737298805], [-74.79547555135605, 34.714067801142], [-74.84173815802124, 34.753949152604314], [-74.90482207346768, 34.70484360346396], [-74.85855813966548, 34.66493737298805]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.79547555135605, 34.714067801142], [-74.73239230894515, 34.76316312524606], [-74.77865365694379, 34.8030195177445], [-74.84173815802124, 34.753949152604314], [-74.79547555135605, 34.714067801142]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.73239230894515, 34.76316312524606], [-74.66930867596837, 34.812236936925956], [-74.71556880686295, 34.852068321749066], [-74.77865365694379, 34.8030195177445], [-74.73239230894515, 34.76316312524606]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.66930867596837, 34.812236936925956], [-74.6062244638654, 34.861278181123524], [-74.65248344010735, 34.90108448486253], [-74.71556880686295, 34.852068321749066], [-74.66930867596837, 34.812236936925956]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.6062244638654, 34.861278181123524], [-74.54313968522757, 34.91028571809535], [-74.58939757012928, 34.9500668657288], [-74.65248344010735, 34.90108448486253], [-74.6062244638654, 34.861278181123524]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.54313968522757, 34.91028571809535], [-74.4800545547149, 34.959271632490214], [-74.52631138841399, 34.99902757623919], [-74.58939757012928, 34.9500668657288], [-74.54313968522757, 34.91028571809535]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.4800545547149, 34.959271632490214], [-74.41696888476531, 35.00822321910612], [-74.46322473019222, 35.04795388369257], [-74.52631138841399, 34.99902757623919], [-74.4800545547149, 34.959271632490214]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.41696888476531, 35.00822321910612], [-74.35388274610162, 35.05714249932376], [-74.40013766085714, 35.096847815086555], [-74.46322473019222, 35.04795388369257], [-74.41696888476531, 35.00822321910612]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.35388274610162, 35.05714249932376], [-74.29079630387426, 35.10604003921122], [-74.33705032622477, 35.145719959634356], [-74.40013766085714, 35.096847815086555], [-74.35388274610162, 35.05714249932376]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.29079630387426, 35.10604003921122], [-74.22770938504053, 35.154901460634335], [-74.27396257740122, 35.194555909284375], [-74.33705032622477, 35.145719959634356], [-74.29079630387426, 35.10604003921122]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.22770938504053, 35.154901460634335], [-74.16462210215924, 35.2037319831185], [-74.21087451610393, 35.243360895937776], [-74.27396257740122, 35.194555909284375], [-74.22770938504053, 35.154901460634335]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.16462210215924, 35.2037319831185], [-74.1015345729538, 35.252540640424606], [-74.14778624451023, 35.29214397242482], [-74.21087451610393, 35.243360895937776], [-74.16462210215924, 35.2037319831185]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.1015345729538, 35.252540640424606], [-74.03844665399012, 35.30131135741382], [-74.0846976441131, 35.34088903166982], [-74.14778624451023, 35.29214397242482], [-74.1015345729538, 35.252540640424606]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.03844665399012, 35.30131135741382], [-73.97535847928032, 35.35005259202849], [-74.02160883340214, 35.38960455017208], [-74.0846976441131, 35.34088903166982], [-74.03844665399012, 35.30131135741382]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.97535847928032, 35.35005259202849], [-73.91227012371066, 35.3987718300298], [-73.95851987532444, 35.438298028806045], [-74.02160883340214, 35.38960455017208], [-73.97535847928032, 35.35005259202849]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.91227012371066, 35.3987718300298], [-73.84918148988785, 35.447451274072655], [-73.89543069760052, 35.48695163667124], [-73.95851987532444, 35.438298028806045], [-73.91227012371066, 35.3987718300298]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.84918148988785, 35.447451274072655], [-73.78609270928958, 35.49610266369375], [-73.83234141244147, 35.535577137395705], [-73.89543069760052, 35.48695163667124], [-73.84918148988785, 35.447451274072655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.78609270928958, 35.49610266369375], [-73.72300382082973, 35.54473191916821], [-73.76925205014595, 35.5841804626058], [-73.83234141244147, 35.535577137395705], [-73.78609270928958, 35.49610266369375]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.72300382082973, 35.54473191916821], [-73.65991479073202, 35.59331949474505], [-73.7061626016444, 35.63274203177038], [-73.76925205014595, 35.5841804626058], [-73.72300382082973, 35.54473191916821]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.65991479073202, 35.59331949474505], [-73.59682572080305, 35.64188045731909], [-73.64307314673914, 35.681276940723976], [-73.7061626016444, 35.63274203177038], [-73.65991479073202, 35.59331949474505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97716793052295, 33.865620543222775], [-75.91409281697182, 33.91521092123064], [-75.96038685352039, 33.95548700547518], [-76.02346419092139, 33.90592042224624], [-75.97716793052295, 33.865620543222775]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91409281697182, 33.91521092123064], [-75.85101734709598, 33.96478022375369], [-75.8973091933357, 34.005032472006384], [-75.96038685352039, 33.95548700547518], [-75.91409281697182, 33.91521092123064]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.85101734709598, 33.96478022375369], [-75.78794149482287, 34.01432690868331], [-75.834231186749, 34.05455527671562], [-75.8973091933357, 34.005032472006384], [-75.85101734709598, 33.96478022375369]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.78794149482287, 34.01432690868331], [-75.72486490090719, 34.06383138224116], [-75.77115250864341, 34.10403578507095], [-75.834231186749, 34.05455527671562], [-75.78794149482287, 34.01432690868331]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72486490090719, 34.06383138224116], [-75.66178792531325, 34.11331472011743], [-75.70807348513341, 34.153495114227965], [-75.77115250864341, 34.10403578507095], [-75.72486490090719, 34.06383138224116]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66178792531325, 34.11331472011743], [-75.5987105112031, 34.162773826570906], [-75.6449940647991, 34.202930161984355], [-75.70807348513341, 34.153495114227965], [-75.66178792531325, 34.11331472011743]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5987105112031, 34.162773826570906], [-75.53563234292506, 34.21219213698358], [-75.58191396248527, 34.25232432789002], [-75.6449940647991, 34.202930161984355], [-75.5987105112031, 34.162773826570906]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53563234292506, 34.21219213698358], [-75.47255377813936, 34.26158924332659], [-75.5188335018847, 34.301697244534836], [-75.58191396248527, 34.25232432789002], [-75.53563234292506, 34.21219213698358]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.47255377813936, 34.26158924332659], [-75.40947472874062, 34.31096048447505], [-75.45575260344012, 34.35104424073652], [-75.5188335018847, 34.301697244534836], [-75.47255377813936, 34.26158924332659]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40947472874062, 34.31096048447505], [-75.34639493704694, 34.360292338042825], [-75.39267103505122, 34.40035176425454], [-75.45575260344012, 34.35104424073652], [-75.40947472874062, 34.31096048447505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34639493704694, 34.360292338042825], [-75.28331474479029, 34.40960291074766], [-75.32958910550666, 34.44963796064753], [-75.39267103505122, 34.40035176425454], [-75.34639493704694, 34.360292338042825]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28331474479029, 34.40960291074766], [-75.22023403469119, 34.45888596230121], [-75.26650670919747, 34.4988965759593], [-75.32958910550666, 34.44963796064753], [-75.28331474479029, 34.40960291074766]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22023403469119, 34.45888596230121], [-75.15715261625647, 34.508131029629595], [-75.20342367542187, 34.54811712396722], [-75.26650670919747, 34.4988965759593], [-75.22023403469119, 34.45888596230121]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.15715261625647, 34.508131029629595], [-75.09407080398383, 34.557354730874486], [-75.14034028768745, 34.597316259120035], [-75.20342367542187, 34.54811712396722], [-75.15715261625647, 34.508131029629595]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.09407080398383, 34.557354730874486], [-75.03098845604377, 34.60654923082037], [-75.07725641879748, 34.64648612902796], [-75.14034028768745, 34.597316259120035], [-75.09407080398383, 34.557354730874486]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.03098845604377, 34.60654923082037], [-74.96790545302125, 34.65570714693948], [-75.01417196285114, 34.69561933513909], [-75.07725641879748, 34.64648612902796], [-75.03098845604377, 34.60654923082037]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.96790545302125, 34.65570714693948], [-74.90482207346768, 34.70484360346396], [-74.95108717007153, 34.7447310348821], [-75.01417196285114, 34.69561933513909], [-74.96790545302125, 34.65570714693948]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.90482207346768, 34.70484360346396], [-74.84173815802124, 34.753949152604314], [-74.88800189840376, 34.793811759987655], [-74.95108717007153, 34.7447310348821], [-74.90482207346768, 34.70484360346396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.84173815802124, 34.753949152604314], [-74.77865365694379, 34.8030195177445], [-74.82491610521171, 34.84285722508295], [-74.88800189840376, 34.793811759987655], [-74.84173815802124, 34.753949152604314]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.77865365694379, 34.8030195177445], [-74.71556880686295, 34.852068321749066], [-74.76183000195023, 34.8918810827143], [-74.82491610521171, 34.84285722508295], [-74.77865365694379, 34.8030195177445]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.71556880686295, 34.852068321749066], [-74.65248344010735, 34.90108448486253], [-74.69874344053989, 34.94087222961637], [-74.76183000195023, 34.8918810827143], [-74.71556880686295, 34.852068321749066]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.65248344010735, 34.90108448486253], [-74.58939757012928, 34.9500668657288], [-74.63565643529189, 34.98982952285134], [-74.69874344053989, 34.94087222961637], [-74.65248344010735, 34.90108448486253]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.58939757012928, 34.9500668657288], [-74.52631138841399, 34.99902757623919], [-74.572569155969, 35.03876510023111], [-74.63565643529189, 34.98982952285134], [-74.58939757012928, 34.9500668657288]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.52631138841399, 34.99902757623919], [-74.46322473019222, 35.04795388369257], [-74.50948145921403, 35.08766620284368], [-74.572569155969, 35.03876510023111], [-74.52631138841399, 34.99902757623919]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.46322473019222, 35.04795388369257], [-74.40013766085714, 35.096847815086555], [-74.44639340545672, 35.13653486299672], [-74.50948145921403, 35.08766620284368], [-74.46322473019222, 35.04795388369257]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.40013766085714, 35.096847815086555], [-74.33705032622477, 35.145719959634356], [-74.38330512235957, 35.18538169195464], [-74.44639340545672, 35.13653486299672], [-74.40013766085714, 35.096847815086555]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.33705032622477, 35.145719959634356], [-74.27396257740122, 35.194555909284375], [-74.32021648374291, 35.23419225311755], [-74.38330512235957, 35.18538169195464], [-74.33705032622477, 35.145719959634356]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.27396257740122, 35.194555909284375], [-74.21087451610393, 35.243360895937776], [-74.25712758115951, 35.282971790157546], [-74.32021648374291, 35.23419225311755], [-74.27396257740122, 35.194555909284375]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.21087451610393, 35.243360895937776], [-74.14778624451023, 35.29214397242482], [-74.19403850216997, 35.33172937409479], [-74.25712758115951, 35.282971790157546], [-74.21087451610393, 35.243360895937776]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.14778624451023, 35.29214397242482], [-74.0846976441131, 35.34088903166982], [-74.13094915173197, 35.38044886735033], [-74.19403850216997, 35.33172937409479], [-74.14778624451023, 35.29214397242482]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.0846976441131, 35.34088903166982], [-74.02160883340214, 35.38960455017208], [-74.06785963374219, 35.429138764116686], [-74.13094915173197, 35.38044886735033], [-74.0846976441131, 35.34088903166982]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.02160883340214, 35.38960455017208], [-73.95851987532444, 35.438298028806045], [-74.00476999991147, 35.477806579698964], [-74.06785963374219, 35.429138764116686], [-74.02160883340214, 35.38960455017208]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.95851987532444, 35.438298028806045], [-73.89543069760052, 35.48695163667124], [-73.94168020160534, 35.5264344511271], [-74.00476999991147, 35.477806579698964], [-73.95851987532444, 35.438298028806045]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.89543069760052, 35.48695163667124], [-73.83234141244147, 35.535577137395705], [-73.87859033289706, 35.57503416503287], [-73.94168020160534, 35.5264344511271], [-73.89543069760052, 35.48695163667124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.83234141244147, 35.535577137395705], [-73.76925205014595, 35.5841804626058], [-73.81550041597426, 35.6236116638892], [-73.87859033289706, 35.57503416503287], [-73.83234141244147, 35.535577137395705]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.76925205014595, 35.5841804626058], [-73.7061626016444, 35.63274203177038], [-73.75241046501478, 35.67214733391491], [-73.81550041597426, 35.6236116638892], [-73.76925205014595, 35.5841804626058]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.7061626016444, 35.63274203177038], [-73.64307314673914, 35.681276940723976], [-73.68932053909762, 35.72065629860218], [-73.75241046501478, 35.67214733391491], [-73.7061626016444, 35.63274203177038]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.02346419092139, 33.90592042224624], [-75.96038685352039, 33.95548700547518], [-76.00668188906364, 33.995743956086194], [-76.06976141825973, 33.9462011662552], [-76.02346419092139, 33.90592042224624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.96038685352039, 33.95548700547518], [-75.8973091933357, 34.005032472006384], [-75.9436020681389, 34.0452655901826], [-76.00668188906364, 33.995743956086194], [-75.96038685352039, 33.95548700547518]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8973091933357, 34.005032472006384], [-75.834231186749, 34.05455527671562], [-75.88052193413951, 34.094764520563835], [-75.9436020681389, 34.0452655901826], [-75.8973091933357, 34.005032472006384]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.834231186749, 34.05455527671562], [-75.77115250864341, 34.10403578507095], [-75.81744119360636, 34.144221074109936], [-75.88052193413951, 34.094764520563835], [-75.834231186749, 34.05455527671562]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77115250864341, 34.10403578507095], [-75.70807348513341, 34.153495114227965], [-75.75436014131375, 34.19365640724621], [-75.81744119360636, 34.144221074109936], [-75.77115250864341, 34.10403578507095]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.70807348513341, 34.153495114227965], [-75.6449940647991, 34.202930161984355], [-75.69127873086978, 34.24306741165152], [-75.75436014131375, 34.19365640724621], [-75.70807348513341, 34.153495114227965]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6449940647991, 34.202930161984355], [-75.58191396248527, 34.25232432789002], [-75.62819670547164, 34.29243745293191], [-75.69127873086978, 34.24306741165152], [-75.6449940647991, 34.202930161984355]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58191396248527, 34.25232432789002], [-75.5188335018847, 34.301697244534836], [-75.56511435730377, 34.34178620214033], [-75.62819670547164, 34.29243745293191], [-75.58191396248527, 34.25232432789002]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5188335018847, 34.301697244534836], [-75.45575260344012, 34.35104424073652], [-75.5020316147583, 34.39110897856509], [-75.56511435730377, 34.34178620214033], [-75.5188335018847, 34.301697244534836]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45575260344012, 34.35104424073652], [-75.39267103505122, 34.40035176425454], [-75.43894826957637, 34.44039220165631], [-75.5020316147583, 34.39110897856509], [-75.45575260344012, 34.35104424073652]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39267103505122, 34.40035176425454], [-75.32958910550666, 34.44963796064753], [-75.37586459992771, 34.48965405376739], [-75.43894826957637, 34.44039220165631], [-75.39267103505122, 34.40035176425454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32958910550666, 34.44963796064753], [-75.26650670919747, 34.4988965759593], [-75.312780511079, 34.53888826798047], [-75.37586459992771, 34.48965405376739], [-75.32958910550666, 34.44963796064753]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26650670919747, 34.4988965759593], [-75.20342367542187, 34.54811712396722], [-75.2496958508232, 34.58808433609036], [-75.312780511079, 34.53888826798047], [-75.26650670919747, 34.4988965759593]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20342367542187, 34.54811712396722], [-75.14034028768745, 34.597316259120035], [-75.18661087380647, 34.63725894696689], [-75.2496958508232, 34.58808433609036], [-75.20342367542187, 34.54811712396722]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14034028768745, 34.597316259120035], [-75.07725641879748, 34.64648612902796], [-75.12352546649535, 34.686404231915844], [-75.18661087380647, 34.63725894696689], [-75.14034028768745, 34.597316259120035]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.07725641879748, 34.64648612902796], [-75.01417196285114, 34.69561933513909], [-75.06043953565805, 34.735512777138084], [-75.12352546649535, 34.686404231915844], [-75.07725641879748, 34.64648612902796]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.01417196285114, 34.69561933513909], [-74.95108717007153, 34.7447310348821], [-74.99735330508298, 34.78459977156603], [-75.06043953565805, 34.735512777138084], [-75.01417196285114, 34.69561933513909]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95108717007153, 34.7447310348821], [-74.88800189840376, 34.793811759987655], [-74.93426664890549, 34.833655727465235], [-74.99735330508298, 34.78459977156603], [-74.95108717007153, 34.7447310348821]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.88800189840376, 34.793811759987655], [-74.82491610521171, 34.84285722508295], [-74.87117953118046, 34.88267635110292], [-74.93426664890549, 34.833655727465235], [-74.88800189840376, 34.793811759987655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.82491610521171, 34.84285722508295], [-74.76183000195023, 34.8918810827143], [-74.80809213982837, 34.93167532322538], [-74.87117953118046, 34.88267635110292], [-74.82491610521171, 34.84285722508295]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.76183000195023, 34.8918810827143], [-74.69874344053989, 34.94087222961637], [-74.74500434512797, 34.98064151819636], [-74.80809213982837, 34.93167532322538], [-74.76183000195023, 34.8918810827143]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.69874344053989, 34.94087222961637], [-74.63565643529189, 34.98982952285134], [-74.68191616223723, 35.02957379153597], [-74.74500434512797, 34.98064151819636], [-74.69874344053989, 34.94087222961637]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63565643529189, 34.98982952285134], [-74.572569155969, 35.03876510023111], [-74.61882774057553, 35.07848430571125], [-74.68191616223723, 35.02957379153597], [-74.63565643529189, 34.98982952285134]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.572569155969, 35.03876510023111], [-74.50948145921403, 35.08766620284368], [-74.55573895687677, 35.12736027684217], [-74.61882774057553, 35.07848430571125], [-74.572569155969, 35.03876510023111]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.50948145921403, 35.08766620284368], [-74.44639340545672, 35.13653486299672], [-74.492649866948, 35.176203742260114], [-74.55573895687677, 35.12736027684217], [-74.50948145921403, 35.08766620284368]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.44639340545672, 35.13653486299672], [-74.38330512235957, 35.18538169195464], [-74.42956058142555, 35.22502533422749], [-74.492649866948, 35.176203742260114], [-74.44639340545672, 35.13653486299672]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.38330512235957, 35.18538169195464], [-74.32021648374291, 35.23419225311755], [-74.36647099546418, 35.2738105889245], [-74.42956058142555, 35.22502533422749], [-74.38330512235957, 35.18538169195464]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.32021648374291, 35.23419225311755], [-74.25712758115951, 35.282971790157546], [-74.30338119109348, 35.32256476121679], [-74.36647099546418, 35.2738105889245], [-74.32021648374291, 35.23419225311755]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.25712758115951, 35.282971790157546], [-74.19403850216997, 35.33172937409479], [-74.2402912421494, 35.371296939462766], [-74.30338119109348, 35.32256476121679], [-74.25712758115951, 35.282971790157546]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.19403850216997, 35.33172937409479], [-74.13094915173197, 35.38044886735033], [-74.17720107564057, 35.4199909569786], [-74.2402912421494, 35.371296939462766], [-74.19403850216997, 35.33172937409479]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.13094915173197, 35.38044886735033], [-74.06785963374219, 35.429138764116686], [-74.11411078176074, 35.46865532481637], [-74.17720107564057, 35.4199909569786], [-74.13094915173197, 35.38044886735033]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.06785963374219, 35.429138764116686], [-74.00476999991147, 35.477806579698964], [-74.05102040166288, 35.51729757204721], [-74.11411078176074, 35.46865532481637], [-74.06785963374219, 35.429138764116686]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.00476999991147, 35.477806579698964], [-73.94168020160534, 35.5264344511271], [-73.98792990893051, 35.56589980508819], [-74.05102040166288, 35.51729757204721], [-74.00476999991147, 35.477806579698964]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.94168020160534, 35.5264344511271], [-73.87859033289706, 35.57503416503287], [-73.92483938058781, 35.61447383251663], [-73.98792990893051, 35.56589980508819], [-73.94168020160534, 35.5264344511271]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.87859033289706, 35.57503416503287], [-73.81550041597426, 35.6236116638892], [-73.8617488312002, 35.66302560715812], [-73.92483938058781, 35.61447383251663], [-73.87859033289706, 35.57503416503287]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.81550041597426, 35.6236116638892], [-73.75241046501478, 35.67214733391491], [-73.79865829676912, 35.711535483488426], [-73.8617488312002, 35.66302560715812], [-73.81550041597426, 35.6236116638892]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.75241046501478, 35.67214733391491], [-73.68932053909762, 35.72065629860218], [-73.73556781689305, 35.76001861140197], [-73.79865829676912, 35.711535483488426], [-73.75241046501478, 35.67214733391491]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06976141825973, 33.9462011662552], [-76.00668188906364, 33.995743956086194], [-76.05297782764077, 34.03598184669319], [-76.11605951995585, 33.986462845741165], [-76.06976141825973, 33.9462011662552]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.00668188906364, 33.995743956086194], [-75.9436020681389, 34.0452655901826], [-75.9898958723583, 34.08547965489498], [-76.05297782764077, 34.03598184669319], [-76.00668188906364, 33.995743956086194]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9436020681389, 34.0452655901826], [-75.88052193413951, 34.094764520563835], [-75.92681363486695, 34.134954719657514], [-75.9898958723583, 34.08547965489498], [-75.9436020681389, 34.0452655901826]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88052193413951, 34.094764520563835], [-75.81744119360636, 34.144221074109936], [-75.86373085107654, 34.18438733129269], [-75.92681363486695, 34.134954719657514], [-75.88052193413951, 34.094764520563835]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.81744119360636, 34.144221074109936], [-75.75436014131375, 34.19365640724621], [-75.80064778673685, 34.23379868345624], [-75.86373085107654, 34.18438733129269], [-75.81744119360636, 34.144221074109936]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.75436014131375, 34.19365640724621], [-75.69127873086978, 34.24306741165152], [-75.73756440012218, 34.2831856620278], [-75.80064778673685, 34.23379868345624], [-75.75436014131375, 34.19365640724621]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69127873086978, 34.24306741165152], [-75.62819670547164, 34.29243745293191], [-75.6744804607861, 34.33253160044002], [-75.73756440012218, 34.2831856620278], [-75.69127873086978, 34.24306741165152]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62819670547164, 34.29243745293191], [-75.56511435730377, 34.34178620214033], [-75.61139623168269, 34.38185620619845], [-75.6744804607861, 34.33253160044002], [-75.62819670547164, 34.29243745293191]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56511435730377, 34.34178620214033], [-75.5020316147583, 34.39110897856509], [-75.54831164859569, 34.431154789557375], [-75.61139623168269, 34.38185620619845], [-75.56511435730377, 34.34178620214033]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5020316147583, 34.39110897856509], [-75.43894826957637, 34.44039220165631], [-75.48522652547823, 34.48041374311527], [-75.54831164859569, 34.431154789557375], [-75.5020316147583, 34.39110897856509]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43894826957637, 34.44039220165631], [-75.37586459992771, 34.48965405376739], [-75.42214111204373, 34.529651284102926], [-75.48522652547823, 34.48041374311527], [-75.43894826957637, 34.44039220165631]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37586459992771, 34.48965405376739], [-75.312780511079, 34.53888826798047], [-75.35905532369044, 34.578861133306916], [-75.42214111204373, 34.529651284102926], [-75.37586459992771, 34.48965405376739]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.312780511079, 34.53888826798047], [-75.2496958508232, 34.58808433609036], [-75.2959690254836, 34.628032761647844], [-75.35905532369044, 34.578861133306916], [-75.312780511079, 34.53888826798047]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2496958508232, 34.58808433609036], [-75.18661087380647, 34.63725894696689], [-75.23288244519773, 34.67718289064043], [-75.2959690254836, 34.628032761647844], [-75.2496958508232, 34.58808433609036]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.18661087380647, 34.63725894696689], [-75.12352546649535, 34.686404231915844], [-75.16979548205042, 34.726303636111005], [-75.23288244519773, 34.67718289064043], [-75.18661087380647, 34.63725894696689]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.12352546649535, 34.686404231915844], [-75.06043953565805, 34.735512777138084], [-75.1067080546748, 34.775387569758585], [-75.16979548205042, 34.726303636111005], [-75.12352546649535, 34.686404231915844]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06043953565805, 34.735512777138084], [-74.99735330508298, 34.78459977156603], [-75.04362036220327, 34.8244499104168], [-75.1067080546748, 34.775387569758585], [-75.06043953565805, 34.735512777138084]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.99735330508298, 34.78459977156603], [-74.93426664890549, 34.833655727465235], [-74.98053229390538, 34.873481151853746], [-75.04362036220327, 34.8244499104168], [-74.99735330508298, 34.78459977156603]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.93426664890549, 34.833655727465235], [-74.87117953118046, 34.88267635110292], [-74.91744382012931, 34.922476992363855], [-74.98053229390538, 34.873481151853746], [-74.93426664890549, 34.833655727465235]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87117953118046, 34.88267635110292], [-74.80809213982837, 34.93167532322538], [-74.85435510680796, 34.97145113948306], [-74.91744382012931, 34.922476992363855], [-74.87117953118046, 34.88267635110292]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.80809213982837, 34.93167532322538], [-74.74500434512797, 34.98064151819636], [-74.7912660414053, 35.02039244629634], [-74.85435510680796, 34.97145113948306], [-74.80809213982837, 34.93167532322538]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.74500434512797, 34.98064151819636], [-74.68191616223723, 35.02957379153597], [-74.72817663990563, 35.069299766828564], [-74.7912660414053, 35.02039244629634], [-74.74500434512797, 34.98064151819636]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.68191616223723, 35.02957379153597], [-74.61882774057553, 35.07848430571125], [-74.6650870326935, 35.11818528699091], [-74.72817663990563, 35.069299766828564], [-74.68191616223723, 35.02957379153597]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.61882774057553, 35.07848430571125], [-74.55573895687677, 35.12736027684217], [-74.60199711533198, 35.16703619913362], [-74.6650870326935, 35.11818528699091], [-74.61882774057553, 35.07848430571125]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.55573895687677, 35.12736027684217], [-74.492649866948, 35.176203742260114], [-74.53890693932185, 35.21585454534454], [-74.60199711533198, 35.16703619913362], [-74.55573895687677, 35.12736027684217]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.492649866948, 35.176203742260114], [-74.42956058142555, 35.22502533422749], [-74.4758165993486, 35.264650977870616], [-74.53890693932185, 35.21585454534454], [-74.492649866948, 35.176203742260114]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.42956058142555, 35.22502533422749], [-74.36647099546418, 35.2738105889245], [-74.41272601057649, 35.313411006959726], [-74.4758165993486, 35.264650977870616], [-74.42956058142555, 35.22502533422749]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.36647099546418, 35.2738105889245], [-74.30338119109348, 35.32256476121679], [-74.34963524611953, 35.36213989811993], [-74.41272601057649, 35.313411006959726], [-74.36647099546418, 35.2738105889245]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.30338119109348, 35.32256476121679], [-74.2402912421494, 35.371296939462766], [-74.28654436694413, 35.41084675622394], [-74.34963524611953, 35.36213989811993], [-74.30338119109348, 35.32256476121679]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.2402912421494, 35.371296939462766], [-74.17720107564057, 35.4199909569786], [-74.22345332074572, 35.45951538684559], [-74.28654436694413, 35.41084675622394], [-74.2402912421494, 35.371296939462766]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.17720107564057, 35.4199909569786], [-74.11411078176074, 35.46865532481637], [-74.16036218486602, 35.508154317092306], [-74.22345332074572, 35.45951538684559], [-74.17720107564057, 35.4199909569786]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.11411078176074, 35.46865532481637], [-74.05102040166288, 35.51729757204721], [-74.09727099055358, 35.55677108915488], [-74.16036218486602, 35.508154317092306], [-74.11411078176074, 35.46865532481637]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.05102040166288, 35.51729757204721], [-73.98792990893051, 35.56589980508819], [-74.03417973222669, 35.60534778026352], [-74.09727099055358, 35.55677108915488], [-74.05102040166288, 35.51729757204721]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.98792990893051, 35.56589980508819], [-73.92483938058781, 35.61447383251663], [-73.97108847090868, 35.65389621991281], [-74.03417973222669, 35.60534778026352], [-73.98792990893051, 35.56589980508819]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.92483938058781, 35.61447383251663], [-73.8617488312002, 35.66302560715812], [-73.907997214016, 35.70242237079816], [-73.97108847090868, 35.65389621991281], [-73.92483938058781, 35.61447383251663]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.8617488312002, 35.66302560715812], [-73.79865829676912, 35.711535483488426], [-73.84490601798758, 35.750906557134016], [-73.907997214016, 35.70242237079816], [-73.8617488312002, 35.66302560715812]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.79865829676912, 35.711535483488426], [-73.73556781689305, 35.76001861140197], [-73.78181490414498, 35.79936395398953], [-73.84490601798758, 35.750906557134016], [-73.79865829676912, 35.711535483488426]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.11605951995585, 33.986462845741165], [-76.05297782764077, 34.03598184669319], [-76.09927458040174, 34.07620074472696], [-76.16235841033331, 34.02670552518824], [-76.11605951995585, 33.986462845741165]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.05297782764077, 34.03598184669319], [-75.9898958723583, 34.08547965489498], [-76.03619051414502, 34.125674736380226], [-76.09927458040174, 34.07620074472696], [-76.05297782764077, 34.03598184669319]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9898958723583, 34.08547965489498], [-75.92681363486695, 34.134954719657514], [-75.97310619427104, 34.17512594688814], [-76.03619051414502, 34.125674736380226], [-75.9898958723583, 34.08547965489498]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.92681363486695, 34.134954719657514], [-75.86373085107654, 34.18438733129269], [-75.91002138393628, 34.22453463188102], [-75.97310619427104, 34.17512594688814], [-75.92681363486695, 34.134954719657514]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.86373085107654, 34.18438733129269], [-75.80064778673685, 34.23379868345624], [-75.84693632200509, 34.27392202034795], [-75.91002138393628, 34.22453463188102], [-75.86373085107654, 34.18438733129269]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80064778673685, 34.23379868345624], [-75.73756440012218, 34.2831856620278], [-75.78385097108233, 34.323284992668086], [-75.84693632200509, 34.27392202034795], [-75.80064778673685, 34.23379868345624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.73756440012218, 34.2831856620278], [-75.6744804607861, 34.33253160044002], [-75.72076512521832, 34.3726068517627], [-75.78385097108233, 34.323284992668086], [-75.73756440012218, 34.2831856620278]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6744804607861, 34.33253160044002], [-75.61139623168269, 34.38185620619845], [-75.65767902024899, 34.421907339712085], [-75.72076512521832, 34.3726068517627], [-75.6744804607861, 34.33253160044002]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61139623168269, 34.38185620619845], [-75.54831164859569, 34.431154789557375], [-75.59459259882986, 34.4711817582018], [-75.65767902024899, 34.421907339712085], [-75.61139623168269, 34.38185620619845]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.54831164859569, 34.431154789557375], [-75.48522652547823, 34.48041374311527], [-75.53150569559972, 34.520416474354974], [-75.59459259882986, 34.4711817582018], [-75.54831164859569, 34.431154789557375]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48522652547823, 34.48041374311527], [-75.42214111204373, 34.529651284102926], [-75.46841853382934, 34.5696297384811], [-75.53150569559972, 34.520416474354974], [-75.48522652547823, 34.48041374311527]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.42214111204373, 34.529651284102926], [-75.35905532369044, 34.578861133306916], [-75.40533103835163, 34.61881525969995], [-75.46841853382934, 34.5696297384811], [-75.42214111204373, 34.529651284102926]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35905532369044, 34.578861133306916], [-75.2959690254836, 34.628032761647844], [-75.34224309035173, 34.66796248911149], [-75.40533103835163, 34.61881525969995], [-75.35905532369044, 34.578861133306916]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2959690254836, 34.628032761647844], [-75.23288244519773, 34.67718289064043], [-75.27915489259325, 34.717088179201276], [-75.34224309035173, 34.66796248911149], [-75.2959690254836, 34.628032761647844]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.23288244519773, 34.67718289064043], [-75.16979548205042, 34.726303636111005], [-75.21606635618659, 34.76618443109893], [-75.27915489259325, 34.717088179201276], [-75.23288244519773, 34.67718289064043]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16979548205042, 34.726303636111005], [-75.1067080546748, 34.775387569758585], [-75.1529774108653, 34.81524380271649], [-75.21606635618659, 34.76618443109893], [-75.16979548205042, 34.726303636111005]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1067080546748, 34.775387569758585], [-75.04362036220327, 34.8244499104168], [-75.08988823277693, 34.86428154127094], [-75.1529774108653, 34.81524380271649], [-75.1067080546748, 34.775387569758585]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.04362036220327, 34.8244499104168], [-74.98053229390538, 34.873481151853746], [-75.02679872532666, 34.91328812295577], [-75.08988823277693, 34.86428154127094], [-75.04362036220327, 34.8244499104168]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98053229390538, 34.873481151853746], [-74.91744382012931, 34.922476992363855], [-74.96370886477177, 34.96225923846983], [-75.02679872532666, 34.91328812295577], [-74.98053229390538, 34.873481151853746]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.91744382012931, 34.922476992363855], [-74.85435510680796, 34.97145113948306], [-74.90061879651785, 35.01120862079608], [-74.96370886477177, 34.96225923846983], [-74.91744382012931, 34.922476992363855]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.85435510680796, 34.97145113948306], [-74.7912660414053, 35.02039244629634], [-74.83752842409965, 35.060125102787765], [-74.90061879651785, 35.01120862079608], [-74.85435510680796, 34.97145113948306]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7912660414053, 35.02039244629634], [-74.72817663990563, 35.069299766828564], [-74.77443776430042, 35.10900753702749], [-74.83752842409965, 35.060125102787765], [-74.7912660414053, 35.02039244629634]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.72817663990563, 35.069299766828564], [-74.6650870326935, 35.11818528699091], [-74.71134692971104, 35.157868131711616], [-74.77443776430042, 35.10900753702749], [-74.72817663990563, 35.069299766828564]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.6650870326935, 35.11818528699091], [-74.60199711533198, 35.16703619913362], [-74.64825583351873, 35.20669405657556], [-74.71134692971104, 35.157868131711616], [-74.6650870326935, 35.11818528699091]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.60199711533198, 35.16703619913362], [-74.53890693932185, 35.21585454534454], [-74.58516452321251, 35.2554873582141], [-74.64825583351873, 35.20669405657556], [-74.60199711533198, 35.16703619913362]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.53890693932185, 35.21585454534454], [-74.4758165993486, 35.264650977870616], [-74.52207307855184, 35.30425870788374], [-74.58516452321251, 35.2554873582141], [-74.53890693932185, 35.21585454534454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.4758165993486, 35.264650977870616], [-74.41272601057649, 35.313411006959726], [-74.45898143343955, 35.35299359114727], [-74.52207307855184, 35.30425870788374], [-74.4758165993486, 35.264650977870616]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.41272601057649, 35.313411006959726], [-74.34963524611953, 35.36213989811993], [-74.39588965264934, 35.40169728362919], [-74.45898143343955, 35.35299359114727], [-74.41272601057649, 35.313411006959726]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.34963524611953, 35.36213989811993], [-74.28654436694413, 35.41084675622394], [-74.33279778509704, 35.45037890591983], [-74.39588965264934, 35.40169728362919], [-74.34963524611953, 35.36213989811993]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.28654436694413, 35.41084675622394], [-74.22345332074572, 35.45951538684559], [-74.26970579785035, 35.49902223717677], [-74.33279778509704, 35.45037890591983], [-74.28654436694413, 35.41084675622394]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.22345332074572, 35.45951538684559], [-74.16036218486602, 35.508154317092306], [-74.20661375621172, 35.54763581978764], [-74.26970579785035, 35.49902223717677], [-74.22345332074572, 35.45951538684559]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.16036218486602, 35.508154317092306], [-74.09727099055358, 35.55677108915488], [-74.1435216821541, 35.59622720843473], [-74.20661375621172, 35.54763581978764], [-74.16036218486602, 35.508154317092306]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.09727099055358, 35.55677108915488], [-74.03417973222669, 35.60534778026352], [-74.08042958959194, 35.6447784525557], [-74.1435216821541, 35.59622720843473], [-74.09727099055358, 35.55677108915488]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.03417973222669, 35.60534778026352], [-73.97108847090868, 35.65389621991281], [-74.01733752455559, 35.69330140156396], [-74.08042958959194, 35.6447784525557], [-74.03417973222669, 35.60534778026352]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.97108847090868, 35.65389621991281], [-73.907997214016, 35.70242237079816], [-73.95424548776992, 35.74180202755333], [-74.01733752455559, 35.69330140156396], [-73.97108847090868, 35.65389621991281]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.907997214016, 35.70242237079816], [-73.84490601798758, 35.750906557134016], [-73.8911535547647, 35.790260625931666], [-73.95424548776992, 35.74180202755333], [-73.907997214016, 35.70242237079816]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.84490601798758, 35.750906557134016], [-73.78181490414498, 35.79936395398953], [-73.82806172974816, 35.83869239574401], [-73.8911535547647, 35.790260625931666], [-73.84490601798758, 35.750906557134016]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.16235841033331, 34.02670552518824], [-76.09927458040174, 34.07620074472696], [-76.14557206506214, 34.11640071185681], [-76.20865801008476, 34.066929263503646], [-76.16235841033331, 34.02670552518824]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.09927458040174, 34.07620074472696], [-76.03619051414502, 34.125674736380226], [-76.08248590839658, 34.165850898941436], [-76.14557206506214, 34.11640071185681], [-76.09927458040174, 34.07620074472696]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.03619051414502, 34.125674736380226], [-75.97310619427104, 34.17512594688814], [-76.01939952460202, 34.21527826905495], [-76.08248590839658, 34.165850898941436], [-76.03619051414502, 34.125674736380226]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97310619427104, 34.17512594688814], [-75.91002138393628, 34.22453463188102], [-75.95631270211179, 34.264663044910584], [-76.01939952460202, 34.21527826905495], [-75.97310619427104, 34.17512594688814]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91002138393628, 34.22453463188102], [-75.84693632200509, 34.27392202034795], [-75.89322565488317, 34.314026489063124], [-75.95631270211179, 34.264663044910584], [-75.91002138393628, 34.22453463188102]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.84693632200509, 34.27392202034795], [-75.78385097108233, 34.323284992668086], [-75.83013834953981, 34.363365476670936], [-75.89322565488317, 34.314026489063124], [-75.84693632200509, 34.27392202034795]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.78385097108233, 34.323284992668086], [-75.72076512521832, 34.3726068517627], [-75.76705060289515, 34.412663281705626], [-75.83013834953981, 34.363365476670936], [-75.78385097108233, 34.323284992668086]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72076512521832, 34.3726068517627], [-75.65767902024899, 34.421907339712085], [-75.70396262562748, 34.461939679066006], [-75.76705060289515, 34.412663281705626], [-75.72076512521832, 34.3726068517627]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.65767902024899, 34.421907339712085], [-75.59459259882986, 34.4711817582018], [-75.64087436677917, 34.51118996230646], [-75.70396262562748, 34.461939679066006], [-75.65767902024899, 34.421907339712085]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59459259882986, 34.4711817582018], [-75.53150569559972, 34.520416474354974], [-75.57778568024467, 34.56040047437499], [-75.64087436677917, 34.51118996230646], [-75.59459259882986, 34.4711817582018]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53150569559972, 34.520416474354974], [-75.46841853382934, 34.5696297384811], [-75.51469676472817, 34.60958949697065], [-75.57778568024467, 34.56040047437499], [-75.53150569559972, 34.520416474354974]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46841853382934, 34.5696297384811], [-75.40533103835163, 34.61881525969995], [-75.45160755384441, 34.65875072814044], [-75.51469676472817, 34.60958949697065], [-75.46841853382934, 34.5696297384811]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40533103835163, 34.61881525969995], [-75.34224309035173, 34.66796248911149], [-75.38851794381223, 34.70787360016544], [-75.45160755384441, 34.65875072814044], [-75.40533103835163, 34.61881525969995]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34224309035173, 34.66796248911149], [-75.27915489259325, 34.717088179201276], [-75.32542811412515, 34.756974894923026], [-75.38851794381223, 34.70787360016544], [-75.34224309035173, 34.66796248911149]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27915489259325, 34.717088179201276], [-75.21606635618659, 34.76618443109893], [-75.26233798697871, 34.806046699588975], [-75.32542811412515, 34.756974894923026], [-75.27915489259325, 34.717088179201276]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.21606635618659, 34.76618443109893], [-75.1529774108653, 34.81524380271649], [-75.19924750248076, 34.855081558973865], [-75.26233798697871, 34.806046699588975], [-75.21606635618659, 34.76618443109893]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1529774108653, 34.81524380271649], [-75.08988823277693, 34.86428154127094], [-75.13615681536398, 34.90409474723962], [-75.19924750248076, 34.855081558973865], [-75.1529774108653, 34.81524380271649]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08988823277693, 34.86428154127094], [-75.02679872532666, 34.91328812295577], [-75.07306584222538, 34.95307672388539], [-75.13615681536398, 34.90409474723962], [-75.08988823277693, 34.86428154127094]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.02679872532666, 34.91328812295577], [-74.96370886477177, 34.96225923846983], [-75.00997456486137, 35.00202317238141], [-75.07306584222538, 34.95307672388539], [-75.02679872532666, 34.91328812295577]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.96370886477177, 34.96225923846983], [-74.90061879651785, 35.01120862079608], [-74.94688310952802, 35.050947849879115], [-75.00997456486137, 35.00202317238141], [-74.96370886477177, 34.96225923846983]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.90061879651785, 35.01120862079608], [-74.83752842409965, 35.060125102787765], [-74.88379139477284, 35.0998395700037], [-74.94688310952802, 35.050947849879115], [-74.90061879651785, 35.01120862079608]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.83752842409965, 35.060125102787765], [-74.77443776430042, 35.10900753702749], [-74.82069943814486, 35.148697183953644], [-74.88379139477284, 35.0998395700037], [-74.83752842409965, 35.060125102787765]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.77443776430042, 35.10900753702749], [-74.71134692971104, 35.157868131711616], [-74.7576073356179, 35.19753292110148], [-74.82069943814486, 35.148697183953644], [-74.77443776430042, 35.10900753702749]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.71134692971104, 35.157868131711616], [-74.64825583351873, 35.20669405657556], [-74.69451501685404, 35.24633392968025], [-74.7576073356179, 35.19753292110148], [-74.71134692971104, 35.157868131711616]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.64825583351873, 35.20669405657556], [-74.58516452321251, 35.2554873582141], [-74.63142252560439, 35.29510226055859], [-74.69451501685404, 35.24633392968025], [-74.64825583351873, 35.20669405657556]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.58516452321251, 35.2554873582141], [-74.52207307855184, 35.30425870788374], [-74.56832992767835, 35.34384860306504], [-74.63142252560439, 35.29510226055859], [-74.58516452321251, 35.2554873582141]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.52207307855184, 35.30425870788374], [-74.45898143343955, 35.35299359114727], [-74.50523717449964, 35.39255841928451], [-74.56832992767835, 35.34384860306504], [-74.52207307855184, 35.30425870788374]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.45898143343955, 35.35299359114727], [-74.39588965264934, 35.40169728362919], [-74.44214432304611, 35.44123699445599], [-74.50523717449964, 35.39255841928451], [-74.45898143343955, 35.35299359114727]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.39588965264934, 35.40169728362919], [-74.33279778509704, 35.45037890591983], [-74.37905141096628, 35.489893464117515], [-74.44214432304611, 35.44123699445599], [-74.39588965264934, 35.40169728362919]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.33279778509704, 35.45037890591983], [-74.26970579785035, 35.49902223717677], [-74.31595842343553, 35.5385115823], [-74.37905141096628, 35.489893464117515], [-74.33279778509704, 35.45037890591983]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.26970579785035, 35.49902223717677], [-74.20661375621172, 35.54763581978764], [-74.25286541449266, 35.58709990592435], [-74.31595842343553, 35.5385115823], [-74.26970579785035, 35.49902223717677]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.20661375621172, 35.54763581978764], [-74.1435216821541, 35.59622720843473], [-74.18977239743907, 35.63566600155448], [-74.25286541449266, 35.58709990592435], [-74.20661375621172, 35.54763581978764]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.1435216821541, 35.59622720843473], [-74.08042958959194, 35.6447784525557], [-74.12667940439235, 35.6841918921972], [-74.18977239743907, 35.63566600155448], [-74.1435216821541, 35.59622720843473]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.08042958959194, 35.6447784525557], [-74.01733752455559, 35.69330140156396], [-74.06358646735765, 35.73268944621607], [-74.12667940439235, 35.6841918921972], [-74.08042958959194, 35.6447784525557]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.01733752455559, 35.69330140156396], [-73.95424548776992, 35.74180202755333], [-74.0004935808095, 35.7811646446436], [-74.06358646735765, 35.73268944621607], [-74.01733752455559, 35.69330140156396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.95424548776992, 35.74180202755333], [-73.8911535547647, 35.790260625931666], [-73.937400838063, 35.82959775550736], [-74.0004935808095, 35.7811646446436], [-73.95424548776992, 35.74180202755333]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.8911535547647, 35.790260625931666], [-73.82806172974816, 35.83869239574401], [-73.874308227336, 35.87800400065876], [-73.937400838063, 35.82959775550736], [-73.8911535547647, 35.790260625931666]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.20865801008476, 34.066929263503646], [-76.14557206506214, 34.11640071185681], [-76.19187020540703, 34.156581804388296], [-76.2549582457845, 34.10713411440884], [-76.20865801008476, 34.066929263503646]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.14557206506214, 34.11640071185681], [-76.08248590839658, 34.165850898941436], [-76.12878197625398, 34.20600820135129], [-76.19187020540703, 34.156581804388296], [-76.14557206506214, 34.11640071185681]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08248590839658, 34.165850898941436], [-76.01939952460202, 34.21527826905495], [-76.06569354451246, 34.25541174727221], [-76.12878197625398, 34.20600820135129], [-76.08248590839658, 34.165850898941436]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.01939952460202, 34.21527826905495], [-75.95631270211179, 34.264663044910584], [-76.00260472206276, 34.304772633599555], [-76.06569354451246, 34.25541174727221], [-76.01939952460202, 34.21527826905495]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.95631270211179, 34.264663044910584], [-75.89322565488317, 34.314026489063124], [-75.93951569978694, 34.354112154804426], [-76.00260472206276, 34.304772633599555], [-75.95631270211179, 34.264663044910584]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.89322565488317, 34.314026489063124], [-75.83013834953981, 34.363365476670936], [-75.87642644803746, 34.40342718108655], [-75.93951569978694, 34.354112154804426], [-75.89322565488317, 34.314026489063124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.83013834953981, 34.363365476670936], [-75.76705060289515, 34.412663281705626], [-75.81333680477394, 34.452700958936816], [-75.87642644803746, 34.40342718108655], [-75.83013834953981, 34.363365476670936]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.76705060289515, 34.412663281705626], [-75.70396262562748, 34.461939679066006], [-75.75024695733826, 34.50195329442792], [-75.81333680477394, 34.452700958936816], [-75.76705060289515, 34.412663281705626]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.70396262562748, 34.461939679066006], [-75.64087436677917, 34.51118996230646], [-75.687156860707, 34.551179473394896], [-75.75024695733826, 34.50195329442792], [-75.70396262562748, 34.461939679066006]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64087436677917, 34.51118996230646], [-75.57778568024467, 34.56040047437499], [-75.62406638669, 34.60036581584004], [-75.687156860707, 34.551179473394896], [-75.64087436677917, 34.51118996230646]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.57778568024467, 34.56040047437499], [-75.51469676472817, 34.60958949697065], [-75.56097571117402, 34.64953063326391], [-75.62406638669, 34.60036581584004], [-75.57778568024467, 34.56040047437499]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.51469676472817, 34.60958949697065], [-75.45160755384441, 34.65875072814044], [-75.49788477594385, 34.698667613202254], [-75.56097571117402, 34.64953063326391], [-75.51469676472817, 34.60958949697065]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45160755384441, 34.65875072814044], [-75.38851794381223, 34.70787360016544], [-75.43479349122826, 34.747766170070264], [-75.49788477594385, 34.698667613202254], [-75.45160755384441, 34.65875072814044]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38851794381223, 34.70787360016544], [-75.32542811412515, 34.756974894923026], [-75.37170201488006, 34.7968431136463], [-75.43479349122826, 34.747766170070264], [-75.38851794381223, 34.70787360016544]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32542811412515, 34.756974894923026], [-75.26233798697871, 34.806046699588975], [-75.30861027941991, 34.845890517857946], [-75.37170201488006, 34.7968431136463], [-75.32542811412515, 34.756974894923026]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26233798697871, 34.806046699588975], [-75.19924750248076, 34.855081558973865], [-75.24551823464044, 34.89490091507147], [-75.30861027941991, 34.845890517857946], [-75.26233798697871, 34.806046699588975]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19924750248076, 34.855081558973865], [-75.13615681536398, 34.90409474723962], [-75.1824260153349, 34.94388960502967], [-75.24551823464044, 34.89490091507147], [-75.19924750248076, 34.855081558973865]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.13615681536398, 34.90409474723962], [-75.07306584222538, 34.95307672388539], [-75.11933355040017, 34.99284703137737], [-75.1824260153349, 34.94388960502967], [-75.13615681536398, 34.90409474723962]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.07306584222538, 34.95307672388539], [-75.00997456486137, 35.00202317238141], [-75.0562408268159, 35.0417688707127], [-75.11933355040017, 34.99284703137737], [-75.07306584222538, 34.95307672388539]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00997456486137, 35.00202317238141], [-74.94688310952802, 35.050947849879115], [-74.99314795298888, 35.0906689031376], [-75.0562408268159, 35.0417688707127], [-75.00997456486137, 35.00202317238141]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.94688310952802, 35.050947849879115], [-74.88379139477284, 35.0998395700037], [-74.93005486147509, 35.13953592401146], [-74.99314795298888, 35.0906689031376], [-74.94688310952802, 35.050947849879115]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.88379139477284, 35.0998395700037], [-74.82069943814486, 35.148697183953644], [-74.86696157055158, 35.188368783210876], [-74.93005486147509, 35.13953592401146], [-74.88379139477284, 35.0998395700037]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.82069943814486, 35.148697183953644], [-74.7576073356179, 35.19753292110148], [-74.80386816069017, 35.23717973022319], [-74.86696157055158, 35.188368783210876], [-74.82069943814486, 35.148697183953644]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7576073356179, 35.19753292110148], [-74.69451501685404, 35.24633392968025], [-74.7407745769324, 35.28595589285051], [-74.80386816069017, 35.23717973022319], [-74.7576073356179, 35.19753292110148]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.69451501685404, 35.24633392968025], [-74.63142252560439, 35.29510226055859], [-74.67768085954623, 35.334699326017486], [-74.7407745769324, 35.28595589285051], [-74.69451501685404, 35.24633392968025]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63142252560439, 35.29510226055859], [-74.56832992767835, 35.34384860306504], [-74.61458706131974, 35.383420736223194], [-74.67768085954623, 35.334699326017486], [-74.63142252560439, 35.29510226055859]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.56832992767835, 35.34384860306504], [-74.50523717449964, 35.39255841928451], [-74.55149315003229, 35.43210556324271], [-74.61458706131974, 35.383420736223194], [-74.56832992767835, 35.34384860306504]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.50523717449964, 35.39255841928451], [-74.44214432304611, 35.44123699445599], [-74.48839917538079, 35.48075910145036], [-74.55149315003229, 35.43210556324271], [-74.50523717449964, 35.39255841928451]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.44214432304611, 35.44123699445599], [-74.37905141096628, 35.489893464117515], [-74.42530516449519, 35.52939050058825], [-74.48839917538079, 35.48075910145036], [-74.44214432304611, 35.44123699445599]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.37905141096628, 35.489893464117515], [-74.31595842343553, 35.5385115823], [-74.36221111944317, 35.577983490813665], [-74.42530516449519, 35.52939050058825], [-74.37905141096628, 35.489893464117515]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.31595842343553, 35.5385115823], [-74.25286541449266, 35.58709990592435], [-74.29911708373966, 35.62654664286131], [-74.36221111944317, 35.577983490813665], [-74.31595842343553, 35.5385115823]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.25286541449266, 35.58709990592435], [-74.18977239743907, 35.63566600155448], [-74.23602306259409, 35.67508753458501], [-74.29911708373966, 35.62654664286131], [-74.25286541449266, 35.58709990592435]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.18977239743907, 35.63566600155448], [-74.12667940439235, 35.6841918921972], [-74.17292910508013, 35.72358816388929], [-74.23602306259409, 35.67508753458501], [-74.18977239743907, 35.63566600155448]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.12667940439235, 35.6841918921972], [-74.06358646735765, 35.73268944621607], [-74.109835230106, 35.77206041714874], [-74.17292910508013, 35.72358816388929], [-74.12667940439235, 35.6841918921972]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.06358646735765, 35.73268944621607], [-74.0004935808095, 35.7811646446436], [-74.0467414263208, 35.820510283886556], [-74.109835230106, 35.77206041714874], [-74.06358646735765, 35.73268944621607]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.0004935808095, 35.7811646446436], [-73.937400838063, 35.82959775550736], [-73.98364780356174, 35.86891800614679], [-74.0467414263208, 35.820510283886556], [-74.0004935808095, 35.7811646446436]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.937400838063, 35.82959775550736], [-73.874308227336, 35.87800400065876], [-73.92055433513832, 35.91729882744745], [-73.98364780356174, 35.86891800614679], [-73.937400838063, 35.82959775550736]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.2549582457845, 34.10713411440884], [-76.19187020540703, 34.156581804388296], [-76.238168930839, 34.19674407362563], [-76.301259049445, 34.14732012679517], [-76.2549582457845, 34.10713411440884]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19187020540703, 34.156581804388296], [-76.12878197625398, 34.20600820135129], [-76.17507864464234, 34.24614669721993], [-76.238168930839, 34.19674407362563], [-76.19187020540703, 34.156581804388296]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.12878197625398, 34.20600820135129], [-76.06569354451246, 34.25541174727221], [-76.11198817859228, 34.29552643734128], [-76.17507864464234, 34.24614669721993], [-76.12878197625398, 34.20600820135129]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06569354451246, 34.25541174727221], [-76.00260472206276, 34.304772633599555], [-76.04889736631448, 34.34486345572292], [-76.11198817859228, 34.29552643734128], [-76.06569354451246, 34.25541174727221]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.00260472206276, 34.304772633599555], [-75.93951569978694, 34.354112154804426], [-75.9858063773139, 34.39417907721077], [-76.04889736631448, 34.34486345572292], [-76.00260472206276, 34.304772633599555]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93951569978694, 34.354112154804426], [-75.87642644803746, 34.40342718108655], [-75.92271518540207, 34.44347016729189], [-75.9858063773139, 34.39417907721077], [-75.93951569978694, 34.354112154804426]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.87642644803746, 34.40342718108655], [-75.81333680477394, 34.452700958936816], [-75.85962364817543, 34.49271994635979], [-75.92271518540207, 34.44347016729189], [-75.87642644803746, 34.40342718108655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.81333680477394, 34.452700958936816], [-75.75024695733826, 34.50195329442792], [-75.79653193133282, 34.5419482501188], [-75.85962364817543, 34.49271994635979], [-75.81333680477394, 34.452700958936816]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.75024695733826, 34.50195329442792], [-75.687156860707, 34.551179473394896], [-75.73343999536229, 34.591150357072685], [-75.79653193133282, 34.5419482501188], [-75.75024695733826, 34.50195329442792]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.687156860707, 34.551179473394896], [-75.62406638669, 34.60036581584004], [-75.67034772873261, 34.640312565441235], [-75.73343999536229, 34.591150357072685], [-75.687156860707, 34.551179473394896]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62406638669, 34.60036581584004], [-75.56097571117402, 34.64953063326391], [-75.60725528614492, 34.689453215031946], [-75.67034772873261, 34.640312565441235], [-75.62406638669, 34.60036581584004]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56097571117402, 34.64953063326391], [-75.49788477594385, 34.698667613202254], [-75.54416261698059, 34.73856598340062], [-75.60725528614492, 34.689453215031946], [-75.56097571117402, 34.64953063326391]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.49788477594385, 34.698667613202254], [-75.43479349122826, 34.747766170070264], [-75.48106964451355, 34.78764026800341], [-75.54416261698059, 34.73856598340062], [-75.49788477594385, 34.698667613202254]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43479349122826, 34.747766170070264], [-75.37170201488006, 34.7968431136463], [-75.41797650648137, 34.836692905111015], [-75.48106964451355, 34.78764026800341], [-75.43479349122826, 34.747766170070264]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37170201488006, 34.7968431136463], [-75.30861027941991, 34.845890517857946], [-75.35488314501464, 34.88571595607332], [-75.41797650648137, 34.836692905111015], [-75.37170201488006, 34.7968431136463]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30861027941991, 34.845890517857946], [-75.24551823464044, 34.89490091507147], [-75.29178951893653, 34.93470194144225], [-75.35488314501464, 34.88571595607332], [-75.30861027941991, 34.845890517857946]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24551823464044, 34.89490091507147], [-75.1824260153349, 34.94388960502967], [-75.22869574448752, 34.9836661852473], [-75.29178951893653, 34.93470194144225], [-75.24551823464044, 34.89490091507147]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1824260153349, 34.94388960502967], [-75.11933355040017, 34.99284703137737], [-75.16560176202171, 35.03259911608053], [-75.22869574448752, 34.9836661852473], [-75.1824260153349, 34.94388960502967]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11933355040017, 34.99284703137737], [-75.0562408268159, 35.0417688707127], [-75.10250756335992, 35.0814964040141], [-75.16560176202171, 35.03259911608053], [-75.11933355040017, 34.99284703137737]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0562408268159, 35.0417688707127], [-74.99314795298888, 35.0906689031376], [-75.0394132402867, 35.13037185093986], [-75.10250756335992, 35.0814964040141], [-75.0562408268159, 35.0417688707127]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.99314795298888, 35.0906689031376], [-74.93005486147509, 35.13953592401146], [-74.97631873841378, 35.17921423487377], [-75.0394132402867, 35.13037185093986], [-74.99314795298888, 35.0906689031376]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.93005486147509, 35.13953592401146], [-74.86696157055158, 35.188368783210876], [-74.91322407670484, 35.2280224044362], [-74.97631873841378, 35.17921423487377], [-74.93005486147509, 35.13953592401146]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.86696157055158, 35.188368783210876], [-74.80386816069017, 35.23717973022319], [-74.8501293211859, 35.27680862821342], [-74.91322407670484, 35.2280224044362], [-74.86696157055158, 35.188368783210876]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.80386816069017, 35.23717973022319], [-74.7407745769324, 35.28595589285051], [-74.78703443123467, 35.32556001460828], [-74.8501293211859, 35.27680862821342], [-74.80386816069017, 35.23717973022319]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7407745769324, 35.28595589285051], [-74.67768085954623, 35.334699326017486], [-74.72393944387312, 35.374278622397725], [-74.78703443123467, 35.32556001460828], [-74.7407745769324, 35.28595589285051]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.67768085954623, 35.334699326017486], [-74.61458706131974, 35.383420736223194], [-74.66084439975131, 35.422975174384725], [-74.72393944387312, 35.374278622397725], [-74.67768085954623, 35.334699326017486]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.61458706131974, 35.383420736223194], [-74.55149315003229, 35.43210556324271], [-74.5977492818901, 35.471635089163925], [-74.66084439975131, 35.422975174384725], [-74.61458706131974, 35.383420736223194]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.55149315003229, 35.43210556324271], [-74.48839917538079, 35.48075910145036], [-74.5346541331924, 35.52026366978774], [-74.5977492818901, 35.471635089163925], [-74.55149315003229, 35.43210556324271]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.48839917538079, 35.48075910145036], [-74.42530516449519, 35.52939050058825], [-74.47155897098443, 35.56887007948427], [-74.5346541331924, 35.52026366978774], [-74.48839917538079, 35.48075910145036]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.42530516449519, 35.52939050058825], [-74.36221111944317, 35.577983490813665], [-74.40846381306, 35.617438025753906], [-74.47155897098443, 35.56887007948427], [-74.42530516449519, 35.52939050058825]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.36221111944317, 35.577983490813665], [-74.29911708373966, 35.62654664286131], [-74.34536869311485, 35.665976092452325], [-74.40846381306, 35.617438025753906], [-74.36221111944317, 35.577983490813665]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.29911708373966, 35.62654664286131], [-74.23602306259409, 35.67508753458501], [-74.28227360882205, 35.71449186814951], [-74.34536869311485, 35.665976092452325], [-74.29911708373966, 35.62654664286131]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.23602306259409, 35.67508753458501], [-74.17292910508013, 35.72358816388929], [-74.21917862501047, 35.76296732694266], [-74.28227360882205, 35.71449186814951], [-74.23602306259409, 35.67508753458501]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.17292910508013, 35.72358816388929], [-74.109835230106, 35.77206041714874], [-74.1560837483805, 35.811414372307524], [-74.21917862501047, 35.76296732694266], [-74.17292910508013, 35.72358816388929]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.109835230106, 35.77206041714874], [-74.0467414263208, 35.820510283886556], [-74.09298896216475, 35.85983900182188], [-74.1560837483805, 35.811414372307524], [-74.109835230106, 35.77206041714874]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.0467414263208, 35.820510283886556], [-73.98364780356174, 35.86891800614679], [-74.02989439150213, 35.908221432912626], [-74.09298896216475, 35.85983900182188], [-74.0467414263208, 35.820510283886556]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-73.98364780356174, 35.86891800614679], [-73.92055433513832, 35.91729882744745], [-73.96679999583499, 35.95657692965435], [-74.02989439150213, 35.908221432912626], [-73.98364780356174, 35.86891800614679]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.301259049445, 34.14732012679517], [-76.238168930839, 34.19674407362563], [-76.28446817596571, 34.236887566202384], [-76.34756035811309, 34.187487345048034], [-76.301259049445, 34.14732012679517]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.238168930839, 34.19674407362563], [-76.17507864464234, 34.24614669721993], [-76.2213758458514, 34.286266435331356], [-76.28446817596571, 34.236887566202384], [-76.238168930839, 34.19674407362563]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.17507864464234, 34.24614669721993], [-76.11198817859228, 34.29552643734128], [-76.1582833569433, 34.33562239009162], [-76.2213758458514, 34.286266435331356], [-76.17507864464234, 34.24614669721993]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.11198817859228, 34.29552643734128], [-76.04889736631448, 34.34486345572292], [-76.09519056302915, 34.38493556395595], [-76.1582833569433, 34.33562239009162], [-76.11198817859228, 34.29552643734128]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.04889736631448, 34.34486345572292], [-75.9858063773139, 34.39417907721077], [-76.03209761381237, 34.43422731070233], [-76.09519056302915, 34.38493556395595], [-76.04889736631448, 34.34486345572292]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9858063773139, 34.39417907721077], [-75.92271518540207, 34.44347016729189], [-75.96900448631236, 34.48349449133634], [-76.03209761381237, 34.43422731070233], [-75.9858063773139, 34.39417907721077]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.92271518540207, 34.44347016729189], [-75.85962364817543, 34.49271994635979], [-75.9059110563527, 34.532720301458035], [-75.96900448631236, 34.48349449133634], [-75.92271518540207, 34.44347016729189]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.85962364817543, 34.49271994635979], [-75.79653193133282, 34.5419482501188], [-75.84281746956503, 34.58192460495542], [-75.9059110563527, 34.532720301458035], [-75.85962364817543, 34.49271994635979]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.79653193133282, 34.5419482501188], [-75.73343999536229, 34.591150357072685], [-75.77972369155395, 34.63110267336696], [-75.84281746956503, 34.58192460495542], [-75.79653193133282, 34.5419482501188]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.73343999536229, 34.591150357072685], [-75.67034772873261, 34.640312565441235], [-75.71662962626877, 34.68024078423148], [-75.77972369155395, 34.63110267336696], [-75.73343999536229, 34.591150357072685]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.67034772873261, 34.640312565441235], [-75.60725528614492, 34.689453215031946], [-75.6535354087484, 34.72935730425522], [-75.71662962626877, 34.68024078423148], [-75.67034772873261, 34.640312565441235]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.60725528614492, 34.689453215031946], [-75.54416261698059, 34.73856598340062], [-75.59044099543297, 34.778445901517124], [-75.6535354087484, 34.72935730425522], [-75.60725528614492, 34.689453215031946]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.54416261698059, 34.73856598340062], [-75.48106964451355, 34.78764026800341], [-75.5273463217323, 34.827495957377685], [-75.59044099543297, 34.778445901517124], [-75.54416261698059, 34.73856598340062]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48106964451355, 34.78764026800341], [-75.41797650648137, 34.836692905111015], [-75.46425150669765, 34.87652433326783], [-75.5273463217323, 34.827495957377685], [-75.48106964451355, 34.78764026800341]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41797650648137, 34.836692905111015], [-75.35488314501464, 34.88571595607332], [-75.40115650139643, 34.92552307859711], [-75.46425150669765, 34.87652433326783], [-75.41797650648137, 34.836692905111015]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35488314501464, 34.88571595607332], [-75.29178951893653, 34.93470194144225], [-75.33806127306181, 34.974484702707144], [-75.40115650139643, 34.92552307859711], [-75.35488314501464, 34.88571595607332]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29178951893653, 34.93470194144225], [-75.22869574448752, 34.9836661852473], [-75.27496592068512, 35.023424552685285], [-75.33806127306181, 34.974484702707144], [-75.29178951893653, 34.93470194144225]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22869574448752, 34.9836661852473], [-75.16560176202171, 35.03259911608053], [-75.21187039528141, 35.07233304283614], [-75.27496592068512, 35.023424552685285], [-75.22869574448752, 34.9836661852473]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFDA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16560176202171, 35.03259911608053], [-75.10250756335992, 35.0814964040141], [-75.1487746931849, 35.121205837041586], [-75.21187039528141, 35.07233304283614], [-75.16560176202171, 35.03259911608053]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.10250756335992, 35.0814964040141], [-75.0394132402867, 35.13037185093986], [-75.0856788907154, 35.17005675787696], [-75.1487746931849, 35.121205837041586], [-75.10250756335992, 35.0814964040141]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D7FF1F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0394132402867, 35.13037185093986], [-74.97631873841378, 35.17921423487377], [-75.022582945637, 35.218874566899046], [-75.0856788907154, 35.17005675787696], [-75.0394132402867, 35.13037185093986]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.97631873841378, 35.17921423487377], [-74.91322407670484, 35.2280224044362], [-74.95948687755569, 35.26765811154043], [-75.022582945637, 35.218874566899046], [-74.97631873841378, 35.17921423487377]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BAFF3C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.91322407670484, 35.2280224044362], [-74.8501293211859, 35.27680862821342], [-74.89639073905205, 35.31641967851381], [-74.95948687755569, 35.26765811154043], [-74.91322407670484, 35.2280224044362]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.8501293211859, 35.27680862821342], [-74.78703443123467, 35.32556001460828], [-74.83329450284701, 35.36514635781592], [-74.89639073905205, 35.31641967851381], [-74.8501293211859, 35.27680862821342]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EAFF0C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.78703443123467, 35.32556001460828], [-74.72393944387312, 35.374278622397725], [-74.77019820293717, 35.413840211885415], [-74.83329450284701, 35.36514635781592], [-74.78703443123467, 35.32556001460828]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.72393944387312, 35.374278622397725], [-74.66084439975131, 35.422975174384725], [-74.70710186867437, 35.46251197899607], [-74.77019820293717, 35.413840211885415], [-74.72393944387312, 35.374278622397725]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.66084439975131, 35.422975174384725], [-74.5977492818901, 35.471635089163925], [-74.64400549725646, 35.511147057653844], [-74.70710186867437, 35.46251197899607], [-74.66084439975131, 35.422975174384725]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5977492818901, 35.471635089163925], [-74.5346541331924, 35.52026366978774], [-74.5809091252529, 35.559750759152664], [-74.64400549725646, 35.511147057653844], [-74.5977492818901, 35.471635089163925]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5346541331924, 35.52026366978774], [-74.47155897098443, 35.56887007948427], [-74.51781276086815, 35.60833225951352], [-74.5809091252529, 35.559750759152664], [-74.5346541331924, 35.52026366978774]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.47155897098443, 35.56887007948427], [-74.40846381306, 35.617438025753906], [-74.45471643650417, 35.65687524476059], [-74.51781276086815, 35.60833225951352], [-74.47155897098443, 35.56887007948427]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.40846381306, 35.617438025753906], [-74.34536869311485, 35.665976092452325], [-74.39162017670863, 35.705388311203606], [-74.45471643650417, 35.65687524476059], [-74.40846381306, 35.617438025753906]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.34536869311485, 35.665976092452325], [-74.28227360882205, 35.71449186814951], [-74.32852397215015, 35.75387905757258], [-74.39162017670863, 35.705388311203606], [-74.34536869311485, 35.665976092452325]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.28227360882205, 35.71449186814951], [-74.21917862501047, 35.76296732694266], [-74.2654279022579, 35.802329435418784], [-74.32852397215015, 35.75387905757258], [-74.28227360882205, 35.71449186814951]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.21917862501047, 35.76296732694266], [-74.1560837483805, 35.811414372307524], [-74.20233196237544, 35.85075136443793], [-74.2654279022579, 35.802329435418784], [-74.21917862501047, 35.76296732694266]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.1560837483805, 35.811414372307524], [-74.09298896216475, 35.85983900182188], [-74.13923613071165, 35.899150849838016], [-74.20233196237544, 35.85075136443793], [-74.1560837483805, 35.811414372307524]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.09298896216475, 35.85983900182188], [-74.02989439150213, 35.908221432912626], [-74.07614054653014, 35.947508085764156], [-74.13923613071165, 35.899150849838016], [-74.09298896216475, 35.85983900182188]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.02989439150213, 35.908221432912626], [-73.96679999583499, 35.95657692965435], [-74.01304515640669, 35.99583835576749], [-74.07614054653014, 35.947508085764156], [-74.02989439150213, 35.908221432912626]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.34756035811309, 34.187487345048034], [-76.28446817596571, 34.236887566202384], [-76.33076788022267, 34.277012324383996], [-76.39386211350097, 34.22763580934271], [-76.34756035811309, 34.187487345048034]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.28446817596571, 34.236887566202384], [-76.2213758458514, 34.286266435331356], [-76.26767351715101, 34.32636745995146], [-76.33076788022267, 34.277012324383996], [-76.28446817596571, 34.236887566202384]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.2213758458514, 34.286266435331356], [-76.1582833569433, 34.33562239009162], [-76.20457901478896, 34.37569965169337], [-76.26767351715101, 34.32636745995146], [-76.2213758458514, 34.286266435331356]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.1582833569433, 34.33562239009162], [-76.09519056302915, 34.38493556395595], [-76.14148424561172, 34.424989006189605], [-76.20457901478896, 34.37569965169337], [-76.1582833569433, 34.33562239009162]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.09519056302915, 34.38493556395595], [-76.03209761381237, 34.43422731070233], [-76.07838934098447, 34.47425690479808], [-76.14148424561172, 34.424989006189605], [-76.09519056302915, 34.38493556395595]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.03209761381237, 34.43422731070233], [-75.96900448631236, 34.48349449133634], [-76.01529428090046, 34.52350020426028], [-76.07838934098447, 34.47425690479808], [-76.03209761381237, 34.43422731070233]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.96900448631236, 34.48349449133634], [-75.9059110563527, 34.532720301458035], [-75.9521989580931, 34.572702076613226], [-76.01529428090046, 34.52350020426028], [-75.96900448631236, 34.48349449133634]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9059110563527, 34.532720301458035], [-75.84281746956503, 34.58192460495542], [-75.88910349959451, 34.621882412567416], [-75.9521989580931, 34.572702076613226], [-75.9059110563527, 34.532720301458035]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.84281746956503, 34.58192460495542], [-75.77972369155395, 34.63110267336696], [-75.82600787575656, 34.67103647704153], [-75.88910349959451, 34.621882412567416], [-75.84281746956503, 34.58192460495542]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77972369155395, 34.63110267336696], [-75.71662962626877, 34.68024078423148], [-75.76291200490357, 34.7201505279373], [-75.82600787575656, 34.67103647704153], [-75.77972369155395, 34.63110267336696]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.71662962626877, 34.68024078423148], [-75.6535354087484, 34.72935730425522], [-75.69981600383525, 34.7692429575316], [-75.76291200490357, 34.7201505279373], [-75.71662962626877, 34.68024078423148]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6535354087484, 34.72935730425522], [-75.59044099543297, 34.778445901517124], [-75.63671983554603, 34.81830742490327], [-75.69981600383525, 34.7692429575316], [-75.6535354087484, 34.72935730425522]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59044099543297, 34.778445901517124], [-75.5273463217323, 34.827495957377685], [-75.5736234467247, 34.86733329613943], [-75.63671983554603, 34.81830742490327], [-75.59044099543297, 34.778445901517124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5273463217323, 34.827495957377685], [-75.46425150669765, 34.87652433326783], [-75.51052693907526, 34.916337456570396], [-75.5736234467247, 34.86733329613943], [-75.5273463217323, 34.827495957377685]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46425150669765, 34.87652433326783], [-75.40115650139643, 34.92552307859711], [-75.44743027196823, 34.96531194427176], [-75.51052693907526, 34.916337456570396], [-75.46425150669765, 34.87652433326783]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40115650139643, 34.92552307859711], [-75.33806127306181, 34.974484702707144], [-75.38433342045866, 35.01424925795383], [-75.44743027196823, 34.96531194427176], [-75.40115650139643, 34.92552307859711]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33806127306181, 34.974484702707144], [-75.27496592068512, 35.023424552685285], [-75.3212364675142, 35.06316476659447], [-75.38433342045866, 35.01424925795383], [-75.33806127306181, 34.974484702707144]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27496592068512, 35.023424552685285], [-75.21187039528141, 35.07233304283614], [-75.25813937405889, 35.112048870941706], [-75.3212364675142, 35.06316476659447], [-75.27496592068512, 35.023424552685285]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.21187039528141, 35.07233304283614], [-75.1487746931849, 35.121205837041586], [-75.19504214062627, 35.16089722901245], [-75.25813937405889, 35.112048870941706], [-75.21187039528141, 35.07233304283614]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCF00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1487746931849, 35.121205837041586], [-75.0856788907154, 35.17005675787696], [-75.13194482916346, 35.20972368301027], [-75.19504214062627, 35.16089722901245], [-75.1487746931849, 35.121205837041586]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0856788907154, 35.17005675787696], [-75.022582945637, 35.218874566899046], [-75.06884740873059, 35.25851697888069], [-75.13194482916346, 35.20972368301027], [-75.0856788907154, 35.17005675787696]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCF00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.022582945637, 35.218874566899046], [-74.95948687755569, 35.26765811154043], [-75.00574989952963, 35.30727596293897], [-75.06884740873059, 35.25851697888069], [-75.022582945637, 35.218874566899046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFDA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95948687755569, 35.26765811154043], [-74.89639073905205, 35.31641967851381], [-74.94265234164276, 35.35601293909313], [-75.00574989952963, 35.30727596293897], [-74.95948687755569, 35.26765811154043]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.89639073905205, 35.31641967851381], [-74.83329450284701, 35.36514635781592], [-74.87955472018953, 35.40471497988982], [-74.94265234164276, 35.35601293909313], [-74.89639073905205, 35.31641967851381]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.83329450284701, 35.36514635781592], [-74.77019820293717, 35.413840211885415], [-74.81645706634673, 35.453384151250916], [-74.87955472018953, 35.40471497988982], [-74.83329450284701, 35.36514635781592]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.77019820293717, 35.413840211885415], [-74.70710186867437, 35.46251197899607], [-74.7533593989657, 35.502031206120186], [-74.81645706634673, 35.453384151250916], [-74.77019820293717, 35.413840211885415]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.70710186867437, 35.46251197899607], [-74.64400549725646, 35.511147057653844], [-74.69026172840546, 35.55064152396991], [-74.7533593989657, 35.502031206120186], [-74.70710186867437, 35.46251197899607]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.64400549725646, 35.511147057653844], [-74.5809091252529, 35.559750759152664], [-74.62716408533723, 35.59922042391861], [-74.69026172840546, 35.55064152396991], [-74.64400549725646, 35.511147057653844]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5809091252529, 35.559750759152664], [-74.51781276086815, 35.60833225951352], [-74.56406646949381, 35.647777094111305], [-74.62716408533723, 35.59922042391861], [-74.5809091252529, 35.559750759152664]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.51781276086815, 35.60833225951352], [-74.45471643650417, 35.65687524476059], [-74.50096892681499, 35.6962952002412], [-74.56406646949381, 35.647777094111305], [-74.51781276086815, 35.60833225951352]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.45471643650417, 35.65687524476059], [-74.39162017670863, 35.705388311203606], [-74.43787147333876, 35.74478335043], [-74.50096892681499, 35.6962952002412], [-74.45471643650417, 35.65687524476059]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.39162017670863, 35.705388311203606], [-74.32852397215015, 35.75387905757258], [-74.37477409323814, 35.793249153029095], [-74.43787147333876, 35.74478335043], [-74.39162017670863, 35.705388311203606]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.32852397215015, 35.75387905757258], [-74.2654279022579, 35.802329435418784], [-74.31167687943346, 35.84167453827153], [-74.37477409323814, 35.793249153029095], [-74.32852397215015, 35.75387905757258]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.2654279022579, 35.802329435418784], [-74.20233196237544, 35.85075136443793], [-74.24857981672504, 35.89007144121995], [-74.31167687943346, 35.84167453827153], [-74.2654279022579, 35.802329435418784]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.20233196237544, 35.85075136443793], [-74.13923613071165, 35.899150849838016], [-74.18548287867482, 35.93844587430004], [-74.24857981672504, 35.89007144121995], [-74.20233196237544, 35.85075136443793]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.13923613071165, 35.899150849838016], [-74.07614054653014, 35.947508085764156], [-74.12238621753788, 35.986778009679], [-74.18548287867482, 35.93844587430004], [-74.13923613071165, 35.899150849838016]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.07614054653014, 35.947508085764156], [-74.01304515640669, 35.99583835576749], [-74.05928976798357, 36.035083149334284], [-74.12238621753788, 35.986778009679], [-74.07614054653014, 35.947508085764156]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.39386211350097, 34.22763580934271], [-76.33076788022267, 34.277012324383996], [-76.37706798752812, 34.31711838634463], [-76.44016426164924, 34.26776555591499], [-76.39386211350097, 34.22763580934271]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.33076788022267, 34.277012324383996], [-76.26767351715101, 34.32636745995146], [-76.31397160043903, 34.3664498111105], [-76.37706798752812, 34.31711838634463], [-76.33076788022267, 34.277012324383996]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.26767351715101, 34.32636745995146], [-76.20457901478896, 34.37569965169337], [-76.25087509211605, 34.4157582639445], [-76.31397160043903, 34.3664498111105], [-76.26767351715101, 34.32636745995146]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.20457901478896, 34.37569965169337], [-76.14148424561172, 34.424989006189605], [-76.18777835234738, 34.465023825820886], [-76.25087509211605, 34.4157582639445], [-76.20457901478896, 34.37569965169337]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.14148424561172, 34.424989006189605], [-76.07838934098447, 34.47425690479808], [-76.12468149552056, 34.51426790440837], [-76.18777835234738, 34.465023825820886], [-76.14148424561172, 34.424989006189605]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.07838934098447, 34.47425690479808], [-76.01529428090046, 34.52350020426028], [-76.06158450438431, 34.563487352389174], [-76.12468149552056, 34.51426790440837], [-76.07838934098447, 34.47425690479808]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.01529428090046, 34.52350020426028], [-75.9521989580931, 34.572702076613226], [-75.99848728735034, 34.612665319399454], [-76.06158450438431, 34.563487352389174], [-76.01529428090046, 34.52350020426028]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9521989580931, 34.572702076613226], [-75.88910349959451, 34.621882412567416], [-75.93538995421898, 34.661821721691], [-75.99848728735034, 34.612665319399454], [-75.9521989580931, 34.572702076613226]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88910349959451, 34.621882412567416], [-75.82600787575656, 34.67103647704153], [-75.8722924797439, 34.7109518178893], [-75.93538995421898, 34.661821721691], [-75.88910349959451, 34.621882412567416]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.82600787575656, 34.67103647704153], [-75.76291200490357, 34.7201505279373], [-75.80919479558732, 34.76004184724895], [-75.8722924797439, 34.7109518178893], [-75.82600787575656, 34.67103647704153]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.76291200490357, 34.7201505279373], [-75.69981600383525, 34.7692429575316], [-75.74609700163953, 34.80911022636356], [-75.80919479558732, 34.76004184724895], [-75.76291200490357, 34.7201505279373]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69981600383525, 34.7692429575316], [-75.63671983554603, 34.81830742490327], [-75.68299906697588, 34.858150605763946], [-75.74609700163953, 34.80911022636356], [-75.69981600383525, 34.7692429575316]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.63671983554603, 34.81830742490327], [-75.5736234467247, 34.86733329613943], [-75.61990094875671, 34.90715233704755], [-75.68299906697588, 34.858150605763946], [-75.63671983554603, 34.81830742490327]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5736234467247, 34.86733329613943], [-75.51052693907526, 34.916337456570396], [-75.5568027325939, 34.95613232824965], [-75.61990094875671, 34.90715233704755], [-75.5736234467247, 34.86733329613943]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.51052693907526, 34.916337456570396], [-75.44743027196823, 34.96531194427176], [-75.4937043855646, 35.005082606689], [-75.5568027325939, 34.95613232824965], [-75.51052693907526, 34.916337456570396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.44743027196823, 34.96531194427176], [-75.38433342045866, 35.01424925795383], [-75.43060588998827, 35.05399566099976], [-75.4937043855646, 35.005082606689], [-75.44743027196823, 34.96531194427176]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38433342045866, 35.01424925795383], [-75.3212364675142, 35.06316476659447], [-75.36750731396143, 35.102886880940574], [-75.43060588998827, 35.05399566099976], [-75.38433342045866, 35.01424925795383]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3212364675142, 35.06316476659447], [-75.25813937405889, 35.112048870941706], [-75.30440862760679, 35.15174665440113], [-75.36750731396143, 35.102886880940574], [-75.3212364675142, 35.06316476659447]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25813937405889, 35.112048870941706], [-75.19504214062627, 35.16089722901245], [-75.24130983535682, 35.20057063384843], [-75.30440862760679, 35.15174665440113], [-75.25813937405889, 35.112048870941706]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19504214062627, 35.16089722901245], [-75.13194482916346, 35.20972368301027], [-75.17821098581612, 35.24937268010751], [-75.24130983535682, 35.20057063384843], [-75.19504214062627, 35.16089722901245]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CDFF29\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.13194482916346, 35.20972368301027], [-75.06884740873059, 35.25851697888069], [-75.11511205852952, 35.29814152432568], [-75.17821098581612, 35.24937268010751], [-75.13194482916346, 35.20972368301027]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06884740873059, 35.25851697888069], [-75.00574989952963, 35.30727596293897], [-75.05201307424707, 35.34687601177295], [-75.11511205852952, 35.29814152432568], [-75.06884740873059, 35.25851697888069]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00574989952963, 35.30727596293897], [-74.94265234164276, 35.35601293909313], [-74.98891406144888, 35.395588462660925], [-75.05201307424707, 35.34687601177295], [-75.00574989952963, 35.30727596293897]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.94265234164276, 35.35601293909313], [-74.87955472018953, 35.40471497988982], [-74.92581501675521, 35.444265933006406], [-74.98891406144888, 35.395588462660925], [-74.94265234164276, 35.35601293909313]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BAFF3C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87955472018953, 35.40471497988982], [-74.81645706634673, 35.453384151250916], [-74.86271596871455, 35.49291049204726], [-74.92581501675521, 35.444265933006406], [-74.87955472018953, 35.40471497988982]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.81645706634673, 35.453384151250916], [-74.7533593989657, 35.502031206120186], [-74.79961692643526, 35.54153290662738], [-74.86271596871455, 35.49291049204726], [-74.81645706634673, 35.453384151250916]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7533593989657, 35.502031206120186], [-74.69026172840546, 35.55064152396991], [-74.73651791246881, 35.59011853820459], [-74.79961692643526, 35.54153290662738], [-74.7533593989657, 35.502031206120186]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.69026172840546, 35.55064152396991], [-74.62716408533723, 35.59922042391861], [-74.67341895199931, 35.638672713323906], [-74.73651791246881, 35.59011853820459], [-74.69026172840546, 35.55064152396991]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.62716408533723, 35.59922042391861], [-74.56406646949381, 35.647777094111305], [-74.6103200369073, 35.687204631608935], [-74.67341895199931, 35.638672713323906], [-74.62716408533723, 35.59922042391861]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FA0F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.56406646949381, 35.647777094111305], [-74.50096892681499, 35.6962952002412], [-74.54722122564654, 35.735697939532194], [-74.6103200369073, 35.687204631608935], [-74.56406646949381, 35.647777094111305]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FE1200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.50096892681499, 35.6962952002412], [-74.43787147333876, 35.74478335043], [-74.48412252635251, 35.784161256409405], [-74.54722122564654, 35.735697939532194], [-74.50096892681499, 35.6962952002412]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.43787147333876, 35.74478335043], [-74.37477409323814, 35.793249153029095], [-74.42102391718879, 35.83260219969171], [-74.48412252635251, 35.784161256409405], [-74.43787147333876, 35.74478335043]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.37477409323814, 35.793249153029095], [-74.31167687943346, 35.84167453827153], [-74.3579255035031, 35.88100267948811], [-74.42102391718879, 35.83260219969171], [-74.37477409323814, 35.793249153029095]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.31167687943346, 35.84167453827153], [-74.24857981672504, 35.89007144121995], [-74.29482726032958, 35.92937464540273], [-74.3579255035031, 35.88100267948811], [-74.31167687943346, 35.84167453827153]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.24857981672504, 35.89007144121995], [-74.18548287867482, 35.93844587430004], [-74.23172915694443, 35.977724116678104], [-74.29482726032958, 35.92937464540273], [-74.24857981672504, 35.89007144121995]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.18548287867482, 35.93844587430004], [-74.12238621753788, 35.986778009679], [-74.16863135750441, 36.02603124477574], [-74.23172915694443, 35.977724116678104], [-74.18548287867482, 35.93844587430004]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFD700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.12238621753788, 35.986778009679], [-74.05928976798357, 36.035083149334284], [-74.10553378569297, 36.074311349078656], [-74.16863135750441, 36.02603124477574], [-74.12238621753788, 35.986778009679]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.44016426164924, 34.26776555591499], [-76.37706798752812, 34.31711838634463], [-76.4233684459665, 34.35720578642135], [-76.4864667526181, 34.307876617309155], [-76.44016426164924, 34.26776555591499]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.37706798752812, 34.31711838634463], [-76.31397160043903, 34.3664498111105], [-76.3602700419177, 34.40651352486261], [-76.4233684459665, 34.35720578642135], [-76.37706798752812, 34.31711838634463]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.31397160043903, 34.3664498111105], [-76.25087509211605, 34.4157582639445], [-76.29717153334511, 34.45579826453505], [-76.3602700419177, 34.40651352486261], [-76.31397160043903, 34.3664498111105]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.25087509211605, 34.4157582639445], [-76.18777835234738, 34.465023825820886], [-76.23407282606803, 34.50504006202024], [-76.29717153334511, 34.45579826453505], [-76.25087509211605, 34.4157582639445]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.18777835234738, 34.465023825820886], [-76.12468149552056, 34.51426790440837], [-76.17097401876228, 34.55426035010505], [-76.23407282606803, 34.50504006202024], [-76.18777835234738, 34.465023825820886]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.12468149552056, 34.51426790440837], [-76.06158450438431, 34.563487352389174], [-76.10787509672828, 34.60345597760554], [-76.17097401876228, 34.55426035010505], [-76.12468149552056, 34.51426790440837]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06158450438431, 34.563487352389174], [-75.99848728735034, 34.612665319399454], [-76.04477598290381, 34.65261007285573], [-76.10787509672828, 34.60345597760554], [-76.06158450438431, 34.563487352389174]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.99848728735034, 34.612665319399454], [-75.93538995421898, 34.661821721691], [-75.98167677113337, 34.70174257644153], [-76.04477598290381, 34.65261007285573], [-75.99848728735034, 34.612665319399454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93538995421898, 34.661821721691], [-75.8722924797439, 34.7109518178893], [-75.91857744024917, 34.75084874100409], [-75.98167677113337, 34.70174257644153], [-75.93538995421898, 34.661821721691]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8722924797439, 34.7109518178893], [-75.80919479558732, 34.76004184724895], [-75.8554779342775, 34.799914788090526], [-75.91857744024917, 34.75084874100409], [-75.8722924797439, 34.7109518178893]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80919479558732, 34.76004184724895], [-75.74609700163953, 34.80911022636356], [-75.79237833744301, 34.84895915742608], [-75.8554779342775, 34.799914788090526], [-75.80919479558732, 34.76004184724895]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74609700163953, 34.80911022636356], [-75.68299906697588, 34.858150605763946], [-75.72927862445769, 34.897975491422635], [-75.79237833744301, 34.84895915742608], [-75.74609700163953, 34.80911022636356]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.68299906697588, 34.858150605763946], [-75.61990094875671, 34.90715233704755], [-75.66617876219223, 34.94695312793511], [-75.72927862445769, 34.897975491422635], [-75.68299906697588, 34.858150605763946]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61990094875671, 34.90715233704755], [-75.5568027325939, 34.95613232824965], [-75.60307882134354, 34.99590899657133], [-75.66617876219223, 34.94695312793511], [-75.61990094875671, 34.90715233704755]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.5568027325939, 34.95613232824965], [-75.4937043855646, 35.005082606689], [-75.53997877613392, 35.0448351144429], [-75.60307882134354, 34.99590899657133], [-75.5568027325939, 34.95613232824965]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FEED00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4937043855646, 35.005082606689], [-75.43060588998827, 35.05399566099976], [-75.47687861561917, 35.093723960640176], [-75.53997877613392, 35.0448351144429], [-75.4937043855646, 35.005082606689]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43060588998827, 35.05399566099976], [-75.36750731396143, 35.102886880940574], [-75.41377839410846, 35.14259094464691], [-75.47687861561917, 35.093723960640176], [-75.43060588998827, 35.05399566099976]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.36750731396143, 35.102886880940574], [-75.30440862760679, 35.15174665440113], [-75.35067809025261, 35.1914264421618], [-75.41377839410846, 35.14259094464691], [-75.36750731396143, 35.102886880940574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30440862760679, 35.15174665440113], [-75.24130983535682, 35.20057063384843], [-75.2875777120958, 35.24022610040696], [-75.35067809025261, 35.1914264421618], [-75.30440862760679, 35.15174665440113]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C7FF2F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24130983535682, 35.20057063384843], [-75.17821098581612, 35.24937268010751], [-75.22447729587203, 35.28900379786781], [-75.2875777120958, 35.24022610040696], [-75.24130983535682, 35.20057063384843]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EAFF0C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.17821098581612, 35.24937268010751], [-75.11511205852952, 35.29814152432568], [-75.16137683084222, 35.337748251673275], [-75.22447729587203, 35.28900379786781], [-75.17821098581612, 35.24937268010751]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11511205852952, 35.29814152432568], [-75.05201307424707, 35.34687601177295], [-75.09827633825572, 35.38645830612134], [-75.16137683084222, 35.337748251673275], [-75.11511205852952, 35.29814152432568]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.05201307424707, 35.34687601177295], [-74.98891406144888, 35.395588462660925], [-75.03517583583863, 35.43514629687295], [-75.09827633825572, 35.38645830612134], [-75.05201307424707, 35.34687601177295]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A3FF53\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98891406144888, 35.395588462660925], [-74.92581501675521, 35.444265933006406], [-74.97207533085884, 35.4837992643008], [-75.03517583583863, 35.43514629687295], [-74.98891406144888, 35.395588462660925]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#ADFF49\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.92581501675521, 35.444265933006406], [-74.86271596871455, 35.49291049204726], [-74.9089748494151, 35.532419280801946], [-74.97207533085884, 35.4837992643008], [-74.92581501675521, 35.444265933006406]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B3FF42\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.86271596871455, 35.49291049204726], [-74.79961692643526, 35.54153290662738], [-74.84587439159174, 35.581017126380324], [-74.9089748494151, 35.532419280801946], [-74.86271596871455, 35.49291049204726]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.79961692643526, 35.54153290662738], [-74.73651791246881, 35.59011853820459], [-74.78277399120947, 35.629578145463796], [-74.84587439159174, 35.581017126380324], [-74.79961692643526, 35.54153290662738]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.73651791246881, 35.59011853820459], [-74.67341895199931, 35.638672713323906], [-74.71967366835383, 35.678107671643396], [-74.78277399120947, 35.629578145463796], [-74.73651791246881, 35.59011853820459]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.67341895199931, 35.638672713323906], [-74.6103200369073, 35.687204631608935], [-74.65657340764277, 35.72661491539874], [-74.71967366835383, 35.678107671643396], [-74.67341895199931, 35.638672713323906]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#DAFF1C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.6103200369073, 35.687204631608935], [-74.54722122564654, 35.735697939532194], [-74.59347327906562, 35.775083505057644], [-74.65657340764277, 35.72661491539874], [-74.6103200369073, 35.687204631608935]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.54722122564654, 35.735697939532194], [-74.48412252635251, 35.784161256409405], [-74.53037328343237, 35.82352207053505], [-74.59347327906562, 35.775083505057644], [-74.54722122564654, 35.735697939532194]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.48412252635251, 35.784161256409405], [-74.42102391718879, 35.83260219969171], [-74.46727339336128, 35.87193823787691], [-74.53037328343237, 35.82352207053505], [-74.48412252635251, 35.784161256409405]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F10700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.42102391718879, 35.83260219969171], [-74.3579255035031, 35.88100267948811], [-74.40417372560839, 35.92031389822916], [-74.46727339336128, 35.87193823787691], [-74.42102391718879, 35.83260219969171]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.3579255035031, 35.88100267948811], [-74.29482726032958, 35.92937464540273], [-74.34107424618328, 35.96866101493889], [-74.40417372560839, 35.92031389822916], [-74.3579255035031, 35.88100267948811]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.29482726032958, 35.92937464540273], [-74.23172915694443, 35.977724116678104], [-74.27797492042204, 36.016985613676155], [-74.34107424618328, 35.96866101493889], [-74.29482726032958, 35.92937464540273]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.23172915694443, 35.977724116678104], [-74.16863135750441, 36.02603124477574], [-74.21487592333693, 36.06526782643714], [-74.27797492042204, 36.016985613676155], [-74.23172915694443, 35.977724116678104]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A3FF53\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.16863135750441, 36.02603124477574], [-74.10553378569297, 36.074311349078656], [-74.15177716850671, 36.11352298901902], [-74.21487592333693, 36.06526782643714], [-74.16863135750441, 36.02603124477574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A6FF4F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.4864667526181, 34.307876617309155], [-76.4233684459665, 34.35720578642135], [-76.46966920749769, 34.397274555347536], [-76.5327695402043, 34.34796902260539], [-76.4864667526181, 34.307876617309155]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.4233684459665, 34.35720578642135], [-76.3602700419177, 34.40651352486261], [-76.40656879179626, 34.44655863352467], [-76.46966920749769, 34.397274555347536], [-76.4233684459665, 34.35720578642135]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.3602700419177, 34.40651352486261], [-76.29717153334511, 34.45579826453505], [-76.3434682870272, 34.49581968729056], [-76.40656879179626, 34.44655863352467], [-76.3602700419177, 34.40651352486261]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.29717153334511, 34.45579826453505], [-76.23407282606803, 34.50504006202024], [-76.2803676138445, 34.545037749978455], [-76.3434682870272, 34.49581968729056], [-76.29717153334511, 34.45579826453505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.23407282606803, 34.50504006202024], [-76.17097401876228, 34.55426035010505], [-76.21726685639106, 34.59423427837103], [-76.2803676138445, 34.545037749978455], [-76.23407282606803, 34.50504006202024]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.17097401876228, 34.55426035010505], [-76.10787509672828, 34.60345597760554], [-76.15416600232882, 34.64340611760052], [-76.21726685639106, 34.59423427837103], [-76.17097401876228, 34.55426035010505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.10787509672828, 34.60345597760554], [-76.04477598290381, 34.65261007285573], [-76.09106498804334, 34.692536375738655], [-76.15416600232882, 34.64340611760052], [-76.10787509672828, 34.60345597760554]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.04477598290381, 34.65261007285573], [-75.98167677113337, 34.70174257644153], [-76.027963892614, 34.74164501656657], [-76.09106498804334, 34.692536375738655], [-76.04477598290381, 34.65261007285573]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.98167677113337, 34.70174257644153], [-75.91857744024917, 34.75084874100409], [-75.96486269864887, 34.79072728703357], [-76.027963892614, 34.74164501656657], [-75.98167677113337, 34.70174257644153]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91857744024917, 34.75084874100409], [-75.8554779342775, 34.799914788090526], [-75.90176136162412, 34.839769391871705], [-75.96486269864887, 34.79072728703357], [-75.91857744024917, 34.75084874100409]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8554779342775, 34.799914788090526], [-75.79237833744301, 34.84895915742608], [-75.83865995126229, 34.888789792816794], [-75.90176136162412, 34.839769391871705], [-75.8554779342775, 34.799914788090526]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.79237833744301, 34.84895915742608], [-75.72927862445769, 34.897975491422635], [-75.77555844749492, 34.93778212456934], [-75.83865995126229, 34.888789792816794], [-75.79237833744301, 34.84895915742608]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72927862445769, 34.897975491422635], [-75.66617876219223, 34.94695312793511], [-75.71245682618591, 34.98673571195443], [-75.77555844749492, 34.93778212456934], [-75.72927862445769, 34.897975491422635]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4D00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66617876219223, 34.94695312793511], [-75.60307882134354, 34.99590899657133], [-75.64935514422126, 35.03566750507798], [-75.71245682618591, 34.98673571195443], [-75.66617876219223, 34.94695312793511]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.60307882134354, 34.99590899657133], [-75.53997877613392, 35.0448351144429], [-75.58625338243971, 35.084569511368166], [-75.64935514422126, 35.03566750507798], [-75.60307882134354, 34.99590899657133]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFDE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53997877613392, 35.0448351144429], [-75.47687861561917, 35.093723960640176], [-75.52315153613341, 35.13343420088215], [-75.58625338243971, 35.084569511368166], [-75.53997877613392, 35.0448351144429]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EAFF0C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.47687861561917, 35.093723960640176], [-75.41377839410846, 35.14259094464691], [-75.46004964684376, 35.18227700182396], [-75.52315153613341, 35.13343420088215], [-75.47687861561917, 35.093723960640176]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41377839410846, 35.14259094464691], [-75.35067809025261, 35.1914264421618], [-75.3969477011163, 35.23108827833932], [-75.46004964684376, 35.18227700182396], [-75.41377839410846, 35.14259094464691]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C3FF32\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35067809025261, 35.1914264421618], [-75.2875777120958, 35.24022610040696], [-75.33384571033292, 35.27986367270056], [-75.3969477011163, 35.23108827833932], [-75.35067809025261, 35.1914264421618]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2875777120958, 35.24022610040696], [-75.22447729587203, 35.28900379786781], [-75.27074369927375, 35.32861708013574], [-75.33384571033292, 35.27986367270056], [-75.2875777120958, 35.24022610040696]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#69FF8D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22447729587203, 35.28900379786781], [-75.16137683084222, 35.337748251673275], [-75.20764166618793, 35.37733720450355], [-75.27074369927375, 35.32861708013574], [-75.22447729587203, 35.28900379786781]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFDE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16137683084222, 35.337748251673275], [-75.09827633825572, 35.38645830612134], [-75.14453963277487, 35.426022889203736], [-75.20764166618793, 35.37733720450355], [-75.16137683084222, 35.337748251673275]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E7FF0F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.09827633825572, 35.38645830612134], [-75.03517583583863, 35.43514629687295], [-75.08143760680909, 35.474686484528114], [-75.14453963277487, 35.426022889203736], [-75.09827633825572, 35.38645830612134]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FAF000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.03517583583863, 35.43514629687295], [-74.97207533085884, 35.4837992643008], [-75.01833560539589, 35.52331501605787], [-75.08143760680909, 35.474686484528114], [-75.03517583583863, 35.43514629687295]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E4FF12\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.97207533085884, 35.4837992643008], [-74.9089748494151, 35.532419280801946], [-74.95523365235076, 35.571910559202074], [-75.01833560539589, 35.52331501605787], [-74.97207533085884, 35.4837992643008]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#ADFF49\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.9089748494151, 35.532419280801946], [-74.84587439159174, 35.581017126380324], [-74.89213173941597, 35.62048390641321], [-74.95523365235076, 35.571910559202074], [-74.9089748494151, 35.532419280801946]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.84587439159174, 35.581017126380324], [-74.78277399120947, 35.629578145463796], [-74.82902991080262, 35.66902038603986], [-74.89213173941597, 35.62048390641321], [-74.84587439159174, 35.581017126380324]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.78277399120947, 35.629578145463796], [-74.71967366835383, 35.678107671643396], [-74.7659281818647, 35.71752533835551], [-74.82902991080262, 35.66902038603986], [-74.78277399120947, 35.629578145463796]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.71967366835383, 35.678107671643396], [-74.65657340764277, 35.72661491539874], [-74.7028265305183, 35.76600798409521], [-74.7659281818647, 35.71752533835551], [-74.71967366835383, 35.678107671643396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.65657340764277, 35.72661491539874], [-74.59347327906562, 35.775083505057644], [-74.63972503735442, 35.814451934484495], [-74.7028265305183, 35.76600798409521], [-74.65657340764277, 35.72661491539874]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.59347327906562, 35.775083505057644], [-74.53037328343237, 35.82352207053505], [-74.5766236964057, 35.86286582946508], [-74.63972503735442, 35.814451934484495], [-74.59347327906562, 35.775083505057644]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFD300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.53037328343237, 35.82352207053505], [-74.46727339336128, 35.87193823787691], [-74.51352247518776, 35.911257303189046], [-74.5766236964057, 35.86286582946508], [-74.53037328343237, 35.82352207053505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9AFF5C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.46727339336128, 35.87193823787691], [-74.40417372560839, 35.92031389822916], [-74.45042150088983, 35.95960822896731], [-74.51352247518776, 35.911257303189046], [-74.46727339336128, 35.87193823787691]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BAFF3C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.40417372560839, 35.92031389822916], [-74.34107424618328, 35.96866101493889], [-74.38732073120399, 36.007930583117755], [-74.45042150088983, 35.95960822896731], [-74.40417372560839, 35.92031389822916]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.34107424618328, 35.96866101493889], [-74.27797492042204, 36.016985613676155], [-74.32422012785676, 36.05623039735998], [-74.38732073120399, 36.007930583117755], [-74.34107424618328, 35.96866101493889]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8DFF69\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.27797492042204, 36.016985613676155], [-74.21487592333693, 36.06526782643714], [-74.26111987571281, 36.10448778543345], [-74.32422012785676, 36.05623039735998], [-74.27797492042204, 36.016985613676155]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.21487592333693, 36.06526782643714], [-74.15177716850671, 36.11352298901902], [-74.19801987908899, 36.15271809858687], [-74.26111987571281, 36.10448778543345], [-74.21487592333693, 36.06526782643714]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5327695402043, 34.34796902260539], [-76.46966920749769, 34.397274555347536], [-76.5159702276896, 34.43732472046779], [-76.5790725816808, 34.388042797629026], [-76.5327695402043, 34.34796902260539]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.46966920749769, 34.397274555347536], [-76.40656879179626, 34.44655863352467], [-76.4528678040169, 34.48658516589628], [-76.5159702276896, 34.43732472046779], [-76.46966920749769, 34.397274555347536]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.40656879179626, 34.44655863352467], [-76.3434682870272, 34.49581968729056], [-76.38976530556407, 34.53582256239667], [-76.4528678040169, 34.48658516589628], [-76.40656879179626, 34.44655863352467]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.3434682870272, 34.49581968729056], [-76.2803676138445, 34.545037749978455], [-76.32666266670228, 34.585016921134624], [-76.38976530556407, 34.53582256239667], [-76.3434682870272, 34.49581968729056]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.2803676138445, 34.545037749978455], [-76.21726685639106, 34.59423427837103], [-76.26355995814032, 34.63418972183122], [-76.32666266670228, 34.585016921134624], [-76.2803676138445, 34.545037749978455]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.21726685639106, 34.59423427837103], [-76.15416600232882, 34.64340611760052], [-76.20045716972382, 34.683337806107126], [-76.26355995814032, 34.63418972183122], [-76.21726685639106, 34.59423427837103]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.15416600232882, 34.64340611760052], [-76.09106498804334, 34.692536375738655], [-76.13735425027652, 34.73244426275687], [-76.20045716972382, 34.683337806107126], [-76.15416600232882, 34.64340611760052]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.09106498804334, 34.692536375738655], [-76.027963892614, 34.74164501656657], [-76.0742512652246, 34.78152907768117], [-76.13735425027652, 34.73244426275687], [-76.09106498804334, 34.692536375738655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.027963892614, 34.74164501656657], [-75.96486269864887, 34.79072728703357], [-76.0111482006686, 34.83058749241462], [-76.0742512652246, 34.78152907768117], [-76.027963892614, 34.74164501656657]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.96486269864887, 34.79072728703357], [-75.90176136162412, 34.839769391871705], [-75.94804502267597, 34.87960569572262], [-76.0111482006686, 34.83058749241462], [-75.96486269864887, 34.79072728703357]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.90176136162412, 34.839769391871705], [-75.83865995126229, 34.888789792816794], [-75.88494178755639, 34.928602170289864], [-75.94804502267597, 34.87960569572262], [-75.90176136162412, 34.839769391871705]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.83865995126229, 34.888789792816794], [-75.77555844749492, 34.93778212456934], [-75.82183848006915, 34.977570543492895], [-75.88494178755639, 34.928602170289864], [-75.83865995126229, 34.888789792816794]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FE1200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77555844749492, 34.93778212456934], [-75.71245682618591, 34.98673571195443], [-75.75873508439548, 35.026500127807175], [-75.82183848006915, 34.977570543492895], [-75.77555844749492, 34.93778212456934]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.71245682618591, 34.98673571195443], [-75.64935514422126, 35.03566750507798], [-75.69563164464651, 35.07540789281633], [-75.75873508439548, 35.026500127807175], [-75.71245682618591, 34.98673571195443]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CDFF29\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64935514422126, 35.03566750507798], [-75.58625338243971, 35.084569511368166], [-75.63252814777965, 35.12428583676451], [-75.69563164464651, 35.07540789281633], [-75.64935514422126, 35.03566750507798]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58625338243971, 35.084569511368166], [-75.52315153613341, 35.13343420088215], [-75.56942459485003, 35.17312642116549], [-75.63252814777965, 35.12428583676451], [-75.58625338243971, 35.084569511368166]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFBD00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52315153613341, 35.13343420088215], [-75.46004964684376, 35.18227700182396], [-75.50632101559043, 35.22194509198649], [-75.56942459485003, 35.17312642116549], [-75.52315153613341, 35.13343420088215]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46004964684376, 35.18227700182396], [-75.3969477011163, 35.23108827833932], [-75.4432174038432, 35.27073220243051], [-75.50632101559043, 35.22194509198649], [-75.46004964684376, 35.18227700182396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F7F400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3969477011163, 35.23108827833932], [-75.33384571033292, 35.27986367270056], [-75.38011377406661, 35.31948339010558], [-75.4432174038432, 35.27073220243051], [-75.3969477011163, 35.23108827833932]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33384571033292, 35.27986367270056], [-75.27074369927375, 35.32861708013574], [-75.31701014045157, 35.36821256610551], [-75.38011377406661, 35.31948339010558], [-75.33384571033292, 35.27986367270056]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFB500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27074369927375, 35.32861708013574], [-75.20764166618793, 35.37733720450355], [-75.25390650954644, 35.41690842173659], [-75.31701014045157, 35.36821256610551], [-75.27074369927375, 35.32861708013574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20764166618793, 35.37733720450355], [-75.14453963277487, 35.426022889203736], [-75.1908029034515, 35.46556979957458], [-75.25390650954644, 35.41690842173659], [-75.20764166618793, 35.37733720450355]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EAFF0C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14453963277487, 35.426022889203736], [-75.08143760680909, 35.474686484528114], [-75.12769932074836, 35.51420906375762], [-75.1908029034515, 35.46556979957458], [-75.14453963277487, 35.426022889203736]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08143760680909, 35.474686484528114], [-75.01833560539589, 35.52331501605787], [-75.06459578761091, 35.5628132258961], [-75.12769932074836, 35.51420906375762], [-75.08143760680909, 35.474686484528114]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#93FF63\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.01833560539589, 35.52331501605787], [-74.95523365235076, 35.571910559202074], [-75.00149232572662, 35.61138436427291], [-75.06459578761091, 35.5628132258961], [-75.01833560539589, 35.52331501605787]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95523365235076, 35.571910559202074], [-74.89213173941597, 35.62048390641321], [-74.93838891914265, 35.65993328310492], [-75.00149232572662, 35.61138436427291], [-74.95523365235076, 35.571910559202074]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.89213173941597, 35.62048390641321], [-74.82902991080262, 35.66902038603986], [-74.87528562162392, 35.70844529557944], [-74.93838891914265, 35.65993328310492], [-74.89213173941597, 35.62048390641321]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#DAFF1C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.82902991080262, 35.66902038603986], [-74.7659281818647, 35.71752533835551], [-74.81218244413952, 35.756925748304866], [-74.87528562162392, 35.70844529557944], [-74.82902991080262, 35.66902038603986]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A6FF4F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7659281818647, 35.71752533835551], [-74.7028265305183, 35.76600798409521], [-74.74907935843703, 35.805383871692364], [-74.81218244413952, 35.756925748304866], [-74.7659281818647, 35.71752533835551]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EAFF0C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7028265305183, 35.76600798409521], [-74.63972503735442, 35.814451934484495], [-74.68597645481825, 35.853803260874706], [-74.74907935843703, 35.805383871692364], [-74.7028265305183, 35.76600798409521]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B0FF46\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63972503735442, 35.814451934484495], [-74.5766236964057, 35.86286582946508], [-74.6228737210588, 35.90219256526948], [-74.68597645481825, 35.853803260874706], [-74.63972503735442, 35.814451934484495]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5766236964057, 35.86286582946508], [-74.51352247518776, 35.911257303189046], [-74.55977111999356, 35.95055942666207], [-74.6228737210588, 35.90219256526948], [-74.5766236964057, 35.86286582946508]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.51352247518776, 35.911257303189046], [-74.45042150088983, 35.95960822896731], [-74.49666878831295, 35.99888570162409], [-74.55977111999356, 35.95055942666207], [-74.51352247518776, 35.911257303189046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.45042150088983, 35.95960822896731], [-74.38732073120399, 36.007930583117755], [-74.43356667606521, 36.047183378697454], [-74.49666878831295, 35.99888570162409], [-74.45042150088983, 35.95960822896731]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.38732073120399, 36.007930583117755], [-74.32422012785676, 36.05623039735998], [-74.37046474168302, 36.095458495284575], [-74.43356667606521, 36.047183378697454], [-74.38732073120399, 36.007930583117755]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.32422012785676, 36.05623039735998], [-74.26111987571281, 36.10448778543345], [-74.30736317892291, 36.14369114804515], [-74.37046474168302, 36.095458495284575], [-74.32422012785676, 36.05623039735998]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.26111987571281, 36.10448778543345], [-74.19801987908899, 36.15271809858687], [-74.24426188364507, 36.19189670274521], [-74.30736317892291, 36.14369114804515], [-74.26111987571281, 36.10448778543345]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5790725816808, 34.388042797629026], [-76.5159702276896, 34.43732472046779], [-76.562271465472, 34.47735630593611], [-76.62537583755781, 34.428097965143124], [-76.5790725816808, 34.388042797629026]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5159702276896, 34.43732472046779], [-76.4528678040169, 34.48658516589628], [-76.49916703600229, 34.526593147463004], [-76.562271465472, 34.47735630593611], [-76.5159702276896, 34.43732472046779]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.4528678040169, 34.48658516589628], [-76.38976530556407, 34.53582256239667], [-76.43606254494989, 34.57580691660676], [-76.49916703600229, 34.526593147463004], [-76.4528678040169, 34.48658516589628]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.38976530556407, 34.53582256239667], [-76.32666266670228, 34.585016921134624], [-76.37295793935901, 34.6249776033873], [-76.43606254494989, 34.57580691660676], [-76.38976530556407, 34.53582256239667]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.32666266670228, 34.585016921134624], [-76.26355995814032, 34.63418972183122], [-76.30985327752902, 34.674126709466634], [-76.37295793935901, 34.6249776033873], [-76.32666266670228, 34.585016921134624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.26355995814032, 34.63418972183122], [-76.20045716972382, 34.683337806107126], [-76.24674855132302, 34.72325107311683], [-76.30985327752902, 34.674126709466634], [-76.26355995814032, 34.63418972183122]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.20045716972382, 34.683337806107126], [-76.13735425027652, 34.73244426275687], [-76.18364372105708, 34.77233376478917], [-76.24674855132302, 34.72325107311683], [-76.20045716972382, 34.683337806107126]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.13735425027652, 34.73244426275687], [-76.0742512652246, 34.78152907768117], [-76.12053883954351, 34.82139479148699], [-76.18364372105708, 34.77233376478917], [-76.13735425027652, 34.73244426275687]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0742512652246, 34.78152907768117], [-76.0111482006686, 34.83058749241462], [-76.05743389610947, 34.87042938959313], [-76.12053883954351, 34.82139479148699], [-76.0742512652246, 34.78152907768117]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0111482006686, 34.83058749241462], [-75.94804502267597, 34.87960569572262], [-75.9943288666074, 34.9194237327132], [-76.05743389610947, 34.87042938959313], [-76.0111482006686, 34.83058749241462]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.94804502267597, 34.87960569572262], [-75.88494178755639, 34.928602170289864], [-75.93122379495401, 34.968396323474664], [-75.9943288666074, 34.9194237327132], [-75.94804502267597, 34.87960569572262]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88494178755639, 34.928602170289864], [-75.82183848006915, 34.977570543492895], [-75.86811867036842, 35.01734078229858], [-75.93122379495401, 34.968396323474664], [-75.88494178755639, 34.928602170289864]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.82183848006915, 34.977570543492895], [-75.75873508439548, 35.026500127807175], [-75.80501348471216, 35.06624640996022], [-75.86811867036842, 35.01734078229858], [-75.82183848006915, 34.977570543492895]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.75873508439548, 35.026500127807175], [-75.69563164464651, 35.07540789281633], [-75.74190827029398, 35.11513019455124], [-75.80501348471216, 35.06624640996022], [-75.75873508439548, 35.026500127807175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCF00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69563164464651, 35.07540789281633], [-75.63252814777965, 35.12428583676451], [-75.67880301972124, 35.16398412560816], [-75.74190827029398, 35.11513019455124], [-75.69563164464651, 35.07540789281633]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.63252814777965, 35.12428583676451], [-75.56942459485003, 35.17312642116549], [-75.61569773936417, 35.21280065657135], [-75.67880301972124, 35.16398412560816], [-75.63252814777965, 35.12428583676451]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56942459485003, 35.17312642116549], [-75.50632101559043, 35.22194509198649], [-75.55259244804918, 35.26159525025905], [-75.61569773936417, 35.21280065657135], [-75.56942459485003, 35.17312642116549]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.50632101559043, 35.22194509198649], [-75.4432174038432, 35.27073220243051], [-75.48948714635122, 35.310358249515524], [-75.55259244804918, 35.26159525025905], [-75.50632101559043, 35.22194509198649]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4432174038432, 35.27073220243051], [-75.38011377406661, 35.31948339010558], [-75.42638185155575, 35.35908528756046], [-75.48948714635122, 35.310358249515524], [-75.4432174038432, 35.27073220243051]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38011377406661, 35.31948339010558], [-75.31701014045157, 35.36821256610551], [-75.3632765680801, 35.407790290515244], [-75.42638185155575, 35.35908528756046], [-75.38011377406661, 35.31948339010558]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8DFF69\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.31701014045157, 35.36821256610551], [-75.25390650954644, 35.41690842173659], [-75.30017131011986, 35.456461937822745], [-75.3632765680801, 35.407790290515244], [-75.31701014045157, 35.36821256610551]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25390650954644, 35.41690842173659], [-75.1908029034515, 35.46556979957458], [-75.23706610012715, 35.50509907130899], [-75.30017131011986, 35.456461937822745], [-75.25390650954644, 35.41690842173659]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F4F802\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1908029034515, 35.46556979957458], [-75.12769932074836, 35.51420906375762], [-75.17396092820815, 35.553714068206325], [-75.23706610012715, 35.50509907130899], [-75.1908029034515, 35.46556979957458]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C7FF2F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.12769932074836, 35.51420906375762], [-75.06459578761091, 35.5628132258961], [-75.11085582887584, 35.60229392694442], [-75.17396092820815, 35.553714068206325], [-75.12769932074836, 35.51420906375762]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#89FF6C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06459578761091, 35.5628132258961], [-75.00149232572662, 35.61138436427291], [-75.04775082183481, 35.65084072855], [-75.11085582887584, 35.60229392694442], [-75.06459578761091, 35.5628132258961]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#56FFA0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00149232572662, 35.61138436427291], [-74.93838891914265, 35.65993328310492], [-74.98464588405004, 35.69936528834648], [-75.04775082183481, 35.65084072855], [-75.00149232572662, 35.61138436427291]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.93838891914265, 35.65993328310492], [-74.87528562162392, 35.70844529557944], [-74.92154107804501, 35.74785290524621], [-74.98464588405004, 35.69936528834648], [-74.93838891914265, 35.65993328310492]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#02E8F4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87528562162392, 35.70844529557944], [-74.81218244413952, 35.756925748304866], [-74.85843641073131, 35.796308931860125], [-74.92154107804501, 35.74785290524621], [-74.87528562162392, 35.70844529557944]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.81218244413952, 35.756925748304866], [-74.74907935843703, 35.805383871692364], [-74.79533184819451, 35.84474260771673], [-74.85843641073131, 35.796308931860125], [-74.81218244413952, 35.756925748304866]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.74907935843703, 35.805383871692364], [-74.68597645481825, 35.853803260874706], [-74.7322274895985, 35.89313751283359], [-74.79533184819451, 35.84474260771673], [-74.74907935843703, 35.805383871692364]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.68597645481825, 35.853803260874706], [-74.6228737210588, 35.90219256526948], [-74.66912331695556, 35.94150230557384], [-74.7322274895985, 35.89313751283359], [-74.68597645481825, 35.853803260874706]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.6228737210588, 35.90219256526948], [-74.55977111999356, 35.95055942666207], [-74.60601928882153, 35.98984463489882], [-74.66912331695556, 35.94150230557384], [-74.6228737210588, 35.90219256526948]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#46FFB0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.55977111999356, 35.95055942666207], [-74.49666878831295, 35.99888570162409], [-74.54291555049826, 36.0381463417046], [-74.60601928882153, 35.98984463489882], [-74.55977111999356, 35.95055942666207]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0060FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.49666878831295, 35.99888570162409], [-74.43356667606521, 36.047183378697454], [-74.47981204503144, 36.08641942603528], [-74.54291555049826, 36.0381463417046], [-74.49666878831295, 35.99888570162409]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0090FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.43356667606521, 36.047183378697454], [-74.37046474168302, 36.095458495284575], [-74.41670872786112, 36.134669930620284], [-74.47981204503144, 36.08641942603528], [-74.43356667606521, 36.047183378697454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.37046474168302, 36.095458495284575], [-74.30736317892291, 36.14369114804515], [-74.35360580071723, 36.18287793618505], [-74.41670872786112, 36.134669930620284], [-74.37046474168302, 36.095458495284575]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.30736317892291, 36.14369114804515], [-74.24426188364507, 36.19189670274521], [-74.29050315177165, 36.23105882210663], [-74.35360580071723, 36.18287793618505], [-74.30736317892291, 36.14369114804515]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5FFF96\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.62537583755781, 34.428097965143124], [-76.562271465472, 34.47735630593611], [-76.6085728829093, 34.51736933289896], [-76.67167927136198, 34.46813454502627], [-76.62537583755781, 34.428097965143124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.562271465472, 34.47735630593611], [-76.49916703600229, 34.526593147463004], [-76.54546644842233, 34.566582600584226], [-76.6085728829093, 34.51736933289896], [-76.562271465472, 34.47735630593611]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.49916703600229, 34.526593147463004], [-76.43606254494989, 34.57580691660676], [-76.48235996453272, 34.615772773434195], [-76.54546644842233, 34.566582600584226], [-76.49916703600229, 34.526593147463004]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.43606254494989, 34.57580691660676], [-76.37295793935901, 34.6249776033873], [-76.41925338998144, 34.664919821290155], [-76.48235996453272, 34.615772773434195], [-76.43606254494989, 34.57580691660676]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.37295793935901, 34.6249776033873], [-76.30985327752902, 34.674126709466634], [-76.35614677161475, 34.71404526681303], [-76.41925338998144, 34.664919821290155], [-76.37295793935901, 34.6249776033873]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.30985327752902, 34.674126709466634], [-76.24674855132302, 34.72325107311683], [-76.29304010315782, 34.76314594508062], [-76.35614677161475, 34.71404526681303], [-76.30985327752902, 34.674126709466634]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.24674855132302, 34.72325107311683], [-76.18364372105708, 34.77233376478917], [-76.22993335553271, 34.81220490908726], [-76.29304010315782, 34.76314594508062], [-76.24674855132302, 34.72325107311683]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.18364372105708, 34.77233376478917], [-76.12053883954351, 34.82139479148699], [-76.16682656990949, 34.86124218597644], [-76.22993335553271, 34.81220490908726], [-76.18364372105708, 34.77233376478917]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.12053883954351, 34.82139479148699], [-76.05743389610947, 34.87042938959313], [-76.10371973859293, 34.91025300722882], [-76.16682656990949, 34.86124218597644], [-76.12053883954351, 34.82139479148699]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.05743389610947, 34.87042938959313], [-75.9943288666074, 34.9194237327132], [-76.04061284646274, 34.959223532058395], [-76.10371973859293, 34.91025300722882], [-76.05743389610947, 34.87042938959313]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9943288666074, 34.9194237327132], [-75.93122379495401, 34.968396323474664], [-75.97750592599822, 35.008172282080785], [-76.04061284646274, 34.959223532058395], [-75.9943288666074, 34.9194237327132]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93122379495401, 34.968396323474664], [-75.86811867036842, 35.01734078229858], [-75.91439897053264, 35.057092871112346], [-75.97750592599822, 35.008172282080785], [-75.93122379495401, 34.968396323474664]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.86811867036842, 35.01734078229858], [-75.80501348471216, 35.06624640996022], [-75.85129197900761, 35.105974588848675], [-75.91439897053264, 35.057092871112346], [-75.86811867036842, 35.01734078229858]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80501348471216, 35.06624640996022], [-75.74190827029398, 35.11513019455124], [-75.78818497284244, 35.15483444096713], [-75.85129197900761, 35.105974588848675], [-75.80501348471216, 35.06624640996022]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74190827029398, 35.11513019455124], [-75.67880301972124, 35.16398412560816], [-75.725077949853, 35.20366440875138], [-75.78818497284244, 35.15483444096713], [-75.74190827029398, 35.11513019455124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.67880301972124, 35.16398412560816], [-75.61569773936417, 35.21280065657135], [-75.66197092130099, 35.25245693801941], [-75.725077949853, 35.20366440875138], [-75.67880301972124, 35.16398412560816]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.61569773936417, 35.21280065657135], [-75.55259244804918, 35.26159525025905], [-75.59886389595553, 35.301227507570594], [-75.66197092130099, 35.25245693801941], [-75.61569773936417, 35.21280065657135]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.55259244804918, 35.26159525025905], [-75.48948714635122, 35.310358249515524], [-75.53575688059142, 35.349966450449436], [-75.59886389595553, 35.301227507570594], [-75.55259244804918, 35.26159525025905]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.48948714635122, 35.310358249515524], [-75.42638185155575, 35.35908528756046], [-75.47264989508437, 35.39866939575414], [-75.53575688059142, 35.349966450449436], [-75.48948714635122, 35.310358249515524]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.42638185155575, 35.35908528756046], [-75.3632765680801, 35.407790290515244], [-75.4095429348471, 35.447350283832066], [-75.47264989508437, 35.39866939575414], [-75.42638185155575, 35.35908528756046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B7FF3F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3632765680801, 35.407790290515244], [-75.30017131011986, 35.456461937822745], [-75.34643602110575, 35.49599778292409], [-75.4095429348471, 35.447350283832066], [-75.3632765680801, 35.407790290515244]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCB00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30017131011986, 35.456461937822745], [-75.23706610012715, 35.50509907130899], [-75.28332917661584, 35.54461073418055], [-75.34643602110575, 35.49599778292409], [-75.30017131011986, 35.456461937822745]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EDFF08\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.23706610012715, 35.50509907130899], [-75.17396092820815, 35.553714068206325], [-75.22022238368622, 35.59320152720669], [-75.28332917661584, 35.54461073418055], [-75.23706610012715, 35.50509907130899]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D7FF1F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.17396092820815, 35.553714068206325], [-75.11085582887584, 35.60229392694442], [-75.15711568447745, 35.64175714801204], [-75.22022238368622, 35.59320152720669], [-75.17396092820815, 35.553714068206325]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#69FF8D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11085582887584, 35.60229392694442], [-75.04775082183481, 35.65084072855], [-75.09400909684669, 35.690279680244984], [-75.15711568447745, 35.64175714801204], [-75.11085582887584, 35.60229392694442]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#53FFA3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.04775082183481, 35.65084072855], [-74.98464588405004, 35.69936528834648], [-75.03090259125749, 35.738779949702696], [-75.09400909684669, 35.690279680244984], [-75.04775082183481, 35.65084072855]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#009CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98464588405004, 35.69936528834648], [-74.92154107804501, 35.74785290524621], [-74.9677962382363, 35.787243241878315], [-75.03090259125749, 35.738779949702696], [-74.98464588405004, 35.69936528834648]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.92154107804501, 35.74785290524621], [-74.85843641073131, 35.796308931860125], [-74.90469004094626, 35.83567491506726], [-74.9677962382363, 35.787243241878315], [-74.92154107804501, 35.74785290524621]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#79FF7D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.85843641073131, 35.796308931860125], [-74.79533184819451, 35.84474260771673], [-74.8415839602919, 35.88408421737649], [-74.90469004094626, 35.83567491506726], [-74.85843641073131, 35.796308931860125]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8DFF69\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.79533184819451, 35.84474260771673], [-74.7322274895985, 35.89313751283359], [-74.7784781034911, 35.932454714654675], [-74.8415839602919, 35.88408421737649], [-74.79533184819451, 35.84474260771673]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7322274895985, 35.89313751283359], [-74.66912331695556, 35.94150230557384], [-74.71537244726102, 35.980795073700065], [-74.7784781034911, 35.932454714654675], [-74.7322274895985, 35.89313751283359]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.66912331695556, 35.94150230557384], [-74.60601928882153, 35.98984463489882], [-74.65226694626071, 36.029112950207576], [-74.71537244726102, 35.980795073700065], [-74.66912331695556, 35.94150230557384]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#008CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.60601928882153, 35.98984463489882], [-74.54291555049826, 36.0381463417046], [-74.58916175355483, 36.07739017043012], [-74.65226694626071, 36.029112950207576], [-74.60601928882153, 35.98984463489882]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.54291555049826, 36.0381463417046], [-74.47981204503144, 36.08641942603528], [-74.52605680579657, 36.12563874521624], [-74.58916175355483, 36.07739017043012], [-74.54291555049826, 36.0381463417046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0078FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.47981204503144, 36.08641942603528], [-74.41670872786112, 36.134669930620284], [-74.46295205572045, 36.1738647222774], [-74.52605680579657, 36.12563874521624], [-74.47981204503144, 36.08641942603528]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#08F0ED\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.41670872786112, 36.134669930620284], [-74.35360580071723, 36.18287793618505], [-74.39984771215254, 36.22204816751916], [-74.46295205572045, 36.1738647222774], [-74.41670872786112, 36.134669930620284]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.35360580071723, 36.18287793618505], [-74.29050315177165, 36.23105882210663], [-74.33674365630901, 36.27020447305064], [-74.39984771215254, 36.22204816751916], [-74.35360580071723, 36.18287793618505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.67167927136198, 34.46813454502627], [-76.6085728829093, 34.51736933289896], [-76.65487444499088, 34.55736381966445], [-76.71798284943327, 34.50815255443667], [-76.67167927136198, 34.46813454502627]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.6085728829093, 34.51736933289896], [-76.54546644842233, 34.566582600584226], [-76.59176600497847, 34.60655354466705], [-76.65487444499088, 34.55736381966445], [-76.6085728829093, 34.51736933289896]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.54546644842233, 34.566582600584226], [-76.48235996453272, 34.615772773434195], [-76.52865752679338, 34.655720153330435], [-76.59176600497847, 34.60655354466705], [-76.54546644842233, 34.566582600584226]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.48235996453272, 34.615772773434195], [-76.41925338998144, 34.664919821290155], [-76.46554897995996, 34.70484359623353], [-76.52865752679338, 34.655720153330435], [-76.48235996453272, 34.615772773434195]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.41925338998144, 34.664919821290155], [-76.35614677161475, 34.71404526681303], [-76.40244040076459, 34.75394541614553], [-76.46554897995996, 34.70484359623353], [-76.41925338998144, 34.664919821290155]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.35614677161475, 34.71404526681303], [-76.29304010315782, 34.76314594508062], [-76.3393317846489, 34.803022445096204], [-76.40244040076459, 34.75394541614553], [-76.35614677161475, 34.71404526681303]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.29304010315782, 34.76314594508062], [-76.22993335553271, 34.81220490908726], [-76.27622311231022, 34.852057719464824], [-76.3393317846489, 34.803022445096204], [-76.29304010315782, 34.76314594508062]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.22993335553271, 34.81220490908726], [-76.16682656990949, 34.86124218597644], [-76.21311441418521, 34.90107128562314], [-76.27622311231022, 34.852057719464824], [-76.22993335553271, 34.81220490908726]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.16682656990949, 34.86124218597644], [-76.10371973859293, 34.91025300722882], [-76.15000568532275, 34.950058370386834], [-76.21311441418521, 34.90107128562314], [-76.16682656990949, 34.86124218597644]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.10371973859293, 34.91025300722882], [-76.04061284646274, 34.959223532058395], [-76.08689691891783, 34.99900511930997], [-76.15000568532275, 34.950058370386834], [-76.10371973859293, 34.91025300722882]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.04061284646274, 34.959223532058395], [-75.97750592599822, 35.008172282080785], [-76.02378813690785, 35.04793007208992], [-76.08689691891783, 34.99900511930997], [-76.04061284646274, 34.959223532058395]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97750592599822, 35.008172282080785], [-75.91439897053264, 35.057092871112346], [-75.96067933641541, 35.09682683627249], [-76.02378813690785, 35.04793007208992], [-75.97750592599822, 35.008172282080785]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91439897053264, 35.057092871112346], [-75.85129197900761, 35.105974588848675], [-75.89757052289664, 35.145684691066656], [-75.96067933641541, 35.09682683627249], [-75.91439897053264, 35.057092871112346]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.85129197900761, 35.105974588848675], [-75.78818497284244, 35.15483444096713], [-75.83446170773868, 35.194520658857655], [-75.89757052289664, 35.145684691066656], [-75.85129197900761, 35.105974588848675]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.78818497284244, 35.15483444096713], [-75.725077949853, 35.20366440875138], [-75.7713528935503, 35.24332671311067], [-75.83446170773868, 35.194520658857655], [-75.78818497284244, 35.15483444096713]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.725077949853, 35.20366440875138], [-75.66197092130099, 35.25245693801941], [-75.70824409608397, 35.292095292454164], [-75.7713528935503, 35.24332671311067], [-75.725077949853, 35.20366440875138]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66197092130099, 35.25245693801941], [-75.59886389595553, 35.301227507570594], [-75.6451353148505, 35.34084189083866], [-75.70824409608397, 35.292095292454164], [-75.66197092130099, 35.25245693801941]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59886389595553, 35.301227507570594], [-75.53575688059142, 35.349966450449436], [-75.58202656232184, 35.38955683204418], [-75.6451353148505, 35.34084189083866], [-75.59886389595553, 35.301227507570594]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.53575688059142, 35.349966450449436], [-75.47264989508437, 35.39866939575414], [-75.51891786073847, 35.43823574130529], [-75.58202656232184, 35.38955683204418], [-75.53575688059142, 35.349966450449436]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.47264989508437, 35.39866939575414], [-75.4095429348471, 35.447350283832066], [-75.45580919723378, 35.48689257242849], [-75.51891786073847, 35.43823574130529], [-75.47264989508437, 35.39866939575414]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4095429348471, 35.447350283832066], [-75.34643602110575, 35.49599778292409], [-75.39270059948117, 35.53551598308778], [-75.45580919723378, 35.48689257242849], [-75.4095429348471, 35.447350283832066]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34643602110575, 35.49599778292409], [-75.28332917661584, 35.54461073418055], [-75.32959209049201, 35.58410481383137], [-75.39270059948117, 35.53551598308778], [-75.34643602110575, 35.49599778292409]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#83FF73\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28332917661584, 35.54461073418055], [-75.22022238368622, 35.59320152720669], [-75.26648364541867, 35.63267146594541], [-75.32959209049201, 35.58410481383137], [-75.28332917661584, 35.54461073418055]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E0FF15\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22022238368622, 35.59320152720669], [-75.15711568447745, 35.64175714801204], [-75.20337531341389, 35.68120291375168], [-75.26648364541867, 35.63267146594541], [-75.22022238368622, 35.59320152720669]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B0FF46\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.15711568447745, 35.64175714801204], [-75.09400909684669, 35.690279680244984], [-75.14026711061402, 35.72970124340516], [-75.20337531341389, 35.68120291375168], [-75.15711568447745, 35.64175714801204]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#70FF86\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.09400909684669, 35.690279680244984], [-75.03090259125749, 35.738779949702696], [-75.07715900153109, 35.778177290568095], [-75.14026711061402, 35.72970124340516], [-75.09400909684669, 35.690279680244984]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.03090259125749, 35.738779949702696], [-74.9677962382363, 35.787243241878315], [-75.01405106397713, 35.826616328140524], [-75.07715900153109, 35.778177290568095], [-75.03090259125749, 35.738779949702696]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1FFFD7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.9677962382363, 35.787243241878315], [-74.90469004094626, 35.83567491506726], [-74.95094329765851, 35.87502371979804], [-75.01405106397713, 35.826616328140524], [-74.9677962382363, 35.787243241878315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.90469004094626, 35.83567491506726], [-74.8415839602919, 35.88408421737649], [-74.88783565875512, 35.92340872170624], [-74.95094329765851, 35.87502371979804], [-74.90469004094626, 35.83567491506726]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.8415839602919, 35.88408421737649], [-74.7784781034911, 35.932454714654675], [-74.8247282617703, 35.97175488646077], [-74.88783565875512, 35.92340872170624], [-74.8415839602919, 35.88408421737649]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00DCFE\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7784781034911, 35.932454714654675], [-74.71537244726102, 35.980795073700065], [-74.76162107856985, 36.02007088880366], [-74.8247282617703, 35.97175488646077], [-74.7784781034911, 35.932454714654675]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.71537244726102, 35.980795073700065], [-74.65226694626071, 36.029112950207576], [-74.69851406027934, 36.068364390735596], [-74.76162107856985, 36.02007088880366], [-74.71537244726102, 35.980795073700065]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.65226694626071, 36.029112950207576], [-74.58916175355483, 36.07739017043012], [-74.63540736691789, 36.116617204868014], [-74.69851406027934, 36.068364390735596], [-74.65226694626071, 36.029112950207576]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.58916175355483, 36.07739017043012], [-74.52605680579657, 36.12563874521624], [-74.57230092932585, 36.16484135217957], [-74.63540736691789, 36.116617204868014], [-74.58916175355483, 36.07739017043012]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.52605680579657, 36.12563874521624], [-74.46295205572045, 36.1738647222774], [-74.50919469780561, 36.21304288502922], [-74.57230092932585, 36.16484135217957], [-74.52605680579657, 36.12563874521624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.46295205572045, 36.1738647222774], [-74.39984771215254, 36.22204816751916], [-74.44608888744285, 36.26120185558637], [-74.50919469780561, 36.21304288502922], [-74.46295205572045, 36.1738647222774]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00DCFE\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.39984771215254, 36.22204816751916], [-74.33674365630901, 36.27020447305064], [-74.38298337319567, 36.30933366783991], [-74.44608888744285, 36.26120185558637], [-74.39984771215254, 36.22204816751916]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.71798284943327, 34.50815255443667], [-76.65487444499088, 34.55736381966445], [-76.70117611943705, 34.59733978185924], [-76.76428654073689, 34.54815200796423], [-76.71798284943327, 34.50815255443667]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.65487444499088, 34.55736381966445], [-76.59176600497847, 34.60655354466705], [-76.63806567220418, 34.64650599632769], [-76.70117611943705, 34.59733978185924], [-76.65487444499088, 34.55736381966445]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.59176600497847, 34.60655354466705], [-76.52865752679338, 34.655720153330435], [-76.57495519714074, 34.695649073850554], [-76.63806567220418, 34.64650599632769], [-76.59176600497847, 34.60655354466705]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.52865752679338, 34.655720153330435], [-76.46554897995996, 34.70484359623353], [-76.51184467369983, 34.74474894661333], [-76.57495519714074, 34.695649073850554], [-76.52865752679338, 34.655720153330435]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.46554897995996, 34.70484359623353], [-76.40244040076459, 34.75394541614553], [-76.44873412844233, 34.79382717665048], [-76.51184467369983, 34.74474894661333], [-76.46554897995996, 34.70484359623353]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.40244040076459, 34.75394541614553], [-76.3393317846489, 34.803022445096204], [-76.38562355839026, 34.84288059308258], [-76.44873412844233, 34.79382717665048], [-76.40244040076459, 34.75394541614553]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.3393317846489, 34.803022445096204], [-76.27622311231022, 34.852057719464824], [-76.32251295323708, 34.89189221647403], [-76.38562355839026, 34.84288059308258], [-76.3393317846489, 34.803022445096204]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.27622311231022, 34.852057719464824], [-76.21311441418521, 34.90107128562314], [-76.25940233353666, 34.9408821115601], [-76.32251295323708, 34.89189221647403], [-76.27622311231022, 34.852057719464824]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.21311441418521, 34.90107128562314], [-76.15000568532275, 34.950058370386834], [-76.19629169686287, 34.989845500717045], [-76.25940233353666, 34.9408821115601], [-76.21311441418521, 34.90107128562314]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.15000568532275, 34.950058370386834], [-76.08689691891783, 34.99900511930997], [-76.13318104405698, 35.03876851653646], [-76.19629169686287, 34.989845500717045], [-76.15000568532275, 34.950058370386834]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08689691891783, 34.99900511930997], [-76.02378813690785, 35.04793007208992], [-76.07007038735404, 35.087669715936116], [-76.13318104405698, 35.03876851653646], [-76.08689691891783, 34.99900511930997]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.02378813690785, 35.04793007208992], [-75.96067933641541, 35.09682683627249], [-76.00695972736064, 35.13654270050981], [-76.07007038735404, 35.087669715936116], [-76.02378813690785, 35.04793007208992]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFC400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.96067933641541, 35.09682683627249], [-75.89757052289664, 35.145684691066656], [-75.94384907551452, 35.18537673954699], [-76.00695972736064, 35.13654270050981], [-75.96067933641541, 35.09682683627249]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.89757052289664, 35.145684691066656], [-75.83446170773868, 35.194520658857655], [-75.88073843397581, 35.23418887130466], [-75.94384907551452, 35.18537673954699], [-75.89757052289664, 35.145684691066656]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.83446170773868, 35.194520658857655], [-75.7713528935503, 35.24332671311067], [-75.81762780975482, 35.28297106184452], [-75.88073843397581, 35.23418887130466], [-75.83446170773868, 35.194520658857655]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7713528935503, 35.24332671311067], [-75.70824409608397, 35.292095292454164], [-75.75451722271609, 35.33171574302128], [-75.81762780975482, 35.28297106184452], [-75.7713528935503, 35.24332671311067]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.70824409608397, 35.292095292454164], [-75.6451353148505, 35.34084189083866], [-75.69140666386389, 35.380438423144035], [-75.75451722271609, 35.33171574302128], [-75.70824409608397, 35.292095292454164]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6451353148505, 35.34084189083866], [-75.58202656232184, 35.38955683204418], [-75.62829615089304, 35.42912941724117], [-75.69140666386389, 35.380438423144035], [-75.6451353148505, 35.34084189083866]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58202656232184, 35.38955683204418], [-75.51891786073847, 35.43823574130529], [-75.56518570819452, 35.477784346932786], [-75.62829615089304, 35.42912941724117], [-75.58202656232184, 35.38955683204418]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.51891786073847, 35.43823574130529], [-75.45580919723378, 35.48689257242849], [-75.50207531530624, 35.52641717875052], [-75.56518570819452, 35.477784346932786], [-75.51891786073847, 35.43823574130529]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.45580919723378, 35.48689257242849], [-75.39270059948117, 35.53551598308778], [-75.43896500579743, 35.57501656041148], [-75.50207531530624, 35.52641717875052], [-75.45580919723378, 35.48689257242849]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39270059948117, 35.53551598308778], [-75.32959209049201, 35.58410481383137], [-75.37585480288877, 35.62358133193472], [-75.43896500579743, 35.57501656041148], [-75.39270059948117, 35.53551598308778]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#70FF86\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32959209049201, 35.58410481383137], [-75.26648364541867, 35.63267146594541], [-75.31274467518155, 35.672123905623316], [-75.37585480288877, 35.62358133193472], [-75.32959209049201, 35.58410481383137]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5CFF9A\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26648364541867, 35.63267146594541], [-75.20337531341389, 35.68120291375168], [-75.24963467820002, 35.720631244816445], [-75.31274467518155, 35.672123905623316], [-75.26648364541867, 35.63267146594541]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20337531341389, 35.68120291375168], [-75.14026711061402, 35.72970124340516], [-75.18652482647803, 35.769105438067236], [-75.24963467820002, 35.720631244816445], [-75.20337531341389, 35.68120291375168]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#6CFF89\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14026711061402, 35.72970124340516], [-75.07715900153109, 35.778177290568095], [-75.1234150790967, 35.8175573303175], [-75.18652482647803, 35.769105438067236], [-75.14026711061402, 35.72970124340516]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B0FF46\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.07715900153109, 35.778177290568095], [-75.01405106397713, 35.826616328140524], [-75.06030552047285, 35.86597218267162], [-75.1234150790967, 35.8175573303175], [-75.07715900153109, 35.778177290568095]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.01405106397713, 35.826616328140524], [-74.95094329765851, 35.87502371979804], [-74.99719614713146, 35.91435536389402], [-75.06030552047285, 35.86597218267162], [-75.01405106397713, 35.826616328140524]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#66FF90\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95094329765851, 35.87502371979804], [-74.88783565875512, 35.92340872170624], [-74.93408691096059, 35.96271613770757], [-74.99719614713146, 35.91435536389402], [-74.95094329765851, 35.87502371979804]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.88783565875512, 35.92340872170624], [-74.8247282617703, 35.97175488646077], [-74.87097793301852, 36.01103804434124], [-74.93408691096059, 35.96271613770757], [-74.88783565875512, 35.92340872170624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.8247282617703, 35.97175488646077], [-74.76162107856985, 36.02007088880366], [-74.80786918074018, 36.059329766007735], [-74.87097793301852, 36.01103804434124], [-74.8247282617703, 35.97175488646077]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3FFFB7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.76162107856985, 36.02007088880366], [-74.69851406027934, 36.068364390735596], [-74.74476060206273, 36.107598970599895], [-74.80786918074018, 36.059329766007735], [-74.76162107856985, 36.02007088880366]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.69851406027934, 36.068364390735596], [-74.63540736691789, 36.116617204868014], [-74.68165236319048, 36.15582745805926], [-74.74476060206273, 36.107598970599895], [-74.69851406027934, 36.068364390735596]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63540736691789, 36.116617204868014], [-74.57230092932585, 36.16484135217957], [-74.61854438970158, 36.204027258842885], [-74.68165236319048, 36.15582745805926], [-74.63540736691789, 36.116617204868014]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#001CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.57230092932585, 36.16484135217957], [-74.50919469780561, 36.21304288502922], [-74.5554366297264, 36.25220442963303], [-74.61854438970158, 36.204027258842885], [-74.57230092932585, 36.16484135217957]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.50919469780561, 36.21304288502922], [-74.44608888744285, 36.26120185558637], [-74.49232930381316, 36.3003390099163], [-74.5554366297264, 36.25220442963303], [-74.50919469780561, 36.21304288502922]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.44608888744285, 36.26120185558637], [-74.38298337319567, 36.30933366783991], [-74.42922228132556, 36.348446414735285], [-74.49232930381316, 36.3003390099163], [-74.44608888744285, 36.26120185558637]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.76428654073689, 34.54815200796423], [-76.70117611943705, 34.59733978185924], [-76.7474778765193, 34.63729723257413], [-76.81059031668936, 34.58813291777147], [-76.76428654073689, 34.54815200796423]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.70117611943705, 34.59733978185924], [-76.63806567220418, 34.64650599632769], [-76.68436541927974, 34.68643996954134], [-76.7474778765193, 34.63729723257413], [-76.70117611943705, 34.59733978185924]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.63806567220418, 34.64650599632769], [-76.57495519714074, 34.695649073850554], [-76.62125294372171, 34.73555954980709], [-76.68436541927974, 34.68643996954134], [-76.63806567220418, 34.64650599632769]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.57495519714074, 34.695649073850554], [-76.51184467369983, 34.74474894661333], [-76.55814043842686, 34.78463588798819], [-76.62125294372171, 34.73555954980709], [-76.57495519714074, 34.695649073850554]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.51184467369983, 34.74474894661333], [-76.44873412844233, 34.79382717665048], [-76.4950279210107, 34.83369056458568], [-76.55814043842686, 34.78463588798819], [-76.51184467369983, 34.74474894661333]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.44873412844233, 34.79382717665048], [-76.38562355839026, 34.84288059308258], [-76.431915389948, 34.88272040594272], [-76.4950279210107, 34.83369056458568], [-76.44873412844233, 34.79382717665048]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.38562355839026, 34.84288059308258], [-76.32251295323708, 34.89189221647403], [-76.36880284319768, 34.93170841757017], [-76.431915389948, 34.88272040594272], [-76.38562355839026, 34.84288059308258]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.32251295323708, 34.89189221647403], [-76.25940233353666, 34.9408821115601], [-76.30569029222718, 34.98067468174605], [-76.36880284319768, 34.93170841757017], [-76.32251295323708, 34.89189221647403]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.25940233353666, 34.9408821115601], [-76.19629169686287, 34.989845500717045], [-76.24257773692995, 35.02961441662181], [-76.30569029222718, 34.98067468174605], [-76.25940233353666, 34.9408821115601]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19629169686287, 34.989845500717045], [-76.13318104405698, 35.03876851653646], [-76.17946518516456, 35.07851374249186], [-76.24257773692995, 35.02961441662181], [-76.19629169686287, 34.989845500717045]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.13318104405698, 35.03876851653646], [-76.07007038735404, 35.087669715936116], [-76.11635264025094, 35.12739123267511], [-76.17946518516456, 35.07851374249186], [-76.13318104405698, 35.03876851653646]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.07007038735404, 35.087669715936116], [-76.00695972736064, 35.13654270050981], [-76.05324010599286, 35.17624048311713], [-76.11635264025094, 35.12739123267511], [-76.07007038735404, 35.087669715936116]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.00695972736064, 35.13654270050981], [-75.94384907551452, 35.18537673954699], [-75.9901275993075, 35.22505075373046], [-76.05324010599286, 35.17624048311713], [-76.00695972736064, 35.13654270050981]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.94384907551452, 35.18537673954699], [-75.88073843397581, 35.23418887130466], [-75.92701511388432, 35.27383909784692], [-75.9901275993075, 35.22505075373046], [-75.94384907551452, 35.18537673954699]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88073843397581, 35.23418887130466], [-75.81762780975482, 35.28297106184452], [-75.86390266076673, 35.322597474521544], [-75.92701511388432, 35.27383909784692], [-75.88073843397581, 35.23418887130466]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.81762780975482, 35.28297106184452], [-75.75451722271609, 35.33171574302128], [-75.80079026357332, 35.371318309234496], [-75.86390266076673, 35.322597474521544], [-75.81762780975482, 35.28297106184452]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.75451722271609, 35.33171574302128], [-75.69140666386389, 35.380438423144035], [-75.73767790550936, 35.42001712389637], [-75.80079026357332, 35.371318309234496], [-75.75451722271609, 35.33171574302128]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69140666386389, 35.380438423144035], [-75.62829615089304, 35.42912941724117], [-75.6745656090452, 35.46868422527537], [-75.73767790550936, 35.42001712389637], [-75.69140666386389, 35.380438423144035]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62829615089304, 35.42912941724117], [-75.56518570819452, 35.477784346932786], [-75.61145340051883, 35.517315231617914], [-75.6745656090452, 35.46868422527537], [-75.62829615089304, 35.42912941724117]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56518570819452, 35.477784346932786], [-75.50207531530624, 35.52641717875052], [-75.54834125251725, 35.56592412147786], [-75.61145340051883, 35.517315231617914], [-75.56518570819452, 35.477784346932786]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.50207531530624, 35.52641717875052], [-75.43896500579743, 35.57501656041148], [-75.48522920398447, 35.61449953320149], [-75.54834125251725, 35.56592412147786], [-75.50207531530624, 35.52641717875052]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.43896500579743, 35.57501656041148], [-75.37585480288877, 35.62358133193472], [-75.42211727830522, 35.663040306350865], [-75.48522920398447, 35.61449953320149], [-75.43896500579743, 35.57501656041148]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37585480288877, 35.62358133193472], [-75.31274467518155, 35.672123905623316], [-75.35900543810145, 35.711558863608545], [-75.42211727830522, 35.663040306350865], [-75.37585480288877, 35.62358133193472]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B3FF42\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.31274467518155, 35.672123905623316], [-75.24963467820002, 35.720631244816445], [-75.29589374468125, 35.76004215801035], [-75.35900543810145, 35.711558863608545], [-75.31274467518155, 35.672123905623316]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24963467820002, 35.720631244816445], [-75.18652482647803, 35.769105438067236], [-75.23278221108677, 35.80849228040523], [-75.29589374468125, 35.76004215801035], [-75.24963467820002, 35.720631244816445]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#4CFFAA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.18652482647803, 35.769105438067236], [-75.1234150790967, 35.8175573303175], [-75.16967079146069, 35.85692008445112], [-75.23278221108677, 35.80849228040523], [-75.18652482647803, 35.769105438067236]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5FFF96\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1234150790967, 35.8175573303175], [-75.06030552047285, 35.86597218267162], [-75.10655957617918, 35.90531082022661], [-75.16967079146069, 35.85692008445112], [-75.1234150790967, 35.8175573303175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#76FF80\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06030552047285, 35.86597218267162], [-74.99719614713146, 35.91435536389402], [-75.04344855884565, 35.9536698613059], [-75.10655957617918, 35.90531082022661], [-75.06030552047285, 35.86597218267162]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5CFF9A\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.99719614713146, 35.91435536389402], [-74.93408691096059, 35.96271613770757], [-74.98033768746647, 36.00200647848557], [-75.04344855884565, 35.9536698613059], [-74.99719614713146, 35.91435536389402]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#53FFA3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.93408691096059, 35.96271613770757], [-74.87097793301852, 36.01103804434124], [-74.9172270889613, 36.05030420048549], [-74.98033768746647, 36.00200647848557], [-74.93408691096059, 35.96271613770757]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87097793301852, 36.01103804434124], [-74.80786918074018, 36.059329766007735], [-74.85411672673226, 36.09857171653354], [-74.9172270889613, 36.05030420048549], [-74.87097793301852, 36.01103804434124]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#53FFA3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.80786918074018, 36.059329766007735], [-74.74476060206273, 36.107598970599895], [-74.79100654585568, 36.146816700014824], [-74.85411672673226, 36.09857171653354], [-74.80786918074018, 36.059329766007735]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.74476060206273, 36.107598970599895], [-74.68165236319048, 36.15582745805926], [-74.72789671798984, 36.195020939143056], [-74.79100654585568, 36.146816700014824], [-74.74476060206273, 36.107598970599895]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.68165236319048, 36.15582745805926], [-74.61854438970158, 36.204027258842885], [-74.66478716397312, 36.243196473224025], [-74.72789671798984, 36.195020939143056], [-74.68165236319048, 36.15582745805926]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0060FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.61854438970158, 36.204027258842885], [-74.5554366297264, 36.25220442963303], [-74.60167783001097, 36.291349362949106], [-74.66478716397312, 36.243196473224025], [-74.61854438970158, 36.204027258842885]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0058FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.5554366297264, 36.25220442963303], [-74.49232930381316, 36.3003390099163], [-74.53856894135586, 36.33945963614561], [-74.60167783001097, 36.291349362949106], [-74.5554366297264, 36.25220442963303]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.49232930381316, 36.3003390099163], [-74.42922228132556, 36.348446414735285], [-74.47546036240809, 36.387542718109316], [-74.53856894135586, 36.33945963614561], [-74.49232930381316, 36.3003390099163]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00ACFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.81059031668936, 34.58813291777147], [-76.7474778765193, 34.63729723257413], [-76.79377968889374, 34.67723618249937], [-76.85689415099748, 34.62809529372436], [-76.81059031668936, 34.58813291777147]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.7474778765193, 34.63729723257413], [-76.68436541927974, 34.68643996954134], [-76.73066521786065, 34.72635547578167], [-76.79377968889374, 34.67723618249937], [-76.7474778765193, 34.63729723257413]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.68436541927974, 34.68643996954134], [-76.62125294372171, 34.73555954980709], [-76.66755073724482, 34.77545159341326], [-76.73066521786065, 34.72635547578167], [-76.68436541927974, 34.68643996954134]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62125294372171, 34.73555954980709], [-76.55814043842686, 34.78463588798819], [-76.60443624400702, 34.82450443322591], [-76.66755073724482, 34.77545159341326], [-76.62125294372171, 34.73555954980709]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.55814043842686, 34.78463588798819], [-76.4950279210107, 34.83369056458568], [-76.54132174754702, 34.873535593429715], [-76.60443624400702, 34.82450443322591], [-76.55814043842686, 34.78463588798819]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.4950279210107, 34.83369056458568], [-76.431915389948, 34.88272040594272], [-76.47820724767286, 34.92254189771567], [-76.54132174754702, 34.873535593429715], [-76.4950279210107, 34.83369056458568]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.431915389948, 34.88272040594272], [-76.36880284319768, 34.93170841757017], [-76.41509274992339, 34.97150633726599], [-76.47820724767286, 34.92254189771567], [-76.431915389948, 34.88272040594272]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.36880284319768, 34.93170841757017], [-76.30569029222718, 34.98067468174605], [-76.35197825742549, 35.0204490111216], [-76.41509274992339, 34.97150633726599], [-76.36880284319768, 34.93170841757017]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.30569029222718, 34.98067468174605], [-76.24257773692995, 35.02961441662181], [-76.28886377219922, 35.06936513341358], [-76.35197825742549, 35.0204490111216], [-76.30569029222718, 34.98067468174605]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.24257773692995, 35.02961441662181], [-76.17946518516456, 35.07851374249186], [-76.22574930852952, 35.11824081277409], [-76.28886377219922, 35.06936513341358], [-76.24257773692995, 35.02961441662181]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.17946518516456, 35.07851374249186], [-76.11635264025094, 35.12739123267511], [-76.16263486155952, 35.167094638143396], [-76.22574930852952, 35.11824081277409], [-76.17946518516456, 35.07851374249186]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E30000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.11635264025094, 35.12739123267511], [-76.05324010599286, 35.17624048311713], [-76.0995204380205, 35.21592020010883], [-76.16263486155952, 35.167094638143396], [-76.11635264025094, 35.12739123267511]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.05324010599286, 35.17624048311713], [-75.9901275993075, 35.22505075373046], [-76.03640605983614, 35.264706749725406], [-76.0995204380205, 35.21592020010883], [-76.05324010599286, 35.17624048311713]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9901275993075, 35.22505075373046], [-75.92701511388432, 35.27383909784692], [-75.97329171293572, 35.313471354639574], [-76.03640605983614, 35.264706749725406], [-75.9901275993075, 35.22505075373046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.92701511388432, 35.27383909784692], [-75.86390266076673, 35.322597474521544], [-75.91017741204874, 35.36220596727932], [-75.97329171293572, 35.313471354639574], [-75.92701511388432, 35.27383909784692]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.86390266076673, 35.322597474521544], [-75.80079026357332, 35.371318309234496], [-75.8470631842099, 35.410903007133754], [-75.91017741204874, 35.36220596727932], [-75.86390266076673, 35.322597474521544]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80079026357332, 35.371318309234496], [-75.73767790550936, 35.42001712389637], [-75.78394900549107, 35.45957800899129], [-75.8470631842099, 35.410903007133754], [-75.80079026357332, 35.371318309234496]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.73767790550936, 35.42001712389637], [-75.6745656090452, 35.46868422527537], [-75.72083490271622, 35.508221271831175], [-75.78394900549107, 35.45957800899129], [-75.73767790550936, 35.42001712389637]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6745656090452, 35.46868422527537], [-75.61145340051883, 35.517315231617914], [-75.65772090397732, 35.55682841075874], [-75.72083490271622, 35.508221271831175], [-75.6745656090452, 35.46868422527537]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61145340051883, 35.517315231617914], [-75.54834125251725, 35.56592412147786], [-75.59460697551812, 35.6054134156767], [-75.65772090397732, 35.55682841075874], [-75.61145340051883, 35.517315231617914]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.54834125251725, 35.56592412147786], [-75.48522920398447, 35.61449953320149], [-75.53149316116517, 35.653964916123655], [-75.59460697551812, 35.6054134156767], [-75.54834125251725, 35.56592412147786]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.48522920398447, 35.61449953320149], [-75.42211727830522, 35.663040306350865], [-75.4683794844232, 35.7024817512759], [-75.53149316116517, 35.653964916123655], [-75.48522920398447, 35.61449953320149]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.42211727830522, 35.663040306350865], [-75.35900543810145, 35.711558863608545], [-75.40526590247465, 35.750976353583525], [-75.4683794844232, 35.7024817512759], [-75.42211727830522, 35.663040306350865]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35900543810145, 35.711558863608545], [-75.29589374468125, 35.76004215801035], [-75.34215248185558, 35.79943566643306], [-75.40526590247465, 35.750976353583525], [-75.35900543810145, 35.711558863608545]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#76FF80\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29589374468125, 35.76004215801035], [-75.23278221108677, 35.80849228040523], [-75.27903923422004, 35.84786178287281], [-75.34215248185558, 35.79943566643306], [-75.29589374468125, 35.76004215801035]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.23278221108677, 35.80849228040523], [-75.16967079146069, 35.85692008445112], [-75.21592610923793, 35.896265564734534], [-75.27903923422004, 35.84786178287281], [-75.23278221108677, 35.80849228040523]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#7CFF79\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16967079146069, 35.85692008445112], [-75.10655957617918, 35.90531082022661], [-75.15281320263324, 35.94463225181421], [-75.21592610923793, 35.896265564734534], [-75.16967079146069, 35.85692008445112]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#73FF83\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.10655957617918, 35.90531082022661], [-75.04344855884565, 35.9536698613059], [-75.08970050533301, 35.992967222228486], [-75.15281320263324, 35.94463225181421], [-75.10655957617918, 35.90531082022661]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#7CFF79\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.04344855884565, 35.9536698613059], [-74.98033768746647, 36.00200647848557], [-75.02658796185028, 36.04127975338118], [-75.08970050533301, 35.992967222228486], [-75.04344855884565, 35.9536698613059]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#93FF63\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98033768746647, 36.00200647848557], [-74.9172270889613, 36.05030420048549], [-74.96347570430814, 36.089553363312746], [-75.02658796185028, 36.04127975338118], [-74.98033768746647, 36.00200647848557]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.9172270889613, 36.05030420048549], [-74.85411672673226, 36.09857171653354], [-74.90036369245271, 36.13779674782762], [-74.96347570430814, 36.089553363312746], [-74.9172270889613, 36.05030420048549]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#4CFFAA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.85411672673226, 36.09857171653354], [-74.79100654585568, 36.146816700014824], [-74.83725186881006, 36.186017585416536], [-74.90036369245271, 36.13779674782762], [-74.85411672673226, 36.09857171653354]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.79100654585568, 36.146816700014824], [-74.72789671798984, 36.195020939143056], [-74.77414040979792, 36.23419765347881], [-74.83725186881006, 36.186017585416536], [-74.79100654585568, 36.146816700014824]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.72789671798984, 36.195020939143056], [-74.66478716397312, 36.243196473224025], [-74.71102923201047, 36.282348999560426], [-74.77414040979792, 36.23419765347881], [-74.72789671798984, 36.195020939143056]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.66478716397312, 36.243196473224025], [-74.60167783001097, 36.291349362949106], [-74.64791827996277, 36.3304776880575], [-74.71102923201047, 36.282348999560426], [-74.66478716397312, 36.243196473224025]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0064FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.60167783001097, 36.291349362949106], [-74.53856894135586, 36.33945963614561], [-74.58480778289115, 36.3785637361323], [-74.64791827996277, 36.3304776880575], [-74.60167783001097, 36.291349362949106]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.53856894135586, 36.33945963614561], [-74.47546036240809, 36.387542718109316], [-74.52169760083139, 36.42662257855807], [-74.58480778289115, 36.3785637361323], [-74.53856894135586, 36.33945963614561]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.85689415099748, 34.62809529372436], [-76.79377968889374, 34.67723618249937], [-76.84008153144656, 34.7171566400506], [-76.90319801950895, 34.668039143514086], [-76.85689415099748, 34.62809529372436]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.79377968889374, 34.67723618249937], [-76.73066521786065, 34.72635547578167], [-76.776965041918, 34.766252524150744], [-76.84008153144656, 34.7171566400506], [-76.79377968889374, 34.67723618249937]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73066521786065, 34.72635547578167], [-76.66755073724482, 34.77545159341326], [-76.71384855081602, 34.81532521441675], [-76.776965041918, 34.766252524150744], [-76.73066521786065, 34.72635547578167]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.66755073724482, 34.77545159341326], [-76.60443624400702, 34.82450443322591], [-76.65073206277833, 34.86435459264044], [-76.71384855081602, 34.81532521441675], [-76.66755073724482, 34.77545159341326]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.60443624400702, 34.82450443322591], [-76.54132174754702, 34.873535593429715], [-76.58761557967172, 34.91336227402185], [-76.65073206277833, 34.86435459264044], [-76.60443624400702, 34.82450443322591]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.54132174754702, 34.873535593429715], [-76.47820724767286, 34.92254189771567], [-76.52449910252547, 34.96234507971899], [-76.58761557967172, 34.91336227402185], [-76.54132174754702, 34.873535593429715]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.47820724767286, 34.92254189771567], [-76.41509274992339, 34.97150633726599], [-76.46138264381511, 35.01128598727608], [-76.52449910252547, 34.96234507971899], [-76.47820724767286, 34.92254189771567]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.41509274992339, 34.97150633726599], [-76.35197825742549, 35.0204490111216], [-76.39826619902567, 35.06020511175544], [-76.46138264381511, 35.01128598727608], [-76.41509274992339, 34.97150633726599]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.35197825742549, 35.0204490111216], [-76.28886377219922, 35.06936513341358], [-76.33514977212296, 35.10909766346261], [-76.39826619902567, 35.06020511175544], [-76.35197825742549, 35.0204490111216]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.28886377219922, 35.06936513341358], [-76.22574930852952, 35.11824081277409], [-76.27203338326251, 35.157949739973944], [-76.33514977212296, 35.10909766346261], [-76.28886377219922, 35.06936513341358]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.22574930852952, 35.11824081277409], [-76.16263486155952, 35.167094638143396], [-76.20891702010354, 35.20677994510822], [-76.27203338326251, 35.157949739973944], [-76.22574930852952, 35.11824081277409]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.16263486155952, 35.167094638143396], [-76.0995204380205, 35.21592020010883], [-76.14580069205124, 35.25558186437145], [-76.20891702010354, 35.20677994510822], [-76.16263486155952, 35.167094638143396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0995204380205, 35.21592020010883], [-76.03640605983614, 35.264706749725406], [-76.08268442559032, 35.304344740458454], [-76.14580069205124, 35.25558186437145], [-76.0995204380205, 35.21592020010883]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF1A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.03640605983614, 35.264706749725406], [-75.97329171293572, 35.313471354639574], [-76.01956819955745, 35.35308565460488], [-76.08268442559032, 35.304344740458454], [-76.03640605983614, 35.264706749725406]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF1A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97329171293572, 35.313471354639574], [-75.91017741204874, 35.36220596727932], [-75.95645203204162, 35.4017965529749], [-76.01956819955745, 35.35308565460488], [-75.97329171293572, 35.313471354639574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91017741204874, 35.36220596727932], [-75.8470631842099, 35.410903007133754], [-75.89333595317433, 35.45046984943509], [-75.95645203204162, 35.4017965529749], [-75.91017741204874, 35.36220596727932]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8470631842099, 35.410903007133754], [-75.78394900549107, 35.45957800899129], [-75.83021993252046, 35.499121090959626], [-75.89333595317433, 35.45046984943509], [-75.8470631842099, 35.410903007133754]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.78394900549107, 35.45957800899129], [-75.72083490271622, 35.508221271831175], [-75.7671040008598, 35.547740569190736], [-75.83021993252046, 35.499121090959626], [-75.78394900549107, 35.45957800899129]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72083490271622, 35.508221271831175], [-75.65772090397732, 35.55682841075874], [-75.70398818785534, 35.59632389631727], [-75.7671040008598, 35.547740569190736], [-75.72083490271622, 35.508221271831175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.65772090397732, 35.55682841075874], [-75.59460697551812, 35.6054134156767], [-75.64087245398014, 35.6448850729455], [-75.70398818785534, 35.59632389631727], [-75.65772090397732, 35.55682841075874]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59460697551812, 35.6054134156767], [-75.53149316116517, 35.653964916123655], [-75.57775684747848, 35.693412720347695], [-75.64087245398014, 35.6448850729455], [-75.59460697551812, 35.6054134156767]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53149316116517, 35.653964916123655], [-75.4683794844232, 35.7024817512759], [-75.51464139193257, 35.74190567738452], [-75.57775684747848, 35.693412720347695], [-75.53149316116517, 35.653964916123655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.4683794844232, 35.7024817512759], [-75.40526590247465, 35.750976353583525], [-75.45152603959487, 35.79037638568579], [-75.51464139193257, 35.74190567738452], [-75.4683794844232, 35.7024817512759]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40526590247465, 35.750976353583525], [-75.34215248185558, 35.79943566643306], [-75.3884108617036, 35.83881177961889], [-75.45152603959487, 35.79037638568579], [-75.40526590247465, 35.750976353583525]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#80FF76\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34215248185558, 35.79943566643306], [-75.27903923422004, 35.84786178287281], [-75.32529586862182, 35.88721395434027], [-75.3884108617036, 35.83881177961889], [-75.34215248185558, 35.79943566643306]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#70FF86\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27903923422004, 35.84786178287281], [-75.21592610923793, 35.896265564734534], [-75.26218100598686, 35.935593779333544], [-75.32529586862182, 35.88721395434027], [-75.27903923422004, 35.84786178287281]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.21592610923793, 35.896265564734534], [-75.15281320263324, 35.94463225181421], [-75.19906637429143, 35.98393648482957], [-75.26218100598686, 35.935593779333544], [-75.21592610923793, 35.896265564734534]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#7CFF79\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.15281320263324, 35.94463225181421], [-75.08970050533301, 35.992967222228486], [-75.1359519620175, 36.03224745323118], [-75.19906637429143, 35.98393648482957], [-75.15281320263324, 35.94463225181421]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08970050533301, 35.992967222228486], [-75.02658796185028, 36.04127975338118], [-75.07283771055235, 36.080535968099475], [-75.1359519620175, 36.03224745323118], [-75.08970050533301, 35.992967222228486]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.02658796185028, 36.04127975338118], [-74.96347570430814, 36.089553363312746], [-75.00972375659896, 36.12878553759806], [-75.07283771055235, 36.080535968099475], [-75.02658796185028, 36.04127975338118]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#89FF6C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.96347570430814, 36.089553363312746], [-74.90036369245271, 36.13779674782762], [-74.94661005660369, 36.177004863685546], [-75.00972375659896, 36.12878553759806], [-74.96347570430814, 36.089553363312746]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.90036369245271, 36.13779674782762], [-74.83725186881006, 36.186017585416536], [-74.88349655083664, 36.22520162958453], [-74.94661005660369, 36.177004863685546], [-74.90036369245271, 36.13779674782762]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.83725186881006, 36.186017585416536], [-74.77414040979792, 36.23419765347881], [-74.82038341981642, 36.27335760276522], [-74.88349655083664, 36.22520162958453], [-74.83725186881006, 36.186017585416536]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E0FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.77414040979792, 36.23419765347881], [-74.71102923201047, 36.282348999560426], [-74.75727057636236, 36.32148483842592], [-74.82038341981642, 36.27335760276522], [-74.77414040979792, 36.23419765347881]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.71102923201047, 36.282348999560426], [-74.64791827996277, 36.3304776880575], [-74.69415796352165, 36.369589404372604], [-74.75727057636236, 36.32148483842592], [-74.71102923201047, 36.282348999560426]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0050FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.64791827996277, 36.3304776880575], [-74.58480778289115, 36.3785637361323], [-74.63104581383064, 36.41765130806796], [-74.69415796352165, 36.369589404372604], [-74.64791827996277, 36.3304776880575]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#009CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.58480778289115, 36.3785637361323], [-74.52169760083139, 36.42662257855807], [-74.56793398352885, 36.46568599301131], [-74.63104581383064, 36.41765130806796], [-74.58480778289115, 36.3785637361323]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0044FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.90319801950895, 34.668039143514086], [-76.84008153144656, 34.7171566400506], [-76.8863833811501, 34.75705861148636], [-76.94950190007354, 34.70796447277046], [-76.90319801950895, 34.668039143514086]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.84008153144656, 34.7171566400506], [-76.776965041918, 34.766252524150744], [-76.82326486759007, 34.806131121500336], [-76.8863833811501, 34.75705861148636], [-76.84008153144656, 34.7171566400506]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.776965041918, 34.766252524150744], [-76.71384855081602, 34.81532521441675], [-76.76014635978592, 34.85518042022444], [-76.82326486759007, 34.806131121500336], [-76.776965041918, 34.766252524150744]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.71384855081602, 34.81532521441675], [-76.65073206277833, 34.86435459264044], [-76.69702786939439, 34.90418637411966], [-76.76014635978592, 34.85518042022444], [-76.71384855081602, 34.81532521441675]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.65073206277833, 34.86435459264044], [-76.58761557967172, 34.91336227402185], [-76.6339093913883, 34.9531706146927], [-76.69702786939439, 34.90418637411966], [-76.65073206277833, 34.86435459264044]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.58761557967172, 34.91336227402185], [-76.52449910252547, 34.96234507971899], [-76.5707909279131, 35.002129960682026], [-76.6339093913883, 34.9531706146927], [-76.58761557967172, 34.91336227402185]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52449910252547, 34.96234507971899], [-76.46138264381511, 35.01128598727608], [-76.50767249777746, 35.051047376652335], [-76.5707909279131, 35.002129960682026], [-76.52449910252547, 34.96234507971899]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.46138264381511, 35.01128598727608], [-76.39826619902567, 35.06020511175544], [-76.44455408947937, 35.09994299298171], [-76.50767249777746, 35.051047376652335], [-76.46138264381511, 35.01128598727608]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.39826619902567, 35.06020511175544], [-76.33514977212296, 35.10909766346261], [-76.38143570876036, 35.14881201633607], [-76.44455408947937, 35.09994299298171], [-76.39826619902567, 35.06020511175544]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.33514977212296, 35.10909766346261], [-76.27203338326251, 35.157949739973944], [-76.31831738112443, 35.19764053381532], [-76.38143570876036, 35.14881201633607], [-76.33514977212296, 35.10909766346261]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.27203338326251, 35.157949739973944], [-76.20891702010354, 35.20677994510822], [-76.25519908739679, 35.24644716340867], [-76.31831738112443, 35.19764053381532], [-76.27203338326251, 35.157949739973944]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FA0F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.20891702010354, 35.20677994510822], [-76.14580069205124, 35.25558186437145], [-76.19208083941828, 35.295225485805474], [-76.25519908739679, 35.24644716340867], [-76.20891702010354, 35.20677994510822]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F10700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.14580069205124, 35.25558186437145], [-76.08268442559032, 35.304344740458454], [-76.12896266781516, 35.343964735816826], [-76.19208083941828, 35.295225485805474], [-76.14580069205124, 35.25558186437145]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E30000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08268442559032, 35.304344740458454], [-76.01956819955745, 35.35308565460488], [-76.06584454495867, 35.39268200757471], [-76.12896266781516, 35.343964735816826], [-76.08268442559032, 35.304344740458454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F50B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.01956819955745, 35.35308565460488], [-75.95645203204162, 35.4017965529749], [-76.00272649198978, 35.44136924132735], [-76.06584454495867, 35.39268200757471], [-76.01956819955745, 35.35308565460488]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.95645203204162, 35.4017965529749], [-75.89333595317433, 35.45046984943509], [-75.93960854183551, 35.490018845672964], [-76.00272649198978, 35.44136924132735], [-75.95645203204162, 35.4017965529749]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.89333595317433, 35.45046984943509], [-75.83021993252046, 35.499121090959626], [-75.87649065814318, 35.53864637910924], [-75.93960854183551, 35.490018845672964], [-75.89333595317433, 35.45046984943509]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.83021993252046, 35.499121090959626], [-75.7671040008598, 35.547740569190736], [-75.81337287527329, 35.587242126374974], [-75.87649065814318, 35.53864637910924], [-75.83021993252046, 35.499121090959626]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7671040008598, 35.547740569190736], [-75.70398818785534, 35.59632389631727], [-75.75025522428652, 35.635801696959625], [-75.81337287527329, 35.587242126374974], [-75.7671040008598, 35.547740569190736]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.70398818785534, 35.59632389631727], [-75.64087245398014, 35.6448850729455], [-75.68713766042472, 35.68433910155424], [-75.75025522428652, 35.635801696959625], [-75.70398818785534, 35.59632389631727]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64087245398014, 35.6448850729455], [-75.57775684747848, 35.693412720347695], [-75.62402023591125, 35.73284295368519], [-75.68713766042472, 35.68433910155424], [-75.64087245398014, 35.6448850729455]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.57775684747848, 35.693412720347695], [-75.51464139193257, 35.74190567738452], [-75.56090297436481, 35.78131209196658], [-75.62402023591125, 35.73284295368519], [-75.57775684747848, 35.693412720347695]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.51464139193257, 35.74190567738452], [-75.45152603959487, 35.79037638568579], [-75.4977858235885, 35.82975896664319], [-75.56090297436481, 35.78131209196658], [-75.51464139193257, 35.74190567738452]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45152603959487, 35.79037638568579], [-75.3884108617036, 35.83881177961889], [-75.43466885902596, 35.878170503670326], [-75.4977858235885, 35.82975896664319], [-75.45152603959487, 35.79037638568579]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0024FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3884108617036, 35.83881177961889], [-75.32529586862182, 35.88721395434027], [-75.37155208984008, 35.926548800226385], [-75.43466885902596, 35.878170503670326], [-75.3884108617036, 35.83881177961889]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32529586862182, 35.88721395434027], [-75.26218100598686, 35.935593779333544], [-75.30843545805146, 35.974904732944374], [-75.37155208984008, 35.926548800226385], [-75.32529586862182, 35.88721395434027]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26218100598686, 35.935593779333544], [-75.19906637429143, 35.98393648482957], [-75.24531906837383, 36.023223523182565], [-75.30843545805146, 35.974904732944374], [-75.26218100598686, 35.935593779333544]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19906637429143, 35.98393648482957], [-75.1359519620175, 36.03224745323118], [-75.18220290706208, 36.07151055738435], [-75.24531906837383, 36.023223523182565], [-75.19906637429143, 35.98393648482957]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A0FF56\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1359519620175, 36.03224745323118], [-75.07283771055235, 36.080535968099475], [-75.11908691272536, 36.119775124834], [-75.18220290706208, 36.07151055738435], [-75.1359519620175, 36.03224745323118]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#80FF76\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.07283771055235, 36.080535968099475], [-75.00972375659896, 36.12878553759806], [-75.05597122605596, 36.168000724594656], [-75.11908691272536, 36.119775124834], [-75.07283771055235, 36.080535968099475]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00972375659896, 36.12878553759806], [-74.94661005660369, 36.177004863685546], [-74.9928558005375, 36.21619606437219], [-75.05597122605596, 36.168000724594656], [-75.00972375659896, 36.12878553759806]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#4CFFAA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.94661005660369, 36.177004863685546], [-74.88349655083664, 36.22520162958453], [-74.92974057446267, 36.26436883175978], [-74.9928558005375, 36.21619606437219], [-74.94661005660369, 36.177004863685546]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#49FFAD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.88349655083664, 36.22520162958453], [-74.82038341981642, 36.27335760276522], [-74.86662573182676, 36.31250078515649], [-74.92974057446267, 36.26436883175978], [-74.88349655083664, 36.22520162958453]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.82038341981642, 36.27335760276522], [-74.75727057636236, 36.32148483842592], [-74.80351118211874, 36.3606039868449], [-74.86662573182676, 36.31250078515649], [-74.82038341981642, 36.27335760276522]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0094FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.75727057636236, 36.32148483842592], [-74.69415796352165, 36.369589404372604], [-74.74039686712865, 36.40868450775531], [-74.80351118211874, 36.3606039868449], [-74.75727057636236, 36.32148483842592]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.69415796352165, 36.369589404372604], [-74.63104581383064, 36.41765130806796], [-74.6772830220449, 36.45672234658804], [-74.74039686712865, 36.40868450775531], [-74.69415796352165, 36.369589404372604]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.63104581383064, 36.41765130806796], [-74.56793398352885, 36.46568599301131], [-74.61416949984903, 36.504732954840705], [-74.6772830220449, 36.45672234658804], [-74.63104581383064, 36.41765130806796]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.94950190007354, 34.70796447277046], [-76.8863833811501, 34.75705861148636], [-76.93268521692926, 34.79694210101783], [-76.9958057724141, 34.747871285167754], [-76.94950190007354, 34.70796447277046]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8863833811501, 34.75705861148636], [-76.82326486759007, 34.806131121500336], [-76.86956467304414, 34.84599127254533], [-76.93268521692926, 34.79694210101783], [-76.8863833811501, 34.75705861148636]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.82326486759007, 34.806131121500336], [-76.76014635978592, 34.85518042022444], [-76.8064441416075, 34.895017216019326], [-76.86956467304414, 34.84599127254533], [-76.82326486759007, 34.806131121500336]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.76014635978592, 34.85518042022444], [-76.69702786939439, 34.90418637411966], [-76.74332364067833, 34.94399978324534], [-76.8064441416075, 34.895017216019326], [-76.76014635978592, 34.85518042022444]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.69702786939439, 34.90418637411966], [-76.6339093913883, 34.9531706146927], [-76.68020315893382, 34.99296062138689], [-76.74332364067833, 34.94399978324534], [-76.69702786939439, 34.90418637411966]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.6339093913883, 34.9531706146927], [-76.5707909279131, 35.002129960682026], [-76.61708269953722, 35.04189654687101], [-76.68020315893382, 34.99296062138689], [-76.6339093913883, 34.9531706146927]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5707909279131, 35.002129960682026], [-76.50767249777746, 35.051047376652335], [-76.5539622870638, 35.0907905119112], [-76.61708269953722, 35.04189654687101], [-76.5707909279131, 35.002129960682026]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.50767249777746, 35.051047376652335], [-76.44455408947937, 35.09994299298171], [-76.49084190363813, 35.13966266152927], [-76.5539622870638, 35.0907905119112], [-76.50767249777746, 35.051047376652335]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.44455408947937, 35.09994299298171], [-76.38143570876036, 35.14881201633607], [-76.42772155661815, 35.188508198928815], [-76.49084190363813, 35.13966266152927], [-76.44455408947937, 35.09994299298171]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.38143570876036, 35.14881201633607], [-76.31831738112443, 35.19764053381532], [-76.3646012763653, 35.23731320128735], [-76.42772155661815, 35.188508198928815], [-76.38143570876036, 35.14881201633607]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.31831738112443, 35.19764053381532], [-76.25519908739679, 35.24644716340867], [-76.3014810374808, 35.28609630008903], [-76.3646012763653, 35.23731320128735], [-76.31831738112443, 35.19764053381532]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E30000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.25519908739679, 35.24644716340867], [-76.19208083941828, 35.295225485805474], [-76.2383608540172, 35.334851071459596], [-76.3014810374808, 35.28609630008903], [-76.25519908739679, 35.24644716340867]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CC0000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19208083941828, 35.295225485805474], [-76.12896266781516, 35.343964735816826], [-76.17524076034717, 35.38356674278306], [-76.2383608540172, 35.334851071459596], [-76.19208083941828, 35.295225485805474]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C80000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.12896266781516, 35.343964735816826], [-76.06584454495867, 35.39268200757471], [-76.11212072296593, 35.432260420425706], [-76.17524076034717, 35.38356674278306], [-76.12896266781516, 35.343964735816826]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E30000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06584454495867, 35.39268200757471], [-76.00272649198978, 35.44136924132735], [-76.04900076577708, 35.480924039052965], [-76.11212072296593, 35.432260420425706], [-76.06584454495867, 35.39268200757471]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF2500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.00272649198978, 35.44136924132735], [-75.93960854183551, 35.490018845672964], [-75.9858809242188, 35.52955000233524], [-76.04900076577708, 35.480924039052965], [-76.00272649198978, 35.44136924132735]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93960854183551, 35.490018845672964], [-75.87649065814318, 35.53864637910924], [-75.92276115657529, 35.57815387965974], [-75.9858809242188, 35.52955000233524], [-75.93960854183551, 35.490018845672964]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.87649065814318, 35.53864637910924], [-75.81337287527329, 35.587242126374974], [-75.85964150043444, 35.62672594927802], [-75.92276115657529, 35.57815387965974], [-75.87649065814318, 35.53864637910924]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.81337287527329, 35.587242126374974], [-75.75025522428652, 35.635801696959625], [-75.79652198809052, 35.67526181818971], [-75.85964150043444, 35.62672594927802], [-75.81337287527329, 35.587242126374974]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.75025522428652, 35.635801696959625], [-75.68713766042472, 35.68433910155424], [-75.73340257006241, 35.72377550657724], [-75.79652198809052, 35.67526181818971], [-75.75025522428652, 35.635801696959625]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.68713766042472, 35.68433910155424], [-75.62402023591125, 35.73284295368519], [-75.67028330213844, 35.772255620721566], [-75.73340257006241, 35.72377550657724], [-75.68713766042472, 35.68433910155424]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFCF00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62402023591125, 35.73284295368519], [-75.56090297436481, 35.78131209196658], [-75.60716420793466, 35.82070099905796], [-75.67028330213844, 35.772255620721566], [-75.62402023591125, 35.73284295368519]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56090297436481, 35.78131209196658], [-75.4977858235885, 35.82975896664319], [-75.54404523125801, 35.86912409990349], [-75.60716420793466, 35.82070099905796], [-75.56090297436481, 35.78131209196658]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FE1200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4977858235885, 35.82975896664319], [-75.43466885902596, 35.878170503670326], [-75.48092645128831, 35.91751184138638], [-75.54404523125801, 35.86912409990349], [-75.4977858235885, 35.82975896664319]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F4F802\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43466885902596, 35.878170503670326], [-75.37155208984008, 35.926548800226385], [-75.41780787607354, 35.96586632262536], [-75.48092645128831, 35.91751184138638], [-75.43466885902596, 35.878170503670326]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE200\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37155208984008, 35.926548800226385], [-75.30843545805146, 35.974904732944374], [-75.35468944441014, 36.01419842691898], [-75.41780787607354, 35.96586632262536], [-75.37155208984008, 35.926548800226385]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5FFF96\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30843545805146, 35.974904732944374], [-75.24531906837383, 36.023223523182565], [-75.29157126471497, 36.06249336742156], [-75.35468944441014, 36.01419842691898], [-75.30843545805146, 35.974904732944374]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#6CFF89\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24531906837383, 36.023223523182565], [-75.18220290706208, 36.07151055738435], [-75.22845332122141, 36.11075653438142], [-75.29157126471497, 36.06249336742156], [-75.24531906837383, 36.023223523182565]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.18220290706208, 36.07151055738435], [-75.11908691272536, 36.119775124834], [-75.16533555008911, 36.15899722238727], [-75.22845332122141, 36.11075653438142], [-75.18220290706208, 36.07151055738435]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D7FF1F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11908691272536, 36.119775124834], [-75.05597122605596, 36.168000724594656], [-75.102218095441, 36.207198922152635], [-75.16533555008911, 36.15899722238727], [-75.11908691272536, 36.119775124834]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#6CFF89\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.05597122605596, 36.168000724594656], [-74.9928558005375, 36.21619606437219], [-75.03910090811618, 36.25537034673869], [-75.102218095441, 36.207198922152635], [-75.05597122605596, 36.168000724594656]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.9928558005375, 36.21619606437219], [-74.92974057446267, 36.26436883175978], [-74.97598392469348, 36.30351918775999], [-75.03910090811618, 36.25537034673869], [-74.9928558005375, 36.21619606437219]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.92974057446267, 36.26436883175978], [-74.86662573182676, 36.31250078515649], [-74.91286733205418, 36.35162719537573], [-74.97598392469348, 36.30351918775999], [-74.92974057446267, 36.26436883175978]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.86662573182676, 36.31250078515649], [-74.80351118211874, 36.3606039868449], [-74.8497510367772, 36.39970643840396], [-74.91286733205418, 36.35162719537573], [-74.86662573182676, 36.31250078515649]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E0FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.80351118211874, 36.3606039868449], [-74.74039686712865, 36.40868450775531], [-74.78663497959501, 36.44776299062277], [-74.8497510367772, 36.39970643840396], [-74.80351118211874, 36.3606039868449]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2CFFCA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.74039686712865, 36.40868450775531], [-74.6772830220449, 36.45672234658804], [-74.72351939773462, 36.49577684287974], [-74.78663497959501, 36.44776299062277], [-74.74039686712865, 36.40868450775531]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#08F0ED\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.6772830220449, 36.45672234658804], [-74.61416949984903, 36.504732954840705], [-74.66040414142921, 36.54376345396601], [-74.72351939773462, 36.49577684287974], [-74.6772830220449, 36.45672234658804]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9958057724141, 34.747871285167754], [-76.93268521692926, 34.79694210101783], [-76.9789870195368, 34.83680711091141], [-77.04210961800645, 34.78775958252365], [-76.9958057724141, 34.747871285167754]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.93268521692926, 34.79694210101783], [-76.86956467304414, 34.84599127254533], [-76.9158644383475, 34.885832979969805], [-76.9789870195368, 34.83680711091141], [-76.93268521692926, 34.79694210101783]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86956467304414, 34.84599127254533], [-76.8064441416075, 34.895017216019326], [-76.85274187570293, 34.93483560486987], [-76.9158644383475, 34.885832979969805], [-76.86956467304414, 34.84599127254533]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8064441416075, 34.895017216019326], [-76.74332364067833, 34.94399978324534], [-76.78961935548621, 34.983794823405326], [-76.85274187570293, 34.93483560486987], [-76.8064441416075, 34.895017216019326]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.74332364067833, 34.94399978324534], [-76.68020315893382, 34.99296062138689], [-76.72649686063926, 35.03273229777805], [-76.78961935548621, 34.983794823405326], [-76.74332364067833, 34.94399978324534]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.68020315893382, 34.99296062138689], [-76.61708269953722, 35.04189654687101], [-76.66337439525083, 35.08164484220667], [-76.72649686063926, 35.03273229777805], [-76.68020315893382, 34.99296062138689]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.61708269953722, 35.04189654687101], [-76.5539622870638, 35.0907905119112], [-76.6002519891309, 35.1305153971534], [-76.66337439525083, 35.08164484220667], [-76.61708269953722, 35.04189654687101]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5539622870638, 35.0907905119112], [-76.49084190363813, 35.13966266152927], [-76.53712961860617, 35.17936412164317], [-76.6002519891309, 35.1305153971534], [-76.5539622870638, 35.0907905119112]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.49084190363813, 35.13966266152927], [-76.42772155661815, 35.188508198928815], [-76.47400729250113, 35.228186215586675], [-76.53712961860617, 35.17936412164317], [-76.49084190363813, 35.13966266152927]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.42772155661815, 35.188508198928815], [-76.3646012763653, 35.23731320128735], [-76.41088504557335, 35.27696774676906], [-76.47400729250113, 35.228186215586675], [-76.42772155661815, 35.188508198928815]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.3646012763653, 35.23731320128735], [-76.3014810374808, 35.28609630008903], [-76.34776284677244, 35.325727359524606], [-76.41088504557335, 35.27696774676906], [-76.3646012763653, 35.23731320128735]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D50000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.3014810374808, 35.28609630008903], [-76.2383608540172, 35.334851071459596], [-76.28464071215224, 35.374458625657496], [-76.34776284677244, 35.325727359524606], [-76.3014810374808, 35.28609630008903]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9F0000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.2383608540172, 35.334851071459596], [-76.17524076034717, 35.38356674278306], [-76.22151867945993, 35.42315076556251], [-76.28464071215224, 35.374458625657496], [-76.2383608540172, 35.334851071459596]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C30000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.17524076034717, 35.38356674278306], [-76.11212072296593, 35.432260420425706], [-76.15839670986838, 35.47182089720722], [-76.22151867945993, 35.42315076556251], [-76.17524076034717, 35.38356674278306]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.11212072296593, 35.432260420425706], [-76.04900076577708, 35.480924039052965], [-76.09527482977155, 35.520460949993634], [-76.15839670986838, 35.47182089720722], [-76.11212072296593, 35.432260420425706]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.04900076577708, 35.480924039052965], [-75.9858809242188, 35.52955000233524], [-76.03215307685073, 35.56906332299167], [-76.09527482977155, 35.520460949993634], [-76.04900076577708, 35.480924039052965]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.9858809242188, 35.52955000233524], [-75.92276115657529, 35.57815387965974], [-75.96903140454842, 35.617643595870916], [-76.03215307685073, 35.56906332299167], [-75.9858809242188, 35.52955000233524]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.92276115657529, 35.57815387965974], [-75.85964150043444, 35.62672594927802], [-75.905909853347, 35.66619204079526], [-75.96903140454842, 35.617643595870916], [-75.92276115657529, 35.57815387965974]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.85964150043444, 35.62672594927802], [-75.79652198809052, 35.67526181818971], [-75.8427884566193, 35.714704262476886], [-75.905909853347, 35.66619204079526], [-75.85964150043444, 35.62672594927802]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.79652198809052, 35.67526181818971], [-75.73340257006241, 35.72377550657724], [-75.77966716063969, 35.76319429002025], [-75.8427884566193, 35.714704262476886], [-75.79652198809052, 35.67526181818971]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.73340257006241, 35.72377550657724], [-75.67028330213844, 35.772255620721566], [-75.71654602437118, 35.81165072294229], [-75.77966716063969, 35.76319429002025], [-75.73340257006241, 35.72377550657724]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.67028330213844, 35.772255620721566], [-75.60716420793466, 35.82070099905796], [-75.65342507138934, 35.86007239956594], [-75.71654602437118, 35.81165072294229], [-75.67028330213844, 35.772255620721566]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#DAFF1C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.60716420793466, 35.82070099905796], [-75.54404523125801, 35.86912409990349], [-75.59030424193237, 35.9084717857589], [-75.65342507138934, 35.86007239956594], [-75.60716420793466, 35.82070099905796]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F7F400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.54404523125801, 35.86912409990349], [-75.48092645128831, 35.91751184138638], [-75.52718361847333, 35.956835792385945], [-75.59030424193237, 35.9084717857589], [-75.54404523125801, 35.86912409990349]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48092645128831, 35.91751184138638], [-75.41780787607354, 35.96586632262536], [-75.46406320802524, 36.005166520428936], [-75.52718361847333, 35.956835792385945], [-75.48092645128831, 35.91751184138638]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#70FF86\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41780787607354, 35.96586632262536], [-75.35468944441014, 36.01419842691898], [-75.40094294653086, 36.05347485938601], [-75.46406320802524, 36.005166520428936], [-75.41780787607354, 35.96586632262536]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1FFFD7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35468944441014, 36.01419842691898], [-75.29157126471497, 36.06249336742156], [-75.33782294562087, 36.101746014853], [-75.40094294653086, 36.05347485938601], [-75.35468944441014, 36.01419842691898]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#69FF8D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29157126471497, 36.06249336742156], [-75.22845332122141, 36.11075653438142], [-75.274703187701, 36.14998538065717], [-75.33782294562087, 36.101746014853], [-75.29157126471497, 36.06249336742156]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#93FF63\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22845332122141, 36.11075653438142], [-75.16533555008911, 36.15899722238727], [-75.21158360679165, 36.198202256287566], [-75.274703187701, 36.14998538065717], [-75.22845332122141, 36.11075653438142]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9AFF5C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16533555008911, 36.15899722238727], [-75.102218095441, 36.207198922152635], [-75.14846434991843, 36.246380124834275], [-75.21158360679165, 36.198202256287566], [-75.16533555008911, 36.15899722238727]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#83FF73\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.102218095441, 36.207198922152635], [-75.03910090811618, 36.25537034673869], [-75.08534536557637, 36.2945277043362], [-75.14846434991843, 36.246380124834275], [-75.102218095441, 36.207198922152635]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#32FFC3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.03910090811618, 36.25537034673869], [-74.97598392469348, 36.30351918775999], [-75.02222658887952, 36.34265269009177], [-75.08534536557637, 36.2945277043362], [-75.03910090811618, 36.25537034673869]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.97598392469348, 36.30351918775999], [-74.91286733205418, 36.35162719537573], [-74.95910820903674, 36.390736824825495], [-75.02222658887952, 36.34265269009177], [-74.97598392469348, 36.30351918775999]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E4F7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.91286733205418, 36.35162719537573], [-74.8497510367772, 36.39970643840396], [-74.89599013011419, 36.43879218336082], [-74.95910820903674, 36.390736824825495], [-74.91286733205418, 36.35162719537573]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000F5\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.8497510367772, 36.39970643840396], [-74.78663497959501, 36.44776299062277], [-74.83287229197528, 36.48682484205581], [-74.89599013011419, 36.43879218336082], [-74.8497510367772, 36.39970643840396]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#66FF90\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.78663497959501, 36.44776299062277], [-74.72351939773462, 36.49577684287974], [-74.7697549333059, 36.53481478478792], [-74.83287229197528, 36.48682484205581], [-74.78663497959501, 36.44776299062277]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.72351939773462, 36.49577684287974], [-74.66040414142921, 36.54376345396601], [-74.7066379020727, 36.58277747695936], [-74.7697549333059, 36.53481478478792], [-74.72351939773462, 36.49577684287974]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#59FF9D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.04210961800645, 34.78775958252365], [-76.9789870195368, 34.83680711091141], [-77.02528877143729, 34.87665364158483], [-77.08841341996757, 34.82762936489176], [-77.04210961800645, 34.78775958252365]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9789870195368, 34.83680711091141], [-76.9158644383475, 34.885832979969805], [-76.96216414534743, 34.92565624452654], [-77.02528877143729, 34.87665364158483], [-76.9789870195368, 34.83680711091141]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9158644383475, 34.885832979969805], [-76.85274187570293, 34.93483560486987], [-76.89903954333998, 34.974635587832665], [-76.96216414534743, 34.92565624452654], [-76.9158644383475, 34.885832979969805]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.85274187570293, 34.93483560486987], [-76.78961935548621, 34.983794823405326], [-76.83591499458001, 35.02357149589915], [-76.89903954333998, 34.974635587832665], [-76.85274187570293, 34.93483560486987]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.78961935548621, 34.983794823405326], [-76.72649686063926, 35.03273229777805], [-76.77279047679909, 35.072485645376986], [-76.83591499458001, 35.02357149589915], [-76.78961935548621, 34.983794823405326]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.72649686063926, 35.03273229777805], [-76.66337439525083, 35.08164484220667], [-76.70966599492493, 35.12137484837477], [-76.77279047679909, 35.072485645376986], [-76.72649686063926, 35.03273229777805]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.66337439525083, 35.08164484220667], [-76.6002519891309, 35.1305153971534], [-76.64654158350312, 35.17022203417653], [-76.70966599492493, 35.12137484837477], [-76.66337439525083, 35.08164484220667]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.6002519891309, 35.1305153971534], [-76.53712961860617, 35.17936412164317], [-76.58341721360193, 35.21904737519935], [-76.64654158350312, 35.17022203417653], [-76.6002519891309, 35.1305153971534]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.53712961860617, 35.17936412164317], [-76.47400729250113, 35.228186215586675], [-76.52029289537187, 35.26784606822291], [-76.58341721360193, 35.21904737519935], [-76.53712961860617, 35.17936412164317]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.47400729250113, 35.228186215586675], [-76.41088504557335, 35.27696774676906], [-76.45716866753298, 35.316604172147194], [-76.52029289537187, 35.26784606822291], [-76.47400729250113, 35.228186215586675]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.41088504557335, 35.27696774676906], [-76.34776284677244, 35.325727359524606], [-76.39404449392055, 35.36534034354074], [-76.45716866753298, 35.316604172147194], [-76.41088504557335, 35.27696774676906]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C80000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.34776284677244, 35.325727359524606], [-76.28464071215224, 35.374458625657496], [-76.3309203923918, 35.41404815011788], [-76.39404449392055, 35.36534034354074], [-76.34776284677244, 35.325727359524606]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8D0000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.28464071215224, 35.374458625657496], [-76.22151867945993, 35.42315076556251], [-76.26779640371865, 35.46271680570415], [-76.3309203923918, 35.41404815011788], [-76.28464071215224, 35.374458625657496]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.22151867945993, 35.42315076556251], [-76.15839670986838, 35.47182089720722], [-76.20467248427167, 35.51136343926284], [-76.26779640371865, 35.46271680570415], [-76.22151867945993, 35.42315076556251]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.15839670986838, 35.47182089720722], [-76.09527482977155, 35.520460949993634], [-76.14154866267903, 35.55997997523867], [-76.20467248427167, 35.51136343926284], [-76.15839670986838, 35.47182089720722]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.09527482977155, 35.520460949993634], [-76.03215307685073, 35.56906332299167], [-76.07842497861238, 35.60855880841598], [-76.14154866267903, 35.55997997523867], [-76.09527482977155, 35.520460949993634]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.03215307685073, 35.56906332299167], [-75.96903140454842, 35.617643595870916], [-76.01530138116303, 35.65711552816491], [-76.07842497861238, 35.60855880841598], [-76.03215307685073, 35.56906332299167]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.96903140454842, 35.617643595870916], [-75.905909853347, 35.66619204079526], [-75.95217791339442, 35.70564040094541], [-76.01530138116303, 35.65711552816491], [-75.96903140454842, 35.617643595870916]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.905909853347, 35.66619204079526], [-75.8427884566193, 35.714704262476886], [-75.88905460961121, 35.754129029377786], [-75.95217791339442, 35.70564040094541], [-75.905909853347, 35.66619204079526]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.8427884566193, 35.714704262476886], [-75.77966716063969, 35.76319429002025], [-75.82593141229377, 35.802595450941965], [-75.88905460961121, 35.754129029377786], [-75.8427884566193, 35.714704262476886]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.77966716063969, 35.76319429002025], [-75.71654602437118, 35.81165072294229], [-75.76280838321193, 35.85102825885397], [-75.82593141229377, 35.802595450941965], [-75.77966716063969, 35.76319429002025]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.71654602437118, 35.81165072294229], [-75.65342507138934, 35.86007239956594], [-75.69968554586475, 35.899426291389574], [-75.76280838321193, 35.85102825885397], [-75.71654602437118, 35.81165072294229]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.65342507138934, 35.86007239956594], [-75.59030424193237, 35.9084717857589], [-75.63656283732442, 35.94780202146556], [-75.69968554586475, 35.899426291389574], [-75.65342507138934, 35.86007239956594]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.59030424193237, 35.9084717857589], [-75.52718361847333, 35.956835792385945], [-75.57344034293932, 35.996142353226496], [-75.63656283732442, 35.94780202146556], [-75.59030424193237, 35.9084717857589]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52718361847333, 35.956835792385945], [-75.46406320802524, 36.005166520428936], [-75.51031806876256, 36.04444938944414], [-75.57344034293932, 35.996142353226496], [-75.52718361847333, 35.956835792385945]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#79FF7D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46406320802524, 36.005166520428936], [-75.40094294653086, 36.05347485938601], [-75.44719594823252, 36.09273402536745], [-75.51031806876256, 36.04444938944414], [-75.46406320802524, 36.005166520428936]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40094294653086, 36.05347485938601], [-75.33782294562087, 36.101746014853], [-75.38407409573196, 36.14098145965695], [-75.44719594823252, 36.09273402536745], [-75.40094294653086, 36.05347485938601]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#80FF76\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33782294562087, 36.101746014853], [-75.274703187701, 36.14998538065717], [-75.32095249202158, 36.18919708950189], [-75.38407409573196, 36.14098145965695], [-75.33782294562087, 36.101746014853]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A3FF53\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.274703187701, 36.14998538065717], [-75.21158360679165, 36.198202256287566], [-75.2578310692754, 36.23739021890186], [-75.32095249202158, 36.18919708950189], [-75.274703187701, 36.14998538065717]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8DFF69\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.21158360679165, 36.198202256287566], [-75.14846434991843, 36.246380124834275], [-75.19470997692301, 36.285544324025736], [-75.2578310692754, 36.23739021890186], [-75.21158360679165, 36.198202256287566]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#73FF83\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14846434991843, 36.246380124834275], [-75.08534536557637, 36.2945277043362], [-75.13158916139912, 36.333668127526266], [-75.19470997692301, 36.285544324025736], [-75.14846434991843, 36.246380124834275]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9AFF5C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08534536557637, 36.2945277043362], [-75.02222658887952, 36.34265269009177], [-75.06846855658802, 36.38176932805956], [-75.13158916139912, 36.333668127526266], [-75.08534536557637, 36.2945277043362]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.02222658887952, 36.34265269009177], [-74.95910820903674, 36.390736824825495], [-75.0053483534988, 36.4298296616955], [-75.06846855658802, 36.38176932805956], [-75.02222658887952, 36.34265269009177]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00DCFE\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95910820903674, 36.390736824825495], [-74.89599013011419, 36.43879218336082], [-74.94222845406014, 36.477861208750646], [-75.0053483534988, 36.4298296616955], [-74.95910820903674, 36.390736824825495]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0028FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.89599013011419, 36.43879218336082], [-74.83287229197528, 36.48682484205581], [-74.87910879744437, 36.525870047903844], [-74.94222845406014, 36.477861208750646], [-74.89599013011419, 36.43879218336082]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00007F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.83287229197528, 36.48682484205581], [-74.7697549333059, 36.53481478478792], [-74.81598962324912, 36.573836156918574], [-74.87910879744437, 36.525870047903844], [-74.83287229197528, 36.48682484205581]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.7697549333059, 36.53481478478792], [-74.7066379020727, 36.58277747695936], [-74.75287077762943, 36.62177500714745], [-74.81598962324912, 36.573836156918574], [-74.7697549333059, 36.53481478478792]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5CFF9A\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.08841341996757, 34.82762936489176], [-77.02528877143729, 34.87665364158483], [-77.07159045669857, 34.916481691697435], [-77.13471716295109, 34.867480630648544], [-77.08841341996757, 34.82762936489176]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.02528877143729, 34.87665364158483], [-76.96216414534743, 34.92565624452654], [-77.00846377755883, 34.96546106513049], [-77.07159045669857, 34.916481691697435], [-77.02528877143729, 34.87665364158483]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.96216414534743, 34.92565624452654], [-76.89903954333998, 34.974635587832665], [-76.94533712751576, 35.014417164049], [-77.00846377755883, 34.96546106513049], [-76.96216414534743, 34.92565624452654]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.89903954333998, 34.974635587832665], [-76.83591499458001, 35.02357149589915], [-76.88221054050808, 35.06332980003718], [-76.94533712751576, 35.014417164049], [-76.89903954333998, 34.974635587832665]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.83591499458001, 35.02357149589915], [-76.77279047679909, 35.072485645376986], [-76.81908398954889, 35.11222066363348], [-76.88221054050808, 35.06332980003718], [-76.83591499458001, 35.02357149589915]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.77279047679909, 35.072485645376986], [-76.70966599492493, 35.12137484837477], [-76.75595748032357, 35.16108656493032], [-76.81908398954889, 35.11222066363348], [-76.77279047679909, 35.072485645376986]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70966599492493, 35.12137484837477], [-76.64654158350312, 35.17022203417653], [-76.69283105164486, 35.2099104225814], [-76.75595748032357, 35.16108656493032], [-76.70966599492493, 35.12137484837477]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.64654158350312, 35.17022203417653], [-76.58341721360193, 35.21904737519935], [-76.62970466982844, 35.25871242181282], [-76.69283105164486, 35.2099104225814], [-76.64654158350312, 35.17022203417653]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.58341721360193, 35.21904737519935], [-76.52029289537187, 35.26784606822291], [-76.5665783462189, 35.30748775642797], [-76.62970466982844, 35.25871242181282], [-76.58341721360193, 35.21904737519935]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52029289537187, 35.26784606822291], [-76.45716866753298, 35.316604172147194], [-76.50345212309135, 35.35622247692747], [-76.5665783462189, 35.30748775642797], [-76.52029289537187, 35.26784606822291]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.45716866753298, 35.316604172147194], [-76.39404449392055, 35.36534034354074], [-76.4403259596709, 35.40493525152546], [-76.50345212309135, 35.35622247692747], [-76.45716866753298, 35.316604172147194]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#910000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.39404449392055, 35.36534034354074], [-76.3309203923918, 35.41404815011788], [-76.37719987543238, 35.45361964406829], [-76.4403259596709, 35.40493525152546], [-76.39404449392055, 35.36534034354074]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.3309203923918, 35.41404815011788], [-76.26779640371865, 35.46271680570415], [-76.31407391384309, 35.50226486221525], [-76.37719987543238, 35.45361964406829], [-76.3309203923918, 35.41404815011788]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.26779640371865, 35.46271680570415], [-76.20467248427167, 35.51136343926284], [-76.25094802696, 35.55088804534572], [-76.31407391384309, 35.50226486221525], [-76.26779640371865, 35.46271680570415]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.20467248427167, 35.51136343926284], [-76.14154866267903, 35.55997997523867], [-76.18782224540458, 35.59948111324079], [-76.25094802696, 35.55088804534572], [-76.20467248427167, 35.51136343926284]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.14154866267903, 35.55997997523867], [-76.07842497861238, 35.60855880841598], [-76.12469661060075, 35.648036456702116], [-76.18782224540458, 35.59948111324079], [-76.14154866267903, 35.55997997523867]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.07842497861238, 35.60855880841598], [-76.01530138116303, 35.65711552816491], [-76.06157106774972, 35.69656967424268], [-76.12469661060075, 35.648036456702116], [-76.07842497861238, 35.60855880841598]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.01530138116303, 35.65711552816491], [-75.95217791339442, 35.70564040094541], [-75.99844566220092, 35.74507102698717], [-76.06157106774972, 35.69656967424268], [-76.01530138116303, 35.65711552816491]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.95217791339442, 35.70564040094541], [-75.88905460961121, 35.754129029377786], [-75.93532042905247, 35.79353611565274], [-75.99844566220092, 35.74507102698717], [-75.95217791339442, 35.70564040094541]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.88905460961121, 35.754129029377786], [-75.82593141229377, 35.802595450941965], [-75.8721953074146, 35.8419789855701], [-75.93532042905247, 35.79353611565274], [-75.88905460961121, 35.754129029377786]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.82593141229377, 35.802595450941965], [-75.76280838321193, 35.85102825885397], [-75.80907036151737, 35.8903882241001], [-75.8721953074146, 35.8419789855701], [-75.82593141229377, 35.802595450941965]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.76280838321193, 35.85102825885397], [-75.69968554586475, 35.899426291389574], [-75.74594561474913, 35.93876266953502], [-75.80907036151737, 35.8903882241001], [-75.76280838321193, 35.85102825885397]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69968554586475, 35.899426291389574], [-75.63656283732442, 35.94780202146556], [-75.68282100139523, 35.987114801358366], [-75.74594561474913, 35.93876266953502], [-75.69968554586475, 35.899426291389574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.63656283732442, 35.94780202146556], [-75.57344034293932, 35.996142353226496], [-75.61969660928548, 36.03543151751812], [-75.68282100139523, 35.987114801358366], [-75.63656283732442, 35.94780202146556]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.57344034293932, 35.996142353226496], [-75.51031806876256, 36.04444938944414], [-75.55657244358348, 36.08371492250654], [-75.61969660928548, 36.03543151751812], [-75.57344034293932, 35.996142353226496]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFD300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.51031806876256, 36.04444938944414], [-75.44719594823252, 36.09273402536745], [-75.49344843555252, 36.13197591689107], [-75.55657244358348, 36.08371492250654], [-75.51031806876256, 36.04444938944414]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.44719594823252, 36.09273402536745], [-75.38407409573196, 36.14098145965695], [-75.43032470189199, 36.180199692998585], [-75.49344843555252, 36.13197591689107], [-75.44719594823252, 36.09273402536745]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#7CFF79\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38407409573196, 36.14098145965695], [-75.32095249202158, 36.18919708950189], [-75.3672012218895, 36.228391651172046], [-75.43032470189199, 36.180199692998585], [-75.38407409573196, 36.14098145965695]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#70FF86\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32095249202158, 36.18919708950189], [-75.2578310692754, 36.23739021890186], [-75.3040779261488, 36.27656109954543], [-75.3672012218895, 36.228391651172046], [-75.32095249202158, 36.18919708950189]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#66FF90\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2578310692754, 36.23739021890186], [-75.19470997692301, 36.285544324025736], [-75.24095496603326, 36.32469150804545], [-75.3040779261488, 36.27656109954543], [-75.2578310692754, 36.23739021890186]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#53FFA3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19470997692301, 36.285544324025736], [-75.13158916139912, 36.333668127526266], [-75.17783228618464, 36.37279160358815], [-75.24095496603326, 36.32469150804545], [-75.19470997692301, 36.285544324025736]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#69FF8D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.13158916139912, 36.333668127526266], [-75.06846855658802, 36.38176932805956], [-75.11470981947924, 36.42086908787196], [-75.17783228618464, 36.37279160358815], [-75.13158916139912, 36.333668127526266]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06846855658802, 36.38176932805956], [-75.0053483534988, 36.4298296616955], [-75.05158775822906, 36.46890569106756], [-75.11470981947924, 36.42086908787196], [-75.06846855658802, 36.38176932805956]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0060FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.0053483534988, 36.4298296616955], [-74.94222845406014, 36.477861208750646], [-74.98846600257926, 36.51691349848979], [-75.05158775822906, 36.46890569106756], [-75.0053483534988, 36.4298296616955]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.94222845406014, 36.477861208750646], [-74.87910879744437, 36.525870047903844], [-74.92534449117913, 36.56489859088737], [-74.98846600257926, 36.51691349848979], [-74.94222845406014, 36.477861208750646]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0048FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.87910879744437, 36.525870047903844], [-74.81598962324912, 36.573836156918574], [-74.86222346402211, 36.61284094074013], [-74.92534449117913, 36.56489859088737], [-74.87910879744437, 36.525870047903844]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0084FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.81598962324912, 36.573836156918574], [-74.75287077762943, 36.62177500714745], [-74.79910276588097, 36.66075602471156], [-74.86222346402211, 36.61284094074013], [-74.81598962324912, 36.573836156918574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#46FFB0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.13471716295109, 34.867480630648544], [-77.07159045669857, 34.916481691697435], [-77.11789206089048, 34.956291258234856], [-77.18102083304993, 34.9073133765747], [-77.13471716295109, 34.867480630648544]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07159045669857, 34.916481691697435], [-77.00846377755883, 34.96546106513049], [-77.05476332005921, 35.005247438946576], [-77.11789206089048, 34.956291258234856], [-77.07159045669857, 34.916481691697435]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.00846377755883, 34.96546106513049], [-76.94533712751576, 35.014417164049], [-76.9916346128484, 35.0541803308356], [-77.05476332005921, 35.005247438946576], [-77.00846377755883, 34.96546106513049]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.94533712751576, 35.014417164049], [-76.88221054050808, 35.06332980003718], [-76.92850597749381, 35.10306973323411], [-76.9916346128484, 35.0541803308356], [-76.94533712751576, 35.014417164049]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.88221054050808, 35.06332980003718], [-76.81908398954889, 35.11222066363348], [-76.86537738275084, 35.1519373500322], [-76.92850597749381, 35.10306973323411], [-76.88221054050808, 35.06332980003718]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.81908398954889, 35.11222066363348], [-76.75595748032357, 35.16108656493032], [-76.80224883498649, 35.20077998939582], [-76.86537738275084, 35.1519373500322], [-76.81908398954889, 35.11222066363348]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75595748032357, 35.16108656493032], [-76.69283105164486, 35.2099104225814], [-76.73912037684082, 35.249580559872314], [-76.80224883498649, 35.20077998939582], [-76.75595748032357, 35.16108656493032]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.69283105164486, 35.2099104225814], [-76.62970466982844, 35.25871242181282], [-76.67599197035135, 35.29835925893981], [-76.73912037684082, 35.249580559872314], [-76.69283105164486, 35.2099104225814]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62970466982844, 35.25871242181282], [-76.5665783462189, 35.30748775642797], [-76.61286362793292, 35.347111277573546], [-76.67599197035135, 35.29835925893981], [-76.62970466982844, 35.25871242181282]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5665783462189, 35.30748775642797], [-76.50345212309135, 35.35622247692747], [-76.54973539503287, 35.39582265834008], [-76.61286362793292, 35.347111277573546], [-76.5665783462189, 35.30748775642797]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.50345212309135, 35.35622247692747], [-76.4403259596709, 35.40493525152546], [-76.48660722673938, 35.44451208053627], [-76.54973539503287, 35.39582265834008], [-76.50345212309135, 35.35622247692747]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#7F0000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.4403259596709, 35.40493525152546], [-76.37719987543238, 35.45361964406829], [-76.42347914397011, 35.493173104353055], [-76.48660722673938, 35.44451208053627], [-76.4403259596709, 35.40493525152546]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.37719987543238, 35.45361964406829], [-76.31407391384309, 35.50226486221525], [-76.36035119257829, 35.54179493167023], [-76.42347914397011, 35.493173104353055], [-76.37719987543238, 35.45361964406829]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.31407391384309, 35.50226486221525], [-76.25094802696, 35.55088804534572], [-76.29722332076614, 35.5903947117283], [-76.36035119257829, 35.54179493167023], [-76.31407391384309, 35.50226486221525]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.25094802696, 35.55088804534572], [-76.18782224540458, 35.59948111324079], [-76.2340955609219, 35.63896435992642], [-76.29722332076614, 35.5903947117283], [-76.25094802696, 35.55088804534572]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.18782224540458, 35.59948111324079], [-76.12469661060075, 35.648036456702116], [-76.17096795599758, 35.68749626337503], [-76.2340955609219, 35.63896435992642], [-76.18782224540458, 35.59948111324079]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.12469661060075, 35.648036456702116], [-76.06157106774972, 35.69656967424268], [-76.10784044773777, 35.73600602919513], [-76.17096795599758, 35.68749626337503], [-76.12469661060075, 35.648036456702116]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.06157106774972, 35.69656967424268], [-75.99844566220092, 35.74507102698717], [-76.04471308350013, 35.784483913530366], [-76.10784044773777, 35.73600602919513], [-76.06157106774972, 35.69656967424268]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.99844566220092, 35.74507102698717], [-75.93532042905247, 35.79353611565274], [-75.98158589904577, 35.83292551537706], [-76.04471308350013, 35.784483913530366], [-75.99844566220092, 35.74507102698717]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.93532042905247, 35.79353611565274], [-75.8721953074146, 35.8419789855701], [-75.91845883051363, 35.881344887412794], [-75.98158589904577, 35.83292551537706], [-75.93532042905247, 35.79353611565274]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.8721953074146, 35.8419789855701], [-75.80907036151737, 35.8903882241001], [-75.85533194426759, 35.929730611572104], [-75.91845883051363, 35.881344887412794], [-75.8721953074146, 35.8419789855701]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.80907036151737, 35.8903882241001], [-75.74594561474913, 35.93876266953502], [-75.7922052635527, 35.97808152622618], [-75.85533194426759, 35.929730611572104], [-75.80907036151737, 35.8903882241001]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74594561474913, 35.93876266953502], [-75.68282100139523, 35.987114801358366], [-75.72907872022448, 36.02641011696123], [-75.7922052635527, 35.97808152622618], [-75.74594561474913, 35.93876266953502]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.68282100139523, 35.987114801358366], [-75.61969660928548, 36.03543151751812], [-75.66595240422323, 36.07470327603339], [-75.72907872022448, 36.02641011696123], [-75.68282100139523, 35.987114801358366]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.61969660928548, 36.03543151751812], [-75.55657244358348, 36.08371492250654], [-75.60282631988902, 36.122963109589506], [-75.66595240422323, 36.07470327603339], [-75.61969660928548, 36.03543151751812]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.55657244358348, 36.08371492250654], [-75.49344843555252, 36.13197591689107], [-75.53970039662025, 36.17120052309903], [-75.60282631988902, 36.122963109589506], [-75.55657244358348, 36.08371492250654]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#86FF70\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.49344843555252, 36.13197591689107], [-75.43032470189199, 36.180199692998585], [-75.4765747530225, 36.219400703136], [-75.53970039662025, 36.17120052309903], [-75.49344843555252, 36.13197591689107]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9DFF59\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43032470189199, 36.180199692998585], [-75.3672012218895, 36.228391651172046], [-75.41344936707233, 36.267569052997175], [-75.4765747530225, 36.219400703136], [-75.43032470189199, 36.180199692998585]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3672012218895, 36.228391651172046], [-75.3040779261488, 36.27656109954543], [-75.3503241680634, 36.315714884587926], [-75.41344936707233, 36.267569052997175], [-75.3672012218895, 36.228391651172046]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#46FFB0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3040779261488, 36.27656109954543], [-75.24095496603326, 36.32469150804545], [-75.28719930884958, 36.36382166224939], [-75.3503241680634, 36.315714884587926], [-75.3040779261488, 36.27656109954543]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5FFF96\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24095496603326, 36.32469150804545], [-75.17783228618464, 36.37279160358815], [-75.22407473253183, 36.41189811682297], [-75.28719930884958, 36.36382166224939], [-75.24095496603326, 36.32469150804545]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5FFF96\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.17783228618464, 36.37279160358815], [-75.11470981947924, 36.42086908787196], [-75.16095037118748, 36.45995195274478], [-75.22407473253183, 36.41189811682297], [-75.17783228618464, 36.37279160358815]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.11470981947924, 36.42086908787196], [-75.05158775822906, 36.46890569106756], [-75.09782641796289, 36.507964895017714], [-75.16095037118748, 36.45995195274478], [-75.11470981947924, 36.42086908787196]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.05158775822906, 36.46890569106756], [-74.98846600257926, 36.51691349848979], [-75.03470277155341, 36.5559490334769], [-75.09782641796289, 36.507964895017714], [-75.05158775822906, 36.46890569106756]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0074FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.98846600257926, 36.51691349848979], [-74.92534449117913, 36.56489859088737], [-74.97157937024349, 36.60391045069803], [-75.03470277155341, 36.5559490334769], [-74.98846600257926, 36.51691349848979]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00ACFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.92534449117913, 36.56489859088737], [-74.86222346402211, 36.61284094074013], [-74.90845645393692, 36.65182911468244], [-74.97157937024349, 36.60391045069803], [-74.92534449117913, 36.56489859088737]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0050FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.86222346402211, 36.61284094074013], [-74.79910276588097, 36.66075602471156], [-74.84533386642877, 36.699720506785475], [-74.90845645393692, 36.65182911468244], [-74.86222346402211, 36.61284094074013]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18102083304993, 34.9073133765747], [-77.11789206089048, 34.956291258234856], [-77.16419357099025, 34.99608233658879], [-77.22732441770522, 34.94712759793194], [-77.18102083304993, 34.9073133765747]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.11789206089048, 34.956291258234856], [-77.05476332005921, 35.005247438946576], [-77.10106275939054, 35.045015361472416], [-77.16419357099025, 34.99608233658879], [-77.11789206089048, 34.956291258234856]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05476332005921, 35.005247438946576], [-76.9916346128484, 35.0541803308356], [-77.03793198547552, 35.09392508377013], [-77.10106275939054, 35.045015361472416], [-77.05476332005921, 35.005247438946576]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9916346128484, 35.0541803308356], [-76.92850597749381, 35.10306973323411], [-76.97480129133098, 35.142791291096984], [-77.03793198547552, 35.09392508377013], [-76.9916346128484, 35.0541803308356]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.92850597749381, 35.10306973323411], [-76.86537738275084, 35.1519373500322], [-76.91167064188645, 35.19163570018321], [-76.97480129133098, 35.142791291096984], [-76.92850597749381, 35.10306973323411]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86537738275084, 35.1519373500322], [-76.80224883498649, 35.20077998939582], [-76.84854004411912, 35.240455117354], [-76.91167064188645, 35.19163570018321], [-76.86537738275084, 35.1519373500322]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.80224883498649, 35.20077998939582], [-76.73912037684082, 35.249580559872314], [-76.78540954408383, 35.28923244155184], [-76.84854004411912, 35.240455117354], [-76.80224883498649, 35.20077998939582]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73912037684082, 35.249580559872314], [-76.67599197035135, 35.29835925893981], [-76.72227909998468, 35.337987881974584], [-76.78540954408383, 35.28923244155184], [-76.73912037684082, 35.249580559872314]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67599197035135, 35.29835925893981], [-76.61286362793292, 35.347111277573546], [-76.65914872519045, 35.386716626910996], [-76.72227909998468, 35.337987881974584], [-76.67599197035135, 35.29835925893981]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.61286362793292, 35.347111277573546], [-76.54973539503287, 35.39582265834008], [-76.5960184679612, 35.43540471143963], [-76.65914872519045, 35.386716626910996], [-76.61286362793292, 35.347111277573546]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF3F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.54973539503287, 35.39582265834008], [-76.48660722673938, 35.44451208053627], [-76.53288827969222, 35.48407082540146], [-76.5960184679612, 35.43540471143963], [-76.54973539503287, 35.39582265834008]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9F0000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.48660722673938, 35.44451208053627], [-76.42347914397011, 35.493173104353055], [-76.46975818258005, 35.53270852553573], [-76.53288827969222, 35.48407082540146], [-76.48660722673938, 35.44451208053627]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.42347914397011, 35.493173104353055], [-76.36035119257829, 35.54179493167023], [-76.40662822457264, 35.581307008314184], [-76.46975818258005, 35.53270852553573], [-76.42347914397011, 35.493173104353055]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.36035119257829, 35.54179493167023], [-76.29722332076614, 35.5903947117283], [-76.34349835044846, 35.62988343230666], [-76.40662822457264, 35.581307008314184], [-76.36035119257829, 35.54179493167023]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.29722332076614, 35.5903947117283], [-76.2340955609219, 35.63896435992642], [-76.28036859414962, 35.67842970880085], [-76.34349835044846, 35.62988343230666], [-76.29722332076614, 35.5903947117283]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.2340955609219, 35.63896435992642], [-76.17096795599758, 35.68749626337503], [-76.21723899994524, 35.72693822149639], [-76.28036859414962, 35.67842970880085], [-76.2340955609219, 35.63896435992642]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.17096795599758, 35.68749626337503], [-76.10784044773777, 35.73600602919513], [-76.1541095065306, 35.775424585609215], [-76.21723899994524, 35.72693822149639], [-76.17096795599758, 35.68749626337503]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.10784044773777, 35.73600602919513], [-76.04471308350013, 35.784483913530366], [-76.09098016301047, 35.823879052642454], [-76.1541095065306, 35.775424585609215], [-76.10784044773777, 35.73600602919513]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.04471308350013, 35.784483913530366], [-75.98158589904577, 35.83292551537706], [-76.02785100568587, 35.8722972200477], [-76.09098016301047, 35.823879052642454], [-76.04471308350013, 35.784483913530366]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.98158589904577, 35.83292551537706], [-75.91845883051363, 35.881344887412794], [-75.9647219680995, 35.92069314736517], [-76.02785100568587, 35.8722972200477], [-75.98158589904577, 35.83292551537706]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.91845883051363, 35.881344887412794], [-75.85533194426759, 35.929730611572104], [-75.9015931184419, 35.969055411516024], [-75.9647219680995, 35.92069314736517], [-75.91845883051363, 35.881344887412794]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.85533194426759, 35.929730611572104], [-75.7922052635527, 35.97808152622618], [-75.83846447978404, 36.01738285101122], [-75.9015931184419, 35.969055411516024], [-75.85533194426759, 35.929730611572104]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7922052635527, 35.97808152622618], [-75.72907872022448, 36.02641011696123], [-75.77533598188748, 36.06568795709326], [-75.83846447978404, 36.01738285101122], [-75.7922052635527, 35.97808152622618]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72907872022448, 36.02641011696123], [-75.66595240422323, 36.07470327603339], [-75.71220771645375, 36.11395761681304], [-75.77533598188748, 36.06568795709326], [-75.72907872022448, 36.02641011696123]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.66595240422323, 36.07470327603339], [-75.60282631988902, 36.122963109589506], [-75.64907968706144, 36.16219393790941], [-75.71220771645375, 36.11395761681304], [-75.66595240422323, 36.07470327603339]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.60282631988902, 36.122963109589506], [-75.53970039662025, 36.17120052309903], [-75.58595182153597, 36.21040783035252], [-75.64907968706144, 36.16219393790941], [-75.60282631988902, 36.122963109589506]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#59FF9D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53970039662025, 36.17120052309903], [-75.4765747530225, 36.219400703136], [-75.52282424000279, 36.258584475524344], [-75.58595182153597, 36.21040783035252], [-75.53970039662025, 36.17120052309903]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#83FF73\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4765747530225, 36.219400703136], [-75.41344936707233, 36.267569052997175], [-75.45969691927986, 36.306729279483356], [-75.52282424000279, 36.258584475524344], [-75.4765747530225, 36.219400703136]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3FFFB7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41344936707233, 36.267569052997175], [-75.3503241680634, 36.315714884587926], [-75.39656978759571, 36.35485155755611], [-75.45969691927986, 36.306729279483356], [-75.41344936707233, 36.267569052997175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3503241680634, 36.315714884587926], [-75.28719930884958, 36.36382166224939], [-75.33344299887754, 36.40293476913293], [-75.39656978759571, 36.35485155755611], [-75.3503241680634, 36.315714884587926]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#3CFFBA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28719930884958, 36.36382166224939], [-75.22407473253183, 36.41189811682297], [-75.27031649492292, 36.45098764865494], [-75.33344299887754, 36.40293476913293], [-75.28719930884958, 36.36382166224939]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#63FF93\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.22407473253183, 36.41189811682297], [-75.16095037118748, 36.45995195274478], [-75.20719020720692, 36.49901790300146], [-75.27031649492292, 36.45098764865494], [-75.22407473253183, 36.41189811682297]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#22FFD4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.16095037118748, 36.45995195274478], [-75.09782641796289, 36.507964895017714], [-75.14406432926954, 36.54700725271579], [-75.20719020720692, 36.49901790300146], [-75.16095037118748, 36.45995195274478]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0084FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.09782641796289, 36.507964895017714], [-75.03470277155341, 36.5559490334769], [-75.08093875867053, 36.59496779169154], [-75.14406432926954, 36.54700725271579], [-75.09782641796289, 36.507964895017714]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.03470277155341, 36.5559490334769], [-74.97157937024349, 36.60391045069803], [-75.01781343347834, 36.642905604096356], [-75.08093875867053, 36.59496779169154], [-75.03470277155341, 36.5559490334769]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0060FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.97157937024349, 36.60391045069803], [-74.90845645393692, 36.65182911468244], [-74.95468859305096, 36.690800654233605], [-75.01781343347834, 36.642905604096356], [-74.97157937024349, 36.60391045069803]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#003CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.90845645393692, 36.65182911468244], [-74.84533386642877, 36.699720506785475], [-74.89156408058642, 36.73866842755139], [-74.95468859305096, 36.690800654233605], [-74.90845645393692, 36.65182911468244]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.22732441770522, 34.94712759793194], [-77.16419357099025, 34.99608233658879], [-77.21049497529364, 35.03585492063215], [-77.27362790562105, 34.98692328853505], [-77.22732441770522, 34.94712759793194]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.16419357099025, 34.99608233658879], [-77.10106275939054, 35.045015361472416], [-77.14736208346726, 35.08476482661629], [-77.21049497529364, 35.03585492063215], [-77.16419357099025, 34.99608233658879]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.10106275939054, 35.045015361472416], [-77.03793198547552, 35.09392508377013], [-77.08422923295906, 35.13365141677192], [-77.14736208346726, 35.08476482661629], [-77.10106275939054, 35.045015361472416]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.03793198547552, 35.09392508377013], [-76.97480129133098, 35.142791291096984], [-77.0210964692858, 35.18249446750842], [-77.08422923295906, 35.13365141677192], [-77.03793198547552, 35.09392508377013]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.97480129133098, 35.142791291096984], [-76.91167064188645, 35.19163570018321], [-76.95796375395581, 35.23131570790753], [-77.0210964692858, 35.18249446750842], [-76.97480129133098, 35.142791291096984]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.91167064188645, 35.19163570018321], [-76.84854004411912, 35.240455117354], [-76.8948310944895, 35.280111942535704], [-76.95796375395581, 35.23131570790753], [-76.91167064188645, 35.19163570018321]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.84854004411912, 35.240455117354], [-76.78540954408383, 35.28923244155184], [-76.83169853996932, 35.32886606121061], [-76.8948310944895, 35.280111942535704], [-76.84854004411912, 35.240455117354]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.78540954408383, 35.28923244155184], [-76.72227909998468, 35.337987881974584], [-76.76856604518298, 35.37759828434092], [-76.83169853996932, 35.32886606121061], [-76.78540954408383, 35.28923244155184]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.72227909998468, 35.337987881974584], [-76.65914872519045, 35.386716626910996], [-76.70543362434415, 35.42630379766464], [-76.76856604518298, 35.37759828434092], [-76.72227909998468, 35.337987881974584]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.65914872519045, 35.386716626910996], [-76.5960184679612, 35.43540471143963], [-76.64230132818798, 35.474968629199935], [-76.70543362434415, 35.42630379766464], [-76.65914872519045, 35.386716626910996]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5960184679612, 35.43540471143963], [-76.53288827969222, 35.48407082540146], [-76.57916910483345, 35.52361147881629], [-76.64230132818798, 35.474968629199935], [-76.5960184679612, 35.43540471143963]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.53288827969222, 35.48407082540146], [-76.46975818258005, 35.53270852553573], [-76.516036977602, 35.572225899996624], [-76.57916910483345, 35.52361147881629], [-76.53288827969222, 35.48407082540146]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.46975818258005, 35.53270852553573], [-76.40662822457264, 35.581307008314184], [-76.45290499626269, 35.62080108416133], [-76.516036977602, 35.572225899996624], [-76.46975818258005, 35.53270852553573]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.40662822457264, 35.581307008314184], [-76.34349835044846, 35.62988343230666], [-76.38977310257489, 35.66935419869998], [-76.45290499626269, 35.62080108416133], [-76.40662822457264, 35.581307008314184]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.34349835044846, 35.62988343230666], [-76.28036859414962, 35.67842970880085], [-76.32664133183458, 35.71787715104837], [-76.38977310257489, 35.66935419869998], [-76.34349835044846, 35.62988343230666]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.28036859414962, 35.67842970880085], [-76.21723899994524, 35.72693822149639], [-76.26350972942944, 35.76636232176534], [-76.32664133183458, 35.71787715104837], [-76.28036859414962, 35.67842970880085]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.21723899994524, 35.72693822149639], [-76.1541095065306, 35.775424585609215], [-76.20037823138813, 35.814825333669326], [-76.26350972942944, 35.76636232176534], [-76.21723899994524, 35.72693822149639]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.1541095065306, 35.775424585609215], [-76.09098016301047, 35.823879052642454], [-76.13724688831702, 35.86325643395031], [-76.20037823138813, 35.814825333669326], [-76.1541095065306, 35.775424585609215]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.09098016301047, 35.823879052642454], [-76.02785100568587, 35.8722972200477], [-76.07411573694128, 35.911651218685144], [-76.13724688831702, 35.86325643395031], [-76.09098016301047, 35.823879052642454]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.02785100568587, 35.8722972200477], [-75.9647219680995, 35.92069314736517], [-76.01098470855969, 35.96002375381146], [-76.07411573694128, 35.911651218685144], [-76.02785100568587, 35.8722972200477]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9647219680995, 35.92069314736517], [-75.9015931184419, 35.969055411516024], [-75.9478538729008, 36.008362611634574], [-76.01098470855969, 35.96002375381146], [-75.9647219680995, 35.92069314736517]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.9015931184419, 35.969055411516024], [-75.83846447978404, 36.01738285101122], [-75.88472325283229, 36.05666663086457], [-75.9478538729008, 36.008362611634574], [-75.9015931184419, 35.969055411516024]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.83846447978404, 36.01738285101122], [-75.77533598188748, 36.06568795709326], [-75.82159277633762, 36.1049483079707], [-75.88472325283229, 36.05666663086457], [-75.83846447978404, 36.01738285101122]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77533598188748, 36.06568795709326], [-75.71220771645375, 36.11395761681304], [-75.75846253655097, 36.15319452526777], [-75.82159277633762, 36.1049483079707], [-75.77533598188748, 36.06568795709326]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.71220771645375, 36.11395761681304], [-75.64907968706144, 36.16219393790941], [-75.69533253634788, 36.20140739202715], [-75.75846253655097, 36.15319452526777], [-75.71220771645375, 36.11395761681304]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64907968706144, 36.16219393790941], [-75.58595182153597, 36.21040783035252], [-75.63220270225528, 36.24959782233294], [-75.69533253634788, 36.20140739202715], [-75.64907968706144, 36.16219393790941]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58595182153597, 36.21040783035252], [-75.52282424000279, 36.258584475524344], [-75.56907315555515, 36.29775099291646], [-75.63220270225528, 36.24959782233294], [-75.58595182153597, 36.21040783035252]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#8DFF69\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52282424000279, 36.258584475524344], [-75.45969691927986, 36.306729279483356], [-75.50594387205024, 36.345872312413405], [-75.56907315555515, 36.29775099291646], [-75.52282424000279, 36.258584475524344]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#6CFF89\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45969691927986, 36.306729279483356], [-75.39656978759571, 36.35485155755611], [-75.44281477913438, 36.39397109923347], [-75.50594387205024, 36.345872312413405], [-75.45969691927986, 36.306729279483356]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39656978759571, 36.35485155755611], [-75.33344299887754, 36.40293476913293], [-75.37968603141597, 36.44203080842991], [-75.44281477913438, 36.39397109923347], [-75.39656978759571, 36.35485155755611]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#42FFB3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33344299887754, 36.40293476913293], [-75.27031649492292, 36.45098764865494], [-75.31655756961244, 36.49006017772964], [-75.37968603141597, 36.44203080842991], [-75.33344299887754, 36.40293476913293]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#4CFFAA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27031649492292, 36.45098764865494], [-75.20719020720692, 36.49901790300146], [-75.25342932478162, 36.53806691617067], [-75.31655756961244, 36.49006017772964], [-75.27031649492292, 36.45098764865494]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20719020720692, 36.49901790300146], [-75.14406432926954, 36.54700725271579], [-75.19030149044316, 36.586032740522164], [-75.25342932478162, 36.53806691617067], [-75.20719020720692, 36.49901790300146]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.14406432926954, 36.54700725271579], [-75.08093875867053, 36.59496779169154], [-75.12717396331678, 36.633969748290234], [-75.19030149044316, 36.586032740522164], [-75.14406432926954, 36.54700725271579]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00ACFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.08093875867053, 36.59496779169154], [-75.01781343347834, 36.642905604096356], [-75.06404668139491, 36.68188402500703], [-75.12717396331678, 36.633969748290234], [-75.08093875867053, 36.59496779169154]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0068FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.01781343347834, 36.642905604096356], [-74.95468859305096, 36.690800654233605], [-75.00091988306161, 36.72975553203442], [-75.06404668139491, 36.68188402500703], [-75.01781343347834, 36.642905604096356]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0058FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-74.95468859305096, 36.690800654233605], [-74.89156408058642, 36.73866842755139], [-74.93779341127575, 36.77759975833361], [-75.00091988306161, 36.72975553203442], [-74.95468859305096, 36.690800654233605]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0090FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.27362790562105, 34.98692328853505], [-77.21049497529364, 35.03585492063215], [-77.25679626333219, 35.07560900278998], [-77.3199312866849, 35.026700440820086], [-77.27362790562105, 34.98692328853505]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.21049497529364, 35.03585492063215], [-77.14736208346726, 35.08476482661629], [-77.19366128149018, 35.124495826770904], [-77.25679626333219, 35.07560900278998], [-77.21049497529364, 35.03585492063215]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.14736208346726, 35.08476482661629], [-77.08422923295906, 35.13365141677192], [-77.13052634419623, 35.173359322178285], [-77.19366128149018, 35.124495826770904], [-77.14736208346726, 35.08476482661629]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.08422923295906, 35.13365141677192], [-77.0210964692858, 35.18249446750842], [-77.06739150000507, 35.22217925470531], [-77.13052634419623, 35.173359322178285], [-77.08422923295906, 35.13365141677192]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.0210964692858, 35.18249446750842], [-76.95796375395581, 35.23131570790753], [-77.00425670738315, 35.27097736531813], [-77.06739150000507, 35.22217925470531], [-77.0210964692858, 35.18249446750842]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.95796375395581, 35.23131570790753], [-76.8948310944895, 35.280111942535704], [-76.94112197433127, 35.319750456902945], [-77.00425670738315, 35.27097736531813], [-76.95796375395581, 35.23131570790753]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8948310944895, 35.280111942535704], [-76.83169853996932, 35.32886606121061], [-76.87798735259618, 35.36848141061246], [-76.94112197433127, 35.319750456902945], [-76.8948310944895, 35.280111942535704]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.83169853996932, 35.32886606121061], [-76.76856604518298, 35.37759828434092], [-76.81485279394029, 35.41719045757917], [-76.87798735259618, 35.36848141061246], [-76.83169853996932, 35.32886606121061]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.76856604518298, 35.37759828434092], [-76.70543362434415, 35.42630379766464], [-76.75171831331978, 35.4658727811204], [-76.81485279394029, 35.41719045757917], [-76.76856604518298, 35.37759828434092]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70543362434415, 35.42630379766464], [-76.64230132818798, 35.474968629199935], [-76.6885839636281, 35.514514402604114], [-76.75171831331978, 35.4658727811204], [-76.70543362434415, 35.42630379766464]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.64230132818798, 35.474968629199935], [-76.57916910483345, 35.52361147881629], [-76.62544969009859, 35.563134031434515], [-76.6885839636281, 35.514514402604114], [-76.64230132818798, 35.474968629199935]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.57916910483345, 35.52361147881629], [-76.516036977602, 35.572225899996624], [-76.562315517033, 35.611725218025555], [-76.62544969009859, 35.563134031434515], [-76.57916910483345, 35.52361147881629]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.516036977602, 35.572225899996624], [-76.45290499626269, 35.62080108416133], [-76.49918149576463, 35.66027714908896], [-76.562315517033, 35.611725218025555], [-76.516036977602, 35.572225899996624]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.45290499626269, 35.62080108416133], [-76.38977310257489, 35.66935419869998], [-76.43604756541342, 35.70880700034539], [-76.49918149576463, 35.66027714908896], [-76.45290499626269, 35.62080108416133]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.38977310257489, 35.66935419869998], [-76.32664133183458, 35.71787715104837], [-76.37291376244136, 35.757306675628094], [-76.43604756541342, 35.70880700034539], [-76.38977310257489, 35.66935419869998]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.32664133183458, 35.71787715104837], [-76.26350972942944, 35.76636232176534], [-76.30978013316815, 35.805768552614964], [-76.37291376244136, 35.757306675628094], [-76.32664133183458, 35.71787715104837]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.26350972942944, 35.76636232176534], [-76.20037823138813, 35.814825333669326], [-76.24664661131509, 35.854208261254236], [-76.30978013316815, 35.805768552614964], [-76.26350972942944, 35.76636232176534]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.20037823138813, 35.814825333669326], [-76.13724688831702, 35.86325643395031], [-76.18351324875968, 35.90261604473761], [-76.24664661131509, 35.854208261254236], [-76.20037823138813, 35.814825333669326]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.13724688831702, 35.86325643395031], [-76.07411573694128, 35.911651218685144], [-76.12038008254214, 35.95098749793131], [-76.18351324875968, 35.90261604473761], [-76.13724688831702, 35.86325643395031]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.07411573694128, 35.911651218685144], [-76.01098470855969, 35.96002375381146], [-76.05724704204849, 35.99933669272317], [-76.12038008254214, 35.95098749793131], [-76.07411573694128, 35.911651218685144]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.01098470855969, 35.96002375381146], [-75.9478538729008, 36.008362611634574], [-75.9941141982738, 36.04765219718546], [-76.05724704204849, 35.99933669272317], [-76.01098470855969, 35.96002375381146]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9478538729008, 36.008362611634574], [-75.88472325283229, 36.05666663086457], [-75.93098157385518, 36.095932850285315], [-75.9941141982738, 36.04765219718546], [-75.9478538729008, 36.008362611634574]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88472325283229, 36.05666663086457], [-75.82159277633762, 36.1049483079707], [-75.86784909529467, 36.14419115330531], [-75.93098157385518, 36.095932850285315], [-75.88472325283229, 36.05666663086457]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.82159277633762, 36.1049483079707], [-75.75846253655097, 36.15319452526777], [-75.80471685685038, 36.192413984276456], [-75.86784909529467, 36.14419115330531], [-75.82159277633762, 36.1049483079707]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.75846253655097, 36.15319452526777], [-75.69533253634788, 36.20140739202715], [-75.74158486074958, 36.24060345394609], [-75.80471685685038, 36.192413984276456], [-75.75846253655097, 36.15319452526777]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69533253634788, 36.20140739202715], [-75.63220270225528, 36.24959782233294], [-75.67845303247884, 36.28877048013957], [-75.74158486074958, 36.24060345394609], [-75.69533253634788, 36.20140739202715]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0054FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.63220270225528, 36.24959782233294], [-75.56907315555515, 36.29775099291646], [-75.61532149413513, 36.336900235460284], [-75.67845303247884, 36.28877048013957], [-75.63220270225528, 36.24959782233294]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56907315555515, 36.29775099291646], [-75.50594387205024, 36.345872312413405], [-75.55219022064105, 36.38499813094375], [-75.61532149413513, 36.336900235460284], [-75.56907315555515, 36.29775099291646]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.50594387205024, 36.345872312413405], [-75.44281477913438, 36.39397109923347], [-75.4890591387721, 36.4330734877567], [-75.55219022064105, 36.38499813094375], [-75.50594387205024, 36.345872312413405]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.44281477913438, 36.39397109923347], [-75.37968603141597, 36.44203080842991], [-75.42592840344955, 36.4811097572086], [-75.4890591387721, 36.4330734877567], [-75.44281477913438, 36.39397109923347]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37968603141597, 36.44203080842991], [-75.31655756961244, 36.49006017772964], [-75.3627979545208, 36.529115680009504], [-75.42592840344955, 36.4811097572086], [-75.37968603141597, 36.44203080842991]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#46FFB0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.31655756961244, 36.49006017772964], [-75.25342932478162, 36.53806691617067], [-75.29966772280021, 36.57709896708118], [-75.3627979545208, 36.529115680009504], [-75.31655756961244, 36.49006017772964]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25342932478162, 36.53806691617067], [-75.19030149044316, 36.586032740522164], [-75.2365379013986, 36.625041332082176], [-75.29966772280021, 36.57709896708118], [-75.25342932478162, 36.53806691617067]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.19030149044316, 36.586032740522164], [-75.12717396331678, 36.633969748290234], [-75.17340838647351, 36.67295487570022], [-75.2365379013986, 36.625041332082176], [-75.19030149044316, 36.586032740522164]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.12717396331678, 36.633969748290234], [-75.06404668139491, 36.68188402500703], [-75.1102791160726, 36.720845684611945], [-75.17340838647351, 36.67295487570022], [-75.12717396331678, 36.633969748290234]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.06404668139491, 36.68188402500703], [-75.00091988306161, 36.72975553203442], [-75.04715032720517, 36.76869371797076], [-75.1102791160726, 36.720845684611945], [-75.06404668139491, 36.68188402500703]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0064FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.00091988306161, 36.72975553203442], [-74.93779341127575, 36.77759975833361], [-74.9840218629268, 36.816514467690126], [-75.04715032720517, 36.76869371797076], [-75.00091988306161, 36.72975553203442]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#007CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3199312866849, 35.026700440820086], [-77.25679626333219, 35.07560900278998], [-77.30309742579519, 35.11534457410645], [-77.3662345518928, 35.0664590459086], [-77.3199312866849, 35.026700440820086]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.25679626333219, 35.07560900278998], [-77.19366128149018, 35.124495826770904], [-77.23996034386553, 35.16420835288283], [-77.30309742579519, 35.11534457410645], [-77.25679626333219, 35.07560900278998]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.19366128149018, 35.124495826770904], [-77.13052634419623, 35.173359322178285], [-77.17682330933563, 35.21304879081666], [-77.23996034386553, 35.16420835288283], [-77.19366128149018, 35.124495826770904]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.13052634419623, 35.173359322178285], [-77.06739150000507, 35.22217925470531], [-77.11368637342981, 35.2618456433533], [-77.17682330933563, 35.21304879081666], [-77.13052634419623, 35.173359322178285]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.06739150000507, 35.22217925470531], [-77.00425670738315, 35.27097736531813], [-77.05054949192795, 35.31062066289661], [-77.11368637342981, 35.2618456433533], [-77.06739150000507, 35.22217925470531]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.00425670738315, 35.27097736531813], [-76.94112197433127, 35.319750456902945], [-76.98741267325241, 35.35937065072768], [-77.05054949192795, 35.31062066289661], [-77.00425670738315, 35.27097736531813]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.94112197433127, 35.319750456902945], [-76.87798735259618, 35.36848141061246], [-76.92427597147346, 35.40807847977496], [-76.98741267325241, 35.35937065072768], [-76.94112197433127, 35.319750456902945]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.87798735259618, 35.36848141061246], [-76.81485279394029, 35.41719045757917], [-76.86113933569489, 35.45676439142864], [-76.92427597147346, 35.40807847977496], [-76.87798735259618, 35.36848141061246]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.81485279394029, 35.41719045757917], [-76.75171831331978, 35.4658727811204], [-76.79800278151939, 35.50542356671], [-76.86113933569489, 35.45676439142864], [-76.81485279394029, 35.41719045757917]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75171831331978, 35.4658727811204], [-76.6885839636281, 35.514514402604114], [-76.73486636370117, 35.55404202073034], [-76.79800278151939, 35.50542356671], [-76.75171831331978, 35.4658727811204]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.6885839636281, 35.514514402604114], [-76.62544969009859, 35.563134031434515], [-76.67173002495456, 35.60263847195546], [-76.73486636370117, 35.55404202073034], [-76.6885839636281, 35.514514402604114]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62544969009859, 35.563134031434515], [-76.562315517033, 35.611725218025555], [-76.60859379042591, 35.65120646791014], [-76.67173002495456, 35.60263847195546], [-76.62544969009859, 35.563134031434515]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.562315517033, 35.611725218025555], [-76.49918149576463, 35.66027714908896], [-76.54545771277154, 35.69973519092677], [-76.60859379042591, 35.65120646791014], [-76.562315517033, 35.611725218025555]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.49918149576463, 35.66027714908896], [-76.43604756541342, 35.70880700034539], [-76.48232172882825, 35.74824182458836], [-76.54545771277154, 35.69973519092677], [-76.49918149576463, 35.66027714908896]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.43604756541342, 35.70880700034539], [-76.37291376244136, 35.757306675628094], [-76.41918587604764, 35.79671826936517], [-76.48232172882825, 35.74824182458836], [-76.43604756541342, 35.70880700034539]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.37291376244136, 35.757306675628094], [-76.30978013316815, 35.805768552614964], [-76.35605020150629, 35.84515690030432], [-76.41918587604764, 35.79671826936517], [-76.37291376244136, 35.757306675628094]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.30978013316815, 35.805768552614964], [-76.24664661131509, 35.854208261254236], [-76.29291463695536, 35.89357335402995], [-76.35605020150629, 35.84515690030432], [-76.30978013316815, 35.805768552614964]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.24664661131509, 35.854208261254236], [-76.18351324875968, 35.90261604473761], [-76.22977923532683, 35.94195787003824], [-76.29291463695536, 35.89357335402995], [-76.24664661131509, 35.854208261254236]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.18351324875968, 35.90261604473761], [-76.12038008254214, 35.95098749793131], [-76.1666440338737, 35.99030604214326], [-76.22977923532683, 35.94195787003824], [-76.18351324875968, 35.90261604473761]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.12038008254214, 35.95098749793131], [-76.05724704204849, 35.99933669272317], [-76.10350896038011, 36.03863194775315], [-76.1666440338737, 35.99030604214326], [-76.12038008254214, 35.95098749793131]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.05724704204849, 35.99933669272317], [-75.9941141982738, 36.04765219718546], [-76.04037408685282, 36.08692415107572], [-76.10350896038011, 36.03863194775315], [-76.05724704204849, 35.99933669272317]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9941141982738, 36.04765219718546], [-75.93098157385518, 36.095932850285315], [-75.97723943567246, 36.13518149139166], [-76.04037408685282, 36.08692415107572], [-75.9941141982738, 36.04765219718546]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93098157385518, 36.095932850285315], [-75.86784909529467, 36.14419115330531], [-75.91410493213841, 36.183416474398825], [-75.97723943567246, 36.13518149139166], [-75.93098157385518, 36.095932850285315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9F00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.86784909529467, 36.14419115330531], [-75.80471685685038, 36.192413984276456], [-75.85097067134281, 36.23161597428062], [-75.91410493213841, 36.183416474398825], [-75.86784909529467, 36.14419115330531]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAA00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.80471685685038, 36.192413984276456], [-75.74158486074958, 36.24060345394609], [-75.78783665491623, 36.279782103206514], [-75.85097067134281, 36.23161597428062], [-75.80471685685038, 36.192413984276456]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74158486074958, 36.24060345394609], [-75.67845303247884, 36.28877048013957], [-75.7247028075471, 36.32792578238389], [-75.78783665491623, 36.279782103206514], [-75.74158486074958, 36.24060345394609]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E0FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.67845303247884, 36.28877048013957], [-75.61532149413513, 36.336900235460284], [-75.66156925182705, 36.37603218079286], [-75.7247028075471, 36.32792578238389], [-75.67845303247884, 36.28877048013957]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2CFFCA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61532149413513, 36.336900235460284], [-75.55219022064105, 36.38499813094375], [-75.59843596192516, 36.42410671169833], [-75.66156925182705, 36.37603218079286], [-75.61532149413513, 36.336900235460284]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.55219022064105, 36.38499813094375], [-75.4890591387721, 36.4330734877567], [-75.53530286420202, 36.472158698709286], [-75.59843596192516, 36.42410671169833], [-75.55219022064105, 36.38499813094375]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#4CFFAA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4890591387721, 36.4330734877567], [-75.42592840344955, 36.4811097572086], [-75.47217011354618, 36.52017158996483], [-75.53530286420202, 36.472158698709286], [-75.4890591387721, 36.4330734877567]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#22FFD4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.42592840344955, 36.4811097572086], [-75.3627979545208, 36.529115680009504], [-75.40903764913246, 36.568154128866496], [-75.47217011354618, 36.52017158996483], [-75.42592840344955, 36.4811097572086]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3627979545208, 36.529115680009504], [-75.29966772280021, 36.57709896708118], [-75.34590540169478, 36.616114027954126], [-75.40903764913246, 36.568154128866496], [-75.3627979545208, 36.529115680009504]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29966772280021, 36.57709896708118], [-75.2365379013986, 36.625041332082176], [-75.28277356357118, 36.6640329984178], [-75.34590540169478, 36.616114027954126], [-75.29966772280021, 36.57709896708118]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0CF4EA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2365379013986, 36.625041332082176], [-75.17340838647351, 36.67295487570022], [-75.21964203061783, 36.71192314371064], [-75.28277356357118, 36.6640329984178], [-75.2365379013986, 36.625041332082176]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.17340838647351, 36.67295487570022], [-75.1102791160726, 36.720845684611945], [-75.15651074106071, 36.75979055144091], [-75.21964203061783, 36.71192314371064], [-75.17340838647351, 36.67295487570022]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.1102791160726, 36.720845684611945], [-75.04715032720517, 36.76869371797076], [-75.09337993015943, 36.80761517926376], [-75.15651074106071, 36.75979055144091], [-75.1102791160726, 36.720845684611945]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0088FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.04715032720517, 36.76869371797076], [-74.9840218629268, 36.816514467690126], [-75.0302494413812, 36.85541252150233], [-75.09337993015943, 36.80761517926376], [-75.04715032720517, 36.76869371797076]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0088FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3662345518928, 35.0664590459086], [-77.30309742579519, 35.11534457410645], [-77.34939845445683, 35.15506162430835], [-77.41253769327936, 35.10619909366844], [-77.3662345518928, 35.0664590459086]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.30309742579519, 35.11534457410645], [-77.23996034386553, 35.16420835288283], [-77.28625926212932, 35.203902394518714], [-77.34939845445683, 35.15506162430835], [-77.30309742579519, 35.11534457410645]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.23996034386553, 35.16420835288283], [-77.17682330933563, 35.21304879081666], [-77.22312011969888, 35.25271981207296], [-77.28625926212932, 35.203902394518714], [-77.23996034386553, 35.16420835288283]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.17682330933563, 35.21304879081666], [-77.11368637342981, 35.2618456433533], [-77.1599810807142, 35.301493622617336], [-77.22312011969888, 35.25271981207296], [-77.17682330933563, 35.21304879081666]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.11368637342981, 35.2618456433533], [-77.05054949192795, 35.31062066289661], [-77.09684209860151, 35.350245589565915], [-77.1599810807142, 35.301493622617336], [-77.11368637342981, 35.2618456433533]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05054949192795, 35.31062066289661], [-76.98741267325241, 35.35937065072768], [-77.03370318214954, 35.39897251266666], [-77.09684209860151, 35.350245589565915], [-77.05054949192795, 35.31062066289661]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.98741267325241, 35.35937065072768], [-76.92427597147346, 35.40807847977496], [-76.97056438743267, 35.447657257046224], [-77.03370318214954, 35.39897251266666], [-76.98741267325241, 35.35937065072768]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.92427597147346, 35.40807847977496], [-76.86113933569489, 35.45676439142864], [-76.9074256612396, 35.49632007390611], [-76.97056438743267, 35.447657257046224], [-76.92427597147346, 35.40807847977496]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86113933569489, 35.45676439142864], [-76.79800278151939, 35.50542356671], [-76.84428701972949, 35.544956142091], [-76.9074256612396, 35.49632007390611], [-76.86113933569489, 35.45676439142864]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.79800278151939, 35.50542356671], [-76.73486636370117, 35.55404202073034], [-76.78114851923834, 35.59355147083338], [-76.84428701972949, 35.544956142091], [-76.79800278151939, 35.50542356671]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73486636370117, 35.55404202073034], [-76.67173002495456, 35.60263847195546], [-76.71801010030515, 35.64212478720703], [-76.78114851923834, 35.59355147083338], [-76.73486636370117, 35.55404202073034]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67173002495456, 35.60263847195546], [-76.60859379042591, 35.65120646791014], [-76.6548717887936, 35.69066963602016], [-76.71801010030515, 35.64212478720703], [-76.67173002495456, 35.60263847195546]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.60859379042591, 35.65120646791014], [-76.54545771277154, 35.69973519092677], [-76.59173363845662, 35.739175195542366], [-76.6548717887936, 35.69066963602016], [-76.60859379042591, 35.65120646791014]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.54545771277154, 35.69973519092677], [-76.48232172882825, 35.74824182458836], [-76.52859558418206, 35.787658656769246], [-76.59173363845662, 35.739175195542366], [-76.54545771277154, 35.69973519092677]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.48232172882825, 35.74824182458836], [-76.41918587604764, 35.79671826936517], [-76.46545766424566, 35.83611191703828], [-76.52859558418206, 35.787658656769246], [-76.48232172882825, 35.74824182458836]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.41918587604764, 35.79671826936517], [-76.35605020150629, 35.84515690030432], [-76.40231992631641, 35.88452734900671], [-76.46545766424566, 35.83611191703828], [-76.41918587604764, 35.79671826936517]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.35605020150629, 35.84515690030432], [-76.29291463695536, 35.89357335402995], [-76.3391823004918, 35.93292059553851], [-76.40231992631641, 35.88452734900671], [-76.35605020150629, 35.84515690030432]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.29291463695536, 35.89357335402995], [-76.22977923532683, 35.94195787003824], [-76.27604484055502, 35.98128189272569], [-76.3391823004918, 35.93292059553851], [-76.29291463695536, 35.89357335402995]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.22977923532683, 35.94195787003824], [-76.1666440338737, 35.99030604214326], [-76.21290758387572, 36.029606833483214], [-76.27604484055502, 35.98128189272569], [-76.22977923532683, 35.94195787003824]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.1666440338737, 35.99030604214326], [-76.10350896038011, 36.03863194775315], [-76.1497704569279, 36.077909500326015], [-76.21290758387572, 36.029606833483214], [-76.1666440338737, 35.99030604214326]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.10350896038011, 36.03863194775315], [-76.04037408685282, 36.08692415107572], [-76.08663353249086, 36.12617845395251], [-76.1497704569279, 36.077909500326015], [-76.10350896038011, 36.03863194775315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8100\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.04037408685282, 36.08692415107572], [-75.97723943567246, 36.13518149139166], [-76.02349683266462, 36.174412534011914], [-76.08663353249086, 36.12617845395251], [-76.04037408685282, 36.08692415107572]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97723943567246, 36.13518149139166], [-75.91410493213841, 36.183416474398825], [-75.96036028180744, 36.2226242502342], [-76.02349683266462, 36.174412534011914], [-75.97723943567246, 36.13518149139166]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91410493213841, 36.183416474398825], [-75.85097067134281, 36.23161597428062], [-75.89722397557348, 36.270800473375736], [-75.96036028180744, 36.2226242502342], [-75.91410493213841, 36.183416474398825]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFAE00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.85097067134281, 36.23161597428062], [-75.78783665491623, 36.279782103206514], [-75.83408791504509, 36.318943316976885], [-75.89722397557348, 36.270800473375736], [-75.85097067134281, 36.23161597428062]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.78783665491623, 36.279782103206514], [-75.7247028075471, 36.32792578238389], [-75.77095202433996, 36.3670637052808], [-75.83408791504509, 36.318943316976885], [-75.78783665491623, 36.279782103206514]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7247028075471, 36.32792578238389], [-75.66156925182705, 36.37603218079286], [-75.7078164262438, 36.415146804131524], [-75.77095202433996, 36.3670637052808], [-75.7247028075471, 36.32792578238389]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0010FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66156925182705, 36.37603218079286], [-75.59843596192516, 36.42410671169833], [-75.64468109429136, 36.46319802885945], [-75.7078164262438, 36.415146804131524], [-75.66156925182705, 36.37603218079286]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0080FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59843596192516, 36.42410671169833], [-75.53530286420202, 36.472158698709286], [-75.58154595461895, 36.51122670521208], [-75.64468109429136, 36.46319802885945], [-75.59843596192516, 36.42410671169833]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53530286420202, 36.472158698709286], [-75.47217011354618, 36.52017158996483], [-75.51841116175882, 36.55921627871245], [-75.58154595461895, 36.51122670521208], [-75.53530286420202, 36.472158698709286]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.47217011354618, 36.52017158996483], [-75.40903764913246, 36.568154128866496], [-75.45527665439842, 36.60717549517227], [-75.51841116175882, 36.55921627871245], [-75.47217011354618, 36.52017158996483]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#36FFC0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40903764913246, 36.568154128866496], [-75.34590540169478, 36.616114027954126], [-75.39214236334405, 36.65511206849283], [-75.45527665439842, 36.60717549517227], [-75.40903764913246, 36.568154128866496]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0FF8E7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34590540169478, 36.616114027954126], [-75.28277356357118, 36.6640329984178], [-75.32900847982054, 36.70300770801703], [-75.39214236334405, 36.65511206849283], [-75.34590540169478, 36.616114027954126]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1FFFD7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28277356357118, 36.6640329984178], [-75.21964203061783, 36.71192314371064], [-75.26587489962733, 36.750874519561464], [-75.32900847982054, 36.70300770801703], [-75.28277356357118, 36.6640329984178]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.21964203061783, 36.71192314371064], [-75.15651074106071, 36.75979055144091], [-75.20274156128384, 36.79871859146011], [-75.26587489962733, 36.750874519561464], [-75.21964203061783, 36.71192314371064]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E4F7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.15651074106071, 36.75979055144091], [-75.09337993015943, 36.80761517926376], [-75.13960869795008, 36.846519880557764], [-75.20274156128384, 36.79871859146011], [-75.15651074106071, 36.75979055144091]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#009CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.09337993015943, 36.80761517926376], [-75.0302494413812, 36.85541252150233], [-75.07647615379976, 36.894293883062446], [-75.13960869795008, 36.846519880557764], [-75.09337993015943, 36.80761517926376]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.41253769327936, 35.10619909366844], [-77.34939845445683, 35.15506162430835], [-77.39569934210772, 35.19476014186515], [-77.45884070385216, 35.14592057277144], [-77.41253769327936, 35.10619909366844]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.34939845445683, 35.15506162430835], [-77.28625926212932, 35.203902394518714], [-77.33255802887602, 35.24357793992762], [-77.39569934210772, 35.19476014186515], [-77.34939845445683, 35.15506162430835]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.28625926212932, 35.203902394518714], [-77.22312011969888, 35.25271981207296], [-77.26941676770679, 35.29237237395654], [-77.33255802887602, 35.24357793992762], [-77.28625926212932, 35.203902394518714]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.22312011969888, 35.25271981207296], [-77.1599810807142, 35.301493622617336], [-77.20627561414948, 35.34112318022882], [-77.26941676770679, 35.29237237395654], [-77.22312011969888, 35.25271981207296]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.1599810807142, 35.301493622617336], [-77.09684209860151, 35.350245589565915], [-77.14313451958861, 35.38985213275954], [-77.20627561414948, 35.34112318022882], [-77.1599810807142, 35.301493622617336]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.09684209860151, 35.350245589565915], [-77.03370318214954, 35.39897251266666], [-77.07999349312755, 35.43855602983254], [-77.14313451958861, 35.38985213275954], [-77.09684209860151, 35.350245589565915]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.03370318214954, 35.39897251266666], [-76.97056438743267, 35.447657257046224], [-77.01685259254526, 35.48721772917784], [-77.07999349312755, 35.43855602983254], [-77.03370318214954, 35.39897251266666]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.97056438743267, 35.447657257046224], [-76.9074256612396, 35.49632007390611], [-76.95371176263737, 35.5358574913805], [-77.01685259254526, 35.48721772917784], [-76.97056438743267, 35.447657257046224]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9074256612396, 35.49632007390611], [-76.84428701972949, 35.544956142091], [-76.89057102003513, 35.58447049322326], [-76.95371176263737, 35.5358574913805], [-76.9074256612396, 35.49632007390611]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.84428701972949, 35.544956142091], [-76.78114851923834, 35.59355147083338], [-76.82743042239471, 35.63304273842242], [-76.89057102003513, 35.58447049322326], [-76.84428701972949, 35.544956142091]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.78114851923834, 35.59355147083338], [-76.71801010030515, 35.64212478720703], [-76.76428990840195, 35.68159296222488], [-76.82743042239471, 35.63304273842242], [-76.78114851923834, 35.59355147083338]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.71801010030515, 35.64212478720703], [-76.6548717887936, 35.69066963602016], [-76.70114950451851, 35.73011470688802], [-76.76428990840195, 35.68159296222488], [-76.71801010030515, 35.64212478720703]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.6548717887936, 35.69066963602016], [-76.59173363845662, 35.739175195542366], [-76.63800926538156, 35.77859714692286], [-76.70114950451851, 35.73011470688802], [-76.6548717887936, 35.69066963602016]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.59173363845662, 35.739175195542366], [-76.52859558418206, 35.787658656769246], [-76.57486912424334, 35.82705748030599], [-76.63800926538156, 35.77859714692286], [-76.59173363845662, 35.739175195542366]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52859558418206, 35.787658656769246], [-76.46545766424566, 35.83611191703828], [-76.51172912004859, 35.875487601463284], [-76.57486912424334, 35.82705748030599], [-76.52859558418206, 35.787658656769246]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.46545766424566, 35.83611191703828], [-76.40231992631641, 35.88452734900671], [-76.44858930090442, 35.92387988089409], [-76.51172912004859, 35.875487601463284], [-76.46545766424566, 35.83611191703828]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.40231992631641, 35.88452734900671], [-76.3391823004918, 35.93292059553851], [-76.38544959555138, 35.97224996728335], [-76.44858930090442, 35.92387988089409], [-76.40231992631641, 35.88452734900671]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.3391823004918, 35.93292059553851], [-76.27604484055502, 35.98128189272569], [-76.32231005843327, 36.020588093599116], [-76.38544959555138, 35.97224996728335], [-76.3391823004918, 35.93292059553851]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.27604484055502, 35.98128189272569], [-76.21290758387572, 36.029606833483214], [-76.25917072694637, 36.068889852005015], [-76.32231005843327, 36.020588093599116], [-76.27604484055502, 35.98128189272569]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.21290758387572, 36.029606833483214], [-76.1497704569279, 36.077909500326015], [-76.19603152652803, 36.11716932972509], [-76.25917072694637, 36.068889852005015], [-76.21290758387572, 36.029606833483214]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.1497704569279, 36.077909500326015], [-76.08663353249086, 36.12617845395251], [-76.13289253050591, 36.16541508429038], [-76.19603152652803, 36.11716932972509], [-76.1497704569279, 36.077909500326015]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7300\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08663353249086, 36.12617845395251], [-76.02349683266462, 36.174412534011914], [-76.06975376067672, 36.2136259557721], [-76.13289253050591, 36.16541508429038], [-76.08663353249086, 36.12617845395251]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.02349683266462, 36.174412534011914], [-75.96036028180744, 36.2226242502342], [-76.00661514070298, 36.26181445756341], [-76.06975376067672, 36.2136259557721], [-76.02349683266462, 36.174412534011914]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFA600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.96036028180744, 36.2226242502342], [-75.89722397557348, 36.270800473375736], [-75.94347676654587, 36.30996745739925], [-76.00661514070298, 36.26181445756341], [-75.96036028180744, 36.2226242502342]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.89722397557348, 36.270800473375736], [-75.83408791504509, 36.318943316976885], [-75.88033863878519, 36.35808707014198], [-75.94347676654587, 36.30996745739925], [-75.89722397557348, 36.270800473375736]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.83408791504509, 36.318943316976885], [-75.77095202433996, 36.3670637052808], [-75.81720068118103, 36.406184222736805], [-75.88033863878519, 36.35808707014198], [-75.83408791504509, 36.318943316976885]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77095202433996, 36.3670637052808], [-75.7078164262438, 36.415146804131524], [-75.75406301643167, 36.45424407836198], [-75.81720068118103, 36.406184222736805], [-75.77095202433996, 36.3670637052808]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7078164262438, 36.415146804131524], [-75.64468109429136, 36.46319802885945], [-75.69092561754948, 36.502272054255855], [-75.75406301643167, 36.45424407836198], [-75.7078164262438, 36.415146804131524]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0070FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64468109429136, 36.46319802885945], [-75.58154595461895, 36.51122670521208], [-75.62778841062506, 36.55027747801134], [-75.69092561754948, 36.502272054255855], [-75.64468109429136, 36.46319802885945]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00B4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58154595461895, 36.51122670521208], [-75.51841116175882, 36.55921627871245], [-75.56465154953153, 36.598243793070985], [-75.62778841062506, 36.55027747801134], [-75.58154595461895, 36.51122670521208]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.51841116175882, 36.55921627871245], [-75.45527665439842, 36.60717549517227], [-75.50151497264284, 36.64617974738563], [-75.56465154953153, 36.598243793070985], [-75.51841116175882, 36.55921627871245]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#08F0ED\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45527665439842, 36.60717549517227], [-75.39214236334405, 36.65511206849283], [-75.4383786109807, 36.69409305597001], [-75.50151497264284, 36.64617974738563], [-75.45527665439842, 36.60717549517227]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39214236334405, 36.65511206849283], [-75.32900847982054, 36.70300770801703], [-75.37524265433882, 36.741965426920885], [-75.4383786109807, 36.69409305597001], [-75.39214236334405, 36.65511206849283]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0CF4EA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32900847982054, 36.70300770801703], [-75.26587489962733, 36.750874519561464], [-75.31210699868893, 36.789808968030165], [-75.37524265433882, 36.741965426920885], [-75.32900847982054, 36.70300770801703]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26587489962733, 36.750874519561464], [-75.20274156128384, 36.79871859146011], [-75.24897158295155, 36.83762976815839], [-75.31210699868893, 36.789808968030165], [-75.26587489962733, 36.750874519561464]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.20274156128384, 36.79871859146011], [-75.13960869795008, 36.846519880557764], [-75.18583663786109, 36.88540778400626], [-75.24897158295155, 36.83762976815839], [-75.20274156128384, 36.79871859146011]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E0FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.13960869795008, 36.846519880557764], [-75.07647615379976, 36.894293883062446], [-75.12270200857338, 36.93315851315906], [-75.18583663786109, 36.88540778400626], [-75.13960869795008, 36.846519880557764]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.45884070385216, 35.14592057277144], [-77.39569934210772, 35.19476014186515], [-77.4420000824906, 35.234440114046066], [-77.50514357753008, 35.185623470748], [-77.45884070385216, 35.14592057277144]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.39569934210772, 35.19476014186515], [-77.33255802887602, 35.24357793992762], [-77.37885663769187, 35.28323497610046], [-77.4420000824906, 35.234440114046066], [-77.39569934210772, 35.19476014186515]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.33255802887602, 35.24357793992762], [-77.26941676770679, 35.29237237395654], [-77.31571324681005, 35.33200646316164], [-77.37885663769187, 35.28323497610046], [-77.33255802887602, 35.24357793992762]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.26941676770679, 35.29237237395654], [-77.20627561414948, 35.34112318022882], [-77.25256996709237, 35.38073430254926], [-77.31571324681005, 35.33200646316164], [-77.26941676770679, 35.29237237395654]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.20627561414948, 35.34112318022882], [-77.14313451958861, 35.38985213275954], [-77.18942674817366, 35.42944027848731], [-77.25256996709237, 35.38073430254926], [-77.20627561414948, 35.34112318022882]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.14313451958861, 35.38985213275954], [-77.07999349312755, 35.43855602983254], [-77.12628359942346, 35.47812118786161], [-77.18942674817366, 35.42944027848731], [-77.14313451958861, 35.38985213275954]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07999349312755, 35.43855602983254], [-77.01685259254526, 35.48721772917784], [-77.06314058004477, 35.5267598813943], [-77.12628359942346, 35.47812118786161], [-77.07999349312755, 35.43855602983254]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.01685259254526, 35.48721772917784], [-76.95371176263737, 35.5358574913805], [-76.99999763314173, 35.575376628644], [-77.06314058004477, 35.5267598813943], [-77.01685259254526, 35.48721772917784]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.95371176263737, 35.5358574913805], [-76.89057102003513, 35.58447049322326], [-76.93685477573864, 35.62396660444149], [-76.99999763314173, 35.575376628644], [-76.95371176263737, 35.5358574913805]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.89057102003513, 35.58447049322326], [-76.82743042239471, 35.63304273842242], [-76.87371206656664, 35.672515807335266], [-76.93685477573864, 35.62396660444149], [-76.89057102003513, 35.58447049322326]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.82743042239471, 35.63304273842242], [-76.76428990840195, 35.68159296222488], [-76.81056944276023, 35.72104298032811], [-76.87371206656664, 35.672515807335266], [-76.82743042239471, 35.63304273842242]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.76428990840195, 35.68159296222488], [-76.70114950451851, 35.73011470688802], [-76.74742693126723, 35.76954166328562], [-76.81056944276023, 35.72104298032811], [-76.76428990840195, 35.68159296222488]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70114950451851, 35.73011470688802], [-76.63800926538156, 35.77859714692286], [-76.68428458740999, 35.818001027252976], [-76.74742693126723, 35.76954166328562], [-76.70114950451851, 35.73011470688802]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.63800926538156, 35.77859714692286], [-76.57486912424334, 35.82705748030599], [-76.62114234309891, 35.86643827677321], [-76.68428458740999, 35.818001027252976], [-76.63800926538156, 35.77859714692286]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.57486912424334, 35.82705748030599], [-76.51172912004859, 35.875487601463284], [-76.55800023780218, 35.91484530357332], [-76.62114234309891, 35.86643827677321], [-76.57486912424334, 35.82705748030599]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.51172912004859, 35.875487601463284], [-76.44858930090442, 35.92387988089409], [-76.49485831992044, 35.96321447621817], [-76.55800023780218, 35.91484530357332], [-76.51172912004859, 35.875487601463284]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.44858930090442, 35.92387988089409], [-76.38544959555138, 35.97224996728335], [-76.43171651711545, 36.011561448811015], [-76.49485831992044, 35.96321447621817], [-76.44858930090442, 35.92387988089409]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.38544959555138, 35.97224996728335], [-76.32231005843327, 36.020588093599116], [-76.36857488431303, 36.05987645146578], [-76.43171651711545, 36.011561448811015], [-76.38544959555138, 35.97224996728335]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.32231005843327, 36.020588093599116], [-76.25917072694637, 36.068889852005015], [-76.30543345885161, 36.10815507573727], [-76.36857488431303, 36.05987645146578], [-76.32231005843327, 36.020588093599116]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.25917072694637, 36.068889852005015], [-76.19603152652803, 36.11716932972509], [-76.24229216538845, 36.156411413176144], [-76.30543345885161, 36.10815507573727], [-76.25917072694637, 36.068889852005015]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6B00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.19603152652803, 36.11716932972509], [-76.13289253050591, 36.16541508429038], [-76.17915107758935, 36.20463401847548], [-76.24229216538845, 36.156411413176144], [-76.19603152652803, 36.11716932972509]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.13289253050591, 36.16541508429038], [-76.06975376067672, 36.2136259557721], [-76.11601021692675, 36.252821732180536], [-76.17915107758935, 36.20463401847548], [-76.13289253050591, 36.16541508429038]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.06975376067672, 36.2136259557721], [-76.00661514070298, 36.26181445756341], [-76.05286950659718, 36.300987070992406], [-76.11601021692675, 36.252821732180536], [-76.06975376067672, 36.2136259557721]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.00661514070298, 36.26181445756341], [-75.94347676654587, 36.30996745739925], [-75.98972904263019, 36.34911690001566], [-76.05286950659718, 36.300987070992406], [-76.00661514070298, 36.26181445756341]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.94347676654587, 36.30996745739925], [-75.88033863878519, 36.35808707014198], [-75.92658882514588, 36.397213335388116], [-75.98972904263019, 36.34911690001566], [-75.94347676654587, 36.30996745739925]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.88033863878519, 36.35808707014198], [-75.81720068118103, 36.406184222736805], [-75.86344877774646, 36.44528730643533], [-75.92658882514588, 36.397213335388116], [-75.88033863878519, 36.35808707014198]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.81720068118103, 36.406184222736805], [-75.75406301643167, 36.45424407836198], [-75.8003090227794, 36.49332397412374], [-75.86344877774646, 36.44528730643533], [-75.81720068118103, 36.406184222736805]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.75406301643167, 36.45424407836198], [-75.69092561754948, 36.502272054255855], [-75.73716953283972, 36.541328757448134], [-75.8003090227794, 36.49332397412374], [-75.75406301643167, 36.45424407836198]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69092561754948, 36.502272054255855], [-75.62778841062506, 36.55027747801134], [-75.67403023413948, 36.58931098556397], [-75.73716953283972, 36.541328757448134], [-75.69092561754948, 36.502272054255855]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0054FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62778841062506, 36.55027747801134], [-75.56465154953153, 36.598243793070985], [-75.61089127960979, 36.63725410035097], [-75.67403023413948, 36.58931098556397], [-75.62778841062506, 36.55027747801134]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56465154953153, 36.598243793070985], [-75.50151497264284, 36.64617974738563], [-75.547752607474, 36.68516685163764], [-75.61089127960979, 36.63725410035097], [-75.56465154953153, 36.598243793070985]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00BCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.50151497264284, 36.64617974738563], [-75.4383786109807, 36.69409305597001], [-75.48461414910285, 36.733056955312655], [-75.547752607474, 36.68516685163764], [-75.50151497264284, 36.64617974738563]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0CF4EA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4383786109807, 36.69409305597001], [-75.37524265433882, 36.741965426920885], [-75.42147609256259, 36.78090611880805], [-75.48461414910285, 36.733056955312655], [-75.4383786109807, 36.69409305597001]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37524265433882, 36.741965426920885], [-75.31210699868893, 36.789808968030165], [-75.35833833421141, 36.828726451516175], [-75.42147609256259, 36.78090611880805], [-75.37524265433882, 36.741965426920885]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.31210699868893, 36.789808968030165], [-75.24897158295155, 36.83762976815839], [-75.29520081347144, 36.87652404263161], [-75.35833833421141, 36.828726451516175], [-75.31210699868893, 36.789808968030165]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.24897158295155, 36.83762976815839], [-75.18583663786109, 36.88540778400626], [-75.23206375834859, 36.92427884935587], [-75.29520081347144, 36.87652404263161], [-75.24897158295155, 36.83762976815839]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.18583663786109, 36.88540778400626], [-75.12270200857338, 36.93315851315906], [-75.16892701523786, 36.97200637016076], [-75.23206375834859, 36.92427884935587], [-75.18583663786109, 36.88540778400626]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.50514357753008, 35.185623470748], [-77.4420000824906, 35.234440114046066], [-77.48830067023985, 35.274101526974235], [-77.55144630908538, 35.22530777403895], [-77.50514357753008, 35.185623470748]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.4420000824906, 35.234440114046066], [-77.37885663769187, 35.28323497610046], [-77.42515508309184, 35.32287348882649], [-77.48830067023985, 35.274101526974235], [-77.4420000824906, 35.234440114046066]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.37885663769187, 35.28323497610046], [-77.31571324681005, 35.33200646316164], [-77.36200955142405, 35.371622065126225], [-77.42515508309184, 35.32287348882649], [-77.37885663769187, 35.28323497610046]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.31571324681005, 35.33200646316164], [-77.25256996709237, 35.38073430254926], [-77.29886413389758, 35.42032697463093], [-77.36200955142405, 35.371622065126225], [-77.31571324681005, 35.33200646316164]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.25256996709237, 35.38073430254926], [-77.18942674817366, 35.42944027848731], [-77.23571877867116, 35.46901001139784], [-77.29886413389758, 35.42032697463093], [-77.25256996709237, 35.38073430254926]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18942674817366, 35.42944027848731], [-77.12628359942346, 35.47812118786161], [-77.17257349533513, 35.51766797097818], [-77.23571877867116, 35.46901001139784], [-77.18942674817366, 35.42944027848731]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.12628359942346, 35.47812118786161], [-77.06314058004477, 35.5267598813943], [-77.10942834425364, 35.56628369745921], [-77.17257349533513, 35.51766797097818], [-77.12628359942346, 35.47812118786161]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.06314058004477, 35.5267598813943], [-76.99999763314173, 35.575376628644], [-77.0462832671219, 35.614877468980005], [-77.10942834425364, 35.56628369745921], [-77.06314058004477, 35.5267598813943]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.99999763314173, 35.575376628644], [-76.93685477573864, 35.62396660444149], [-76.98313828128308, 35.663444458524964], [-77.0462832671219, 35.614877468980005], [-76.99999763314173, 35.575376628644]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.93685477573864, 35.62396660444149], [-76.87371206656664, 35.672515807335266], [-76.91999344631367, 35.71197065980933], [-76.98313828128308, 35.663444458524964], [-76.93685477573864, 35.62396660444149]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.87371206656664, 35.672515807335266], [-76.81056944276023, 35.72104298032811], [-76.85684869807953, 35.76047482319142], [-76.91999344631367, 35.71197065980933], [-76.87371206656664, 35.672515807335266]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.81056944276023, 35.72104298032811], [-76.74742693126723, 35.76954166328562], [-76.79370406390994, 35.808950486298], [-76.85684869807953, 35.76047482319142], [-76.81056944276023, 35.72104298032811]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.74742693126723, 35.76954166328562], [-76.68428458740999, 35.818001027252976], [-76.73055959962598, 35.85738681698973], [-76.79370406390994, 35.808950486298], [-76.74742693126723, 35.76954166328562]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.68428458740999, 35.818001027252976], [-76.62114234309891, 35.86643827677321], [-76.66741523607118, 35.905801025978086], [-76.73055959962598, 35.85738681698973], [-76.68428458740999, 35.818001027252976]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62114234309891, 35.86643827677321], [-76.55800023780218, 35.91484530357332], [-76.60427101310107, 35.954185002495684], [-76.66741523607118, 35.905801025978086], [-76.62114234309891, 35.86643827677321]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.55800023780218, 35.91484530357332], [-76.49485831992044, 35.96321447621817], [-76.5411269792744, 36.002531113388045], [-76.60427101310107, 35.954185002495684], [-76.55800023780218, 35.91484530357332]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.49485831992044, 35.96321447621817], [-76.43171651711545, 36.011561448811015], [-76.47798306143463, 36.05085501778984], [-76.5411269792744, 36.002531113388045], [-76.49485831992044, 35.96321447621817]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.43171651711545, 36.011561448811015], [-76.36857488431303, 36.05987645146578], [-76.41483931482237, 36.09914694322037], [-76.47798306143463, 36.05085501778984], [-76.43171651711545, 36.011561448811015]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6000\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.36857488431303, 36.05987645146578], [-76.30543345885161, 36.10815507573727], [-76.35169577663922, 36.1474024807633], [-76.41483931482237, 36.09914694322037], [-76.36857488431303, 36.05987645146578]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF6700\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.30543345885161, 36.10815507573727], [-76.24229216538845, 36.156411413176144], [-76.28855237100254, 36.19563572592785], [-76.35169577663922, 36.1474024807633], [-76.30543345885161, 36.10815507573727]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.24229216538845, 36.156411413176144], [-76.17915107758935, 36.20463401847548], [-76.2254091717195, 36.243835230886546], [-76.28855237100254, 36.19563572592785], [-76.24229216538845, 36.156411413176144]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.17915107758935, 36.20463401847548], [-76.11601021692675, 36.252821732180536], [-76.16226619991886, 36.29199983670921], [-76.2254091717195, 36.243835230886546], [-76.17915107758935, 36.20463401847548]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.11601021692675, 36.252821732180536], [-76.05286950659718, 36.300987070992406], [-76.09912337854628, 36.340142063062785], [-76.16226619991886, 36.29199983670921], [-76.11601021692675, 36.252821732180536]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.05286950659718, 36.300987070992406], [-75.98972904263019, 36.34911690001566], [-76.03598080347639, 36.38824877279858], [-76.09912337854628, 36.340142063062785], [-76.05286950659718, 36.300987070992406]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.98972904263019, 36.34911690001566], [-75.92658882514588, 36.397213335388116], [-75.97283847441, 36.436322083285475], [-76.03598080347639, 36.38824877279858], [-75.98972904263019, 36.34911690001566]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.92658882514588, 36.397213335388116], [-75.86344877774646, 36.44528730643533], [-75.90969631497818, 36.484372925919224], [-75.97283847441, 36.436322083285475], [-75.92658882514588, 36.397213335388116]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.86344877774646, 36.44528730643533], [-75.8003090227794, 36.49332397412374], [-75.84655444693158, 36.53238645989272], [-75.90969631497818, 36.484372925919224], [-75.86344877774646, 36.44528730643533]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.8003090227794, 36.49332397412374], [-75.73716953283972, 36.541328757448134], [-75.7834128425464, 36.58036810581142], [-75.84655444693158, 36.53238645989272], [-75.8003090227794, 36.49332397412374]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.73716953283972, 36.541328757448134], [-75.67403023413948, 36.58931098556397], [-75.72027142831243, 36.62832719412041], [-75.7834128425464, 36.58036810581142], [-75.73716953283972, 36.541328757448134]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00DCFE\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.67403023413948, 36.58931098556397], [-75.61089127960979, 36.63725410035097], [-75.65713035595486, 36.67624716563667], [-75.72027142831243, 36.62832719412041], [-75.67403023413948, 36.58931098556397]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61089127960979, 36.63725410035097], [-75.547752607474, 36.68516685163764], [-75.59398956369893, 36.72413677181433], [-75.65713035595486, 36.67624716563667], [-75.61089127960979, 36.63725410035097]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.547752607474, 36.68516685163764], [-75.48461414910285, 36.733056955312655], [-75.53084898338918, 36.77200372918472], [-75.59398956369893, 36.72413677181433], [-75.547752607474, 36.68516685163764]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E0FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48461414910285, 36.733056955312655], [-75.42147609256259, 36.78090611880805], [-75.46770880108849, 36.81982974507743], [-75.53084898338918, 36.77200372918472], [-75.48461414910285, 36.733056955312655]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.42147609256259, 36.78090611880805], [-75.35833833421141, 36.828726451516175], [-75.40456891374188, 36.86762693012322], [-75.46770880108849, 36.81982974507743], [-75.42147609256259, 36.78090611880805]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35833833421141, 36.828726451516175], [-75.29520081347144, 36.87652404263161], [-75.34142926136651, 36.91540137366454], [-75.40456891374188, 36.86762693012322], [-75.35833833421141, 36.828726451516175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0CF4EA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29520081347144, 36.87652404263161], [-75.23206375834859, 36.92427884935587], [-75.27829006895871, 36.96313303402812], [-75.34142926136651, 36.91540137366454], [-75.29520081347144, 36.87652404263161]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#22FFD4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.23206375834859, 36.92427884935587], [-75.16892701523786, 36.97200637016076], [-75.21515118439228, 37.01083741009778], [-75.27829006895871, 36.96313303402812], [-75.23206375834859, 36.92427884935587]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.55144630908538, 35.22530777403895], [-77.48830067023985, 35.274101526974235], [-77.53460110082489, 35.313744365678346], [-77.59774889408942, 35.26497346804498], [-77.55144630908538, 35.22530777403895]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.48830067023985, 35.274101526974235], [-77.42515508309184, 35.32287348882649], [-77.47145336046066, 35.36249346274701], [-77.53460110082489, 35.313744365678346], [-77.48830067023985, 35.274101526974235]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.42515508309184, 35.32287348882649], [-77.36200955142405, 35.371622065126225], [-77.4083056768675, 35.411219164087676], [-77.47145336046066, 35.36249346274701], [-77.42515508309184, 35.32287348882649]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.36200955142405, 35.371622065126225], [-77.29886413389758, 35.42032697463093], [-77.3451581098545, 35.45990118027472], [-77.4083056768675, 35.411219164087676], [-77.36200955142405, 35.371622065126225]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.29886413389758, 35.42032697463093], [-77.23571877867116, 35.46901001139784], [-77.28201060636042, 35.50856131483839], [-77.3451581098545, 35.45990118027472], [-77.29886413389758, 35.42032697463093]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.23571877867116, 35.46901001139784], [-77.17257349533513, 35.51766797097818], [-77.21886317615393, 35.55719636205616], [-77.28201060636042, 35.50856131483839], [-77.23571877867116, 35.46901001139784]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.17257349533513, 35.51766797097818], [-77.10942834425364, 35.56628369745921], [-77.15571588051424, 35.60578915973858], [-77.21886317615393, 35.55719636205616], [-77.17257349533513, 35.51766797097818]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.10942834425364, 35.56628369745921], [-77.0462832671219, 35.614877468980005], [-77.09256865999198, 35.65435999422799], [-77.15571588051424, 35.60578915973858], [-77.10942834425364, 35.56628369745921]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.0462832671219, 35.614877468980005], [-76.98313828128308, 35.663444458524964], [-77.02942153217998, 35.70290403676377], [-77.09256865999198, 35.65435999422799], [-77.0462832671219, 35.614877468980005]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.98313828128308, 35.663444458524964], [-76.91999344631367, 35.71197065980933], [-76.96627455728492, 35.75140727654939], [-77.02942153217998, 35.70290403676377], [-76.98313828128308, 35.663444458524964]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.91999344631367, 35.71197065980933], [-76.85684869807953, 35.76047482319142], [-76.90312767016881, 35.79988847091446], [-76.96627455728492, 35.75140727654939], [-76.91999344631367, 35.71197065980933]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.85684869807953, 35.76047482319142], [-76.79370406390994, 35.808950486298], [-76.83998089844425, 35.84834115539376], [-76.90312767016881, 35.79988847091446], [-76.85684869807953, 35.76047482319142]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.79370406390994, 35.808950486298], [-76.73055959962598, 35.85738681698973], [-76.77683429825653, 35.896754494934115], [-76.83998089844425, 35.84834115539376], [-76.79370406390994, 35.808950486298]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73055959962598, 35.85738681698973], [-76.66741523607118, 35.905801025978086], [-76.71368779963998, 35.9451457060331], [-76.77683429825653, 35.896754494934115], [-76.73055959962598, 35.85738681698973]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.66741523607118, 35.905801025978086], [-76.60427101310107, 35.954185002495684], [-76.65054144270982, 35.99350667562559], [-76.71368779963998, 35.9451457060331], [-76.66741523607118, 35.905801025978086]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.60427101310107, 35.954185002495684], [-76.5411269792744, 36.002531113388045], [-76.58739527605621, 36.04182976904501], [-76.65054144270982, 35.99350667562559], [-76.60427101310107, 35.954185002495684]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4A00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.5411269792744, 36.002531113388045], [-76.47798306143463, 36.05085501778984], [-76.52424922594831, 36.090130650085406], [-76.58739527605621, 36.04182976904501], [-76.5411269792744, 36.002531113388045]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF5900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.47798306143463, 36.05085501778984], [-76.41483931482237, 36.09914694322037], [-76.4611033477849, 36.13839954392129], [-76.52424922594831, 36.090130650085406], [-76.47798306143463, 36.05085501778984]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.41483931482237, 36.09914694322037], [-76.35169577663922, 36.1474024807633], [-76.39795767855705, 36.18663204129808], [-76.4611033477849, 36.13839954392129], [-76.41483931482237, 36.09914694322037]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.35169577663922, 36.1474024807633], [-76.28855237100254, 36.19563572592785], [-76.33481214206688, 36.23484224132945], [-76.39795767855705, 36.18663204129808], [-76.35169577663922, 36.1474024807633]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.28855237100254, 36.19563572592785], [-76.2254091717195, 36.243835230886546], [-76.2716668120792, 36.28301869397306], [-76.33481214206688, 36.23484224132945], [-76.28855237100254, 36.19563572592785]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.2254091717195, 36.243835230886546], [-76.16226619991886, 36.29199983670921], [-76.20852170936078, 36.331160240872464], [-76.2716668120792, 36.28301869397306], [-76.2254091717195, 36.243835230886546]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.16226619991886, 36.29199983670921], [-76.09912337854628, 36.340142063062785], [-76.14537675680785, 36.37927940433094], [-76.20852170936078, 36.331160240872464], [-76.16226619991886, 36.29199983670921]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.09912337854628, 36.340142063062785], [-76.03598080347639, 36.38824877279858], [-76.0822320499314, 36.427363045310216], [-76.14537675680785, 36.37927940433094], [-76.09912337854628, 36.340142063062785]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.03598080347639, 36.38824877279858], [-75.97283847441, 36.436322083285475], [-76.01908758805102, 36.47541328236783], [-76.0822320499314, 36.427363045310216], [-76.03598080347639, 36.38824877279858]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.97283847441, 36.436322083285475], [-75.90969631497818, 36.484372925919224], [-75.95594329500122, 36.52344104867082], [-76.01908758805102, 36.47541328236783], [-75.97283847441, 36.436322083285475]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.90969631497818, 36.484372925919224], [-75.84655444693158, 36.53238645989272], [-75.89279929170628, 36.57143150206147], [-75.95594329500122, 36.52344104867082], [-75.90969631497818, 36.484372925919224]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.84655444693158, 36.53238645989272], [-75.7834128425464, 36.58036810581142], [-75.82965555021585, 36.61939006461569], [-75.89279929170628, 36.57143150206147], [-75.84655444693158, 36.53238645989272]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7834128425464, 36.58036810581142], [-75.72027142831243, 36.62832719412041], [-75.76651199744332, 36.667326067804915], [-75.82965555021585, 36.61939006461569], [-75.7834128425464, 36.58036810581142]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72027142831243, 36.62832719412041], [-75.65713035595486, 36.67624716563667], [-75.70336878366224, 36.71522295186645], [-75.76651199744332, 36.667326067804915], [-75.72027142831243, 36.62832719412041]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.65713035595486, 36.67624716563667], [-75.59398956369893, 36.72413677181433], [-75.6402258472423, 36.763089469637166], [-75.70336878366224, 36.71522295186645], [-75.65713035595486, 36.67624716563667]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E4F7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59398956369893, 36.72413677181433], [-75.53084898338918, 36.77200372918472], [-75.57708312061825, 36.81093333806754], [-75.6402258472423, 36.763089469637166], [-75.59398956369893, 36.72413677181433]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#009CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53084898338918, 36.77200372918472], [-75.46770880108849, 36.81982974507743], [-75.51394078759328, 36.85873626492841], [-75.57708312061825, 36.81093333806754], [-75.53084898338918, 36.77200372918472]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46770880108849, 36.81982974507743], [-75.40456891374188, 36.86762693012322], [-75.45079874588602, 36.90651036173949], [-75.51394078759328, 36.85873626492841], [-75.46770880108849, 36.81982974507743]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40456891374188, 36.86762693012322], [-75.34142926136651, 36.91540137366454], [-75.38765693619564, 36.95426171781112], [-75.45079874588602, 36.90651036173949], [-75.40456891374188, 36.86762693012322]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34142926136651, 36.91540137366454], [-75.27829006895871, 36.96313303402812], [-75.32451558024871, 37.00197029319949], [-75.38765693619564, 36.95426171781112], [-75.34142926136651, 36.91540137366454]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.27829006895871, 36.96313303402812], [-75.21515118439228, 37.01083741009778], [-75.2613745276208, 37.04965158674174], [-75.32451558024871, 37.00197029319949], [-75.27829006895871, 36.96313303402812]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1CFFDA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.59774889408942, 35.26497346804498], [-77.53460110082489, 35.313744365678346], [-77.5809013704966, 35.353368614141715], [-77.64405132886142, 35.304620537173555], [-77.59774889408942, 35.26497346804498]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.53460110082489, 35.313744365678346], [-77.47145336046066, 35.36249346274701], [-77.51775146599726, 35.402094881406555], [-77.5809013704966, 35.353368614141715], [-77.53460110082489, 35.313744365678346]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.47145336046066, 35.36249346274701], [-77.4083056768675, 35.411219164087676], [-77.45460161930478, 35.45079774313611], [-77.51775146599726, 35.402094881406555], [-77.47145336046066, 35.36249346274701]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.4083056768675, 35.411219164087676], [-77.3451581098545, 35.45990118027472], [-77.3914518911276, 35.49945690208523], [-77.45460161930478, 35.45079774313611], [-77.4083056768675, 35.411219164087676]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3451581098545, 35.45990118027472], [-77.28201060636042, 35.50856131483839], [-77.3283022274241, 35.54809417091178], [-77.3914518911276, 35.49945690208523], [-77.3451581098545, 35.45990118027472]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.28201060636042, 35.50856131483839], [-77.21886317615393, 35.55719636205616], [-77.26515263810153, 35.596706342677905], [-77.3283022274241, 35.54809417091178], [-77.28201060636042, 35.50856131483839]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.21886317615393, 35.55719636205616], [-77.15571588051424, 35.60578915973858], [-77.20200318512376, 35.64527624926119], [-77.26515263810153, 35.596706342677905], [-77.21886317615393, 35.55719636205616]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.15571588051424, 35.60578915973858], [-77.09256865999198, 35.65435999422799], [-77.13885380814448, 35.69382418484544], [-77.20200318512376, 35.64527624926119], [-77.15571588051424, 35.60578915973858]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.09256865999198, 35.65435999422799], [-77.02942153217998, 35.70290403676377], [-77.07570452494117, 35.74234531902238], [-77.13885380814448, 35.69382418484544], [-77.09256865999198, 35.65435999422799]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.02942153217998, 35.70290403676377], [-76.96627455728492, 35.75140727654939], [-77.0125553961496, 35.790825636792604], [-77.07570452494117, 35.74234531902238], [-77.02942153217998, 35.70290403676377]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.96627455728492, 35.75140727654939], [-76.90312767016881, 35.79988847091446], [-76.94940635587555, 35.839283902088056], [-77.0125553961496, 35.790825636792604], [-76.96627455728492, 35.75140727654939]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.90312767016881, 35.79988847091446], [-76.83998089844425, 35.84834115539376], [-76.88625743192323, 35.88771364849269], [-76.94940635587555, 35.839283902088056], [-76.90312767016881, 35.79988847091446]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.83998089844425, 35.84834115539376], [-76.77683429825653, 35.896754494934115], [-76.82310868059884, 35.93610403829983], [-76.88625743192323, 35.88771364849269], [-76.83998089844425, 35.84834115539376]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.77683429825653, 35.896754494934115], [-76.71368779963998, 35.9451457060331], [-76.75996003136848, 35.98447229342587], [-76.82310868059884, 35.93610403829983], [-76.77683429825653, 35.896754494934115]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.71368779963998, 35.9451457060331], [-76.65054144270982, 35.99350667562559], [-76.69681152448784, 36.03281029869701], [-76.75996003136848, 35.98447229342587], [-76.71368779963998, 35.9451457060331]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.65054144270982, 35.99350667562559], [-76.58739527605621, 36.04182976904501], [-76.63366320846009, 36.08111041813418], [-76.69681152448784, 36.03281029869701], [-76.65054144270982, 35.99350667562559]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF4600\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.58739527605621, 36.04182976904501], [-76.52424922594831, 36.090130650085406], [-76.5705150092082, 36.12938831983316], [-76.63366320846009, 36.08111041813418], [-76.58739527605621, 36.04182976904501]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52424922594831, 36.090130650085406], [-76.4611033477849, 36.13839954392129], [-76.50736698214278, 36.17763422686418], [-76.5705150092082, 36.12938831983316], [-76.52424922594831, 36.090130650085406]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.4611033477849, 36.13839954392129], [-76.39795767855705, 36.18663204129808], [-76.44421916397557, 36.22584372976253], [-76.50736698214278, 36.17763422686418], [-76.4611033477849, 36.13839954392129]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.39795767855705, 36.18663204129808], [-76.33481214206688, 36.23484224132945], [-76.3810714784037, 36.27403093090561], [-76.44421916397557, 36.22584372976253], [-76.39795767855705, 36.18663204129808]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.33481214206688, 36.23484224132945], [-76.2716668120792, 36.28301869397306], [-76.31792399897762, 36.322184378330775], [-76.3810714784037, 36.27403093090561], [-76.33481214206688, 36.23484224132945]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.2716668120792, 36.28301869397306], [-76.20852170936078, 36.331160240872464], [-76.25477674608554, 36.37030291430297], [-76.31792399897762, 36.322184378330775], [-76.2716668120792, 36.28301869397306]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.20852170936078, 36.331160240872464], [-76.14537675680785, 36.37927940433094], [-76.19162964276231, 36.41839906344453], [-76.25477674608554, 36.37030291430297], [-76.20852170936078, 36.331160240872464]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.14537675680785, 36.37927940433094], [-76.0822320499314, 36.427363045310216], [-76.12848278396059, 36.46645968517822], [-76.19162964276231, 36.41839906344453], [-76.14537675680785, 36.37927940433094]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.0822320499314, 36.427363045310216], [-76.01908758805102, 36.47541328236783], [-76.0653361686545, 36.514486899209786], [-76.12848278396059, 36.46645968517822], [-76.0822320499314, 36.427363045310216]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.01908758805102, 36.47541328236783], [-75.95594329500122, 36.52344104867082], [-76.00218972104511, 36.562491640189364], [-76.0653361686545, 36.514486899209786], [-76.01908758805102, 36.47541328236783]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.95594329500122, 36.52344104867082], [-75.89279929170628, 36.57143150206147], [-75.93904356101633, 36.61045906501683], [-76.00218972104511, 36.562491640189364], [-75.95594329500122, 36.52344104867082]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.89279929170628, 36.57143150206147], [-75.82965555021585, 36.61939006461569], [-75.87589766047776, 36.6583945971037], [-75.93904356101633, 36.61045906501683], [-75.89279929170628, 36.57143150206147]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.82965555021585, 36.61939006461569], [-75.76651199744332, 36.667326067804915], [-75.81275194690245, 36.70630756869366], [-75.87589766047776, 36.6583945971037], [-75.82965555021585, 36.61939006461569]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000CC\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.76651199744332, 36.667326067804915], [-75.70336878366224, 36.71522295186645], [-75.74960656888376, 36.75418141991105], [-75.81275194690245, 36.70630756869366], [-75.76651199744332, 36.667326067804915]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.70336878366224, 36.71522295186645], [-75.6402258472423, 36.763089469637166], [-75.68646146506902, 36.80202490474119], [-75.74960656888376, 36.75418141991105], [-75.70336878366224, 36.71522295186645]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6402258472423, 36.763089469637166], [-75.57708312061825, 36.81093333806754], [-75.62331656859136, 36.849845740338026], [-75.68646146506902, 36.80202490474119], [-75.6402258472423, 36.763089469637166]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0080FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.57708312061825, 36.81093333806754], [-75.51394078759328, 36.85873626492841], [-75.56017206075686, 36.89762563543915], [-75.62331656859136, 36.849845740338026], [-75.57708312061825, 36.81093333806754]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0094FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.51394078759328, 36.85873626492841], [-75.45079874588602, 36.90651036173949], [-75.49702784023168, 36.94537670211591], [-75.56017206075686, 36.89762563543915], [-75.51394078759328, 36.85873626492841]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.45079874588602, 36.90651036173949], [-75.38765693619564, 36.95426171781112], [-75.43388384847776, 36.99310502947262], [-75.49702784023168, 36.94537670211591], [-75.45079874588602, 36.90651036173949]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38765693619564, 36.95426171781112], [-75.32451558024871, 37.00197029319949], [-75.37074030371183, 37.0407905798795], [-75.43388384847776, 36.99310502947262], [-75.38765693619564, 36.95426171781112]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32451558024871, 37.00197029319949], [-75.2613745276208, 37.04965158674174], [-75.307597057418, 37.08844885168371], [-75.37074030371183, 37.0407905798795], [-75.32451558024871, 37.00197029319949]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.64405132886142, 35.304620537173555], [-77.5809013704966, 35.353368614141715], [-77.62720147623735, 35.39297425534926], [-77.69035361042054, 35.34424896488381], [-77.64405132886142, 35.304620537173555]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.5809013704966, 35.353368614141715], [-77.51775146599726, 35.402094881406555], [-77.5640493966625, 35.4416777273019], [-77.62720147623735, 35.39297425534926], [-77.5809013704966, 35.353368614141715]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.51775146599726, 35.402094881406555], [-77.45460161930478, 35.45079774313611], [-77.50089737569172, 35.49035778426518], [-77.5640493966625, 35.4416777273019], [-77.51775146599726, 35.402094881406555]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.45460161930478, 35.45079774313611], [-77.3914518911276, 35.49945690208523], [-77.43774547470025, 35.538994121523515], [-77.50089737569172, 35.49035778426518], [-77.45460161930478, 35.45079774313611]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3914518911276, 35.49945690208523], [-77.3283022274241, 35.54809417091178], [-77.37459363889015, 35.587608560530946], [-77.43774547470025, 35.538994121523515], [-77.3914518911276, 35.49945690208523]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3283022274241, 35.54809417091178], [-77.26515263810153, 35.596706342677905], [-77.31144187827, 35.636197893190285], [-77.37459363889015, 35.587608560530946], [-77.3283022274241, 35.54809417091178]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.26515263810153, 35.596706342677905], [-77.20200318512376, 35.64527624926119], [-77.24829025527303, 35.68474494577645], [-77.31144187827, 35.636197893190285], [-77.26515263810153, 35.596706342677905]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.20200318512376, 35.64527624926119], [-77.13885380814448, 35.69382418484544], [-77.18513870888746, 35.7332700199674], [-77.24829025527303, 35.68474494577645], [-77.20200318512376, 35.64527624926119]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.13885380814448, 35.69382418484544], [-77.07570452494117, 35.74234531902238], [-77.12198725701478, 35.78176828380061], [-77.18513870888746, 35.7332700199674], [-77.13885380814448, 35.69382418484544]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07570452494117, 35.74234531902238], [-77.0125553961496, 35.790825636792604], [-77.05883596053152, 35.83022571837078], [-77.12198725701478, 35.78176828380061], [-77.07570452494117, 35.74234531902238]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.0125553961496, 35.790825636792604], [-76.94940635587555, 35.839283902088056], [-76.99568475301912, 35.87866109385782], [-77.05883596053152, 35.83022571837078], [-77.0125553961496, 35.790825636792604]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.94940635587555, 35.839283902088056], [-76.88625743192323, 35.88771364849269], [-76.93253366238743, 35.927067942030575], [-76.99568475301912, 35.87866109385782], [-76.94940635587555, 35.839283902088056]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.88625743192323, 35.88771364849269], [-76.82310868059884, 35.93610403829983], [-76.86938274495112, 35.97543542277931], [-76.93253366238743, 35.927067942030575], [-76.88625743192323, 35.88771364849269]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.82310868059884, 35.93610403829983], [-76.75996003136848, 35.98447229342587], [-76.8062319298334, 36.02378076308625], [-76.86938274495112, 35.97543542277931], [-76.82310868059884, 35.93610403829983]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75996003136848, 35.98447229342587], [-76.69681152448784, 36.03281029869701], [-76.74308125731886, 36.07209584585084], [-76.8062319298334, 36.02378076308625], [-76.75996003136848, 35.98447229342587]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.69681152448784, 36.03281029869701], [-76.63366320846009, 36.08111041813418], [-76.67993077571313, 36.12037303397378], [-76.74308125731886, 36.07209584585084], [-76.69681152448784, 36.03281029869701]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.63366320846009, 36.08111041813418], [-76.5705150092082, 36.12938831983316], [-76.6167804108063, 36.16862799950857], [-76.67993077571313, 36.12037303397378], [-76.63366320846009, 36.08111041813418]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5705150092082, 36.12938831983316], [-76.50736698214278, 36.17763422686418], [-76.55363021788419, 36.21685096365265], [-76.6167804108063, 36.16862799950857], [-76.5705150092082, 36.12938831983316]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.50736698214278, 36.17763422686418], [-76.44421916397557, 36.22584372976253], [-76.49048023331487, 36.2650375168549], [-76.55363021788419, 36.21685096365265], [-76.50736698214278, 36.17763422686418]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.44421916397557, 36.22584372976253], [-76.3810714784037, 36.27403093090561], [-76.42733038088699, 36.31320176442857], [-76.49048023331487, 36.2650375168549], [-76.44421916397557, 36.22584372976253]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.3810714784037, 36.27403093090561], [-76.31792399897762, 36.322184378330775], [-76.3641807337763, 36.36133225277442], [-76.42733038088699, 36.31320176442857], [-76.3810714784037, 36.27403093090561]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.31792399897762, 36.322184378330775], [-76.25477674608554, 36.37030291430297], [-76.30103131197706, 36.409427824825066], [-76.3641807337763, 36.36133225277442], [-76.31792399897762, 36.322184378330775]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.25477674608554, 36.37030291430297], [-76.19162964276231, 36.41839906344453], [-76.23788203883838, 36.45750100721633], [-76.30103131197706, 36.409427824825066], [-76.25477674608554, 36.37030291430297]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.19162964276231, 36.41839906344453], [-76.12848278396059, 36.46645968517822], [-76.17473300857306, 36.50553865817], [-76.23788203883838, 36.45750100721633], [-76.19162964276231, 36.41839906344453]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.12848278396059, 36.46645968517822], [-76.0653361686545, 36.514486899209786], [-76.11158421984351, 36.553542898501426], [-76.17473300857306, 36.50553865817], [-76.12848278396059, 36.46645968517822]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.0653361686545, 36.514486899209786], [-76.00218972104511, 36.562491640189364], [-76.04843559736939, 36.601524664066126], [-76.11158421984351, 36.553542898501426], [-76.0653361686545, 36.514486899209786]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.00218972104511, 36.562491640189364], [-75.93904356101633, 36.61045906501683], [-75.9852872597951, 36.649469111215375], [-76.04843559736939, 36.601524664066126], [-76.00218972104511, 36.562491640189364]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.93904356101633, 36.61045906501683], [-75.87589766047776, 36.6583945971037], [-75.92213917897121, 36.69738166456658], [-75.9852872597951, 36.649469111215375], [-75.93904356101633, 36.61045906501683]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.87589766047776, 36.6583945971037], [-75.81275194690245, 36.70630756869366], [-75.85899128305705, 36.74527165689063], [-75.92213917897121, 36.69738166456658], [-75.87589766047776, 36.6583945971037]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000FA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.81275194690245, 36.70630756869366], [-75.74960656888376, 36.75418141991105], [-75.79584371875362, 36.793122528649505], [-75.85899128305705, 36.74527165689063], [-75.81275194690245, 36.70630756869366]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0030FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74960656888376, 36.75418141991105], [-75.68646146506902, 36.80202490474119], [-75.73269642511032, 36.84094303475123], [-75.79584371875362, 36.793122528649505], [-75.74960656888376, 36.75418141991105]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0074FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.68646146506902, 36.80202490474119], [-75.62331656859136, 36.849845740338026], [-75.66954933605922, 36.888740892344906], [-75.73269642511032, 36.84094303475123], [-75.68646146506902, 36.80202490474119]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#009CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.62331656859136, 36.849845740338026], [-75.56017206075686, 36.89762563543915], [-75.6064026301894, 36.936497811642894], [-75.66954933605922, 36.888740892344906], [-75.62331656859136, 36.849845740338026]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00BCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.56017206075686, 36.89762563543915], [-75.49702784023168, 36.94537670211591], [-75.54325620727651, 36.984225904942484], [-75.6064026301894, 36.936497811642894], [-75.56017206075686, 36.89762563543915]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.49702784023168, 36.94537670211591], [-75.43388384847776, 36.99310502947262], [-75.48011000961998, 37.03193126097394], [-75.54325620727651, 36.984225904942484], [-75.49702784023168, 36.94537670211591]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#29FFCD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43388384847776, 36.99310502947262], [-75.37074030371183, 37.0407905798795], [-75.41696425170564, 37.07959384498692], [-75.48011000961998, 37.03193126097394], [-75.43388384847776, 36.99310502947262]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37074030371183, 37.0407905798795], [-75.307597057418, 37.08844885168371], [-75.35381878711787, 37.12722915441034], [-75.41696425170564, 37.07959384498692], [-75.37074030371183, 37.0407905798795]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#32FFC3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.69035361042054, 35.34424896488381], [-77.62720147623735, 35.39297425534926], [-77.67350141571359, 35.432561271332176], [-77.73665573644061, 35.3838587337293], [-77.69035361042054, 35.34424896488381]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.62720147623735, 35.39297425534926], [-77.5640493966625, 35.4416777273019], [-77.61034715012994, 35.48124198192866], [-77.67350141571359, 35.432561271332176], [-77.62720147623735, 35.39297425534926]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.5640493966625, 35.4416777273019], [-77.50089737569172, 35.49035778426518], [-77.5471929437245, 35.52989926842073], [-77.61034715012994, 35.48124198192866], [-77.5640493966625, 35.4416777273019]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.50089737569172, 35.49035778426518], [-77.43774547470025, 35.538994121523515], [-77.48403885832175, 35.578512818957435], [-77.5471929437245, 35.52989926842073], [-77.50089737569172, 35.49035778426518]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.43774547470025, 35.538994121523515], [-77.37459363889015, 35.587608560530946], [-77.42088483857708, 35.62710446347094], [-77.48403885832175, 35.578512818957435], [-77.43774547470025, 35.538994121523515]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.37459363889015, 35.587608560530946], [-77.31144187827, 35.636197893190285], [-77.35773089456569, 35.67567099275861], [-77.42088483857708, 35.62710446347094], [-77.37459363889015, 35.587608560530946]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.31144187827, 35.636197893190285], [-77.24829025527303, 35.68474494577645], [-77.29457708898869, 35.724195227809815], [-77.35773089456569, 35.67567099275861], [-77.31144187827, 35.636197893190285]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.24829025527303, 35.68474494577645], [-77.18513870888746, 35.7332700199674], [-77.23142336038532, 35.77269747746321], [-77.29457708898869, 35.724195227809815], [-77.24829025527303, 35.68474494577645]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18513870888746, 35.7332700199674], [-77.12198725701478, 35.78176828380061], [-77.1682697267243, 35.821172908291885], [-77.23142336038532, 35.77269747746321], [-77.18513870888746, 35.7332700199674]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.12198725701478, 35.78176828380061], [-77.05883596053152, 35.83022571837078], [-77.10511624894718, 35.869607497770005], [-77.1682697267243, 35.821172908291885], [-77.12198725701478, 35.78176828380061]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05883596053152, 35.83022571837078], [-76.99568475301912, 35.87866109385782], [-77.04196286032763, 35.918020021985186], [-77.10511624894718, 35.869607497770005], [-77.05883596053152, 35.83022571837078]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.99568475301912, 35.87866109385782], [-76.93253366238743, 35.927067942030575], [-76.97880958880098, 35.96640401102152], [-77.04196286032763, 35.918020021985186], [-76.99568475301912, 35.87866109385782]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.93253366238743, 35.927067942030575], [-76.86938274495112, 35.97543542277931], [-76.91565649054775, 36.01474862260715], [-76.97880958880098, 35.96640401102152], [-76.93253366238743, 35.927067942030575]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86938274495112, 35.97543542277931], [-76.8062319298334, 36.02378076308625], [-76.85250349455893, 36.063071088450926], [-76.91565649054775, 36.01474862260715], [-76.86938274495112, 35.97543542277931]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8062319298334, 36.02378076308625], [-76.74308125731886, 36.07209584585084], [-76.78935064104397, 36.11136328970053], [-76.85250349455893, 36.063071088450926], [-76.8062319298334, 36.02378076308625]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.74308125731886, 36.07209584585084], [-76.67993077571313, 36.12037303397378], [-76.72619797800769, 36.159617588321495], [-76.78935064104397, 36.11136328970053], [-76.74308125731886, 36.07209584585084]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67993077571313, 36.12037303397378], [-76.6167804108063, 36.16862799950857], [-76.66304543130663, 36.207849659994395], [-76.72619797800769, 36.159617588321495], [-76.67993077571313, 36.12037303397378]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.6167804108063, 36.16862799950857], [-76.55363021788419, 36.21685096365265], [-76.59989305597409, 36.25604972426662], [-76.66304543130663, 36.207849659994395], [-76.6167804108063, 36.16862799950857]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.55363021788419, 36.21685096365265], [-76.49048023331487, 36.2650375168549], [-76.53674088797501, 36.30421337162001], [-76.59989305597409, 36.25604972426662], [-76.55363021788419, 36.21685096365265]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.49048023331487, 36.2650375168549], [-76.42733038088699, 36.31320176442857], [-76.47358885137281, 36.35235470998807], [-76.53674088797501, 36.30421337162001], [-76.49048023331487, 36.2650375168549]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.42733038088699, 36.31320176442857], [-76.3641807337763, 36.36133225277442], [-76.41043701881897, 36.4004622844083], [-76.47358885137281, 36.35235470998807], [-76.42733038088699, 36.31320176442857]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.3641807337763, 36.36133225277442], [-76.30103131197706, 36.409427824825066], [-76.34728540989977, 36.448534938525874], [-76.41043701881897, 36.4004622844083], [-76.3641807337763, 36.36133225277442]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.30103131197706, 36.409427824825066], [-76.23788203883838, 36.45750100721633], [-76.28413394844245, 36.49658520069578], [-76.34728540989977, 36.448534938525874], [-76.30103131197706, 36.409427824825066]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.23788203883838, 36.45750100721633], [-76.17473300857306, 36.50553865817], [-76.22098272775091, 36.54459992826479], [-76.28413394844245, 36.49658520069578], [-76.23788203883838, 36.45750100721633]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.17473300857306, 36.50553865817], [-76.11158421984351, 36.553542898501426], [-76.15783174620762, 36.59258124312083], [-76.22098272775091, 36.54459992826479], [-76.17473300857306, 36.50553865817]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.11158421984351, 36.553542898501426], [-76.04843559736939, 36.601524664066126], [-76.09468092919244, 36.6405400820572], [-76.15783174620762, 36.59258124312083], [-76.11158421984351, 36.553542898501426]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.04843559736939, 36.601524664066126], [-75.9852872597951, 36.649469111215375], [-76.03153039392534, 36.68846160125655], [-76.09468092919244, 36.6405400820572], [-76.04843559736939, 36.601524664066126]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.9852872597951, 36.649469111215375], [-75.92213917897121, 36.69738166456658], [-75.9683801122735, 36.736351226417334], [-76.03153039392534, 36.68846160125655], [-75.9852872597951, 36.649469111215375]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.92213917897121, 36.69738166456658], [-75.85899128305705, 36.74527165689063], [-75.90523001320041, 36.784218290601295], [-75.9683801122735, 36.736351226417334], [-75.92213917897121, 36.69738166456658]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.85899128305705, 36.74527165689063], [-75.79584371875362, 36.793122528649505], [-75.84208024131804, 36.83204623504314], [-75.90523001320041, 36.784218290601295], [-75.85899128305705, 36.74527165689063]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000EC\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.79584371875362, 36.793122528649505], [-75.73269642511032, 36.84094303475123], [-75.77893073619381, 36.87984381535598], [-75.84208024131804, 36.83204623504314], [-75.79584371875362, 36.793122528649505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.73269642511032, 36.84094303475123], [-75.66954933605922, 36.888740892344906], [-75.71578143265194, 36.92761874848305], [-75.77893073619381, 36.87984381535598], [-75.73269642511032, 36.84094303475123]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66954933605922, 36.888740892344906], [-75.6064026301894, 36.936497811642894], [-75.65263250636173, 36.97535274660227], [-75.71578143265194, 36.92761874848305], [-75.66954933605922, 36.888740892344906]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.6064026301894, 36.936497811642894], [-75.54325620727651, 36.984225904942484], [-75.58948385835869, 37.02305792192265], [-75.65263250636173, 36.97535274660227], [-75.6064026301894, 36.936497811642894]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.54325620727651, 36.984225904942484], [-75.48011000961998, 37.03193126097394], [-75.52633543184875, 37.07074036263803], [-75.58948385835869, 37.02305792192265], [-75.54325620727651, 36.984225904942484]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48011000961998, 37.03193126097394], [-75.41696425170564, 37.07959384498692], [-75.46318743738382, 37.1183800374243], [-75.52633543184875, 37.07074036263803], [-75.48011000961998, 37.03193126097394]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#1FFFD7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41696425170564, 37.07959384498692], [-75.35381878711787, 37.12722915441034], [-75.40003973082592, 37.16599244237835], [-75.46318743738382, 37.1183800374243], [-75.41696425170564, 37.07959384498692]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.73665573644061, 35.3838587337293], [-77.67350141571359, 35.432561271332176], [-77.71980118723154, 35.472129643210806], [-77.78295770520764, 35.423449825398876], [-77.73665573644061, 35.3838587337293]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.67350141571359, 35.432561271332176], [-77.61034715012994, 35.48124198192866], [-77.65664472473954, 35.520787625826046], [-77.71980118723154, 35.472129643210806], [-77.67350141571359, 35.432561271332176]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.61034715012994, 35.48124198192866], [-77.5471929437245, 35.52989926842073], [-77.59348832179144, 35.56942217554728], [-77.65664472473954, 35.520787625826046], [-77.61034715012994, 35.48124198192866]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.5471929437245, 35.52989926842073], [-77.48403885832175, 35.578512818957435], [-77.53033204045767, 35.61801297370998], [-77.59348832179144, 35.56942217554728], [-77.5471929437245, 35.52989926842073]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.48403885832175, 35.578512818957435], [-77.42088483857708, 35.62710446347094], [-77.46717582504283, 35.66658185841909], [-77.53033204045767, 35.61801297370998], [-77.48403885832175, 35.578512818957435]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.42088483857708, 35.62710446347094], [-77.35773089456569, 35.67567099275861], [-77.40401968565622, 35.71512561941819], [-77.46717582504283, 35.66658185841909], [-77.42088483857708, 35.62710446347094]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.35773089456569, 35.67567099275861], [-77.29457708898869, 35.724195227809815], [-77.34086368507873, 35.76362707271586], [-77.40401968565622, 35.71512561941819], [-77.35773089456569, 35.67567099275861]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.29457708898869, 35.724195227809815], [-77.23142336038532, 35.77269747746321], [-77.27770776160293, 35.81210653399129], [-77.34086368507873, 35.76362707271586], [-77.29457708898869, 35.724195227809815]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.23142336038532, 35.77269747746321], [-77.1682697267243, 35.821172908291885], [-77.21455193321175, 35.86055916843942], [-77.27770776160293, 35.81210653399129], [-77.23142336038532, 35.77269747746321]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.1682697267243, 35.821172908291885], [-77.10511624894718, 35.869607497770005], [-77.1513962607475, 35.90897095018824], [-77.21455193321175, 35.86055916843942], [-77.1682697267243, 35.821172908291885]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.10511624894718, 35.869607497770005], [-77.04196286032763, 35.918020021985186], [-77.08824067737848, 35.95736066090613], [-77.1513962607475, 35.90897095018824], [-77.10511624894718, 35.869607497770005]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.04196286032763, 35.918020021985186], [-76.97880958880098, 35.96640401102152], [-77.02508521099067, 36.005721829117846], [-77.08824067737848, 35.95736066090613], [-77.04196286032763, 35.918020021985186]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.97880958880098, 35.96640401102152], [-76.91565649054775, 36.01474862260715], [-76.96192991749743, 36.05404361062121], [-77.02508521099067, 36.005721829117846], [-76.97880958880098, 35.96640401102152]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.91565649054775, 36.01474862260715], [-76.85250349455893, 36.063071088450926], [-76.89877472595428, 36.1023432415256], [-76.96192991749743, 36.05404361062121], [-76.91565649054775, 36.01474862260715]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.85250349455893, 36.063071088450926], [-76.78935064104397, 36.11136328970053], [-76.83561967639824, 36.150612601395245], [-76.89877472595428, 36.1023432415256], [-76.85250349455893, 36.063071088450926]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.78935064104397, 36.11136328970053], [-76.72619797800769, 36.159617588321495], [-76.77246481643729, 36.19884405143884], [-76.83561967639824, 36.150612601395245], [-76.78935064104397, 36.11136328970053]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.72619797800769, 36.159617588321495], [-76.66304543130663, 36.207849659994395], [-76.70931007218036, 36.24705327064588], [-76.77246481643729, 36.19884405143884], [-76.72619797800769, 36.159617588321495]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.66304543130663, 36.207849659994395], [-76.59989305597409, 36.25604972426662], [-76.64615549828936, 36.29523047712823], [-76.70931007218036, 36.24705327064588], [-76.66304543130663, 36.207849659994395]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.59989305597409, 36.25604972426662], [-76.53674088797501, 36.30421337162001], [-76.5830011302705, 36.34337126151577], [-76.64615549828936, 36.29523047712823], [-76.59989305597409, 36.25604972426662]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.53674088797501, 36.30421337162001], [-76.47358885137281, 36.35235470998807], [-76.51984689263307, 36.39148973405863], [-76.5830011302705, 36.34337126151577], [-76.53674088797501, 36.30421337162001]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.47358885137281, 36.35235470998807], [-76.41043701881897, 36.4004622844083], [-76.45669285736501, 36.43957443869428], [-76.51984689263307, 36.39148973405863], [-76.47358885137281, 36.35235470998807]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.41043701881897, 36.4004622844083], [-76.34728540989977, 36.448534938525874], [-76.39353904363182, 36.48762421982392], [-76.45669285736501, 36.43957443869428], [-76.41043701881897, 36.4004622844083]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.34728540989977, 36.448534938525874], [-76.28413394844245, 36.49658520069578], [-76.33038537589151, 36.53565160723835], [-76.39353904363182, 36.48762421982392], [-76.34728540989977, 36.448534938525874]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.28413394844245, 36.49658520069578], [-76.22098272775091, 36.54459992826479], [-76.267231946382, 36.58364345772343], [-76.33038537589151, 36.53565160723835], [-76.28413394844245, 36.49658520069578]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.22098272775091, 36.54459992826479], [-76.15783174620762, 36.59258124312083], [-76.20407875323562, 36.631601894204394], [-76.267231946382, 36.58364345772343], [-76.22098272775091, 36.54459992826479]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.15783174620762, 36.59258124312083], [-76.09468092919244, 36.6405400820572], [-76.14092572262433, 36.67953785415431], [-76.20407875323562, 36.631601894204394], [-76.15783174620762, 36.59258124312083]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.09468092919244, 36.6405400820572], [-76.03153039392534, 36.68846160125655], [-76.07777297017198, 36.72743649395378], [-76.14092572262433, 36.67953785415431], [-76.09468092919244, 36.6405400820572]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.03153039392534, 36.68846160125655], [-75.9683801122735, 36.736351226417334], [-76.01462046783313, 36.77530324026223], [-76.07777297017198, 36.72743649395378], [-76.03153039392534, 36.68846160125655]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.9683801122735, 36.736351226417334], [-75.90523001320041, 36.784218290601295], [-75.9514681454848, 36.823147426204315], [-76.01462046783313, 36.77530324026223], [-75.9683801122735, 36.736351226417334]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.90523001320041, 36.784218290601295], [-75.84208024131804, 36.83204623504314], [-75.88831614546821, 36.870952494207465], [-75.9514681454848, 36.823147426204315], [-75.90523001320041, 36.784218290601295]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0000FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.84208024131804, 36.83204623504314], [-75.77893073619381, 36.87984381535598], [-75.82516440797657, 36.918727200380175], [-75.88831614546821, 36.870952494207465], [-75.84208024131804, 36.83204623504314]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0054FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77893073619381, 36.87984381535598], [-75.71578143265194, 36.92761874848305], [-75.76201286881273, 36.966479261265754], [-75.82516440797657, 36.918727200380175], [-75.77893073619381, 36.87984381535598]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0084FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.71578143265194, 36.92761874848305], [-75.65263250636173, 36.97535274660227], [-75.69886170053933, 37.01419039148184], [-75.76201286881273, 36.966479261265754], [-75.71578143265194, 36.92761874848305]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0070FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.65263250636173, 36.97535274660227], [-75.58948385835869, 37.02305792192265], [-75.63571080559112, 37.06187270284593], [-75.69886170053933, 37.01419039148184], [-75.65263250636173, 36.97535274660227]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00C8FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.58948385835869, 37.02305792192265], [-75.52633543184875, 37.07074036263803], [-75.57256012814432, 37.109532282858694], [-75.63571080559112, 37.06187270284593], [-75.58948385835869, 37.02305792192265]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#18FFDD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52633543184875, 37.07074036263803], [-75.46318743738382, 37.1183800374243], [-75.50940987463117, 37.15714910415078], [-75.57256012814432, 37.109532282858694], [-75.52633543184875, 37.07074036263803]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.46318743738382, 37.1183800374243], [-75.40003973082592, 37.16599244237835], [-75.44625990335479, 37.204738661087404], [-75.50940987463117, 37.15714910415078], [-75.46318743738382, 37.1183800374243]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.78295770520764, 35.423449825398876], [-77.71980118723154, 35.472129643210806], [-77.76610078969529, 35.51167935123574], [-77.82925951557982, 35.46302222075595], [-77.78295770520764, 35.423449825398876]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.71980118723154, 35.472129643210806], [-77.65664472473954, 35.520787625826046], [-77.70294211945412, 35.560314638619744], [-77.76610078969529, 35.51167935123574], [-77.71980118723154, 35.472129643210806]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.65664472473954, 35.520787625826046], [-77.59348832179144, 35.56942217554728], [-77.63978350892782, 35.60892648463267], [-77.70294211945412, 35.560314638619744], [-77.65664472473954, 35.520787625826046]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.59348832179144, 35.56942217554728], [-77.53033204045767, 35.61801297370998], [-77.57662502024286, 35.657494564105505], [-77.63978350892782, 35.60892648463267], [-77.59348832179144, 35.56942217554728]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.53033204045767, 35.61801297370998], [-77.46717582504283, 35.66658185841909], [-77.51346659753607, 35.70604072302274], [-77.57662502024286, 35.657494564105505], [-77.53033204045767, 35.61801297370998]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.46717582504283, 35.66658185841909], [-77.40401968565622, 35.71512561941819], [-77.45030825092051, 35.75456175012381], [-77.51346659753607, 35.70604072302274], [-77.46717582504283, 35.66658185841909]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.40401968565622, 35.71512561941819], [-77.34086368507873, 35.76362707271586], [-77.38715004308119, 35.803040456729335], [-77.45030825092051, 35.75456175012381], [-77.40401968565622, 35.71512561941819]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.34086368507873, 35.76362707271586], [-77.27770776160293, 35.81210653399129], [-77.32399191225295, 35.85149716505146], [-77.38715004308119, 35.803040456729335], [-77.34086368507873, 35.76362707271586]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.27770776160293, 35.81210653399129], [-77.21455193321175, 35.86055916843942], [-77.26083387638346, 35.89992703898996], [-77.32399191225295, 35.85149716505146], [-77.27770776160293, 35.81210653399129]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.21455193321175, 35.86055916843942], [-77.1513962607475, 35.90897095018824], [-77.19767599606261, 35.94831604959036], [-77.26083387638346, 35.89992703898996], [-77.21455193321175, 35.86055916843942]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.1513962607475, 35.90897095018824], [-77.08824067737848, 35.95736066090613], [-77.13451820454222, 35.99668298378769], [-77.19767599606261, 35.94831604959036], [-77.1513962607475, 35.90897095018824]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.08824067737848, 35.95736066090613], [-77.02508521099067, 36.005721829117846], [-77.07136052958904, 36.045021368667875], [-77.13451820454222, 35.99668298378769], [-77.08824067737848, 35.95736066090613]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.02508521099067, 36.005721829117846], [-76.96192991749743, 36.05404361062121], [-77.00820302672531, 36.093320358321414], [-77.07136052958904, 36.045021368667875], [-77.02508521099067, 36.005721829117846]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.96192991749743, 36.05404361062121], [-76.89877472595428, 36.1023432415256], [-76.94504562525466, 36.14159719294485], [-77.00820302672531, 36.093320358321414], [-76.96192991749743, 36.05404361062121]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.89877472595428, 36.1023432415256], [-76.83561967639824, 36.150612601395245], [-76.88188836495111, 36.18984375068082], [-76.94504562525466, 36.14159719294485], [-76.89877472595428, 36.1023432415256]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.83561967639824, 36.150612601395245], [-76.77246481643729, 36.19884405143884], [-76.81873129293625, 36.23805239215289], [-76.88188836495111, 36.18984375068082], [-76.83561967639824, 36.150612601395245]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.77246481643729, 36.19884405143884], [-76.70931007218036, 36.24705327064588], [-76.75557433574494, 36.28623879935354], [-76.81873129293625, 36.23805239215289], [-76.77246481643729, 36.19884405143884]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70931007218036, 36.24705327064588], [-76.64615549828936, 36.29523047712823], [-76.69241754755681, 36.334393189165546], [-76.75557433574494, 36.28623879935354], [-76.70931007218036, 36.24705327064588]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.64615549828936, 36.29523047712823], [-76.5830011302705, 36.34337126151577], [-76.62926096336795, 36.382511152477804], [-76.69241754755681, 36.334393189165546], [-76.64615549828936, 36.29523047712823]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5830011302705, 36.34337126151577], [-76.51984689263307, 36.39148973405863], [-76.56610450829292, 36.43060680156485], [-76.62926096336795, 36.382511152477804], [-76.5830011302705, 36.34337126151577]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.51984689263307, 36.39148973405863], [-76.45669285736501, 36.43957443869428], [-76.50294825352653, 36.47866867951772], [-76.56610450829292, 36.43060680156485], [-76.51984689263307, 36.39148973405863]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.45669285736501, 36.43957443869428], [-76.39353904363182, 36.48762421982392], [-76.43979221780181, 36.52669563153573], [-76.50294825352653, 36.47866867951772], [-76.45669285736501, 36.43957443869428]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.39353904363182, 36.48762421982392], [-76.33038537589151, 36.53565160723835], [-76.37663632634974, 36.57470018857263], [-76.43979221780181, 36.52669563153573], [-76.39353904363182, 36.48762421982392]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.33038537589151, 36.53565160723835], [-76.267231946382, 36.58364345772343], [-76.3134806701963, 36.62266920715608], [-76.37663632634974, 36.57470018857263], [-76.33038537589151, 36.53565160723835]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.267231946382, 36.58364345772343], [-76.20407875323562, 36.631601894204394], [-76.25032524725191, 36.67060481121487], [-76.3134806701963, 36.62266920715608], [-76.267231946382, 36.58364345772343]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.20407875323562, 36.631601894204394], [-76.14092572262433, 36.67953785415431], [-76.18716998460296, 36.718517938653356], [-76.25032524725191, 36.67060481121487], [-76.20407875323562, 36.631601894204394]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.14092572262433, 36.67953785415431], [-76.07777297017198, 36.72743649395378], [-76.1240149961183, 36.76639374640352], [-76.18716998460296, 36.718517938653356], [-76.14092572262433, 36.67953785415431]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.07777297017198, 36.72743649395378], [-76.01462046783313, 36.77530324026223], [-76.06086025390601, 36.81423766197027], [-76.1240149961183, 36.76639374640352], [-76.07777297017198, 36.72743649395378]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.01462046783313, 36.77530324026223], [-75.9514681454848, 36.823147426204315], [-75.99770568885802, 36.862059018321354], [-76.06086025390601, 36.81423766197027], [-76.01462046783313, 36.77530324026223]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9514681454848, 36.823147426204315], [-75.88831614546821, 36.870952494207465], [-75.93455144087694, 36.909841259482306], [-75.99770568885802, 36.862059018321354], [-75.9514681454848, 36.823147426204315]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.88831614546821, 36.870952494207465], [-75.82516440797657, 36.918727200380175], [-75.87139745088216, 36.9575931418549], [-75.93455144087694, 36.909841259482306], [-75.88831614546821, 36.870952494207465]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.82516440797657, 36.918727200380175], [-75.76201286881273, 36.966479261265754], [-75.80824365573487, 37.00532238139534], [-75.87139745088216, 36.9575931418549], [-75.82516440797657, 36.918727200380175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E4F7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.76201286881273, 36.966479261265754], [-75.69886170053933, 37.01419039148184], [-75.74509022471952, 37.05301069561882], [-75.80824365573487, 37.00532238139534], [-75.76201286881273, 36.966479261265754]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00D0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69886170053933, 37.01419039148184], [-75.63571080559112, 37.06187270284593], [-75.68193706179916, 37.10067019565888], [-75.74509022471952, 37.05301069561882], [-75.69886170053933, 37.01419039148184]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.63571080559112, 37.06187270284593], [-75.57256012814432, 37.109532282858694], [-75.61878411217896, 37.14830696817161], [-75.68193706179916, 37.10067019565888], [-75.63571080559112, 37.06187270284593]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#15FFE1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.57256012814432, 37.109532282858694], [-75.50940987463117, 37.15714910415078], [-75.55563157800192, 37.19590099025318], [-75.61878411217896, 37.14830696817161], [-75.57256012814432, 37.109532282858694]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#05ECF1\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.50940987463117, 37.15714910415078], [-75.44625990335479, 37.204738661087404], [-75.49247932016286, 37.24346775415133], [-75.55563157800192, 37.19590099025318], [-75.50940987463117, 37.15714910415078]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#12FCE4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.82925951557982, 35.46302222075595], [-77.76610078969529, 35.51167935123574], [-77.81240022256753, 35.55121037482701], [-77.87556116694994, 35.50257589987596], [-77.82925951557982, 35.46302222075595]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.76610078969529, 35.51167935123574], [-77.70294211945412, 35.560314638619744], [-77.74923933381835, 35.5998229990629], [-77.81240022256753, 35.55121037482701], [-77.76610078969529, 35.51167935123574]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.70294211945412, 35.560314638619744], [-77.63978350892782, 35.60892648463267], [-77.68607850477312, 35.64841217375081], [-77.74923933381835, 35.5998229990629], [-77.70294211945412, 35.560314638619744]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.63978350892782, 35.60892648463267], [-77.57662502024286, 35.657494564105505], [-77.62291779743721, 35.69695756751413], [-77.68607850477312, 35.64841217375081], [-77.63978350892782, 35.60892648463267]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.57662502024286, 35.657494564105505], [-77.51346659753607, 35.70604072302274], [-77.55975715595056, 35.7454810339353], [-77.62291779743721, 35.69695756751413], [-77.57662502024286, 35.657494564105505]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.51346659753607, 35.70604072302274], [-77.45030825092051, 35.75456175012381], [-77.49659659040167, 35.79397936079732], [-77.55975715595056, 35.7454810339353], [-77.51346659753607, 35.70604072302274]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.45030825092051, 35.75456175012381], [-77.38715004308119, 35.803040456729335], [-77.43343616321575, 35.842435355014146], [-77.49659659040167, 35.79397936079732], [-77.45030825092051, 35.75456175012381]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.38715004308119, 35.803040456729335], [-77.32399191225295, 35.85149716505146], [-77.37027581274629, 35.890869345035505], [-77.43343616321575, 35.842435355014146], [-77.38715004308119, 35.803040456729335]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.32399191225295, 35.85149716505146], [-77.26083387638346, 35.89992703898996], [-77.3071155568595, 35.939276493545655], [-77.37027581274629, 35.890869345035505], [-77.32399191225295, 35.85149716505146]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.26083387638346, 35.89992703898996], [-77.19767599606261, 35.94831604959036], [-77.24395545574995, 35.987642768761255], [-77.3071155568595, 35.939276493545655], [-77.26083387638346, 35.89992703898996]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.19767599606261, 35.94831604959036], [-77.13451820454222, 35.99668298378769], [-77.18079544292938, 36.03598696258214], [-77.24395545574995, 35.987642768761255], [-77.19767599606261, 35.94831604959036]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.13451820454222, 35.99668298378769], [-77.07136052958904, 36.045021368667875], [-77.11763554598018, 36.0843026007713], [-77.18079544292938, 36.03598696258214], [-77.13451820454222, 35.99668298378769]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07136052958904, 36.045021368667875], [-77.00820302672531, 36.093320358321414], [-77.05447581991791, 36.13257883592641], [-77.11763554598018, 36.0843026007713], [-77.07136052958904, 36.045021368667875]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.00820302672531, 36.093320358321414], [-76.94504562525466, 36.14159719294485], [-76.99131619446558, 36.1808329120299], [-77.05447581991791, 36.13257883592641], [-77.00820302672531, 36.093320358321414]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.94504562525466, 36.14159719294485], [-76.88188836495111, 36.18984375068082], [-76.92815670904977, 36.229056705958584], [-76.99131619446558, 36.1808329120299], [-76.94504562525466, 36.14159719294485]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.88188836495111, 36.18984375068082], [-76.81873129293625, 36.23805239215289], [-76.86499741022244, 36.2772425779161], [-76.92815670904977, 36.229056705958584], [-76.88188836495111, 36.18984375068082]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.81873129293625, 36.23805239215289], [-76.75557433574494, 36.28623879935354], [-76.80183822510608, 36.32540621260382], [-76.86499741022244, 36.2772425779161], [-76.81873129293625, 36.23805239215289]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75557433574494, 36.28623879935354], [-76.69241754755681, 36.334393189165546], [-76.73867920729498, 36.37353782587406], [-76.80183822510608, 36.32540621260382], [-76.75557433574494, 36.28623879935354]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.69241754755681, 36.334393189165546], [-76.62926096336795, 36.382511152477804], [-76.67552039122738, 36.421633008981686], [-76.73867920729498, 36.37353782587406], [-76.69241754755681, 36.334393189165546]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62926096336795, 36.382511152477804], [-76.56610450829292, 36.43060680156485], [-76.61236170277148, 36.46970587594454], [-76.67552039122738, 36.421633008981686], [-76.62926096336795, 36.382511152477804]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.56610450829292, 36.43060680156485], [-76.50294825352653, 36.47866867951772], [-76.54920321220862, 36.51774496925135], [-76.61236170277148, 36.46970587594454], [-76.56610450829292, 36.43060680156485]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.50294825352653, 36.47866867951772], [-76.43979221780181, 36.52669563153573], [-76.48604493782895, 36.56574913494035], [-76.54920321220862, 36.51774496925135], [-76.50294825352653, 36.47866867951772]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.43979221780181, 36.52669563153573], [-76.37663632634974, 36.57470018857263], [-76.42288680576836, 36.61373090486546], [-76.48604493782895, 36.56574913494035], [-76.43979221780181, 36.52669563153573]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.37663632634974, 36.57470018857263], [-76.3134806701963, 36.62266920715608], [-76.35972890570565, 36.66167713558792], [-76.42288680576836, 36.61373090486546], [-76.37663632634974, 36.57470018857263]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.3134806701963, 36.62266920715608], [-76.25032524725191, 36.67060481121487], [-76.2965712353559, 36.70958995200777], [-76.35972890570565, 36.66167713558792], [-76.3134806701963, 36.62266920715608]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.25032524725191, 36.67060481121487], [-76.18716998460296, 36.718517938653356], [-76.23341372283362, 36.757480292221196], [-76.2965712353559, 36.70958995200777], [-76.25032524725191, 36.67060481121487]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.18716998460296, 36.718517938653356], [-76.1240149961183, 36.76639374640352], [-76.17025648010564, 36.80533331405242], [-76.23341372283362, 36.757480292221196], [-76.18716998460296, 36.718517938653356]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.1240149961183, 36.76639374640352], [-76.06086025390601, 36.81423766197027], [-76.10709947949518, 36.85315444574066], [-76.17025648010564, 36.80533331405242], [-76.1240149961183, 36.76639374640352]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.06086025390601, 36.81423766197027], [-75.99770568885802, 36.862059018321354], [-76.04394265300289, 36.90095301988497], [-76.10709947949518, 36.85315444574066], [-76.06086025390601, 36.81423766197027]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.99770568885802, 36.862059018321354], [-75.93455144087694, 36.909841259482306], [-75.9807861379384, 36.94871248250003], [-76.04394265300289, 36.90095301988497], [-75.99770568885802, 36.862059018321354]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.93455144087694, 36.909841259482306], [-75.87139745088216, 36.9575931418549], [-75.91762987604031, 36.99644159008618], [-75.9807861379384, 36.94871248250003], [-75.93455144087694, 36.909841259482306]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0098FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.87139745088216, 36.9575931418549], [-75.80824365573487, 37.00532238139534], [-75.85447380530184, 37.04414805783193], [-75.91762987604031, 36.99644159008618], [-75.87139745088216, 36.9575931418549]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#39FFBD\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80824365573487, 37.00532238139534], [-75.74509022471952, 37.05301069561882], [-75.79131809157195, 37.09181360659214], [-75.85447380530184, 37.04414805783193], [-75.80824365573487, 37.00532238139534]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#56FFA0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74509022471952, 37.05301069561882], [-75.68193706179916, 37.10067019565888], [-75.72816264046133, 37.139450346534254], [-75.79131809157195, 37.09181360659214], [-75.74509022471952, 37.05301069561882]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#32FFC3\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.68193706179916, 37.10067019565888], [-75.61878411217896, 37.14830696817161], [-75.66500739825783, 37.187064363323685], [-75.72816264046133, 37.139450346534254], [-75.68193706179916, 37.10067019565888]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.61878411217896, 37.14830696817161], [-75.55563157800192, 37.19590099025318], [-75.60185256266126, 37.23463563901555], [-75.66500739825783, 37.187064363323685], [-75.61878411217896, 37.14830696817161]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.55563157800192, 37.19590099025318], [-75.49247932016286, 37.24346775415133], [-75.53869799729632, 37.282179663367714], [-75.60185256266126, 37.23463563901555], [-75.55563157800192, 37.19590099025318]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#25FFD0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.87556116694994, 35.50257589987596], [-77.81240022256753, 35.55121037482701], [-77.85869948583246, 35.590722692611884], [-77.9218626592099, 35.54211084208233], [-77.87556116694994, 35.50257589987596]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.81240022256753, 35.55121037482701], [-77.74923933381835, 35.5998229990629], [-77.79553636792002, 35.63931268507561], [-77.85869948583246, 35.590722692611884], [-77.81240022256753, 35.55121037482701]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.74923933381835, 35.5998229990629], [-77.68607850477312, 35.64841217375081], [-77.73237330953096, 35.68787922010283], [-77.79553636792002, 35.63931268507561], [-77.74923933381835, 35.5998229990629]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.68607850477312, 35.64841217375081], [-77.62291779743721, 35.69695756751413], [-77.66921037238424, 35.73640196039451], [-77.73237330953096, 35.68787922010283], [-77.68607850477312, 35.64841217375081]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.62291779743721, 35.69695756751413], [-77.55975715595056, 35.7454810339353], [-77.60604750078232, 35.784902766860554], [-77.66921037238424, 35.73640196039451], [-77.62291779743721, 35.69695756751413]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.55975715595056, 35.7454810339353], [-77.49659659040167, 35.79397936079732], [-77.54288470476274, 35.83337842637335], [-77.60604750078232, 35.784902766860554], [-77.55975715595056, 35.7454810339353]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.49659659040167, 35.79397936079732], [-77.43343616321575, 35.842435355014146], [-77.47972204633814, 35.88181174171056], [-77.54288470476274, 35.83337842637335], [-77.49659659040167, 35.79397936079732]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.43343616321575, 35.842435355014146], [-77.37027581274629, 35.890869345035505], [-77.41655946414514, 35.93022304727569], [-77.47972204633814, 35.88181174171056], [-77.43343616321575, 35.842435355014146]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.37027581274629, 35.890869345035505], [-77.3071155568595, 35.939276493545655], [-77.35339697592549, 35.97860750461403], [-77.41655946414514, 35.93022304727569], [-77.37027581274629, 35.890869345035505]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3071155568595, 35.939276493545655], [-77.24395545574995, 35.987642768761255], [-77.29023464134539, 36.026951079357154], [-77.35339697592549, 35.97860750461403], [-77.3071155568595, 35.939276493545655]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.24395545574995, 35.987642768761255], [-77.18079544292938, 36.03598696258214], [-77.22707239434078, 36.07527256807967], [-77.29023464134539, 36.026951079357154], [-77.24395545574995, 35.987642768761255]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18079544292938, 36.03598696258214], [-77.11763554598018, 36.0843026007713], [-77.16391026224899, 36.123565495333], [-77.22707239434078, 36.07527256807967], [-77.18079544292938, 36.03598696258214]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.11763554598018, 36.0843026007713], [-77.05447581991791, 36.13257883592641], [-77.10074829947158, 36.17181901242836], [-77.16391026224899, 36.123565495333], [-77.11763554598018, 36.0843026007713]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05447581991791, 36.13257883592641], [-76.99131619446558, 36.1808329120299], [-77.03758643631035, 36.22005036684452], [-77.10074829947158, 36.17181901242836], [-77.05447581991791, 36.13257883592641]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.99131619446558, 36.1808329120299], [-76.92815670904977, 36.229056705958584], [-76.97442471176596, 36.26825143434217], [-77.03758643631035, 36.22005036684452], [-76.99131619446558, 36.1808329120299]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.92815670904977, 36.229056705958584], [-76.86499741022244, 36.2772425779161], [-76.91126317174346, 36.31641457486421], [-76.97442471176596, 36.26825143434217], [-76.92815670904977, 36.229056705958584]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86499741022244, 36.2772425779161], [-76.80183822510608, 36.32540621260382], [-76.84810174410347, 36.36455547553791], [-76.91126317174346, 36.31641457486421], [-76.86499741022244, 36.2772425779161]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.80183822510608, 36.32540621260382], [-76.73867920729498, 36.37353782587406], [-76.78494048175907, 36.41266435137632], [-76.84810174410347, 36.36455547553791], [-76.80183822510608, 36.32540621260382]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73867920729498, 36.37353782587406], [-76.67552039122738, 36.421633008981686], [-76.72177941854665, 36.460736794103454], [-76.78494048175907, 36.41266435137632], [-76.73867920729498, 36.37353782587406]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67552039122738, 36.421633008981686], [-76.61236170277148, 36.46970587594454], [-76.65861848122599, 36.508786919209896], [-76.72177941854665, 36.460736794103454], [-76.67552039122738, 36.421633008981686]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.61236170277148, 36.46970587594454], [-76.54920321220862, 36.51774496925135], [-76.59545773905327, 36.55680326881718], [-76.65861848122599, 36.508786919209896], [-76.61236170277148, 36.46970587594454]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.54920321220862, 36.51774496925135], [-76.48604493782895, 36.56574913494035], [-76.53229720986636, 36.60478468984185], [-76.59545773905327, 36.55680326881718], [-76.54920321220862, 36.51774496925135]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.48604493782895, 36.56574913494035], [-76.42288680576836, 36.61373090486546], [-76.46913682082868, 36.652743714785196], [-76.53229720986636, 36.60478468984185], [-76.48604493782895, 36.56574913494035]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.42288680576836, 36.61373090486546], [-76.35972890570565, 36.66167713558792], [-76.40597666014669, 36.700667200522965], [-76.46913682082868, 36.652743714785196], [-76.42288680576836, 36.61373090486546]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.35972890570565, 36.66167713558792], [-76.2965712353559, 36.70958995200777], [-76.34281672536505, 36.74855727289557], [-76.40597666014669, 36.700667200522965], [-76.35972890570565, 36.66167713558792]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.2965712353559, 36.70958995200777], [-76.23341372283362, 36.757480292221196], [-76.27965694573165, 36.79642486996046], [-76.34281672536505, 36.74855727289557], [-76.2965712353559, 36.70958995200777]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.23341372283362, 36.757480292221196], [-76.17025648010564, 36.80533331405242], [-76.21649743117577, 36.844255150762585], [-76.27965694573165, 36.79642486996046], [-76.23341372283362, 36.757480292221196]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.17025648010564, 36.80533331405242], [-76.10709947949518, 36.85315444574066], [-76.15333815429328, 36.89205354416864], [-76.21649743117577, 36.844255150762585], [-76.17025648010564, 36.80533331405242]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.10709947949518, 36.85315444574066], [-76.04394265300289, 36.90095301988497], [-76.09017904828023, 36.93982938220479], [-76.15333815429328, 36.89205354416864], [-76.10709947949518, 36.85315444574066]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.04394265300289, 36.90095301988497], [-75.9807861379384, 36.94871248250003], [-76.0270202477111, 36.98756611325201], [-76.09017904828023, 36.93982938220479], [-76.04394265300289, 36.90095301988497]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.9807861379384, 36.94871248250003], [-75.91762987604031, 36.99644159008618], [-75.96386169523029, 37.03527249372173], [-76.0270202477111, 36.98756611325201], [-75.9807861379384, 36.94871248250003]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2CFFCA\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.91762987604031, 36.99644159008618], [-75.85447380530184, 37.04414805783193], [-75.90070333003067, 37.08295623786063], [-75.96386169523029, 37.03527249372173], [-75.91762987604031, 36.99644159008618]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#66FF90\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.85447380530184, 37.04414805783193], [-75.79131809157195, 37.09181360659214], [-75.83754531438227, 37.130599070289776], [-75.90070333003067, 37.08295623786063], [-75.85447380530184, 37.04414805783193]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#79FF7D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.79131809157195, 37.09181360659214], [-75.72816264046133, 37.139450346534254], [-75.77438755565329, 37.178213099938645], [-75.83754531438227, 37.130599070289776], [-75.79131809157195, 37.09181360659214]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#5CFF9A\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.72816264046133, 37.139450346534254], [-75.66500739825783, 37.187064363323685], [-75.7112300012635, 37.22580441134096], [-75.77438755565329, 37.178213099938645], [-75.72816264046133, 37.139450346534254]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00CCFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.66500739825783, 37.187064363323685], [-75.60185256266126, 37.23463563901555], [-75.64807284433004, 37.273352991987245], [-75.7112300012635, 37.22580441134096], [-75.66500739825783, 37.187064363323685]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#008CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.60185256266126, 37.23463563901555], [-75.53869799729632, 37.282179663367714], [-75.58491595133411, 37.32087432878616], [-75.64807284433004, 37.273352991987245], [-75.60185256266126, 37.23463563901555]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A0FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.9218626592099, 35.54211084208233], [-77.85869948583246, 35.590722692611884], [-77.90499857996089, 35.63021628246118], [-77.96816399271738, 35.58162702598118], [-77.9218626592099, 35.54211084208233]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.85869948583246, 35.590722692611884], [-77.79553636792002, 35.63931268507561], [-77.8418332223537, 35.67878367378284], [-77.90499857996089, 35.63021628246118], [-77.85869948583246, 35.590722692611884]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.79553636792002, 35.63931268507561], [-77.73237330953096, 35.68787922010283], [-77.77866792393115, 35.727327600056526], [-77.8418332223537, 35.67878367378284], [-77.79553636792002, 35.63931268507561]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.73237330953096, 35.68787922010283], [-77.66921037238424, 35.73640196039451], [-77.71550274597166, 35.77582771833481], [-77.77866792393115, 35.727327600056526], [-77.73237330953096, 35.68787922010283]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.66921037238424, 35.73640196039451], [-77.60604750078232, 35.784902766860554], [-77.6523376330889, 35.82430589659516], [-77.71550274597166, 35.77582771833481], [-77.66921037238424, 35.73640196039451]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.60604750078232, 35.784902766860554], [-77.54288470476274, 35.83337842637335], [-77.58917259524482, 35.872758920843395], [-77.6523376330889, 35.82430589659516], [-77.60604750078232, 35.784902766860554]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.54288470476274, 35.83337842637335], [-77.47972204633814, 35.88181174171056], [-77.52600769389713, 35.92116958998064], [-77.58917259524482, 35.872758920843395], [-77.54288470476274, 35.83337842637335]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.47972204633814, 35.88181174171056], [-77.41655946414514, 35.93022304727569], [-77.46284286811897, 35.969558244091544], [-77.52600769389713, 35.92116958998064], [-77.47972204633814, 35.88181174171056]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.41655946414514, 35.93022304727569], [-77.35339697592549, 35.97860750461403], [-77.39967813548759, 36.017920043656055], [-77.46284286811897, 35.969558244091544], [-77.41655946414514, 35.93022304727569]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.35339697592549, 35.97860750461403], [-77.29023464134539, 36.026951079357154], [-77.33651355501677, 36.066240951954896], [-77.39967813548759, 36.017920043656055], [-77.35339697592549, 35.97860750461403]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.29023464134539, 36.026951079357154], [-77.22707239434078, 36.07527256807967], [-77.27334906121993, 36.114539769958796], [-77.33651355501677, 36.066240951954896], [-77.29023464134539, 36.026951079357154]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.22707239434078, 36.07527256807967], [-77.16391026224899, 36.123565495333], [-77.21018468113294, 36.16281002111471], [-77.27334906121993, 36.114539769958796], [-77.22707239434078, 36.07527256807967]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.16391026224899, 36.123565495333], [-77.10074829947158, 36.17181901242836], [-77.14702046844329, 36.211040855645834], [-77.21018468113294, 36.16281002111471], [-77.16391026224899, 36.123565495333]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.10074829947158, 36.17181901242836], [-77.03758643631035, 36.22005036684452], [-77.08385635418028, 36.25924952424887], [-77.14702046844329, 36.211040855645834], [-77.10074829947158, 36.17181901242836]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.03758643631035, 36.22005036684452], [-76.97442471176596, 36.26825143434217], [-77.02069237684547, 36.3074279017125], [-77.08385635418028, 36.25924952424887], [-77.03758643631035, 36.22005036684452]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.97442471176596, 36.26825143434217], [-76.91126317174346, 36.31641457486421], [-76.95752858162545, 36.35556834787198], [-77.02069237684547, 36.3074279017125], [-76.97442471176596, 36.26825143434217]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.91126317174346, 36.31641457486421], [-76.84810174410347, 36.36455547553791], [-76.89436489725891, 36.40368655200845], [-76.95752858162545, 36.35556834787198], [-76.91126317174346, 36.31641457486421]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.84810174410347, 36.36455547553791], [-76.78494048175907, 36.41266435137632], [-76.83120137588871, 36.451772728479646], [-76.89436489725891, 36.40368655200845], [-76.84810174410347, 36.36455547553791]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.78494048175907, 36.41266435137632], [-76.72177941854665, 36.460736794103454], [-76.7680380507088, 36.499822469578056], [-76.83120137588871, 36.451772728479646], [-76.78494048175907, 36.41266435137632]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.72177941854665, 36.460736794103454], [-76.65861848122599, 36.508786919209896], [-76.70487484949864, 36.547849892006795], [-76.7680380507088, 36.499822469578056], [-76.72177941854665, 36.460736794103454]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.65861848122599, 36.508786919209896], [-76.59545773905327, 36.55680326881718], [-76.64171184038582, 36.5958435377465], [-76.70487484949864, 36.547849892006795], [-76.65861848122599, 36.508786919209896]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.59545773905327, 36.55680326881718], [-76.53229720986636, 36.60478468984185], [-76.5785490407475, 36.643802254630174], [-76.64171184038582, 36.5958435377465], [-76.59545773905327, 36.55680326881718]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.53229720986636, 36.60478468984185], [-76.46913682082868, 36.652743714785196], [-76.5153863788884, 36.69173857556302], [-76.5785490407475, 36.643802254630174], [-76.53229720986636, 36.60478468984185]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.46913682082868, 36.652743714785196], [-76.40597666014669, 36.700667200522965], [-76.45222394142684, 36.73963935800602], [-76.5153863788884, 36.69173857556302], [-76.46913682082868, 36.652743714785196]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.40597666014669, 36.700667200522965], [-76.34281672536505, 36.74855727289557], [-76.38906172576066, 36.787506728710355], [-76.45222394142684, 36.73963935800602], [-76.40597666014669, 36.700667200522965]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.34281672536505, 36.74855727289557], [-76.27965694573165, 36.79642486996046], [-76.32589966236846, 36.83535162547267], [-76.38906172576066, 36.787506728710355], [-76.34281672536505, 36.74855727289557]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.27965694573165, 36.79642486996046], [-76.21649743117577, 36.844255150762585], [-76.26273785901715, 36.883159208875256], [-76.32589966236846, 36.83535162547267], [-76.27965694573165, 36.79642486996046]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.21649743117577, 36.844255150762585], [-76.15333815429328, 36.89205354416864], [-76.19957628862875, 36.930934908309496], [-76.26273785901715, 36.883159208875256], [-76.21649743117577, 36.844255150762585]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.15333815429328, 36.89205354416864], [-76.09017904828023, 36.93982938220479], [-76.13641488567464, 36.978688055031924], [-76.19957628862875, 36.930934908309496], [-76.15333815429328, 36.89205354416864]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.09017904828023, 36.93982938220479], [-76.0270202477111, 36.98756611325201], [-76.07325378186412, 37.026402100153504], [-76.13641488567464, 36.978688055031924], [-76.09017904828023, 36.93982938220479]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C3FF32\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0270202477111, 36.98756611325201], [-75.96386169523029, 37.03527249372173], [-76.01009292082716, 37.07408579981618], [-76.07325378186412, 37.026402100153504], [-76.0270202477111, 36.98756611325201]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.96386169523029, 37.03527249372173], [-75.90070333003067, 37.08295623786063], [-75.94693224301861, 37.121746867156936], [-76.01009292082716, 37.07408579981618], [-75.96386169523029, 37.03527249372173]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#96FF5F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.90070333003067, 37.08295623786063], [-75.83754531438227, 37.130599070289776], [-75.88377190699887, 37.16936703097461], [-75.94693224301861, 37.121746867156936], [-75.90070333003067, 37.08295623786063]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#2FFFC7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.83754531438227, 37.130599070289776], [-75.77438755565329, 37.178213099938645], [-75.82061182199485, 37.21695839869858], [-75.88377190699887, 37.16936703097461], [-75.83754531438227, 37.130599070289776]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#22FFD4\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.77438755565329, 37.178213099938645], [-75.7112300012635, 37.22580441134096], [-75.7574519366031, 37.26452705359489], [-75.82061182199485, 37.21695839869858], [-75.77438755565329, 37.178213099938645]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#008CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7112300012635, 37.22580441134096], [-75.64807284433004, 37.273352991987245], [-75.69429243923244, 37.312052989049405], [-75.7574519366031, 37.26452705359489], [-75.7112300012635, 37.22580441134096]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0028FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.64807284433004, 37.273352991987245], [-75.58491595133411, 37.32087432878616], [-75.63113319933615, 37.35955168877496], [-75.69429243923244, 37.312052989049405], [-75.64807284433004, 37.273352991987245]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0030FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.96816399271738, 35.58162702598118], [-77.90499857996089, 35.63021628246118], [-77.95129750587743, 35.66969112152414], [-78.01446516826446, 35.621124429494564], [-77.96816399271738, 35.58162702598118]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.90499857996089, 35.63021628246118], [-77.8418332223537, 35.67878367378284], [-77.88812989818663, 35.718235941550944], [-77.95129750587743, 35.66969112152414], [-77.90499857996089, 35.63021628246118]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.8418332223537, 35.67878367378284], [-77.77866792393115, 35.727327600056526], [-77.82496234919424, 35.76675728918453], [-77.88812989818663, 35.718235941550944], [-77.8418332223537, 35.67878367378284]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.77866792393115, 35.727327600056526], [-77.71550274597166, 35.77582771833481], [-77.76179491959468, 35.815234816092364], [-77.82496234919424, 35.76675728918453], [-77.77866792393115, 35.727327600056526]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.71550274597166, 35.77582771833481], [-77.6523376330889, 35.82430589659516], [-77.69862755445138, 35.86369039706975], [-77.76179491959468, 35.815234816092364], [-77.71550274597166, 35.77582771833481]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.6523376330889, 35.82430589659516], [-77.58917259524482, 35.872758920843395], [-77.63546026362773, 35.912120817298245], [-77.69862755445138, 35.86369039706975], [-77.6523376330889, 35.82430589659516]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.58917259524482, 35.872758920843395], [-77.52600769389713, 35.92116958998064], [-77.57229310789413, 35.9605088720521], [-77.63546026362773, 35.912120817298245], [-77.58917259524482, 35.872758920843395]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.52600769389713, 35.92116958998064], [-77.46284286811897, 35.969558244091544], [-77.50912602690299, 36.0088749068351], [-77.57229310789413, 35.9605088720521], [-77.52600769389713, 35.92116958998064]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.46284286811897, 35.969558244091544], [-77.39967813548759, 36.017920043656055], [-77.44595903802968, 36.057214081132585], [-77.50912602690299, 36.0088749068351], [-77.46284286811897, 35.969558244091544]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.39967813548759, 36.017920043656055], [-77.33651355501677, 36.066240951954896], [-77.38279219952054, 36.10551235609964], [-77.44595903802968, 36.057214081132585], [-77.39967813548759, 36.017920043656055]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.33651355501677, 36.066240951954896], [-77.27334906121993, 36.114539769958796], [-77.31962544660902, 36.15378853683531], [-77.38279219952054, 36.10551235609964], [-77.33651355501677, 36.066240951954896]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.27334906121993, 36.114539769958796], [-77.21018468113294, 36.16281002111471], [-77.25645880597686, 36.20203614578502], [-77.31962544660902, 36.15378853683531], [-77.27334906121993, 36.114539769958796]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.21018468113294, 36.16281002111471], [-77.14702046844329, 36.211040855645834], [-77.1932923305049, 36.25024433227477], [-77.25645880597686, 36.20203614578502], [-77.21018468113294, 36.16281002111471]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.14702046844329, 36.211040855645834], [-77.08385635418028, 36.25924952424887], [-77.130125952088, 36.298430349951694], [-77.1932923305049, 36.25024433227477], [-77.14702046844329, 36.211040855645834]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.08385635418028, 36.25924952424887], [-77.02069237684547, 36.3074279017125], [-77.06695970866087, 36.346586072770926], [-77.130125952088, 36.298430349951694], [-77.08385635418028, 36.25924952424887]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.02069237684547, 36.3074279017125], [-76.95752858162545, 36.35556834787198], [-77.00379364462518, 36.39470386060744], [-77.06695970866087, 36.346586072770926], [-77.02069237684547, 36.3074279017125]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.95752858162545, 36.35556834787198], [-76.89436489725891, 36.40368655200845], [-76.94062768972782, 36.44279940463471], [-77.00379364462518, 36.39470386060744], [-76.95752858162545, 36.35556834787198]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.89436489725891, 36.40368655200845], [-76.83120137588871, 36.451772728479646], [-76.87746189525897, 36.490862918732034], [-76.94062768972782, 36.44279940463471], [-76.89436489725891, 36.40368655200845]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.83120137588871, 36.451772728479646], [-76.7680380507088, 36.499822469578056], [-76.81429629373261, 36.53888999585614], [-76.87746189525897, 36.490862918732034], [-76.83120137588871, 36.451772728479646]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.7680380507088, 36.499822469578056], [-76.70487484949864, 36.547849892006795], [-76.75113081406685, 36.58689475367236], [-76.81429629373261, 36.53888999585614], [-76.7680380507088, 36.499822469578056]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70487484949864, 36.547849892006795], [-76.64171184038582, 36.5958435377465], [-76.68796552316493, 36.63486573423822], [-76.75113081406685, 36.58689475367236], [-76.70487484949864, 36.547849892006795]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.64171184038582, 36.5958435377465], [-76.5785490407475, 36.643802254630174], [-76.62480043793585, 36.68280178634002], [-76.68796552316493, 36.63486573423822], [-76.64171184038582, 36.5958435377465]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5785490407475, 36.643802254630174], [-76.5153863788884, 36.69173857556302], [-76.56163548793089, 36.73071544305268], [-76.62480043793585, 36.68280178634002], [-76.5785490407475, 36.643802254630174]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5153863788884, 36.69173857556302], [-76.45222394142684, 36.73963935800602], [-76.49847075807355, 36.778593562683014], [-76.56163548793089, 36.73071544305268], [-76.5153863788884, 36.69173857556302]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.45222394142684, 36.73963935800602], [-76.38906172576066, 36.787506728710355], [-76.43530624563697, 36.826438272864664], [-76.49847075807355, 36.778593562683014], [-76.45222394142684, 36.73963935800602]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.38906172576066, 36.787506728710355], [-76.32589966236846, 36.83535162547267], [-76.37214188242041, 36.87426051091968], [-76.43530624563697, 36.826438272864664], [-76.38906172576066, 36.787506728710355]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.32589966236846, 36.83535162547267], [-76.26273785901715, 36.883159208875256], [-76.30897777391367, 36.922045439272694], [-76.37214188242041, 36.87426051091968], [-76.32589966236846, 36.83535162547267]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.26273785901715, 36.883159208875256], [-76.19957628862875, 36.930934908309496], [-76.24581389341462, 36.969798487740945], [-76.30897777391367, 36.922045439272694], [-76.26273785901715, 36.883159208875256]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19957628862875, 36.930934908309496], [-76.13641488567464, 36.978688055031924], [-76.18265017674366, 37.017528986621876], [-76.24581389341462, 36.969798487740945], [-76.19957628862875, 36.930934908309496]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F7F400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.13641488567464, 36.978688055031924], [-76.07325378186412, 37.026402100153504], [-76.11948675262599, 37.06522039010697], [-76.18265017674366, 37.017528986621876], [-76.13641488567464, 36.978688055031924]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#ADFF49\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.07325378186412, 37.026402100153504], [-76.01009292082716, 37.07408579981618], [-76.056323565751, 37.1128814538948], [-76.11948675262599, 37.06522039010697], [-76.07325378186412, 37.026402100153504]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#89FF6C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.01009292082716, 37.07408579981618], [-75.94693224301861, 37.121746867156936], [-75.99316055789241, 37.16051988985089], [-76.056323565751, 37.1128814538948], [-76.01009292082716, 37.07408579981618]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#59FF9D\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.94693224301861, 37.121746867156936], [-75.88377190699887, 37.16936703097461], [-75.92999788378255, 37.20811743134878], [-75.99316055789241, 37.16051988985089], [-75.94693224301861, 37.121746867156936]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#46FFB0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.88377190699887, 37.16936703097461], [-75.82061182199485, 37.21695839869858], [-75.86683545459985, 37.255686184065155], [-75.92999788378255, 37.20811743134878], [-75.88377190699887, 37.16936703097461]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.82061182199485, 37.21695839869858], [-75.7574519366031, 37.26452705359489], [-75.80367322015863, 37.30323222986729], [-75.86683545459985, 37.255686184065155], [-75.82061182199485, 37.21695839869858]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00A4FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.7574519366031, 37.26452705359489], [-75.69429243923244, 37.312052989049405], [-75.74051136404653, 37.35073556848009], [-75.80367322015863, 37.30323222986729], [-75.7574519366031, 37.26452705359489]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#001CFF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.69429243923244, 37.312052989049405], [-75.63113319933615, 37.35955168877496], [-75.67734975879416, 37.39821168008643], [-75.74051136404653, 37.35073556848009], [-75.69429243923244, 37.312052989049405]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0004FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.01446516826446, 35.621124429494564], [-77.95129750587743, 35.66969112152414], [-77.99759626492967, 35.70914718626208], [-78.06076618704826, 35.66060302989255], [-78.01446516826446, 35.621124429494564]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.95129750587743, 35.66969112152414], [-77.88812989818663, 35.718235941550944], [-77.93442639692633, 35.75766946402282], [-77.99759626492967, 35.70914718626208], [-77.95129750587743, 35.66969112152414]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.88812989818663, 35.718235941550944], [-77.82496234919424, 35.76675728918453], [-77.87125658699787, 35.80616826230094], [-77.93442639692633, 35.75766946402282], [-77.88812989818663, 35.718235941550944]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.82496234919424, 35.76675728918453], [-77.76179491959468, 35.815234816092364], [-77.80808689512115, 35.85462322763176], [-77.87125658699787, 35.80616826230094], [-77.82496234919424, 35.76675728918453]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.76179491959468, 35.815234816092364], [-77.69862755445138, 35.86369039706975], [-77.74491726693836, 35.90305624138847], [-77.80808689512115, 35.85462322763176], [-77.76179491959468, 35.815234816092364]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.69862755445138, 35.86369039706975], [-77.63546026362773, 35.912120817298245], [-77.68174771219304, 35.951464087968986], [-77.74491726693836, 35.90305624138847], [-77.69862755445138, 35.86369039706975]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.63546026362773, 35.912120817298245], [-77.57229310789413, 35.9605088720521], [-77.61857829084494, 35.999829559260576], [-77.68174771219304, 35.951464087968986], [-77.63546026362773, 35.912120817298245]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.57229310789413, 35.9605088720521], [-77.50912602690299, 36.0088749068351], [-77.55540894325881, 36.048173005934444], [-77.61857829084494, 35.999829559260576], [-77.57229310789413, 35.9605088720521]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.50912602690299, 36.0088749068351], [-77.44595903802968, 36.057214081132585], [-77.49223968657346, 36.09648958654924], [-77.55540894325881, 36.048173005934444], [-77.50912602690299, 36.0088749068351]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.44595903802968, 36.057214081132585], [-77.38279219952054, 36.10551235609964], [-77.4290705781607, 36.14476526035094], [-77.49223968657346, 36.09648958654924], [-77.44595903802968, 36.057214081132585]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.38279219952054, 36.10551235609964], [-77.31962544660902, 36.15378853683531], [-77.36590155410663, 36.19301883630953], [-77.4290705781607, 36.14476526035094], [-77.38279219952054, 36.10551235609964]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.31962544660902, 36.15378853683531], [-77.25645880597686, 36.20203614578502], [-77.30273264069017, 36.24124383596784], [-77.36590155410663, 36.19301883630953], [-77.31962544660902, 36.15378853683531]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.25645880597686, 36.20203614578502], [-77.1932923305049, 36.25024433227477], [-77.23956388989944, 36.289429407938144], [-77.30273264069017, 36.24124383596784], [-77.25645880597686, 36.20203614578502]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.1932923305049, 36.25024433227477], [-77.130125952088, 36.298430349951694], [-77.17639523462324, 36.33759280856088], [-77.23956388989944, 36.289429407938144], [-77.1932923305049, 36.25024433227477]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.130125952088, 36.298430349951694], [-77.06695970866087, 36.346586072770926], [-77.11322671216652, 36.3857259110908], [-77.17639523462324, 36.33759280856088], [-77.130125952088, 36.298430349951694]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.06695970866087, 36.346586072770926], [-77.00379364462518, 36.39470386060744], [-77.05005836608466, 36.43382107558434], [-77.11322671216652, 36.3857259110908], [-77.06695970866087, 36.346586072770926]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.00379364462518, 36.39470386060744], [-76.94062768972782, 36.44279940463471], [-76.98689012725343, 36.48189399485587], [-77.05005836608466, 36.43382107558434], [-77.00379364462518, 36.39470386060744]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.94062768972782, 36.44279940463471], [-76.87746189525897, 36.490862918732034], [-76.92372204603397, 36.529934882476454], [-76.98689012725343, 36.48189399485587], [-76.94062768972782, 36.44279940463471]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.87746189525897, 36.490862918732034], [-76.81429629373261, 36.53888999585614], [-76.8605541542259, 36.57793933215913], [-76.92372204603397, 36.529934882476454], [-76.87746189525897, 36.490862918732034]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.81429629373261, 36.53888999585614], [-76.75113081406685, 36.58689475367236], [-76.79738638199608, 36.62592146229084], [-76.8605541542259, 36.57793933215913], [-76.81429629373261, 36.53888999585614]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75113081406685, 36.58689475367236], [-76.68796552316493, 36.63486573423822], [-76.73421879493506, 36.67386981521548], [-76.79738638199608, 36.62592146229084], [-76.75113081406685, 36.58689475367236]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.68796552316493, 36.63486573423822], [-76.62480043793585, 36.68280178634002], [-76.67105140947703, 36.72178324070824], [-76.73421879493506, 36.67386981521548], [-76.68796552316493, 36.63486573423822]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62480043793585, 36.68280178634002], [-76.56163548793089, 36.73071544305268], [-76.60788415651726, 36.769674271788475], [-76.67105140947703, 36.72178324070824], [-76.62480043793585, 36.68280178634002]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.56163548793089, 36.73071544305268], [-76.49847075807355, 36.778593562683014], [-76.54471711918613, 36.81752976785962], [-76.60788415651726, 36.769674271788475], [-76.56163548793089, 36.73071544305268]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.49847075807355, 36.778593562683014], [-76.43530624563697, 36.826438272864664], [-76.48155029465292, 36.8653518574107], [-76.54471711918613, 36.81752976785962], [-76.49847075807355, 36.778593562683014]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.43530624563697, 36.826438272864664], [-76.37214188242041, 36.87426051091968], [-76.41838361612054, 36.91315147708349], [-76.48155029465292, 36.8653518574107], [-76.43530624563697, 36.826438272864664]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.37214188242041, 36.87426051091968], [-76.30897777391367, 36.922045439272694], [-76.35521718669634, 36.96091379143857], [-76.41838361612054, 36.91315147708349], [-76.37214188242041, 36.87426051091968]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.30897777391367, 36.922045439272694], [-76.24581389341462, 36.969798487740945], [-76.29205098010046, 37.00864423062404], [-76.35521718669634, 36.96091379143857], [-76.30897777391367, 36.922045439272694]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.24581389341462, 36.969798487740945], [-76.18265017674366, 37.017528986621876], [-76.22888493356979, 37.056352123795875], [-76.29205098010046, 37.00864423062404], [-76.24581389341462, 36.969798487740945]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F4F802\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.18265017674366, 37.017528986621876], [-76.11948675262599, 37.06522039010697], [-76.16571917273696, 37.10402092856374], [-76.22888493356979, 37.056352123795875], [-76.18265017674366, 37.017528986621876]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FEED00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.11948675262599, 37.06522039010697], [-76.056323565751, 37.1128814538948], [-76.1025536434191, 37.151659400015554], [-76.16571917273696, 37.10402092856374], [-76.11948675262599, 37.06522039010697]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9DFF59\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.056323565751, 37.1128814538948], [-75.99316055789241, 37.16051988985089], [-76.03938828876082, 37.199275248589565], [-76.1025536434191, 37.151659400015554], [-76.056323565751, 37.1128814538948]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#93FF63\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.99316055789241, 37.16051988985089], [-75.92999788378255, 37.20811743134878], [-75.97622325955918, 37.24685021261651], [-76.03938828876082, 37.199275248589565], [-75.99316055789241, 37.16051988985089]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A6FF4F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.92999788378255, 37.20811743134878], [-75.86683545459985, 37.255686184065155], [-75.91305846902928, 37.294396395777206], [-75.97622325955918, 37.24685021261651], [-75.92999788378255, 37.20811743134878]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.86683545459985, 37.255686184065155], [-75.80367322015863, 37.30323222986729], [-75.8498938682402, 37.34191987841378], [-75.91305846902928, 37.294396395777206], [-75.86683545459985, 37.255686184065155]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.80367322015863, 37.30323222986729], [-75.74051136404653, 37.35073556848009], [-75.78672963585792, 37.38940066701808], [-75.8498938682402, 37.34191987841378], [-75.80367322015863, 37.30323222986729]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#00E4F7\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.74051136404653, 37.35073556848009], [-75.67734975879416, 37.39821168008643], [-75.7235656475858, 37.43685423792101], [-75.78672963585792, 37.38940066701808], [-75.74051136404653, 37.35073556848009]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#0064FF\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.06076618704826, 35.66060302989255], [-77.99759626492967, 35.70914718626208], [-78.04389485885903, 35.7485844524808], [-78.10706705064293, 35.700062803824025], [-78.06076618704826, 35.66060302989255]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.99759626492967, 35.70914718626208], [-77.93442639692633, 35.75766946402282], [-77.98072272049035, 35.79708421615184], [-78.04389485885903, 35.7485844524808], [-77.99759626492967, 35.70914718626208]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.93442639692633, 35.75766946402282], [-77.87125658699787, 35.80616826230094], [-77.9175506394453, 35.84556049349674], [-77.98072272049035, 35.79708421615184], [-77.93442639692633, 35.75766946402282]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.87125658699787, 35.80616826230094], [-77.80808689512115, 35.85462322763176], [-77.85437867485886, 35.89399292616169], [-77.9175506394453, 35.84556049349674], [-77.87125658699787, 35.80616826230094]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.80808689512115, 35.85462322763176], [-77.74491726693836, 35.90305624138847], [-77.79120677307212, 35.94240340186716], [-77.85437867485886, 35.89399292616169], [-77.80808689512115, 35.85462322763176]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.74491726693836, 35.90305624138847], [-77.68174771219304, 35.951464087968986], [-77.72803494368893, 35.9907887042665], [-77.79120677307212, 35.94240340186716], [-77.74491726693836, 35.90305624138847]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.68174771219304, 35.951464087968986], [-77.61857829084494, 35.999829559260576], [-77.66486324574387, 36.03913162209049], [-77.72803494368893, 35.9907887042665], [-77.68174771219304, 35.951464087968986]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.61857829084494, 35.999829559260576], [-77.55540894325881, 36.048173005934444], [-77.60169162043769, 36.08745251093584], [-77.66486324574387, 36.03913162209049], [-77.61857829084494, 35.999829559260576]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.55540894325881, 36.048173005934444], [-77.49223968657346, 36.09648958654924], [-77.53852008464042, 36.13574652849984], [-77.60169162043769, 36.08745251093584], [-77.55540894325881, 36.048173005934444]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.49223968657346, 36.09648958654924], [-77.4290705781607, 36.14476526035094], [-77.47534869475007, 36.18399963232733], [-77.53852008464042, 36.13574652849984], [-77.49223968657346, 36.09648958654924]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.4290705781607, 36.14476526035094], [-77.36590155410663, 36.19301883630953], [-77.41217738782854, 36.232230635011994], [-77.47534869475007, 36.18399963232733], [-77.4290705781607, 36.14476526035094]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.36590155410663, 36.19301883630953], [-77.30273264069017, 36.24124383596784], [-77.34900618970667, 36.28043305728917], [-77.41217738782854, 36.232230635011994], [-77.36590155410663, 36.19301883630953]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.30273264069017, 36.24124383596784], [-77.23956388989944, 36.289429407938144], [-77.28583515140028, 36.32859604723371], [-77.34900618970667, 36.28043305728917], [-77.30273264069017, 36.24124383596784]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.23956388989944, 36.289429407938144], [-77.17639523462324, 36.33759280856088], [-77.22266420691122, 36.37673686363233], [-77.28583515140028, 36.32859604723371], [-77.23956388989944, 36.289429407938144]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.17639523462324, 36.33759280856088], [-77.11322671216652, 36.3857259110908], [-77.15949339285639, 36.42484737916739], [-77.22266420691122, 36.37673686363233], [-77.17639523462324, 36.33759280856088]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.11322671216652, 36.3857259110908], [-77.05005836608466, 36.43382107558434], [-77.09632275188827, 36.47291995421304], [-77.15949339285639, 36.42484737916739], [-77.11322671216652, 36.3857259110908]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05005836608466, 36.43382107558434], [-76.98689012725343, 36.48189399485587], [-77.03315221612338, 36.52097028298293], [-77.09632275188827, 36.47291995421304], [-77.05005836608466, 36.43382107558434]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.98689012725343, 36.48189399485587], [-76.92372204603397, 36.529934882476454], [-76.96998183492317, 36.5689885789035], [-77.03315221612338, 36.52097028298293], [-76.98689012725343, 36.48189399485587]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.92372204603397, 36.529934882476454], [-76.8605541542259, 36.57793933215913], [-76.90681163934127, 36.616970436532796], [-76.96998183492317, 36.5689885789035], [-76.92372204603397, 36.529934882476454]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8605541542259, 36.57793933215913], [-76.79738638199608, 36.62592146229084], [-76.84364156089532, 36.66492997474793], [-76.90681163934127, 36.616970436532796], [-76.8605541542259, 36.57793933215913]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.79738638199608, 36.62592146229084], [-76.73421879493506, 36.67386981521548], [-76.78047166378158, 36.71285573638077], [-76.84364156089532, 36.66492997474793], [-76.79738638199608, 36.62592146229084]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.73421879493506, 36.67386981521548], [-76.67105140947703, 36.72178324070824], [-76.71730196395383, 36.76074657222966], [-76.78047166378158, 36.71285573638077], [-76.73421879493506, 36.67386981521548]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67105140947703, 36.72178324070824], [-76.60788415651726, 36.769674271788475], [-76.65413239374116, 36.808615015041724], [-76.71730196395383, 36.76074657222966], [-76.67105140947703, 36.72178324070824]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.60788415651726, 36.769674271788475], [-76.54471711918613, 36.81752976785962], [-76.59096303439047, 36.85644792555842], [-76.65413239374116, 36.808615015041724], [-76.60788415651726, 36.769674271788475]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.54471711918613, 36.81752976785962], [-76.48155029465292, 36.8653518574107], [-76.52779388298681, 36.90424743309816], [-76.59096303439047, 36.85644792555842], [-76.54471711918613, 36.81752976785962]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.48155029465292, 36.8653518574107], [-76.41838361612054, 36.91315147708349], [-76.46462487421304, 36.95202447342452], [-76.52779388298681, 36.90424743309816], [-76.48155029465292, 36.8653518574107]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.41838361612054, 36.91315147708349], [-76.35521718669634, 36.96091379143857], [-76.4014561086979, 36.99976421351677], [-76.46462487421304, 36.95202447342452], [-76.41838361612054, 36.91315147708349]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.35521718669634, 36.96091379143857], [-76.29205098010046, 37.00864423062404], [-76.33828756062667, 37.04747208376253], [-76.4014561086979, 36.99976421351677], [-76.35521718669634, 36.96091379143857]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8C00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.29205098010046, 37.00864423062404], [-76.22888493356979, 37.056352123795875], [-76.27511916871467, 37.095157412000724], [-76.33828756062667, 37.04747208376253], [-76.29205098010046, 37.00864423062404]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E4FF12\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.22888493356979, 37.056352123795875], [-76.16571917273696, 37.10402092856374], [-76.21195105540355, 37.142803659584416], [-76.27511916871467, 37.095157412000724], [-76.22888493356979, 37.056352123795875]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F4F802\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.16571917273696, 37.10402092856374], [-76.1025536434191, 37.151659400015554], [-76.14878316770086, 37.19041958082991], [-76.21195105540355, 37.142803659584416], [-76.16571917273696, 37.10402092856374]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B3FF42\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.1025536434191, 37.151659400015554], [-76.03938828876082, 37.199275248589565], [-76.08561545016956, 37.23801288459816], [-76.14878316770086, 37.19041958082991], [-76.1025536434191, 37.151659400015554]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#93FF63\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.03938828876082, 37.199275248589565], [-75.97622325955918, 37.24685021261651], [-76.02244804957499, 37.285565314545664], [-76.08561545016956, 37.23801288459816], [-76.03938828876082, 37.199275248589565]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B7FF3F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.97622325955918, 37.24685021261651], [-75.91305846902928, 37.294396395777206], [-75.95928088124674, 37.33308897212318], [-76.02244804957499, 37.285565314545664], [-75.97622325955918, 37.24685021261651]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.91305846902928, 37.294396395777206], [-75.8498938682402, 37.34191987841378], [-75.89611389754202, 37.38058993602597], [-75.95928088124674, 37.33308897212318], [-75.91305846902928, 37.294396395777206]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.8498938682402, 37.34191987841378], [-75.78672963585792, 37.38940066701808], [-75.83294727211606, 37.4280482199253], [-75.89611389754202, 37.38058993602597], [-75.8498938682402, 37.34191987841378]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.78672963585792, 37.38940066701808], [-75.7235656475858, 37.43685423792101], [-75.76978088393119, 37.47547929598987], [-75.83294727211606, 37.4280482199253], [-75.78672963585792, 37.38940066701808]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#80FF76\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.10706705064293, 35.700062803824025], [-78.04389485885903, 35.7485844524808], [-78.09019328977348, 35.788002895361885], [-78.15336776097365, 35.739503727346666], [-78.10706705064293, 35.700062803824025]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.04389485885903, 35.7485844524808], [-77.98072272049035, 35.79708421615184], [-78.02701887117777, 35.83648017223462], [-78.09019328977348, 35.788002895361885], [-78.04389485885903, 35.7485844524808]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.98072272049035, 35.79708421615184], [-77.9175506394453, 35.84556049349674], [-77.96384450903567, 35.88493395617397], [-78.02701887117777, 35.83648017223462], [-77.98072272049035, 35.79708421615184]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.9175506394453, 35.84556049349674], [-77.85437867485886, 35.89399292616169], [-77.90067026152485, 35.93334388417049], [-77.96384450903567, 35.88493395617397], [-77.9175506394453, 35.84556049349674]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.85437867485886, 35.89399292616169], [-77.79120677307212, 35.94240340186716], [-77.83749607579692, 35.98173185007037], [-77.90067026152485, 35.93334388417049], [-77.85437867485886, 35.89399292616169]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.79120677307212, 35.94240340186716], [-77.72803494368893, 35.9907887042665], [-77.77432196129757, 36.03009463681988], [-77.83749607579692, 35.98173185007037], [-77.79120677307212, 35.94240340186716]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.72803494368893, 35.9907887042665], [-77.66486324574387, 36.03913162209049], [-77.71114797603005, 36.07841503021464], [-77.77432196129757, 36.03009463681988], [-77.72803494368893, 35.9907887042665]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.66486324574387, 36.03913162209049], [-77.60169162043769, 36.08745251093584], [-77.6479740621459, 36.12671339054463], [-77.71114797603005, 36.07841503021464], [-77.66486324574387, 36.03913162209049]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.60169162043769, 36.08745251093584], [-77.53852008464042, 36.13574652849984], [-77.58480023621648, 36.174984874708436], [-77.6479740621459, 36.12671339054463], [-77.60169162043769, 36.08745251093584]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.53852008464042, 36.13574652849984], [-77.47534869475007, 36.18399963232733], [-77.5216265535739, 36.223215438749556], [-77.58480023621648, 36.174984874708436], [-77.53852008464042, 36.13574652849984]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.47534869475007, 36.18399963232733], [-77.41217738782854, 36.232230635011994], [-77.45845295237037, 36.27142389864788], [-77.5216265535739, 36.223215438749556], [-77.47534869475007, 36.18399963232733]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.41217738782854, 36.232230635011994], [-77.34900618970667, 36.28043305728917], [-77.39527945794671, 36.31960377442261], [-77.45845295237037, 36.27142389864788], [-77.41217738782854, 36.232230635011994]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.34900618970667, 36.28043305728917], [-77.28583515140028, 36.32859604723371], [-77.3321061202726, 36.367744213780604], [-77.39527945794671, 36.31960377442261], [-77.34900618970667, 36.28043305728917]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.28583515140028, 36.32859604723371], [-77.22266420691122, 36.37673686363233], [-77.26893287457357, 36.41586247771753], [-77.3321061202726, 36.367744213780604], [-77.28583515140028, 36.32859604723371]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.22266420691122, 36.37673686363233], [-77.15949339285639, 36.42484737916739], [-77.20575975672452, 36.46395043846632], [-77.26893287457357, 36.41586247771753], [-77.22266420691122, 36.37673686363233]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.15949339285639, 36.42484737916739], [-77.09632275188827, 36.47291995421304], [-77.14258680842269, 36.51200045684987], [-77.20575975672452, 36.46395043846632], [-77.15949339285639, 36.42484737916739]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.09632275188827, 36.47291995421304], [-77.03315221612338, 36.52097028298293], [-77.07941396312906, 36.560028228248946], [-77.14258680842269, 36.51200045684987], [-77.09632275188827, 36.47291995421304]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.03315221612338, 36.52097028298293], [-76.96998183492317, 36.5689885789035], [-77.01624126914015, 36.60802396610259], [-77.07941396312906, 36.560028228248946], [-77.03315221612338, 36.52097028298293]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.96998183492317, 36.5689885789035], [-76.90681163934127, 36.616970436532796], [-76.95306875673472, 36.65598326589914], [-77.01624126914015, 36.60802396610259], [-76.96998183492317, 36.5689885789035]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.90681163934127, 36.616970436532796], [-76.84364156089532, 36.66492997474793], [-76.8898963588754, 36.70392024678357], [-76.95306875673472, 36.65598326589914], [-76.90681163934127, 36.616970436532796]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.84364156089532, 36.66492997474793], [-76.78047166378158, 36.71285573638077], [-76.826724138289, 36.75182345226942], [-76.8898963588754, 36.70392024678357], [-76.84364156089532, 36.66492997474793]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.78047166378158, 36.71285573638077], [-76.71730196395383, 36.76074657222966], [-76.76355211044407, 36.799691734211294], [-76.826724138289, 36.75182345226942], [-76.78047166378158, 36.71285573638077]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.71730196395383, 36.76074657222966], [-76.65413239374116, 36.808615015041724], [-76.70038020918636, 36.84753762487581], [-76.76355211044407, 36.799691734211294], [-76.71730196395383, 36.76074657222966]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.65413239374116, 36.808615015041724], [-76.59096303439047, 36.85644792555842], [-76.63720851379644, 36.895347986574535], [-76.70038020918636, 36.84753762487581], [-76.65413239374116, 36.808615015041724]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.59096303439047, 36.85644792555842], [-76.52779388298681, 36.90424743309816], [-76.57403702129359, 36.943124949430455], [-76.63720851379644, 36.895347986574535], [-76.59096303439047, 36.85644792555842]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52779388298681, 36.90424743309816], [-76.46462487421304, 36.95202447342452], [-76.51086566791075, 36.99087944813861], [-76.57403702129359, 36.943124949430455], [-76.52779388298681, 36.90424743309816]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.46462487421304, 36.95202447342452], [-76.4014561086979, 36.99976421351677], [-76.44769455171019, 37.038596652368895], [-76.51086566791075, 36.99087944813861], [-76.46462487421304, 36.95202447342452]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF7E00\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.4014561086979, 36.99976421351677], [-76.33828756062667, 37.04747208376253], [-76.38452364738211, 37.0862819926608], [-76.44769455171019, 37.038596652368895], [-76.4014561086979, 36.99976421351677]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.33828756062667, 37.04747208376253], [-76.27511916871467, 37.095157412000724], [-76.32135289517704, 37.13394479536728], [-76.38452364738211, 37.0862819926608], [-76.33828756062667, 37.04747208376253]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.27511916871467, 37.095157412000724], [-76.21195105540355, 37.142803659584416], [-76.25818241425625, 37.181568525897774], [-76.32135289517704, 37.13394479536728], [-76.27511916871467, 37.095157412000724]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.21195105540355, 37.142803659584416], [-76.14878316770086, 37.19041958082991], [-76.19501215287559, 37.22916193764223], [-76.25818241425625, 37.181568525897774], [-76.21195105540355, 37.142803659584416]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B7FF3F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.14878316770086, 37.19041958082991], [-76.08561545016956, 37.23801288459816], [-76.13184205705933, 37.27673273773991], [-76.19501215287559, 37.22916193764223], [-76.14878316770086, 37.19041958082991]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#9AFF5C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08561545016956, 37.23801288459816], [-76.02244804957499, 37.285565314545664], [-76.06867226945485, 37.3242626755279], [-76.13184205705933, 37.27673273773991], [-76.08561545016956, 37.23801288459816]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#B3FF42\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.02244804957499, 37.285565314545664], [-75.95928088124674, 37.33308897212318], [-76.00550270757694, 37.37176385000164], [-76.06867226945485, 37.3242626755279], [-76.02244804957499, 37.285565314545664]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C0FF36\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.95928088124674, 37.33308897212318], [-75.89611389754202, 37.38058993602597], [-75.94233332510113, 37.41924233809236], [-76.00550270757694, 37.37176385000164], [-75.95928088124674, 37.33308897212318]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.89611389754202, 37.38058993602597], [-75.83294727211606, 37.4280482199253], [-75.87916429059331, 37.466678161048016], [-75.94233332510113, 37.41924233809236], [-75.89611389754202, 37.38058993602597]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.83294727211606, 37.4280482199253], [-75.76978088393119, 37.47547929598987], [-75.81599548635256, 37.514086786576456], [-75.87916429059331, 37.466678161048016], [-75.83294727211606, 37.4280482199253]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.15336776097365, 35.739503727346666], [-78.09019328977348, 35.788002895361885], [-78.13649156012181, 35.82740248949302], [-78.19966832029215, 35.77892577595566], [-78.15336776097365, 35.739503727346666]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.09019328977348, 35.788002895361885], [-78.02701887117777, 35.83648017223462], [-78.07331485164241, 35.875857305942745], [-78.13649156012181, 35.82740248949302], [-78.09019328977348, 35.788002895361885]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.02701887117777, 35.83648017223462], [-77.96384450903567, 35.88493395617397], [-78.01013819863617, 35.9242886230789], [-78.07331485164241, 35.875857305942745], [-78.02701887117777, 35.83648017223462]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.96384450903567, 35.88493395617397], [-77.90067026152485, 35.93334388417049], [-77.94696165821642, 35.97267607346072], [-78.01013819863617, 35.9242886230789], [-77.96384450903567, 35.88493395617397]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.90067026152485, 35.93334388417049], [-77.83749607579692, 35.98173185007037], [-77.88378517844893, 36.021041556847116], [-77.94696165821642, 35.97267607346072], [-77.90067026152485, 35.93334388417049]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.83749607579692, 35.98173185007037], [-77.77432196129757, 36.03009463681988], [-77.8206087686042, 36.06938185551336], [-77.88378517844893, 36.021041556847116], [-77.83749607579692, 35.98173185007037]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.77432196129757, 36.03009463681988], [-77.71114797603005, 36.07841503021464], [-77.75743248555548, 36.11767975253256], [-77.8206087686042, 36.06938185551336], [-77.77432196129757, 36.03009463681988]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.71114797603005, 36.07841503021464], [-77.6479740621459, 36.12671339054463], [-77.69425627251186, 36.16595561266468], [-77.75743248555548, 36.11767975253256], [-77.71114797603005, 36.07841503021464]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.6479740621459, 36.12671339054463], [-77.58480023621648, 36.174984874708436], [-77.63108014571826, 36.21420459206992], [-77.69425627251186, 36.16595561266468], [-77.6479740621459, 36.12671339054463]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.58480023621648, 36.174984874708436], [-77.5216265535739, 36.223215438749556], [-77.56790415935569, 36.26241264548231], [-77.63108014571826, 36.21420459206992], [-77.58480023621648, 36.174984874708436]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.5216265535739, 36.223215438749556], [-77.45845295237037, 36.27142389864788], [-77.50472825277275, 36.31059859203987], [-77.56790415935569, 36.26241264548231], [-77.5216265535739, 36.223215438749556]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.45845295237037, 36.27142389864788], [-77.39527945794671, 36.31960377442261], [-77.44155245078137, 36.35875595113333], [-77.50472825277275, 36.31059859203987], [-77.45845295237037, 36.27142389864788]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.39527945794671, 36.31960377442261], [-77.3321061202726, 36.367744213780604], [-77.37837680223706, 36.40687387026438], [-77.44155245078137, 36.35875595113333], [-77.39527945794671, 36.31960377442261]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.3321061202726, 36.367744213780604], [-77.26893287457357, 36.41586247771753], [-77.31520124369138, 36.45496961240964], [-77.37837680223706, 36.40687387026438], [-77.3321061202726, 36.367744213780604]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.26893287457357, 36.41586247771753], [-77.20575975672452, 36.46395043846632], [-77.2520258102274, 36.503035049470746], [-77.31520124369138, 36.45496961240964], [-77.26893287457357, 36.41586247771753]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.20575975672452, 36.46395043846632], [-77.14258680842269, 36.51200045684987], [-77.18885054253896, 36.55106254284527], [-77.2520258102274, 36.503035049470746], [-77.20575975672452, 36.46395043846632]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.14258680842269, 36.51200045684987], [-77.07941396312906, 36.560028228248946], [-77.12567537552735, 36.59906778885805], [-77.18885054253896, 36.55106254284527], [-77.14258680842269, 36.51200045684987]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07941396312906, 36.560028228248946], [-77.01624126914015, 36.60802396610259], [-77.06250035636407, 36.64704100111182], [-77.12567537552735, 36.59906778885805], [-77.07941396312906, 36.560028228248946]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.01624126914015, 36.60802396610259], [-76.95306875673472, 36.65598326589914], [-76.99932551452659, 36.69497777610721], [-77.06250035636407, 36.64704100111182], [-77.01624126914015, 36.60802396610259]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.95306875673472, 36.65598326589914], [-76.8898963588754, 36.70392024678357], [-76.9361507845095, 36.74289223304343], [-76.99932551452659, 36.69497777610721], [-76.95306875673472, 36.65598326589914]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8898963588754, 36.70392024678357], [-76.826724138289, 36.75182345226942], [-76.87297622750116, 36.79077291630191], [-76.9361507845095, 36.74289223304343], [-76.8898963588754, 36.70392024678357]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.826724138289, 36.75182345226942], [-76.76355211044407, 36.799691734211294], [-76.80980185848068, 36.83861867882537], [-76.87297622750116, 36.79077291630191], [-76.826724138289, 36.75182345226942]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.76355211044407, 36.799691734211294], [-76.70038020918636, 36.84753762487581], [-76.74662761288678, 36.8864420521998], [-76.80980185848068, 36.83861867882537], [-76.76355211044407, 36.799691734211294]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.70038020918636, 36.84753762487581], [-76.63720851379644, 36.895347986574535], [-76.68345356795784, 36.93422990052998], [-76.74662761288678, 36.8864420521998], [-76.70038020918636, 36.84753762487581]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.63720851379644, 36.895347986574535], [-76.57403702129359, 36.943124949430455], [-76.62027972066471, 36.98198435471967], [-76.68345356795784, 36.93422990052998], [-76.63720851379644, 36.895347986574535]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.57403702129359, 36.943124949430455], [-76.51086566791075, 36.99087944813861], [-76.55710600885472, 37.02971634821243], [-76.62027972066471, 36.98198435471967], [-76.57403702129359, 36.943124949430455]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.51086566791075, 36.99087944813861], [-76.44769455171019, 37.038596652368895], [-76.49393252794373, 37.07741105363038], [-76.55710600885472, 37.02971634821243], [-76.51086566791075, 36.99087944813861]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.44769455171019, 37.038596652368895], [-76.38452364738211, 37.0862819926608], [-76.43075925316387, 37.12507390158056], [-76.49393252794373, 37.07741105363038], [-76.44769455171019, 37.038596652368895]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.38452364738211, 37.0862819926608], [-76.32135289517704, 37.13394479536728], [-76.36758612635232, 37.1727142167676], [-76.43075925316387, 37.12507390158056], [-76.38452364738211, 37.0862819926608]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.32135289517704, 37.13394479536728], [-76.25818241425625, 37.181568525897774], [-76.30441326330958, 37.220315468958425], [-76.36758612635232, 37.1727142167676], [-76.32135289517704, 37.13394479536728]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.25818241425625, 37.181568525897774], [-76.19501215287559, 37.22916193764223], [-76.24124061359271, 37.26788641046783], [-76.30441326330958, 37.220315468958425], [-76.25818241425625, 37.181568525897774]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C3FF32\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19501215287559, 37.22916193764223], [-76.13184205705933, 37.27673273773991], [-76.17806812472637, 37.31543474657452], [-76.24124061359271, 37.26788641046783], [-76.19501215287559, 37.22916193764223]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#96FF5F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.13184205705933, 37.27673273773991], [-76.06867226945485, 37.3242626755279], [-76.1148959351629, 37.36294223263767], [-76.17806812472637, 37.31543474657452], [-76.13184205705933, 37.27673273773991]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#90FF66\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06867226945485, 37.3242626755279], [-76.00550270757694, 37.37176385000164], [-76.05172396466678, 37.410420964980744], [-76.1148959351629, 37.36294223263767], [-76.06867226945485, 37.3242626755279]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A6FF4F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.00550270757694, 37.37176385000164], [-75.94233332510113, 37.41924233809236], [-75.98855216825869, 37.45787701865811], [-76.05172396466678, 37.410420964980744], [-76.00550270757694, 37.37176385000164]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BDFF39\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.94233332510113, 37.41924233809236], [-75.87916429059331, 37.466678161048016], [-75.92538070934674, 37.505290422876946], [-75.98855216825869, 37.45787701865811], [-75.94233332510113, 37.41924233809236]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.87916429059331, 37.466678161048016], [-75.81599548635256, 37.514086786576456], [-75.86220947363628, 37.55267664059687], [-75.92538070934674, 37.505290422876946], [-75.87916429059331, 37.466678161048016]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.19966832029215, 35.77892577595566], [-78.13649156012181, 35.82740248949302], [-78.18278967266943, 35.866783208897246], [-78.24596873115341, 35.81832892461163], [-78.19966832029215, 35.77892577595566]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.13649156012181, 35.82740248949302], [-78.07331485164241, 35.875857305942745], [-78.11961066486738, 35.915215590353384], [-78.18278967266943, 35.866783208897246], [-78.13649156012181, 35.82740248949302]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.07331485164241, 35.875857305942745], [-78.01013819863617, 35.9242886230789], [-78.0564317114557, 35.96362446633396], [-78.11961066486738, 35.915215590353384], [-78.07331485164241, 35.875857305942745]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.01013819863617, 35.9242886230789], [-77.94696165821642, 35.97267607346072], [-77.99325286838382, 36.01198946518231], [-78.0564317114557, 35.96362446633396], [-78.01013819863617, 35.9242886230789]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.94696165821642, 35.97267607346072], [-77.88378517844893, 36.021041556847116], [-77.93007408472812, 36.06033249236545], [-77.99325286838382, 36.01198946518231], [-77.94696165821642, 35.97267607346072]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.88378517844893, 36.021041556847116], [-77.8206087686042, 36.06938185551336], [-77.86689536956791, 36.10865032952225], [-77.93007408472812, 36.06033249236545], [-77.88378517844893, 36.021041556847116]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.8206087686042, 36.06938185551336], [-77.75743248555548, 36.11767975253256], [-77.80371677855523, 36.15692575720746], [-77.86689536956791, 36.10865032952225], [-77.8206087686042, 36.06938185551336]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.75743248555548, 36.11767975253256], [-77.69425627251186, 36.16595561266468], [-77.74053825605557, 36.2051791444367], [-77.80371677855523, 36.15692575720746], [-77.75743248555548, 36.11767975253256]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.69425627251186, 36.16595561266468], [-77.63108014571826, 36.21420459206992], [-77.6773598179618, 36.253405646689586], [-77.74053825605557, 36.2051791444367], [-77.69425627251186, 36.16595561266468]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.63108014571826, 36.21420459206992], [-77.56790415935569, 36.26241264548231], [-77.614181517225, 36.30159121757496], [-77.6773598179618, 36.253405646689586], [-77.63108014571826, 36.21420459206992]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.56790415935569, 36.26241264548231], [-77.50472825277275, 36.31059859203987], [-77.5510032944884, 36.3497546791699], [-77.614181517225, 36.30159121757496], [-77.56790415935569, 36.26241264548231]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.50472825277275, 36.31059859203987], [-77.44155245078137, 36.35875595113333], [-77.48782517399911, 36.397889550320926], [-77.5510032944884, 36.3497546791699], [-77.50472825277275, 36.31059859203987]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.44155245078137, 36.35875595113333], [-77.37837680223706, 36.40687387026438], [-77.4246472034358, 36.445984978480794], [-77.48782517399911, 36.397889550320926], [-77.44155245078137, 36.35875595113333]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.37837680223706, 36.40687387026438], [-77.31520124369138, 36.45496961240964], [-77.36146932077064, 36.494058228388255], [-77.4246472034358, 36.445984978480794], [-77.37837680223706, 36.40687387026438]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.31520124369138, 36.45496961240964], [-77.2520258102274, 36.503035049470746], [-77.29829156024886, 36.54210117172709], [-77.36146932077064, 36.494058228388255], [-77.31520124369138, 36.45496961240964]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.2520258102274, 36.503035049470746], [-77.18885054253896, 36.55106254284527], [-77.23511396151682, 36.59010617059039], [-77.29829156024886, 36.54210117172709], [-77.2520258102274, 36.503035049470746]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18885054253896, 36.55106254284527], [-77.12567537552735, 36.59906778885805], [-77.17193646100455, 36.638088922032956], [-77.23511396151682, 36.59010617059039], [-77.18885054253896, 36.55106254284527]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.12567537552735, 36.59906778885805], [-77.06250035636407, 36.64704100111182], [-77.10875910470318, 36.68603963996632], [-77.17193646100455, 36.638088922032956], [-77.12567537552735, 36.59906778885805]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.06250035636407, 36.64704100111182], [-76.99932551452659, 36.69497777610721], [-77.04558192126484, 36.73395392198221], [-77.10875910470318, 36.68603963996632], [-77.06250035636407, 36.64704100111182]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.99932551452659, 36.69497777610721], [-76.9361507845095, 36.74289223304343], [-76.98240484679629, 36.781845887128945], [-77.04558192126484, 36.73395392198221], [-76.99932551452659, 36.69497777610721]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9361507845095, 36.74289223304343], [-76.87297622750116, 36.79077291630191], [-76.91922794088403, 36.82970408083466], [-76.98240484679629, 36.781845887128945], [-76.9361507845095, 36.74289223304343]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.87297622750116, 36.79077291630191], [-76.80980185848068, 36.83861867882537], [-76.85605121801434, 36.877527357160844], [-76.91922794088403, 36.82970408083466], [-76.87297622750116, 36.79077291630191]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.80980185848068, 36.83861867882537], [-76.74662761288678, 36.8864420521998], [-76.79287461528892, 36.925328246820655], [-76.85605121801434, 36.877527357160844], [-76.80980185848068, 36.83861867882537]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.74662761288678, 36.8864420521998], [-76.68345356795784, 36.93422990052998], [-76.72969820783463, 36.97309361592651], [-76.79287461528892, 36.925328246820655], [-76.74662761288678, 36.8864420521998]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.68345356795784, 36.93422990052998], [-76.62027972066471, 36.98198435471967], [-76.66652199259039, 37.0208255961401], [-76.72969820783463, 36.97309361592651], [-76.68345356795784, 36.93422990052998]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.62027972066471, 36.98198435471967], [-76.55710600885472, 37.02971634821243], [-76.60334590907665, 37.06853511947779], [-76.66652199259039, 37.0208255961401], [-76.62027972066471, 36.98198435471967]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.55710600885472, 37.02971634821243], [-76.49393252794373, 37.07741105363038], [-76.5401700499904, 37.11620736176522], [-76.60334590907665, 37.06853511947779], [-76.55710600885472, 37.02971634821243]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.49393252794373, 37.07741105363038], [-76.43075925316387, 37.12507390158056], [-76.47699439113961, 37.16384775359617], [-76.5401700499904, 37.11620736176522], [-76.49393252794373, 37.07741105363038]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.43075925316387, 37.12507390158056], [-76.36758612635232, 37.1727142167676], [-76.41381887599533, 37.21146561787087], [-76.47699439113961, 37.16384775359617], [-76.43075925316387, 37.12507390158056]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.36758612635232, 37.1727142167676], [-76.30441326330958, 37.220315468958425], [-76.35064361692474, 37.259044429003204], [-76.41381887599533, 37.21146561787087], [-76.36758612635232, 37.1727142167676]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.30441326330958, 37.220315468958425], [-76.24124061359271, 37.26788641046783], [-76.28746856483474, 37.30659293808988], [-76.35064361692474, 37.259044429003204], [-76.30441326330958, 37.220315468958425]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CAFF2C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.24124061359271, 37.26788641046783], [-76.17806812472637, 37.31543474657452], [-76.22429366878549, 37.35411884841553], [-76.28746856483474, 37.30659293808988], [-76.24124061359271, 37.26788641046783]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.17806812472637, 37.31543474657452], [-76.1148959351629, 37.36294223263767], [-76.1611190629661, 37.401603921689905], [-76.22429366878549, 37.35411884841553], [-76.17806812472637, 37.31543474657452]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#A6FF4F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.1148959351629, 37.36294223263767], [-76.05172396466678, 37.410420964980744], [-76.09794466944899, 37.44906025135616], [-76.1611190629661, 37.401603921689905], [-76.1148959351629, 37.36294223263767]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E4FF12\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.05172396466678, 37.410420964980744], [-75.98855216825869, 37.45787701865811], [-76.0347704446241, 37.4964939104834], [-76.09794466944899, 37.44906025135616], [-76.05172396466678, 37.410420964980744]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.98855216825869, 37.45787701865811], [-75.92538070934674, 37.505290422876946], [-75.97159654668238, 37.543884936606], [-76.0347704446241, 37.4964939104834], [-75.98855216825869, 37.45787701865811]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-75.92538070934674, 37.505290422876946], [-75.86220947363628, 37.55267664059687], [-75.90842286479767, 37.591248787659026], [-75.97159654668238, 37.543884936606], [-75.92538070934674, 37.505290422876946]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.24596873115341, 35.81832892461163], [-78.18278967266943, 35.866783208897246], [-78.22908763047577, 35.90614502706134], [-78.29226899639426, 35.85771314776765], [-78.24596873115341, 35.81832892461163]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.18278967266943, 35.866783208897246], [-78.11961066486738, 35.915215590353384], [-78.16590631414175, 35.95455499797905], [-78.22908763047577, 35.90614502706134], [-78.18278967266943, 35.866783208897246]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.11961066486738, 35.915215590353384], [-78.0564317114557, 35.96362446633396], [-78.10272505102029, 36.00294145746888], [-78.16590631414175, 35.95455499797905], [-78.11961066486738, 35.915215590353384]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.0564317114557, 35.96362446633396], [-77.99325286838382, 36.01198946518231], [-78.03954389580493, 36.05128402986502], [-78.10272505102029, 36.00294145746888], [-78.0564317114557, 35.96362446633396]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.99325286838382, 36.01198946518231], [-77.93007408472812, 36.06033249236545], [-77.97636279867181, 36.09960462614609], [-78.03954389580493, 36.05128402986502], [-77.99325286838382, 36.01198946518231]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.93007408472812, 36.06033249236545], [-77.86689536956791, 36.10865032952225], [-77.9131817684945, 36.14790002734779], [-77.97636279867181, 36.09960462614609], [-77.93007408472812, 36.06033249236545]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.86689536956791, 36.10865032952225], [-77.80371677855523, 36.15692575720746], [-77.85000085961929, 36.19615301170245], [-77.9131817684945, 36.14790002734779], [-77.86689536956791, 36.10865032952225]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.80371677855523, 36.15692575720746], [-77.74053825605557, 36.2051791444367], [-77.78682001765975, 36.244383952275506], [-77.85000085961929, 36.19615301170245], [-77.80371677855523, 36.15692575720746]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.74053825605557, 36.2051791444367], [-77.6773598179618, 36.253405646689586], [-77.72363925813289, 36.292588003921516], [-77.78682001765975, 36.244383952275506], [-77.74053825605557, 36.2051791444367]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.6773598179618, 36.253405646689586], [-77.614181517225, 36.30159121757496], [-77.66045863268705, 36.340751119300975], [-77.72363925813289, 36.292588003921516], [-77.6773598179618, 36.253405646689586]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.614181517225, 36.30159121757496], [-77.5510032944884, 36.3497546791699], [-77.59727808335111, 36.38889212321973], [-77.66045863268705, 36.340751119300975], [-77.614181517225, 36.30159121757496]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.5510032944884, 36.3497546791699], [-77.48782517399911, 36.397889550320926], [-77.53409763377425, 36.437004534060954], [-77.59727808335111, 36.38889212321973], [-77.5510032944884, 36.3497546791699]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.48782517399911, 36.397889550320926], [-77.4246472034358, 36.445984978480794], [-77.47091733040025, 36.48507749937846], [-77.53409763377425, 36.437004534060954], [-77.48782517399911, 36.397889550320926]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.4246472034358, 36.445984978480794], [-77.36146932077064, 36.494058228388255], [-77.40773711270958, 36.53312828546305], [-77.47091733040025, 36.48507749937846], [-77.4246472034358, 36.445984978480794]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.36146932077064, 36.494058228388255], [-77.29829156024886, 36.54210117172709], [-77.34455701406718, 36.5811487638895], [-77.40773711270958, 36.53312828546305], [-77.36146932077064, 36.494058228388255]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.29829156024886, 36.54210117172709], [-77.23511396151682, 36.59010617059039], [-77.2813770730314, 36.62913129756252], [-77.34455701406718, 36.5811487638895], [-77.29829156024886, 36.54210117172709]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.23511396151682, 36.59010617059039], [-77.17193646100455, 36.638088922032956], [-77.21819722764263, 36.67709158406135], [-77.2813770730314, 36.62913129756252], [-77.23511396151682, 36.59010617059039]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.17193646100455, 36.638088922032956], [-77.10875910470318, 36.68603963996632], [-77.15501752266073, 36.725019837745556], [-77.21819722764263, 36.67709158406135], [-77.17193646100455, 36.638088922032956]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.10875910470318, 36.68603963996632], [-77.04558192126484, 36.73395392198221], [-77.09183798589075, 36.772911657373655], [-77.15501752266073, 36.725019837745556], [-77.10875910470318, 36.68603963996632]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.04558192126484, 36.73395392198221], [-76.98240484679629, 36.781845887128945], [-77.02865855512523, 36.820781161646146], [-77.09183798589075, 36.772911657373655], [-77.04558192126484, 36.73395392198221]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.98240484679629, 36.781845887128945], [-76.91922794088403, 36.82970408083466], [-76.96547928829094, 36.8686168972096], [-77.02865855512523, 36.820781161646146], [-76.98240484679629, 36.781845887128945]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.91922794088403, 36.82970408083466], [-76.85605121801434, 36.877527357160844], [-76.90230019937844, 36.916417719273774], [-76.96547928829094, 36.8686168972096], [-76.91922794088403, 36.82970408083466]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.85605121801434, 36.877527357160844], [-76.79287461528892, 36.925328246820655], [-76.8391212272167, 36.96419615749443], [-76.90230019937844, 36.916417719273774], [-76.85605121801434, 36.877527357160844]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.79287461528892, 36.925328246820655], [-76.72969820783463, 36.97309361592651], [-76.77594244475794, 37.011939080197436], [-76.8391212272167, 36.96419615749443], [-76.79287461528892, 36.925328246820655]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.72969820783463, 36.97309361592651], [-76.66652199259039, 37.0208255961401], [-76.71276384892448, 37.05964861978069], [-76.77594244475794, 37.011939080197436], [-76.72969820783463, 36.97309361592651]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.66652199259039, 37.0208255961401], [-76.60334590907665, 37.06853511947779], [-76.64958538096363, 37.107335706664536], [-76.71276384892448, 37.05964861978069], [-76.66652199259039, 37.0208255961401]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.60334590907665, 37.06853511947779], [-76.5401700499904, 37.11620736176522], [-76.58640713078782, 37.154985520119624], [-76.64958538096363, 37.107335706664536], [-76.60334590907665, 37.06853511947779]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5401700499904, 37.11620736176522], [-76.47699439113961, 37.16384775359617], [-76.52322907481253, 37.202603490648826], [-76.58640713078782, 37.154985520119624], [-76.5401700499904, 37.11620736176522]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.47699439113961, 37.16384775359617], [-76.41381887599533, 37.21146561787087], [-76.46005115818514, 37.25019893919808], [-76.52322907481253, 37.202603490648826], [-76.47699439113961, 37.16384775359617]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.41381887599533, 37.21146561787087], [-76.35064361692474, 37.259044429003204], [-76.39687348977476, 37.29775534510635], [-76.46005115818514, 37.25019893919808], [-76.41381887599533, 37.21146561787087]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.35064361692474, 37.259044429003204], [-76.28746856483474, 37.30659293808988], [-76.33369602188245, 37.34528145811505], [-76.39687348977476, 37.29775534510635], [-76.35064361692474, 37.259044429003204]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D7FF1F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.28746856483474, 37.30659293808988], [-76.22429366878549, 37.35411884841553], [-76.27051870513553, 37.392784979386505], [-76.33369602188245, 37.34528145811505], [-76.28746856483474, 37.30659293808988]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EDFF08\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.22429366878549, 37.35411884841553], [-76.1611190629661, 37.401603921689905], [-76.20734166939975, 37.44024767729664], [-76.27051870513553, 37.392784979386505], [-76.22429366878549, 37.35411884841553]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BDFF39\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.1611190629661, 37.401603921689905], [-76.09794466944899, 37.44906025135616], [-76.14416483910826, 37.487681642208244], [-76.20734166939975, 37.44024767729664], [-76.1611190629661, 37.401603921689905]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E0FF15\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.09794466944899, 37.44906025135616], [-76.0347704446241, 37.4964939104834], [-76.08098817204136, 37.535092945101], [-76.14416483910826, 37.487681642208244], [-76.09794466944899, 37.44906025135616]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BDFF39\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0347704446241, 37.4964939104834], [-75.97159654668238, 37.543884936606], [-76.0178118211222, 37.58246163219017], [-76.08098817204136, 37.535092945101], [-76.0347704446241, 37.4964939104834]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#DAFF1C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.97159654668238, 37.543884936606], [-75.90842286479767, 37.591248787659026], [-75.95463567904817, 37.62980315612076], [-76.0178118211222, 37.58246163219017], [-75.97159654668238, 37.543884936606]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CAFF2C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.29226899639426, 35.85771314776765], [-78.22908763047577, 35.90614502706134], [-78.27538543687278, 35.94548791696333], [-78.33856911911263, 35.8970784193954], [-78.29226899639426, 35.85771314776765]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.22908763047577, 35.90614502706134], [-78.16590631414175, 35.95455499797905], [-78.2122018030379, 35.99387550079642], [-78.27538543687278, 35.94548791696333], [-78.22908763047577, 35.90614502706134]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.16590631414175, 35.95455499797905], [-78.10272505102029, 36.00294145746888], [-78.1490182211498, 36.04223956745067], [-78.2122018030379, 35.99387550079642], [-78.16590631414175, 35.95455499797905]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.10272505102029, 36.00294145746888], [-78.03954389580493, 36.05128402986502], [-78.08583474456091, 36.09055973744978], [-78.1490182211498, 36.04223956745067], [-78.10272505102029, 36.00294145746888]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.03954389580493, 36.05128402986502], [-77.97636279867181, 36.09960462614609], [-78.02265132462986, 36.138857927095046], [-78.08583474456091, 36.09055973744978], [-78.03954389580493, 36.05128402986502]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.97636279867181, 36.09960462614609], [-77.9131817684945, 36.14790002734779], [-77.95946797001082, 36.18713091685092], [-78.02265132462986, 36.138857927095046], [-77.97636279867181, 36.09960462614609]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.9131817684945, 36.14790002734779], [-77.85000085961929, 36.19615301170245], [-77.89628473366623, 36.23536148281541], [-77.95946797001082, 36.18713091685092], [-77.9131817684945, 36.14790002734779]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.85000085961929, 36.19615301170245], [-77.78682001765975, 36.244383952275506], [-77.83310156254267, 36.28357000190609], [-77.89628473366623, 36.23536148281541], [-77.85000085961929, 36.19615301170245]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.78682001765975, 36.244383952275506], [-77.72363925813289, 36.292588003921516], [-77.76991847175927, 36.33175162840578], [-77.83310156254267, 36.28357000190609], [-77.78682001765975, 36.244383952275506]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.72363925813289, 36.292588003921516], [-77.66045863268705, 36.340751119300975], [-77.70673551159447, 36.37989231419623], [-77.76991847175927, 36.33175162840578], [-77.72363925813289, 36.292588003921516]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.66045863268705, 36.340751119300975], [-77.59727808335111, 36.38889212321973], [-77.64355262554693, 36.42801088661031], [-77.70673551159447, 36.37989231419623], [-77.66045863268705, 36.340751119300975]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.59727808335111, 36.38889212321973], [-77.53409763377425, 36.437004534060954], [-77.58036983663726, 36.476100863645385], [-77.64355262554693, 36.42801088661031], [-77.59727808335111, 36.38889212321973]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.53409763377425, 36.437004534060954], [-77.47091733040025, 36.48507749937846], [-77.51718719002119, 36.52415139310024], [-77.58036983663726, 36.476100863645385], [-77.53409763377425, 36.437004534060954]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.47091733040025, 36.48507749937846], [-77.40773711270958, 36.53312828546305], [-77.45400462676822, 36.57217974261614], [-77.51718719002119, 36.52415139310024], [-77.47091733040025, 36.48507749937846]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.40773711270958, 36.53312828546305], [-77.34455701406718, 36.5811487638895], [-77.39082217932399, 36.620177783763346], [-77.45400462676822, 36.57217974261614], [-77.40773711270958, 36.53312828546305]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.34455701406718, 36.5811487638895], [-77.2813770730314, 36.62913129756252], [-77.32763988512166, 36.66813788036947], [-77.39082217932399, 36.620177783763346], [-77.34455701406718, 36.5811487638895]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.2813770730314, 36.62913129756252], [-77.21819722764263, 36.67709158406135], [-77.26445768388733, 36.71607573034105], [-77.32763988512166, 36.66813788036947], [-77.2813770730314, 36.62913129756252]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.21819722764263, 36.67709158406135], [-77.15501752266073, 36.725019837745556], [-77.20127561910286, 36.76398154861932], [-77.26445768388733, 36.71607573034105], [-77.21819722764263, 36.67709158406135]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.15501752266073, 36.725019837745556], [-77.09183798589075, 36.772911657373655], [-77.13809371770637, 36.81185093520216], [-77.20127561910286, 36.76398154861932], [-77.15501752266073, 36.725019837745556]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.09183798589075, 36.772911657373655], [-77.02865855512523, 36.820781161646146], [-77.07491191924399, 36.85969800825334], [-77.13809371770637, 36.81185093520216], [-77.09183798589075, 36.772911657373655]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.02865855512523, 36.820781161646146], [-76.96547928829094, 36.8686168972096], [-77.01173027992971, 36.90751131580265], [-77.07491191924399, 36.85969800825334], [-77.02865855512523, 36.820781161646146]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.96547928829094, 36.8686168972096], [-76.90230019937844, 36.916417719273774], [-76.9485488132562, 36.95528971423642], [-77.01173027992971, 36.90751131580265], [-76.96547928829094, 36.8686168972096]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.90230019937844, 36.916417719273774], [-76.8391212272167, 36.96419615749443], [-76.88536745983846, 37.00304573197596], [-76.9485488132562, 36.95528971423642], [-76.90230019937844, 36.916417719273774]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8391212272167, 36.96419615749443], [-76.77594244475794, 37.011939080197436], [-76.8221862903968, 37.05076623975819], [-76.88536745983846, 37.00304573197596], [-76.8391212272167, 36.96419615749443]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.77594244475794, 37.011939080197436], [-76.71276384892448, 37.05964861978069], [-76.75900530185129, 37.09845337069622], [-76.8221862903968, 37.05076623975819], [-76.77594244475794, 37.011939080197436]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.71276384892448, 37.05964861978069], [-76.64958538096363, 37.107335706664536], [-76.69582443722499, 37.146118053452525], [-76.75900530185129, 37.09845337069622], [-76.71276384892448, 37.05964861978069]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.64958538096363, 37.107335706664536], [-76.58640713078782, 37.154985520119624], [-76.63264378358667, 37.19374547097444], [-76.69582443722499, 37.146118053452525], [-76.64958538096363, 37.107335706664536]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF8500\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.58640713078782, 37.154985520119624], [-76.52322907481253, 37.202603490648826], [-76.56946331798835, 37.24134105359953], [-76.63264378358667, 37.19374547097444], [-76.58640713078782, 37.154985520119624]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FF9800\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.52322907481253, 37.202603490648826], [-76.46005115818514, 37.25019893919808], [-76.50628298729234, 37.28891412017559], [-76.56946331798835, 37.24134105359953], [-76.52322907481253, 37.202603490648826]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.46005115818514, 37.25019893919808], [-76.39687348977476, 37.29775534510635], [-76.44310289681184, 37.33644815523366], [-76.50628298729234, 37.28891412017559], [-76.46005115818514, 37.25019893919808]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.39687348977476, 37.29775534510635], [-76.33369602188245, 37.34528145811505], [-76.37992300028256, 37.383951907028205], [-76.44310289681184, 37.33644815523366], [-76.39687348977476, 37.29775534510635]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#DDFF18\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.33369602188245, 37.34528145811505], [-76.27051870513553, 37.392784979386505], [-76.31674324992728, 37.43143307447609], [-76.37992300028256, 37.383951907028205], [-76.33369602188245, 37.34528145811505]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F7F400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.27051870513553, 37.392784979386505], [-76.20734166939975, 37.44024767729664], [-76.2535637712359, 37.478873432922526], [-76.31674324992728, 37.43143307447609], [-76.27051870513553, 37.392784979386505]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.20734166939975, 37.44024767729664], [-76.14416483910826, 37.487681642208244], [-76.19038449104957, 37.52628506945796], [-76.2535637712359, 37.478873432922526], [-76.20734166939975, 37.44024767729664]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E7FF0F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.14416483910826, 37.487681642208244], [-76.08098817204136, 37.535092945101], [-76.12720536855782, 37.57367405287252], [-76.19038449104957, 37.52628506945796], [-76.14416483910826, 37.487681642208244]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#C7FF2F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.08098817204136, 37.535092945101], [-76.0178118211222, 37.58246163219017], [-76.06402655137309, 37.62102043840221], [-76.12720536855782, 37.57367405287252], [-76.08098817204136, 37.535092945101]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.0178118211222, 37.58246163219017], [-75.95463567904817, 37.62980315612076], [-76.00084793576501, 37.66833967314699], [-76.06402655137309, 37.62102043840221], [-76.0178118211222, 37.58246163219017]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#CDFF29\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.33856911911263, 35.8970784193954], [-78.27538543687278, 35.94548791696333], [-78.32168309544491, 35.98481185109917], [-78.38486910264864, 35.93642471301062], [-78.33856911911263, 35.8970784193954]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.27538543687278, 35.94548791696333], [-78.2122018030379, 35.99387550079642], [-78.25849713539083, 36.033177070274284], [-78.32168309544491, 35.98481185109917], [-78.27538543687278, 35.94548791696333]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.2122018030379, 35.99387550079642], [-78.1490182211498, 36.04223956745067], [-78.19531122593635, 36.081518766713025], [-78.25849713539083, 36.033177070274284], [-78.2122018030379, 35.99387550079642]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.1490182211498, 36.04223956745067], [-78.08583474456091, 36.09055973744978], [-78.1321254190139, 36.12981655731914], [-78.19531122593635, 36.081518766713025], [-78.1490182211498, 36.04223956745067]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.08583474456091, 36.09055973744978], [-78.02265132462986, 36.138857927095046], [-78.06893966724124, 36.17809236353527], [-78.1321254190139, 36.12981655731914], [-78.08583474456091, 36.09055973744978]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.02265132462986, 36.138857927095046], [-77.95946797001082, 36.18713091685092], [-78.00575397904056, 36.22634296528523], [-78.06893966724124, 36.17809236353527], [-78.02265132462986, 36.138857927095046]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.95946797001082, 36.18713091685092], [-77.89628473366623, 36.23536148281541], [-77.94256840591841, 36.274551136713036], [-78.00575397904056, 36.22634296528523], [-77.95946797001082, 36.18713091685092]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.89628473366623, 36.23536148281541], [-77.83310156254267, 36.28357000190609], [-77.8793828962327, 36.32273725839881], [-77.94256840591841, 36.274551136713036], [-77.89628473366623, 36.23536148281541]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.83310156254267, 36.28357000190609], [-77.76991847175927, 36.33175162840578], [-77.81619746468455, 36.3708964841047], [-77.8793828962327, 36.32273725839881], [-77.83310156254267, 36.28357000190609]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.76991847175927, 36.33175162840578], [-77.70673551159447, 36.37989231419623], [-77.75301216012053, 36.419014765096385], [-77.81619746468455, 36.3708964841047], [-77.76991847175927, 36.33175162840578]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.70673551159447, 36.37989231419623], [-77.64355262554693, 36.42801088661031], [-77.68982692758678, 36.46711093104018], [-77.75301216012053, 36.419014765096385], [-77.70673551159447, 36.37989231419623]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.64355262554693, 36.42801088661031], [-77.58036983663726, 36.476100863645385], [-77.62664178944716, 36.51517849962205], [-77.68982692758678, 36.46711093104018], [-77.64355262554693, 36.42801088661031]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.58036983663726, 36.476100863645385], [-77.51718719002119, 36.52415139310024], [-77.56345678952044, 36.56320661902368], [-77.62664178944716, 36.51517849962205], [-77.58036983663726, 36.476100863645385]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.51718719002119, 36.52415139310024], [-77.45400462676822, 36.57217974261614], [-77.50027187053962, 36.61121255804352], [-77.56345678952044, 36.56320661902368], [-77.51718719002119, 36.52415139310024]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.45400462676822, 36.57217974261614], [-77.39082217932399, 36.620177783763346], [-77.4370870639952, 36.659188188347414], [-77.50027187053962, 36.61121255804352], [-77.45400462676822, 36.57217974261614]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.39082217932399, 36.620177783763346], [-77.32763988512166, 36.66813788036947], [-77.37390240616124, 36.707125874792695], [-77.4370870639952, 36.659188188347414], [-77.39082217932399, 36.620177783763346]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.32763988512166, 36.66813788036947], [-77.26445768388733, 36.71607573034105], [-77.31071783851866, 36.75504131542409], [-77.37390240616124, 36.707125874792695], [-77.32763988512166, 36.66813788036947]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.26445768388733, 36.71607573034105], [-77.20127561910286, 36.76398154861932], [-77.2475334032286, 36.80292472589262], [-77.31071783851866, 36.75504131542409], [-77.26445768388733, 36.71607573034105]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.20127561910286, 36.76398154861932], [-77.13809371770637, 36.81185093520216], [-77.18434912634447, 36.850771707505146], [-77.2475334032286, 36.80292472589262], [-77.20127561910286, 36.76398154861932]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.13809371770637, 36.81185093520216], [-77.07491191924399, 36.85969800825334], [-77.12116494922802, 36.89859637770762], [-77.18434912634447, 36.850771707505146], [-77.13809371770637, 36.81185093520216]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.07491191924399, 36.85969800825334], [-77.01173027992971, 36.90751131580265], [-77.05798092633216, 36.94638728607099], [-77.12116494922802, 36.89859637770762], [-77.07491191924399, 36.85969800825334]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.01173027992971, 36.90751131580265], [-76.9485488132562, 36.95528971423642], [-76.99479707065, 36.994143290185335], [-77.05798092633216, 36.94638728607099], [-77.01173027992971, 36.90751131580265]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.9485488132562, 36.95528971423642], [-76.88536745983846, 37.00304573197596], [-76.93161332463632, 37.041876917067746], [-76.99479707065, 36.994143290185335], [-76.9485488132562, 36.95528971423642]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.88536745983846, 37.00304573197596], [-76.8221862903968, 37.05076623975819], [-76.86842975672741, 37.08957504005565], [-76.93161332463632, 37.041876917067746], [-76.88536745983846, 37.00304573197596]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8221862903968, 37.05076623975819], [-76.75900530185129, 37.09845337069622], [-76.8052463638547, 37.13723979295737], [-76.86842975672741, 37.08957504005565], [-76.8221862903968, 37.05076623975819]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.75900530185129, 37.09845337069622], [-76.69582443722499, 37.146118053452525], [-76.74206309086159, 37.1848821025222], [-76.8052463638547, 37.13723979295737], [-76.75900530185129, 37.09845337069622]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.69582443722499, 37.146118053452525], [-76.63264378358667, 37.19374547097444], [-76.67888002191987, 37.23248715559646], [-76.74206309086159, 37.1848821025222], [-76.69582443722499, 37.146118053452525]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.63264378358667, 37.19374547097444], [-76.56946331798835, 37.24134105359953], [-76.61569713474485, 37.28006038228101], [-76.67888002191987, 37.23248715559646], [-76.63264378358667, 37.19374547097444]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#FFE900\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.56946331798835, 37.24134105359953], [-76.50628298729234, 37.28891412017559], [-76.5525143779486, 37.32761109918759], [-76.61569713474485, 37.28006038228101], [-76.56946331798835, 37.24134105359953]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.50628298729234, 37.28891412017559], [-76.44310289681184, 37.33644815523366], [-76.48933185323719, 37.37512279629543], [-76.5525143779486, 37.32761109918759], [-76.50628298729234, 37.28891412017559]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.44310289681184, 37.33644815523366], [-76.37992300028256, 37.383951907028205], [-76.42614951581778, 37.42260422024578], [-76.48933185323719, 37.37512279629543], [-76.44310289681184, 37.33644815523366]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.37992300028256, 37.383951907028205], [-76.31674324992728, 37.43143307447609], [-76.36296731953388, 37.47006306759198], [-76.42614951581778, 37.42260422024578], [-76.37992300028256, 37.383951907028205]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#F7F400\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.31674324992728, 37.43143307447609], [-76.2535637712359, 37.478873432922526], [-76.29978538545382, 37.51748112093935], [-76.36296731953388, 37.47006306759198], [-76.31674324992728, 37.43143307447609]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.2535637712359, 37.478873432922526], [-76.19038449104957, 37.52628506945796], [-76.23660364286938, 37.56487046392175], [-76.29978538545382, 37.51748112093935], [-76.2535637712359, 37.478873432922526]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#EDFF08\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.19038449104957, 37.52628506945796], [-76.12720536855782, 37.57367405287252], [-76.17342205239565, 37.61223716304381], [-76.23660364286938, 37.56487046392175], [-76.19038449104957, 37.52628506945796]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D7FF1F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.12720536855782, 37.57367405287252], [-76.06402655137309, 37.62102043840221], [-76.1102407562988, 37.6595612828884], [-76.17342205239565, 37.61223716304381], [-76.12720536855782, 37.57367405287252]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#BAFF3C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.06402655137309, 37.62102043840221], [-76.00084793576501, 37.66833967314699], [-76.04705965446334, 37.70685826476577], [-76.1102407562988, 37.6595612828884], [-76.06402655137309, 37.62102043840221]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#AAFF4C\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.38486910264864, 35.93642471301062], [-78.32168309544491, 35.98481185109917], [-78.36798061001048, 36.02411680150876], [-78.43116895056666, 35.97575200169771], [-78.38486910264864, 35.93642471301062]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.32168309544491, 35.98481185109917], [-78.25849713539083, 36.033177070274284], [-78.30479231527849, 36.072459677400815], [-78.36798061001048, 36.02411680150876], [-78.32168309544491, 35.98481185109917]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.25849713539083, 36.033177070274284], [-78.19531122593635, 36.081518766713025], [-78.24160406972369, 36.12077902518469], [-78.30479231527849, 36.072459677400815], [-78.25849713539083, 36.033177070274284]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.19531122593635, 36.081518766713025], [-78.1321254190139, 36.12981655731914], [-78.17841592378574, 36.16905445832694], [-78.24160406972369, 36.12077902518469], [-78.19531122593635, 36.081518766713025]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.1321254190139, 36.12981655731914], [-78.06893966724124, 36.17809236353527], [-78.11522783141223, 36.21730790323748], [-78.17841592378574, 36.16905445832694], [-78.1321254190139, 36.12981655731914]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.06893966724124, 36.17809236353527], [-78.00575397904056, 36.22634296528523], [-78.05203980078183, 36.26553613932885], [-78.11522783141223, 36.21730790323748], [-78.06893966724124, 36.17809236353527]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-78.00575397904056, 36.22634296528523], [-77.94256840591841, 36.274551136713036], [-77.9888518818787, 36.313721938963994], [-78.05203980078183, 36.26553613932885], [-78.00575397904056, 36.22634296528523]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.94256840591841, 36.274551136713036], [-77.8793828962327, 36.32273725839881], [-77.92566402454457, 36.3618856862036], [-77.9888518818787, 36.313721938963994], [-77.94256840591841, 36.274551136713036]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.8793828962327, 36.32273725839881], [-77.81619746468455, 36.3708964841047], [-77.86247624304382, 36.410022534338154], [-77.92566402454457, 36.3618856862036], [-77.8793828962327, 36.32273725839881]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.81619746468455, 36.3708964841047], [-77.75301216012053, 36.419014765096385], [-77.79928858473426, 36.45811843417319], [-77.86247624304382, 36.410022534338154], [-77.81619746468455, 36.3708964841047]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.75301216012053, 36.419014765096385], [-77.68982692758678, 36.46711093104018], [-77.7361009962811, 36.506192217522866], [-77.79928858473426, 36.45811843417319], [-77.75301216012053, 36.419014765096385]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.68982692758678, 36.46711093104018], [-77.62664178944716, 36.51517849962205], [-77.6729134993655, 36.554237401833], [-77.7361009962811, 36.506192217522866], [-77.68982692758678, 36.46711093104018]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.62664178944716, 36.51517849962205], [-77.56345678952044, 36.56320661902368], [-77.60972613642448, 36.60224313580032], [-77.6729134993655, 36.554237401833], [-77.62664178944716, 36.51517849962205]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.56345678952044, 36.56320661902368], [-77.50027187053962, 36.61121255804352], [-77.54653885192309, 36.65022668919525], [-77.60972613642448, 36.60224313580032], [-77.56345678952044, 36.56320661902368]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.50027187053962, 36.61121255804352], [-77.4370870639952, 36.659188188347414], [-77.48335167636378, 36.69817993387521], [-77.54653885192309, 36.65022668919525], [-77.50027187053962, 36.61121255804352]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.4370870639952, 36.659188188347414], [-77.37390240616124, 36.707125874792695], [-77.42016464483069, 36.746095235829415], [-77.48335167636378, 36.69817993387521], [-77.4370870639952, 36.659188188347414]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.37390240616124, 36.707125874792695], [-77.31071783851866, 36.75504131542409], [-77.35697770062295, 36.79398829305969], [-77.42016464483069, 36.746095235829415], [-77.37390240616124, 36.707125874792695]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.31071783851866, 36.75504131542409], [-77.2475334032286, 36.80292472589262], [-77.29379088454192, 36.84184932204957], [-77.35697770062295, 36.79398829305969], [-77.31071783851866, 36.75504131542409]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.2475334032286, 36.80292472589262], [-77.18434912634447, 36.850771707505146], [-77.23060422174021, 36.88967392548159], [-77.29379088454192, 36.84184932204957], [-77.2475334032286, 36.80292472589262]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.18434912634447, 36.850771707505146], [-77.12116494922802, 36.89859637770762], [-77.16741765545211, 36.93747621991033], [-77.23060422174021, 36.88967392548159], [-77.18434912634447, 36.850771707505146]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.12116494922802, 36.89859637770762], [-77.05798092633216, 36.94638728607099], [-77.1042312383255, 36.98524475659928], [-77.16741765545211, 36.93747621991033], [-77.12116494922802, 36.89859637770762]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-77.05798092633216, 36.94638728607099], [-76.99479707065, 36.994143290185335], [-77.04104498285268, 37.0329783943683], [-77.1042312383255, 36.98524475659928], [-77.05798092633216, 36.94638728607099]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.99479707065, 36.994143290185335], [-76.93161332463632, 37.041876917067746], [-76.97785883337718, 37.08068965866759], [-77.04104498285268, 37.0329783943683], [-76.99479707065, 36.994143290185335]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.93161332463632, 37.041876917067746], [-76.86842975672741, 37.08957504005565], [-76.91467285600433, 37.12836542561663], [-76.97785883337718, 37.08068965866759], [-76.93161332463632, 37.041876917067746]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.86842975672741, 37.08957504005565], [-76.8052463638547, 37.13723979295737], [-76.85148704768972, 37.17600782969977], [-76.91467285600433, 37.12836542561663], [-76.86842975672741, 37.08957504005565]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.8052463638547, 37.13723979295737], [-76.74206309086159, 37.1848821025222], [-76.78830135513712, 37.223627795604386], [-76.85148704768972, 37.17600782969977], [-76.8052463638547, 37.13723979295737]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.74206309086159, 37.1848821025222], [-76.67888002191987, 37.23248715559646], [-76.72511585957392, 37.27121051428874], [-76.78830135513712, 37.223627795604386], [-76.74206309086159, 37.1848821025222]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.67888002191987, 37.23248715559646], [-76.61569713474485, 37.28006038228101], [-76.66193053940334, 37.31876141554865], [-76.72511585957392, 37.27121051428874], [-76.67888002191987, 37.23248715559646]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.61569713474485, 37.28006038228101], [-76.5525143779486, 37.32761109918759], [-76.59874534501844, 37.3662898136276], [-76.66193053940334, 37.31876141554865], [-76.61569713474485, 37.28006038228101]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.5525143779486, 37.32761109918759], [-76.48933185323719, 37.37512279629543], [-76.53556037447296, 37.41377920419849], [-76.59874534501844, 37.3662898136276], [-76.5525143779486, 37.32761109918759]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.48933185323719, 37.37512279629543], [-76.42614951581778, 37.42260422024578], [-76.47237558447893, 37.46123833216841], [-76.53556037447296, 37.41377920419849], [-76.48933185323719, 37.37512279629543]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.42614951581778, 37.42260422024578], [-76.36296731953388, 37.47006306759198], [-76.40919093052294, 37.508674891613985], [-76.47237558447893, 37.46123833216841], [-76.42614951581778, 37.42260422024578]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"LineString\", \"coordinates\": [[-76.36296731953388, 37.47006306759198], [-76.29978538545382, 37.51748112093935], [-76.34600652921266, 37.55607067267942], [-76.40919093052294, 37.508674891613985], [-76.36296731953388, 37.47006306759198]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.29978538545382, 37.51748112093935], [-76.23660364286938, 37.56487046392175], [-76.28282231232839, 37.60343775536551], [-76.34600652921266, 37.55607067267942], [-76.29978538545382, 37.51748112093935]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#E7FF0F\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.23660364286938, 37.56487046392175], [-76.17342205239565, 37.61223716304381], [-76.21963824192497, 37.65078220379935], [-76.28282231232839, 37.60343775536551], [-76.23660364286938, 37.56487046392175]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dashArray\": \"10,0\", \"fillColor\": \"#D4FF22\", \"weight\": 1.0}}, {\"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-76.17342205239565, 37.61223716304381], [-76.1102407562988, 37.6595612828884], [-76.15645445489353, 37.69808409222334], [-76.21963824192497, 37.65078220379935], [-76.17342205239565, 37.61223716304381]]]}, \"type\": \"Feature\", \"properties\": {\"color\": \"none\", \"opacity\": null, \"dash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment