Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Last active November 19, 2018 06:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save bsudekum/5431771 to your computer and use it in GitHub Desktop.
Save bsudekum/5431771 to your computer and use it in GitHub Desktop.
Neighborhood Map with Combined Raster and Vector Data
<!--Example for: http://mapbox.com//blog/vector-tile-sandwich/-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<html>
<head>
<link href='http://api.tiles.mapbox.com/mapbox.js/v1.0.0/mapbox.css' rel='stylesheet' />
<script src='http://api.tiles.mapbox.com/mapbox.js/v1.0.0/mapbox.js'></script>
<script src='http://bl.ocks.org/rsudekum/raw/5431771/nycneighborhoods.js'></script><!--Processing Steps https://gist.github.com/lxbarth/5452832-->
<style>
html,
body,
#map {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.leaflet-top-pane {
pointer-events: none;
}
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = L.mapbox.map('map').setView([40.75, -73.94], 15);
// Set base style of vector data
function style(feature) {
return {
weight: 0,
fillOpacity: 0.5,
fillColor: '#FFEDA0'
};
}
// Set hover colors
function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 10,
opacity: 1,
color: '#09F',
dashArray: '3',
fillOpacity: 0.7,
fillColor: '#FEB24C'
});
}
// A function to reset the colors when a neighborhood is not longer 'hovered'
function resetHighlight(e) {
geojson.resetStyle(e.target);
}
// Tell MapBox.js what functions to call when mousing over and out of a neighborhood
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight
});
}
// Add vector data to map
geojson = L.geoJson(neighborhoods, {
style: style,
onEachFeature: onEachFeature
}).addTo(map);
// Here is where the magic happens: Manipulate the z-index of tile layers,
// this makes sure our vector data shows up above the background map and
// under roads and labels.
var topPane = map._createPane('leaflet-top-pane', map.getPanes().mapPane);
var topLayer = L.mapbox.tileLayer('bobbysud.map-3inxc2p4').addTo(map);
topPane.appendChild(topLayer.getContainer());
topLayer.setZIndex(7);
</script>
</body>
</html>
This file has been truncated, but you can view the full file.
var neighborhoods={type:"FeatureCollection",features:[{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK43",NTAName:"Midwood",Shape_Leng:27996.5910663,Shape_Area:35799638.2503},geometry:{type:"Polygon",coordinates:[[[-73.94732672160579,40.62916656720943],[-73.94642266064318,40.6243855672864],[-73.94542442897408,40.624495609598185],[-73.94451833370498,40.61971364709504],[-73.94651373127873,40.61949401914963],[-73.94573691912028,40.61536340675661],[-73.94742608780807,40.61422460055365],[-73.95026514882962,40.613924351797365],[-73.94978380450677,40.61137175047764],[-73.95256553090685,40.610987184733915],[-73.95258786948972,40.61111223958901],[-73.95359888852907,40.610949865606365],[-73.96237947824763,40.6099863745258],[-73.96471983385584,40.6223729607027],[-73.96864510622689,40.621941695814826],[-73.96909724465462,40.62433282513798],[-73.97047171931135,40.62417003048162],[-73.97136622157025,40.628929162715856],[-73.9700010976348,40.62911347375596],[-73.96040734342054,40.630162530576236],[-73.95995565121835,40.627778672540586],[-73.94732672160579,40.62916656720943]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK75",NTAName:"Bedford",Shape_Leng:29992.9186423,Shape_Area:32629833.2384},geometry:{type:"Polygon",coordinates:[[[-73.9419307888223,40.700725234695796],[-73.9443878859649,40.70042452378256],[-73.94032793962099,40.679889974562045],[-73.95155682676496,40.680498847575564],[-73.95337017442844,40.68064050844405],[-73.95468418916532,40.68724485443739],[-73.95956770187361,40.68668255592752],[-73.96029281668112,40.690346249915414],[-73.9554105801563,40.69090829188613],[-73.95614239268207,40.69457901857237],[-73.96015854658303,40.69411730965861],[-73.96105100633972,40.698326078818845],[-73.95701993123406,40.698973914349565],[-73.95722517405626,40.69999935002626],[-73.95745736438872,40.70082260318481],[-73.9538119690652,40.70318097979544],[-73.95128819368696,40.70092236548562],[-73.94705205231445,40.70366394984246],[-73.94322686012315,40.701520709145726],[-73.9419307888223,40.700725234695796]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX40",NTAName:"Fordham South",Shape_Leng:15878.2719048,Shape_Area:6307283.11567},geometry:{type:"Polygon",coordinates:[[[-73.89138023380261,40.86170058826304],[-73.89106280679233,40.86152941211723],[-73.89115375612214,40.8609136161673],[-73.89174395026582,40.86017714781636],[-73.89477596069362,40.85592952563453],[-73.89560883346181,40.85457037009787],[-73.89709926839369,40.85517229144544],[-73.89831118626606,40.85406115105141],[-73.89863543744137,40.8539069754361],[-73.89816577520747,40.85514637639308],[-73.90077922747537,40.856047109729],[-73.90185996053039,40.854586149762476],[-73.90395154262701,40.85497392351847],[-73.90557007307467,40.855787322394086],[-73.90522170028436,40.85620359480261],[-73.90468371410955,40.85706030172481],[-73.90565953515404,40.85739873416115],[-73.90351390498017,40.86091750964765],[-73.90254479392595,40.86057825533626],[-73.90188007349444,40.861693624619896],[-73.90107966951528,40.86275638342237],[-73.89943670840407,40.86211691206553],[-73.89798099370022,40.86240253986979],[-73.89714379809884,40.8624450646499],[-73.89883814571424,40.85930730834145],[-73.89573924665535,40.85813820676463],[-73.89469326407509,40.85942628230906],[-73.89381026072503,40.85898656513199],[-73.8932152075781,40.85987420615567],[-73.89138023380261,40.86170058826304]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK88",NTAName:"Borough Park",Shape_Leng:39247.2280093,Shape_Area:54005019.2672},geometry:{type:"Polygon",coordinates:[[[-73.97604935591413,40.631275905646625],[-73.97716511994669,40.63074665412932],[-73.97623453682753,40.62597635073021],[-73.97726150032736,40.62585277281359],[-73.97719665645003,40.62510197855895],[-73.97710959292839,40.62494826019411],[-73.97656583927008,40.621994903193695],[-73.97705352864567,40.621532521807595],[-73.97539380523676,40.62076998723731],[-73.97752301889588,40.61767654076734],[-73.97785009338101,40.61728760629201],[-73.97537335532121,40.615754722382384],[-73.97548097046216,40.61631192464173],[-73.97335879350746,40.6165417152966],[-73.97290326943272,40.61415296838449],[-73.97399319461375,40.61402989424249],[-73.97517176991694,40.61472418588103],[-73.97477657974535,40.61263847492684],[-73.98627524709667,40.619566616589694],[-73.98569357824182,40.620131514447564],[-73.99432497413301,40.62534290879739],[-73.99489280561377,40.62546179419167],[-73.99464972974172,40.62569717922154],[-73.99507814869848,40.625806737837095],[-73.99678847531307,40.62682605141273],[-73.9972406703973,40.62528868702802],[-74.00251454806296,40.628474209562555],[-74.00193011441127,40.62903276789133],[-74.00702302486353,40.632109995476355],[-74.00556490392158,40.63308317641419],[-74.00735636662996,40.63416362723899],[-73.99917564718909,40.64202544202908],[-73.99551033696268,40.63980966713001],[-73.98834986671028,40.644562243887236],[-73.98331628452112,40.64147868283308],[-73.98299419175464,40.641324996848994],[-73.98042057821881,40.64238522690571],[-73.97911188671777,40.635440386439235],[-73.97688861212461,40.63567486202834],[-73.97604935591413,40.631275905646625]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK96",NTAName:"Rugby-Remsen Village",Shape_Leng:30957.8534277,Shape_Area:32706946.2248},geometry:{type:"Polygon",coordinates:[[[-73.90855790522767,40.65209593779449],[-73.9199506303303,40.64470763023232],[-73.91973736982146,40.642778148345094],[-73.92332654587366,40.63990021559207],[-73.92356525947066,40.64249929828657],[-73.9253823310077,40.642384532667144],[-73.92574389425859,40.64001446624982],[-73.92910623104004,40.63979510591557],[-73.93038144303132,40.65173405423812],[-73.93139116688346,40.651689608124826],[-73.93190743828843,40.65653765254258],[-73.92799465117675,40.65680210148145],[-73.92834017576637,40.660060036443674],[-73.92819257918781,40.660177173537924],[-73.92725505391624,40.65933756357772],[-73.92646424218866,40.65981436177378],[-73.93068465493032,40.66362047727534],[-73.92637970549279,40.66551489214158],[-73.92008167071675,40.6598576334602],[-73.9197439953138,40.66077097395037],[-73.91959479824105,40.661995679287955],[-73.91860168097769,40.6611180486065],[-73.91829936279709,40.66116125739899],[-73.91818493104373,40.66072620891552],[-73.91236458830647,40.655513564746265],[-73.91012255698539,40.6558517710515],[-73.90933499313,40.65280859214414],[-73.90855790522767,40.65209593779449]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN52",NTAName:"East Flushing",Shape_Leng:25843.3646737,Shape_Area:29454380.2414},geometry:{type:"Polygon",coordinates:[[[-73.79493246233996,40.75779803007453],[-73.79457726989999,40.753563011339054],[-73.79471901146249,40.750647616849946],[-73.79566544951747,40.7502362003233],[-73.7972952469919,40.74943505289048],[-73.79704716101422,40.74933231844464],[-73.79472264944069,40.74759933020903],[-73.79467568818256,40.74721192846292],[-73.79826235434996,40.7469656555079],[-73.80335214152791,40.74643196519162],[-73.80294034198921,40.747408916966215],[-73.80276629254254,40.74812214458653],[-73.80274910920711,40.74860675176243],[-73.80287666488456,40.74976514967169],[-73.807505993244,40.75013658659011],[-73.81416171989227,40.7461385803268],[-73.81710925626692,40.74876054447376],[-73.82084928836743,40.75224154492548],[-73.8184078292423,40.7538304220785],[-73.82030067736777,40.75551497972041],[-73.81789245661818,40.75708633798175],[-73.8206359333937,40.758872267847984],[-73.8122677810063,40.76113002164715],[-73.81104963173331,40.76141702058462],[-73.80951372622064,40.761299911024956],[-73.80399971294423,40.760270487532594],[-73.80030039037474,40.75970229914452],[-73.79493246233996,40.75779803007453]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN07",NTAName:"Hollis",Shape_Leng:20976.3325073,Shape_Area:22887594.8427},geometry:{type:"Polygon",coordinates:[[[-73.75725671509139,40.71813860166256],[-73.75401024530535,40.71383490137963],[-73.75370834622872,40.713324636739706],[-73.7512124696992,40.70730658007804],[-73.75047058182726,40.705639931035],[-73.7609554655067,40.70290957793805],[-73.76126359340697,40.70359894095922],[-73.76612489376727,40.702334485772944],[-73.76657282468801,40.70275162101321],[-73.7670144177662,40.705268131307605],[-73.76725075938906,40.70631255784999],[-73.76825969052467,40.709526367876904],[-73.76881217340589,40.7098081235521],[-73.77084362930016,40.71017162598519],[-73.77165155288668,40.71022237216552],[-73.77172444678736,40.7103168188554],[-73.77118657762158,40.71049950965711],[-73.77076577553446,40.710735237831095],[-73.76943987094936,40.7119768925562],[-73.77192122006916,40.715685044955556],[-73.76733228152935,40.71728979681192],[-73.76664095243684,40.71764661366442],[-73.76571447240636,40.71639337871298],[-73.75832728673095,40.71958208936393],[-73.75725671509139,40.71813860166256]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN53",NTAName:"Woodhaven",Shape_Leng:28070.5853694,Shape_Area:37001317.0344},geometry:{type:"Polygon",coordinates:[[[-73.84913837308937,40.69828274120274],[-73.84947763541672,40.69819580789678],[-73.848941289827,40.69755684757132],[-73.84773325527168,40.694775279966876],[-73.84500533216854,40.689243911926994],[-73.84419150920426,40.68947440763616],[-73.84119605663224,40.6833513668439],[-73.84451063790645,40.682415088342594],[-73.84583237438072,40.68210645072872],[-73.84786817631941,40.68148683212282],[-73.85197864600372,40.68256421128579],[-73.85099089348894,40.68056836766129],[-73.85392389162108,40.67968615630427],[-73.8581983610058,40.6794308490694],[-73.85878576902988,40.68063046364428],[-73.86334943593043,40.67935164088971],[-73.86410096679133,40.68237285029261],[-73.86499404523256,40.68212896989971],[-73.86602666805608,40.681918051772136],[-73.86631496942951,40.68324894282317],[-73.8665984834927,40.68526955906988],[-73.86746088891041,40.68841501759644],[-73.86859478104992,40.69388437469182],[-73.86868454304548,40.69403469190483],[-73.86842489712785,40.694718119514384],[-73.86455708949681,40.695520456512305],[-73.85744447739619,40.69691298471677],[-73.85657185216417,40.697064691525384],[-73.85277238650318,40.69755711194457],[-73.85262948594747,40.69765207765747],[-73.85260966053019,40.69780503974867],[-73.85262446517025,40.6981141067791],[-73.85271130876977,40.6984149620038],[-73.85328620630749,40.69928735744506],[-73.85377512631813,40.69990956791649],[-73.85443455677652,40.70060295213103],[-73.85410116469247,40.70051374882674],[-73.85070842256266,40.70020312510436],[-73.84913837308937,40.69828274120274]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK44",NTAName:"Madison",Shape_Leng:26237.2576821,Shape_Area:27379161.9311},geometry:{type:"Polygon",coordinates:[[[-73.93753749374041,40.60855739025751],[-73.93972613932709,40.60713291512287],[-73.9342626672588,40.60223071136695],[-73.93503274500162,40.60173379039817],[-73.93447158901417,40.60123151189733],[-73.94288954061497,40.60031865019876],[-73.9424847334074,40.5982003656123],[-73.9569271971363,40.59661207631129],[-73.95775745988533,40.600985889105324],[-73.95683001633208,40.60108734857495],[-73.95859278495767,40.610403030935025],[-73.95359888852907,40.610949865606365],[-73.95258786948972,40.61111223958901],[-73.95256553090685,40.610987184733915],[-73.94978380450677,40.61137175047764],[-73.95026514882962,40.613924351797365],[-73.94742608780807,40.61422460055365],[-73.94573691912028,40.61536340675661],[-73.94482770996294,40.61604620910936],[-73.94354698000032,40.609346555698174],[-73.9423117585933,40.6082681973258],[-73.93934703447131,40.61018714136907],[-73.93753749374041,40.60855739025751]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK27",NTAName:"Bath Beach",Shape_Leng:22382.4333952,Shape_Area:20535358.6786},geometry:{type:"Polygon",coordinates:[[[-74.00200394743437,40.594132371275634],[-74.00268285455572,40.595086781232645],[-74.00328997261896,40.59576466791036],[-74.00363402013242,40.596080599242896],[-74.0055262205206,40.59753915407065],[-74.00921723904908,40.59984404515234],[-74.01041238894331,40.60047518165807],[-74.012369816027,40.60134925711616],[-74.01478363716747,40.60208210297079],[-74.01582404828716,40.602294980866354],[-74.01723483139561,40.602475457625395],[-74.01799227936893,40.60249195235383],[-74.01832347216852,40.60241765113043],[-74.0191356396883,40.60261275450483],[-74.0194276082381,40.60287157834806],[-74.01823145051439,40.60410847250304],[-74.01811904973299,40.60431522282666],[-74.01750868531174,40.604850497235326],[-74.01746711446849,40.60496510432628],[-74.01549855009637,40.60684152427689],[-74.01701910154738,40.60765441697112],[-74.01050403587408,40.61389661149247],[-74.00830383413292,40.612568000045464],[-74.00094408424448,40.60863971017321],[-74.00264412402818,40.60725717532029],[-74.00493448904164,40.60507440640119],[-74.00032353820893,40.602620291869876],[-74.0000226609666,40.60290731572653],[-73.99559320696717,40.60023222172224],[-73.9999650301034,40.59599430326762],[-74.00200394743437,40.594132371275634]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK45",NTAName:"Georgetown-Marine Park-Bergen Beach-Mill Basin",Shape_Leng:89682.6416777,Shape_Area:69306738.2796},geometry:{type:"Polygon",coordinates:[[[-73.91716071485482,40.631730125996974],[-73.91738424050375,40.631621200408595],[-73.91750657335892,40.63144181608542],[-73.9175182320955,40.63134025951667],[-73.91731999012455,40.6310071527185],[-73.91535460301542,40.62999169406549],[-73.90396106645302,40.624833615553555],[-73.90269333271978,40.62421333487324],[-73.90296245919828,40.62387342321001],[-73.90297492804936,40.623741614998735],[-73.90288185636997,40.623541946245076],[-73.90282481652858,40.623475991194745],[-73.90264935184751,40.62342475398903],[-73.90235141831147,40.6234766989469],[-73.90222272784433,40.62317990436057],[-73.90197312145975,40.62291058752607],[-73.90173205050394,40.62289887717557],[-73.90138100532675,40.62277785946976],[-73.90098717516369,40.62254138634816],[-73.90093279160557,40.62232107154276],[-73.90081824799263,40.62213849782472],[-73.900906937863,40.62205961644279],[-73.90090577370387,40.62198244845868],[-73.90070461116055,40.6216287943214],[-73.90035599947878,40.62161210493906],[-73.89965575349545,40.62179949851383],[-73.89935213792371,40.62175475971287],[-73.89897430878857,40.62182528079098],[-73.89873420070207,40.621824405286226],[-73.89856919775039,40.62178111661237],[-73.89811767568176,40.62185156112115],[-73.89763690014684,40.62176657132233],[-73.89744594330084,40.62168764798319],[-73.89699450437281,40.6216735095235],[-73.89684302276325,40.62162006432906],[-73.89675081965709,40.62151432225977],[-73.8964592110355,40.621415907325485],[-73.89630006113575,40.621071292303455],[-73.8962884773704,40.620736499471384],[-73.89622243312348,40.620840220506864],[-73.8960784226671,40.620606288919134],[-73.89607184210553,40.62050601557945],[-73.89585305268287,40.62038737966314],[-73.89572932995608,40.62024091525815],[-73.895777403447,40.62001992053207],[-73.89572773952997,40.619945491650974],[-73.89566550350557,40.619939533809564],[-73.89570509771262,40.61988942230157],[-73.89561388502008,40.619801286648034],[-73.89571934668956,40.619529950159304],[-73.89561044743611,40.61935053338502],[-73.89572065746995,40.619313085152264],[-73.89585293851337,40.619144619367795],[-73.89599673834282,40.618817542596084],[-73.89608357746043,40.61838279088436],[-73.89635415386765,40.61811034041996],[-73.89645347974516,40.618075570507784],[-73.89639712615575,40.61790177411835],[-73.89648375407747,40.617831695222165],[-73.8964513003807,40.61773897440086],[-73.89654715295197,40.6176904228593],[-73.89664335291342,40.61734771214283],[-73.8966242402839,40.61712890732468],[-73.89645381196944,40.61676998177017],[-73.89646687893256,40.616426839921104],[-73.89651297446873,40.61636317468151],[-73.8964512933026,40.61630336439688],[-73.89646002707954,40.61612987389046],[-73.89633131361602,40.61604826541907],[-73.8962557865275,40.61609085133227],[-73.89617052459138,40.616001183703645],[-73.89624565836068,40.61586395634586],[-73.89616744953219,40.61582444421114],[-73.89617336977582,40.615654491230984],[-73.89607657352863,40.615616278518445],[-73.89610524671181,40.615545488759565],[-73.8959872530431,40.61545071409955],[-73.89598371160906,40.6152732325188],[-73.89573445152965,40.6148877471201],[-73.89580527745035,40.61480936571685],[-73.89597637857318,40.614870757057446],[-73.89602881667919,40.614804599549416],[-73.89586112894187,40.61451813749475],[-73.89558999982893,40.61443768970866],[-73.89555890712725,40.61435174889824],[-73.8955022129445,40.61442177258131],[-73.8954181943246,40.61441401010706],[-73.89473568611915,40.614047204541144],[-73.89427581474105,40.61388264324873],[-73.89395165016079,40.61383834548459],[-73.89315059976589,40.613890222015065],[-73.89249926249767,40.61379231117859],[-73.89189118166037,40.613563922169114],[-73.89134028451961,40.61325620639798],[-73.89095414564764,40.61283404681449],[-73.89104410644788,40.61250956099791],[-73.89120818997512,40.61242767391711],[-73.8914143047419,40.612125447699476],[-73.8916642358477,40.61205311061253],[-73.89174190772178,40.612129681247986],[-73.8918292278627,40.61203210372876],[-73.89209633768657,40.611960578803185],[-73.89208616110304,40.61206187976986],[-73.89215284463705,40.61207390912375],[-73.89274879521166,40.61172983013126],[-73.8931149978243,40.61176283471906],[-73.89369637954489,40.61151573726233],[-73.893932400722,40.61153659672417],[-73.894042279015,40.61142833356317],[-73.89396385060903,40.611214222580756],[-73.89389343874527,40.611168538599344],[-73.89383232489574,40.611232545619885],[-73.89358085539486,40.611165724958],[-73.8936083482209,40.611045116072575],[-73.89354938853043,40.61100089763643],[-73.89308853752236,40.61119337427973],[-73.89290770999388,40.61120865966457],[-73.89262435604579,40.611394080184304],[-73.89243289959182,40.611412236895475],[-73.89202221648088,40.61155825816995],[-73.89189389152556,40.61153467024532],[-73.89184576980703,40.61160338259247],[-73.89176776994218,40.611595321219774],[-73.89176733298606,40.61168666821164],[-73.89162453754805,40.611791082358],[-73.89145981786119,40.611822986803496],[-73.89134842585987,40.61192797924841],[-73.89099709323192,40.61205245241619],[-73.89115950751257,40.61217719316161],[-73.89107794632702,40.61227686136592],[-73.89058827569782,40.61213320017272],[-73.89033390698275,40.61201147322667],[-73.8901369809088,40.61184865649861],[-73.88979163196096,40.61168591567516],[-73.88970208130915,40.61156330202882],[-73.88978451776195,40.61095524400533],[-73.8903021138949,40.6103176568625],[-73.89066106589078,40.610022356259606],[-73.89147510631477,40.609506914455544],[-73.89194461446812,40.609102252148276],[-73.89199251089263,40.60910476805298],[-73.89186552721651,40.60932258442978],[-73.8919820446748,40.6093849739407],[-73.89179320143204,40.6093933046156],[-73.89173846460523,40.609455587972654],[-73.891793010136,40.609467249270594],[-73.89176940682312,40.60951926895923],[-73.8919538110868,40.60945010835277],[-73.89210797938071,40.609236762284624],[-73.89226735524917,40.60916527314726],[-73.89223415157564,40.60909673199574],[-73.89237210877516,40.60872812515516],[-73.89222320475713,40.60862708685813],[-73.89233887870334,40.60863131246197],[-73.89242327207697,40.608558242738695],[-73.89232081489422,40.60848749507676],[-73.89222497129086,40.60855910000408],[-73.89217035937482,40.60854472135727],[-73.8922865289052,40.608242242865565],[-73.89248324107521,40.60815330456533],[-73.89253453490474,40.60774525542687],[-73.8927294499925,40.60722719231646],[-73.89282052082665,40.607143478027425],[-73.89311202433863,40.60705204705147],[-73.89321442938618,40.6068612689135],[-73.89334621420016,40.60674344623463],[-73.89426670628801,40.60644371457624],[-73.89466683917875,40.60645514392863],[-73.8948616843436,40.606404763206385],[-73.89549686545362,40.60601168248963],[-73.89591344490745,40.60584471127703],[-73.89619251418554,40.60582198972616],[-73.89672573151203,40.60563653751714],[-73.89702463446018,40.60561901997692],[-73.89718195493796,40.60556401725866],[-73.89740632846313,40.605581015408056],[-73.89787099830083,40.6054482516101],[-73.89810829528948,40.60544593756182],[-73.89833878117786,40.60530365978796],[-73.89864718918479,40.60529798036111],[-73.8991618172477,40.605528084848686],[-73.89938188499728,40.60546259405862],[-73.89959332756766,40.60553032957509],[-73.89986880363865,40.605524640544026],[-73.8999065606021,40.60563523446464],[-73.9001507242468,40.6058706529117],[-73.90033080688526,40.6061453362136],[-73.90051858955584,40.60627776299231],[-73.90087672510099,40.60698012084471],[-73.90056595304031,40.60747450979005],[-73.90051041514224,40.60833961239357],[-73.90044035823001,40.608567899093984],[-73.90048641763462,40.6087069191133],[-73.90047685714813,40.60921746982685],[-73.9002510678945,40.60951740547905],[-73.9002164372098,40.60998884313636],[-73.90015619870587,40.61007643818634],[-73.90043779117451,40.61024232430781],[-73.90044811625698,40.61044477136128],[-73.90070837436885,40.61057054175736],[-73.90091868380286,40.610777413564136],[-73.90102985378253,40.6108227331405],[-73.90111116990545,40.610989602768164],[-73.90134997400656,40.61108861510195],[-73.90144034047312,40.611325015308104],[-73.90142267880158,40.611394253992536],[-73.90135576888217,40.611369037244394],[-73.90130949868559,40.61142783121636],[-73.90133303458653,40.611717882905936],[-73.90161461650204,40.61186404809832],[-73.90198714603123,40.61174540096807],[-73.90228989425341,40.61196157467679],[-73.90248711043357,40.61186185849169],[-73.90249393051246,40.61181499903282],[-73.90119253531397,40.61056381754712],[-73.9013296265948,40.61048104260068],[-73.90124836865567,40.610580274499064],[-73.90253555121055,40.61182621119939],[-73.90265077946786,40.611780621164144],[-73.9023603209621,40.61198041218252],[-73.90240693601822,40.61201601667777],[-73.90271854260655,40.611826025295905],[-73.9026382774741,40.6119065225553],[-73.90292666983436,40.61215944197639],[-73.903043928125,40.61209521498722],[-73.90291750370362,40.61218654344856],[-73.9026291824535,40.61192580917078],[-73.90242274717579,40.61203356000472],[-73.90587105277372,40.615063313977224],[-73.90590695505027,40.61503857270341],[-73.90573455967194,40.614882973944304],[-73.90588571048661,40.61500182609017],[-73.90599790579637,40.61492589692835],[-73.90603328990818,40.614953389220034],[-73.90592831880679,40.61499075664411],[-73.90596638222891,40.6150241002557],[-73.9058793762093,40.615077461411374],[-73.90696515116674,40.6160638715007],[-73.90696283645076,40.61611401757879],[-73.90717291149848,40.61600987533837],[-73.9067384873236,40.616295919990634],[-73.9068102317299,40.61635959428095],[-73.9072568563101,40.61608758137728],[-73.90708346968337,40.616221367023186],[-73.90722592371317,40.61635152593182],[-73.90741202194353,40.61623521872395],[-73.90744255412142,40.616258535198014],[-73.90702160678445,40.616533600356725],[-73.90710595399024,40.61660986021423],[-73.90752735132169,40.61634443254889],[-73.90724169448653,40.6165515018881],[-73.90747503705717,40.616712744568424],[-73.9075897717354,40.61662937645122],[-73.90767882862006,40.61669544000803],[-73.90755135602242,40.61678073963053],[-73.90765229512203,40.61691575661923],[-73.90768941024841,40.61694708904552],[-73.90778588935459,40.61689355788845],[-73.90796806538614,40.61704658677698],[-73.90776459767008,40.61721717455732],[-73.9078114318734,40.61726486405763],[-73.90775403862023,40.617316440382986],[-73.90781388603344,40.617374067585814],[-73.90815289957095,40.61716189199078],[-73.90839229831542,40.61738842851886],[-73.9086035159349,40.617265496551596],[-73.90879088083601,40.61743639672187],[-73.90886910990892,40.61739079305856],[-73.9086333391297,40.61716785490936],[-73.90866392881271,40.617150410808485],[-73.90883691044824,40.6173116466271],[-73.90907145153953,40.61716043833181],[-73.90835403214679,40.6165309989615],[-73.90879420819165,40.616872957324595],[-73.90913839448287,40.61663255111025],[-73.9091385318665,40.616531621729024],[-73.90810560476342,40.61566901642846],[-73.90797306390519,40.61573684406117],[-73.90815663917553,40.615601124052056],[-73.90812345822499,40.61565156228681],[-73.90917675105398,40.61652194698021],[-73.90916894153116,40.61664616184899],[-73.9088145620859,40.6168904418824],[-73.90895706128723,40.61699148481931],[-73.90964406106316,40.61657537150002],[-73.90959740910344,40.61639266979932],[-73.90900782730672,40.615772786907236],[-73.90865024676272,40.615484555687146],[-73.90857474481757,40.61544019631185],[-73.90840539833196,40.615436708573355],[-73.9083429534466,40.61537312326988],[-73.9078559619706,40.61520595414647],[-73.90740582886431,40.61475340341183],[-73.90730153384287,40.614808913007636],[-73.90687239780969,40.614262558343306],[-73.90674467587279,40.61430216486303],[-73.90544378703109,40.61301450800288],[-73.90535513087121,40.613066057932535],[-73.90505053373568,40.61290299700333],[-73.90509488171138,40.612863323554244],[-73.9049621066023,40.612793721641296],[-73.90490995852835,40.612821475765905],[-73.90424103859337,40.612362273218736],[-73.904374107663,40.61222538629694],[-73.90428823037091,40.61215582277307],[-73.90429103725161,40.61201485612879],[-73.90420814047536,40.611955152098496],[-73.90410629882955,40.61204241028692],[-73.90404332529344,40.611998686431654],[-73.90416083811616,40.611972581088295],[-73.90409929902896,40.61192776700769],[-73.90414089145172,40.61189613938368],[-73.90350980782243,40.611406490372566],[-73.90331047012576,40.61154716336105],[-73.90328328961701,40.61151984615906],[-73.90349407447778,40.61138900874263],[-73.90333856047305,40.61127148761561],[-73.90313578772971,40.61096753815764],[-73.902864961312,40.61088193328251],[-73.90274504603438,40.61093146873197],[-73.90262906864338,40.61081018839827],[-73.90268277928783,40.610752722666966],[-73.90239138175347,40.61048244972478],[-73.90232361334394,40.610504232585065],[-73.90225859966282,40.61042277259991],[-73.90221442765989,40.61034331552943],[-73.90222497639522,40.61025596362203],[-73.90227449074735,40.61024607779059],[-73.9022051636035,40.60955308455925],[-73.90207490818696,40.60954900355567],[-73.90214599026838,40.60904276505956],[-73.90210336163585,40.60903791648646],[-73.90196164219763,40.608619700032634],[-73.90196196584289,40.60839931125428],[-73.90201440743094,40.608350681397596],[-73.90187803478115,40.607807784152044],[-73.90189745342381,40.607233177532706],[-73.90167739606474,40.60609454913325],[-73.90170081103138,40.605872221300025],[-73.90164211856032,40.60576336073943],[-73.9017766980998,40.60567468655582],[-73.90189710069487,40.60572961179575],[-73.90524300992102,40.60491009032437],[-73.90539181422359,40.60522680882984],[-73.90533534473151,40.60532427015959],[-73.90542440003223,40.60554029758934],[-73.90560690377093,40.60589785864346],[-73.90597461177859,40.60638402870431],[-73.90623422339367,40.60635397950462],[-73.90753931189495,40.60636906564094],[-73.90811001233516,40.60627326534357],[-73.90821683308833,40.606372978591644],[-73.90837376514949,40.606396627742306],[-73.90844815360892,40.606616746739654],[-73.9086395953543,40.60665872204782],[-73.90882919866134,40.60656496499527],[-73.90849236685108,40.60577213712303],[-73.90824110417495,40.605322778618245],[-73.90803306163762,40.60535860211774],[-73.908403615746,40.60524329655718],[-73.90829586897212,40.60530550148995],[-73.90873438126891,40.60615315961842],[-73.90877708078678,40.60635914661787],[-73.9088430576896,40.606464132002095],[-73.90892527516432,40.60646650338679],[-73.90885497392858,40.606494719034984],[-73.90888574488106,40.606536518828904],[-73.90906279646927,40.60646614621086],[-73.9093380498315,40.606477603024715],[-73.90984528326649,40.606168305507104],[-73.90980883801976,40.60608086004917],[-73.9098515484547,40.60599972217768],[-73.9097766138252,40.60582267723146],[-73.90960943418467,40.605657795045516],[-73.90898535789196,40.605150509643025],[-73.90894531863216,40.60504942652807],[-73.90885691315674,40.605060073797084],[-73.9086135800791,40.60451654786],[-73.90854436867023,40.60444585598158],[-73.90845796643141,40.604461098354776],[-73.90832536901115,40.604073373919114],[-73.90889944956533,40.60391367252357],[-73.908933757392,40.60397652867705],[-73.90913452907007,40.603944106848786],[-73.91092270021181,40.603505476100665],[-73.91329003999552,40.6038784358374],[-73.91365119825542,40.60398251383745],[-73.91362533833535,40.604016487075725],[-73.91377776513093,40.60420645695379],[-73.91384142172964,40.604157684185125],[-73.91497779074933,40.60520409454705],[-73.91491345288112,40.60524538625503],[-73.9150438909926,40.60535572210593],[-73.91509616293007,40.60532360703462],[-73.91591887691345,40.60606219940045],[-73.91626594416158,40.606440633658835],[-73.91634828533685,40.606460597248315],[-73.91673556552145,40.60681456155063],[-73.91669736890358,40.60683596955621],[-73.91675554034511,40.60690644261107],[-73.91660442147952,40.60708939344468],[-73.91670644426722,40.60716337556578],[-73.91661465264765,40.60720525980093],[-73.91672115759042,40.60762484678012],[-73.91632230017527,40.60867566266898],[-73.91678394432881,40.608773883387016],[-73.91657073983426,40.609423539545915],[-73.9166256837356,40.60943683665813],[-73.91683981118769,40.60876001472051],[-73.91648700927333,40.60869920872233],[-73.91650924535931,40.60862975409],[-73.9168896452137,40.60871001368643],[-73.91682803243759,40.6089060573667],[-73.91699867098366,40.60893673031203],[-73.91705165841826,40.60881413058774],[-73.91708838503378,40.60882085439592],[-73.91702822807846,40.608974877413914],[-73.91681964463758,40.60893138587951],[-73.91665676533472,40.609436749970754],[-73.91681037024921,40.60946691562477],[-73.91679953156698,40.60949419172892],[-73.91670379289532,40.60947271234206],[-73.91668075282955,40.60955133512095],[-73.91664099875594,40.60954543189039],[-73.91666379795961,40.609457285588086],[-73.91656604065828,40.60943782267771],[-73.91638585145215,40.61008889290486],[-73.91627678158129,40.61010958945695],[-73.91606077132589,40.610430509362885],[-73.91616475103677,40.61051557507657],[-73.91562898108957,40.610883477544874],[-73.91492035932123,40.61126665733807],[-73.91499950921296,40.61133572880917],[-73.91489001105658,40.611393159492586],[-73.91481827328,40.61134207784814],[-73.91464933054561,40.611455026072946],[-73.91449542205983,40.61165322366484],[-73.91486259053774,40.61329854209974],[-73.91476336525096,40.61337023831931],[-73.91479289847055,40.613532687277996],[-73.91486977857247,40.61349308208824],[-73.91493418790434,40.61395815505493],[-73.91386053126764,40.61464226806618],[-73.91407985934251,40.614888233399455],[-73.914184093778,40.61477876758928],[-73.91422619595808,40.614803351891275],[-73.9141120615842,40.614901478013294],[-73.91428072663379,40.61493881615996],[-73.91450091246794,40.61486515732927],[-73.91466875774394,40.6146752505509],[-73.91477780597874,40.61467722000412],[-73.91642099003498,40.61356935469267],[-73.91591452110686,40.61384537631232],[-73.91595602370155,40.61381978293914],[-73.91572538303373,40.613618030803664],[-73.91576807290616,40.61354033333527],[-73.91575004260966,40.61361719582281],[-73.91597173175467,40.61380783486403],[-73.9162476895966,40.613626100288585],[-73.91588490852122,40.613328587196875],[-73.91574585296351,40.61338485969832],[-73.91596572500268,40.613236396468906],[-73.91588941550161,40.61330979960563],[-73.91626452832607,40.61360561270453],[-73.91638679683794,40.613529680740314],[-73.91633753683129,40.61348352081709],[-73.91639586745889,40.61344683403467],[-73.91599307197502,40.61288193934477],[-73.91587086536366,40.612910037390506],[-73.91600318849481,40.612859738591276],[-73.91641827930158,40.61345026708695],[-73.91645866206088,40.613424671042004],[-73.91650568302609,40.61346912199932],[-73.9164991210399,40.61352054209796],[-73.91662804371157,40.613443589265444],[-73.91573181993083,40.61183084451426],[-73.91674652389305,40.61117845546814],[-73.91658936486044,40.61109075400428],[-73.91671582114817,40.611039850701964],[-73.91667311274031,40.61100582325055],[-73.91682920812514,40.611118077220304],[-73.91811036679013,40.61020839405812],[-73.91810261499,40.610124283595916],[-73.91773185516794,40.6097825382358],[-73.91786638626964,40.60932723380082],[-73.91781719473116,40.60931749853919],[-73.917678707574,40.60966286394368],[-73.91796270083071,40.60878593712031],[-73.9178197277143,40.60930430006587],[-73.9178740024281,40.609311327668316],[-73.91802964453878,40.60884669674165],[-73.91855666120595,40.60849830904335],[-73.91809925464328,40.60809335825891],[-73.9180050056714,40.60814977851509],[-73.91818728656044,40.608024580911184],[-73.91812303793384,40.60808069425781],[-73.91857357570953,40.608487946287326],[-73.91888852417983,40.6082944589664],[-73.91900737147327,40.608267254971075],[-73.91824893434114,40.60758887292727],[-73.91813814889971,40.60764538690761],[-73.91836246737638,40.607501369418706],[-73.91841039790265,40.60754473166757],[-73.91830794532588,40.60761050770842],[-73.91902310765312,40.60825686819941],[-73.91935398484112,40.608042922287694],[-73.91837826940154,40.607174021935734],[-73.91825269092953,40.60722935064055],[-73.91850300413921,40.60707123602699],[-73.91840159359646,40.60715485289806],[-73.91937100495863,40.60803264124229],[-73.91950358918926,40.607974903975204],[-73.9195220973007,40.60773879743431],[-73.9192413501154,40.6073854138606],[-73.91868471829683,40.60696635699283],[-73.91858342180868,40.606771833591665],[-73.91794980567151,40.60620925234263],[-73.91852760833387,40.606113366640464],[-73.91970928731125,40.607302162610544],[-73.92065861731824,40.60675454271114],[-73.92158429111198,40.607639085394126],[-73.92444144415052,40.60579356931496],[-73.92624885113779,40.60741352226003],[-73.92986880245914,40.60507134146077],[-73.93351310733408,40.60834345581005],[-73.93423157627713,40.60789771518754],[-73.93604627615383,40.609514868916904],[-73.93753749374041,40.60855739025751],[-73.93934703447131,40.61018714136907],[-73.9423117585933,40.6082681973258],[-73.94354698000032,40.609346555698174],[-73.94482770996294,40.61604620910936],[-73.94395779538316,40.61681630946454],[-73.94346961883575,40.61738500186908],[-73.94078914087075,40.617696789890935],[-73.93686699606751,40.62025328123272],[-73.93320457514473,40.61697044225085],[-73.9317317921372,40.617926921394435],[-73.92629604565613,40.613116799076955],[-73.92640044535041,40.6144785355309],[-73.92062400307957,40.61483868167492],[-73.92052694107498,40.613942695006216],[-73.91690302737105,40.61627422991105],[-73.91716779456259,40.61838796216506],[-73.91860649634884,40.6320904147211],[-73.91716071485482,40.631730125996974]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN22",NTAName:"East Village",Shape_Leng:13539.0864902,Shape_Area:10895063.5716},geometry:{type:"Polygon",coordinates:[[[-73.98255629297803,40.73135013455457],[-73.9780269795082,40.72943306011252],[-73.9838238729819,40.7214728720669],[-73.9926032219844,40.72413644968337],[-73.99136388138153,40.72755978345912],[-73.99135869097044,40.727782470185666],[-73.99050558603588,40.73056495673773],[-73.99039010002664,40.73128852433004],[-73.98986852139564,40.73352711455489],[-73.9899029597005,40.73443479013687],[-73.98255629297803,40.73135013455457]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN15",NTAName:"Clinton",Shape_Leng:35039.6065756,Shape_Area:18381428.3227},geometry:{type:"Polygon",coordinates:[[[-73.99383108203097,40.772931787348064],[-73.9935026218083,40.77275163310052],[-73.9938744512607,40.77223816788824],[-73.98236545105638,40.76739215321349],[-73.99163271310638,40.754706805009576],[-73.99730671411196,40.75711050703354],[-73.99547450167069,40.759626857017516],[-74.00127796266635,40.762075824671854],[-74.00153309066982,40.76264459812758],[-74.00375734971597,40.76358224164056],[-74.00361214794175,40.7637770439097],[-74.001386036986,40.76285009500187],[-74.00097308022016,40.76342027172565],[-74.0031497698899,40.76433288818462],[-74.0029480951572,40.764616835428725],[-74.00306161234066,40.76466578265341],[-74.00316194577044,40.764612610454606],[-74.00322275585361,40.7646380376702],[-74.00310088162895,40.76474574810679],[-73.9999271236773,40.763406528479315],[-73.99962263458187,40.763559081210445],[-73.99915098154007,40.76420525958269],[-74.00228802371478,40.76556154329262],[-74.00202454396437,40.76589326657036],[-73.99888473174988,40.76456937704849],[-73.99857638530538,40.76499860727076],[-73.99868870694561,40.76520856994725],[-73.99843830371465,40.76531621383384],[-73.9982709037445,40.765552233413246],[-74.00154217937306,40.76694470253265],[-74.00156180641582,40.766996499368254],[-74.00139437159498,40.767230047733],[-74.00131469636003,40.76725111954735],[-73.99806675905354,40.76587188113569],[-73.99737808447968,40.76682338537438],[-74.00062837461408,40.76820311105869],[-74.00064950530418,40.76824523610554],[-74.00045489336716,40.76850419517742],[-74.00038586422971,40.76850419542928],[-73.9971558894921,40.767128696172776],[-73.99645715471145,40.76809881579564],[-73.99973590247853,40.769506177331515],[-73.99955518930786,40.76975080774004],[-73.99947253734022,40.76976421496913],[-73.99707176105414,40.768732643576854],[-73.99702628821072,40.768795515623836],[-73.99715035543251,40.76884738771339],[-73.99701071413826,40.76902879065362],[-73.99689311246266,40.76897962881939],[-73.9965712650568,40.76942456827383],[-73.99902682832904,40.77046327298205],[-73.99876206914314,40.77082505670919],[-73.99631327088191,40.76979883633643],[-73.99588004351688,40.77040057901223],[-73.99601693196198,40.77045484888617],[-73.99590077491139,40.77061312350095],[-73.99576733283621,40.77055459545128],[-73.99542474436304,40.77103161516794],[-73.99575648279009,40.771160668465804],[-73.99570859069948,40.77122581253292],[-73.9957977408656,40.771282562764085],[-73.9958168764515,40.771256516415555],[-73.9960017574905,40.77130746533053],[-73.99589990167044,40.77145029858211],[-73.99585437318918,40.77149918074846],[-73.9957911774878,40.77147551882039],[-73.99582805886243,40.7714216672224],[-73.99572993314408,40.77137881879371],[-73.9957512341283,40.77135428177461],[-73.99530566365357,40.7711960049095],[-73.99512395556886,40.77145073826707],[-73.99495733419805,40.77144919069771],[-73.99492582120637,40.77151604240547],[-73.99500915438729,40.77160733944154],[-73.99497688560837,40.77165877492333],[-73.99711218538607,40.77255323669951],[-73.99690946902787,40.77283294565994],[-73.99477407930821,40.771929547530185],[-73.99444501359491,40.77237712658833],[-73.99545515061698,40.77280267502911],[-73.99554492454743,40.77267481382614],[-73.99644894667634,40.77305684199672],[-73.99635558921098,40.77317889165252],[-73.99622972068047,40.773128974542736],[-73.99614329133081,40.77324754156346],[-73.99656159543758,40.773410941448454],[-73.99668544431167,40.77350368804624],[-73.99434192057728,40.77252478194345],[-73.99416328456309,40.77248719051869],[-73.99383108203097,40.772931787348064]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN06",NTAName:"Manhattanville",Shape_Leng:17049.4027787,Shape_Area:10648102.9562},geometry:{type:"Polygon",coordinates:[[[-73.94607828674226,40.82126321606192],[-73.94867681807547,40.8156922860174],[-73.94919960080091,40.81472085458598],[-73.95035019209078,40.813159389289815],[-73.95210125215368,40.81144285350151],[-73.95408058407713,40.8122801128958],[-73.95570690123454,40.8141439600403],[-73.95626958003412,40.813375023165094],[-73.95949328803863,40.81700747377887],[-73.9620310579599,40.81808633097916],[-73.95999892229345,40.82038294480227],[-73.95981462674585,40.820297874198786],[-73.95913061580629,40.82116895377474],[-73.95926255403742,40.82123565535857],[-73.95930263598677,40.821189897523034],[-73.95942624415804,40.82125238173817],[-73.95914685715191,40.82157132855094],[-73.9590329422193,40.8215137462287],[-73.95923467260184,40.82127782476807],[-73.95908960306245,40.82120624705615],[-73.95881892233996,40.821518524846745],[-73.95894172941709,40.82156936400955],[-73.958745236605,40.821805511973615],[-73.9590001835605,40.82240972837457],[-73.95911304090264,40.82245496464577],[-73.95922976279621,40.82228691013254],[-73.95990999444396,40.82257111982197],[-73.95960332460278,40.8229946867833],[-73.95892614718302,40.82271175544133],[-73.95904953331708,40.822541335368214],[-73.95886745433307,40.82245023922803],[-73.95864585147658,40.82190436963174],[-73.958527314581,40.82184375665189],[-73.95820019287855,40.82228313691785],[-73.95813063305594,40.82253109045578],[-73.95793904909122,40.82277435354727],[-73.95822838249192,40.822887867101095],[-73.95814312769234,40.823020721768835],[-73.95950897939188,40.82359578890277],[-73.95634010375613,40.82309232750707],[-73.95573074983062,40.822891257747735],[-73.95082879991435,40.820827937097256],[-73.94992194387584,40.82207231422763],[-73.94854029768318,40.82148762281297],[-73.94808289815671,40.82210802151094],[-73.94607828674226,40.82126321606192]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK50",NTAName:"Canarsie",Shape_Leng:43872.9172735,Shape_Area:82069174.4495},geometry:{type:"MultiPolygon",coordinates:[[[[-73.88833929322337,40.64671022841562],[-73.88853640000423,40.64678842689959],[-73.88850950566919,40.64688116417991],[-73.88846787923313,40.64689973405059],[-73.88829183077068,40.64671871907068],[-73.88833929322337,40.64671022841562]]],[[[-73.8912185346906,40.649987698622624],[-73.8905679298857,40.649208632935014],[-73.89085292300986,40.64937409864864],[-73.89101577841609,40.6493420078926],[-73.89120421309669,40.64912689957998],[-73.891096114747,40.64881249907903],[-73.89087444305505,40.648545703852385],[-73.8905062763391,40.648245028922176],[-73.89023791549397,40.64792341858989],[-73.88945074293736,40.64717395509447],[-73.8893508659988,40.64703469886417],[-73.8894815257607,40.64691275506821],[-73.88879690848673,40.64605025805633],[-73.88876108314658,40.64606991286188],[-73.88941394816896,40.64689299965129],[-73.88937602975044,40.646974754423134],[-73.88918799340546,40.64707951488811],[-73.88904487524694,40.64704697304521],[-73.8889857764388,40.64716344527848],[-73.88886541778214,40.64722003573561],[-73.88876076273782,40.64718067644325],[-73.88853549293229,40.64696814919837],[-73.8886539849689,40.64688506131385],[-73.88859932552033,40.64671246882091],[-73.88843010109088,40.64664738850532],[-73.88808138883988,40.64662057013129],[-73.88809441935732,40.646212786549306],[-73.88828981420744,40.64604421554558],[-73.88821138355607,40.6460031399256],[-73.88800052092991,40.646027705355245],[-73.88740960222484,40.64532928012484],[-73.88750718407202,40.64531656304078],[-73.88751736108665,40.645265323352966],[-73.8879169072362,40.645067548702784],[-73.88806812125316,40.64517019509797],[-73.88805587182868,40.64511978725729],[-73.88791252941961,40.64500348154399],[-73.88734361731748,40.64522415336906],[-73.88709182294316,40.644918971087044],[-73.88691203388534,40.64447377760721],[-73.88678424496287,40.64444631876082],[-73.88678523809314,40.64452233947936],[-73.88654888955998,40.644312490378404],[-73.88654221594702,40.64423207966319],[-73.88641689065331,40.64417945854895],[-73.88622602727344,40.64394905538979],[-73.88623646791805,40.64381678772097],[-73.88613720679561,40.643793956200035],[-73.88602529679085,40.643661450406455],[-73.88585038128603,40.64365188208478],[-73.88469181502597,40.64312114697301],[-73.88373578763787,40.64245034918839],[-73.88190167749923,40.64083493912276],[-73.88078889725647,40.63975743313809],[-73.88076685498287,40.63958164765342],[-73.88055123882255,40.63915881973726],[-73.87953888017081,40.638217839320674],[-73.87935480018263,40.63817938782108],[-73.87911787864046,40.63826658744121],[-73.87905060850309,40.63843594862681],[-73.8789668607105,40.638459544198106],[-73.87863863908073,40.63829360626021],[-73.87843722459073,40.63794869077713],[-73.87863488136264,40.637551781796866],[-73.87846702145629,40.637489830830695],[-73.87783674990145,40.63690231008567],[-73.87714434868597,40.635976498007516],[-73.877493816927,40.63539042397704],[-73.87793889634263,40.63501957113922],[-73.87820590489783,40.634572943662576],[-73.87890455278942,40.63411588241609],[-73.87918335624661,40.63401482552614],[-73.87998767503844,40.633514883481006],[-73.88018468342872,40.63330963859061],[-73.880376294891,40.63298026236327],[-73.8812706817051,40.63236911916171],[-73.88197891997063,40.63217295899953],[-73.88215899502394,40.63200621538491],[-73.88301362103512,40.631626149535364],[-73.88364451728319,40.63094331163599],[-73.88375501660337,40.630556437509995],[-73.88376932796378,40.63022176134237],[-73.8834541292347,40.62990766993482],[-73.88404726149385,40.62956011854649],[-73.88263248433404,40.62827427312688],[-73.88369231571502,40.627559373913996],[-73.88512954089745,40.628827258672004],[-73.88572166971262,40.628446715725644],[-73.88604117197372,40.628697245978984],[-73.88689209910528,40.6285530998932],[-73.887526737062,40.62833182448249],[-73.8881689228092,40.62797571936706],[-73.89048710390392,40.626224778590704],[-73.89069369219948,40.62590086413502],[-73.89069934320831,40.62544909773837],[-73.89090471444999,40.62501619846501],[-73.8912046863418,40.62472656287457],[-73.89149359858223,40.624558213240086],[-73.89196109546783,40.62406345549835],[-73.89237656587159,40.623733235974385],[-73.89300558930357,40.623356468594004],[-73.89329777531114,40.623441598716035],[-73.8935908259393,40.623390049802694],[-73.89492365447435,40.62288643173345],[-73.89547023904034,40.622570616355276],[-73.89577374664722,40.62251907138536],[-73.8959933688141,40.62258304936637],[-73.89596702553497,40.6227026118264],[-73.89607154396438,40.622774457969456],[-73.89826103023658,40.62298916034612],[-73.90114685426452,40.62568538759738],[-73.90412793207697,40.6263061996317],[-73.91633195427718,40.632038731553166],[-73.91679492718991,40.631960170515335],[-73.91716071485482,40.631730125996974],[-73.91860649634884,40.6320904147211],[-73.9199506303303,40.64470763023232],[-73.909448463794,40.65152159879021],[-73.90868769478008,40.65072148112202],[-73.90827570665549,40.650498573806814],[-73.9039820055306,40.64662856757711],[-73.8958615493596,40.651880526830745],[-73.89761013308352,40.65345381612116],[-73.89354677139839,40.655202714084254],[-73.89245737415155,40.65371093908051],[-73.89136543587246,40.6523647194469],[-73.89000589190583,40.65114869713108],[-73.89125147174478,40.65002559738394],[-73.8912185346906,40.649987698622624]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN56",NTAName:"Ozone Park",Shape_Leng:24718.6958136,Shape_Area:25030355.4161},geometry:{type:"Polygon",coordinates:[[[-73.8401285612718,40.6811466505837],[-73.83794251035172,40.67679420975636],[-73.83811946691175,40.67662988905886],[-73.83334819203355,40.66677318701444],[-73.83464965632115,40.66711530780337],[-73.83487654300704,40.66721166471805],[-73.8357010882824,40.667260222424765],[-73.83667829534579,40.66758649247935],[-73.83730072134576,40.66770735931361],[-73.83744908726737,40.66779835039966],[-73.8392785101625,40.66820184941317],[-73.84008991067896,40.66843655612682],[-73.84013623756769,40.66826802501509],[-73.84215802163921,40.668701447728],[-73.84227237880692,40.66873604618449],[-73.84243585420113,40.66928855741673],[-73.84288589374712,40.66928507550809],[-73.84322150154419,40.66934041088452],[-73.8478700087405,40.67077949985452],[-73.84847765302482,40.67091673865273],[-73.85163460955918,40.67193033333588],[-73.8571134919669,40.67357505459495],[-73.85825153692174,40.67413561068757],[-73.86029565646665,40.67477189446216],[-73.86131863648569,40.67502126881618],[-73.86234580535023,40.67916478614684],[-73.86328640844614,40.67907719656106],[-73.86334943593043,40.67935164088971],[-73.85878576902988,40.68063046364428],[-73.8581983610058,40.6794308490694],[-73.85392389162108,40.67968615630427],[-73.85099089348894,40.68056836766129],[-73.85197864600372,40.68256421128579],[-73.84786817631941,40.68148683212282],[-73.84583237438072,40.68210645072872],[-73.84451063790645,40.682415088342594],[-73.84119605663224,40.6833513668439],[-73.8401285612718,40.6811466505837]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN17",NTAName:"Forest Hills",Shape_Leng:36182.0377566,Shape_Area:57843767.1166},geometry:{type:"Polygon",coordinates:[[[-73.8310314176786,40.71433672576381],[-73.83129817876875,40.71426413307678],[-73.83600510752498,40.711729671540674],[-73.83611476516761,40.71182514687331],[-73.83703688217308,40.711311705082124],[-73.8377089419937,40.711036484271276],[-73.83952312732589,40.71049645145645],[-73.83972439908847,40.71039876558735],[-73.84133936609089,40.709946234363116],[-73.84381825734583,40.70891182062743],[-73.84453738846398,40.708661054970904],[-73.84567198215159,40.708410366124866],[-73.8466572411161,40.70831864234085],[-73.84762410122774,40.70833262298329],[-73.84876725167257,40.70844457893011],[-73.84933156214034,40.70838833368077],[-73.85110121675433,40.70790098302159],[-73.85593991685778,40.706398034158255],[-73.85667714366824,40.70769187446595],[-73.85729287192326,40.71146767668838],[-73.8574485790929,40.71369280004866],[-73.85777168470324,40.71645629320605],[-73.8586809764857,40.72261244048402],[-73.85990796488952,40.724346234659166],[-73.86203833783489,40.72595678540583],[-73.85805416894009,40.72444540610254],[-73.85727108116926,40.725681298089526],[-73.85941988033147,40.72646483756294],[-73.85808765733815,40.728568721830925],[-73.85741240598783,40.72832247976294],[-73.85771592411545,40.7285054608001],[-73.85762923647985,40.72860692181527],[-73.85851097908393,40.73028680280456],[-73.85625665102398,40.730959123100234],[-73.85872465763259,40.73570864419564],[-73.85567427651216,40.73658665815272],[-73.85340136479013,40.73700275827821],[-73.85187067482497,40.73734292918602],[-73.84956453785416,40.738106092395924],[-73.8475082034414,40.73900780704003],[-73.84721361587881,40.73864398668386],[-73.84689366193676,40.73867121739413],[-73.8460554183661,40.73709918846959],[-73.84590881515852,40.73639980122155],[-73.84542613094102,40.73494980327682],[-73.84496800004679,40.73400712882319],[-73.84421250370578,40.73273304088343],[-73.84389098177917,40.732258855635045],[-73.84350489084646,40.731814344362675],[-73.84281412537749,40.73115341189032],[-73.84146810861364,40.72999809347482],[-73.84032703229768,40.72880711513032],[-73.83985434224476,40.72817756928242],[-73.83906354616173,40.7268795336721],[-73.83836161375442,40.72556184225823],[-73.83652367712513,40.72237055371197],[-73.83596312427892,40.721677168126675],[-73.83538045147736,40.7207221803721],[-73.83501684230325,40.71952679885818],[-73.83488359412775,40.719303272416916],[-73.83457034898875,40.71902795982897],[-73.83348148353802,40.71833345565659],[-73.82979616614557,40.715565719133],[-73.83008535790357,40.71517370291804],[-73.83050461007164,40.714856944799564],[-73.83145866985849,40.71455444993814],[-73.8310314176786,40.71433672576381]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN49",NTAName:"Whitestone",Shape_Leng:56897.2949355,Shape_Area:69046607.0951},geometry:{type:"Polygon",coordinates:[[[-73.79179280404088,40.78935161609341],[-73.79133754883983,40.78885774080147],[-73.79058299028675,40.78819291045559],[-73.79392031810937,40.78667573997041],[-73.79491977645195,40.78633880754827],[-73.79582463114869,40.78613058811101],[-73.79784205541509,40.78589425923585],[-73.80242791605949,40.786068274476875],[-73.80241070161266,40.78581721098666],[-73.80254724625168,40.78467334667476],[-73.80299781999226,40.781410475638666],[-73.80324974717969,40.781275479895605],[-73.80303318468549,40.78094087010286],[-73.80379022888246,40.77561011179247],[-73.81485850655602,40.7764859231195],[-73.81452997802198,40.77888817488028],[-73.82331286921354,40.77957865983502],[-73.82277596962194,40.780833776698614],[-73.82224127704234,40.78169387948055],[-73.82384132755514,40.781716886340824],[-73.82678475898977,40.78166766875764],[-73.8366938594283,40.7816495750185],[-73.8386992125566,40.78167695659995],[-73.83845605478703,40.78582446764887],[-73.83834963829922,40.78585030616101],[-73.83824429137957,40.78778591565143],[-73.84008157479629,40.78785153171433],[-73.83992306201104,40.79064990170561],[-73.83900524084824,40.790617322357015],[-73.83895676116028,40.79143843059256],[-73.84081532628042,40.791504885220604],[-73.84067828337382,40.793907891633204],[-73.84018731572058,40.79370471592344],[-73.83953626138182,40.79320132294934],[-73.83922303106193,40.79304304611827],[-73.8381806920698,40.79274850190154],[-73.83663288923377,40.7925163755386],[-73.8365318732471,40.79174343240569],[-73.83671513353339,40.791582950598716],[-73.83694476868992,40.791471487535276],[-73.83742329447372,40.79139283791855],[-73.83752373081235,40.79131616649129],[-73.837533633876,40.79115226208251],[-73.83764705141395,40.791028611948505],[-73.83751003655308,40.79083455918162],[-73.83756145710389,40.79073317143209],[-73.83750358883589,40.790461660725455],[-73.83702682858248,40.79049690517071],[-73.83681814957043,40.79046990635975],[-73.83681410438497,40.79043377227646],[-73.83701257693833,40.79040892012141],[-73.83737222207894,40.79039843212046],[-73.8373721299883,40.79043613206935],[-73.8374819140324,40.790434497921744],[-73.837387819014,40.790311419666125],[-73.83738742040761,40.78981989894486],[-73.83725892114744,40.789701291524544],[-73.83723591790583,40.78949502672886],[-73.83717544535044,40.78942731331638],[-73.8372802444608,40.78900952077264],[-73.83714210587844,40.78937385793884],[-73.83713432989524,40.78956403301425],[-73.83637809572267,40.789460178187],[-73.8356802206903,40.78957491756832],[-73.83555521605709,40.78952977730158],[-73.83548346034412,40.789296399781904],[-73.83533150242211,40.78921274221426],[-73.83413566587409,40.789066136552336],[-73.8340153591969,40.78891940708136],[-73.83399530269594,40.78871444131712],[-73.833795481099,40.78851716904364],[-73.8334566482079,40.78845820063507],[-73.83325759535914,40.7885277657402],[-73.83292937237545,40.7885181142041],[-73.83278675906253,40.78858423790823],[-73.83251063648017,40.788624476626794],[-73.83209671987525,40.788787667001145],[-73.83193642601685,40.78893888842681],[-73.8317543370473,40.789228593368215],[-73.83157493485926,40.789256148600735],[-73.83143628889393,40.789181356548546],[-73.83148714087355,40.78923730717621],[-73.83186317926025,40.78934326906904],[-73.8319511846373,40.789414772132154],[-73.83214871934797,40.790033244852225],[-73.8318567064817,40.79056470079972],[-73.83180369612921,40.790879124062016],[-73.83166080927866,40.79110259115972],[-73.83134155443788,40.7913926980326],[-73.83096269707295,40.79157601668993],[-73.83056779313932,40.79165792332031],[-73.83007470930407,40.79154985737326],[-73.82974037698273,40.79163042699305],[-73.82911839762097,40.791895784915624],[-73.82853627006942,40.7923363825559],[-73.82836657648605,40.79239541955734],[-73.82927850999428,40.79289060733192],[-73.82930732909963,40.79293620384138],[-73.82922857533946,40.79301934041082],[-73.82829155299561,40.79251424596061],[-73.82820348065081,40.792634169420815],[-73.82800403876979,40.792746074593126],[-73.82784875571924,40.79308767321415],[-73.82778457368785,40.79342078992591],[-73.82791705183524,40.794013329036375],[-73.82788650586646,40.794338896184506],[-73.82797764503651,40.79450970367475],[-73.82797171977278,40.79479437041028],[-73.82807133624983,40.79482567673891],[-73.82801372356046,40.79493240826738],[-73.82819916134699,40.79513417183784],[-73.82841279822601,40.79561336778635],[-73.82848776368755,40.795670292540265],[-73.82862330095594,40.795681695883985],[-73.82863190155402,40.795843105197356],[-73.82869843117632,40.79592329490511],[-73.82878010953813,40.79591792394741],[-73.82875353193242,40.79606996959522],[-73.82880962943086,40.79618376789847],[-73.82897991724745,40.796210909658846],[-73.82913126948655,40.796293620040444],[-73.82929449211723,40.7966729912923],[-73.82945991534365,40.79682336759145],[-73.82929094280658,40.79677253657119],[-73.82921483494509,40.79663798783778],[-73.82905864257887,40.79656211413525],[-73.82848417580749,40.79661205860169],[-73.82814456566504,40.796752660617294],[-73.82741768831458,40.79678901782376],[-73.82728527175657,40.79689418750653],[-73.82728314255718,40.79696120798367],[-73.82717201225192,40.79693151408126],[-73.82697091510653,40.79712827768958],[-73.82699897185934,40.79727052728726],[-73.82719240016704,40.797508981694214],[-73.8271736560119,40.79762220131622],[-73.8270305591211,40.79771845691436],[-73.82673856166687,40.79779624545296],[-73.82657894654307,40.79776048923638],[-73.82631447766897,40.79748756300381],[-73.82614856928556,40.79741598500301],[-73.82576219954441,40.797368187808864],[-73.82555525141957,40.79739392614765],[-73.8255084364434,40.7974381514746],[-73.82533369561924,40.79731450883546],[-73.82514036020433,40.797341446769124],[-73.82403593250719,40.79807966271678],[-73.82403338022118,40.79819782290573],[-73.82394787857773,40.79822736357894],[-73.82402784484822,40.79836118320873],[-73.82385948384703,40.79815413510464],[-73.82354913262645,40.79831384152881],[-73.82351365730594,40.798438174025016],[-73.82343323516939,40.79840651440884],[-73.82367983693861,40.7987699464995],[-73.82364368846554,40.79878224199603],[-73.8234087237602,40.79841781429694],[-73.82325371060104,40.79846953616833],[-73.82310769668368,40.79861310377275],[-73.82313673921936,40.798680235653045],[-73.82309602750455,40.79868329836283],[-73.8233055243158,40.79896286561694],[-73.82327118223401,40.79897516359798],[-73.82300263036697,40.798642289724974],[-73.82259935617273,40.79890184247574],[-73.8225405641931,40.79895727737292],[-73.8227772788283,40.799320221378984],[-73.8227429358041,40.79933251886587],[-73.82251916522019,40.79898773569025],[-73.82241227004742,40.7990889137536],[-73.82262174556764,40.79940780807216],[-73.82238754670627,40.799112891069996],[-73.82190060649809,40.799728143307064],[-73.82161789245312,40.79999198769377],[-73.82098071950026,40.800478109124874],[-73.82043246032914,40.80062786391952],[-73.82052810788421,40.80100602386806],[-73.82040454927237,40.800639500292434],[-73.81995332143556,40.80084874765159],[-73.81991211894633,40.8009753031669],[-73.81982823872157,40.80099487489536],[-73.8197428603403,40.80089791053083],[-73.81951808524325,40.80083308290749],[-73.81927646012066,40.80066775084893],[-73.8188527786685,40.800312459808325],[-73.81740429876852,40.79929901928242],[-73.8171424303445,40.79918197980957],[-73.81651639793196,40.799024946483875],[-73.81602603932743,40.798532968334015],[-73.8136790756706,40.797545787909854],[-73.81362796930773,40.79744393049629],[-73.81374910752359,40.797147636859144],[-73.81369963725258,40.797079415665095],[-73.8134205041585,40.797693020410584],[-73.81335013720093,40.79767232265759],[-73.81348648309454,40.79734593874563],[-73.81337822710339,40.797314201258864],[-73.81349350368696,40.797058379875104],[-73.81327739074672,40.797105756441006],[-73.81324649761478,40.797211821101826],[-73.81315996384446,40.79719753570301],[-73.81305279469935,40.79745501885086],[-73.81293369674121,40.79742600809676],[-73.81304287621855,40.79717820575216],[-73.81288386452474,40.79716656522697],[-73.81286187927002,40.79727905644292],[-73.81277515293941,40.79734538445089],[-73.81254798908543,40.79804706445839],[-73.81225365633456,40.79812694630016],[-73.81177838321312,40.79802505345336],[-73.81175853817825,40.79770976527134],[-73.81160938268444,40.79737240944452],[-73.81019887949064,40.79716383534212],[-73.80990138968089,40.79707128726631],[-73.80925513734735,40.79696193379949],[-73.8087933797608,40.79679596315315],[-73.80767751179958,40.796672214787144],[-73.80636331452575,40.796393605437665],[-73.80627331882226,40.79682269333238],[-73.80623135012517,40.79681747708023],[-73.80633076714668,40.79639274043597],[-73.80626298168438,40.79639685172824],[-73.8061984021453,40.79650126217741],[-73.80587626284577,40.79647298343038],[-73.8056292788846,40.79637257898171],[-73.80539573341112,40.79617082151445],[-73.80534980160498,40.796317851318854],[-73.8053010493933,40.79631674037429],[-73.80533944487574,40.796163928288756],[-73.80467173768784,40.796167469164],[-73.80463437753286,40.79643808895621],[-73.80459395457142,40.7963680340401],[-73.80464873976847,40.79615919598307],[-73.80457614582878,40.79614121304958],[-73.80434825935406,40.79621409099273],[-73.80427353681179,40.79664126082695],[-73.8042356338883,40.79663502181068],[-73.8042429505587,40.7964497749908],[-73.80431138699934,40.79621287616003],[-73.80416535642867,40.79622900877679],[-73.80412218500379,40.79652881970657],[-73.80413644766975,40.79623423117776],[-73.80400524331151,40.79626735843269],[-73.8039582306437,40.79655735901799],[-73.80397418925082,40.796278255919646],[-73.80384612412576,40.79632585464922],[-73.80381716794697,40.7966301932366],[-73.80377383371214,40.79662909019767],[-73.80382294196009,40.796335012840956],[-73.8036430150916,40.79640608550758],[-73.80361250811097,40.79668439315399],[-73.80357594442297,40.796683301576024],[-73.80361288546563,40.79642085682051],[-73.8034638568963,40.79649726274873],[-73.8034313317669,40.796653246596264],[-73.8033499636296,40.796713026429984],[-73.80299970743111,40.79670883559272],[-73.80294925160221,40.79640492955587],[-73.80264036022909,40.796338097055596],[-73.80262272826545,40.79636609017153],[-73.80257934475047,40.79629544313605],[-73.80226038840371,40.79626220835024],[-73.80177947764541,40.796316141853715],[-73.80174543088819,40.796512405600375],[-73.80175550251785,40.79632129591801],[-73.80141216948574,40.79637685170493],[-73.80101126230595,40.796522374589586],[-73.80095706628282,40.79638677343391],[-73.80086307346707,40.79633253590832],[-73.80065920162397,40.79635386816197],[-73.80062184740089,40.796426762360454],[-73.80050483103217,40.79629365431301],[-73.80039069522813,40.79626315539691],[-73.8003654755478,40.7963369203832],[-73.80028591188075,40.79632354905572],[-73.8003216303852,40.79625357092533],[-73.80025662935851,40.79626014926651],[-73.80020438000452,40.79627005394538],[-73.80012080488287,40.79663141271138],[-73.80008350203539,40.79662756697204],[-73.80012619978808,40.79649152565462],[-73.80006403229244,40.796483856077586],[-73.8000791219684,40.79642905789871],[-73.80013384459126,40.79643104382515],[-73.80018235388124,40.79626691369681],[-73.79968067900407,40.79617450270641],[-73.79967688098047,40.796322358860266],[-73.79960548292512,40.796332220605656],[-73.79932384219163,40.7960944850278],[-73.7986926579497,40.79595224845812],[-73.79837918620335,40.795721162501806],[-73.79811108045214,40.7956058885653],[-73.79789832753349,40.79555922091784],[-73.79766994075003,40.795993822382876],[-73.79758295537475,40.79596720215593],[-73.79787014914714,40.79555201214133],[-73.79749920579086,40.795459861855186],[-73.79724128273871,40.79545287980245],[-73.79725115660966,40.79534247698618],[-73.79712783133196,40.79530371842452],[-73.79673567726374,40.79520894291919],[-73.7965417516677,40.795606175764114],[-73.79640953492472,40.795728824200744],[-73.79670587562364,40.79519762544923],[-73.79616770842009,40.79503241398681],[-73.79580826052093,40.794987591257964],[-73.79528852774453,40.79498209053891],[-73.79508481094064,40.795065750083936],[-73.79506236850439,40.7949480169058],[-73.79500857657578,40.79492438232867],[-73.79476806561695,40.794884516421035],[-73.79461098148352,40.79492973552608],[-73.79442844794782,40.794806810349975],[-73.79455412899075,40.79481242352763],[-73.79458298184525,40.794763111619574],[-73.79439286121847,40.79443600882642],[-73.79438022483404,40.794177354389895],[-73.79460907190291,40.793913303477716],[-73.79458621950839,40.79357033410816],[-73.79478009224822,40.79293532937597],[-73.79470737521751,40.79267447711512],[-73.79493227027358,40.79249534475146],[-73.79497523156428,40.79187618141878],[-73.79478261000463,40.7913028203153],[-73.79375126550234,40.789061933340136],[-73.7936446964655,40.78906056286632],[-73.79338439812707,40.789481190004096],[-73.79338033504993,40.789578392620584],[-73.79323941781152,40.7895302497038],[-73.79333178282258,40.789465370544406],[-73.79362007276177,40.78899663724726],[-73.79335969899782,40.78895527905029],[-73.79286156729893,40.78878964671393],[-73.79263216028743,40.78878412883775],[-73.79235291154153,40.788906841809926],[-73.79205591912397,40.78909217901128],[-73.79179280404088,40.78935161609341]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN37",NTAName:"Kew Gardens Hills",Shape_Leng:33053.7644147,Shape_Area:37894227.1877},geometry:{type:"Polygon",coordinates:[[[-73.81497208257474,40.73856071556887],[-73.81469391916038,40.73714048048527],[-73.81469163038946,40.7359499935215],[-73.81502127704256,40.73046566954188],[-73.81523144845492,40.72879391205643],[-73.8151002407237,40.728543422503385],[-73.81474579272907,40.728230070028424],[-73.81074426516119,40.726265112842576],[-73.81070500956417,40.726771288573616],[-73.81101008063021,40.72743995115961],[-73.81111797292402,40.72781641649331],[-73.80717042263493,40.72826913311901],[-73.80652142318155,40.7248730636521],[-73.80487958230646,40.725049593118015],[-73.80452680226847,40.721462546317966],[-73.80904032736179,40.71991160454234],[-73.80780927700908,40.715853896237775],[-73.81022435004475,40.71591266800038],[-73.81720417926097,40.7158407287899],[-73.81828452748483,40.71600371491138],[-73.82018883804452,40.7167352241179],[-73.81930469497848,40.71713608089547],[-73.81729568967148,40.717579644971806],[-73.81725907785261,40.71763787695509],[-73.81732944795614,40.717660456711585],[-73.8191283252409,40.71734991931067],[-73.82170479062087,40.71735988999437],[-73.82251099305009,40.71743707630333],[-73.82332432043225,40.71745251000057],[-73.8253164502237,40.717275700246944],[-73.82541926512575,40.717392544422076],[-73.8254823200879,40.71920620793845],[-73.82556765662133,40.719721014661864],[-73.82585945748816,40.72046263176479],[-73.82712926557029,40.72430371206222],[-73.82730900449444,40.724646077497674],[-73.82755527729319,40.72496094976327],[-73.82805145267602,40.725324849653994],[-73.82866154234718,40.725581422749926],[-73.82933887133396,40.72573593884322],[-73.82979910980454,40.72589725400016],[-73.83021953957204,40.72612069614069],[-73.83057961456659,40.72639635103837],[-73.83086471412865,40.7267096339891],[-73.83170465866347,40.728040332246024],[-73.83248002188995,40.72894085408651],[-73.8330708795782,40.72991903138282],[-73.83386267153111,40.73055318900898],[-73.82566535417416,40.73227957787597],[-73.82553129403023,40.73363428147948],[-73.8254625330297,40.73364066157462],[-73.8253932164686,40.7340482361875],[-73.82487827400193,40.73957231226245],[-73.82481178421759,40.739630959899515],[-73.82435011103317,40.73975360608326],[-73.82006431419832,40.738828140378764],[-73.81693283697588,40.738389510393105],[-73.81662531616234,40.73838631089333],[-73.8163310936792,40.73844640177586],[-73.8160767680076,40.73885793358993],[-73.81518583114378,40.738571171540165],[-73.81497208257474,40.73856071556887]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN38",NTAName:"Pomonok-Flushing Heights-Hillcrest",Shape_Leng:30676.03462,Shape_Area:38832853.8764},geometry:{type:"Polygon",coordinates:[[[-73.79640218640291,40.73828235819023],[-73.79636108875361,40.73812415326031],[-73.79607605160746,40.73814429824637],[-73.79650350005979,40.73800383592641],[-73.79651029115769,40.737908637229054],[-73.79584803288829,40.73807468021111],[-73.79594852831097,40.73781371914783],[-73.79516450887594,40.73641140399298],[-73.79458633240402,40.73505225214464],[-73.794594865411,40.73340935817155],[-73.79438449784254,40.73286592934908],[-73.79397708714757,40.73229685316651],[-73.79390942515764,40.731717775562174],[-73.7938193723034,40.7316573882338],[-73.79384983414468,40.731246783490924],[-73.7937893865178,40.73070118166386],[-73.79157252978416,40.725329611927556],[-73.79045149323433,40.72355453182329],[-73.79035703879286,40.723005300179736],[-73.79030267429577,40.720891465459715],[-73.79037661684342,40.72010372421771],[-73.79073248864259,40.71920875733025],[-73.79155692217266,40.719200995355116],[-73.79211141214232,40.719138863920065],[-73.79315493416429,40.71891757851011],[-73.79653978132312,40.71778674890591],[-73.79959535795054,40.71689904341255],[-73.80188320971062,40.71640881056989],[-73.80319838004738,40.71620252546],[-73.8049414851131,40.71599623098779],[-73.80780927700908,40.715853896237775],[-73.80904032736179,40.71991160454234],[-73.80452680226847,40.721462546317966],[-73.80487958230646,40.725049593118015],[-73.80652142318155,40.7248730636521],[-73.80717042263493,40.72826913311901],[-73.81111797292402,40.72781641649331],[-73.81101008063021,40.72743995115961],[-73.81070500956417,40.726771288573616],[-73.81074426516119,40.726265112842576],[-73.81474579272907,40.728230070028424],[-73.8151002407237,40.728543422503385],[-73.81523144845492,40.72879391205643],[-73.81502127704256,40.73046566954188],[-73.81469163038946,40.7359499935215],[-73.81469391916038,40.73714048048527],[-73.81504998753066,40.73894313388967],[-73.81407382042356,40.73878090258145],[-73.8132240179254,40.73870225443916],[-73.8065788386759,40.73844721148977],[-73.79822058927314,40.738174630695084],[-73.79729260554109,40.73818542883675],[-73.79640218640291,40.73828235819023]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN48",NTAName:"Auburndale",Shape_Leng:32446.8787316,Shape_Area:34164217.6915},geometry:{type:"Polygon",coordinates:[[[-73.77573836927098,40.74332564716399],[-73.77859924777994,40.74290812265152],[-73.7803660354394,40.742591662644],[-73.79533772922126,40.738493673275336],[-73.79640218640291,40.73828235819023],[-73.79643940114575,40.738438947645804],[-73.79672497924989,40.738416642623086],[-73.79629297225536,40.738552306430336],[-73.79640833735954,40.738593419983424],[-73.79722373068888,40.74009803472168],[-73.79727887937531,40.74044786239791],[-73.7972308503816,40.74169550663599],[-73.79613631197081,40.7425714671239],[-73.79521257775801,40.74349556879217],[-73.79483295516094,40.74398694206997],[-73.7945350735508,40.744507638214664],[-73.7944636833295,40.74497002170616],[-73.79448121622829,40.74566953231851],[-73.79472264944069,40.74759933020903],[-73.79704716101422,40.74933231844464],[-73.7972952469919,40.74943505289048],[-73.79566544951747,40.7502362003233],[-73.79471901146249,40.750647616849946],[-73.79457726989999,40.753563011339054],[-73.79493246233996,40.75779803007453],[-73.79402473959107,40.75773596895653],[-73.79031516996665,40.75782345059029],[-73.79076004620481,40.76098576942466],[-73.79343991212555,40.760764127962446],[-73.79343673769405,40.76159683082907],[-73.79302551365764,40.76462119218866],[-73.79395914652879,40.764695319925636],[-73.79317944556045,40.77040317772786],[-73.79021960777551,40.76695117475306],[-73.7886108552568,40.76470959371213],[-73.78836856546904,40.76443842884699],[-73.78807523740836,40.76419949042412],[-73.7859581062635,40.76310224365147],[-73.78571993566746,40.762921464725935],[-73.78546383070338,40.76259192540882],[-73.78502434744703,40.76103651585873],[-73.784289918847,40.759440299435724],[-73.78212461978045,40.75533931152838],[-73.78052037800592,40.75333074310264],[-73.77573836927098,40.74332564716399]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN62",NTAName:"Queensboro Hill",Shape_Leng:30569.9067538,Shape_Area:26553170.3243},geometry:{type:"Polygon",coordinates:[[[-73.81537317355684,40.747218337859685],[-73.81382410617998,40.745832727622776],[-73.81367361908535,40.74555586454192],[-73.81378452023495,40.74455455279493],[-73.81430884847826,40.7429737730667],[-73.80823789560341,40.742011158110316],[-73.80729839820712,40.74199377747671],[-73.80447287570333,40.7421670999313],[-73.80016281143774,40.7422475287355],[-73.79938421681186,40.74222138402646],[-73.79695065298532,40.74193303514841],[-73.7972308503816,40.74169550663599],[-73.79727517637316,40.74033018640919],[-73.79717686670125,40.73998668526025],[-73.79640833735954,40.738593419983424],[-73.79629297225536,40.738552306430336],[-73.79672497924989,40.738416642623086],[-73.79643940114575,40.738438947645804],[-73.79640218640291,40.73828235819023],[-73.79729260554109,40.73818542883675],[-73.79822058927314,40.738174630695084],[-73.8065788386759,40.73844721148977],[-73.8132240179254,40.73870225443916],[-73.81407382042356,40.73878090258145],[-73.81504998753066,40.73894313388967],[-73.81497208257474,40.73856071556887],[-73.81518583114378,40.738571171540165],[-73.8160767680076,40.73885793358993],[-73.8163310936792,40.73844640177586],[-73.81677959620488,40.7383797938966],[-73.82006431419832,40.738828140378764],[-73.82435011103317,40.73975360608326],[-73.82494800874792,40.73956710500369],[-73.82497439991934,40.73944042675617],[-73.82542658756743,40.73948513792991],[-73.82559030323392,40.73944759179278],[-73.82585368407761,40.73912378014797],[-73.82634965842317,40.73884326447579],[-73.82686746518436,40.73862891215991],[-73.82759017321868,40.73849421766077],[-73.82794360284196,40.738489982440825],[-73.82794969086457,40.737819599239984],[-73.82809152643243,40.73708317577642],[-73.82946751997143,40.73702448225081],[-73.8305355129751,40.73752019476418],[-73.83143025504279,40.73913573312933],[-73.83130117319996,40.739561062689795],[-73.83113122777844,40.742338000406534],[-73.8330151540427,40.74260095830124],[-73.83586131872133,40.74322798453851],[-73.8359507152526,40.74373056960687],[-73.83567553947586,40.74485051756011],[-73.83543777169845,40.74552397407903],[-73.83469042619964,40.746902697785934],[-73.83426506235769,40.74733769871789],[-73.83370364194279,40.74762634843616],[-73.83300301986871,40.74783363145929],[-73.83125479839796,40.74810635962912],[-73.83126084346712,40.748576271979964],[-73.83115861509829,40.748797997547776],[-73.83101167927137,40.74891601887889],[-73.83071466560259,40.74901721382459],[-73.8292251197182,40.749256081183944],[-73.82827349997545,40.74967871546275],[-73.82786693901078,40.749811284582464],[-73.82751792581828,40.74987478974412],[-73.82723921537873,40.74985960309009],[-73.82584440959535,40.74934839109876],[-73.82565201263684,40.75065299895559],[-73.82566698623404,40.75090874801325],[-73.82576557247215,40.75096902425273],[-73.82426493808411,40.751832888588474],[-73.8210842759128,40.748558445943026],[-73.8178202588838,40.74738541614799],[-73.8157506948341,40.746979480114774],[-73.81537317355684,40.747218337859685]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN30",NTAName:"Maspeth",Shape_Leng:41278.6237179,Shape_Area:35633972.7002},geometry:{type:"Polygon",coordinates:[[[-73.88852285901477,40.73453116001532],[-73.88805975152191,40.73008723019763],[-73.8875596216051,40.7301970557407],[-73.88736093270067,40.7295707833962],[-73.88723573007663,40.72893296466081],[-73.8872039560873,40.72619323192364],[-73.88713253575155,40.726142346534914],[-73.88707712051256,40.724637701844806],[-73.89017449678094,40.724946889035785],[-73.89030329368545,40.72492388674767],[-73.89426494144976,40.723143188916595],[-73.89451032515605,40.72313194913233],[-73.89569743326905,40.72341258554429],[-73.89582380640651,40.72389882212851],[-73.89835285104532,40.7231122898682],[-73.89903191817591,40.7238569603149],[-73.90010558662733,40.72329624052273],[-73.89981610160434,40.721236900280644],[-73.89739704867227,40.7215512099578],[-73.89736598317185,40.72046438287297],[-73.89774824376545,40.72035734729999],[-73.89783709951287,40.72047019591207],[-73.90009286425726,40.72017685333995],[-73.90062644427873,40.71976405404454],[-73.90033454469079,40.71866913990551],[-73.90033904275478,40.71801994789667],[-73.90005938044325,40.718046378606864],[-73.89985149422799,40.71837539796614],[-73.89834760053485,40.71919767756447],[-73.89726757866013,40.718147156562715],[-73.89882095564172,40.717372228501745],[-73.89901821099927,40.71738212746766],[-73.89792430341309,40.71678540231752],[-73.89750226433192,40.71638386771287],[-73.9047724456856,40.712865799877406],[-73.90537582225075,40.712876581563286],[-73.90639010028487,40.71736369205476],[-73.90696370818947,40.71730441724758],[-73.90943398658362,40.71758177334296],[-73.90965980141526,40.71779315582969],[-73.91048364446846,40.71732796504595],[-73.911342707829,40.716597028861635],[-73.91221070492854,40.7157093567909],[-73.91245827647036,40.7155322902048],[-73.91283037666925,40.71536090798428],[-73.91015817854917,40.713821599986424],[-73.91077807358384,40.713187599919],[-73.92404011334023,40.71400831262889],[-73.9240590973705,40.7141115596449],[-73.92368352152525,40.714082841408185],[-73.92405223245954,40.71487024514006],[-73.92412241575497,40.715138048445155],[-73.92381513194628,40.71544130034156],[-73.92352547251086,40.715616608367824],[-73.92279196672433,40.715800263747575],[-73.92232970167701,40.71607654517239],[-73.92064258874547,40.71577319202834],[-73.9205786145475,40.716027424691156],[-73.92223761190392,40.71638244049452],[-73.92232773956837,40.71659264462489],[-73.91132095140532,40.719624229591275],[-73.91309792345875,40.721737469494265],[-73.91342688898425,40.722333937295275],[-73.9136723436875,40.72260115818571],[-73.91384828242974,40.72289841235328],[-73.9131696980579,40.72308152589632],[-73.9127077349693,40.72328450287024],[-73.91257187677793,40.723239634949344],[-73.9051805791977,40.728956576973715],[-73.90062897980565,40.734463231838184],[-73.90029003066147,40.734729543496144],[-73.89963257961942,40.73500235780101],[-73.89922944702828,40.735111598773486],[-73.89830799682723,40.73519418432566],[-73.89691188038539,40.73508660183094],[-73.89651105174435,40.73509674154278],[-73.89602931590734,40.73501789160888],[-73.89492421774364,40.73500772218396],[-73.89457544923928,40.73494652861962],[-73.89347408300252,40.7346021775463],[-73.89255554655618,40.73447812580762],[-73.88910318916383,40.734592396461764],[-73.88852285901477,40.73453116001532]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN01",NTAName:"South Jamaica",Shape_Leng:32122.4294755,Shape_Area:39972230.5026},geometry:{type:"Polygon",coordinates:[[[-73.77395659465941,40.69980578158961],[-73.77459377478965,40.69879949818135],[-73.77659775517716,40.69596911441699],[-73.77783593415641,40.69432133540323],[-73.77944081337645,40.69364510969761],[-73.78023723847116,40.69297233543551],[-73.7778933737174,40.689917690032544],[-73.77977295070055,40.68928116998791],[-73.780781554983,40.69102994294874],[-73.78479240674821,40.68936160017398],[-73.78580499870162,40.68899689744796],[-73.78698344486996,40.68860847697054],[-73.7903846829611,40.68775361379939],[-73.79390841612104,40.68630469089335],[-73.79561486720836,40.68865689126185],[-73.79995042843724,40.68682771945367],[-73.79898209074537,40.68485873782359],[-73.8057684019137,40.68293239125028],[-73.80733621868711,40.68612544699114],[-73.81063298310889,40.6919473825767],[-73.8097101715963,40.692199384424946],[-73.80890216900741,40.69256434895522],[-73.80642479405023,40.69087385791115],[-73.80119617890712,40.695336489064644],[-73.79918226883794,40.69687147632477],[-73.7985464016822,40.6974665328276],[-73.79786193446462,40.69799340427741],[-73.79722374730164,40.698359457382885],[-73.79572173793612,40.699014735113586],[-73.79449920947525,40.699385776722245],[-73.79357708734877,40.69975647169583],[-73.79260506784017,40.70043210047762],[-73.79221029717054,40.700822671351126],[-73.79186916556714,40.70136613718859],[-73.792391703146,40.702166529652885],[-73.79147324875265,40.70222990511412],[-73.7911556972667,40.70229407580124],[-73.78966391546204,40.703039488522144],[-73.78597976493195,40.7041866163643],[-73.78256582583964,40.70542486386771],[-73.78147887400361,40.70545525091692],[-73.78034491174007,40.70541241670842],[-73.77849131064606,40.703833225748944],[-73.7779110384346,40.70328238922563],[-73.7769103774633,40.70252488532582],[-73.77586892894917,40.70165517071923],[-73.774883186405,40.70074775236008],[-73.77395659465941,40.69980578158961]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN61",NTAName:"Jamaica",Shape_Leng:43696.251483,Shape_Area:47307643.1302},geometry:{type:"Polygon",coordinates:[[[-73.76844546516843,40.70963702715981],[-73.77230141691341,40.70807142303393],[-73.77333799482268,40.70779351571954],[-73.77430843648854,40.707393668458366],[-73.77490093301228,40.707066661911355],[-73.775051580986,40.7069240355612],[-73.77530808871064,40.706606178568286],[-73.77549258356063,40.70625467235188],[-73.77559530110719,40.70588431955632],[-73.77559218769971,40.7053293087231],[-73.7750746229646,40.705239983801796],[-73.77230768599198,40.700571507822325],[-73.77395659465941,40.69980578158961],[-73.774883186405,40.70074775236008],[-73.77586892894917,40.70165517071923],[-73.7769103774633,40.70252488532582],[-73.7779110384346,40.70328238922563],[-73.77849131064606,40.703833225748944],[-73.78034491174007,40.70541241670842],[-73.78147887400361,40.70545525091692],[-73.78256582583964,40.70542486386771],[-73.78597976493195,40.7041866163643],[-73.78966391546204,40.703039488522144],[-73.7911556972667,40.70229407580124],[-73.79147324875265,40.70222990511412],[-73.792391703146,40.702166529652885],[-73.79186916556714,40.70136613718859],[-73.79221029717054,40.700822671351126],[-73.79260506784017,40.70043210047762],[-73.79357708734877,40.69975647169583],[-73.79449920947525,40.699385776722245],[-73.79572173793612,40.699014735113586],[-73.79722374730164,40.698359457382885],[-73.79786193446462,40.69799340427741],[-73.7985464016822,40.6974665328276],[-73.79918226883794,40.69687147632477],[-73.80119617890712,40.695336489064644],[-73.80642479405023,40.69087385791115],[-73.80890216900741,40.69256434895522],[-73.8097101715963,40.692199384424946],[-73.81063298310889,40.6919473825767],[-73.81224188596202,40.694832235647205],[-73.81407050392224,40.69788712981068],[-73.8149234333312,40.69942244057895],[-73.81637824492985,40.702451964468636],[-73.8135647060994,40.702528498001726],[-73.81301882854011,40.702495157240584],[-73.81152856919299,40.702272874880435],[-73.81201248584304,40.70594494480839],[-73.80694856329364,40.70736710041368],[-73.80564773066394,40.70467172790345],[-73.80165725608047,40.705761475398766],[-73.80302414740676,40.708139657094264],[-73.80233120030267,40.7085724708186],[-73.80193297056056,40.70891159585268],[-73.80159590564108,40.70954842525396],[-73.80141416328749,40.70968687302362],[-73.7987015067907,40.710663377114074],[-73.79776810134297,40.70914318783918],[-73.79473052352925,40.71001246196599],[-73.79303800052352,40.7107110754254],[-73.78928335067606,40.712031729151086],[-73.78901209587958,40.712072709100696],[-73.78871789555492,40.71204979303975],[-73.78784678480142,40.71181083266498],[-73.78657528693576,40.71197249327791],[-73.77357135234456,40.71512009536999],[-73.77192122006916,40.715685044955556],[-73.76943987094936,40.7119768925562],[-73.77076577553446,40.710735237831095],[-73.77118657762158,40.71049950965711],[-73.77172444678736,40.7103168188554],[-73.77165155288668,40.71022237216552],[-73.77084362930016,40.71017162598519],[-73.76881217340589,40.7098081235521],[-73.76844546516843,40.70963702715981]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK58",NTAName:"Flatlands",Shape_Leng:40635.2808945,Shape_Area:54341522.306},geometry:{type:"Polygon",coordinates:[[[-73.91860649634884,40.6320904147211],[-73.91716779456259,40.61838796216506],[-73.91690302737105,40.61627422991105],[-73.92052694107498,40.613942695006216],[-73.92062400307957,40.61483868167492],[-73.92640044535041,40.6144785355309],[-73.92629604565613,40.613116799076955],[-73.9317317921372,40.617926921394435],[-73.93320457514473,40.61697044225085],[-73.93686699606751,40.62025328123272],[-73.94078914087075,40.617696789890935],[-73.94346961883575,40.61738500186908],[-73.94395779538316,40.61681630946454],[-73.94467599520515,40.616165112535676],[-73.94573691912028,40.61536340675661],[-73.94651373127873,40.61949401914963],[-73.94451833370498,40.61971364709504],[-73.94542442897408,40.624495609598185],[-73.94642266064318,40.6243855672864],[-73.94732672160579,40.62916656720943],[-73.94415535255824,40.62950828520796],[-73.94647961784932,40.63170816167806],[-73.93701746157781,40.63231097913575],[-73.93726700184804,40.63465062567417],[-73.92744822294387,40.6352584095577],[-73.92652490892384,40.63649272329657],[-73.92616377838266,40.63757296117988],[-73.92606338061374,40.63852406103602],[-73.92586068563264,40.63921107153897],[-73.9253823310077,40.642384532667144],[-73.92356525947066,40.64249929828657],[-73.92332654587366,40.63990021559207],[-73.91973736982146,40.642778148345094],[-73.91860649634884,40.6320904147211]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN71",NTAName:"Old Astoria",Shape_Leng:19335.5674151,Shape_Area:15621248.1564},geometry:{type:"Polygon",coordinates:[[[-73.92827730832717,40.7768989753244],[-73.92737641808694,40.77646661157505],[-73.9227926445179,40.77396229484174],[-73.91770217216155,40.77039311158785],[-73.9199559685847,40.76844006497454],[-73.91849336979978,40.76773465653341],[-73.91977764822657,40.76615218434559],[-73.9221894620329,40.7672673572131],[-73.92425288796417,40.76472456423411],[-73.92985647941732,40.76732655236074],[-73.93344468520229,40.768817789898776],[-73.93493511053623,40.767013024131266],[-73.93618379675478,40.7676918016622],[-73.9359317710311,40.76778370276552],[-73.93577133991252,40.76905001004506],[-73.93503989810641,40.76968230223346],[-73.93471718450053,40.77002985821506],[-73.93447449145674,40.77041159718884],[-73.9342460961504,40.77102927567416],[-73.93452730109439,40.77117677510335],[-73.93448548303904,40.77130652321842],[-73.93495398714988,40.77137294301684],[-73.93492943319866,40.77144023609006],[-73.93448015155154,40.77132306820069],[-73.93443525743177,40.771462362333395],[-73.934826227617,40.771576958073254],[-73.93480681410317,40.77173413838767],[-73.93746638537077,40.77253149512517],[-73.93781335903401,40.77356289464753],[-73.93785811822775,40.77408756897301],[-73.93765483024703,40.77508568538328],[-73.93704702087582,40.775866487041],[-73.93638022817538,40.776921456562626],[-73.93608919699099,40.77718432207701],[-73.93585452641504,40.77721168462417],[-73.93508232492148,40.777944233727744],[-73.93474353011284,40.77807633537698],[-73.93390840313978,40.778117129818845],[-73.93277477801553,40.777922388777505],[-73.93272210453965,40.77803476711794],[-73.93178834239042,40.777870607104425],[-73.93104964232832,40.777441897311625],[-73.93107377146754,40.77726059439812],[-73.93062856554164,40.776590902749554],[-73.92988058566198,40.776221631902224],[-73.9286051502335,40.77659267510096],[-73.92827730832717,40.7768989753244]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX22",NTAName:"North Riverdale-Fieldston-Riverdale",Shape_Leng:31842.9649646,Shape_Area:49027466.465},geometry:{type:"Polygon",coordinates:[[[-73.8966333379699,40.911417375348236],[-73.8965465329244,40.90750665554704],[-73.89635785971493,40.90320013158378],[-73.89697054248143,40.90061116757849],[-73.89715717165433,40.89937182667721],[-73.89643170783383,40.89365527942483],[-73.89675790074938,40.89264544357168],[-73.89728112520795,40.891710683680365],[-73.89787887465393,40.89027610124152],[-73.89828904251877,40.89044298126529],[-73.89853911925564,40.89038907404312],[-73.89959425889398,40.88981699887929],[-73.8998757067239,40.88954945802508],[-73.90024058943051,40.88935606934913],[-73.90069963632783,40.88898822100777],[-73.900903013963,40.88891054881104],[-73.90126187897803,40.888920968331675],[-73.90180553797828,40.88914342069188],[-73.9024629734398,40.8891051479207],[-73.9028594906229,40.88916474400575],[-73.90337314450537,40.88813234503343],[-73.90413642428666,40.88708070903208],[-73.90738830231192,40.88781969168144],[-73.90796339997496,40.888859753371264],[-73.90831585152183,40.889115897968814],[-73.90853308083753,40.889167389275265],[-73.90855714247373,40.88928966665628],[-73.90900535981952,40.889500141299095],[-73.90929422475324,40.88928229677402],[-73.90975930240093,40.88925002861984],[-73.90981767073008,40.88899656952535],[-73.91115061781205,40.888277105622386],[-73.91173089063594,40.88821871345007],[-73.91210920633289,40.887382505038914],[-73.91281277474994,40.88639518723734],[-73.91347365478012,40.88577197119451],[-73.91489276976344,40.884624770698544],[-73.91586527704142,40.88485810708777],[-73.91630438639294,40.884909511477765],[-73.91876151390892,40.8855696847806],[-73.91865495670355,40.88622532555911],[-73.91869590496049,40.886885203605324],[-73.92058641943568,40.8871826776151],[-73.91782218257961,40.89442228707887],[-73.91781851992624,40.894542421322214],[-73.91790870041085,40.894676766399556],[-73.91763488207486,40.89494190535217],[-73.91694161078402,40.89664455170236],[-73.91670849171858,40.89738405476784],[-73.91672314187356,40.89748694248996],[-73.91518455871676,40.90158428286213],[-73.91523397353181,40.901696797245165],[-73.91543172958427,40.90181268368833],[-73.91501449586045,40.903081299106404],[-73.91459039243314,40.90411900219635],[-73.91429080087588,40.90409320746259],[-73.91418416752515,40.90413933380091],[-73.91286540202563,40.9075351222029],[-73.91307611905411,40.907739530713634],[-73.91310863925622,40.90784448415373],[-73.91272669713648,40.907994842394864],[-73.91264932172878,40.90807081195535],[-73.91234051101208,40.909058194768704],[-73.91235918382182,40.90913673357633],[-73.9122686885144,40.90923014850236],[-73.91157895749353,40.91213595931989],[-73.91150475394971,40.91216987887429],[-73.91149190703743,40.912233769311996],[-73.9115361890552,40.91230206177201],[-73.91143213027847,40.912823826219665],[-73.9116547233596,40.913417851896185],[-73.91141942200737,40.91383369219434],[-73.91120519511497,40.91405101571139],[-73.9112208980424,40.91418559131996],[-73.91113412852145,40.91433060590044],[-73.91066855401314,40.91479942865658],[-73.91033256849046,40.915532776000056],[-73.91011276625106,40.91539873414454],[-73.90851155017607,40.915002264026334],[-73.90245663938691,40.912958933425394],[-73.9006640931032,40.91246387766996],[-73.89991648363414,40.912370689458115],[-73.89810489622418,40.91179060051216],[-73.89725326354973,40.91165551993859],[-73.8966333379699,40.911417375348236]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN36",NTAName:"Washington Heights South",Shape_Leng:22095.9209012,Shape_Area:23099994.5193},geometry:{type:"Polygon",coordinates:[[[-73.93139355315762,40.84742823140946],[-73.93556697174425,40.84171252755789],[-73.93563666176574,40.841500139839674],[-73.93562826736833,40.84127936215273],[-73.93543637028216,40.840751331105956],[-73.93510666614674,40.84018372666801],[-73.93500575406057,40.83985191078214],[-73.9350550875888,40.839333236162794],[-73.93533061470691,40.8388749129977],[-73.93595950279861,40.838369898475335],[-73.9363831692527,40.83785012505351],[-73.93804235780865,40.834288545650956],[-73.93832027810943,40.833978818280706],[-73.93947814413798,40.833013489359374],[-73.94024600816319,40.831842121109716],[-73.9403683082882,40.83146049251433],[-73.94034643247525,40.83045784284946],[-73.94592558095874,40.83280648970199],[-73.94829108137871,40.83386118077179],[-73.94890543286253,40.83406529887677],[-73.9494157055686,40.83435858983278],[-73.9497761621831,40.83445596451128],[-73.9501552106278,40.834396759816094],[-73.94974257886044,40.83562808782485],[-73.94968634744758,40.83610986332492],[-73.94954600729373,40.83660437150178],[-73.94945701919954,40.83670561947371],[-73.94928285057291,40.83674078658351],[-73.94948204647807,40.83680583985768],[-73.94954003717068,40.83687963152353],[-73.94856054520565,40.83956488465911],[-73.94796701014093,40.84065410769614],[-73.947383221543,40.84194082529929],[-73.94716788288537,40.842159099043634],[-73.94693502929024,40.842619197504476],[-73.94645858066653,40.84325438326081],[-73.94612416355594,40.8438924965568],[-73.94607880557088,40.84459767032831],[-73.94622271166769,40.845259166341265],[-73.94617174983877,40.8453928915806],[-73.94627665024153,40.84569065991869],[-73.94651730200577,40.84599518440372],[-73.94634839459356,40.846156448606784],[-73.94635078049976,40.84624033078668],[-73.94647353057957,40.84652861766086],[-73.94671767879176,40.84682475824715],[-73.94682445342644,40.84713426206978],[-73.9468093526662,40.84728844663745],[-73.94669858704917,40.84749739387235],[-73.94664058271972,40.84793929215078],[-73.94667853831578,40.84883745909329],[-73.94663550078853,40.84891242506],[-73.94673313406388,40.849267497214484],[-73.94685525004355,40.84942768019962],[-73.94699578724298,40.8499559242925],[-73.94695814408,40.84998525944889],[-73.94702782494721,40.85004183181242],[-73.94695342915082,40.85009773522205],[-73.94701781699507,40.85012699598267],[-73.94704980259193,40.85022334922834],[-73.94692626471009,40.85052805617122],[-73.94317806054853,40.84979994350197],[-73.9430964794399,40.85038730258541],[-73.9429034615928,40.85099716398683],[-73.94253950964713,40.85150210533041],[-73.94203871715261,40.851931028896026],[-73.94126220306671,40.85139196219374],[-73.94068821968366,40.85131543261699],[-73.93992663249514,40.85132430476711],[-73.93957073846597,40.85127555618831],[-73.9357539429627,40.85016820285021],[-73.93639683136003,40.84954119483693],[-73.93139355315762,40.84742823140946]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN50",NTAName:"Elmhurst-Maspeth",Shape_Leng:32340.7793667,Shape_Area:21956068.4625},geometry:{type:"Polygon",coordinates:[[[-73.89175048792531,40.74681172763667],[-73.89139145532337,40.746641004329845],[-73.89071647522985,40.74312778397546],[-73.88798650795324,40.74354819237002],[-73.8875113205751,40.74108252663564],[-73.8857258812434,40.741288705926756],[-73.88551225128519,40.7401650188858],[-73.88282912173034,40.74099228285427],[-73.88294286815255,40.74160954372014],[-73.88100387984024,40.741840662492585],[-73.87910739756686,40.74044507821544],[-73.87791831742702,40.739394957188566],[-73.87743058352486,40.73860051566832],[-73.87945154892323,40.738198113637495],[-73.88230252677222,40.737707701154],[-73.88033059323018,40.7373336772273],[-73.88051536791613,40.735752171924034],[-73.88066188945511,40.735707874190936],[-73.87708276281701,40.732909316762054],[-73.87822455964039,40.7321022697678],[-73.87725122453755,40.731794153381486],[-73.87752195765928,40.731593169216296],[-73.8802939192119,40.732561645303356],[-73.8810869161179,40.732935630218016],[-73.88352910369615,40.733848278704315],[-73.88381086968471,40.733559535668725],[-73.88500017855742,40.733970056541146],[-73.88689197756352,40.73409916284289],[-73.8875142662088,40.73422534882308],[-73.88852285901477,40.73453116001532],[-73.88910318916383,40.734592396461764],[-73.89255554655618,40.73447812580762],[-73.89347408300252,40.7346021775463],[-73.89457544923928,40.73494652861962],[-73.89492421774364,40.73500772218396],[-73.89602931590734,40.73501789160888],[-73.89651105174435,40.73509674154278],[-73.89691188038539,40.73508660183094],[-73.89830799682723,40.73519418432566],[-73.89922944702828,40.735111598773486],[-73.90015343439973,40.734796405449266],[-73.90053015013642,40.73456130234625],[-73.90107970834305,40.73391463427611],[-73.9047029758451,40.73567990310633],[-73.90516948859658,40.7358596431284],[-73.90601830403253,40.73401073907942],[-73.90568645938909,40.733915824807454],[-73.90598353285557,40.73326568411645],[-73.90628903408063,40.73240075153296],[-73.9106887640115,40.73347108174275],[-73.90926003023544,40.73640318078666],[-73.90761906565108,40.73665029883512],[-73.90672950518606,40.73691348497788],[-73.90364752587223,40.73821736934774],[-73.901743216204,40.73890039752103],[-73.90057825392257,40.73949289589982],[-73.89920950764412,40.74054548052465],[-73.89557809294543,40.74350275420418],[-73.89524819687342,40.743819729816],[-73.89499026480698,40.74413421315209],[-73.89478949283806,40.744584788407245],[-73.89466630769073,40.74517684007097],[-73.89468658103016,40.74562432010928],[-73.89490427305202,40.7462719931062],[-73.89624245572702,40.74871954558168],[-73.89240906681817,40.747135328888824],[-73.89175048792531,40.74681172763667]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN03",NTAName:"Springfield Gardens South-Brookville",Shape_Leng:45274.9170998,Shape_Area:43279187.9797},geometry:{type:"Polygon",coordinates:[[[-73.75763129618149,40.666451156607],[-73.75602173442488,40.666391716104144],[-73.73856469467763,40.666396898109404],[-73.73954958290831,40.66525602209151],[-73.74281884589821,40.66530554895855],[-73.7434097385489,40.66440416963765],[-73.74374970895556,40.66409039316683],[-73.74405313926896,40.66365807099304],[-73.74450922556183,40.66382127828155],[-73.7468475051505,40.66079554094166],[-73.74679260083369,40.658907622393706],[-73.74733230877439,40.659124521257944],[-73.74853177125411,40.65757569652888],[-73.74506037798072,40.65740715011941],[-73.7448742032556,40.65614455817344],[-73.74328714093889,40.65613473208685],[-73.74332546796677,40.65253780400485],[-73.74654918044816,40.65255348165744],[-73.74867194654914,40.65267808839532],[-73.74937142802769,40.65303483496704],[-73.75109427961604,40.654212441314705],[-73.75208885254426,40.65451770446507],[-73.75294892859951,40.65488504065377],[-73.75371894559217,40.65536538148456],[-73.75606608303166,40.65648646055356],[-73.75680959509802,40.657093283574106],[-73.75922652168921,40.657902236666494],[-73.76003600709586,40.65807344171397],[-73.76165732789806,40.65823808605872],[-73.76172307612265,40.65721442140605],[-73.76184429751837,40.65653695018646],[-73.76210493871439,40.656303066245634],[-73.76242965087343,40.65611060286676],[-73.76279952245356,40.65597330762487],[-73.76319000548969,40.65589805418101],[-73.76406290141571,40.65435626683103],[-73.76976145189289,40.65748223619175],[-73.77305501066171,40.65919975114686],[-73.77418923633385,40.65986052466045],[-73.77484922708848,40.66014868669163],[-73.77670850722292,40.6607062306817],[-73.77849144883018,40.661506302717456],[-73.78075528568306,40.66240660275569],[-73.78321833476903,40.663166283843644],[-73.78481455539668,40.663498582266875],[-73.78502513806315,40.6634210723974],[-73.78751177994283,40.66382524347271],[-73.79582296459151,40.664953255152966],[-73.79702409479808,40.66506588350798],[-73.80072889170243,40.66526937651631],[-73.80203207690114,40.66524802482979],[-73.80155565335342,40.6667533644458],[-73.80027044404778,40.66666752752601],[-73.7994227987444,40.66652066424025],[-73.79919649597528,40.66651752683813],[-73.7985199704182,40.6665908835274],[-73.79739484686674,40.666939885455065],[-73.79711069028413,40.66694966922073],[-73.79498745759273,40.666961827805274],[-73.7930669434685,40.667067294321896],[-73.79218446683386,40.66704188921349],[-73.7894099942198,40.66684115868712],[-73.78566410011291,40.66718754052657],[-73.78330043295958,40.66731460629798],[-73.77342462812882,40.66802762009453],[-73.77154460718653,40.66796326910009],[-73.76182231272998,40.666877760131975],[-73.75763129618149,40.666451156607]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN76",NTAName:"Baisley Park",Shape_Leng:31475.5258931,Shape_Area:44041656.2692},geometry:{type:"Polygon",coordinates:[[[-73.77469730182013,40.680486046911376],[-73.77722923649367,40.67965272144986],[-73.77798227224234,40.67932109316252],[-73.78025859482685,40.67784092439005],[-73.78353613295938,40.67550309113078],[-73.78397384053044,40.67511760920117],[-73.78434496348628,40.6746964399191],[-73.7857373086493,40.672385035134674],[-73.78686902018151,40.67282392456384],[-73.78808647290869,40.67300962649899],[-73.78915781912032,40.66833809624936],[-73.7894099942198,40.66684115868712],[-73.79218446683386,40.66704188921349],[-73.7930669434685,40.667067294321896],[-73.79498745759273,40.666961827805274],[-73.79711069028413,40.66694966922073],[-73.79739484686674,40.666939885455065],[-73.7985199704182,40.6665908835274],[-73.79919649597528,40.66651752683813],[-73.7994227987444,40.66652066424025],[-73.80027044404778,40.66666752752601],[-73.80155565335342,40.6667533644458],[-73.80125079642939,40.668385945324694],[-73.80113236214261,40.670548667618164],[-73.8011723431707,40.67220503174341],[-73.80142836846245,40.67366683394145],[-73.80168194759723,40.674383848959856],[-73.8057684019137,40.68293239125028],[-73.79898209074537,40.68485873782359],[-73.79995042843724,40.68682771945367],[-73.79561486720836,40.68865689126185],[-73.79390841612104,40.68630469089335],[-73.7903846829611,40.68775361379939],[-73.78698344486996,40.68860847697054],[-73.78479240674821,40.68936160017398],[-73.78326625044205,40.6899942927367],[-73.78234452821738,40.68840743798864],[-73.78148675684056,40.6886971833159],[-73.77976509191352,40.685743602628094],[-73.779668506356,40.68537712362554],[-73.77699767603636,40.686282689007776],[-73.77632402182509,40.68521655676644],[-73.77462061032881,40.68399097067494],[-73.77418414936683,40.68323792198779],[-73.77349915269802,40.683482227562386],[-73.7732870403812,40.68345473193415],[-73.77220275281618,40.6816103392835],[-73.77232211270076,40.681490968263795],[-73.77469730182013,40.680486046911376]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN02",NTAName:"Springfield Gardens North",Shape_Leng:25441.6443742,Shape_Area:28428589.2844},geometry:{type:"Polygon",coordinates:[[[-73.76031464000941,40.6751099713793],[-73.75859630277026,40.67274790366507],[-73.75857198867719,40.67263733161661],[-73.75814760678536,40.672706914807655],[-73.75636239259673,40.672429237110244],[-73.75648374561719,40.671489866373136],[-73.7564062130196,40.670372915422824],[-73.75643734357958,40.66966637874346],[-73.75671602468458,40.668562526875164],[-73.75699533361423,40.667741268564356],[-73.75763129618149,40.666451156607],[-73.76182231272998,40.666877760131975],[-73.77154460718653,40.66796326910009],[-73.77342462812882,40.66802762009453],[-73.78330043295958,40.66731460629798],[-73.78566410011291,40.66718754052657],[-73.7894099942198,40.66684115868712],[-73.78915781912032,40.66833809624936],[-73.78808647290869,40.67300962649899],[-73.78686902018151,40.67282392456384],[-73.7857373086493,40.672385035134674],[-73.78434496348628,40.6746964399191],[-73.78397384053044,40.67511760920117],[-73.78353613295938,40.67550309113078],[-73.78025859482685,40.67784092439005],[-73.77798227224234,40.67932109316252],[-73.77722923649367,40.67965272144986],[-73.77469730182013,40.680486046911376],[-73.76837330731246,40.67655024133646],[-73.76561573131731,40.67477902045602],[-73.76380484752556,40.67376993301696],[-73.76367677578409,40.674745525726635],[-73.76343036909249,40.67470605282328],[-73.76248600430034,40.67419498176602],[-73.76031464000941,40.6751099713793]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN08",NTAName:"St. Albans",Shape_Leng:45409.2465003,Shape_Area:77414544.16},geometry:{type:"Polygon",coordinates:[[[-73.75205066516905,40.705228027516945],[-73.74930547145108,40.699142313492345],[-73.75019295751487,40.698912081578214],[-73.74863325886776,40.69544476092139],[-73.7452374757595,40.69637465934542],[-73.74474545394706,40.69638546549648],[-73.7435928608784,40.6962153253104],[-73.7442664884249,40.69426010141441],[-73.74484610564866,40.693139056617866],[-73.7462434557995,40.691279444850935],[-73.74856993160503,40.68780373820849],[-73.7500899119713,40.68592344636012],[-73.75103020622572,40.68422286736814],[-73.75180409215658,40.682403323490654],[-73.75225828685411,40.681491411474006],[-73.75484909670557,40.67792883838739],[-73.75523457805714,40.677288409244824],[-73.75576169227469,40.675885909420444],[-73.75648885835807,40.67602276208845],[-73.75672742391518,40.67620876541205],[-73.75691881719031,40.67652887087493],[-73.76248600430034,40.67419498176602],[-73.76343036909249,40.67470605282328],[-73.76367677578409,40.674745525726635],[-73.76380484752556,40.67376993301696],[-73.76561573131731,40.67477902045602],[-73.76837330731246,40.67655024133646],[-73.77469730182013,40.680486046911376],[-73.77232211270076,40.681490968263795],[-73.77220275281618,40.6816103392835],[-73.7732870403812,40.68345473193415],[-73.77349915269802,40.683482227562386],[-73.77418414936683,40.68323792198779],[-73.77462061032881,40.68399097067494],[-73.77632402182509,40.68521655676644],[-73.77699767603636,40.686282689007776],[-73.779668506356,40.68537712362554],[-73.77976509191352,40.685743602628094],[-73.78148675684056,40.6886971833159],[-73.78234452821738,40.68840743798864],[-73.78326625044205,40.6899942927367],[-73.780781554983,40.69102994294874],[-73.77977295070055,40.68928116998791],[-73.7778933737174,40.689917690032544],[-73.78023723847116,40.69297233543551],[-73.77944081337645,40.69364510969761],[-73.77783593415641,40.69432133540323],[-73.77659775517716,40.69596911441699],[-73.77459377478965,40.69879949818135],[-73.77395659465941,40.69980578158961],[-73.77230768599198,40.700571507822325],[-73.7750746229646,40.705239983801796],[-73.77559218769971,40.7053293087231],[-73.77561486296847,40.70569722174943],[-73.77555451090385,40.70607083568819],[-73.77530808871064,40.706606178568286],[-73.77490093301228,40.707066661911355],[-73.77430843648854,40.707393668458366],[-73.77333799482268,40.70779351571954],[-73.77230141691341,40.70807142303393],[-73.76844546516843,40.70963702715981],[-73.76825969052467,40.709526367876904],[-73.76725075938906,40.70631255784999],[-73.7670144177662,40.705268131307605],[-73.76657282468801,40.70275162101321],[-73.76612489376727,40.702334485772944],[-73.76126359340697,40.70359894095922],[-73.7609554655067,40.70290957793805],[-73.75205066516905,40.705228027516945]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK77",NTAName:"Bushwick North",Shape_Leng:26403.1660005,Shape_Area:25021091.1922},geometry:{type:"Polygon",coordinates:[[[-73.90123290594052,40.69144227863759],[-73.90180467154046,40.690766298266446],[-73.90405577122156,40.68854627866007],[-73.90482499670759,40.688808569870126],[-73.93115533924303,40.70377233487016],[-73.93269784924918,40.70317039122254],[-73.93391870754871,40.70748702613151],[-73.92418647456469,40.70906472933194],[-73.92189184632649,40.70939609671034],[-73.91180710069368,40.70343495252918],[-73.91290404121892,40.70236189179923],[-73.91067882737353,40.70104596956666],[-73.9118082010442,40.6999380031244],[-73.90426018411688,40.69570037144317],[-73.9057959700921,40.69412715551356],[-73.90207277431011,40.69199923130471],[-73.90148893588011,40.69155688420641],[-73.90123290594052,40.69144227863759]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN20",NTAName:"Ridgewood",Shape_Leng:40613.6049659,Shape_Area:50486248.6288},geometry:{type:"Polygon",coordinates:[[[-73.9047724456856,40.712865799877406],[-73.89590386058431,40.71250695923003],[-73.88507555748993,40.712161055608895],[-73.88006267706807,40.71265257368946],[-73.87907685282377,40.710359389840455],[-73.87943495503512,40.710284419435496],[-73.8792618124831,40.70990534726832],[-73.87872783207331,40.7100275351419],[-73.87761134178638,40.70716770558127],[-73.88086188483794,40.706584729365744],[-73.88088332654786,40.70645397777022],[-73.88377296918071,40.70629420165468],[-73.88553214158814,40.70644568324871],[-73.88554946851845,40.70615461853363],[-73.88652826814834,40.706225206377354],[-73.88911917685512,40.70559887739664],[-73.891053169728,40.703816413302434],[-73.89384018413985,40.70085972605938],[-73.89500322684931,40.69971237746388],[-73.89484994963576,40.6985896233233],[-73.89578005089632,40.6985109621415],[-73.89558457649505,40.69712764200664],[-73.89677249965997,40.69679911679602],[-73.89838185197416,40.69613599750226],[-73.89888585772813,40.69538947540035],[-73.90003039216377,40.69343745057417],[-73.90038667856075,40.69313995962468],[-73.90123290594052,40.69144227863759],[-73.90148893588011,40.69155688420641],[-73.90207277431011,40.69199923130471],[-73.9057959700921,40.69412715551356],[-73.90426018411688,40.69570037144317],[-73.9118082010442,40.6999380031244],[-73.91067882737353,40.70104596956666],[-73.91290404121892,40.70236189179923],[-73.91180710069368,40.70343495252918],[-73.92189184632649,40.70939609671034],[-73.92074519655475,40.7105296864903],[-73.92122073526369,40.71079055855643],[-73.92154601695682,40.71104328353481],[-73.92168663633558,40.711894317398375],[-73.92223294598762,40.71285442485275],[-73.92313936349358,40.71339472809091],[-73.92404011334023,40.71400831262889],[-73.91077807358384,40.713187599919],[-73.91015817854917,40.713821599986424],[-73.91283037666925,40.71536090798428],[-73.91245827647036,40.7155322902048],[-73.91221070492854,40.7157093567909],[-73.911342707829,40.716597028861635],[-73.91048364446846,40.71732796504595],[-73.90965980141526,40.71779315582969],[-73.90943398658362,40.71758177334296],[-73.90696370818947,40.71730441724758],[-73.90639010028487,40.71736369205476],[-73.90537582225075,40.712876581563286],[-73.9047724456856,40.712865799877406]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN21",NTAName:"Middle Village",Shape_Leng:42663.071159,Shape_Area:57691281.7433},geometry:{type:"Polygon",coordinates:[[[-73.85965416837627,40.71337996141231],[-73.86500982001613,40.710776908933404],[-73.86661823191537,40.71040164855867],[-73.87016462450325,40.709207743441674],[-73.86989582469542,40.708507094191454],[-73.86949738553879,40.70787207021868],[-73.8691100709302,40.7070893367642],[-73.87153400383555,40.70703676705637],[-73.87720614757843,40.70668884049955],[-73.87900684284199,40.706536839367274],[-73.88088332654786,40.70645397777022],[-73.88086188483794,40.706584729365744],[-73.87761134178638,40.70716770558127],[-73.87872783207331,40.7100275351419],[-73.8792618124831,40.70990534726832],[-73.87943495503512,40.710284419435496],[-73.87907685282377,40.710359389840455],[-73.88006267706807,40.71265257368946],[-73.88507555748993,40.712161055608895],[-73.89590386058431,40.71250695923003],[-73.9047724456856,40.712865799877406],[-73.89750226433192,40.71638386771287],[-73.89792430341309,40.71678540231752],[-73.89901821099927,40.71738212746766],[-73.89882095564172,40.717372228501745],[-73.89726757866013,40.718147156562715],[-73.89834760053485,40.71919767756447],[-73.89985149422799,40.71837539796614],[-73.90005938044325,40.718046378606864],[-73.90033904275478,40.71801994789667],[-73.90033454469079,40.71866913990551],[-73.90062644427873,40.71976405404454],[-73.90009286425726,40.72017685333995],[-73.89783709951287,40.72047019591207],[-73.89774824376545,40.72035734729999],[-73.89736598317185,40.72046438287297],[-73.89739704867227,40.7215512099578],[-73.89981610160434,40.721236900280644],[-73.90010558662733,40.72329624052273],[-73.89903191817591,40.7238569603149],[-73.89835285104532,40.7231122898682],[-73.89582380640651,40.72389882212851],[-73.89569743326905,40.72341258554429],[-73.89451032515605,40.72313194913233],[-73.89426494144976,40.723143188916595],[-73.89030329368545,40.72492388674767],[-73.89017449678094,40.724946889035785],[-73.88707712051256,40.724637701844806],[-73.88713253575155,40.726142346534914],[-73.8872039560873,40.72619323192364],[-73.88724113850516,40.72740160889627],[-73.88720524954047,40.72779299719091],[-73.8862376588498,40.72812701722863],[-73.8850072950199,40.728371895070104],[-73.88172301699042,40.728635254029015],[-73.88089793649064,40.72874131244217],[-73.88008877489108,40.72890627471674],[-73.87969354088507,40.72901015941861],[-73.87628302426636,40.73031309391965],[-73.87509154155609,40.73067136321961],[-73.87146074249573,40.7293263741384],[-73.87084539424181,40.72748459344054],[-73.86970765351231,40.72514643414138],[-73.86929270489084,40.72443592947488],[-73.86523870611744,40.71997671002668],[-73.86301850142435,40.71770788185682],[-73.86003789875774,40.71493223572394],[-73.85982746172238,40.7145616896091],[-73.85962920970181,40.71397529519454],[-73.85965416837627,40.71337996141231]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX49",NTAName:"Pelham Parkway",Shape_Leng:25816.8227066,Shape_Area:23033456.4967},geometry:{type:"Polygon",coordinates:[[[-73.8368191852706,40.857276809597224],[-73.83690582209658,40.85718069620436],[-73.83691212759376,40.857008107135286],[-73.83667557198514,40.856652663480084],[-73.83499552602974,40.8565712007783],[-73.83646667967747,40.856098438725574],[-73.83734249323862,40.855866864323716],[-73.83818561172289,40.85556400958188],[-73.83935708982847,40.85498675360949],[-73.84049767366062,40.85418410511595],[-73.84149163293958,40.85319428630923],[-73.844940537307,40.848218220851265],[-73.84505506620776,40.84894655976763],[-73.84496954044718,40.8500970311154],[-73.84430846898952,40.85119046419636],[-73.84453077179928,40.85113289897883],[-73.84668500549904,40.851118078163694],[-73.84721027665717,40.851036839058565],[-73.84729781256918,40.85108686897413],[-73.84968869730662,40.851058906538185],[-73.85304526868146,40.849547332435804],[-73.85457388235473,40.85150834573243],[-73.86069456604683,40.84875339439576],[-73.86119240841124,40.848603468111556],[-73.86250923753487,40.84836228117219],[-73.86278872813949,40.84923798317178],[-73.86303938073125,40.85061130723228],[-73.86518787236398,40.85016438616905],[-73.86612130826819,40.850527222416304],[-73.86860515575896,40.852068645940726],[-73.86990421502472,40.855773292692966],[-73.86988842286954,40.855971067150314],[-73.86818830558833,40.85806383380827],[-73.86817334023647,40.8579185492957],[-73.86807772351477,40.85784684234343],[-73.86758752468768,40.857830089651884],[-73.85663774604133,40.85811917198921],[-73.8493089340578,40.85871750285786],[-73.84739746975032,40.858682545855956],[-73.846458540773,40.858636373703696],[-73.84329553150599,40.85829037562906],[-73.8368191852706,40.857276809597224]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN68",NTAName:"Queensbridge-Ravenswood-Long Island City",Shape_Leng:27071.6129224,Shape_Area:23312820.1501},geometry:{type:"Polygon",coordinates:[[[-73.93452730109439,40.77117677510335],[-73.9342460961504,40.77102927567416],[-73.93447449145674,40.77041159718884],[-73.93486925470714,40.769850878444075],[-73.93577133991252,40.76905001004506],[-73.9359317710311,40.76778370276552],[-73.9385897687332,40.76681735924904],[-73.93600532386843,40.76588489470605],[-73.93700478603876,40.76423995421693],[-73.93398092138001,40.76282598226015],[-73.93679091661967,40.759882881139255],[-73.92415700043726,40.75396114233172],[-73.92562743725455,40.752137244754955],[-73.92646866931179,40.75206856840569],[-73.93227623247525,40.75195388603703],[-73.93383269406608,40.75160470194017],[-73.93474259153798,40.75097904407217],[-73.93675697103174,40.74914697179088],[-73.93739653782103,40.748916440465884],[-73.93773732454929,40.74925130778966],[-73.93796657806722,40.74966908558995],[-73.93811821686712,40.749792645154734],[-73.93963348684122,40.750382011140445],[-73.95080763818349,40.7552636801143],[-73.94596424219853,40.76129260661026],[-73.94570525640735,40.7614881570566],[-73.94350281966634,40.764499040743466],[-73.9413117494145,40.76691800476961],[-73.94035103718281,40.76765337598706],[-73.93983559349122,40.767988005939294],[-73.93953321663768,40.76805874385168],[-73.93936587223888,40.768159701376995],[-73.93895502453354,40.76795818621704],[-73.93820383552176,40.76872757186426],[-73.93757632583436,40.76892399418528],[-73.93681460654729,40.768903947478385],[-73.93668539119415,40.76913305469087],[-73.93670737923087,40.76925260907374],[-73.93640381802315,40.76947488401464],[-73.93616913853458,40.76951611465412],[-73.93574021432624,40.76936722986652],[-73.93524016831186,40.76967932546295],[-73.93489533894558,40.7700418628895],[-73.9346949906708,40.77042533751995],[-73.93514715402598,40.77054195605838],[-73.93500813872274,40.771162394363955],[-73.93493892956693,40.77116405317726],[-73.9349048128265,40.77127064118665],[-73.93452730109439,40.77117677510335]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX28",NTAName:"Van Cortlandt Village",Shape_Leng:21981.0001466,Shape_Area:25662783.3014},geometry:{type:"Polygon",coordinates:[[[-73.88705142536118,40.88434957584596],[-73.88712303584809,40.883200939945446],[-73.88723194009827,40.88305497842836],[-73.88697007522872,40.88279564271684],[-73.88694246809466,40.88268276675589],[-73.8871650519915,40.88257651089221],[-73.88595071664201,40.88050741213252],[-73.8856751802567,40.87887251080847],[-73.88773577644082,40.8770338817902],[-73.88937163753194,40.87338229790118],[-73.88785196328794,40.87211417612788],[-73.88793503664564,40.87203023235723],[-73.88868449911644,40.871495113018035],[-73.89098696993577,40.870160715430785],[-73.89157400109443,40.869684252840855],[-73.8919171826082,40.86930211007544],[-73.89438130324764,40.86606885121163],[-73.89631315736122,40.86703857544458],[-73.89740323298722,40.86747418971113],[-73.89656060531266,40.86856520008376],[-73.89891854298266,40.869658574486635],[-73.89933851172388,40.869228028104736],[-73.89960300360637,40.868728208256286],[-73.89965220207914,40.868554578780966],[-73.89942436187407,40.867880837716164],[-73.90194155023745,40.86853363079842],[-73.90235804846438,40.868696120953416],[-73.90318667465901,40.86914899098855],[-73.90374975893965,40.86959562714007],[-73.90442003209795,40.8703612760011],[-73.90448860555915,40.8705785485482],[-73.90443428798507,40.87224530928331],[-73.90452070450378,40.87249521120475],[-73.90467728274545,40.872619879498885],[-73.90571425362506,40.87313832210177],[-73.90607917977971,40.87324242069396],[-73.90480365002759,40.87571153747315],[-73.9038983378116,40.87812110805264],[-73.90369454788232,40.878501618269176],[-73.90333605372308,40.87897514559692],[-73.9015065841932,40.880954906321385],[-73.89855059942444,40.8843747270919],[-73.89661546555914,40.88595525550792],[-73.89467529596429,40.88553265003689],[-73.89288644520438,40.88526430680866],[-73.8875861260892,40.88425561916041],[-73.88705142536118,40.88434957584596]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX30",NTAName:"Kingsbridge Heights",Shape_Leng:21305.8766348,Shape_Area:13167151.1829},geometry:{type:"Polygon",coordinates:[[[-73.90607917977971,40.87324242069396],[-73.90571425362506,40.87313832210177],[-73.90467728274545,40.872619879498885],[-73.90452070450378,40.87249521120475],[-73.90443428798507,40.87224530928331],[-73.90448860555915,40.8705785485482],[-73.90442003209795,40.8703612760011],[-73.90374975893965,40.86959562714007],[-73.90318667465901,40.86914899098855],[-73.90235804846438,40.868696120953416],[-73.90150981645179,40.86839595294268],[-73.89942436187407,40.867880837716164],[-73.89965220207914,40.868554578780966],[-73.89960300360637,40.868728208256286],[-73.89933851172388,40.869228028104736],[-73.89891854298266,40.869658574486635],[-73.89656060531266,40.86856520008376],[-73.90162785087816,40.86205443407744],[-73.90254479392595,40.86057825533626],[-73.90351390498017,40.86091750964765],[-73.90486847215523,40.85869322470881],[-73.90679734942145,40.85937358893126],[-73.90725786188281,40.85935343791984],[-73.90777320513382,40.85960753768545],[-73.909567200765,40.85759162415976],[-73.90976165858935,40.85718261160448],[-73.90980269932912,40.857607548833386],[-73.91020818094408,40.858288788870794],[-73.91056799272997,40.85862059323352],[-73.91088488442973,40.85877618293704],[-73.91328436985144,40.85961860183264],[-73.91286093048535,40.859894147177464],[-73.91238663179108,40.860122998635916],[-73.91114937351254,40.86052367131782],[-73.91027422491842,40.86105453534063],[-73.90965329558607,40.86160687953684],[-73.90922426407224,40.86213551835781],[-73.90908822418265,40.862399695640136],[-73.90903950920035,40.8626788640864],[-73.90939703489288,40.8625677719666],[-73.9097219403001,40.862406667991365],[-73.91075595805776,40.86165148436462],[-73.91181229111699,40.861732386904016],[-73.91278962862323,40.86187247052312],[-73.91422824066119,40.86249079021724],[-73.91341462193654,40.86336749370068],[-73.91276271995461,40.86302917415756],[-73.91227278976979,40.86363214899667],[-73.9127976219514,40.86389887543333],[-73.91275216216494,40.86394505684285],[-73.91252604516872,40.863795223335174],[-73.91267634020386,40.864021111602405],[-73.9109129234582,40.865937945987085],[-73.91041774442581,40.866569544193595],[-73.91034827097924,40.86674233585747],[-73.91035983824388,40.86687689140599],[-73.9101746817974,40.86719121511593],[-73.90949664378522,40.86883115664087],[-73.90927464107402,40.86955413288568],[-73.90893714929898,40.871019840308804],[-73.90864943111377,40.87138578380274],[-73.9089323517538,40.87215734797008],[-73.9087204639138,40.872228665589304],[-73.9084636791247,40.872620792207115],[-73.9077427078456,40.87284595211156],[-73.9074648979431,40.873547354236386],[-73.90607917977971,40.87324242069396]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK63",NTAName:"Crown Heights South",Shape_Leng:24192.4324762,Shape_Area:15989310.3348},geometry:{type:"Polygon",coordinates:[[[-73.96131877957849,40.67140667593056],[-73.95904725285418,40.67088226754646],[-73.95526963654763,40.67012490485407],[-73.94772996328905,40.66971344240998],[-73.94781857537949,40.6687837536743],[-73.93674947013409,40.6681273707869],[-73.93698362306591,40.66553550787775],[-73.92868404424777,40.66508602327383],[-73.92872204594657,40.66449556918267],[-73.93068465493032,40.66362047727534],[-73.9428289224684,40.66284748566927],[-73.94269628894098,40.664055129235244],[-73.945462936545,40.66422610413657],[-73.95720935391155,40.66351739728013],[-73.95729172603521,40.664302632819414],[-73.95787061929317,40.664273357503816],[-73.96033682872293,40.66410869834836],[-73.96061544798397,40.663302750168135],[-73.96095595387627,40.663285054834],[-73.96257531366612,40.671644198394326],[-73.96131877957849,40.67140667593056]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK68",NTAName:"Fort Greene",Shape_Leng:19829.7577112,Shape_Area:16500442.1847},geometry:{type:"Polygon",coordinates:[[[-73.96939450045458,40.69608038942044],[-73.96880989647165,40.69312038239882],[-73.96983118473524,40.693134243973894],[-73.969103623995,40.6894675215054],[-73.97013154130974,40.68950630795856],[-73.9690620203265,40.68415736136272],[-73.96868961357634,40.6820052575973],[-73.97595299697944,40.68347469826458],[-73.9768226804091,40.68375383831103],[-73.97745722097206,40.684052286608065],[-73.98092822852801,40.688902477273615],[-73.98372011148608,40.69000671862526],[-73.98147568191625,40.6899309436239],[-73.98213180227553,40.691227237368146],[-73.98178907346113,40.691644867884435],[-73.9817588904377,40.692955173039614],[-73.98253983692032,40.69300261563401],[-73.98251122955553,40.69361433402814],[-73.97916718405031,40.693488323221146],[-73.97938094182273,40.69388775687718],[-73.97995651774367,40.69438029471216],[-73.98013518053021,40.69469801720824],[-73.98040961517154,40.696559343582436],[-73.98054419183876,40.698246512252155],[-73.96972789882123,40.69780401387998],[-73.96939450045458,40.69608038942044]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN47",NTAName:"Ft. Totten-Bay Terrace-Clearview",Shape_Leng:39606.0092134,Shape_Area:46297337.6267},geometry:{type:"Polygon",coordinates:[[[-73.76782207564013,40.77881037631181],[-73.76796073127599,40.778776009213296],[-73.76803333393048,40.77885839455731],[-73.76811174664624,40.77883403478091],[-73.7680719222676,40.778748448538316],[-73.76833788977416,40.7786825251413],[-73.76857305035301,40.77910542880437],[-73.7755373218136,40.77702559797911],[-73.7758395833234,40.778612372112015],[-73.77678363262261,40.7784095837903],[-73.77947656058416,40.77766416991918],[-73.78826972953263,40.77507535732957],[-73.79163526066459,40.774238655585854],[-73.7936523027001,40.77336043864131],[-73.79565702077424,40.77303608621203],[-73.7974152277202,40.774010319151394],[-73.79772190077279,40.77427237380939],[-73.79853009427278,40.77519072888337],[-73.80379022888246,40.77561011179247],[-73.80303318468549,40.78094087010286],[-73.80324974717969,40.781275479895605],[-73.80299781999226,40.781410475638666],[-73.80254724625168,40.78467334667476],[-73.80241070161266,40.78581721098666],[-73.80242791605949,40.786068274476875],[-73.79784205541509,40.78589425923585],[-73.79582463114869,40.78613058811101],[-73.79491977645195,40.78633880754827],[-73.79392031810937,40.78667573997041],[-73.79058299028675,40.78819291045559],[-73.79133754883983,40.78885774080147],[-73.79179280404088,40.78935161609341],[-73.79028202353363,40.790316962897215],[-73.78988738668917,40.790371930979646],[-73.7893090713177,40.79038006955032],[-73.78750199944687,40.79030881800566],[-73.78568101301406,40.790340671659976],[-73.78383842514354,40.79064095467154],[-73.78317941041598,40.79086646370096],[-73.78253080663524,40.79127678943192],[-73.78252265628706,40.79135222690584],[-73.78440669069622,40.79167583933371],[-73.78434153059595,40.7917493537948],[-73.7822733018339,40.79137371571798],[-73.78174708829228,40.79113340664574],[-73.78123362045922,40.79148460246046],[-73.78107845970223,40.79167732177905],[-73.78089784791278,40.792193704849026],[-73.78077503139183,40.792990704837955],[-73.78077892548093,40.79318978586507],[-73.7808394901432,40.793277440172815],[-73.78158881545016,40.7934635410125],[-73.7816386419167,40.793309707766824],[-73.78168372830483,40.79332175650821],[-73.78160879379371,40.793451615702814],[-73.7816601155539,40.79348202031302],[-73.78164213433463,40.793525053377614],[-73.780821548698,40.79331942900062],[-73.7808080880406,40.79335093271451],[-73.78072435069836,40.79333361882417],[-73.78070025516259,40.79364850590944],[-73.7807918207265,40.79403591986438],[-73.78100539667295,40.79438481862714],[-73.78152857479162,40.79472485577664],[-73.78181003762921,40.79480185241985],[-73.78190385487169,40.79490120389543],[-73.78310976963971,40.7949144605058],[-73.78328948833693,40.79475996026352],[-73.78332043363012,40.794787845764965],[-73.78317406856861,40.794984558047005],[-73.78200326103381,40.79497546250353],[-73.78182459908463,40.79507728921092],[-73.78172625575581,40.795427505519946],[-73.78154150032748,40.795659737319994],[-73.77989837492117,40.79623809786157],[-73.77980305118196,40.796205528937996],[-73.77944961456497,40.79657623806388],[-73.77943301516063,40.79666153857652],[-73.77936246804829,40.79668539253481],[-73.77927287841116,40.79663768381931],[-73.77871478828732,40.79659736019726],[-73.77841209378305,40.79670470445808],[-73.77808486122393,40.796740032081985],[-73.77748973756485,40.79663737943152],[-73.7768705048959,40.7964452046954],[-73.77613963747991,40.796071546282526],[-73.77530079651228,40.79527997470993],[-73.77471814244022,40.79485987012772],[-73.77437174339872,40.794496060540496],[-73.77415143110741,40.79413787185207],[-73.77401353497515,40.79403000136458],[-73.77401822194827,40.793768218453664],[-73.7736324812279,40.792749756213794],[-73.77320467172572,40.7922425322318],[-73.77236296228139,40.791538204131456],[-73.7722515187458,40.79123367147613],[-73.77225342843806,40.7904835997888],[-73.77213292826463,40.790178774334414],[-73.77177888384398,40.78990291033442],[-73.77174554616067,40.789694883529656],[-73.77166811348015,40.78959191109836],[-73.77063124537774,40.78846290503201],[-73.77068942292148,40.78821406589555],[-73.77082315021426,40.78798266705991],[-73.77190205747316,40.78738659499339],[-73.77228340518168,40.78730506666963],[-73.77396728781514,40.78678177371452],[-73.7742683612509,40.786756658656024],[-73.77434609217971,40.78677223413504],[-73.7743897683491,40.78685714529681],[-73.77420002662132,40.78696216313965],[-73.77423011486859,40.787065041675916],[-73.77501922612181,40.787394474382836],[-73.7762894485543,40.78851364819943],[-73.77633728884845,40.788487225755055],[-73.7750481037271,40.78719259407139],[-73.77486248240426,40.78707913013464],[-73.77480695369415,40.78697068727885],[-73.77463082612462,40.786919418690374],[-73.77445462503047,40.78667990922225],[-73.77426466694435,40.78665122914523],[-73.77409609895103,40.78629656530384],[-73.77407638297788,40.785917284019185],[-73.77160731979487,40.782996265185446],[-73.76930405776241,40.78078195798268],[-73.76833795673888,40.77963487220071],[-73.76815915444404,40.779635958694875],[-73.7681345883816,40.779589640442005],[-73.76823190254112,40.77950163764267],[-73.7682005552614,40.77944417919229],[-73.76716193687592,40.77978287566065],[-73.76720729367467,40.77986682861185],[-73.76699783535096,40.77993147052598],[-73.7670734335662,40.78007042899435],[-73.76702392346506,40.780086234158304],[-73.7668899470384,40.779779433943396],[-73.76677570440226,40.77981245819709],[-73.76675868631223,40.77978350558987],[-73.76708815912738,40.779667054750846],[-73.76713544909904,40.77974233714532],[-73.76816173051581,40.77939682124198],[-73.76782207564013,40.77881037631181]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK09",NTAName:"Brooklyn Heights-Cobble Hill",Shape_Leng:14137.0686017,Shape_Area:9976529.85203},geometry:{type:"Polygon",coordinates:[[[-73.99236367043247,40.68969012377697],[-73.9977692437901,40.69119469786073],[-74.00110519325061,40.69205659533919],[-74.0017436211104,40.692406749705455],[-74.0012701496867,40.693296061673706],[-74.0009586848302,40.69406908358219],[-74.00026872377788,40.69496580207532],[-73.99941302433206,40.696357676955856],[-73.99952373903514,40.69657482604083],[-73.99947406820604,40.696704134461974],[-73.99918199016864,40.69688518806474],[-73.99899604139193,40.69681227837294],[-73.99893969034687,40.69694094051579],[-73.99887207276453,40.696923784071544],[-73.99876458027705,40.69712073259139],[-73.99887117097656,40.697157576793245],[-73.9974989831,40.69963886932121],[-73.99736745811687,40.699634234427144],[-73.99716054243922,40.699792812644105],[-73.99717584355882,40.70010599196633],[-73.99724462871697,40.70014140989705],[-73.99504592748325,40.70313183979955],[-73.99490816029355,40.70304734112165],[-73.99380996621392,40.70267441150197],[-73.99261204972427,40.70206112850353],[-73.99093201807528,40.700766216048706],[-73.99087453758065,40.70067311729584],[-73.99082272096503,40.70035475430933],[-73.99129519940507,40.69918943203269],[-73.99143347128845,40.69828185881202],[-73.99136812163775,40.697013752735714],[-73.99128413687744,40.69658821028371],[-73.99044474028206,40.69382825143354],[-73.99097186899587,40.69254880038537],[-73.98947238554467,40.69229549384506],[-73.98902944698997,40.692123861519974],[-73.98930768476079,40.69099168846791],[-73.99054474614348,40.68916810529582],[-73.99070669558942,40.68913674411064],[-73.99236367043247,40.68969012377697]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN21",NTAName:"Gramercy",Shape_Leng:12089.9994827,Shape_Area:7531851.57929},geometry:{type:"Polygon",coordinates:[[[-73.97849845639804,40.73679095652543],[-73.97944605974463,40.73541451506249],[-73.98238628685745,40.73141124480818],[-73.98255629297803,40.73135013455457],[-73.9899029597005,40.73443479013687],[-73.98995565867686,40.73497658999132],[-73.9899169002143,40.73534934159972],[-73.98407485194073,40.743324718416474],[-73.98085965412407,40.74196976808192],[-73.98266497479025,40.73949733270412],[-73.97805226497616,40.73755395365617],[-73.97849845639804,40.73679095652543]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX44",NTAName:"Williamsbridge-Olinville",Shape_Leng:27350.9743468,Shape_Area:36273563.8958},geometry:{type:"Polygon",coordinates:[[[-73.84704957988542,40.88767181587941],[-73.8474439688464,40.88697853116719],[-73.85248305833817,40.87946370504105],[-73.85207011720223,40.87929765708557],[-73.85091896083547,40.87789344063507],[-73.8525485409719,40.87709158676435],[-73.85172236136447,40.87684337066308],[-73.850689556654,40.87548667788341],[-73.85143247985602,40.874987270980604],[-73.8536363872702,40.873300599208925],[-73.85651292387625,40.87421779315936],[-73.85661382450422,40.8712501669821],[-73.87056192524662,40.871510778453704],[-73.87037667181832,40.87328437216197],[-73.87031750773882,40.87577979346253],[-73.87022032860673,40.87626264289006],[-73.86938557939587,40.87823358296982],[-73.86907407564988,40.87857916753048],[-73.86885103292916,40.87857981773536],[-73.8660523126306,40.884287044151115],[-73.86606028461775,40.88450579973435],[-73.86625345816194,40.88490730017102],[-73.86626727212003,40.885147691324406],[-73.86620661508445,40.885378614565305],[-73.86276661966554,40.89161957484105],[-73.86273972188104,40.89183889282546],[-73.86198229582742,40.89316126278712],[-73.861359278643,40.89466231935547],[-73.86071098127968,40.895370544372014],[-73.85695619403393,40.89416793772316],[-73.85736281685213,40.89341143940479],[-73.84590568546157,40.889741369883325],[-73.84704957988542,40.88767181587941]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK64",NTAName:"Prospect Heights",Shape_Leng:15043.445446,Shape_Area:10241026.5391},geometry:{type:"Polygon",coordinates:[[[-73.96868961357634,40.6820052575973],[-73.96134655885787,40.680463524300905],[-73.96153961956429,40.6800862550271],[-73.96318238790344,40.675529503986],[-73.96007428283123,40.674878070971616],[-73.96131877957849,40.67140667593056],[-73.96257531366612,40.671644198394326],[-73.96314327846257,40.67186010852573],[-73.96417930935915,40.67210881342221],[-73.96549082137665,40.67252338205531],[-73.96688596254164,40.672852807351006],[-73.96817295854775,40.67302941435745],[-73.96865541447485,40.67302383930533],[-73.96894206351266,40.67288749127016],[-73.96874174717372,40.673448029972036],[-73.9687420496577,40.67408712196888],[-73.96883910850856,40.67440796702847],[-73.96907731725602,40.67483967081448],[-73.96928310681992,40.67507596707361],[-73.96969317549178,40.67536085443335],[-73.96949738784465,40.67590637996424],[-73.97188596772811,40.676394652976754],[-73.97618051352339,40.67806432096369],[-73.97469118307257,40.68026661630196],[-73.97374011732195,40.6828920324963],[-73.97375598416605,40.6830340197846],[-73.96868961357634,40.6820052575973]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN22",NTAName:"Flushing",Shape_Leng:38417.4998149,Shape_Area:37844419.0141},geometry:{type:"Polygon",coordinates:[[[-73.82331286921354,40.77957865983502],[-73.82414480492373,40.77747809322915],[-73.82433101941379,40.7767430703021],[-73.82486800974952,40.77654235484634],[-73.82583089977442,40.77591527158132],[-73.82625348526577,40.774520659102734],[-73.8265748186573,40.77234539796291],[-73.82655841971643,40.77013708359329],[-73.82466909032316,40.77040760780861],[-73.82348245212701,40.76465179236738],[-73.8208068485893,40.75894178331643],[-73.8206359333937,40.758872267847984],[-73.81789245661818,40.75708633798175],[-73.82030067736777,40.75551497972041],[-73.8184078292423,40.7538304220785],[-73.82084928836743,40.75224154492548],[-73.81768650986466,40.749288211814424],[-73.81537317355684,40.747218337859685],[-73.8157506948341,40.746979480114774],[-73.8178202588838,40.74738541614799],[-73.8210842759128,40.748558445943026],[-73.82426493808411,40.751832888588474],[-73.82576557247215,40.75096902425273],[-73.82566698623404,40.75090874801325],[-73.82565201263684,40.75065299895559],[-73.82584440959535,40.74934839109876],[-73.82723921537873,40.74985960309009],[-73.82765641935259,40.74986083084504],[-73.82827349997545,40.74967871546275],[-73.8292251197182,40.749256081183944],[-73.83091972536735,40.74896171095874],[-73.8310920653268,40.7488606121594],[-73.83121778586805,40.74869012268929],[-73.83128640887587,40.74845858524321],[-73.83125479839796,40.74810635962912],[-73.83300301986871,40.74783363145929],[-73.83314141738794,40.7480321826896],[-73.83277623920817,40.749313495051425],[-73.83227581878867,40.751457595065354],[-73.83224723743008,40.7517005913242],[-73.83229535672847,40.75194179113838],[-73.83560230948407,40.75139485333555],[-73.83599840095596,40.752005736585296],[-73.83701406702997,40.75402742114221],[-73.83778038212631,40.7541306833476],[-73.83814233321448,40.75485403791224],[-73.8383404120569,40.75542546285376],[-73.83867321892787,40.75701997859202],[-73.83679107269866,40.761166671252994],[-73.83691694358099,40.76276668005901],[-73.8379042958838,40.76458779730813],[-73.83945813446151,40.765445768458655],[-73.83871102167588,40.766668386432094],[-73.83805766709777,40.76759634398352],[-73.83746794619812,40.76830671770571],[-73.836140524864,40.769527373748446],[-73.83536623599826,40.77012144096686],[-73.83433960156574,40.770787819509245],[-73.83161455517782,40.77241020922491],[-73.83000011059576,40.77373240736587],[-73.82908256172642,40.774794320652795],[-73.82830621345812,40.776000787922],[-73.82616437167341,40.77968464538979],[-73.8251374032295,40.78169970639239],[-73.82224127704234,40.78169387948055],[-73.82277596962194,40.780833776698614],[-73.82331286921354,40.77957865983502]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN51",NTAName:"Murray Hill",Shape_Leng:33266.9048155,Shape_Area:52488277.9369},geometry:{type:"Polygon",coordinates:[[[-73.80379022888246,40.77561011179247],[-73.79853009427278,40.77519072888337],[-73.79772190077279,40.77427237380939],[-73.7974152277202,40.774010319151394],[-73.79565702077424,40.77303608621203],[-73.79521550584714,40.772674907206216],[-73.79317944556045,40.77040317772786],[-73.79395914652879,40.764695319925636],[-73.79302551365764,40.76462119218866],[-73.79343673769405,40.76159683082907],[-73.79343991212555,40.760764127962446],[-73.79076004620481,40.76098576942466],[-73.79031516996665,40.75782345059029],[-73.79402473959107,40.75773596895653],[-73.79493246233996,40.75779803007453],[-73.80030039037474,40.75970229914452],[-73.80399971294423,40.760270487532594],[-73.80951372622064,40.761299911024956],[-73.81104963173331,40.76141702058462],[-73.8122677810063,40.76113002164715],[-73.8206359333937,40.758872267847984],[-73.8208068485893,40.75894178331643],[-73.82348245212701,40.76465179236738],[-73.82466909032316,40.77040760780861],[-73.82655841971643,40.77013708359329],[-73.8265748186573,40.77234539796291],[-73.82625348526577,40.774520659102734],[-73.82583089977442,40.77591527158132],[-73.82486800974952,40.77654235484634],[-73.82433101941379,40.7767430703021],[-73.82414480492373,40.77747809322915],[-73.82331286921354,40.77957865983502],[-73.81452997802198,40.77888817488028],[-73.81485850655602,40.7764859231195],[-73.80379022888246,40.77561011179247]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN26",NTAName:"North Corona",Shape_Leng:18431.0693872,Shape_Area:18000899.7125},geometry:{type:"Polygon",coordinates:[[[-73.85449593244904,40.75827863867387],[-73.85407612119106,40.757652292978754],[-73.8536535198667,40.75683503937099],[-73.85335095181726,40.75601283831397],[-73.85312635464207,40.75510934301631],[-73.85383081355535,40.75495833751337],[-73.85579909030595,40.75440952817461],[-73.85455552256288,40.75196191903409],[-73.85583495566055,40.75157727245888],[-73.85442575253663,40.748851726884496],[-73.86027336093433,40.74710172766283],[-73.86032027659726,40.747195699021354],[-73.86790963860358,40.74493371658836],[-73.86843751028877,40.7470311973158],[-73.86852925170723,40.74758830224426],[-73.86891395801302,40.74836887704176],[-73.8708421564075,40.75154469308947],[-73.87365721712081,40.75680348560199],[-73.86567437019224,40.757629582857],[-73.85856139034301,40.757912436857744],[-73.85540366146678,40.75834030998548],[-73.855302001578,40.7582928419668],[-73.85490872665962,40.75833644940583],[-73.85449593244904,40.75827863867387]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN14",NTAName:"Lincoln Square",Shape_Leng:19866.1663598,Shape_Area:15805578.2453},geometry:{type:"Polygon",coordinates:[[[-73.97499744020564,40.777532545719424],[-73.98167943639396,40.76839013093614],[-73.98145773072407,40.768203951008935],[-73.98143686015847,40.768042154545725],[-73.98148525172103,40.76792541100072],[-73.98179174612808,40.76771375683202],[-73.98211061533098,40.76774447654632],[-73.98236545105638,40.76739215321349],[-73.9938744512607,40.77223816788824],[-73.9935026218083,40.77275163310052],[-73.99388754436352,40.77295574416384],[-73.99401262480517,40.77288284562675],[-73.99430134239114,40.7729700286639],[-73.99437655275092,40.77303955160394],[-73.9942940298238,40.7731562439918],[-73.99502327652182,40.77348119657619],[-73.99508939189285,40.77338847503911],[-73.99501396371681,40.773358034421754],[-73.99505028536026,40.773297153189866],[-73.99624065189877,40.77378979190024],[-73.99619583747098,40.77385235618407],[-73.99610846880842,40.77381631601508],[-73.99606316874286,40.773886886610065],[-73.99617945997376,40.77398695485408],[-73.99609524522619,40.77408618694018],[-73.99393587681121,40.773179512586104],[-73.99376701931848,40.773483981224835],[-73.99341107380432,40.77380263098018],[-73.9926226638654,40.774974056036925],[-73.99240383785298,40.775018140390706],[-73.9922670890354,40.775116033858545],[-73.99205908493714,40.775497598192246],[-73.9923293466088,40.775468900958515],[-73.99238604296039,40.775557179419465],[-73.99092717414968,40.77756687876296],[-73.9903961600365,40.77758506567904],[-73.98886861806118,40.779692922911465],[-73.98940905484129,40.779737706472],[-73.98975270359908,40.779671244211606],[-73.99004010212062,40.779707676693064],[-73.99096167222434,40.77963968375173],[-73.99124281740444,40.779671367084504],[-73.99135945556952,40.77958588233222],[-73.99155105922752,40.77957482043219],[-73.9914198265208,40.77975528028708],[-73.98888614411696,40.779878898532715],[-73.98893965736742,40.77995617844045],[-73.98891926146842,40.78022609434367],[-73.98812746102577,40.78140179644223],[-73.98654378951805,40.780657980791055],[-73.98567936117642,40.78031263333493],[-73.98507184345014,40.781779680969194],[-73.97499744020564,40.777532545719424]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX41",NTAName:"Mount Hope",Shape_Leng:18935.1668844,Shape_Area:14718300.2296},geometry:{type:"Polygon",coordinates:[[[-73.89560883346181,40.85457037009787],[-73.9013440457415,40.84442875076973],[-73.90483121970139,40.84480034209291],[-73.90501514957926,40.84240469831954],[-73.90514893975094,40.8425471957383],[-73.90586721929043,40.84257998724586],[-73.90596061823445,40.84262870411975],[-73.91046008330409,40.84279164297443],[-73.91043026414343,40.843107729073026],[-73.9117533804569,40.8431794926761],[-73.9119181232027,40.84325788668494],[-73.91211222171964,40.84326034254618],[-73.91586647842479,40.84479392557939],[-73.91697152437618,40.84511524612652],[-73.91416076333728,40.84517775519087],[-73.91058169863167,40.85018159582257],[-73.90921545611089,40.85180094506672],[-73.90557007307467,40.855787322394086],[-73.90395154262701,40.85497392351847],[-73.90185996053039,40.854586149762476],[-73.90077922747537,40.856047109729],[-73.89816577520747,40.85514637639308],[-73.89863543744137,40.8539069754361],[-73.89831118626606,40.85406115105141],[-73.89709926839369,40.85517229144544],[-73.89560883346181,40.85457037009787]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI48",NTAName:"Arden Heights",Shape_Leng:29692.2180518,Shape_Area:50414857.8249},geometry:{type:"Polygon",coordinates:[[[-74.17185166522755,40.561520923020225],[-74.1735878523292,40.559698427801415],[-74.17437344446594,40.558708666479504],[-74.17512403006006,40.55762003756934],[-74.17611659841572,40.555937541008795],[-74.17991198563521,40.54883445305107],[-74.18018524747937,40.54837960880832],[-74.18128532982465,40.54695757341559],[-74.18826921091124,40.538866142234454],[-74.18903145189904,40.53815934243013],[-74.19030442484748,40.53724645372145],[-74.19135323760605,40.536664859266565],[-74.19377169258516,40.5358338471448],[-74.19609298383745,40.54049773687561],[-74.19730759116851,40.54326204572504],[-74.19985031615555,40.548132419104526],[-74.20097039276392,40.55079013934031],[-74.20326490006957,40.555628476993355],[-74.2031482603452,40.556061784616574],[-74.20220831201937,40.55589290673455],[-74.20168314570826,40.55587569339539],[-74.20091501343462,40.55600526099166],[-74.20046730702715,40.5562304905629],[-74.20018273922574,40.55645443356851],[-74.1976948122143,40.55888705352012],[-74.19407564538379,40.56207847367047],[-74.1931738836402,40.56260434437123],[-74.19268475951657,40.56265171706183],[-74.1916899825212,40.56251540894916],[-74.19101021734862,40.56256940218957],[-74.19056041268846,40.56276545593749],[-74.18997973128205,40.56331160588608],[-74.18947754611422,40.56358099017063],[-74.18909923999354,40.56368927163293],[-74.18726897630076,40.564041693798515],[-74.18627446177058,40.564325527074026],[-74.18525395953219,40.564549354714295],[-74.18425062347545,40.565108854348814],[-74.18369189074609,40.56531906815413],[-74.18318459744171,40.5654500943821],[-74.18241339472925,40.56548514602185],[-74.18203038648431,40.56543640464585],[-74.18159556472735,40.56531796146255],[-74.17794544208279,40.563983366606685],[-74.17659366074243,40.563241329320675],[-74.17488750422397,40.562826419265335],[-74.17348507995895,40.562267489964086],[-74.17185166522755,40.561520923020225]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN27",NTAName:"East Elmhurst",Shape_Leng:19816.7120929,Shape_Area:19726845.4374},geometry:{type:"Polygon",coordinates:[[[-73.86109724401754,40.763664477590254],[-73.85992938029686,40.76220030111184],[-73.85913545312323,40.76141844064874],[-73.85912375861514,40.761275498656445],[-73.85810854025415,40.7606371820916],[-73.85603980939642,40.759725787414],[-73.85525140080485,40.759147530839975],[-73.85449593244904,40.75827863867387],[-73.85490872665962,40.75833644940583],[-73.855302001578,40.7582928419668],[-73.85540366146678,40.75834030998548],[-73.85856139034301,40.757912436857744],[-73.86567437019224,40.757629582857],[-73.87513874299533,40.75663381606068],[-73.87601371860643,40.761443732139405],[-73.8749957509396,40.76126432242942],[-73.87638792444172,40.76899955847407],[-73.87601415579742,40.769816976085],[-73.8759736261482,40.771042762244896],[-73.87608949641864,40.7715369030866],[-73.87517573347569,40.77167671112634],[-73.87426330490005,40.771753387500155],[-73.87327941455308,40.771767401350935],[-73.87223577696591,40.77169565901959],[-73.87143357341982,40.771576467221315],[-73.87071447492598,40.77139069003684],[-73.86962970454361,40.77100636597555],[-73.86889382724557,40.770649021897334],[-73.86728193815232,40.76965000278882],[-73.86606875955076,40.76879618165259],[-73.8645848696259,40.76756668987712],[-73.8632180525856,40.76625081641734],[-73.86109724401754,40.763664477590254]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN35",NTAName:"Briarwood-Jamaica Hills",Shape_Leng:30081.7326747,Shape_Area:29412325.9859},geometry:{type:"Polygon",coordinates:[[[-73.79303800052352,40.7107110754254],[-73.79473052352925,40.71001246196599],[-73.79776810134297,40.70914318783918],[-73.7987015067907,40.710663377114074],[-73.80119015874314,40.70978624394761],[-73.80159590564108,40.70954842525396],[-73.80193297056056,40.70891159585268],[-73.80212493354121,40.708737604101884],[-73.80255069064992,40.708417203091756],[-73.80302414740676,40.708139657094264],[-73.80165725608047,40.705761475398766],[-73.80564773066394,40.70467172790345],[-73.80694856329364,40.70736710041368],[-73.81201248584304,40.70594494480839],[-73.81152856919299,40.702272874880435],[-73.81301882854011,40.702495157240584],[-73.8135647060994,40.702528498001726],[-73.81637824492985,40.702451964468636],[-73.81709738756588,40.70402980108506],[-73.81809905196823,40.70597371522998],[-73.8195536332589,40.708425229555154],[-73.82045236393571,40.70977454857411],[-73.82098519130527,40.710323845271546],[-73.8232024744549,40.712205948691775],[-73.82363860645444,40.712666644482155],[-73.82385072068409,40.71293320564064],[-73.82428940584002,40.71387006610684],[-73.82471749493712,40.71450684972674],[-73.82559716329271,40.71551433693921],[-73.82591945198023,40.71598987682755],[-73.82524731653943,40.716455445122286],[-73.82346833778571,40.71673105185737],[-73.82187417684692,40.71691711844055],[-73.82100705286163,40.716879951033086],[-73.82051599243805,40.71681199134028],[-73.82018883804452,40.7167352241179],[-73.81828452748483,40.71600371491138],[-73.81720417926097,40.7158407287899],[-73.81022435004475,40.71591266800038],[-73.80780927700908,40.715853896237775],[-73.8049414851131,40.71599623098779],[-73.80308484101324,40.716220162418374],[-73.80188320971062,40.71640881056989],[-73.80021672675274,40.71673785927007],[-73.79653978132312,40.71778674890591],[-73.79315493416429,40.71891757851011],[-73.79211141214232,40.719138863920065],[-73.79155692217266,40.719200995355116],[-73.79073248864259,40.71920875733025],[-73.7908996060158,40.71887580779076],[-73.79162842648121,40.71841796531011],[-73.7920137663966,40.71796768743812],[-73.79224175633499,40.71742717949321],[-73.79240413349557,40.716193040973735],[-73.79346012404464,40.714419192045526],[-73.79358570299401,40.71412867817443],[-73.79363636669571,40.71381939732468],[-73.79360704402322,40.7135084700098],[-73.79313224917965,40.71240723601491],[-73.7930265420403,40.711981364640984],[-73.79303800052352,40.7107110754254]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX34",NTAName:"Melrose South-Mott Haven North",Shape_Leng:19595.6040414,Shape_Area:17269468.9313},geometry:{type:"Polygon",coordinates:[[[-73.90129277627032,40.82047544261417],[-73.90300983214364,40.8163177919547],[-73.90446551410588,40.812281959913086],[-73.91094778957398,40.81362092073729],[-73.91495493671812,40.81493646601085],[-73.91768626980301,40.81608124278633],[-73.91861739796045,40.81552313607106],[-73.92048117349654,40.814563686869796],[-73.9213038336665,40.81547724777691],[-73.9215839208475,40.81555063156339],[-73.92124519680905,40.81621939729781],[-73.92309299904515,40.816697728139005],[-73.9239995134318,40.81543891245006],[-73.92662718211774,40.816118959174275],[-73.92621972038785,40.81675865597437],[-73.92518486463501,40.818012669377495],[-73.92402557241967,40.81928533011071],[-73.92265261239706,40.82049431528104],[-73.92194764145448,40.821031544959396],[-73.9167740051971,40.824387087373175],[-73.91587735817282,40.824103731527224],[-73.91621588627122,40.82346793022586],[-73.91189154921669,40.822141481777294],[-73.91181615756736,40.82203502241245],[-73.91159391801868,40.822126774511915],[-73.90990894137934,40.82255110811737],[-73.90565890247812,40.8215565326344],[-73.90129277627032,40.82047544261417]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK81",NTAName:"Brownsville",Shape_Leng:27300.7812308,Shape_Area:32730861.1097},geometry:{type:"Polygon",coordinates:[[[-73.8988069843351,40.65740666180447],[-73.90002679348667,40.65725384777579],[-73.90048767160404,40.657148679351636],[-73.90118559908711,40.65651455110136],[-73.9026191140187,40.655558110733374],[-73.90317858413405,40.655311633837385],[-73.90784346310059,40.65459153024284],[-73.90740035662827,40.65284399014227],[-73.90855790522767,40.65209593779449],[-73.90933499313,40.65280859214414],[-73.91012255698539,40.6558517710515],[-73.91236458830647,40.655513564746265],[-73.91818493104373,40.66072620891552],[-73.91829936279709,40.66116125739899],[-73.91860168097769,40.6611180486065],[-73.91959479824105,40.661995679287955],[-73.9197439953138,40.66077097395037],[-73.92008167071675,40.6598576334602],[-73.92637970549279,40.66551489214158],[-73.92014864255412,40.66822948387535],[-73.92011464253183,40.66837600234431],[-73.91923062965684,40.668631365306055],[-73.90841931632201,40.67331333272408],[-73.90450912336803,40.67505211098788],[-73.90438792800407,40.675206746606364],[-73.90347422276484,40.67550668327714],[-73.90266008354737,40.67219717915077],[-73.90041654055045,40.66380652743308],[-73.90145114637859,40.66365836465764],[-73.9006611869095,40.66058615800479],[-73.90014658444201,40.660653277386395],[-73.89988908753968,40.66063980728816],[-73.89965233279797,40.66073541637816],[-73.8988069843351,40.65740666180447]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK85",NTAName:"East New York (Pennsylvania Ave)",Shape_Leng:24226.8507783,Shape_Area:19397527.3576},geometry:{type:"Polygon",coordinates:[[[-73.8988069843351,40.65740666180447],[-73.89965233279797,40.66073541637816],[-73.89988908753968,40.66063980728816],[-73.90014658444201,40.660653277386395],[-73.9006611869095,40.66058615800479],[-73.90145114637859,40.66365836465764],[-73.90041654055045,40.66380652743308],[-73.90266008354737,40.67219717915077],[-73.90347422276484,40.67550668327714],[-73.90291887262816,40.67568458142076],[-73.900046261425,40.67689308953773],[-73.89930675442255,40.67398204176649],[-73.89367036426613,40.67482177088438],[-73.89271090669764,40.671045828912604],[-73.89087804994608,40.671318087158575],[-73.88976988627573,40.666989914671866],[-73.89069385325422,40.66685223434632],[-73.88990669497633,40.66377828999809],[-73.88810817419629,40.664047412457755],[-73.8833088339066,40.666112004945546],[-73.8818555734476,40.66414998854017],[-73.89616756045214,40.65797845162817],[-73.89612587286426,40.65781466403389],[-73.8988069843351,40.65740666180447]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK41",NTAName:"Kensington-Ocean Parkway",Shape_Leng:20800.5560763,Shape_Area:15893349.5727},geometry:{type:"Polygon",coordinates:[[[-73.97482741755577,40.64566342086806],[-73.97464224409909,40.64481321887924],[-73.97084113729679,40.64637857107231],[-73.96803868487798,40.63665098543635],[-73.97029036162948,40.636406341418],[-73.96986869339571,40.63419467459814],[-73.97604935591413,40.631275905646625],[-73.97688861212461,40.63567486202834],[-73.97911188671777,40.635440386439235],[-73.98042057821881,40.64238522690571],[-73.98299419175464,40.641324996848994],[-73.98331628452112,40.64147868283308],[-73.98834986671028,40.644562243887236],[-73.98180533857195,40.64712779976485],[-73.97819074359319,40.64752599151112],[-73.9777738056422,40.645341876574996],[-73.97482741755577,40.64566342086806]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX06",NTAName:"Belmont",Shape_Leng:17111.0145687,Shape_Area:13558624.9466},geometry:{type:"Polygon",coordinates:[[[-73.88309003170485,40.86659150928993],[-73.88267624733305,40.86608914148105],[-73.88344168348914,40.86561633152493],[-73.88376749222724,40.86531475316902],[-73.88390334859172,40.86507380219252],[-73.88396922333746,40.864817741303696],[-73.88392395828724,40.86441776187143],[-73.88379371102803,40.864171571731845],[-73.88200794138369,40.86204685336222],[-73.88092572594765,40.86116228824112],[-73.88068839533109,40.86077599304264],[-73.88060896855319,40.86035709310707],[-73.88100678959337,40.858268022657015],[-73.88098293785936,40.85788399212378],[-73.88073042819906,40.85667660491097],[-73.88311982503816,40.84822109187666],[-73.88322877667612,40.848345878337575],[-73.88728512356023,40.85082090055792],[-73.88755006006639,40.85091075406269],[-73.88823974096294,40.85103536641144],[-73.88895256316076,40.85144078077297],[-73.88987871399155,40.852070221026686],[-73.88993961562204,40.8525907629616],[-73.88963328302314,40.85317381843756],[-73.88960978077955,40.853621880548715],[-73.89038954009501,40.85468905858774],[-73.89044259283281,40.85504635186544],[-73.89108676574538,40.85659725704755],[-73.89109710426439,40.856779813682024],[-73.89112568830669,40.86006182500971],[-73.89027555570782,40.86110907335059],[-73.89177188799202,40.86187171675007],[-73.88889566010222,40.86475415323653],[-73.88812278776109,40.86425457057764],[-73.8868331704345,40.86538999386054],[-73.88362518129578,40.86725758800698],[-73.88309003170485,40.86659150928993]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX37",NTAName:"Van Nest-Morris Park-Westchester Square",Shape_Leng:42719.4948699,Shape_Area:36295884.6253},geometry:{type:"Polygon",coordinates:[[[-73.83129157705511,40.855434105351854],[-73.83193102157836,40.855285115599706],[-73.83262464742576,40.85505696678169],[-73.83350017836102,40.85467968426821],[-73.83408232110446,40.854362640365196],[-73.83439574308414,40.85411187093297],[-73.83463970216,40.853817993760984],[-73.8353358907857,40.85255469778769],[-73.83555900132488,40.851964013948134],[-73.83619907183102,40.84582739572033],[-73.8367687679639,40.84354282093717],[-73.83688925154424,40.84337478830599],[-73.83714580038722,40.84272763259386],[-73.8376700161719,40.841121907655555],[-73.83771374829361,40.84040630951643],[-73.83839056225075,40.84067681413417],[-73.8393679425065,40.84088297348177],[-73.84140548280682,40.84060250295229],[-73.84204144705802,40.840645897248095],[-73.84458129174455,40.83853550762945],[-73.84779791990552,40.840696310626896],[-73.85052278082863,40.842789489298966],[-73.86347232379066,40.841305932707215],[-73.86546450190856,40.84085689196467],[-73.86724818889547,40.84034380386768],[-73.86830846924923,40.839995213453484],[-73.86920766882207,40.839600046711794],[-73.87021450744984,40.8396179421215],[-73.87359713633923,40.83979855543337],[-73.87229921089158,40.84157999573897],[-73.87099518067322,40.84311139204372],[-73.86889258777539,40.84440965879851],[-73.86804200391842,40.844813839306894],[-73.86863721744793,40.84530984326778],[-73.86874186562083,40.84560972858163],[-73.86865874027215,40.84592845277968],[-73.86866193819922,40.8462601539419],[-73.86875394759662,40.84658436432606],[-73.86892652693226,40.84688174060972],[-73.86835465896613,40.847080233386365],[-73.86785992993865,40.848864931388306],[-73.86837388931615,40.84896959824623],[-73.86920944569867,40.849238372872456],[-73.8682346601507,40.85091373721548],[-73.86860515575896,40.852068645940726],[-73.86612130826819,40.850527222416304],[-73.86518787236398,40.85016438616905],[-73.86303938073125,40.85061130723228],[-73.86278872813949,40.84923798317178],[-73.86250923753487,40.84836228117219],[-73.86119240841124,40.848603468111556],[-73.86069456604683,40.84875339439576],[-73.85457388235473,40.85150834573243],[-73.85304526868146,40.849547332435804],[-73.84968869730662,40.851058906538185],[-73.84729781256918,40.85108686897413],[-73.84721027665717,40.851036839058565],[-73.84668500549904,40.851118078163694],[-73.84453077179928,40.85113289897883],[-73.84430846898952,40.85119046419636],[-73.84496954044718,40.8500970311154],[-73.84505506620776,40.84894655976763],[-73.844940537307,40.848218220851265],[-73.84149163293958,40.85319428630923],[-73.84049767366062,40.85418410511595],[-73.83935708982847,40.85498675360949],[-73.83818561172289,40.85556400958188],[-73.83734249323862,40.855866864323716],[-73.83646667967747,40.856098438725574],[-73.83499552602974,40.8565712007783],[-73.83667557198514,40.856652663480084],[-73.83691212759376,40.857008107135286],[-73.83690582209658,40.85718069620436],[-73.8368191852706,40.857276809597224],[-73.83308051949732,40.85867901897105],[-73.82987488671722,40.85974042012744],[-73.82960951766462,40.85988842149266],[-73.82847346714524,40.86073135343197],[-73.83111449155481,40.85752432962289],[-73.83193393765505,40.8566935170366],[-73.8328350232271,40.85603584525947],[-73.83281265205602,40.855979712715644],[-73.83200598814066,40.85559487657024],[-73.83165843201597,40.855483447559045],[-73.83129157705511,40.855434105351854]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX46",NTAName:"Parkchester",Shape_Leng:12373.2557492,Shape_Area:9180655.27482},geometry:{type:"Polygon",coordinates:[[[-73.86033845846251,40.83325316598345],[-73.86049053534518,40.8334664040564],[-73.86085019682675,40.83361353809987],[-73.86129183742284,40.83353642099868],[-73.86155834859025,40.833330221162335],[-73.86271114406922,40.832991508800504],[-73.86393748103441,40.84004456590264],[-73.8644801171789,40.841087796884246],[-73.86347232379066,40.841305932707215],[-73.85333525008222,40.842470155155596],[-73.85207005930687,40.835625303052296],[-73.85168459747828,40.834201052350295],[-73.8598393763314,40.833340896342044],[-73.86033845846251,40.83325316598345]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX31",NTAName:"Allerton-Pelham Gardens",Shape_Leng:25463.1001584,Shape_Area:31684842.0688},geometry:{type:"Polygon",coordinates:[[[-73.8536363872702,40.873300599208925],[-73.84859676002685,40.87167078513547],[-73.84792614069121,40.87134223358045],[-73.83578436657567,40.86501601199959],[-73.83089329661591,40.86221284909191],[-73.82972614837887,40.86195274463541],[-73.82950892691987,40.86184121394916],[-73.8283434743138,40.860892026674826],[-73.82847346714524,40.86073135343197],[-73.82960951766462,40.85988842149266],[-73.82987488671722,40.85974042012744],[-73.83308051949732,40.85867901897105],[-73.8368191852706,40.857276809597224],[-73.84329553150599,40.85829037562906],[-73.846458540773,40.858636373703696],[-73.84739746975032,40.858682545855956],[-73.8493089340578,40.85871750285786],[-73.85663774604133,40.85811917198921],[-73.85735319614342,40.85971160584967],[-73.85780378831065,40.86303621662235],[-73.85806098499039,40.863042359762645],[-73.85890956790672,40.86463692612592],[-73.85961281183101,40.86551271811236],[-73.86156274129895,40.86554946455496],[-73.86137924069502,40.87133651214145],[-73.85661382450422,40.8712501669821],[-73.85651292387625,40.87421779315936],[-73.8536363872702,40.873300599208925]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK95",NTAName:"Erasmus",Shape_Leng:18756.7019431,Shape_Area:14522599.3421},geometry:{type:"Polygon",coordinates:[[[-73.94826499590833,40.638607190711674],[-73.95116311183466,40.63844818339569],[-73.95360004719377,40.638422347449996],[-73.95746359870881,40.64237166977628],[-73.95763644576253,40.6426894994632],[-73.95791873735419,40.64414326509111],[-73.95803664426087,40.64530250097154],[-73.95815003514555,40.64776767369111],[-73.9582608207769,40.6485327450313],[-73.95870789822969,40.65038727378257],[-73.94957113083304,40.65080789987119],[-73.95006664861295,40.65542299720028],[-73.94715896323093,40.655593787270995],[-73.94703257592005,40.654338714832704],[-73.94606690611323,40.654410262825884],[-73.94570606186441,40.65100678497399],[-73.94667414461613,40.65094811868704],[-73.9458687924778,40.64342374460715],[-73.94778994683467,40.64330573644933],[-73.94744296772845,40.640047664741495],[-73.94841343299741,40.63998746458343],[-73.94826499590833,40.638607190711674]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX36",NTAName:"University Heights-Morris Heights",Shape_Leng:24299.1168263,Shape_Area:21251507.0776},geometry:{type:"Polygon",coordinates:[[[-73.90486847215523,40.85869322470881],[-73.90565953515404,40.85739873416115],[-73.90468371410955,40.85706030172481],[-73.90522170028436,40.85620359480261],[-73.90733289722301,40.85381641456455],[-73.90921545611089,40.85180094506672],[-73.91058169863167,40.85018159582257],[-73.91416076333728,40.84517775519087],[-73.91728719351066,40.84510408615947],[-73.92387743417245,40.84474050765098],[-73.92478318783078,40.84475266481049],[-73.9259634191084,40.844889744210775],[-73.92808209373632,40.84539159733611],[-73.92786869810767,40.84559772170259],[-73.92767073280388,40.84603348248375],[-73.92754828446829,40.8460872150635],[-73.92734184519918,40.84646364143839],[-73.92693545954474,40.846924144673345],[-73.92683023216794,40.84728976018854],[-73.92662687440179,40.847392686500314],[-73.92630425930264,40.84787010144138],[-73.92603310172107,40.848072415298645],[-73.92593957895801,40.8482711928576],[-73.92465379864211,40.84978504301008],[-73.92384778879642,40.85118260871553],[-73.92394789501427,40.85122178511908],[-73.92256178946533,40.8531889115273],[-73.92174035403008,40.854221237840456],[-73.9215426180392,40.8541168833817],[-73.92134207683867,40.854317435657634],[-73.92151543705526,40.85451006389132],[-73.92080070289336,40.855380814394486],[-73.92037235451431,40.855172965136646],[-73.92030027213491,40.85524637083888],[-73.92056655954363,40.8555138983136],[-73.9205265313285,40.8556866684018],[-73.92029392975685,40.8558451140151],[-73.92030620543758,40.855927119810566],[-73.91956620944691,40.856840183688114],[-73.91776041251106,40.85870809795826],[-73.91720664647049,40.858928922734535],[-73.91580528074745,40.86046973585656],[-73.91576213211002,40.860644636790354],[-73.91487470201928,40.86169169998623],[-73.91480934325482,40.861714189645724],[-73.91472330855282,40.861853182389105],[-73.91481817272908,40.86189908898192],[-73.91467162929153,40.86198133760496],[-73.91462116355156,40.86209669073473],[-73.91422824066119,40.86249079021724],[-73.91278962862323,40.86187247052312],[-73.91181229111699,40.861732386904016],[-73.91075595805776,40.86165148436462],[-73.9097219403001,40.862406667991365],[-73.90939703489288,40.8625677719666],[-73.90903950920035,40.8626788640864],[-73.90908822418265,40.862399695640136],[-73.90922426407224,40.86213551835781],[-73.90965329558607,40.86160687953684],[-73.91027422491842,40.86105453534063],[-73.91114937351254,40.86052367131782],[-73.91238663179108,40.860122998635916],[-73.91286093048535,40.859894147177464],[-73.91328436985144,40.85961860183264],[-73.91088488442973,40.85877618293704],[-73.91056799272997,40.85862059323352],[-73.91020818094408,40.858288788870794],[-73.90980269932912,40.857607548833386],[-73.90976165858935,40.85718261160448],[-73.909567200765,40.85759162415976],[-73.90777320513382,40.85960753768545],[-73.90725786188281,40.85935343791984],[-73.90679734942145,40.85937358893126],[-73.90486847215523,40.85869322470881]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK34",NTAName:"Sunset Park East",Shape_Leng:25948.8446013,Shape_Area:27129374.6681},geometry:{type:"Polygon",coordinates:[[[-73.98905872393608,40.644119241039185],[-73.99551033696268,40.63980966713001],[-73.99917564718909,40.64202544202908],[-74.00735636662996,40.63416362723899],[-74.00556490392158,40.63308317641419],[-74.01000340831531,40.63011308934296],[-74.01560204969233,40.633516977941504],[-74.01602010138629,40.63331711366199],[-74.01602896363573,40.633944431491905],[-74.01614231507423,40.63436015883844],[-74.01646523008979,40.63494240707719],[-74.01683540051621,40.63535542857486],[-74.01396088612057,40.638153267419426],[-74.01616711475116,40.63948244156936],[-74.00214474594848,40.65295610710727],[-73.99779466021471,40.6502888899784],[-73.9983060225172,40.64974001511178],[-73.98905872393608,40.644119241039185]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN04",NTAName:"Hamilton Heights",Shape_Leng:17412.5769888,Shape_Area:16094049.8797},geometry:{type:"Polygon",coordinates:[[[-73.94034643247525,40.83045784284946],[-73.93864026693868,40.82973887442052],[-73.93924885616293,40.828296351211876],[-73.94292366912582,40.82326058725043],[-73.94515456955597,40.820876264824946],[-73.94808289815671,40.82210802151094],[-73.94854029768318,40.82148762281297],[-73.94992194387584,40.82207231422763],[-73.95082879991435,40.820827937097256],[-73.95573074983062,40.822891257747735],[-73.95634010375613,40.82309232750707],[-73.95950897939188,40.82359578890277],[-73.95953800225298,40.823629334087315],[-73.95955575560022,40.823693797769],[-73.95725897043309,40.827117309873316],[-73.95694866420467,40.82700055393498],[-73.95631784510311,40.82794421538854],[-73.95620054528383,40.827901226597476],[-73.95622394426437,40.82787008688907],[-73.95503912978394,40.82741343191184],[-73.95469736685664,40.82791838551446],[-73.9545418812829,40.82786147636574],[-73.95359128692955,40.829097720648996],[-73.95297619362617,40.83009020327102],[-73.95131641118999,40.83245051197063],[-73.95109620887585,40.83280509619928],[-73.95093576231481,40.83329399798564],[-73.9501552106278,40.834396759816094],[-73.9497761621831,40.83445596451128],[-73.9494157055686,40.83435858983278],[-73.94890543286253,40.83406529887677],[-73.94829108137871,40.83386118077179],[-73.94592558095874,40.83280648970199],[-73.94034643247525,40.83045784284946]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK83",NTAName:"Cypress Hills-City Line",Shape_Leng:35597.5618744,Shape_Area:27609992.3949},geometry:{type:"Polygon",coordinates:[[[-73.86334943593043,40.67935164088971],[-73.86328640844614,40.67907719656106],[-73.86234580535023,40.67916478614684],[-73.86131863648569,40.67502126881618],[-73.86106295016751,40.674342934730134],[-73.8617640966218,40.67423226060603],[-73.86413333494173,40.6749972523763],[-73.86942312878573,40.676912227565744],[-73.87231018045735,40.67775574736514],[-73.87257015460388,40.6778666100199],[-73.8730484567254,40.678194107436696],[-73.87342767060193,40.67861884734503],[-73.87376075843338,40.67911249738171],[-73.87420866652239,40.67957633963651],[-73.87483539036938,40.67994257017739],[-73.87531627567067,40.68011098364459],[-73.87556707582893,40.68016946469638],[-73.87688955156696,40.68016499699057],[-73.88061377809606,40.67911003249598],[-73.88116730337781,40.68135366316464],[-73.8848925473812,40.680811116190704],[-73.88467046559735,40.679940285178155],[-73.88987439166343,40.678302150448665],[-73.89621773666615,40.67735818427244],[-73.89653676543693,40.67859358116523],[-73.8977565556112,40.67806072105029],[-73.89836229241634,40.67765827642682],[-73.900046261425,40.67689308953773],[-73.9040463980889,40.67922059801916],[-73.90262262280451,40.68066450291559],[-73.90047001098279,40.679535244065264],[-73.89889928287546,40.679560934398964],[-73.89806444629478,40.679793431680814],[-73.89749312007932,40.680073776224205],[-73.89719010046994,40.680369825107974],[-73.89689908124745,40.68081560222662],[-73.89674965951046,40.68149202656458],[-73.8965815876399,40.68157471843308],[-73.89641909073703,40.68247987624372],[-73.89620169557361,40.682891482753995],[-73.89530504948772,40.68408052006768],[-73.894174632671,40.685283248673144],[-73.89252316832165,40.68342453330659],[-73.89166010659268,40.68404417790933],[-73.89015418672898,40.68500398980447],[-73.88892468151505,40.683125170019],[-73.88819092525412,40.682555946292744],[-73.88027239264318,40.686280360874306],[-73.87570776901337,40.688563962226645],[-73.87260336934223,40.689921073963234],[-73.87172865694474,40.69027675037329],[-73.87094762355167,40.69050204147143],[-73.86855294812544,40.69109924405874],[-73.86805885286167,40.69118395773675],[-73.86746088891041,40.68841501759644],[-73.8665984834927,40.68526955906988],[-73.86631496942951,40.68324894282317],[-73.86602666805608,40.681918051772136],[-73.86499404523256,40.68212896989971],[-73.86410096679133,40.68237285029261],[-73.86334943593043,40.67935164088971]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX14",NTAName:"East Concourse-Concourse Village",Shape_Leng:27283.2026391,Shape_Area:18230741.0534},geometry:{type:"Polygon",coordinates:[[[-73.90958727269663,40.84275637501847],[-73.9096245542307,40.84210962501073],[-73.90898550963412,40.839690927730686],[-73.90887759933507,40.838902892618925],[-73.90891035737006,40.83837648078475],[-73.9091009208751,40.83773351616606],[-73.90932083471013,40.83732713374302],[-73.90945266983402,40.837203825307405],[-73.90963449164143,40.83712531811401],[-73.90916255883798,40.836964596523345],[-73.90798077164173,40.837178094000144],[-73.90763288374428,40.83760785681105],[-73.90686715270321,40.83816235121436],[-73.90662150118409,40.838400880990584],[-73.90560739454266,40.83984361930201],[-73.90538358007394,40.839768983469476],[-73.90597940441727,40.83850519580256],[-73.90740200530821,40.83623228341852],[-73.91049010681661,40.83073737253013],[-73.90895990309997,40.830226233044044],[-73.90948178359358,40.829592118977054],[-73.91030770386979,40.82877248524321],[-73.91169430238563,40.8277587158094],[-73.91179361950756,40.82642815560147],[-73.91130974473398,40.824848558895035],[-73.91316674437074,40.82545645531231],[-73.9135119167608,40.82480494441772],[-73.91475121064767,40.82520047343368],[-73.9154110823548,40.82577390912317],[-73.91661368442395,40.82499230850738],[-73.91608782791741,40.82483785183081],[-73.92194764145448,40.821031544959396],[-73.92265261239706,40.82049431528104],[-73.92402557241967,40.81928533011071],[-73.92518486463501,40.818012669377495],[-73.92731653066559,40.818559633822],[-73.9263434565365,40.820578551554796],[-73.92628127074349,40.820537160944454],[-73.92565452967143,40.821125232837424],[-73.92573567239617,40.82117423606838],[-73.92537221938987,40.82160252058032],[-73.92499654873238,40.82220270052985],[-73.92456530210812,40.823145454794656],[-73.92431310166623,40.82399409776872],[-73.92294138843592,40.82629935028086],[-73.92264951582567,40.82697240958067],[-73.91986089323623,40.83194722683389],[-73.91903136636114,40.83308734929172],[-73.91839346704676,40.83380941190165],[-73.91477300525308,40.83751410085905],[-73.91423754080527,40.83810879565884],[-73.91371372660576,40.83880893480722],[-73.91296000882072,40.840196228539064],[-73.9119181232027,40.84325788668494],[-73.9117533804569,40.8431794926761],[-73.91043026414343,40.843107729073026],[-73.91046008330409,40.84279164297443],[-73.90958727269663,40.84275637501847]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN11",NTAName:"Central Harlem South",Shape_Leng:16619.9623377,Shape_Area:14436444.2359},geometry:{type:"Polygon",coordinates:[[[-73.94177140170075,40.80708899984708],[-73.94275367228194,40.805744012794605],[-73.94430194587123,40.806390824581],[-73.94523965213921,40.805136014461745],[-73.94613131048673,40.803877357584135],[-73.94459751345607,40.803228145255666],[-73.94923186006861,40.7968730719463],[-73.95786499295254,40.800515272439014],[-73.95848111476144,40.800670477586024],[-73.95964685423152,40.80115642325646],[-73.95824878329815,40.803106486471115],[-73.95820300807164,40.80389427099882],[-73.95825482580135,40.804713878441426],[-73.9581816725283,40.805596791128394],[-73.95496657106321,40.81006455470347],[-73.95357577810364,40.80947669765964],[-73.95210125215368,40.81144285350151],[-73.94177140170075,40.80708899984708]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN27",NTAName:"Chinatown",Shape_Leng:20639.9557962,Shape_Area:14494726.8708},geometry:{type:"Polygon",coordinates:[[[-73.9838238729819,40.7214728720669],[-73.98507342254644,40.71908329385839],[-73.98675136662507,40.71959284637345],[-73.98836626317728,40.7164457020369],[-73.98915463750744,40.716708646771586],[-73.99020235975287,40.71466442988774],[-73.99022012669926,40.714404939897996],[-73.99075515306706,40.71455407251626],[-73.99256242170642,40.71438807722865],[-73.9921548447847,40.71165655612659],[-73.99177662633043,40.709819040225696],[-73.99204746257486,40.70977574480622],[-73.99190544366456,40.709525396079634],[-73.99374012862226,40.70924612043532],[-73.99414063200346,40.70923326739992],[-73.99517577369836,40.7090342933077],[-73.99728287195579,40.708731619842894],[-73.99808351186998,40.70850961536711],[-73.99852758585311,40.70833152790825],[-73.9991945110885,40.70794737685402],[-74.003661183163,40.711487282861974],[-74.00510989892747,40.712055593794176],[-74.00543986498033,40.71207853355638],[-74.00573499265346,40.71197868839695],[-74.00589175035437,40.71200715956492],[-74.0055893295413,40.712170053755536],[-74.00527561892598,40.71224944049535],[-74.00485768021683,40.712452541116946],[-74.00421405301458,40.71298074314479],[-74.00321983012259,40.71403623705969],[-74.00272286179327,40.71438970926264],[-73.99995620798603,40.718017095087156],[-73.9985892550198,40.717099511537086],[-73.9960587267832,40.71623164071346],[-73.99542875812696,40.717279243047834],[-73.99480778955251,40.718457426852865],[-73.99352298045557,40.721631693239225],[-73.9926032219844,40.72413644968337],[-73.9838238729819,40.7214728720669]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK76",NTAName:"Greenpoint",Shape_Leng:29052.1708496,Shape_Area:35336840.9749},geometry:{type:"Polygon",coordinates:[[[-73.93226852216199,40.728174658031826],[-73.93255438611658,40.727862889829964],[-73.93412337355872,40.726855471479475],[-73.93676382405536,40.72483891922307],[-73.9376531449383,40.72426555492947],[-73.940221236712,40.722891505266986],[-73.94109418847272,40.722309245114],[-73.94195633562957,40.72165231923012],[-73.94560358883406,40.71956728591892],[-73.94721341810748,40.71856098611831],[-73.94841638605058,40.71845553312306],[-73.94907816838736,40.722540287203],[-73.94986599529747,40.722179483745066],[-73.95064594267232,40.72170569328178],[-73.95164632252363,40.72348585748397],[-73.95477662947451,40.72245950466809],[-73.95771989205166,40.72428495735954],[-73.95814292441024,40.724404284402375],[-73.95803916741664,40.724427440878614],[-73.95794183489495,40.724649202699865],[-73.95795096279299,40.72503643916861],[-73.95835177144922,40.72519805730195],[-73.95842611909984,40.725400535832364],[-73.96012497199304,40.72531963663712],[-73.9602854494421,40.725948122412944],[-73.96106343511704,40.72584489918547],[-73.96161518835936,40.725865563074024],[-73.96165280762037,40.72620392623086],[-73.96161716963762,40.72666142199099],[-73.96149920105312,40.72675109112525],[-73.96141826754832,40.727356179704444],[-73.96101148031282,40.728519351845115],[-73.96099640907721,40.7287691255835],[-73.96106107750413,40.728776716825514],[-73.96107076772512,40.729219509191665],[-73.96114030095016,40.72941632936563],[-73.96119502345965,40.729416347820084],[-73.96134881243236,40.73016195052156],[-73.96128413823062,40.73016192879485],[-73.96143187611771,40.730965171647625],[-73.96171614578094,40.73156991744367],[-73.9619094771786,40.73165137450001],[-73.96226340423296,40.73291555162348],[-73.96235505889173,40.73371326062126],[-73.96228520170885,40.73404769537385],[-73.9620903444991,40.7345079978736],[-73.96157494306745,40.73517961492859],[-73.95982931147842,40.737060900633146],[-73.95837507902785,40.73809694936867],[-73.95763409607027,40.73853811776139],[-73.9569300293119,40.738887073071744],[-73.95476314020421,40.73912353505367],[-73.95415627819243,40.73910691485277],[-73.95292355724182,40.73893494239518],[-73.95198794354496,40.73874761997165],[-73.95192758963142,40.738695896818506],[-73.95187806586495,40.73871398590654],[-73.95046458346593,40.73830958079531],[-73.94812291723133,40.73739715460871],[-73.94809172682271,40.737467704864706],[-73.94716178655305,40.73715493176002],[-73.94683977748909,40.736999148488025],[-73.94652352854824,40.73692685345556],[-73.94645392267385,40.73680958995856],[-73.94719983301087,40.735355177611225],[-73.94706532915387,40.73440199281922],[-73.94659806707352,40.73444222434726],[-73.94673692340699,40.73529494371983],[-73.94675678333327,40.73525766653443],[-73.94692902737471,40.73531314068372],[-73.94662663786625,40.735865585167396],[-73.94644310140255,40.735813184456],[-73.9462474829692,40.736166165226955],[-73.94617195815438,40.73620288877391],[-73.94587310628961,40.73610183125844],[-73.94557048523289,40.73661230391072],[-73.9455199804417,40.73659066241562],[-73.94554528485209,40.73653783285456],[-73.94541584986455,40.736501743505556],[-73.94535897179904,40.73654975457588],[-73.94520743701803,40.7365088505161],[-73.94522012115169,40.73644400571887],[-73.94507806738379,40.73639349768514],[-73.94505908334106,40.73643912467978],[-73.9449990895556,40.73643669371291],[-73.94525492279563,40.73589278900374],[-73.94518507247389,40.735479152678096],[-73.94503299031922,40.735428615683325],[-73.94477272080763,40.735985761277114],[-73.94451542183512,40.73628439039049],[-73.94321347652946,40.73579053001612],[-73.942394436085,40.73542574994783],[-73.94173819589855,40.73495071791754],[-73.94179189227137,40.73491289614517],[-73.94176306503519,40.73485938231844],[-73.94160658196863,40.73468770216384],[-73.9415456683245,40.73473433593477],[-73.94114746701952,40.73415292753755],[-73.94099746599917,40.73379048555577],[-73.94115615809415,40.733748909609844],[-73.9410384334085,40.7334882602033],[-73.94092914681447,40.73351139187718],[-73.94081817225852,40.73324890944023],[-73.94072562054994,40.733291185407055],[-73.94056868930251,40.73305849425764],[-73.9406849166745,40.733017076622254],[-73.9403665895295,40.73221258691479],[-73.93981322559382,40.7311526889117],[-73.93810334960665,40.729728519521316],[-73.93693124799917,40.72910809076295],[-73.93492926457937,40.72854391575334],[-73.93325729805606,40.728240702814745],[-73.93291116169196,40.728233315941274],[-73.93240789800122,40.72814592383693],[-73.93226852216199,40.728174658031826]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN50",NTAName:"Stuyvesant Town-Cooper Village",Shape_Leng:11000.79929,Shape_Area:5575424.19141},geometry:{type:"MultiPolygon",coordinates:[[[[-73.96236596889439,40.72420906161424],[-73.96200744799043,40.72399190110518],[-73.96207271877796,40.72388030090528],[-73.96246790011055,40.72413157960125],[-73.96244340911454,40.72419978497875],[-73.96236596889439,40.72420906161424]]],[[[-73.9751105529612,40.735390254682564],[-73.97495992976468,40.73536871799873],[-73.97474900590649,40.735425188500095],[-73.97443700958638,40.735316355626686],[-73.97395905029711,40.73342116553843],[-73.97385730036494,40.73321630363853],[-73.9738097684656,40.733248999372925],[-73.97378376867191,40.733199933821766],[-73.97367627642127,40.73320593388818],[-73.97386810842275,40.73306568719574],[-73.97341321730877,40.73128241592605],[-73.97300606041448,40.73082313191063],[-73.97196340301247,40.730000377217465],[-73.97151882628016,40.729351361740115],[-73.9714061790854,40.72871876374844],[-73.97155553581017,40.72770310859824],[-73.97157278760143,40.72764591976767],[-73.97165160075588,40.7276432125346],[-73.97168514932646,40.72740588663667],[-73.97153686592743,40.72739296510077],[-73.97149039158919,40.727350097607484],[-73.97162697271706,40.726628453499416],[-73.9720501534719,40.72688094629475],[-73.97569651087606,40.72847505314046],[-73.98255629297803,40.73135013455457],[-73.98238628685745,40.73141124480818],[-73.97944605974463,40.73541451506249],[-73.97849845639804,40.73679095652543],[-73.97636373339378,40.73586797780821],[-73.97522275594582,40.7353979075307],[-73.9751105529612,40.735390254682564]]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI45",NTAName:"New Dorp-Midland Beach",Shape_Leng:34333.8577674,Shape_Area:55433147.3664},geometry:{type:"Polygon",coordinates:[[[-74.0846907599143,40.57147791393974],[-74.08595297320011,40.5702982271047],[-74.0865485869477,40.56963231913554],[-74.08691263653223,40.56898584268355],[-74.0861924430047,40.56856462009009],[-74.08621632224195,40.5685326976445],[-74.08725078316107,40.56908167819283],[-74.0883569978173,40.56826670759137],[-74.08920295103194,40.567174036207525],[-74.0891404595403,40.56713347366944],[-74.0892490614104,40.567015570534195],[-74.08998259932838,40.56738001153309],[-74.09054960106332,40.567083597211294],[-74.0909990546704,40.56673712909752],[-74.09123807762191,40.566506613228114],[-74.09404968409731,40.56298164761104],[-74.0939964366199,40.56280605965056],[-74.09407071043528,40.562731619461715],[-74.0951106336122,40.563173272931984],[-74.09542371796327,40.563154635568544],[-74.09568304279988,40.56291939729055],[-74.09567198061372,40.562775598245366],[-74.09588687751034,40.5627249163461],[-74.09611847201359,40.56258757448951],[-74.09661362272217,40.56208714553735],[-74.09687036780355,40.56171797164748],[-74.09702483295516,40.561336438996975],[-74.09741969570308,40.56088364770623],[-74.09799348696802,40.55996710535793],[-74.09819767261924,40.55983647680461],[-74.098290308237,40.55933261415681],[-74.09808686254337,40.55920274335872],[-74.09783230303405,40.559120453858256],[-74.0977966531796,40.55908724277522],[-74.09784815988272,40.559033669091654],[-74.09870617083733,40.55942360099493],[-74.0990954789976,40.55925879063027],[-74.09932770361468,40.55909741373018],[-74.09929593813793,40.559004972413554],[-74.09938031432736,40.558964193361156],[-74.09971784613234,40.5591413000305],[-74.09992914135414,40.55907068565305],[-74.10250740147856,40.56022639177274],[-74.10323576305797,40.56059959631949],[-74.1041315206663,40.5611732280796],[-74.10557645508744,40.561989973492466],[-74.11013947106048,40.56431066683252],[-74.1137616119522,40.566497189104105],[-74.11636336342791,40.56391563798654],[-74.1230928113987,40.567966366957044],[-74.12489904372397,40.56894914294706],[-74.1234509615282,40.56992276135439],[-74.12278967207526,40.570429844769556],[-74.12216856503741,40.57093949323833],[-74.12162563934474,40.57150139386875],[-74.12150213657364,40.57172155879838],[-74.12138731344876,40.57209221056944],[-74.12136044698725,40.572826743739334],[-74.12183079763918,40.57421708946889],[-74.12185333597351,40.57465318089395],[-74.12153728906142,40.57515325257939],[-74.11978567494381,40.5758155559876],[-74.1191095486319,40.576157251726386],[-74.11844855636876,40.57665868096623],[-74.11757610185813,40.57770348391098],[-74.1170207849174,40.57819692643235],[-74.1166329406589,40.57830047602642],[-74.11588397217112,40.578383694537585],[-74.11562578100781,40.57847975281134],[-74.11481941463228,40.57917687460009],[-74.11367299833222,40.580312936685786],[-74.11306954465174,40.58076852241678],[-74.11127706512289,40.581790728791844],[-74.10924835608031,40.58267841303536],[-74.10790851648575,40.58368563778321],[-74.10525775474657,40.5859214357348],[-74.09844000868472,40.58124170600675],[-74.10039083428772,40.57968866610738],[-74.09032842535407,40.57451533615703],[-74.0877504173701,40.57311057975258],[-74.08765791371692,40.573012664632145],[-74.08597647495837,40.572236970889335],[-74.0846907599143,40.57147791393974]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN25",NTAName:"Battery Park City-Lower Manhattan",Shape_Leng:45694.6276324,Shape_Area:19061000.8886},geometry:{type:"MultiPolygon",coordinates:[[[[-74.00078295341704,40.694286515162],[-74.0009586848302,40.69406908358219],[-74.00301393829083,40.69477784447913],[-74.00239802583795,40.695711654864475],[-74.00026872377788,40.69496580207532],[-74.00078295341704,40.694286515162]]],[[[-74.000431472744,40.697052466178526],[-73.99959333581242,40.696782261474375],[-73.99953135202674,40.69687661261939],[-73.99958770006693,40.69689805666554],[-73.9995538908367,40.69694523239679],[-73.99940738376924,40.696885189446014],[-73.99952373903514,40.69657482604083],[-74.00048933405955,40.69692619508804],[-74.000431472744,40.697052466178526]]],[[[-73.99837760685772,40.698063296146074],[-73.99887117097656,40.697157576793245],[-74.00104903123557,40.69790823569221],[-74.00048768628551,40.69875777763451],[-73.99837760685772,40.698063296146074]]],[[[-73.99799957540134,40.698797685544264],[-73.9980210272511,40.698761736573765],[-74.0000184043362,40.69946604807362],[-73.99947463838926,40.70032277751571],[-73.9974989831,40.69963886932121],[-73.99799957540134,40.698797685544264]]],[[[-73.9953844838265,40.70264301006581],[-73.99669768997464,40.70087697691703],[-73.99682189085861,40.70099078232527],[-73.99752763207937,40.70122881645608],[-73.9977601103362,40.701359414876684],[-73.99780162786311,40.701319394766216],[-73.99813879965492,40.7015187877458],[-73.99619227294772,40.70337714086414],[-73.99513826840685,40.70297411472282],[-73.9953844838265,40.70264301006581]]],[[[-73.99502134649177,40.70314786924671],[-73.9954456424603,40.703275305471735],[-73.99529346700933,40.70355406589797],[-73.99480038274868,40.703291958141975],[-73.99502134649177,40.70314786924671]]],[[[-73.99476934125526,40.70395289495352],[-73.99488239902433,40.70378802583739],[-73.9950292598249,40.70380820036543],[-73.99488204726408,40.704008653895144],[-73.99476934125526,40.70395289495352]]],[[[-74.01244109212794,40.71905767270337],[-74.01323384880851,40.71565618757175],[-74.01335121489193,40.71523331232198],[-74.01347524218882,40.715110711896585],[-74.01375388483041,40.71369055484316],[-74.01166334875678,40.7127980557627],[-74.00860085337284,40.71139223970901],[-74.00834760979019,40.711358545553935],[-74.00746749369492,40.711566902706814],[-74.00738921410593,40.71164226960672],[-74.00589175035437,40.71200715956492],[-74.00573499265346,40.71197868839695],[-74.00543986498033,40.71207853355638],[-74.00510989892747,40.712055593794176],[-74.00382358817642,40.71155186225274],[-74.00336407493002,40.711269413690694],[-73.9991945110885,40.70794737685402],[-73.9995232500711,40.707762628658124],[-73.99949062474623,40.70772184472241],[-73.99953839725494,40.707693470025646],[-73.9996094803925,40.70775997317627],[-73.9999485594979,40.707591496370966],[-73.99997222648797,40.70750639882202],[-74.00023380525761,40.70734714248683],[-74.00118685262828,40.70685982526916],[-74.001131305772,40.70679905018192],[-74.00123213691965,40.70674033592579],[-74.00098276757775,40.706416712992926],[-74.00140666691954,40.70617938802063],[-74.0005829704798,40.70543393364888],[-74.00143661245443,40.70487217770522],[-74.00206142563805,40.70541700463557],[-74.00215818348549,40.7053571191185],[-74.00256965059467,40.70552357952349],[-74.00268512768794,40.70544924811865],[-74.00236285311746,40.70515896669259],[-74.00241573476917,40.70512931128249],[-74.00197070463986,40.704737867482024],[-74.00217184875859,40.70460659646367],[-74.00233344621164,40.70474813530698],[-74.00243071075865,40.70467785800434],[-74.00248790148635,40.70473376008645],[-74.00238670806719,40.70479566367446],[-74.00332307270787,40.70562859522005],[-74.00363187169326,40.70542980675174],[-74.00355934714825,40.70543833715297],[-74.00287843069457,40.70483135798975],[-74.00297246475286,40.70476649143739],[-74.00358383172679,40.70530161130753],[-74.00364446183865,40.705421684136226],[-74.00383327532256,40.70530324302637],[-74.00394759023483,40.70540287190025],[-74.00438344417225,40.70511325985482],[-74.00426687037428,40.70501166020203],[-74.00459003883672,40.70478775294501],[-74.00349632042324,40.7037967692677],[-74.0037198704304,40.703654481944646],[-74.0048062890074,40.704642068548566],[-74.0051880513336,40.704420535187985],[-74.00492580564406,40.70421180838463],[-74.00500393507065,40.704165311539356],[-74.00521160900402,40.704405532235306],[-74.00535027224755,40.70431007996152],[-74.00415742154163,40.703231631584636],[-74.00420723559884,40.703199373757776],[-74.00411763162798,40.7031119370274],[-74.004272587521,40.703015666411474],[-74.00520771937107,40.70382133725155],[-74.00559242609003,40.704082563229036],[-74.00566330640653,40.704104243975614],[-74.00601862790923,40.703873152890765],[-74.00614010577931,40.70397866027174],[-74.00659591913875,40.70368590245182],[-74.00548384082438,40.70271432213403],[-74.00552682615239,40.70268528761711],[-74.00542728826248,40.70266543619404],[-74.00530412596078,40.70255986563303],[-74.00549427805095,40.70243138095038],[-74.00561361797625,40.70253024203232],[-74.00553546138173,40.702645520604236],[-74.00567522315887,40.702584071694936],[-74.00678502257081,40.70356812690006],[-74.00751905283795,40.70312181973453],[-74.00770614970409,40.702875161620085],[-74.00912772758896,40.70200832341647],[-74.00930907655481,40.70195460302253],[-74.00869964313567,40.70113986754221],[-74.00775549150639,40.70154800167179],[-74.00759136204213,40.70132808054552],[-74.00853611510774,40.70091969574503],[-74.008349275591,40.70066934838819],[-74.00862036163862,40.700552163210666],[-74.00960052263287,40.701865481917835],[-74.01116664217923,40.70147720220825],[-74.0110958860267,40.70127499884626],[-74.01128983905517,40.70124998174167],[-74.0112097577877,40.70104458327374],[-74.01112868605645,40.701064897450365],[-74.01106708568965,40.700914940894826],[-74.01109337389362,40.70085125607297],[-74.01092482717033,40.70056679303633],[-74.01079959311005,40.70020721300695],[-74.01115033556837,40.70089840010092],[-74.01135836291346,40.70085195813373],[-74.01129816432243,40.700598884026704],[-74.01133409344374,40.70056835317973],[-74.01138171941676,40.70057025711775],[-74.0115029114371,40.70081505897418],[-74.01172926817475,40.70077011805966],[-74.01163147918649,40.7004582182481],[-74.0117260583568,40.70047860442186],[-74.01185378549589,40.700738921450146],[-74.01208668214691,40.700681308739156],[-74.01185672623029,40.70010710340832],[-74.01196196116918,40.70003754559543],[-74.01208842025646,40.700086583689504],[-74.01239160032274,40.70062052759141],[-74.01259392327509,40.70057083347241],[-74.01251511214087,40.700150492110865],[-74.01261382087355,40.70010826530849],[-74.012834549334,40.70035287423188],[-74.01290881859993,40.7005236116934],[-74.01310747847371,40.700507452180624],[-74.01301189331895,40.69981825663114],[-74.01311303826294,40.69977416488007],[-74.01327349549122,40.70049687022768],[-74.01348560832739,40.700478222908394],[-74.01353285084127,40.700108160920564],[-74.01358669315087,40.70007959034501],[-74.01367479248769,40.70012582195346],[-74.01353047796485,40.700311100849035],[-74.013522959189,40.70046041540696],[-74.0135806988676,40.70045691449308],[-74.01358541666431,40.700501912756366],[-74.01357712888603,40.70064368147593],[-74.01351039592652,40.700650371152044],[-74.01355826959487,40.70093987083052],[-74.01395152690485,40.7009909829626],[-74.01433920985532,40.701132680099086],[-74.01411459711305,40.70117801727409],[-74.01372314441102,40.701133021903864],[-74.01397912677248,40.70153107060745],[-74.01401128884143,40.70197612433056],[-74.01381169631975,40.702120929976154],[-74.01383441071602,40.702405701540556],[-74.01426249467326,40.70279900096926],[-74.01442983236635,40.70315064778879],[-74.01425523947049,40.70442547234214],[-74.01428922948978,40.7045490753525],[-74.01527219703543,40.70483003672364],[-74.0153975861608,40.704800149762136],[-74.01565756640277,40.70483308805305],[-74.01565582157109,40.70488263460934],[-74.01668613062364,40.704799338940084],[-74.01668714611358,40.70474394225795],[-74.01675906633922,40.70474228384452],[-74.01713123915583,40.70428253590342],[-74.01757035573978,40.70418388098665],[-74.01779454520279,40.704234897096185],[-74.01785585682914,40.70407884661045],[-74.01775054986868,40.70405488289348],[-74.01779139303437,40.703950912583586],[-74.01783782825967,40.70396266613849],[-74.01780821746955,40.704031964479604],[-74.0179122932622,40.70405449715096],[-74.01795474048662,40.70397578560846],[-74.01784441106724,40.704242039937895],[-74.01844770243773,40.704162168231505],[-74.01866830771891,40.704435239616195],[-74.01751639597077,40.70458084429082],[-74.01748086152573,40.70466748769614],[-74.01802414374384,40.70464589090844],[-74.01811296129115,40.70455372748716],[-74.01888746649365,40.70472914883734],[-74.0193425462446,40.706093672024494],[-74.01912275963412,40.706975814337405],[-74.01906617140145,40.70701377062144],[-74.01895359463371,40.70699676946548],[-74.0187964493679,40.70712781984755],[-74.01863058372699,40.707139715269264],[-74.01854718475342,40.707107770264194],[-74.01857117399436,40.70707992238861],[-74.01876194037405,40.707075784861686],[-74.01884889814508,40.706970312350194],[-74.01864794474125,40.707017819578404],[-74.01853513269668,40.706918322014054],[-74.01819029325678,40.707821625607224],[-74.01865557049634,40.707923948380675],[-74.01885500911966,40.708047534447395],[-74.01811057855225,40.71102962821429],[-74.01777014254503,40.712834574789106],[-74.01772021563546,40.712844730933604],[-74.01772148946101,40.71278414410787],[-74.01780037822344,40.71234512415862],[-74.01662424491326,40.712157318492615],[-74.0165446381253,40.71245603793094],[-74.01661840078305,40.71275615002965],[-74.0165411210567,40.71295556431685],[-74.01639169551864,40.713099997950614],[-74.0163200662758,40.713407982478245],[-74.01754443334657,40.71361122266423],[-74.01767041664051,40.71306920796507],[-74.01772496219294,40.7130701816227],[-74.01671018605823,40.71862417605797],[-74.0166299633819,40.71866536845022],[-74.015000606824,40.718449235552406],[-74.01494515549338,40.71854353507713],[-74.01321322719193,40.71831571989575],[-74.01303068126435,40.71913145581909],[-74.01244109212794,40.71905767270337]]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI12",NTAName:"Mariner's Harbor-Arlington-Port Ivory-Graniteville",Shape_Leng:72433.9932847,Shape_Area:89054893.7965},geometry:{type:"MultiPolygon",coordinates:[[[[-74.15945602371967,40.641448332319776],[-74.15974815940271,40.641416525789246],[-74.15997875699615,40.641446480836365],[-74.16111242588151,40.64183545373627],[-74.16117897104706,40.642006612330775],[-74.1612018719191,40.64266336502894],[-74.16147514299882,40.64410152646458],[-74.16146036005293,40.64429496976486],[-74.15798759540645,40.643861788966056],[-74.15743349200987,40.64330285777899],[-74.15791589340785,40.64308269445369],[-74.15813451603347,40.64263253066298],[-74.1585504377054,40.64249750130639],[-74.15866125960525,40.64230510545721],[-74.15881093811272,40.6417586347394],[-74.15920024534336,40.64165040297219],[-74.15945602371967,40.641448332319776]]],[[[-74.17989568339895,40.645268795975475],[-74.1798840636142,40.64511024036647],[-74.17984376950349,40.6451103033869],[-74.17984839408983,40.64516485941378],[-74.17977452733295,40.645166679847954],[-74.17972987818017,40.64438070211086],[-74.17933117249297,40.64440051126992],[-74.17933468007544,40.64472166078615],[-74.17928100174436,40.64485927215921],[-74.17934021496185,40.64497618758517],[-74.17923215257143,40.64504655043762],[-74.17912788214473,40.644950223572],[-74.17907466583894,40.644646507056514],[-74.1790019685346,40.64371771675013],[-74.1790355599454,40.64339478701964],[-74.1791139458222,40.64330066643167],[-74.17933890723592,40.64322913069165],[-74.17940482802032,40.6431289664764],[-74.17937253045653,40.64304783310395],[-74.1794354805101,40.64301134497638],[-74.17938528361425,40.642799103901595],[-74.179600746756,40.64214977547619],[-74.17958713787388,40.64191768346301],[-74.1793039781049,40.642885240458234],[-74.17918728067293,40.64298753899131],[-74.17903926810855,40.64294925064908],[-74.1787907843687,40.64249850345951],[-74.17864062006433,40.64257237408615],[-74.17848313827085,40.642521174727875],[-74.17825662145894,40.64212922736558],[-74.17834126945982,40.64258947599678],[-74.17810992716639,40.64252918460995],[-74.17800763457012,40.64254330299946],[-74.17793070853533,40.642625114088034],[-74.17781237608774,40.64259984414208],[-74.17768636299841,40.64294859651953],[-74.17745864523722,40.64303526866409],[-74.17738574360622,40.64301209095999],[-74.1772111863693,40.643122778602034],[-74.17713480593787,40.64308986664989],[-74.17714537910915,40.64301004822231],[-74.17705776294564,40.64305920071956],[-74.176823868959,40.64285914598329],[-74.17670489151175,40.64241691128397],[-74.17668345519623,40.64247269041289],[-74.17635786617534,40.64232722056285],[-74.17668723791225,40.64255213862117],[-74.17672442495079,40.64297138612059],[-74.17666795538244,40.64338684477159],[-74.17633666779778,40.64345981024552],[-74.17598183191923,40.64346362228073],[-74.1757796463676,40.64341621999855],[-74.17566478766796,40.64331017911891],[-74.17560250954297,40.6433112981698],[-74.17548417914053,40.64346229451269],[-74.1755064451168,40.6436888270304],[-74.1755864902898,40.64377851932656],[-74.1754840199677,40.64391147255843],[-74.17547166255146,40.644123104958524],[-74.1755469205807,40.64417658705623],[-74.17570768570576,40.6445717241683],[-74.17568470742577,40.644710284895076],[-74.17555892304914,40.644616054129465],[-74.17546691157197,40.64464652110229],[-74.17529691545057,40.64507507681891],[-74.17489620525134,40.645146047962854],[-74.17458621543305,40.64501693152854],[-74.17436573009459,40.64513625814184],[-74.17405908352214,40.64502517319923],[-74.17294123891654,40.64420452285584],[-74.17287698171283,40.644009008113706],[-74.17300185492402,40.64382752094163],[-74.17300154651632,40.64358540507861],[-74.17284673524713,40.6434531638783],[-74.1727152777537,40.64349762615617],[-74.17244784485067,40.6434215707508],[-74.17236165386579,40.64325626755184],[-74.17242340763578,40.643200325095876],[-74.17254529348132,40.64319244215925],[-74.1724903037232,40.64315422926675],[-74.17271969180949,40.64300057358568],[-74.17272145371167,40.64294849899559],[-74.17257192619579,40.64298703143399],[-74.17244027861885,40.64281204715865],[-74.17232689255576,40.642862440056085],[-74.17196330565992,40.6428581326933],[-74.17175033852067,40.64309246075224],[-74.17150811099728,40.643134442090826],[-74.17142369423917,40.64304069392002],[-74.17149115230349,40.642984313582204],[-74.17133587281677,40.64285576454937],[-74.17186042582578,40.642522928518844],[-74.17175012852879,40.642516755691176],[-74.17184927311101,40.64238040270708],[-74.17172311588911,40.6422832718895],[-74.17177029646969,40.642196989303464],[-74.17167128154742,40.642043642988284],[-74.17172186950495,40.64193954418144],[-74.17156189474113,40.64187719238302],[-74.1714787898932,40.64170250949099],[-74.17145228939789,40.641454721239604],[-74.17149328066837,40.64124894186516],[-74.17160210287629,40.641145862600936],[-74.17158721923734,40.64102959339447],[-74.17202315918198,40.640989214656706],[-74.17251006213095,40.64067681962944],[-74.17293896175401,40.64057955269739],[-74.1729879880031,40.64048910506623],[-74.17279941322214,40.64060634862264],[-74.17246114186263,40.6406736206684],[-74.1720244610088,40.640955465383875],[-74.17156994685423,40.64101153209275],[-74.17156545289181,40.64114830792148],[-74.1714558850582,40.64121303758399],[-74.17138651859224,40.6414227355189],[-74.17137382350381,40.64208501476544],[-74.17132740201394,40.642085083935854],[-74.17105017239892,40.64259381912995],[-74.17099208752258,40.642571804454626],[-74.17127524511587,40.6421116827667],[-74.17121130105231,40.642067575868936],[-74.17119260951208,40.641739626513946],[-74.17028635441109,40.641775308255845],[-74.17007878650917,40.642086160072864],[-74.16915295569137,40.64187285987435],[-74.16906431628865,40.64213001679855],[-74.1684023253044,40.64199124053908],[-74.16824343643258,40.641941350360675],[-74.16812547492658,40.641825331499966],[-74.16801680460999,40.64183766681535],[-74.16774094051357,40.64172777449848],[-74.16757607092507,40.641844793608016],[-74.16677384993423,40.64158163772262],[-74.16671693822903,40.64147880819364],[-74.16653375792836,40.64142263788364],[-74.16647971948971,40.64143487167681],[-74.1662159991705,40.6424241002279],[-74.16609989896034,40.64240658700119],[-74.1663188729246,40.64143667500492],[-74.16580110755902,40.641224511449465],[-74.16563409829776,40.6412143713747],[-74.16544310082273,40.64228054620594],[-74.16494139041183,40.64220899988927],[-74.16519041824088,40.64064230527582],[-74.16473426536807,40.6403914670248],[-74.16457132432704,40.64141866159494],[-74.16441459649113,40.64139678472605],[-74.16459656597456,40.64031574504238],[-74.16416886813508,40.63999410972773],[-74.16400179067273,40.64106585950324],[-74.16386249420357,40.64105279734378],[-74.16404731516643,40.639946658799516],[-74.16394491366576,40.639914605815946],[-74.16345445681999,40.63985656039823],[-74.1632285584413,40.640948510329906],[-74.16285868894612,40.64092993814722],[-74.16284583292604,40.64101959024506],[-74.1627935602802,40.641029624006705],[-74.16206517092041,40.64078499076364],[-74.16206502578967,40.64072523582189],[-74.16167534694235,40.64061078476676],[-74.16228465251962,40.638765652269704],[-74.16181856612258,40.63864627877761],[-74.1614491782677,40.63942833666829],[-74.16130221801548,40.63939373445701],[-74.16166010772969,40.63866499331233],[-74.16124015814863,40.638595010611006],[-74.16115789550311,40.638694062378256],[-74.16090490704416,40.639386140816924],[-74.16073654938452,40.63935101447451],[-74.1610816182488,40.63856776831158],[-74.1608919896109,40.63854118915296],[-74.1608112684074,40.638632958888806],[-74.16076221947102,40.63862369025729],[-74.1607506030907,40.63851839993634],[-74.16034819993044,40.63844372595087],[-74.15994899634484,40.639940136777724],[-74.15986410399064,40.63992782369367],[-74.16023470596285,40.638410316923874],[-74.1601528398894,40.63838621753957],[-74.16005754065978,40.63872235224728],[-74.1598569776778,40.63872920171682],[-74.1597301053284,40.63857844417321],[-74.15972000040937,40.638453345061706],[-74.15964146528941,40.63841423982788],[-74.15957712397913,40.637992583211876],[-74.15931954037036,40.63781040474029],[-74.15922711622945,40.63779611975701],[-74.15905622378894,40.63803931031979],[-74.15900957887429,40.63882257790977],[-74.15889532416823,40.63881527713027],[-74.1589329922664,40.63826401781807],[-74.15864580073814,40.63824900745194],[-74.15863472442109,40.63812847909777],[-74.15815277195988,40.63810996561787],[-74.15814883915031,40.637967511447634],[-74.15789262953881,40.6379650512311],[-74.15784122272913,40.63887391496612],[-74.15773352506372,40.638879035166184],[-74.15777365936792,40.63795715924346],[-74.15718782716546,40.637950805229806],[-74.15710126690709,40.63927771860014],[-74.15697723294255,40.6392754011918],[-74.15707077371559,40.63794713564006],[-74.15636848598677,40.63790584773888],[-74.15636552929693,40.63795074225935],[-74.15610276556863,40.637939590885196],[-74.15611488330713,40.63753074716352],[-74.15569862053152,40.63751793890413],[-74.1556182932615,40.63847022002467],[-74.15549269000277,40.63846677952548],[-74.15558643758912,40.63773077586538],[-74.15482932395882,40.63772385541965],[-74.15475933665321,40.63919632730392],[-74.15469263864526,40.6391939681142],[-74.1547782901187,40.63772154504827],[-74.15459670163327,40.63734334406901],[-74.15438308325726,40.63719379838308],[-74.15425270139492,40.63717231088737],[-74.1534140659779,40.63727271907926],[-74.15279703577376,40.637132754851656],[-74.15270060752238,40.63719243556218],[-74.15269700449551,40.63764184122204],[-74.15221806950451,40.63769258171595],[-74.152297861755,40.63827428826355],[-74.15213675899915,40.63829074795564],[-74.15204639233266,40.63766721531545],[-74.15119545007177,40.63773078853614],[-74.15139517613649,40.63939651305743],[-74.15124828032432,40.639409342382464],[-74.15112965090371,40.638500679571315],[-74.15055638908059,40.638559330666375],[-74.15039275370141,40.63833817252047],[-74.15030855959698,40.638281016431236],[-74.15011380443705,40.63826728554239],[-74.14996782090545,40.638150075249214],[-74.14979386126062,40.63789278036149],[-74.14967889830886,40.63751767426057],[-74.14945818231992,40.63741032063318],[-74.14936001445794,40.63741862659536],[-74.14931235663308,40.63752595813951],[-74.14945194107334,40.637885156578996],[-74.14941881774315,40.6382916405461],[-74.1493170172299,40.638390119842605],[-74.1492818754801,40.63857068636696],[-74.14919418155687,40.6386683313719],[-74.14888175477795,40.63870520797406],[-74.14855815092206,40.63743783752722],[-74.14851602490769,40.63754707359788],[-74.14877792005885,40.63887625112769],[-74.1476123724889,40.63903703733994],[-74.14749939740432,40.638909596809626],[-74.14602173101719,40.639094549700694],[-74.14605733618387,40.63922925768986],[-74.1451927948154,40.63937849765471],[-74.14467133234169,40.63930426772677],[-74.14459085340887,40.6392012857036],[-74.14402416136582,40.6389005233065],[-74.14386163595442,40.638887962508306],[-74.14374959918904,40.6389615777506],[-74.14384192519623,40.63908835505585],[-74.1438173453027,40.63920747892395],[-74.14357308593789,40.639226785257094],[-74.14342476896084,40.63946633799613],[-74.1433610307681,40.63970984518025],[-74.14312802509043,40.63968037312675],[-74.1435999829229,40.63851412568797],[-74.14478228995515,40.63795378029727],[-74.14683016553717,40.631382654000284],[-74.14752619029798,40.6293892882993],[-74.14622202814859,40.629106957185456],[-74.14608756406275,40.62891590278752],[-74.14593544628516,40.627824114565335],[-74.14554072012918,40.62783252211597],[-74.14563382845752,40.626725150753806],[-74.14650354422858,40.62420010106247],[-74.14710957687771,40.62303226022552],[-74.14772830369287,40.6221366192619],[-74.14831982319728,40.621449516078],[-74.1516575788834,40.61804055799045],[-74.15231170430091,40.617162755917754],[-74.15259266449769,40.61657308141166],[-74.15379116657408,40.612255612755334],[-74.15792673862424,40.61545742460415],[-74.15986704925254,40.616813225100174],[-74.1616301032681,40.61793493640935],[-74.16235457756414,40.61833563791938],[-74.1648419038537,40.61957240490336],[-74.16808086339643,40.620936256187015],[-74.16888894245777,40.62115114335061],[-74.16953656511417,40.62127050010983],[-74.17236261023876,40.621635798864965],[-74.17361244094337,40.6219487408698],[-74.17459706258596,40.62236401199165],[-74.17519625666323,40.622706243880586],[-74.17610052793091,40.62340624288138],[-74.17828177368064,40.625451361419955],[-74.17888390573705,40.62593287173687],[-74.1799370604792,40.62660129652092],[-74.18190235713591,40.62775580720619],[-74.18368791092843,40.628737925050686],[-74.19555975259358,40.635023986130555],[-74.19542894127427,40.63517593464231],[-74.19530704356407,40.635233895517125],[-74.19518577243652,40.63541578104656],[-74.19520096899953,40.635707944143675],[-74.19449480774456,40.63644952194788],[-74.1945446229226,40.636516203143884],[-74.19442256854643,40.63658210520794],[-74.19454212645755,40.63707002762674],[-74.19462135124965,40.637090283003516],[-74.19473403949891,40.63704077539422],[-74.19478689748445,40.63713151166305],[-74.19462310145191,40.637391183563665],[-74.19442405923664,40.63741899133373],[-74.19433717017286,40.63731630126898],[-74.19397308627501,40.637309114196334],[-74.19358317694855,40.637469116884624],[-74.19371964621949,40.637566814230084],[-74.18652496897597,40.643388662171425],[-74.18623209743684,40.64318739685633],[-74.18610078573354,40.64327121851161],[-74.18606318334128,40.643447852319674],[-74.18590896667854,40.64363143950174],[-74.1855741946739,40.64380222258821],[-74.18530332013262,40.64376664672958],[-74.18511431614884,40.643806238289976],[-74.18510588393036,40.643865181438414],[-74.18524793663262,40.64394352619224],[-74.18483594580847,40.64412826633872],[-74.18474860069828,40.643939074257595],[-74.18465961650686,40.64391185822669],[-74.18458607648832,40.64379058848242],[-74.18447219805567,40.643771954552165],[-74.18442444966344,40.643650691576],[-74.18411319064434,40.643530083625755],[-74.1840648323192,40.64332398994317],[-74.18419239220886,40.643172453296856],[-74.18423961563377,40.643234418739404],[-74.1843285569187,40.643226668731124],[-74.18437046839783,40.64309957688887],[-74.18421444065864,40.64311689526584],[-74.1839549073662,40.64249416070004],[-74.18365067130041,40.6422396410496],[-74.18363631699482,40.64239599025651],[-74.18380665138126,40.642614332607074],[-74.18379068707223,40.642718242371],[-74.18394450610057,40.64288218650894],[-74.18402611192015,40.64310040856969],[-74.18390346813291,40.64325950611961],[-74.1838457593691,40.643266156807364],[-74.18347427166455,40.64294920957171],[-74.18332782821695,40.64291015310701],[-74.18324212279138,40.64296367709784],[-74.18346315710814,40.64333650150232],[-74.1834630019432,40.6434732422288],[-74.18338303938977,40.64352248735326],[-74.18338476709725,40.64358839073987],[-74.18348360638718,40.643704985535884],[-74.18380044942423,40.64443190122303],[-74.18366745872008,40.64461048505004],[-74.18288931621834,40.64480028294603],[-74.18189998192537,40.64468187234603],[-74.181667634159,40.6447093137695],[-74.18118434243927,40.64458615924486],[-74.18108652313578,40.64462744898818],[-74.18096309641804,40.644813698818204],[-74.18087212513221,40.644851429678326],[-74.18080686538474,40.64481923762298],[-74.18078836640298,40.644577937747144],[-74.18052719090944,40.644484695631895],[-74.18048173953522,40.64427892427388],[-74.1800407801521,40.644288140672614],[-74.18004772179144,40.64437167972461],[-74.17990671455395,40.644378720664236],[-74.17996507274022,40.645266982302886],[-74.17989568339895,40.645268795975475]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN31",NTAName:"Hunters Point-Sunnyside-West Maspeth",Shape_Leng:74604.5518595,Shape_Area:102399982.819},geometry:{type:"Polygon",coordinates:[[[-73.92562743725455,40.752137244754955],[-73.91892348120153,40.75363612441158],[-73.91763192835663,40.75385784877921],[-73.91650534553833,40.753891590793884],[-73.91446450844816,40.75367641156904],[-73.91354183449954,40.753468714423306],[-73.91067474830963,40.75299507682688],[-73.9103549299247,40.752749908536124],[-73.90949707380156,40.75095058385017],[-73.909451827073,40.75065550688942],[-73.90989961515164,40.74908727508311],[-73.91015860618914,40.74850196788327],[-73.91164202699211,40.74868457627957],[-73.91190979122955,40.74810539493509],[-73.91244853783236,40.745920402209535],[-73.91124722261358,40.74578399253432],[-73.91194129767386,40.742382949903764],[-73.91289084169274,40.742482249708765],[-73.91379388676003,40.74251449215333],[-73.91443483239203,40.74053105330962],[-73.91567469626256,40.74078492965859],[-73.91630108538723,40.73906911846408],[-73.91651190571176,40.7389447579649],[-73.91717737969705,40.73689787074092],[-73.91651522687529,40.736757345504856],[-73.91689741909914,40.73544470814948],[-73.91751347899324,40.735350984579696],[-73.91759250746625,40.735239441689224],[-73.91879291984354,40.73196944921479],[-73.91902180402965,40.73208783861029],[-73.91903825157456,40.732005966357164],[-73.9173425053018,40.73138282629282],[-73.9175210756749,40.73100270458853],[-73.91796696706498,40.72850077062925],[-73.91507233834534,40.72797082006903],[-73.91505218095406,40.72860118050036],[-73.91205021265412,40.72850636352958],[-73.9120097468715,40.72922886414803],[-73.91174734232638,40.729912033262494],[-73.91096208682555,40.729640752901226],[-73.9101762761164,40.72927572550905],[-73.90712253078468,40.727424728437796],[-73.91257187677793,40.723239634949344],[-73.9127077349693,40.72328450287024],[-73.9131696980579,40.72308152589632],[-73.91384828242974,40.72289841235328],[-73.9136723436875,40.72260115818571],[-73.91342688898425,40.722333937295275],[-73.91309792345875,40.721737469494265],[-73.91132095140532,40.719624229591275],[-73.92232773956837,40.71659264462489],[-73.92279414745394,40.71753457614396],[-73.92346602654163,40.71813033432224],[-73.92365007474689,40.718609194968906],[-73.92393867329353,40.71904275678698],[-73.92396652595407,40.71971430332722],[-73.92395208918505,40.719835367471326],[-73.9238382651371,40.71990860249092],[-73.92388031880428,40.719979473728536],[-73.92383575471764,40.72014816357601],[-73.92407539813354,40.72069414814196],[-73.92422716247573,40.720887344591866],[-73.92416653051203,40.72116576058408],[-73.92424364921006,40.721429498758546],[-73.9245236261411,40.72166238276378],[-73.92464655219551,40.72184260186034],[-73.92491241131376,40.72196013830884],[-73.92515207272044,40.72233533881565],[-73.92459901602307,40.72342461262751],[-73.92451734212503,40.72355224249951],[-73.92442298754985,40.723589974981],[-73.9229973013231,40.72366929241395],[-73.92242698747033,40.723610142696735],[-73.92214330961285,40.72370755701872],[-73.92164260395866,40.723579363757594],[-73.92125212089488,40.723410593880736],[-73.92073356094133,40.72330981277046],[-73.92058373536948,40.72351948322588],[-73.92042646021662,40.72355448557332],[-73.9203706416973,40.72368111281542],[-73.92108547646309,40.723811215085945],[-73.92166563414311,40.72405531631587],[-73.92228620280949,40.72418128593225],[-73.92246219534701,40.724174407661415],[-73.92289812889888,40.72425877170469],[-73.92419217991211,40.7242757411908],[-73.92465327395544,40.7243876439843],[-73.92490316165181,40.72450657567142],[-73.92552386998963,40.72488741719071],[-73.92655663912453,40.725669064784626],[-73.92723433300458,40.72641205574722],[-73.92721721119993,40.726460644760316],[-73.92810972310468,40.72726138067441],[-73.9285567608544,40.727844828185546],[-73.92853805222326,40.72788244993672],[-73.92861070615697,40.727919775386084],[-73.92865537507303,40.72789068006654],[-73.92923485876166,40.728260165761036],[-73.93043971043068,40.728563137284475],[-73.93119267796705,40.728642987274135],[-73.93131509360066,40.72872944648487],[-73.93453176375739,40.72910480603237],[-73.93588751399427,40.72946511487243],[-73.93644563967126,40.72967214559857],[-73.93725405595633,40.7301346044157],[-73.93804478573232,40.73050996784641],[-73.93911054574815,40.73137980652554],[-73.9394097369902,40.7319348123607],[-73.93949645750001,40.7321994819168],[-73.9394122092598,40.732235862250995],[-73.93991049895808,40.73327632785951],[-73.94003200991102,40.733245044305704],[-73.94016494802155,40.73348602666687],[-73.94001768032936,40.73354043068556],[-73.94010436919194,40.73375295054157],[-73.94006709327037,40.73376215298008],[-73.94086498592704,40.735070409091044],[-73.94162472636474,40.73584144233819],[-73.94224043442604,40.736184360682245],[-73.9435948040871,40.73671778977386],[-73.94594096053291,40.73750507655425],[-73.94591175993915,40.73757093524115],[-73.94577543679407,40.73755542754236],[-73.945455768032,40.73775235199251],[-73.9447751982843,40.737996263582545],[-73.94463860130921,40.73813835203982],[-73.94447895097495,40.7381125749543],[-73.94257885812196,40.738816020268516],[-73.94280384267661,40.7388615464562],[-73.94255612805291,40.73902086574663],[-73.94146173463167,40.73924858362712],[-73.94077801743283,40.73992178145356],[-73.94050888805725,40.74011394175309],[-73.94036159285048,40.74033534565819],[-73.94056144969082,40.74041832293416],[-73.9391087407206,40.74261703517631],[-73.93866991753195,40.74253408202491],[-73.93858786976786,40.74293088268746],[-73.94001922975666,40.743208272210694],[-73.94014858587303,40.742832441460365],[-73.93965301521378,40.74273108709561],[-73.9411881669625,40.74029021728935],[-73.94159470030033,40.7398641261689],[-73.94165001879614,40.73986415420968],[-73.9418350499276,40.73969262021147],[-73.94203367099587,40.73965693856082],[-73.9423797307438,40.73943047196989],[-73.94259666844921,40.73939514730025],[-73.94279045640116,40.73919372070173],[-73.94270608992154,40.73911506247606],[-73.94290141828857,40.739003801504374],[-73.94329026866818,40.73900862239313],[-73.9438227229791,40.73887153785266],[-73.94433882538478,40.73864623976484],[-73.94523862072657,40.73835682314262],[-73.94548236590116,40.738207031293726],[-73.94715087181174,40.73790012334472],[-73.95138071517916,40.73933647729531],[-73.95192208192282,40.73948730542538],[-73.95219672758516,40.73953625486485],[-73.9522153737711,40.739503456750136],[-73.95379878808717,40.73981986527194],[-73.95549441888905,40.739779560931154],[-73.95682353901002,40.73961472406355],[-73.95706179227867,40.739631832813565],[-73.95741470765999,40.739556582011524],[-73.95978270346579,40.73851171066126],[-73.96006757901841,40.73848374962371],[-73.96028544056766,40.738243992327035],[-73.96072580373678,40.73808017017913],[-73.96216505619311,40.73827253825895],[-73.96213146112983,40.73845107014813],[-73.96247475087885,40.738628189394525],[-73.9626081968488,40.7387955368785],[-73.96262015898664,40.73903266212603],[-73.96243079005264,40.73967148058529],[-73.9622091649178,40.74000617549805],[-73.96159204782978,40.74000396823159],[-73.96145013778266,40.74033783468015],[-73.96125957937343,40.740332939444805],[-73.96126581236175,40.74053747110827],[-73.96185009745174,40.7407244816303],[-73.96190930217675,40.74086783324385],[-73.96180397423018,40.74109767347195],[-73.96145893775225,40.741137505176674],[-73.96121862852013,40.74110786013013],[-73.96107708539792,40.741697324115236],[-73.96111505608546,40.74179780364628],[-73.9613646682572,40.741835179026985],[-73.96133942169911,40.74187793481264],[-73.9611081456754,40.74182802490293],[-73.96117277917224,40.74188633414129],[-73.96155253168956,40.741993261407146],[-73.96119029789023,40.74264485525967],[-73.96109548654573,40.742781947228785],[-73.96097168451558,40.7427540542639],[-73.96064602180348,40.7433927062631],[-73.9605195140197,40.743495778465174],[-73.9602876200962,40.74355781762529],[-73.95978468552276,40.743497716583946],[-73.95971981529031,40.743693045465264],[-73.95980494771437,40.743706752387425],[-73.95975123850988,40.74390227665781],[-73.96067204513331,40.7440512158557],[-73.96064863700721,40.74413031761403],[-73.95992298789865,40.74402704209605],[-73.95993311563615,40.743994588411255],[-73.95963225023961,40.7439346319141],[-73.95936198275113,40.74421397603734],[-73.9593910660958,40.744283324241245],[-73.95971280471178,40.744314816910766],[-73.95972855228645,40.744272115619374],[-73.96015525517691,40.74436878260554],[-73.96012600962418,40.74444393648887],[-73.96001147139262,40.74442254304436],[-73.96002610056907,40.74437386231263],[-73.95980151741625,40.744329368580985],[-73.95954322849377,40.74430877828979],[-73.95952410819169,40.74435489590605],[-73.95923369011766,40.7443100430267],[-73.95903404153096,40.74443521582184],[-73.95885419935782,40.74447009115738],[-73.95877537070561,40.744555599863624],[-73.95918723985152,40.74462101125703],[-73.9592218857206,40.74455380563088],[-73.95943107519163,40.74459754354725],[-73.9594620474797,40.744660891772],[-73.9593733968078,40.74470980818744],[-73.95876372581321,40.74459261916412],[-73.9586409667628,40.74494831495494],[-73.9596491065448,40.74514416077281],[-73.95965229755981,40.745216588173456],[-73.9584938930312,40.74498786491622],[-73.95845252269682,40.74511901131957],[-73.95927397091063,40.745328954932425],[-73.95934071975861,40.74543351026233],[-73.95932420265294,40.74554332275243],[-73.95920557622807,40.745679506731264],[-73.95905935674028,40.74575336834656],[-73.95894743371313,40.74577118529589],[-73.95856865822522,40.74568891742176],[-73.95839861547236,40.74571941944559],[-73.9583792708519,40.745953089590465],[-73.95899427226612,40.74606464643538],[-73.95864684421107,40.74654483594757],[-73.95867072374395,40.74664310969385],[-73.95840482541429,40.746898049495584],[-73.95831740194426,40.74707221012013],[-73.95679453290509,40.74883951695557],[-73.95485394268036,40.74804079464094],[-73.9547334795327,40.748018725711056],[-73.95465178220611,40.748232644095424],[-73.95432006835735,40.74810391657955],[-73.95439031540441,40.748019022887775],[-73.9546454723943,40.748128308658025],[-73.95470561307776,40.74801362045267],[-73.95318382492857,40.747734811960925],[-73.953053755714,40.74808748722927],[-73.95478387869807,40.74842768777318],[-73.95632162509699,40.74908155342971],[-73.9563804538308,40.749034007008746],[-73.9564856879467,40.74911169015571],[-73.95625582934208,40.7493348269841],[-73.95613499240578,40.749264626274766],[-73.95576039207023,40.74959665953044],[-73.95619953007305,40.749670714925344],[-73.9561206627919,40.74975988536911],[-73.95546437002491,40.74967421308287],[-73.95534928514446,40.75001385690392],[-73.95521530032003,40.74999196768949],[-73.95522809429403,40.74994344604035],[-73.95513239152478,40.74992642433229],[-73.95520275040873,40.74967653740944],[-73.9550665256017,40.749632730375396],[-73.95451584573387,40.75058669897674],[-73.95465000413118,40.75083104095947],[-73.95394013937518,40.751745547429415],[-73.95399353394438,40.751786195015896],[-73.95364139195595,40.7520369879639],[-73.95297152022195,40.75274650243158],[-73.95300921156833,40.752775195427404],[-73.95265700069439,40.75310724080277],[-73.95217262294571,40.75370276064526],[-73.95136748557826,40.75452388323723],[-73.9510179266641,40.75508691972472],[-73.95080763818349,40.7552636801143],[-73.93963348684122,40.750382011140445],[-73.93811821686712,40.749792645154734],[-73.93796657806722,40.74966908558995],[-73.93773732454929,40.74925130778966],[-73.93739653782103,40.748916440465884],[-73.93675697103174,40.74914697179088],[-73.93474259153798,40.75097904407217],[-73.93383269406608,40.75160470194017],[-73.93227623247525,40.75195388603703],[-73.92646866931179,40.75206856840569],[-73.92562743725455,40.752137244754955]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK28",NTAName:"Bensonhurst West",Shape_Leng:37140.0578073,Shape_Area:46668757.4268},geometry:{type:"Polygon",coordinates:[[[-73.97963821772844,40.61556454722804],[-73.98913191482256,40.60645613670459],[-73.9868476264828,40.605097236127754],[-73.98869008707028,40.60342530715608],[-73.9892234382791,40.6028656757259],[-73.99674706860172,40.59564312556851],[-73.99530829609841,40.59442758719634],[-73.99619345512309,40.59399219822053],[-73.99633951293978,40.593622475320636],[-73.99736802518491,40.5939743108586],[-73.99838831083619,40.59353139160627],[-73.99854421315827,40.59359676175418],[-74.0003054901956,40.59280477839978],[-74.00105748445718,40.59253700506225],[-74.00193320208325,40.59389469541276],[-74.00184415135472,40.59397766673529],[-74.00200394743437,40.594132371275634],[-73.9999650301034,40.59599430326762],[-73.99559320696717,40.60023222172224],[-74.0000226609666,40.60290731572653],[-74.00032353820893,40.602620291869876],[-74.00493448904164,40.60507440640119],[-74.00264412402818,40.60725717532029],[-74.00094408424448,40.60863971017321],[-74.00830383413292,40.612568000045464],[-74.01050403587408,40.61389661149247],[-73.99932090218985,40.624655246846515],[-73.99771358929597,40.62368026991597],[-73.99678847531307,40.62682605141273],[-73.99507814869848,40.625806737837095],[-73.99464972974172,40.62569717922154],[-73.99489280561377,40.62546179419167],[-73.99432497413301,40.62534290879739],[-73.98569357824182,40.620131514447564],[-73.98627524709667,40.619566616589694],[-73.97963821772844,40.61556454722804]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN13",NTAName:"Hudson Yards-Chelsea-Flatiron-Union Square",Shape_Leng:45452.1419634,Shape_Area:37030029.3912},geometry:{type:"Polygon",coordinates:[[[-74.00153309066982,40.76264459812758],[-74.00127796266635,40.762075824671854],[-73.99547450167069,40.759626857017516],[-73.99730671411196,40.75711050703354],[-73.99163271310638,40.754706805009576],[-73.99709902854309,40.747205102042216],[-73.99141858560698,40.7448026824962],[-73.99051503521112,40.74604031741259],[-73.98407485194073,40.743324718416474],[-73.9899169002143,40.73534934159972],[-73.98995565867686,40.73497658999132],[-73.9899029597005,40.73443479013687],[-73.99075396816642,40.73483915457366],[-73.99361688329428,40.73600449161598],[-74.0086990229636,40.74236172396333],[-74.0091660821697,40.7424165914634],[-74.00909156846187,40.74288614856978],[-74.00962015348905,40.74295124788714],[-74.00956843411765,40.74325778472636],[-74.01213726936176,40.743531927059216],[-74.0120900828903,40.743897637648836],[-74.01202085006398,40.743939770208804],[-74.0095120176736,40.743676093257676],[-74.00943800870857,40.74397125497047],[-74.0089003296284,40.743917927096],[-74.008729864255,40.744881537829585],[-74.00961227924412,40.74499790315052],[-74.00955832929749,40.74528882529868],[-74.00991660747374,40.745327255007105],[-74.00999822601713,40.74495505930208],[-74.00987211085473,40.74491650162317],[-74.01016790535392,40.74494232970955],[-74.01003848384612,40.74496345807813],[-74.0099739502192,40.74532313510919],[-74.01046920077948,40.74538676602889],[-74.01055044755881,40.74501305670484],[-74.01041937209379,40.744976823668445],[-74.01076419714612,40.745005032020835],[-74.01058579200931,40.745020446561554],[-74.01053106537704,40.74538205038944],[-74.01110359804883,40.74544767024393],[-74.01117183119824,40.745078258283336],[-74.01104459150831,40.745046212401995],[-74.01138770040262,40.74507311268252],[-74.01123038057221,40.74507583016008],[-74.0111541917691,40.74544637808391],[-74.01173958618897,40.745519918190105],[-74.01179527711815,40.74515466698491],[-74.01167067583788,40.74511397683721],[-74.01183642872415,40.74512596367871],[-74.0117827576201,40.74560157225545],[-74.01167885505598,40.74597946181593],[-74.01055524968316,40.74587110392023],[-74.01055133541807,40.74590288399962],[-74.0094638985597,40.745750143659414],[-74.00936550495776,40.746337200862044],[-74.01158528361944,40.74660905095149],[-74.01152538638327,40.746973140773804],[-74.01147606347044,40.7469966856395],[-74.00924314592586,40.746762790251175],[-74.00913736259926,40.747359762802986],[-74.00956048028458,40.74740279960446],[-74.00955155415365,40.74733934176786],[-74.00996384996874,40.7473778030125],[-74.00990158912965,40.747438484348905],[-74.01135675337717,40.7475924178442],[-74.0114067393551,40.74763054956545],[-74.0113035299375,40.748014571908875],[-74.00905847967427,40.74778564533276],[-74.00894606568407,40.74841189316864],[-74.0094151163656,40.74842958641468],[-74.00951882426203,40.74847354043588],[-74.01121561813416,40.74867799224353],[-74.01110891182978,40.74904987541699],[-74.00994818004115,40.74893198800561],[-74.00956004978671,40.74993504128895],[-74.01075118603512,40.750293977204834],[-74.01080815734817,40.75031931136804],[-74.01075657967843,40.75041085295754],[-74.00954248111661,40.75000094902327],[-74.00951808686514,40.750107004781405],[-74.0092534098401,40.74998520622444],[-74.00870618650583,40.751426805003305],[-74.00873137829974,40.75146589446713],[-74.00853256925016,40.75188360880172],[-74.00914082120002,40.75209759409903],[-74.00865115936803,40.751939512113026],[-74.00910757975159,40.752139712111806],[-74.00905774009662,40.752214351243175],[-74.00892887650475,40.75214400187016],[-74.00858095826554,40.752043882411535],[-74.00932795206229,40.75237350304612],[-74.00847895572792,40.75201857141729],[-74.00842636447224,40.75215785023924],[-74.0099905581975,40.75281618714907],[-74.00992010631784,40.75291212501179],[-74.00997058797022,40.75293356415314],[-74.00991916275491,40.75300359145919],[-74.00978913116425,40.752948370087694],[-74.00988774868318,40.752814077653284],[-74.0087921009084,40.75235213787692],[-74.00868792219572,40.752493998628374],[-74.00835352838844,40.75235073934229],[-74.00762013296315,40.75428147552011],[-74.0077447860564,40.75433654271937],[-74.00759664325848,40.754530449686065],[-74.00747193016376,40.75447681451166],[-74.00728499944323,40.75473556820314],[-74.00741362102997,40.75478930266936],[-74.00727181174767,40.754985594535206],[-74.00714468360972,40.75493248117341],[-74.00541885907103,40.75732314085172],[-74.00521187705773,40.75723199853988],[-74.00480392560183,40.75780984316469],[-74.00527894863986,40.75802855492821],[-74.00503105136637,40.758357015970525],[-74.00696428683216,40.75916005756163],[-74.00700358837919,40.7592318703411],[-74.00650687640183,40.75989203231717],[-74.00450483093913,40.75908499655269],[-74.0042062912539,40.75950170768837],[-74.00390742098864,40.759375692183475],[-74.00380657835008,40.75951073146598],[-74.00424697194157,40.759699214171356],[-74.00414863814689,40.75983591417076],[-74.00431889491172,40.75991068576339],[-74.00426869650668,40.759959279013316],[-74.00413171622799,40.759861642396004],[-74.0041116207389,40.75989300730718],[-74.00366891453541,40.75970596957655],[-74.00357251040076,40.759846558973116],[-74.00392854867466,40.76000301972043],[-74.003133389914,40.76107834509628],[-74.00278691618709,40.76092896970329],[-74.00233528130056,40.7615437270016],[-74.00454520983429,40.76249280144223],[-74.00444951593374,40.76266456719994],[-74.0022008207327,40.761728432226455],[-74.00153309066982,40.76264459812758]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX03",NTAName:"Eastchester-Edenwald-Baychester",Shape_Leng:59169.1336456,Shape_Area:40256698.0525},geometry:{type:"Polygon",coordinates:[[[-73.79322870948532,40.88282259490568],[-73.79449254438299,40.88306825107404],[-73.79937520438246,40.88435196982154],[-73.80328682136968,40.885415552669095],[-73.80550576743578,40.886092949181226],[-73.8063588501034,40.88594565965601],[-73.80764139501723,40.88595325290047],[-73.80834232390394,40.886044313639125],[-73.81027053227714,40.88645124252336],[-73.81140645226635,40.88663558731109],[-73.812096592457,40.886715010160216],[-73.81356734739506,40.88677870924919],[-73.81442762192319,40.88677196467621],[-73.81547873106547,40.886687446137984],[-73.8167077859142,40.88648095054255],[-73.82027433015821,40.88555070032873],[-73.82077408667787,40.88671060257268],[-73.82387140581788,40.88778362793498],[-73.82529579952408,40.886976380466045],[-73.82777310600807,40.88604701879704],[-73.83065359042662,40.884852938517746],[-73.83278538755911,40.88447688829254],[-73.83342222618872,40.8842753969861],[-73.83434541985305,40.88385002034609],[-73.83560954994702,40.88294527946872],[-73.83621837374386,40.88239301251123],[-73.83698743803562,40.881939083309874],[-73.84127784685245,40.88031754811514],[-73.84273785237582,40.87942490269373],[-73.84324113793946,40.87910891293374],[-73.83814842225576,40.87695329912541],[-73.83924789026588,40.876618738433976],[-73.83746027748745,40.873222649970536],[-73.83829221480211,40.87295133933139],[-73.8356576652678,40.86751275590615],[-73.8331596040737,40.86831975626274],[-73.83054182750277,40.86373143490313],[-73.83022388450199,40.86342952832973],[-73.82954731157822,40.862164087265505],[-73.8283434743138,40.860892026674826],[-73.82950892691987,40.86184121394916],[-73.82972614837887,40.86195274463541],[-73.83089329661591,40.86221284909191],[-73.83578436657567,40.86501601199959],[-73.84792614069121,40.87134223358045],[-73.84859676002685,40.87167078513547],[-73.8536363872702,40.873300599208925],[-73.85143247985602,40.874987270980604],[-73.850689556654,40.87548667788341],[-73.85172236136447,40.87684337066308],[-73.8525485409719,40.87709158676435],[-73.85091896083547,40.87789344063507],[-73.85207011720223,40.87929765708557],[-73.85248305833817,40.87946370504105],[-73.8474439688464,40.88697853116719],[-73.84704957988542,40.88767181587941],[-73.84196149557253,40.888455967413115],[-73.83998563427295,40.888718672491684],[-73.83959356290931,40.88873953316589],[-73.83822700946013,40.888644524509125],[-73.83732165118191,40.88874196375341],[-73.83554853982255,40.88913350396939],[-73.83737956188598,40.89392474110704],[-73.83630541825232,40.89359916538107],[-73.83525790570019,40.893391644055725],[-73.8335684976902,40.89280642584272],[-73.83267808677587,40.8926018263358],[-73.83095773979018,40.89203015890011],[-73.82722429784302,40.89091023355179],[-73.8226770878014,40.88961946907132],[-73.82248620413195,40.89009805440431],[-73.82326489879229,40.88998702106101],[-73.82336601341291,40.89107513570742],[-73.8228533507269,40.8912068290962],[-73.81948724444082,40.89028998036025],[-73.81827738100279,40.8898471305284],[-73.81601699492104,40.88932383384298],[-73.81574261438452,40.88919733690421],[-73.81516854859295,40.88903776225943],[-73.80872106080291,40.887480598376904],[-73.80755944192754,40.88710889160093],[-73.80290946487423,40.886030680336674],[-73.80192449949932,40.88571296802429],[-73.79405517396094,40.88369996678102],[-73.79300652649337,40.88335873688038],[-73.79322870948532,40.88282259490568]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX13",NTAName:"Co-op City",Shape_Leng:30343.0869176,Shape_Area:39875179.2945},geometry:{type:"Polygon",coordinates:[[[-73.82027433015821,40.88555070032873],[-73.81992586501927,40.882119333466804],[-73.82329599430467,40.87309741817928],[-73.82126693795246,40.86907160628473],[-73.82091617218941,40.868916934874576],[-73.81578764066221,40.86575806093609],[-73.81641455929814,40.865151497607016],[-73.81699760266432,40.86445903114305],[-73.81684495908254,40.864306792799525],[-73.81895425529213,40.86247456169012],[-73.82037553020737,40.8610330054934],[-73.82450575184409,40.859764021466376],[-73.82444012074622,40.859501383985375],[-73.82632571111193,40.85929799789932],[-73.82699653234717,40.85908778640569],[-73.82714556298393,40.859232394934715],[-73.8274145808099,40.8599598727182],[-73.82759107994585,40.86007855140393],[-73.82799444969343,40.86084018590274],[-73.82826796566378,40.860837333161186],[-73.8283434743138,40.860892026674826],[-73.82954731157822,40.862164087265505],[-73.83022388450199,40.86342952832973],[-73.83054182750277,40.86373143490313],[-73.8331596040737,40.86831975626274],[-73.8356576652678,40.86751275590615],[-73.83829221480211,40.87295133933139],[-73.83746027748745,40.873222649970536],[-73.83924789026588,40.876618738433976],[-73.83814842225576,40.87695329912541],[-73.84324113793946,40.87910891293374],[-73.84127784685245,40.88031754811514],[-73.83782792479424,40.881608140372144],[-73.83698743803562,40.881939083309874],[-73.8366413434705,40.88212002482064],[-73.83621837374386,40.88239301251123],[-73.83560954994702,40.88294527946872],[-73.83434541985305,40.88385002034609],[-73.83342222618872,40.8842753969861],[-73.83278538755911,40.88447688829254],[-73.83065359042662,40.884852938517746],[-73.82777310600807,40.88604701879704],[-73.82529579952408,40.886976380466045],[-73.82387140581788,40.88778362793498],[-73.82077408667787,40.88671060257268],[-73.82027433015821,40.88555070032873]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX62",NTAName:"Woodlawn-Wakefield",Shape_Leng:38709.5781372,Shape_Area:39742774.7471},geometry:{type:"Polygon",coordinates:[[[-73.83737956188598,40.89392474110704],[-73.83554853982255,40.88913350396939],[-73.83732165118191,40.88874196375341],[-73.83822700946013,40.888644524509125],[-73.83959356290931,40.88873953316589],[-73.83998563427295,40.888718672491684],[-73.84196149557253,40.888455967413115],[-73.84704957988542,40.88767181587941],[-73.84590568546157,40.889741369883325],[-73.85736281685213,40.89341143940479],[-73.85695619403393,40.89416793772316],[-73.86071098127968,40.895370544372014],[-73.861359278643,40.89466231935547],[-73.86401637674226,40.89552304744664],[-73.86491632477366,40.89574949536623],[-73.87048672642305,40.896640211013775],[-73.8748061811491,40.89572568763888],[-73.87711974105801,40.895468663643506],[-73.87643743064926,40.89687059396222],[-73.87589465388922,40.897559458644025],[-73.87482041484934,40.89844543802365],[-73.87388944310376,40.89896546270356],[-73.87136373174026,40.900039151571534],[-73.8701036964182,40.900741946981846],[-73.86899707630546,40.901559155154445],[-73.86820270305341,40.90235538277361],[-73.86789043713748,40.90298695364972],[-73.8656579432583,40.90224320754041],[-73.86305085664794,40.90150808403882],[-73.86279850645585,40.90153552172091],[-73.86202342452097,40.90118777618698],[-73.86156438318814,40.90106212283389],[-73.86134100834322,40.90111157030146],[-73.8594677870066,40.90051720976944],[-73.85907692274914,40.901007992597265],[-73.85923576168292,40.90109861313361],[-73.8594198409143,40.9013931245099],[-73.85937696525158,40.90156521766174],[-73.85920552023913,40.901547863658514],[-73.85902704152116,40.90144491025603],[-73.85886401316353,40.901711695049556],[-73.8594638995812,40.90193387763357],[-73.85957882948152,40.90244084327395],[-73.85926432475749,40.90266947939315],[-73.8591049877187,40.90264445543488],[-73.85872824767114,40.902288971071954],[-73.85840075352176,40.90221325579901],[-73.85816000004856,40.90230571020272],[-73.85816460299459,40.902595861061485],[-73.85796932262127,40.90285090768684],[-73.85774747392615,40.90278754691913],[-73.85755967657754,40.902917795456034],[-73.85711090479973,40.90364953269592],[-73.85717176302553,40.904082065436256],[-73.85699157346858,40.904584209063174],[-73.85710151378284,40.90470845788232],[-73.85735935234094,40.90473096098743],[-73.85743457618351,40.90484154319787],[-73.85717766075965,40.90528654166145],[-73.8570502273363,40.90529153575649],[-73.85665436822664,40.905055000782305],[-73.85636081366785,40.90510215405816],[-73.85601023323028,40.90530598362606],[-73.85601160839344,40.90548208344068],[-73.85650251694365,40.905563848795744],[-73.85692398180078,40.90597417011102],[-73.85681013638536,40.906155828325986],[-73.85655732545023,40.90626203234348],[-73.85595622644269,40.90621850323583],[-73.85580463795945,40.90626436412652],[-73.85552697739078,40.90638025145912],[-73.85513792149328,40.906866889141824],[-73.8542377668688,40.90703286825436],[-73.8537410363087,40.90778791623299],[-73.85383360999589,40.90797434981959],[-73.85422905300626,40.908018589045966],[-73.85471078273525,40.908006309439564],[-73.85491109673742,40.90835486933162],[-73.85458940521998,40.90893949929746],[-73.8539164602897,40.90946560344184],[-73.85360061720283,40.90960674145079],[-73.85335351864963,40.910043140249485],[-73.85295618421432,40.91035304417921],[-73.85276991580503,40.910406007563466],[-73.85258474750411,40.91031061706408],[-73.85266035892212,40.91001519315816],[-73.85245653383642,40.909860509071414],[-73.85227451616598,40.90985409914059],[-73.85178316950146,40.910160630651994],[-73.85149242436346,40.910271640498785],[-73.85144753968937,40.91044967170535],[-73.85107116183717,40.91037152072448],[-73.85347522333703,40.907530293023264],[-73.85092059362832,40.90661649448955],[-73.85017317485853,40.9075078656505],[-73.84708032914374,40.90615673253031],[-73.84538061117217,40.90565580758542],[-73.84481886984896,40.905529950177225],[-73.84492921919707,40.90466300376881],[-73.84489264909138,40.90419086729873],[-73.8413868930466,40.904172741533955],[-73.84106272886987,40.90321411632815],[-73.84094803911964,40.902289458787266],[-73.84067966324189,40.90151703146299],[-73.8403987792416,40.90102899402617],[-73.83924604741745,40.89950115455171],[-73.8391948664831,40.899350692569996],[-73.8391660335624,40.899041251137895],[-73.83920940072633,40.89881067701214],[-73.83966433211717,40.897885515608245],[-73.83964812746767,40.89733053533972],[-73.83839199123517,40.89406700804808],[-73.83804277286059,40.89414233088521],[-73.83737956188598,40.89392474110704]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN33",NTAName:"Cambria Heights",Shape_Leng:26168.2692501,Shape_Area:33076798.259},geometry:{type:"Polygon",coordinates:[[[-73.7267775953371,40.70305929190145],[-73.72672841221141,40.70214573575544],[-73.72678346833682,40.701987124450945],[-73.72665409150153,40.70111265889266],[-73.7265443505858,40.698982640166044],[-73.72620259742762,40.68898434081065],[-73.72593196243002,40.68631194081706],[-73.72579787942314,40.68435384982504],[-73.72586264182358,40.68324108094787],[-73.72666460718153,40.68343688915008],[-73.73744163705699,40.68670076738553],[-73.7375999412353,40.68636201153256],[-73.74755175366268,40.68934733665572],[-73.7462434557995,40.691279444850935],[-73.74467955604271,40.693412263974196],[-73.7442664884249,40.69426010141441],[-73.7435928608784,40.6962153253104],[-73.74474545394706,40.69638546549648],[-73.74507480022545,40.69639094941067],[-73.74618157950404,40.69612192598294],[-73.7477301218163,40.69955313683431],[-73.74500119060667,40.700262213049804],[-73.74590871019437,40.70228727366437],[-73.74148805288023,40.70343161213639],[-73.74109294020496,40.70348106268248],[-73.74050336486624,40.703433556949896],[-73.7407767579591,40.70267983786236],[-73.73430403660008,40.70247813169505],[-73.73426455293946,40.703219542878266],[-73.72776791889802,40.703020637944014],[-73.7267775953371,40.70305929190145]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI14",NTAName:"Grasmere-Arrochar-Ft. Wadsworth",Shape_Leng:40064.8079928,Shape_Area:40918890.7208},geometry:{type:"Polygon",coordinates:[[[-74.08155470057721,40.6062902970704],[-74.07656734669389,40.60612166415853],[-74.07543239714445,40.60598796734539],[-74.07399965308099,40.60572556795812],[-74.0720668284992,40.60518634776654],[-74.06914030987431,40.60403971873019],[-74.06550663191037,40.602719880932405],[-74.0635056566019,40.60215005483047],[-74.06364058553834,40.602541948797345],[-74.06517091250778,40.604213508846286],[-74.06046429721287,40.60640582406361],[-74.06042867239182,40.6063527298854],[-74.05778710398516,40.60744959188251],[-74.0578901688546,40.607580754464685],[-74.05685812380482,40.60805635754516],[-74.05649565936767,40.607247648256205],[-74.0560104134493,40.6067805661323],[-74.05552126056423,40.60648289256897],[-74.0552871969709,40.60653888957609],[-74.05516001122321,40.60673049135085],[-74.05498867839405,40.60666069640915],[-74.05518218103515,40.60647456633178],[-74.05515251060763,40.60632904589768],[-74.05505974161748,40.60626542045251],[-74.05381069871385,40.60591271885267],[-74.05360729740823,40.605238809417735],[-74.05402039958973,40.60493471991107],[-74.05353964546053,40.60363355756691],[-74.053033307454,40.60146647029636],[-74.05309560984999,40.6012111313827],[-74.05338396772586,40.60089521385129],[-74.05340705905398,40.60052266104353],[-74.05324525421581,40.600322791706375],[-74.05300717979259,40.60016041710718],[-74.05240319632732,40.599869498923525],[-74.0522541191048,40.599851166907506],[-74.05222826954193,40.59977610230358],[-74.05237245846209,40.599718782417916],[-74.05279416485449,40.599873464654834],[-74.05291816194962,40.59984625717812],[-74.05434118619357,40.598819175336544],[-74.05431150481265,40.59877750576018],[-74.05447422333904,40.598755539548435],[-74.05719369904652,40.59639507881196],[-74.05972690577232,40.5939082167127],[-74.05974734759407,40.59384861106461],[-74.05964120662082,40.59370938839263],[-74.05976660687644,40.59383525751013],[-74.06055353637058,40.59337975542355],[-74.06215274432546,40.59202504054197],[-74.06503332356229,40.58899099836786],[-74.06580036064389,40.58974660993641],[-74.06571835045285,40.589908102724785],[-74.06577682854278,40.590021391139935],[-74.06651182892097,40.59034492205105],[-74.06662559502345,40.590342019703954],[-74.06728410703693,40.590986202943164],[-74.06795227254425,40.59208368336296],[-74.07043976119891,40.59673474668101],[-74.07888191676804,40.59394279178397],[-74.07846693758701,40.59330001196937],[-74.08173343020637,40.59215628569231],[-74.08304163562967,40.59422972077425],[-74.08376862327286,40.595520957415616],[-74.08406968690541,40.59549627040922],[-74.08587511934059,40.59589012125579],[-74.0854741404528,40.59683381658678],[-74.08497132861909,40.59732510951603],[-74.08469129658782,40.597507132383335],[-74.08248303376423,40.59832980778123],[-74.0814421662713,40.59915922040519],[-74.08130343818564,40.599387655601085],[-74.08116420928465,40.60020655437918],[-74.08121690347271,40.60054793161499],[-74.08139658944191,40.60092495241736],[-74.08218729319182,40.60194100804497],[-74.08281516077977,40.60197418227431],[-74.08432821290546,40.60187268329399],[-74.08583797104804,40.60142777338844],[-74.08666235095123,40.601233538866516],[-74.08830670400332,40.6011077802754],[-74.08947630573043,40.600904321586455],[-74.08983655911115,40.600774094667116],[-74.0903607391626,40.60040036362649],[-74.09161330405925,40.599261561666225],[-74.09172051497967,40.59922085701051],[-74.09211869912932,40.60008696940635],[-74.09283746578745,40.60108923400574],[-74.09290300779638,40.60145031973901],[-74.0924414525224,40.60411958645066],[-74.09272620657849,40.60620985693521],[-74.0926456028911,40.606662722331855],[-74.09239912857237,40.60707228919449],[-74.09172937265147,40.607721192126775],[-74.09140973749905,40.60822629838744],[-74.09045495931399,40.60909452637655],[-74.08542756314283,40.60702239052903],[-74.08341933374221,40.606522508661236],[-74.08280949863452,40.60641097906972],[-74.08155470057721,40.6062902970704]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK33",NTAName:"Carroll Gardens-Columbia Street-Red Hook",Shape_Leng:60666.1770988,Shape_Area:44624143.6255},geometry:{type:"Polygon",coordinates:[[[-73.99236367043247,40.68969012377697],[-73.99490113606073,40.684430238090826],[-73.98722413947009,40.681447302377954],[-73.98931813737082,40.67834938936428],[-73.9894089638394,40.677454517362186],[-73.99069861947515,40.6758074189659],[-73.99280910236514,40.676148750193484],[-73.99349102387418,40.6761833021163],[-73.9942080265703,40.6761524270478],[-73.99465075835366,40.67602337003703],[-73.99506451106137,40.675840475937726],[-73.99540989293106,40.67556309728558],[-73.99596213113568,40.67496822441082],[-73.99805741652258,40.672469545103176],[-73.99847134058679,40.67205910098933],[-73.9993110109892,40.67077263904667],[-74.00030337808883,40.668716892497045],[-74.00105664113184,40.668945681214645],[-74.0014152710316,40.66835941434699],[-74.00221506816544,40.668578637441186],[-74.00289483876949,40.667348465949374],[-74.00319075274841,40.66726319981486],[-74.00369462000528,40.66742761120837],[-74.00363026351536,40.66756752335648],[-74.00510227346264,40.6679756472256],[-74.00547017274596,40.66795127142807],[-74.00552727453993,40.66789920420885],[-74.00586366180684,40.66799376258567],[-74.00600183319813,40.667890361928016],[-74.00677062553598,40.66618886143833],[-74.00683085521838,40.66620895620461],[-74.0068671303845,40.666128789412646],[-74.00683235737586,40.66604964627105],[-74.0068943333115,40.66601934109772],[-74.00696707494863,40.666052180041895],[-74.00695398260582,40.66611579655087],[-74.00688141878143,40.666132466634764],[-74.0068445242865,40.66621244784711],[-74.00689626622105,40.6662233826561],[-74.00475388758332,40.670721358944974],[-74.00543926529353,40.67092146823843],[-74.00661572184404,40.668623156271956],[-74.006803459389,40.6685913751657],[-74.00754821618388,40.66705174573354],[-74.00779653349623,40.66715977077719],[-74.007087242218,40.66859135803317],[-74.00985411921631,40.66852362833532],[-74.01154017543331,40.66508591975664],[-74.01574872882648,40.66456833578902],[-74.01690267361067,40.66484660233886],[-74.01744446050984,40.66526799584918],[-74.0178871921539,40.66585046628524],[-74.01857605010876,40.67039241386994],[-74.01876336878674,40.671075874494385],[-74.01933946871777,40.67162494842261],[-74.01888283363333,40.671601666205405],[-74.01751037152687,40.671034530481435],[-74.01668768368862,40.665437066264275],[-74.0165753609784,40.665038537839855],[-74.01648665620498,40.6649305089537],[-74.01602551776011,40.66486304878808],[-74.0159369853455,40.66547079172144],[-74.01227967872791,40.66573241415884],[-74.01087664028975,40.668601615763514],[-74.01035683667314,40.66864283538848],[-74.01033845947936,40.669078195447995],[-74.01055980644765,40.66919052506965],[-74.01091024340414,40.669190492369474],[-74.01087343978188,40.66971011555839],[-74.0115428803156,40.669784342247716],[-74.01162173050984,40.67011434594481],[-74.01151443463274,40.6704070223762],[-74.01162527521356,40.67058102827583],[-74.01406219828169,40.66970583843645],[-74.01424926997882,40.66972860473702],[-74.01424180477493,40.66980837003621],[-74.01175350575687,40.670657756573085],[-74.01186776629011,40.67082434310122],[-74.0120783173256,40.67093361467411],[-74.01233458833958,40.67095248331377],[-74.01261963416783,40.67084190894041],[-74.01355198671442,40.67125693437709],[-74.01370634525983,40.6711845841027],[-74.01393626690106,40.67117907685395],[-74.01427407191714,40.671379298679305],[-74.01508006471076,40.670685673295466],[-74.01519980570059,40.67075402716171],[-74.01387273763245,40.67188076176043],[-74.01423289452782,40.67213000051301],[-74.01559644489554,40.6709704775173],[-74.01568625497515,40.67103883492881],[-74.01428722178993,40.67224118299986],[-74.01422923190442,40.67220720499027],[-74.0129758779219,40.673327918720936],[-74.01336378218143,40.67359153693437],[-74.01511918663961,40.672156995969104],[-74.01632099922307,40.67290826956369],[-74.01457946720954,40.67441401707157],[-74.01496392184575,40.6746776302942],[-74.01816839280787,40.67193924060108],[-74.01880094710897,40.67225076434621],[-74.01727138470126,40.673608645805515],[-74.01775247162377,40.674047722892354],[-74.01794428080245,40.67388282049688],[-74.0180107732054,40.67391318105235],[-74.01780187203204,40.67409544141237],[-74.01813640465855,40.674358645332745],[-74.01817618274657,40.674464177036675],[-74.01804519537194,40.67476791076808],[-74.01801676735683,40.67500943950501],[-74.01792370657405,40.67507598132625],[-74.0179864053881,40.67512514362096],[-74.01783447572689,40.675258223014254],[-74.01814986189123,40.67546787941487],[-74.01829802655335,40.67545917918136],[-74.01841235755718,40.67536544943164],[-74.01832457843098,40.67530442504133],[-74.0182695031067,40.67534926808165],[-74.01818210632882,40.6752914314076],[-74.01839290896024,40.67510772414779],[-74.01847650481574,40.67516266840404],[-74.01842523089353,40.67521474157496],[-74.01851887196547,40.67527388913742],[-74.01876345045358,40.67505540595365],[-74.01888101356188,40.67509248090868],[-74.01840869454863,40.67552402107147],[-74.0185361941771,40.67577301703702],[-74.01850332638497,40.6758415587045],[-74.0184203721429,40.67587810090157],[-74.01801800805613,40.67588952276325],[-74.01788017011303,40.67622755428675],[-74.01791198226182,40.676510462801936],[-74.01797569982652,40.67651692060804],[-74.01797996169557,40.67657189785405],[-74.0191098538992,40.67654584409385],[-74.01912261786653,40.676616989159406],[-74.01976925679247,40.67661322491714],[-74.01995197864677,40.677103010449976],[-74.0190825738633,40.677139564047515],[-74.01914183574374,40.67772313432777],[-74.0192189273765,40.677777288546444],[-74.01917743946885,40.67782694850436],[-74.01904108711268,40.67787662401774],[-74.01843040727606,40.677908320859586],[-74.01841103183162,40.67840712127841],[-74.01898322049327,40.6783524402353],[-74.01947238897455,40.67835833705054],[-74.01953856603558,40.67830195259344],[-74.01966312651503,40.67838820127057],[-74.01955208167657,40.678482177600515],[-74.0194286444392,40.67840019839293],[-74.01840544611002,40.67844222006226],[-74.01841786210231,40.678549551897426],[-74.01825267070578,40.67855288672579],[-74.018283149009,40.67872828941207],[-74.01838313797539,40.67874482169809],[-74.01857882788785,40.67898307947236],[-74.01945620101142,40.67893245242283],[-74.01954011583413,40.67896820644031],[-74.0192812810203,40.679648140595354],[-74.0189281398833,40.67984430561363],[-74.01899105471423,40.67990499370377],[-74.01772532572437,40.68066190267357],[-74.01764735085476,40.68060189084162],[-74.01757049494162,40.68065064812422],[-74.01746928903133,40.68061473170079],[-74.01520082279144,40.68197941993064],[-74.01532059864759,40.68211072878052],[-74.01282000398867,40.68362241649726],[-74.01212285893644,40.6829621778508],[-74.01213481688781,40.6829059275225],[-74.01410549713991,40.681712519375374],[-74.01360863270283,40.68122194672813],[-74.0138739877798,40.68100981281632],[-74.01301835488111,40.680412373511636],[-74.00967108558883,40.68326872771501],[-74.0107731233938,40.68435861554088],[-74.01178272201209,40.68375999549926],[-74.01193259977079,40.68388774915489],[-74.00798184131699,40.68627582209581],[-74.00776833635146,40.68624913667152],[-74.00701988682653,40.68652641719406],[-74.00644146832335,40.68628849023211],[-74.00588224183227,40.686195768390995],[-74.005629863304,40.686784206043605],[-74.00459270521768,40.68821522248398],[-74.00382038853705,40.68892964419673],[-74.00297565370539,40.69042657592069],[-74.00196321926836,40.690136379460725],[-74.0018530452462,40.69038798674181],[-74.0009615685494,40.69012876784747],[-74.00069905775851,40.690611858419054],[-74.00196938592107,40.691843208317465],[-74.0017436211104,40.692406749705455],[-74.00110519325061,40.69205659533919],[-73.9977692437901,40.69119469786073],[-73.99236367043247,40.68969012377697]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK91",NTAName:"East Flatbush-Farragut",Shape_Leng:39211.4118821,Shape_Area:34362242.9822},geometry:{type:"Polygon",coordinates:[[[-73.92574389425859,40.64001446624982],[-73.92590483102214,40.63900510592425],[-73.92606338061374,40.63852406103602],[-73.92616377838266,40.63757296117988],[-73.92652490892384,40.63649272329657],[-73.92744822294387,40.6352584095577],[-73.93726700184804,40.63465062567417],[-73.93701746157781,40.63231097913575],[-73.94462885425988,40.63183773463211],[-73.94537272424144,40.638786955243674],[-73.94826499590833,40.638607190711674],[-73.94841343299741,40.63998746458343],[-73.94744296772845,40.640047664741495],[-73.94778994683467,40.64330573644933],[-73.9458687924778,40.64342374460715],[-73.94667414461613,40.65094811868704],[-73.94570606186441,40.65100678497399],[-73.94606690611323,40.654410262825884],[-73.94703257592005,40.654338714832704],[-73.94715896323093,40.655593787270995],[-73.93190743828843,40.65653765254258],[-73.93139116688346,40.651689608124826],[-73.93038144303132,40.65173405423812],[-73.92910623104004,40.63979510591557],[-73.92574389425859,40.64001446624982]],[[-73.93857097308987,40.649590510240444],[-73.94305166981121,40.64931361788463],[-73.94292151385805,40.648574678973226],[-73.9435257819962,40.64854156778277],[-73.9433083186934,40.646526731538444],[-73.94279961024463,40.6465426173154],[-73.94260824580195,40.644661862383025],[-73.93451037531118,40.645028377360205],[-73.93357588841408,40.645083701066895],[-73.93261418271317,40.645245478595676],[-73.93300276882451,40.648819311999205],[-73.93826012207532,40.648574855012235],[-73.93832775210267,40.649212079716406],[-73.93854553437224,40.649199283714005],[-73.93857097308987,40.649590510240444]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN19",NTAName:"Glendale",Shape_Leng:41357.7037659,Shape_Area:29961067.889},geometry:{type:"Polygon",coordinates:[[[-73.85729287192326,40.71146767668838],[-73.85667714366824,40.70769187446595],[-73.85593991685778,40.706398034158255],[-73.85473240477538,40.70676414259484],[-73.85473957344772,40.70518485010644],[-73.853056638353,40.70313704611059],[-73.85252019054444,40.70229172361753],[-73.8552927590464,40.70259550178765],[-73.8552957150926,40.70199100961049],[-73.85716688252509,40.70167410489204],[-73.85725351412515,40.70121217773545],[-73.85827405827601,40.701223659238906],[-73.8589322439911,40.701320344758884],[-73.85819890700633,40.702911074365716],[-73.86285374177436,40.703414491748674],[-73.87639785216518,40.702294042276634],[-73.87621714178007,40.70159500481845],[-73.88182690581606,40.699529299005775],[-73.88280948496323,40.70068345565651],[-73.88431619451548,40.70020119633849],[-73.88771298020097,40.69967807635822],[-73.88818025786145,40.69885791124142],[-73.88809909474762,40.698763296478],[-73.88779396302073,40.6976654277876],[-73.88761064208391,40.69732774547205],[-73.88734003264605,40.69702366620115],[-73.8869998989599,40.696771143801705],[-73.88642048158204,40.69645814949435],[-73.88865416919133,40.69582954890068],[-73.88828642369796,40.69523691673965],[-73.88919365345453,40.69493577021813],[-73.89195658664816,40.69441057018899],[-73.89245207625024,40.69522572878942],[-73.89507694381922,40.69459138970235],[-73.8955862545723,40.693979162011885],[-73.89398113214102,40.693075965542334],[-73.89357935003757,40.693085329232176],[-73.89326209935396,40.692200947459575],[-73.89474270964169,40.69263695279],[-73.89695653507484,40.69194920744676],[-73.89768631842568,40.693365258982894],[-73.89764233531483,40.69340865137615],[-73.89742730179678,40.69328898014961],[-73.89691021332283,40.69384227053849],[-73.89736265798818,40.69411084723276],[-73.8985710773043,40.69386983366783],[-73.90003039216377,40.69343745057417],[-73.89888585772813,40.69538947540035],[-73.89838185197416,40.69613599750226],[-73.89677249965997,40.69679911679602],[-73.89558457649505,40.69712764200664],[-73.89578005089632,40.6985109621415],[-73.89484994963576,40.6985896233233],[-73.89500322684931,40.69971237746388],[-73.89384018413985,40.70085972605938],[-73.891053169728,40.703816413302434],[-73.88911917685512,40.70559887739664],[-73.88652826814834,40.706225206377354],[-73.88554946851845,40.70615461853363],[-73.88553214158814,40.70644568324871],[-73.88377296918071,40.70629420165468],[-73.87900684284199,40.706536839367274],[-73.87720614757843,40.70668884049955],[-73.87153400383555,40.70703676705637],[-73.8691100709302,40.7070893367642],[-73.86949738553879,40.70787207021868],[-73.86989582469542,40.708507094191454],[-73.87016462450325,40.709207743441674],[-73.86661823191537,40.71040164855867],[-73.86500982001613,40.710776908933404],[-73.85965416837627,40.71337996141231],[-73.85975932862961,40.711845059282055],[-73.85729287192326,40.71146767668838]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN23",NTAName:"West Village",Shape_Leng:29387.9729643,Shape_Area:24999631.2864},geometry:{type:"Polygon",coordinates:[[[-73.9899029597005,40.73443479013687],[-73.98986852139564,40.73352711455489],[-73.99039010002664,40.73128852433004],[-73.99050558603588,40.73056495673773],[-73.99135869097044,40.727782470185666],[-73.99136388138153,40.72755978345912],[-73.9926032219844,40.72413644968337],[-73.99532907937456,40.72508373972876],[-73.99677175711443,40.725431943502606],[-73.99761019591817,40.72579713860241],[-74.00281726639143,40.72836312930406],[-74.01067264955407,40.72911266650022],[-74.01076791504995,40.728173957807655],[-74.014390699324,40.728463048022675],[-74.01408693625973,40.730663172537625],[-74.014037969248,40.73069421884387],[-74.01116195696476,40.73045067634902],[-74.01094127440201,40.73302031334119],[-74.01400220280675,40.73306800179535],[-74.01399957174895,40.73333227751779],[-74.01090389883285,40.73329761713954],[-74.01089833608026,40.733349066561544],[-74.01073767405512,40.73341983890261],[-74.01075168951925,40.73354247965106],[-74.0108699992254,40.73359469390645],[-74.01083284629274,40.73400709350834],[-74.01201792010474,40.73406374445631],[-74.01200124222383,40.73433840066359],[-74.0108135941303,40.73428344314505],[-74.01064292083952,40.73604869770479],[-74.01073181008556,40.73620416706716],[-74.01061910143503,40.73634539072169],[-74.0104765981442,40.73806394059503],[-74.0110870663594,40.73809274957869],[-74.01106791934326,40.73830409617403],[-74.01113915602562,40.73838986281304],[-74.01045432864592,40.73836450522298],[-74.01039303134554,40.739174296059154],[-74.01138798340475,40.73921605558609],[-74.01158045502306,40.739264535609415],[-74.01158715816617,40.7394788693296],[-74.01163351895192,40.7395064860661],[-74.01162792311759,40.73956247310099],[-74.01155518156287,40.73955672622729],[-74.01152745020399,40.73987377044472],[-74.01159286133124,40.7398737638789],[-74.0116125801734,40.73970760054935],[-74.01236917400034,40.73975164637211],[-74.01228649627012,40.73979296102124],[-74.0122889791323,40.73989904111934],[-74.01235687200199,40.73993658471741],[-74.01234947552231,40.74001637981591],[-74.0122704984407,40.740034226965115],[-74.01231001278845,40.740194756203955],[-74.01157686924232,40.740160099501516],[-74.01158637953661,40.739973846947215],[-74.01151491736535,40.73997286369876],[-74.0114607395534,40.74058421475249],[-74.01215741913087,40.74060599813124],[-74.01215372624051,40.74067425662068],[-74.0126574255607,40.7406966522317],[-74.0126592820849,40.74074763849741],[-74.00963145571747,40.74064536687163],[-74.00949685454283,40.740727011785516],[-74.00951844195933,40.74080572291689],[-74.00941140332208,40.741154093312794],[-74.00958131822182,40.74117496028477],[-74.00957692857696,40.74121065665431],[-74.01216232909208,40.74149188918002],[-74.01211745872139,40.741758516211554],[-74.00951947211071,40.74149030119336],[-74.00944784072517,40.74189159122015],[-74.00927792756073,40.74187861085612],[-74.0091660821697,40.7424165914634],[-74.0086990229636,40.74236172396333],[-73.99361688329428,40.73600449161598],[-73.99075396816642,40.73483915457366],[-73.9899029597005,40.73443479013687]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN24",NTAName:"SoHo-TriBeCa-Civic Center-Little Italy",Shape_Leng:24282.7480522,Shape_Area:24862222.1592},geometry:{type:"Polygon",coordinates:[[[-73.9926032219844,40.72413644968337],[-73.99352298045557,40.721631693239225],[-73.99480778955251,40.718457426852865],[-73.99542875812696,40.717279243047834],[-73.9960587267832,40.71623164071346],[-73.9985892550198,40.717099511537086],[-73.99995620798603,40.718017095087156],[-74.00272286179327,40.71438970926264],[-74.00321983012259,40.71403623705969],[-74.00421405301458,40.71298074314479],[-74.00485768021683,40.712452541116946],[-74.00527561892598,40.71224944049535],[-74.0055893295413,40.712170053755536],[-74.00589175035437,40.71200715956492],[-74.00738921410593,40.71164226960672],[-74.00746749369492,40.711566902706814],[-74.00834760979019,40.711358545553935],[-74.00860085337284,40.71139223970901],[-74.01166334875678,40.7127980557627],[-74.01375388483041,40.71369055484316],[-74.01347524218882,40.715110711896585],[-74.01335121489193,40.71523331232198],[-74.01323384880851,40.71565618757175],[-74.01244109212794,40.71905767270337],[-74.01303068126435,40.71913145581909],[-74.0129144874633,40.7197082932253],[-74.01344694049585,40.71978201978623],[-74.01338906903445,40.72004260727319],[-74.01452415856502,40.720187397445684],[-74.01450706205668,40.72026590617714],[-74.01457231372021,40.720274137742315],[-74.01452279056075,40.72053205032773],[-74.01414732641814,40.72048158908857],[-74.01415861254233,40.7204315908374],[-74.0140909588378,40.720422747859146],[-74.01407954419402,40.72047331152236],[-74.01400416755592,40.720468520235215],[-74.0139660972248,40.72041363453808],[-74.0138671435722,40.720407572312546],[-74.01385921064876,40.72044993325525],[-74.013681739107,40.72042590148725],[-74.01364192748743,40.72038336629996],[-74.01363580332404,40.720419550132654],[-74.01354841723071,40.72040685437937],[-74.01355378315893,40.72036872531941],[-74.01350069404445,40.72040186132087],[-74.01296558526816,40.72032867508454],[-74.01286909138038,40.720833752211675],[-74.0132393733702,40.720887986728066],[-74.01315895020875,40.721253260783485],[-74.01308010145637,40.72154580719522],[-74.01253875807262,40.72150317657635],[-74.01165326569942,40.725871761851344],[-74.01195833074826,40.72597759871572],[-74.01231588417463,40.72603384278276],[-74.01516324118423,40.72631971193678],[-74.01520426531141,40.726361949379566],[-74.01517084019787,40.72657939015506],[-74.01512356549462,40.726793942564534],[-74.01154201897604,40.72644734692707],[-74.01138323604746,40.72822927186458],[-74.01076791504995,40.728173957807655],[-74.01067264955407,40.72911266650022],[-74.00281726639143,40.72836312930406],[-73.99761019591817,40.72579713860241],[-73.99677175711443,40.725431943502606],[-73.99532907937456,40.72508373972876],[-73.9926032219844,40.72413644968337]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI25",NTAName:"Oakwood-Oakwood Beach",Shape_Leng:44301.9456935,Shape_Area:55950540.6974},geometry:{type:"Polygon",coordinates:[[[-74.12153728906142,40.57515325257939],[-74.12185333597351,40.57465318089395],[-74.12183079763918,40.57421708946889],[-74.12136044698725,40.572826743739334],[-74.12138731344876,40.57209221056944],[-74.12150213657364,40.57172155879838],[-74.12162563934474,40.57150139386875],[-74.12216856503741,40.57093949323833],[-74.12278967207526,40.570429844769556],[-74.1234509615282,40.56992276135439],[-74.12489904372397,40.56894914294706],[-74.1230928113987,40.567966366957044],[-74.11636336342791,40.56391563798654],[-74.1137616119522,40.566497189104105],[-74.11013947106048,40.56431066683252],[-74.10557645508744,40.561989973492466],[-74.10484627124502,40.56159523941287],[-74.10299799564663,40.560469558275535],[-74.09992914135414,40.55907068565305],[-74.1002122591522,40.55887115112838],[-74.10079963994006,40.55832182111523],[-74.10124354139796,40.55766083081291],[-74.10160202986731,40.556803458719415],[-74.10184637674705,40.55621698877999],[-74.101840329649,40.55594463924122],[-74.10137477595713,40.555692372106684],[-74.1013542327051,40.55558329994343],[-74.10140516910758,40.555538525661845],[-74.10147440700959,40.55553361099701],[-74.10265076426138,40.5561344047846],[-74.10309839111538,40.555904641451136],[-74.10385795454347,40.5551181601013],[-74.1046594355729,40.55412046731062],[-74.10508907881564,40.55323546801125],[-74.10484447702228,40.553025814555646],[-74.10491463759168,40.55301626711249],[-74.10642822065088,40.553853373118656],[-74.10641256331932,40.55410827558497],[-74.10656361035373,40.554186927548585],[-74.10704738515396,40.554195450541364],[-74.10734831283652,40.55414815203112],[-74.10768623463983,40.55397667097492],[-74.10853922462543,40.5532580256733],[-74.10925134404883,40.552580465304295],[-74.11028457387543,40.55149635741751],[-74.11278846957897,40.547884262221665],[-74.11301046104465,40.54778006543007],[-74.11338340616277,40.54807337515068],[-74.11395149921974,40.54872532279992],[-74.1149420292086,40.54958864961216],[-74.1165629005628,40.5491277417249],[-74.11876291986579,40.551216114405335],[-74.11850278372162,40.55141638768695],[-74.11945859291163,40.55222190604452],[-74.12402047127598,40.55523082777768],[-74.12730057821922,40.55729517244772],[-74.13042459572925,40.55443704205842],[-74.13177828118643,40.55348997051129],[-74.13316825933344,40.552356179160014],[-74.13321002528622,40.55238387637862],[-74.13885092749412,40.556951178864324],[-74.13818001022909,40.55759386549125],[-74.13660029409272,40.55838893918369],[-74.13574932448064,40.558850045426375],[-74.13561300319121,40.55898002628034],[-74.1353036351682,40.559425089388924],[-74.13480973431129,40.56082861823106],[-74.13367116316103,40.561840934449805],[-74.13340740082342,40.562129805701275],[-74.13310979289086,40.56286769186494],[-74.13264384036233,40.563503334911445],[-74.13170009026001,40.564535749607444],[-74.13240280430779,40.564760999845035],[-74.13459671279753,40.56527093390659],[-74.13527417288597,40.565517760618285],[-74.13591592627503,40.56581796040066],[-74.13651149229386,40.566166621597596],[-74.14131233629854,40.568433347748844],[-74.14438745026591,40.56970610066721],[-74.14387453553128,40.570606594189805],[-74.14418588207405,40.57203740950227],[-74.13378794114931,40.57329697458555],[-74.13261022991023,40.57353016327037],[-74.12765358202358,40.575234942563476],[-74.12729942595539,40.57578271488865],[-74.12708721366043,40.57637160863517],[-74.12665688938009,40.57628493291613],[-74.12563664107307,40.5759734444813],[-74.1251333390426,40.57587998803136],[-74.12333955263699,40.57578698613066],[-74.12289127729672,40.575640545849055],[-74.12209602127048,40.575132587375165],[-74.12175740004838,40.575111793629375],[-74.12153728906142,40.57515325257939]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK78",NTAName:"Bushwick South",Shape_Leng:40778.7102599,Shape_Area:40192625.377},geometry:{type:"Polygon",coordinates:[[[-73.93229708608675,40.70774944664815],[-73.93391870754871,40.70748702613151],[-73.93269784924918,40.70317039122254],[-73.93115533924303,40.70377233487016],[-73.90482499670759,40.688808569870126],[-73.90405577122156,40.68854627866007],[-73.90536569974483,40.68683280781335],[-73.90449401088726,40.68629860045674],[-73.905755480648,40.6840044185293],[-73.90282570599679,40.68234114155382],[-73.90286312162105,40.680942195137234],[-73.90262262280451,40.68066450291559],[-73.9040463980889,40.67922059801916],[-73.92970192402798,40.69386339710912],[-73.93856854782675,40.69884813554939],[-73.94394947271304,40.69822127983908],[-73.9443878859649,40.70042452378256],[-73.9419307888223,40.700725234695796],[-73.94042057874316,40.70107659829491],[-73.94103009697547,40.70463617753658],[-73.94273448447798,40.70447330641359],[-73.94378799623536,40.71090037906388],[-73.94042252027594,40.71121764774931],[-73.94047713466273,40.71156264280786],[-73.94068803134334,40.71196204863677],[-73.93480281865517,40.71337249559367],[-73.93229708608675,40.70774944664815]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK90",NTAName:"East Williamsburg",Shape_Leng:49202.4452048,Shape_Area:39160339.4699},geometry:{type:"Polygon",coordinates:[[[-73.9240590973705,40.7141115596449],[-73.92404011334023,40.71400831262889],[-73.92313936349358,40.71339472809091],[-73.92223294598762,40.71285442485275],[-73.92168663633558,40.711894317398375],[-73.92154601695682,40.71104328353481],[-73.92122073526369,40.71079055855643],[-73.92074519655475,40.7105296864903],[-73.92189184632649,40.70939609671034],[-73.92418647456469,40.70906472933194],[-73.93229708608675,40.70774944664815],[-73.93480281865517,40.71337249559367],[-73.94068803134334,40.71196204863677],[-73.94047713466273,40.71156264280786],[-73.94042252027594,40.71121764774931],[-73.94378799623536,40.71090037906388],[-73.94273448447798,40.70447330641359],[-73.94103009697547,40.70463617753658],[-73.94089287165968,40.70391415761734],[-73.94042057874316,40.70107659829491],[-73.9419307888223,40.700725234695796],[-73.94322686012315,40.701520709145726],[-73.95023693757913,40.70547324665451],[-73.95087492667216,40.7095131151983],[-73.94865533511802,40.70972498318217],[-73.94937231850682,40.7140668783097],[-73.95348472164814,40.71407020807864],[-73.95275381269637,40.714735991056855],[-73.9511443369976,40.71603452078596],[-73.95024722916081,40.716632485081355],[-73.94866397410118,40.71768277145599],[-73.94560358883406,40.71956728591892],[-73.94195633562957,40.72165231923012],[-73.94109418847272,40.722309245114],[-73.940221236712,40.722891505266986],[-73.9376531449383,40.72426555492947],[-73.93676382405536,40.72483891922307],[-73.93412337355872,40.726855471479475],[-73.93255438611658,40.727862889829964],[-73.93226852216199,40.728174658031826],[-73.93200420453813,40.72814508289344],[-73.93168317826743,40.72803172609696],[-73.93080479131761,40.72784883926168],[-73.93032635560009,40.72779514174632],[-73.92966308042126,40.72754339771128],[-73.9295802069088,40.72761282070865],[-73.9292433394839,40.727397942318625],[-73.92926898893543,40.72736521532113],[-73.92849418540162,40.72661460330786],[-73.92793912559148,40.72588372904533],[-73.9278717240508,40.72585405069507],[-73.92779650104185,40.72492566821102],[-73.92561470516623,40.72006166221242],[-73.92481798943697,40.72026513747529],[-73.92470891655732,40.71999887556631],[-73.92474503108116,40.71998524724623],[-73.92453432562185,40.71966615777242],[-73.92452083048197,40.71955356651186],[-73.92469004857114,40.71872233555582],[-73.92486413443055,40.71844044541306],[-73.92837930101501,40.717578367290066],[-73.92878963057186,40.71773285212233],[-73.92887965180014,40.71772031862352],[-73.92912432836728,40.71752729272492],[-73.92918539109033,40.71741165011906],[-73.92956856905533,40.71722153556256],[-73.9297053998138,40.717049279389535],[-73.92931999832135,40.71611200883301],[-73.92934483421232,40.71593891798307],[-73.92947356921461,40.715721452621125],[-73.93149304610968,40.715208480069975],[-73.93179267163065,40.71518297509077],[-73.932206073073,40.71496398092931],[-73.93223001574897,40.714846965043634],[-73.93213686987276,40.71467904647514],[-73.93175357116219,40.71474167550529],[-73.9312406705949,40.713724810884685],[-73.93145301733041,40.713438844463575],[-73.93164527391666,40.7133427937581],[-73.93263905308514,40.7130525861697],[-73.9320326298051,40.71159022307425],[-73.93338484615302,40.71123372774565],[-73.93328349320348,40.71097870645276],[-73.93190101920861,40.71133847142818],[-73.93093227547737,40.70916531125411],[-73.9307800270703,40.709103300785024],[-73.93075653104785,40.70897298273721],[-73.93050100083198,40.70868122503955],[-73.9303609463194,40.70871773753043],[-73.93038021735106,40.70880284776277],[-73.93025038849083,40.708927912919926],[-73.93060170849326,40.7097467525871],[-73.93073348083952,40.70989336336662],[-73.93076957459166,40.71009825209837],[-73.93154613680818,40.71185535175065],[-73.93085966173925,40.71206494115675],[-73.93077894737053,40.71216042795546],[-73.93085528765518,40.71222066327945],[-73.93161032734943,40.71203802217777],[-73.93183335051508,40.712507527988095],[-73.93184249493432,40.71262723799059],[-73.93173436851775,40.712749292238],[-73.93052713207425,40.71306156090448],[-73.9304229437912,40.71317255867143],[-73.93105231835666,40.71461022392293],[-73.9308519013403,40.71490298559277],[-73.92843881748541,40.71553094957533],[-73.92890601265071,40.71661895680949],[-73.92874531987815,40.716825128348354],[-73.92823253110988,40.717106453751185],[-73.925951638779,40.71769107056943],[-73.92472906134893,40.717944050687734],[-73.92455290971762,40.71793913473404],[-73.92410280160398,40.71766713720281],[-73.92363989262067,40.71732065749337],[-73.92341861434723,40.717069015738694],[-73.92316776085256,40.71647891538606],[-73.92311718168406,40.71647618845649],[-73.92305500014392,40.71634266429078],[-73.92361145155547,40.716103508171216],[-73.92359001003213,40.71602814819231],[-73.92431329961573,40.71584705657672],[-73.92488553573651,40.71526718765295],[-73.92476155115396,40.7149759714488],[-73.92455568744015,40.71475365373278],[-73.92443153174074,40.71436477617631],[-73.92434751051928,40.71430705300895],[-73.92433589757124,40.71412259346637],[-73.9240590973705,40.7141115596449]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK19",NTAName:"Brighton Beach",Shape_Leng:21058.810319,Shape_Area:17181109.1146},geometry:{type:"Polygon",coordinates:[[[-73.96034953585209,40.58730628607391],[-73.96034190762006,40.58596836626213],[-73.96014924129607,40.58357589703919],[-73.96004798667482,40.58326987240659],[-73.95900740039079,40.582838127802084],[-73.95703134180401,40.58303533241693],[-73.95645729125697,40.58265885105774],[-73.95414287795587,40.58310614010554],[-73.9539200074703,40.58186979357335],[-73.95383801654631,40.58174555231532],[-73.95374063177276,40.581355892240346],[-73.95235846742617,40.574274686193014],[-73.95275899258066,40.57421363093207],[-73.95311788937518,40.5742877938611],[-73.95374257958349,40.574297232241896],[-73.95393490539732,40.574242908652636],[-73.9539942340508,40.574266317041776],[-73.95403199797876,40.57408629718045],[-73.95408333385906,40.57407327218326],[-73.95413360803454,40.57433326749514],[-73.95439793821805,40.574370845907175],[-73.95513705312813,40.574371136925976],[-73.95569484110271,40.57432699626342],[-73.95620816595127,40.57426547067514],[-73.95634506681625,40.57420722198948],[-73.9562956120362,40.57383498465433],[-73.95634533454607,40.57379757829184],[-73.95647169447582,40.574139487242526],[-73.95656750905908,40.57417077849294],[-73.957200534982,40.57418667087826],[-73.95843476359072,40.574088814543686],[-73.95896634218651,40.5739472687687],[-73.95894268461846,40.57346716764738],[-73.95898718972612,40.57343065472674],[-73.95907248027603,40.57384554749769],[-73.95939182247434,40.57391210924978],[-73.95941778288545,40.57517798313919],[-73.96286117998778,40.57498014075894],[-73.96471128859527,40.574782617767994],[-73.9675670729142,40.5748815269491],[-73.96765743523478,40.57504368249039],[-73.96795533369405,40.57501255371083],[-73.96825878817567,40.575045488990824],[-73.96888995877943,40.5752612389941],[-73.96868119543274,40.575630882762674],[-73.96514385192494,40.59110191611804],[-73.96067984068368,40.59159758262617],[-73.96034953585209,40.58730628607391]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN46",NTAName:"Bayside-Bayside Hills",Shape_Leng:43040.2096608,Shape_Area:80798014.0636},geometry:{type:"Polygon",coordinates:[[[-73.76782207564013,40.77881037631181],[-73.76760454633794,40.7782990346607],[-73.76761894075496,40.77799469391587],[-73.76709113484735,40.776844841109174],[-73.76632823324219,40.77584305433212],[-73.76600398326556,40.77506700693253],[-73.76572796903928,40.77460332809205],[-73.76510436754283,40.77379903821913],[-73.764176331147,40.7728299899401],[-73.7612630125984,40.77039596507424],[-73.76060524066253,40.769765933457215],[-73.76044056848677,40.76948518693146],[-73.75960078092824,40.768723256713],[-73.75937389494467,40.7686363887871],[-73.75893512093695,40.76833432851584],[-73.75880776560997,40.768182652725386],[-73.7588273600204,40.767767523872244],[-73.75864264358079,40.767357170035446],[-73.75842156550799,40.76719906744806],[-73.75802387258823,40.76707532904439],[-73.7578703056741,40.76694642744697],[-73.75760683799236,40.76696991900688],[-73.75752194308959,40.767106756132314],[-73.75739020803874,40.7671666723584],[-73.75734523174008,40.76706980756655],[-73.7570311482004,40.76682325434129],[-73.75641084289751,40.76651422276758],[-73.75650072003928,40.766344505019376],[-73.75628664411576,40.76634340404928],[-73.75602210333291,40.76646442121016],[-73.75547310439792,40.76636558041649],[-73.75493674407366,40.76609325214025],[-73.7542555341964,40.765532892788265],[-73.75410065488626,40.76534935346195],[-73.75401961979031,40.76530745082609],[-73.75388234874696,40.76534929289707],[-73.75377036530634,40.76530463148434],[-73.75467572405663,40.764939759645515],[-73.75567226855465,40.76469114912981],[-73.75921689768923,40.764324855548146],[-73.75886431399071,40.76327454125905],[-73.758593205358,40.76408822955912],[-73.75844672113189,40.764115146067084],[-73.75844568810335,40.76368153062583],[-73.75784858716695,40.76256679954024],[-73.75784418114992,40.762367940583175],[-73.75802364180413,40.76211096135724],[-73.75811451999319,40.762053897189695],[-73.75848075066634,40.76199473714894],[-73.75800131701065,40.760379867479095],[-73.76239510540735,40.75949699812226],[-73.76176692858844,40.757278802073074],[-73.7619271375463,40.75577285336091],[-73.76184344003016,40.75553726931341],[-73.7616766980221,40.75532347682203],[-73.76101539982129,40.75481609299341],[-73.76080194147526,40.7545477298219],[-73.76012948812914,40.753022117169095],[-73.75994649731062,40.752760006378054],[-73.75968494353953,40.752536256845126],[-73.75906249202522,40.75220918132889],[-73.75737034770665,40.75024385676453],[-73.7568412730045,40.74932207770428],[-73.75802805583017,40.74895781631855],[-73.76073612098445,40.747737385471964],[-73.76857701220426,40.74552220488441],[-73.76937164122786,40.74522030908634],[-73.77137678488462,40.74425103550061],[-73.77241461002662,40.743884845221935],[-73.7736218517439,40.7436304626193],[-73.77573836927098,40.74332564716399],[-73.78052037800592,40.75333074310264],[-73.78212461978045,40.75533931152838],[-73.784289918847,40.759440299435724],[-73.78502434744703,40.76103651585873],[-73.78546383070338,40.76259192540882],[-73.78571993566746,40.762921464725935],[-73.7859581062635,40.76310224365147],[-73.78807523740836,40.76419949042412],[-73.78836856546904,40.76443842884699],[-73.79059858124602,40.767418687704655],[-73.7949363679946,40.772404529882984],[-73.79565702077424,40.77303608621203],[-73.7936523027001,40.77336043864131],[-73.79163526066459,40.774238655585854],[-73.78826972953263,40.77507535732957],[-73.77947656058416,40.77766416991918],[-73.77678363262261,40.7784095837903],[-73.7758395833234,40.778612372112015],[-73.7755373218136,40.77702559797911],[-73.76857305035301,40.77910542880437],[-73.76833788977416,40.7786825251413],[-73.7680719222676,40.778748448538316],[-73.76811174664624,40.77883403478091],[-73.76803333393048,40.77885839455731],[-73.76796073127599,40.778776009213296],[-73.76782207564013,40.77881037631181]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX05",NTAName:"Bedford Park-Fordham North",Shape_Leng:22565.4817071,Shape_Area:14998883.2737},geometry:{type:"Polygon",coordinates:[[[-73.88362518129578,40.86725758800698],[-73.8868331704345,40.86538999386054],[-73.88812278776109,40.86425457057764],[-73.88889566010222,40.86475415323653],[-73.89177188799202,40.86187171675007],[-73.89138023380261,40.86170058826304],[-73.8932152075781,40.85987420615567],[-73.89381026072503,40.85898656513199],[-73.89469326407509,40.85942628230906],[-73.89573924665535,40.85813820676463],[-73.89883814571424,40.85930730834145],[-73.89714379809884,40.8624450646499],[-73.89798099370022,40.86240253986979],[-73.89943670840407,40.86211691206553],[-73.90107966951528,40.86275638342237],[-73.89740323298722,40.86747418971113],[-73.89631315736122,40.86703857544458],[-73.89438130324764,40.86606885121163],[-73.8919171826082,40.86930211007544],[-73.89157400109443,40.869684252840855],[-73.89098696993577,40.870160715430785],[-73.88833547031597,40.87170983053292],[-73.88785196328794,40.87211417612788],[-73.88937163753194,40.87338229790118],[-73.88773577644082,40.8770338817902],[-73.88527683207732,40.879217668991096],[-73.88383859573904,40.87679795008237],[-73.88345579329207,40.876056095136306],[-73.88340035287165,40.873946626765864],[-73.88319048155603,40.873393279907376],[-73.88271951386218,40.872770781290065],[-73.88255391548495,40.872457287713175],[-73.88146889728783,40.868573646263386],[-73.88362518129578,40.86725758800698]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX43",NTAName:"Norwood",Shape_Leng:22160.7663632,Shape_Area:15711462.1212},geometry:{type:"Polygon",coordinates:[[[-73.88309003170485,40.86659150928993],[-73.88362518129578,40.86725758800698],[-73.88146889728783,40.868573646263386],[-73.88255391548495,40.872457287713175],[-73.88271951386218,40.872770781290065],[-73.88319048155603,40.873393279907376],[-73.88340035287165,40.873946626765864],[-73.88345579329207,40.876056095136306],[-73.88383859573904,40.87679795008237],[-73.88527683207732,40.879217668991096],[-73.8856751802567,40.87887251080847],[-73.88595071664201,40.88050741213252],[-73.8871650519915,40.88257651089221],[-73.88694246809466,40.88268276675589],[-73.88697007522872,40.88279564271684],[-73.88723194009827,40.88305497842836],[-73.88712303584809,40.883200939945446],[-73.88705142536118,40.88434957584596],[-73.88683486608483,40.884342026064665],[-73.88662413039641,40.884267302707286],[-73.88421696443181,40.883197728058455],[-73.88368336856523,40.883157615331406],[-73.88274833360872,40.88339738680167],[-73.88208623674541,40.88313222140861],[-73.88124422541554,40.882709633005554],[-73.87814944568201,40.886873807866614],[-73.87803562426485,40.887118321756155],[-73.87783125838064,40.88677275967815],[-73.877606766124,40.88452304412299],[-73.8777281772773,40.88345419508519],[-73.878125943608,40.88215382572798],[-73.87467601442265,40.881562851685516],[-73.87479240731903,40.88007512889036],[-73.87494589755495,40.87994766929529],[-73.87191803286714,40.88023746610692],[-73.87187100693797,40.88032811992275],[-73.87084077080095,40.88043889400602],[-73.87024100052578,40.88022935290631],[-73.87160577396476,40.876921927761565],[-73.8725525090043,40.87517518282332],[-73.87518802822377,40.8715768284471],[-73.8761922491252,40.87047671092967],[-73.87694352025076,40.8699546815721],[-73.88133855509186,40.86759008775682],[-73.88309003170485,40.86659150928993]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI37",NTAName:"Stapleton-Rosebank",Shape_Leng:56444.2823215,Shape_Area:46549990.6714},geometry:{type:"Polygon",coordinates:[[[-74.07258133873471,40.637941874089464],[-74.07257275212608,40.63787190987589],[-74.07348353801724,40.63778735793558],[-74.07345636225783,40.63765394568523],[-74.0735344765934,40.63764172263182],[-74.07348737303562,40.637233529236205],[-74.07053959705145,40.637471404121676],[-74.07049412213838,40.63716188683956],[-74.07341562698791,40.6368939509651],[-74.07337342888036,40.636610725639386],[-74.07210395164896,40.63672523098919],[-74.07209483807509,40.63664727762455],[-74.07335822045594,40.63653609416514],[-74.07283184344463,40.63366603282607],[-74.07332821382374,40.632058442989894],[-74.07298474612324,40.63030897898143],[-74.06802173543952,40.62878758518544],[-74.06813019247991,40.628539046091475],[-74.07291177936558,40.62999637940648],[-74.0725125940682,40.62776877842697],[-74.07245527931815,40.6276449954245],[-74.07239900616766,40.62763110052596],[-74.07229223079956,40.62715170720397],[-74.07271151258003,40.62710344565107],[-74.07278382204868,40.62704855467618],[-74.07278066016087,40.626927963129646],[-74.0727054337728,40.62687414856283],[-74.07225500955772,40.62460875019394],[-74.07106179396492,40.622793154505416],[-74.07091707043213,40.62265642862483],[-74.07071994036924,40.62257748182328],[-74.07002735127536,40.62145406385028],[-74.06998300752292,40.62141766589818],[-74.0699037466079,40.62143903668789],[-74.06989782466243,40.621351086649184],[-74.06975543088328,40.62120813987236],[-74.06946265791278,40.62108749300953],[-74.0666915792443,40.619085764247444],[-74.06649335296383,40.618897601595144],[-74.06596065271782,40.6193590155937],[-74.06591003230032,40.61931580040387],[-74.06640989019205,40.61886446706408],[-74.06619908020825,40.61872248128839],[-74.06557280841211,40.619274543599914],[-74.06544586135439,40.61920262828891],[-74.06668207982923,40.618067495938504],[-74.06641558715177,40.61787249816555],[-74.06604991535907,40.61819541035271],[-74.06569864744142,40.617956415586576],[-74.06546549952755,40.61810707028077],[-74.0649618928043,40.61777239856523],[-74.06435705158667,40.618245944865585],[-74.06425721751592,40.618171687585544],[-74.06509908407207,40.61751095612544],[-74.06443662005026,40.61706241460254],[-74.06401211767947,40.617402225630514],[-74.06390892240363,40.61732882514904],[-74.0643274585805,40.61698850302215],[-74.06419812935636,40.61690093458998],[-74.06386816773013,40.61685771092724],[-74.06376129923154,40.61679874965471],[-74.06376668744076,40.616603630839904],[-74.06183263746607,40.61478731064742],[-74.06130709550271,40.614192250765576],[-74.06080853165749,40.61303173380619],[-74.06073779443378,40.61304667709473],[-74.06064940589478,40.612807849916784],[-74.0606742621101,40.612577998116805],[-74.06061238996327,40.61230567673738],[-74.06033680792015,40.61190188021964],[-74.05985444328624,40.61210295860811],[-74.06004736821693,40.61272159406466],[-74.06001625116234,40.61276368789539],[-74.06019772729653,40.61278637593228],[-74.05999919711635,40.612783899618634],[-74.05976930738183,40.61205664713933],[-74.06027224809945,40.61181963993919],[-74.0600775489677,40.61183017976],[-74.05990110428584,40.611749173078195],[-74.05953306748911,40.61171425406424],[-74.05927076243688,40.61149313250732],[-74.05890133421524,40.61100228648629],[-74.05892744754185,40.61093837754443],[-74.05912333939771,40.61082228858649],[-74.05908584308705,40.610633677254484],[-74.05857881230966,40.61004864388483],[-74.05848042971117,40.61001074045369],[-74.0584773650359,40.60992729480895],[-74.05832711480379,40.60976822897974],[-74.0577621977924,40.609326051707],[-74.05716383878979,40.60874278310365],[-74.05685812380482,40.60805635754516],[-74.0578901688546,40.607580754464685],[-74.05778710398516,40.60744959188251],[-74.06042867239182,40.6063527298854],[-74.06046429721287,40.60640582406361],[-74.06517091250778,40.604213508846286],[-74.06364058553834,40.602541948797345],[-74.0635056566019,40.60215005483047],[-74.06550663191037,40.602719880932405],[-74.06914030987431,40.60403971873019],[-74.0720668284992,40.60518634776654],[-74.07399965308099,40.60572556795812],[-74.07543239714445,40.60598796734539],[-74.07656734669389,40.60612166415853],[-74.08155470057721,40.6062902970704],[-74.0793942397236,40.60908436453674],[-74.07502569860864,40.61637873965422],[-74.07418030975796,40.61730493379874],[-74.0735311084949,40.61778201451233],[-74.07275022450747,40.6181934096345],[-74.07225884864917,40.61852327483667],[-74.07183293044929,40.61890075146602],[-74.07140608343119,40.61943137894949],[-74.07118111121092,40.61997902673849],[-74.07113462330308,40.62035994877356],[-74.07116568770755,40.6206987857849],[-74.0725355173976,40.622464022221614],[-74.08000095005664,40.61855295205965],[-74.08720982761564,40.61330697350484],[-74.08747218473557,40.614560803337866],[-74.08784842999276,40.61516473025344],[-74.08783375480326,40.61531765068239],[-74.08657157768666,40.617169385715904],[-74.08626756626734,40.61783201089442],[-74.0860800627843,40.61851530436439],[-74.08581269157085,40.62037554953349],[-74.08524991631835,40.62280087128582],[-74.08496211810697,40.62462523303396],[-74.08415419875685,40.62626711543027],[-74.08392362360574,40.62660935525663],[-74.08362236749537,40.62692257812331],[-74.08298808929166,40.62735007284294],[-74.08241960136391,40.62745240308566],[-74.08202428344973,40.62743512510065],[-74.08165220326268,40.62735102934788],[-74.08099625451284,40.62733981423168],[-74.0808437151846,40.62737949104411],[-74.08064690621757,40.62762867631286],[-74.08051601991103,40.62809988447061],[-74.0797249224354,40.628950687893365],[-74.08173135317767,40.63001222593141],[-74.0814061545089,40.63030123556296],[-74.08343738353506,40.63228040429618],[-74.08491321664181,40.633639924178134],[-74.08574928999671,40.63395555772531],[-74.08443647578623,40.63540524804887],[-74.08177940518485,40.63662301475497],[-74.0787220258829,40.638289669913966],[-74.07836890421049,40.63829079467846],[-74.07813163434041,40.63817145360892],[-74.07683997780401,40.637750259619565],[-74.0751520797744,40.637788617580455],[-74.07506052890967,40.63774840033326],[-74.07486917475198,40.63779280957757],[-74.07258133873471,40.637941874089464]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI08",NTAName:"Grymes Hill-Clifton-Fox Hills",Shape_Leng:37119.6017815,Shape_Area:37745913.0016},geometry:{type:"Polygon",coordinates:[[[-74.08155470057721,40.6062902970704],[-74.08280949863452,40.60641097906972],[-74.08341933374221,40.606522508661236],[-74.08542756314283,40.60702239052903],[-74.0930568561993,40.61011993573729],[-74.09410959043443,40.61040655212251],[-74.09482489118824,40.610548057360035],[-74.0955582976852,40.6106247780369],[-74.09776968697935,40.610623592940705],[-74.09862151345285,40.61151891214526],[-74.09935043021707,40.61241907603295],[-74.09987733805502,40.61291865202127],[-74.10209434379627,40.614600490701925],[-74.10350925295981,40.61641607539762],[-74.10254940556761,40.61685368522699],[-74.10189835110555,40.61745221106974],[-74.10073089155803,40.61870975465696],[-74.10004426975568,40.619357955413065],[-74.09223971361276,40.62574291624776],[-74.09158095983538,40.62654592333809],[-74.08934045708179,40.62992328545795],[-74.08914567603216,40.63012462153565],[-74.08835621368921,40.630734963691324],[-74.08574928999671,40.63395555772531],[-74.08491321664181,40.633639924178134],[-74.08343738353506,40.63228040429618],[-74.0814061545089,40.63030123556296],[-74.08173135317767,40.63001222593141],[-74.0797249224354,40.628950687893365],[-74.08051601991103,40.62809988447061],[-74.08064690621757,40.62762867631286],[-74.0808437151846,40.62737949104411],[-74.08099625451284,40.62733981423168],[-74.08165220326268,40.62735102934788],[-74.08222094262521,40.62745254532687],[-74.08261621721792,40.62743470127141],[-74.08306246802616,40.62731250441924],[-74.08362236749537,40.62692257812331],[-74.08392362360574,40.62660935525663],[-74.08415419875685,40.62626711543027],[-74.08496211810697,40.62462523303396],[-74.08524991631835,40.62280087128582],[-74.08581269157085,40.62037554953349],[-74.0860800627843,40.61851530436439],[-74.08626756626734,40.61783201089442],[-74.08657157768666,40.617169385715904],[-74.08785147588569,40.61524307368398],[-74.08782337202143,40.6150878001633],[-74.08747218473557,40.614560803337866],[-74.08720982761564,40.61330697350484],[-74.08000095005664,40.61855295205965],[-74.0725355173976,40.622464022221614],[-74.07116568770755,40.6206987857849],[-74.07114283741366,40.62054910704369],[-74.07118111121092,40.61997902673849],[-74.07131130381954,40.619608138850424],[-74.07151888193434,40.61926275837251],[-74.07183293044929,40.61890075146602],[-74.07249719095854,40.61835175579252],[-74.0735311084949,40.61778201451233],[-74.07397615990354,40.61747364232086],[-74.0743707994352,40.61712770451715],[-74.07502569860864,40.61637873965422],[-74.0793942397236,40.60908436453674],[-74.08155470057721,40.6062902970704]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK69",NTAName:"Clinton Hill",Shape_Leng:23971.4606403,Shape_Area:20528139.3248},geometry:{type:"Polygon",coordinates:[[[-73.95337017442844,40.68064050844405],[-73.95328187439998,40.68020003147551],[-73.95543681493255,40.679957855183936],[-73.95529361599387,40.67920315104391],[-73.96868961357634,40.6820052575973],[-73.9690620203265,40.68415736136272],[-73.97013154130974,40.68950630795856],[-73.969103623995,40.6894675215054],[-73.96983118473524,40.693134243973894],[-73.96880989647165,40.69312038239882],[-73.96939450045458,40.69608038942044],[-73.96546721366545,40.695932161736586],[-73.96469820105187,40.69606437325268],[-73.96434801467144,40.69618376551588],[-73.96397185807388,40.69637865538971],[-73.96347515207854,40.696800668200915],[-73.96305480199297,40.69739287243612],[-73.96283963716344,40.69803866833983],[-73.96105100633972,40.698326078818845],[-73.96015854658303,40.69411730965861],[-73.95614239268207,40.69457901857237],[-73.9554105801563,40.69090829188613],[-73.96029281668112,40.690346249915414],[-73.95985939491727,40.68814745121745],[-73.95956770187361,40.68668255592752],[-73.95468418916532,40.68724485443739],[-73.95337017442844,40.68064050844405]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK72",NTAName:"Williamsburg",Shape_Leng:16874.4444076,Shape_Area:11590051.4674},geometry:{type:"Polygon",coordinates:[[[-73.95023693757913,40.70547324665451],[-73.94705205231445,40.70366394984246],[-73.95128819368696,40.70092236548562],[-73.9538119690652,40.70318097979544],[-73.95745736438872,40.70082260318481],[-73.95722517405626,40.69999935002626],[-73.95701993123406,40.698973914349565],[-73.96283963716344,40.69803866833983],[-73.9621797815518,40.70022071060438],[-73.96720962042622,40.704255709153294],[-73.96761547790786,40.7049616353869],[-73.96838933680787,40.706829186746916],[-73.96327873777076,40.707729298518665],[-73.95845576794645,40.70725184744558],[-73.95838432367218,40.7076766907991],[-73.95790430738559,40.70842717347004],[-73.95191055699286,40.70636007892379],[-73.95023693757913,40.70547324665451]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX26",NTAName:"Highbridge",Shape_Leng:18507.4188229,Shape_Area:16457559.8071},geometry:{type:"Polygon",coordinates:[[[-73.91728719351066,40.84510408615947],[-73.91750659652905,40.84464196561288],[-73.91743956980372,40.8440607682384],[-73.91746449728497,40.8438237613246],[-73.91755786158762,40.84359380230248],[-73.91785899220706,40.843224471665216],[-73.91796093066998,40.842992517222235],[-73.9179496521323,40.842229570607664],[-73.91618344432072,40.84233490025411],[-73.91901668296428,40.8383810930639],[-73.91930863377874,40.83812632285761],[-73.92399049458308,40.83505229808235],[-73.92439355078338,40.834484027112374],[-73.92537540063647,40.83262809550436],[-73.92761206305859,40.83012648263088],[-73.92802724926965,40.82971953937386],[-73.92850073922968,40.829352349549545],[-73.92944983368504,40.828810404435224],[-73.93033933073404,40.828495554900606],[-73.93114131974126,40.82830380833223],[-73.93307251068106,40.828156152538774],[-73.93354606747043,40.83150945299885],[-73.93360592036706,40.83278953052077],[-73.93350033328731,40.83312346560106],[-73.93346235636974,40.83364382307131],[-73.93314306643092,40.835194127616084],[-73.93299639001609,40.83567878918868],[-73.93265620353979,40.83647347652591],[-73.93235564152508,40.83699333562798],[-73.93186660172779,40.837640056250336],[-73.93095819766785,40.83925414741555],[-73.93081468528483,40.83942834514659],[-73.93075007959845,40.83961582263345],[-73.93051572319956,40.8399336421838],[-73.93043184038571,40.84023170538791],[-73.93048324520994,40.84046006106965],[-73.9295893944191,40.84208354907928],[-73.92957870884518,40.84227666960244],[-73.92938012588215,40.842467145624376],[-73.92919408007184,40.84281841573953],[-73.9291845860692,40.84320375764724],[-73.92861574822352,40.84467686502995],[-73.92827454640613,40.844975761156526],[-73.92808209373632,40.84539159733611],[-73.9259634191084,40.844889744210775],[-73.92478318783078,40.84475266481049],[-73.92387743417245,40.84474050765098],[-73.91728719351066,40.84510408615947]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK25",NTAName:"Homecrest",Shape_Leng:27514.22388,Shape_Area:29991966.2154},geometry:{type:"Polygon",coordinates:[[[-73.95859278495767,40.610403030935025],[-73.95683001633208,40.60108734857495],[-73.95775745988533,40.600985889105324],[-73.95607720352427,40.59210143244551],[-73.95700330423729,40.592002256235226],[-73.9561931370802,40.587762268954684],[-73.96034953585209,40.58730628607391],[-73.96067984068368,40.59159758262617],[-73.97115101831308,40.590442444533224],[-73.97189684823076,40.59435251069313],[-73.97153324450748,40.59636870874829],[-73.97132951000971,40.5963524307182],[-73.97191080477076,40.59942305913215],[-73.97291116841225,40.599315804203165],[-73.97235152087217,40.60334811886102],[-73.97217742800864,40.604194711537346],[-73.97239735475934,40.60565189064674],[-73.97299434004842,40.60881414180237],[-73.9642964989798,40.60977642617524],[-73.96478112808943,40.61233092216423],[-73.96285974027404,40.61254948646722],[-73.96237947824763,40.6099863745258],[-73.95859278495767,40.610403030935025]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK46",NTAName:"Ocean Parkway South",Shape_Leng:21975.9975567,Shape_Area:17782031.7484},geometry:{type:"Polygon",coordinates:[[[-73.96285974027404,40.61254948646722],[-73.96478112808943,40.61233092216423],[-73.9642964989798,40.60977642617524],[-73.97403097769332,40.60870231015881],[-73.97517176991694,40.61472418588103],[-73.97399319461375,40.61402989424249],[-73.97290326943272,40.61415296838449],[-73.97335879350746,40.6165417152966],[-73.97548097046216,40.61631192464173],[-73.97537335532121,40.615754722382384],[-73.97785009338101,40.61728760629201],[-73.97752301889588,40.61767654076734],[-73.97539380523676,40.62076998723731],[-73.97705352864567,40.621532521807595],[-73.97656583927008,40.621994903193695],[-73.97710959292839,40.62494826019411],[-73.97719665645003,40.62510197855895],[-73.97726150032736,40.62585277281359],[-73.97092126268777,40.626569985505505],[-73.97047171931135,40.62417003048162],[-73.96909724465462,40.62433282513798],[-73.96864510622689,40.621941695814826],[-73.96471983385584,40.6223729607027],[-73.96285974027404,40.61254948646722]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK82",NTAName:"East New York",Shape_Leng:88841.1945844,Shape_Area:117154211.734},geometry:{type:"Polygon",coordinates:[[[-73.86106295016751,40.674342934730134],[-73.86107192499126,40.6740198138945],[-73.86038937918134,40.671268775444425],[-73.85763323108362,40.67165619403801],[-73.85568461221143,40.66386749237292],[-73.85842950857409,40.66345336042925],[-73.8576153718558,40.66011893315379],[-73.85851436393638,40.65989894246857],[-73.86035978206114,40.65964582850958],[-73.86317083340506,40.65827651244626],[-73.86269778299636,40.657618308509775],[-73.86300202201289,40.657488116627256],[-73.86300321556196,40.657264200715595],[-73.86313136112999,40.657212044822906],[-73.86315811040204,40.657087784104405],[-73.86327051711586,40.65696260377676],[-73.86300171715267,40.6566537573702],[-73.86305515690121,40.6564724819031],[-73.86299920948693,40.65635733368674],[-73.86306966718766,40.65633168196826],[-73.86316629901573,40.65640565959204],[-73.86320115439635,40.65634937801665],[-73.86297273529286,40.656002940727724],[-73.86264117343165,40.65566753700766],[-73.86173355547591,40.65529522177399],[-73.86098917354018,40.65520976660258],[-73.86048308196885,40.65465892867756],[-73.85975533673268,40.65410417618973],[-73.85898002979155,40.652675457835485],[-73.85695870291933,40.65058737347172],[-73.85723212115435,40.6502004336362],[-73.85752429374354,40.64999619023134],[-73.85770542077626,40.64874597146724],[-73.85783469350451,40.64830233778425],[-73.85837605251689,40.647274415312644],[-73.85840315346309,40.647003901171175],[-73.8583781570623,40.646597601322306],[-73.85822357653225,40.646068601423956],[-73.85801997096084,40.645692581868516],[-73.85754830556874,40.64506883521884],[-73.85729227599256,40.64453058000428],[-73.85719093948383,40.644107913546954],[-73.85716978298211,40.643678558885966],[-73.857911227213,40.64344218661367],[-73.8589409760209,40.643217036203865],[-73.8610465338884,40.643025680906256],[-73.86201301027852,40.64288704051749],[-73.86289463290366,40.64255067968323],[-73.86331138873145,40.64229912902775],[-73.86379865777612,40.641799577166566],[-73.86509362394409,40.64093967569415],[-73.86531173731103,40.64075119144456],[-73.86670411973778,40.6400217634954],[-73.86609210226024,40.63943387895996],[-73.86598797060661,40.639504411182614],[-73.86535389969117,40.638951293675724],[-73.86536256486444,40.638835690117],[-73.86548637000737,40.63876518247645],[-73.8656324739134,40.6387867636229],[-73.86625535025024,40.63931631406571],[-73.86617093077615,40.639367600067224],[-73.8668152820135,40.63996352716413],[-73.86702994403164,40.63985106851873],[-73.86732291006736,40.63987198395207],[-73.86867282895088,40.6409250792034],[-73.86991239405414,40.643278202994296],[-73.8700170827358,40.64407137240541],[-73.87061492461159,40.64485674138415],[-73.87119172949642,40.645305356312434],[-73.8715717418379,40.6454149618323],[-73.87212202791927,40.64542370386372],[-73.87257043102989,40.64557561185704],[-73.87921658164906,40.65459108377228],[-73.87926863719956,40.65456913073188],[-73.8793321168056,40.654622016849785],[-73.8796386550232,40.654499091804226],[-73.87971979034303,40.65437592977631],[-73.8792412462232,40.653737186431954],[-73.87910837392921,40.65370623553957],[-73.87676193956312,40.65056095449511],[-73.87672192491898,40.65032322196783],[-73.87352462463146,40.645871229068156],[-73.87342337082686,40.6456507035949],[-73.87318593330954,40.64544501336159],[-73.87335638179007,40.645114714537826],[-73.8734434452119,40.64467191424185],[-73.87339469936786,40.64422571768324],[-73.87327031255242,40.64390321434489],[-73.87309815666737,40.643934683541616],[-73.87297320666589,40.643839231064526],[-73.87275635770968,40.643248964655484],[-73.87194880116554,40.64239408453872],[-73.87189439830122,40.6422482367275],[-73.87088107173638,40.64077187075244],[-73.87084503422273,40.64055662018314],[-73.87043578370235,40.64029080738008],[-73.87008544158547,40.63984418086291],[-73.87007958407017,40.63921169401697],[-73.86989583386247,40.638934528919535],[-73.86952435189363,40.63864570191866],[-73.86808857108021,40.63818561428024],[-73.86799709668229,40.638115264707025],[-73.86960972136563,40.637085534608715],[-73.86969549818953,40.63714738961504],[-73.8692084611064,40.63746580926098],[-73.86955902490304,40.63794748432749],[-73.87123896009008,40.63732262176054],[-73.87255337119258,40.63649336507],[-73.87293435010535,40.636364807955324],[-73.87347939154502,40.636285545798785],[-73.8742621949089,40.6365733906181],[-73.8751501417867,40.637049704311025],[-73.87547103730128,40.63727332446765],[-73.87633004507326,40.638060229119624],[-73.87716909731739,40.63865806950343],[-73.87749447978685,40.638781237553104],[-73.87829429281895,40.638839444447555],[-73.8784158941406,40.63891218870152],[-73.87683349023564,40.6421185898394],[-73.87619933032919,40.64325717309284],[-73.87530646431499,40.64465566910213],[-73.87458081075006,40.64561010598652],[-73.87610397950502,40.64621478892468],[-73.8817218805768,40.653753827322234],[-73.88221364854394,40.65451863808508],[-73.89000589190583,40.65114869713108],[-73.89136543587246,40.6523647194469],[-73.89245737415155,40.65371093908051],[-73.89354677139839,40.655202714084254],[-73.89761013308352,40.65345381612116],[-73.8958615493596,40.651880526830745],[-73.9039820055306,40.64662856757711],[-73.90827570665549,40.650498573806814],[-73.90868769478008,40.65072148112202],[-73.909448463794,40.65152159879021],[-73.90740035662827,40.65284399014227],[-73.90784346310059,40.65459153024284],[-73.90317858413405,40.655311633837385],[-73.9026191140187,40.655558110733374],[-73.90118559908711,40.65651455110136],[-73.90064904766776,40.657041558237566],[-73.90039486678833,40.657184205304944],[-73.89612587286426,40.65781466403389],[-73.89616756045214,40.65797845162817],[-73.8818555734476,40.66414998854017],[-73.8833088339066,40.666112004945546],[-73.88810817419629,40.664047412457755],[-73.88990669497633,40.66377828999809],[-73.89069385325422,40.66685223434632],[-73.88976988627573,40.666989914671866],[-73.89087804994608,40.671318087158575],[-73.89271090669764,40.671045828912604],[-73.89367036426613,40.67482177088438],[-73.89930675442255,40.67398204176649],[-73.900046261425,40.67689308953773],[-73.89836229241634,40.67765827642682],[-73.8977565556112,40.67806072105029],[-73.89653676543693,40.67859358116523],[-73.89621773666615,40.67735818427244],[-73.88987439166343,40.678302150448665],[-73.88467046559735,40.679940285178155],[-73.8848925473812,40.680811116190704],[-73.88116730337781,40.68135366316464],[-73.88061377809606,40.67911003249598],[-73.87688955156696,40.68016499699057],[-73.87556707582893,40.68016946469638],[-73.87531627567067,40.68011098364459],[-73.87483539036938,40.67994257017739],[-73.87420866652239,40.67957633963651],[-73.87376075843338,40.67911249738171],[-73.87342767060193,40.67861884734503],[-73.8730484567254,40.678194107436696],[-73.87257015460388,40.6778666100199],[-73.87231018045735,40.67775574736514],[-73.86942312878573,40.676912227565744],[-73.86413333494173,40.6749972523763],[-73.8617640966218,40.67423226060603],[-73.86106295016751,40.674342934730134]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK93",NTAName:"Starrett City",Shape_Leng:17406.1257721,Shape_Area:11597800.9304},geometry:{type:"MultiPolygon",coordinates:[[[[-73.88828531356056,40.646722413276045],[-73.88846787923313,40.64689973405059],[-73.88845986411332,40.64695491517333],[-73.88853549293229,40.64696814919837],[-73.88864137641369,40.64707955331599],[-73.88858247895192,40.6471103114528],[-73.88863572588181,40.647216407859695],[-73.88851637568523,40.64736069152194],[-73.88844461207377,40.64735806327188],[-73.88830364435212,40.6471606153028],[-73.88820050726657,40.64714086952908],[-73.888176393264,40.64680857770321],[-73.88828531356056,40.646722413276045]]],[[[-73.87992598662028,40.651334759896805],[-73.87610397950502,40.64621478892468],[-73.87458081075006,40.64561010598652],[-73.87530646431499,40.64465566910213],[-73.87619933032919,40.64325717309284],[-73.87683349023564,40.6421185898394],[-73.8784158941406,40.63891218870152],[-73.87862163773494,40.63915201939221],[-73.87865676044484,40.639410387012596],[-73.87882000157954,40.63948910566383],[-73.87910673071899,40.63975778379563],[-73.87930954536844,40.640067074223104],[-73.87951106211814,40.640208299219736],[-73.87989404397655,40.64036327915719],[-73.87988927969212,40.64051787710168],[-73.87995416764039,40.64059994323312],[-73.88009536277109,40.64065048649346],[-73.88016359994792,40.64074109827976],[-73.88016780438186,40.640897413528606],[-73.88025625666037,40.64097010903597],[-73.88048386922625,40.64097803454747],[-73.88047801088156,40.641118964553804],[-73.8807362354651,40.64156595747058],[-73.88058841799608,40.64145561785257],[-73.88029248068571,40.64140491573312],[-73.88009708226149,40.641565292818626],[-73.88002616426266,40.641718113295966],[-73.88006714132516,40.64200344612413],[-73.88027886160896,40.64212068627342],[-73.88036531935859,40.64205671467065],[-73.88054136179598,40.64206031425611],[-73.88077996292682,40.64219551868405],[-73.88098961395183,40.642217090875725],[-73.8813930623062,40.64234733997911],[-73.88157221057689,40.6424961477304],[-73.88162899453943,40.64272512205548],[-73.8817531443455,40.642905476481],[-73.88224108165657,40.64345349240905],[-73.8821483256257,40.643743727840565],[-73.88302004817265,40.644179192377656],[-73.883245545282,40.64443758464258],[-73.88341999269007,40.644523815650125],[-73.8836049704785,40.64446141805581],[-73.88369759560312,40.64435198816341],[-73.88387223398924,40.64432869507525],[-73.88399541070562,40.64436793545677],[-73.88432452601292,40.6441022806237],[-73.88480750411128,40.64394630368025],[-73.88557762148993,40.64404094978976],[-73.88600582856225,40.64450289060833],[-73.88600571176018,40.64457125769958],[-73.88673134984877,40.64513193532289],[-73.8872011346562,40.645602171716824],[-73.88743444642438,40.64593668177308],[-73.88736029981217,40.64598718568344],[-73.88738823781264,40.64607864136905],[-73.88763668574438,40.64632545126438],[-73.88766589163491,40.646504924553206],[-73.8876376490732,40.64659437977453],[-73.88772611233225,40.64714302919986],[-73.88756755982119,40.647267371223684],[-73.88751623247262,40.64741516069423],[-73.88764108267345,40.647588411316995],[-73.88764072232715,40.647802390007854],[-73.88777082214226,40.64789199866518],[-73.88806961350411,40.647903961223086],[-73.88815394851167,40.647870974667164],[-73.88843465427948,40.64800741559472],[-73.88863638434101,40.64802449261564],[-73.88878187206542,40.648203152193005],[-73.8888130437335,40.648340702560525],[-73.88924677936025,40.64874565360674],[-73.88953430846723,40.648880222586264],[-73.89006780139052,40.64932363564109],[-73.89021782176403,40.64937584324871],[-73.89033529141226,40.649347769001956],[-73.89013701016974,40.649170412116426],[-73.89034734759761,40.64903360577869],[-73.8905679298857,40.649208632935014],[-73.89125147174478,40.65002559738394],[-73.89000589190583,40.65114869713108],[-73.88221364854394,40.65451863808508],[-73.8817218805768,40.653753827322234],[-73.87992598662028,40.651334759896805]]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK21",NTAName:"Seagate-Coney Island",Shape_Leng:51792.9850399,Shape_Area:38728989.1671},geometry:{type:"Polygon",coordinates:[[[-73.97461091878922,40.5831298756257],[-73.97451787151658,40.581513261571445],[-73.97463376847799,40.579974345606],[-73.98193839612281,40.57919970892142],[-73.9815636739799,40.5769818204974],[-73.98120115154643,40.57556428262341],[-73.97963850353558,40.575536730754294],[-73.9778679890182,40.57543046483555],[-73.97660923005522,40.57530428600183],[-73.97352840324041,40.574804025227756],[-73.97329388531227,40.575265264369925],[-73.97302844431677,40.57605005441051],[-73.97078155975814,40.57578760551265],[-73.9699201480183,40.575582621400045],[-73.96825878817567,40.575045488990824],[-73.96795533369405,40.57501255371083],[-73.96765743523478,40.57504368249039],[-73.9675670729142,40.5748815269491],[-73.96471128859527,40.574782617767994],[-73.96286117998778,40.57498014075894],[-73.95941778288545,40.57517798313919],[-73.95939182247434,40.57391210924978],[-73.9598286491124,40.57392930963567],[-73.96090885959508,40.5738650289466],[-73.9621076955076,40.57371352001852],[-73.96720294103956,40.573326317397424],[-73.9674356785904,40.57320896967146],[-73.9673639008057,40.57304456895218],[-73.9674262847454,40.57298510896922],[-73.96753149753725,40.57319073188202],[-73.96839037828907,40.57315444243748],[-73.9688489394465,40.57305802744503],[-73.96945126268284,40.57285728036333],[-73.96921198018035,40.57233537642363],[-73.96924621215567,40.57230407565452],[-73.96955895151739,40.57280858046071],[-73.96996110267636,40.57286002458763],[-73.97085363140283,40.57277051527999],[-73.97132989626341,40.57264381038403],[-73.97135044587534,40.57259945904011],[-73.97137785791334,40.572510753098854],[-73.97114248794522,40.572050631514564],[-73.97113515219739,40.57196015163341],[-73.97118306355718,40.57194189908415],[-73.97151790920287,40.57258168139923],[-73.9716070645239,40.57262822391982],[-73.97249673747082,40.572576256747396],[-73.97314693344359,40.572414639995245],[-73.9733450222981,40.5723212140061],[-73.97323268078631,40.571905865966954],[-73.97324990115163,40.57162668560641],[-73.97332515756268,40.5716762781272],[-73.97344805325683,40.57227210696933],[-73.9737320997121,40.572286924591374],[-73.97484762762471,40.572164541765986],[-73.97547081968695,40.57196900381704],[-73.97540564094218,40.571421040640494],[-73.97548432734388,40.571454977344025],[-73.97551718820384,40.57169431528035],[-73.97567918029266,40.571955984497315],[-73.9759255209153,40.572018657437525],[-73.97684256248002,40.571948397930115],[-73.9773011009273,40.571862385946275],[-73.97766384522234,40.57172938779895],[-73.97756820091207,40.5712466666591],[-73.97767087589733,40.571171020079184],[-73.97807599798224,40.57122957012867],[-73.97771533072489,40.571251913842204],[-73.9777512794976,40.57168028978255],[-73.9778079653709,40.57175620060907],[-73.97799924494035,40.57183047677189],[-73.97845486511473,40.57189220424457],[-73.97910001556895,40.57184069801797],[-73.97945681046649,40.57174276846093],[-73.97984694469406,40.571539319610125],[-73.97980592477668,40.57140363454849],[-73.97972382291374,40.571346217412454],[-73.9794150136582,40.571297323869025],[-73.97944328367619,40.57122092594801],[-73.9797546474568,40.57124968258198],[-73.97995988926664,40.5714401899979],[-73.98000771572245,40.57169850918596],[-73.98032592160116,40.57173770221845],[-73.98104449475359,40.57168042036598],[-73.98184180651346,40.57146920355467],[-73.98204075852516,40.57148037052246],[-73.98199239198993,40.571351813309306],[-73.9815989112345,40.571307395484226],[-73.98154417427384,40.571273466484385],[-73.98157155423429,40.5712499884248],[-73.98194794042385,40.571237002157474],[-73.98209504346237,40.57134661147844],[-73.98217710625188,40.57156057845438],[-73.98225580318922,40.571568418289736],[-73.98282723201831,40.571542413574534],[-73.98367270153263,40.57140705768737],[-73.98340440737677,40.57016554451074],[-73.98305809245096,40.570209656268474],[-73.98304328883725,40.570145860485354],[-73.9833916850256,40.57009468451696],[-73.9832699667533,40.56954189385369],[-73.98336058039285,40.56952999398412],[-73.9834852186614,40.57008901506274],[-73.98382125394902,40.57004578948173],[-73.9838394948926,40.57011246715791],[-73.98348842146697,40.57015602954389],[-73.98375790382742,40.57139622725082],[-73.98645087654774,40.571148908407835],[-73.98646799918625,40.57107846272519],[-73.98654668594101,40.571133264865786],[-73.98803716744453,40.57098510826618],[-73.98862025415552,40.570896051314065],[-73.98857772038872,40.57069790950493],[-73.98866476478172,40.57072906724011],[-73.9887214578292,40.57088369208254],[-73.9902626752744,40.570708340117214],[-73.99077310389833,40.57059942183784],[-73.99071781592745,40.57025959514851],[-73.99079264766942,40.570248648755516],[-73.99086374684873,40.57060201624236],[-73.99119337523616,40.57061187496819],[-73.99272854831163,40.570433788037356],[-73.99296923014852,40.57036673204225],[-73.99298098138074,40.570196773309185],[-73.99305289944269,40.570339025558816],[-73.99315741886738,40.570379789438825],[-73.994019665383,40.570411148678836],[-73.99493763229947,40.57035467451236],[-73.99513854436803,40.570314661206666],[-73.9951351407019,40.57006678660675],[-73.99518726085734,40.570021877633096],[-73.99529301203259,40.5703212827138],[-73.99576469677102,40.570392961357264],[-73.99719493825842,40.570348649043794],[-73.99735575750897,40.570278204147904],[-73.99736944948508,40.57013730754287],[-73.9974196622486,40.57014085444584],[-73.9974481404858,40.57028603439304],[-73.99766712135201,40.57037475116614],[-73.99846777900159,40.570497396972954],[-73.99961402575245,40.57046609660145],[-73.99965850686432,40.570382602502754],[-73.99973291179316,40.570411511105064],[-73.99974852222452,40.57049579695697],[-74.00106438667258,40.57040154143529],[-74.00201167053905,40.570208758524096],[-74.00205780997524,40.57015246189657],[-74.00198396888368,40.5695965413212],[-74.00208547639734,40.569585983984915],[-74.00222854386304,40.570609862768734],[-74.0024870773771,40.57173838887243],[-74.00303186157024,40.57218559449793],[-74.00336282592022,40.57228096309753],[-74.00373431099425,40.57228684416896],[-74.00383923692814,40.57235922508471],[-74.00396101386315,40.57255240673044],[-74.00440185902477,40.57279789258808],[-74.00666915632596,40.573393648375315],[-74.00870865730197,40.57375981858764],[-74.01007410785427,40.573830809517624],[-74.01115668795177,40.57416676185873],[-74.0120154019113,40.5748850524742],[-74.01232183520675,40.575652682365046],[-74.01245951831028,40.57668177066738],[-74.01279721934532,40.577489237133165],[-74.01302223018388,40.57780445963339],[-74.01303148001794,40.57791001271717],[-74.01274982470385,40.57855731173521],[-74.01235035995137,40.57922182065376],[-74.01176124297544,40.579854082025285],[-74.01117372305299,40.580283978751716],[-74.01054358463756,40.58061448391003],[-74.00989763844815,40.58075265130534],[-74.00944620589523,40.58092279540355],[-74.00858199195919,40.58142196323052],[-74.00795830364457,40.58167705003026],[-74.00745366008165,40.58180352284789],[-74.00604734301736,40.58198365303577],[-74.00398023550511,40.581721295663904],[-74.00294374157806,40.581432835521],[-74.00220582876804,40.58136588602036],[-74.00124032699597,40.5814262648733],[-74.0005074241443,40.58127580078199],[-74.00001178264178,40.581251835982506],[-73.99871927778473,40.58148642801472],[-73.99821946502958,40.58147437723662],[-73.99807180871056,40.58141850757139],[-73.99793019304498,40.58123817380713],[-73.99789742220719,40.58108197280596],[-73.99799147411396,40.58076572088672],[-73.99792055753943,40.58064984871227],[-73.99780862470462,40.580595800869084],[-73.99182912790276,40.579247080928766],[-73.99140428674465,40.579240358190276],[-73.99107141296977,40.579331445319625],[-73.99036206466559,40.57942458012047],[-73.98957956138604,40.57919294169365],[-73.98944797186194,40.57905581569142],[-73.9889909355634,40.57883509996881],[-73.98842833769429,40.57881584261947],[-73.98814208356328,40.57886596371378],[-73.98760837934651,40.57903313614559],[-73.98761631521336,40.57906416865269],[-73.98786647687939,40.57902635110784],[-73.98745151824927,40.57913151319834],[-73.9875865395821,40.57904070176423],[-73.98739064388405,40.57908698306366],[-73.98669539997073,40.57981490813253],[-73.98702138511788,40.58002276487519],[-73.98616526744591,40.58095022879235],[-73.98588567394852,40.58114442456474],[-73.9860450991624,40.58172068464897],[-73.98694506929324,40.58113642180797],[-73.98734721382404,40.58060805953264],[-73.98757400228173,40.5800314512274],[-73.9880097337676,40.579670687155726],[-73.98811730541615,40.57967968595255],[-73.9889035392382,40.58000867868466],[-73.98913636201411,40.580214877927254],[-73.98954195150284,40.580415365221015],[-73.9896996938388,40.58042110730339],[-73.98995504921764,40.58066167003396],[-73.98971762454215,40.58083822657235],[-73.98928725016698,40.58195758291012],[-73.98829948294924,40.58346674665815],[-73.98654457042264,40.58365859131644],[-73.98710120319453,40.58464459176255],[-73.98627573612436,40.58447998143249],[-73.98548158019865,40.584519677417425],[-73.98492731036222,40.584595952702195],[-73.98482192835374,40.58416852327664],[-73.9817545207617,40.583583763728086],[-73.98044790936065,40.58341064288145],[-73.98006567975152,40.58331786374598],[-73.97742525335677,40.582906593171586],[-73.97461091878922,40.5831298756257]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK23",NTAName:"West Brighton",Shape_Leng:14120.4207832,Shape_Area:8748036.47375},geometry:{type:"Polygon",coordinates:[[[-73.96888995877943,40.5752612389941],[-73.9699201480183,40.575582621400045],[-73.97078155975814,40.57578760551265],[-73.97302844431677,40.57605005441051],[-73.97329388531227,40.575265264369925],[-73.97352840324041,40.574804025227756],[-73.97660923005522,40.57530428600183],[-73.9778679890182,40.57543046483555],[-73.97963850353558,40.575536730754294],[-73.98120115154643,40.57556428262341],[-73.9815636739799,40.5769818204974],[-73.98193839612281,40.57919970892142],[-73.97463376847799,40.579974345606],[-73.97451787151658,40.581513261571445],[-73.97461091878922,40.5831298756257],[-73.97045373474081,40.58389227978702],[-73.96899979294861,40.58406350393265],[-73.96781584964693,40.58453905067623],[-73.96661531461977,40.584571036935834],[-73.96868119543274,40.575630882762674],[-73.96888995877943,40.5752612389941]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX01",NTAName:"Claremont-Bathgate",Shape_Leng:29972.7760275,Shape_Area:16451627.1492},geometry:{type:"Polygon",coordinates:[[[-73.89038954009501,40.85468905858774],[-73.8921668740323,40.85276946239067],[-73.89307140895602,40.85324998704774],[-73.89431774134994,40.851891311471284],[-73.89478764928735,40.85108166759567],[-73.89407259042656,40.85071318966213],[-73.89494628000865,40.84910485302793],[-73.89617712976752,40.84665832107193],[-73.8953584903286,40.84651803163372],[-73.89384986021055,40.84647439404506],[-73.89337309855703,40.84640119377835],[-73.89290102347,40.84626833032245],[-73.89398467522278,40.84470395891284],[-73.89537836114475,40.842938779458514],[-73.89591487098836,40.843142919119195],[-73.89666161733358,40.84352460706789],[-73.90122534987549,40.835499911237356],[-73.90134101172009,40.835441324410574],[-73.90553116785017,40.829104132590366],[-73.91049010681661,40.83073737253013],[-73.90740200530821,40.83623228341852],[-73.90597940441727,40.83850519580256],[-73.90538358007394,40.839768983469476],[-73.90560739454266,40.83984361930201],[-73.9051920801102,40.840707581824134],[-73.90483121970139,40.84480034209291],[-73.9013440457415,40.84442875076973],[-73.89560883346181,40.85457037009787],[-73.89477596069362,40.85592952563453],[-73.89174395026582,40.86017714781636],[-73.89115375612214,40.8609136161673],[-73.89106280679233,40.86152941211723],[-73.89027555570782,40.86110907335059],[-73.89112568830669,40.86006182500971],[-73.89108676574538,40.85659725704755],[-73.89044259283281,40.85504635186544],[-73.89038954009501,40.85468905858774]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX35",NTAName:"Morrisania-Melrose",Shape_Leng:27740.8456596,Shape_Area:16891753.524},geometry:{type:"Polygon",coordinates:[[[-73.89696589084858,40.83434214589525],[-73.89630199965588,40.8335432179973],[-73.8964729620909,40.83304756810601],[-73.8969001787522,40.83103333642682],[-73.8971722103537,40.83036883289549],[-73.89469205144239,40.8306190943945],[-73.89336041819084,40.83015253058825],[-73.88991106473179,40.830124192291144],[-73.88761307869298,40.82933741954033],[-73.88601262712382,40.828238531426095],[-73.88609624167161,40.827655777357926],[-73.88789510901421,40.82674318529653],[-73.88997942487836,40.826809992740756],[-73.89293226101063,40.826787036532345],[-73.89483522924053,40.8262468412122],[-73.89515277859984,40.827834290178146],[-73.8951102086082,40.82803689895232],[-73.8954852276467,40.828248540882335],[-73.89979756756765,40.827684354294504],[-73.90093510700856,40.82792810175718],[-73.90164895560513,40.826256978347054],[-73.90050540470314,40.826007622430005],[-73.9019875859743,40.8224404231056],[-73.90061141080827,40.82210880792951],[-73.90129277627032,40.82047544261417],[-73.90565890247812,40.8215565326344],[-73.90990894137934,40.82255110811737],[-73.91159391801868,40.822126774511915],[-73.91181615756736,40.82203502241245],[-73.91189154921669,40.822141481777294],[-73.91621588627122,40.82346793022586],[-73.91587735817282,40.824103731527224],[-73.9167740051971,40.824387087373175],[-73.91608782791741,40.82483785183081],[-73.91661368442395,40.82499230850738],[-73.9154110823548,40.82577390912317],[-73.91475121064767,40.82520047343368],[-73.9135119167608,40.82480494441772],[-73.91316674437074,40.82545645531231],[-73.91130974473398,40.824848558895035],[-73.91179361950756,40.82642815560147],[-73.91169430238563,40.8277587158094],[-73.91030770386979,40.82877248524321],[-73.90948178359358,40.829592118977054],[-73.90895990309997,40.830226233044044],[-73.90553116785017,40.829104132590366],[-73.90134101172009,40.835441324410574],[-73.90122534987549,40.835499911237356],[-73.90121578431375,40.83541014102133],[-73.89696589084858,40.83434214589525]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX17",NTAName:"East Tremont",Shape_Leng:29437.68809,Shape_Area:19258749.3604},geometry:{type:"Polygon",coordinates:[[[-73.88311982503816,40.84822109187666],[-73.88284445574813,40.847817226451625],[-73.8791940883316,40.84532173372957],[-73.8773390723824,40.84399175505791],[-73.87817546958671,40.842617696045004],[-73.87679872059405,40.84229978727668],[-73.87459175370783,40.84152064753862],[-73.8745684495063,40.841642720121555],[-73.873992954548,40.84256150561677],[-73.87280708205994,40.84342426412389],[-73.87190185033853,40.84372143348884],[-73.87109207865386,40.84432478083503],[-73.86944230449559,40.84724418026595],[-73.86889243340889,40.84811232162388],[-73.86941402690951,40.8487880246291],[-73.86920944569867,40.849238372872456],[-73.86837388931615,40.84896959824623],[-73.86785992993865,40.848864931388306],[-73.86835465896613,40.847080233386365],[-73.86892652693226,40.84688174060972],[-73.86875394759662,40.84658436432606],[-73.86866193819922,40.8462601539419],[-73.86865874027215,40.84592845277968],[-73.86874186562083,40.84560972858163],[-73.86863721744793,40.84530984326778],[-73.86804200391842,40.844813839306894],[-73.86889258777539,40.84440965879851],[-73.87099518067322,40.84311139204372],[-73.87229921089158,40.84157999573897],[-73.87359713633923,40.83979855543337],[-73.87841924979887,40.83999459045812],[-73.88006199559798,40.84016223473301],[-73.8802715262752,40.8398962395394],[-73.88036583763088,40.8395405069232],[-73.8805473543658,40.83919811117515],[-73.8808089531387,40.838887035925204],[-73.8811355024852,40.838622141501126],[-73.88154924659426,40.838182756683956],[-73.88200384080815,40.83744378232715],[-73.8822583123035,40.83803121818355],[-73.88246404796882,40.83824724090294],[-73.8828536509753,40.83849533547246],[-73.8827476985781,40.83859234176601],[-73.88412724483933,40.83935591930621],[-73.88464898130619,40.839174632601036],[-73.88618432100422,40.84010504497344],[-73.88659802345121,40.83927905010847],[-73.88813752159339,40.83986200238474],[-73.88869040830879,40.83915802646798],[-73.88941724869116,40.83942273388278],[-73.89537836114475,40.842938779458514],[-73.89398467522278,40.84470395891284],[-73.89290102347,40.84626833032245],[-73.89337309855703,40.84640119377835],[-73.89384986021055,40.84647439404506],[-73.8953584903286,40.84651803163372],[-73.89617712976752,40.84665832107193],[-73.89494628000865,40.84910485302793],[-73.89407259042656,40.85071318966213],[-73.89478764928735,40.85108166759567],[-73.89431774134994,40.851891311471284],[-73.89307140895602,40.85324998704774],[-73.8921668740323,40.85276946239067],[-73.89038954009501,40.85468905858774],[-73.88960978077955,40.853621880548715],[-73.88963328302314,40.85317381843756],[-73.88993961562204,40.8525907629616],[-73.88987871399155,40.852070221026686],[-73.88895256316076,40.85144078077297],[-73.88823974096294,40.85103536641144],[-73.88755006006639,40.85091075406269],[-73.88728512356023,40.85082090055792],[-73.88322877667612,40.848345878337575],[-73.88311982503816,40.84822109187666]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK17",NTAName:"Sheepshead Bay-Gerritsen Beach-Manhattan Beach",Shape_Leng:91059.1161226,Shape_Area:63343705.968},geometry:{type:"Polygon",coordinates:[[[-73.91809256480836,40.586570335004716],[-73.91812533369662,40.58650737449913],[-73.91805568651229,40.58643654567673],[-73.91811489322187,40.58645405366693],[-73.91817590459897,40.58639509326684],[-73.91826250403756,40.58640428576093],[-73.9185533871683,40.5862999340217],[-73.91919033106555,40.585962493142],[-73.91961116354072,40.58616907889423],[-73.91997613293833,40.586059235165],[-73.92013922923807,40.5860569452635],[-73.92018491195523,40.5859906098872],[-73.92004691646778,40.58598860025675],[-73.92017489750637,40.585972430677764],[-73.92017117347487,40.58593990878496],[-73.9202526896652,40.58596291960384],[-73.92020248303375,40.58598392644289],[-73.92021874083173,40.58602697688117],[-73.92040498231101,40.58608977964567],[-73.92055080816571,40.586009799326774],[-73.92082156876077,40.585995773200665],[-73.92086842926197,40.585921080321036],[-73.920728374935,40.58577797077201],[-73.9206698086596,40.58577362651961],[-73.92073901660137,40.58573009669353],[-73.92089145806905,40.585903061300435],[-73.92090217579442,40.58583040647378],[-73.92098905699073,40.585769048620705],[-73.92090603836385,40.5855905815336],[-73.92101218332024,40.585753595858655],[-73.92147080915781,40.585746195162464],[-73.92176261421987,40.585799705445744],[-73.9217814875845,40.58573348620477],[-73.92183560839713,40.58577657592138],[-73.92189955187945,40.58569317567391],[-73.92194817438855,40.58571175204424],[-73.92184819107773,40.58583842143636],[-73.92211851289862,40.585810514153025],[-73.92235337377299,40.58602393656234],[-73.92271691581242,40.58599676161759],[-73.9229640982642,40.585894456561164],[-73.92334118079799,40.585995220555446],[-73.92353515890929,40.58597772336954],[-73.923698330456,40.58594159924938],[-73.92389501884088,40.5858007138123],[-73.92404262147168,40.585899717842175],[-73.92402182075426,40.58577353533256],[-73.92429576922031,40.58568275890234],[-73.92467945283774,40.585637746453415],[-73.92475709865612,40.58563257509966],[-73.92486051151299,40.585713398157296],[-73.92499331426544,40.58571284597128],[-73.92520361514246,40.58580627115542],[-73.92522254459416,40.58587904435365],[-73.92546644505279,40.586092369107185],[-73.92541835753478,40.58619651406284],[-73.92554277632243,40.586193290070675],[-73.92570847219709,40.586402684622115],[-73.92570600948356,40.58646749161634],[-73.92579061919326,40.58645844726842],[-73.92600279804189,40.58663093686217],[-73.92598398427616,40.58668024004197],[-73.92607581839887,40.58667972989755],[-73.92630373489708,40.58690211696714],[-73.92637018637035,40.58687142093863],[-73.92657322890147,40.58704912584208],[-73.92649781899088,40.58709608235708],[-73.92673977671531,40.58718850671604],[-73.92684232801957,40.58728968995418],[-73.92677874497535,40.58733038506441],[-73.92709462919936,40.58756045703374],[-73.92712785833069,40.58754022531675],[-73.926967338343,40.587353795865695],[-73.92718761078227,40.58755950327776],[-73.92709935625724,40.587591037162994],[-73.92720774188903,40.58772275918674],[-73.9276500699954,40.58746669328765],[-73.92768287747323,40.58736160013404],[-73.92766599062529,40.58747501343935],[-73.92724750521373,40.58775327471979],[-73.92735680928894,40.588022176276155],[-73.92794598351131,40.58765882000504],[-73.92787426020536,40.587588158853784],[-73.92791625741164,40.58754873538682],[-73.92807906817859,40.58770246052319],[-73.92803041495195,40.58773148434651],[-73.92795555292412,40.58766660355756],[-73.9273693575354,40.58804459880296],[-73.9274382369153,40.58814789135189],[-73.92740452311666,40.588206445198104],[-73.92750396203982,40.58822136013028],[-73.92790175806915,40.58795340928034],[-73.92802185276423,40.58806875635087],[-73.92792318048315,40.58799618727679],[-73.92745467790992,40.58829956407404],[-73.92748612581521,40.588320574518626],[-73.92743489681928,40.588369014793614],[-73.9275503597234,40.58851353131807],[-73.92763372065507,40.58845892001767],[-73.92776143639114,40.5886606097588],[-73.92395294850094,40.59113985052504],[-73.92419963392659,40.591364280188685],[-73.92460129938566,40.591199325003124],[-73.92475692143404,40.59104452971667],[-73.92588801019409,40.59035203455991],[-73.92815905123096,40.58882524958998],[-73.92836271266806,40.588969016091845],[-73.92841885809034,40.58893403509814],[-73.92821616994858,40.58878391290387],[-73.92835866296338,40.588865431329374],[-73.9286734493379,40.588635164878106],[-73.92863061481563,40.58857263642104],[-73.92875761553675,40.58867429700576],[-73.92869567082212,40.58863843410075],[-73.92839036790626,40.588863457828126],[-73.92846910760316,40.58893255510824],[-73.92837745971515,40.58898132361602],[-73.92844090493763,40.58903042713682],[-73.92862026499199,40.58912043629617],[-73.92891351845392,40.588919632774434],[-73.92888139684432,40.588853719575326],[-73.92895102927305,40.588909642409114],[-73.92863158702704,40.58912636163893],[-73.92873426467304,40.5891471651677],[-73.9291344038264,40.58887924168194],[-73.92925835217413,40.58893237343725],[-73.92913312005703,40.58889660396921],[-73.92884820698332,40.589091286834794],[-73.92884055219525,40.589150125109526],[-73.92875703499419,40.589152966924985],[-73.92887844895981,40.5892099567237],[-73.92884679157359,40.58923212387626],[-73.92906310125784,40.58929592380374],[-73.9290841730541,40.589261065908374],[-73.92964524527953,40.589361846343536],[-73.9299818786619,40.589515997878614],[-73.93001399131906,40.58946199760005],[-73.92975094353108,40.589320355186516],[-73.9293612835447,40.589250661977275],[-73.92937312241645,40.58922365916533],[-73.92976615773412,40.58929206844246],[-73.93003427450552,40.5894259965007],[-73.93057705718257,40.589890641203155],[-73.9303899033018,40.58977348426492],[-73.93034074312585,40.58980768423836],[-73.93022846683556,40.589688136025046],[-73.93027124781214,40.58965316259846],[-73.93016235501888,40.589563697105724],[-73.93010325988766,40.58960610507141],[-73.93037543247335,40.589940459710405],[-73.93029788091675,40.590035167629964],[-73.93056682228962,40.59001694360612],[-73.93058940447365,40.589952591132516],[-73.93062849364426,40.59025299033776],[-73.93058909225776,40.59025296654359],[-73.93056960951903,40.590042691535906],[-73.93046768917154,40.59006137258802],[-73.93052888333258,40.5903079886775],[-73.93065213846437,40.590290979492266],[-73.93067434355463,40.590590721315145],[-73.93062757826266,40.590590693091265],[-73.93063131413365,40.59032925809999],[-73.93052507228703,40.59033311292719],[-73.93047135080224,40.59085960119699],[-73.93049905444732,40.59092995632134],[-73.9306234418065,40.59091869427576],[-73.93064749948628,40.59061968316919],[-73.93064106766502,40.59094456641972],[-73.93049384149184,40.590945798260336],[-73.93046013661932,40.591001218518294],[-73.93069641592122,40.59101854139979],[-73.93045632075865,40.59102541699407],[-73.93044960172925,40.59107969192913],[-73.93072578795753,40.59108986026552],[-73.93050592282735,40.59109385073794],[-73.93037197784955,40.5912114008763],[-73.93042667169678,40.59124771583196],[-73.9306044430696,40.591186176220965],[-73.93060066906233,40.591484582041666],[-73.9305642842938,40.591495123287935],[-73.93057495301069,40.59122973111135],[-73.93046536765873,40.59127340709352],[-73.93049945249085,40.59129603764017],[-73.93040541662205,40.59173094214293],[-73.9304618571347,40.591720848494454],[-73.93057117755008,40.59152813743164],[-73.93060580656639,40.59154136200585],[-73.93046529420518,40.591747258891715],[-73.9304249356843,40.59224634183089],[-73.93043758093522,40.59174724211834],[-73.93039905602139,40.591755596428975],[-73.93030161993057,40.592299178721476],[-73.93036426041914,40.59229908703107],[-73.93038850696503,40.592252239751886],[-73.930364436033,40.592480093513544],[-73.93036221633992,40.59231177060942],[-73.9303010995104,40.59230803685338],[-73.93028656348363,40.59244557546535],[-73.9302044188529,40.59237817596906],[-73.930176166342,40.59240622097038],[-73.93035364524505,40.592554950294414],[-73.93026510861388,40.592619404932535],[-73.93032634060394,40.59255368983694],[-73.93018970658281,40.59245411828877],[-73.93002301026205,40.592683046384785],[-73.9301159324728,40.59272627808454],[-73.93010191656565,40.59276076618967],[-73.93021251489367,40.592678370292404],[-73.93010658211621,40.59280495538483],[-73.92999008815512,40.59272828588202],[-73.92991250222376,40.592853394873416],[-73.93007018426367,40.592902776553736],[-73.93009899390043,40.59287244045272],[-73.93005244539404,40.59300024352072],[-73.93006353595128,40.59291716846839],[-73.92989066964367,40.59287079136806],[-73.92971282036602,40.59312004824803],[-73.92998120880391,40.59315888690717],[-73.93004238419589,40.59306087931804],[-73.92995591843642,40.593308572326194],[-73.9299759362929,40.59317381541344],[-73.92974147322653,40.593143922445535],[-73.92982317336849,40.5933726955988],[-73.930039224626,40.59334843088419],[-73.92980068404538,40.59339144145808],[-73.92978081742058,40.593436741471585],[-73.92985305834155,40.59352507922809],[-73.92986032030684,40.5937821012393],[-73.93001650952186,40.59409453505695],[-73.93021519470315,40.59397294418451],[-73.93008159453139,40.59359546287123],[-73.93022756280041,40.59393062089685],[-73.93045934564692,40.59381449724217],[-73.93052488727801,40.59388024070118],[-73.93035968875603,40.59397594132358],[-73.93054679070711,40.59419930408553],[-73.93029934470322,40.593938054510616],[-73.93004011947693,40.594104887330424],[-73.9304324606368,40.594402674949485],[-73.93061349687783,40.594476810566896],[-73.93076122905494,40.594381900521164],[-73.93062305618629,40.59420449765947],[-73.93083446502467,40.59441357130458],[-73.9307683990762,40.59439212211684],[-73.93066303510112,40.59446395093281],[-73.93076901026961,40.59449301481563],[-73.9308320658745,40.594430655669164],[-73.93093516114608,40.594459949860976],[-73.9312630157238,40.5942441861186],[-73.9312205600484,40.5941833172631],[-73.9313251214607,40.59427625618999],[-73.93127650555755,40.59425676491412],[-73.93095463426401,40.59446594520617],[-73.93136684760877,40.59452917209408],[-73.93158758229927,40.594495062910866],[-73.9316156203621,40.594365963109446],[-73.93173994773721,40.5943708679028],[-73.93176387334083,40.59428409876243],[-73.93175808101286,40.594384328258286],[-73.9316317758916,40.59437662255863],[-73.93161313737265,40.59450351791178],[-73.93136806343371,40.59454645078467],[-73.93084626727283,40.59445152529717],[-73.93078131379619,40.594498955276755],[-73.93113820375058,40.59464019048005],[-73.93169652225825,40.594709929228614],[-73.93193364983979,40.59469240430235],[-73.93230826395404,40.594916340487096],[-73.9324521768845,40.594914967665716],[-73.93237188331082,40.594802363889926],[-73.93256343839334,40.59476347229698],[-73.93243762903224,40.59484363603977],[-73.93247702888682,40.59491609667593],[-73.93267147327063,40.59491175331406],[-73.9328265491882,40.594803744969504],[-73.93267653975751,40.59423641796758],[-73.93235089999561,40.59386846912425],[-73.93175890743086,40.59283010489918],[-73.93167410829318,40.592853950218874],[-73.93176073534399,40.59303709413346],[-73.9317109079429,40.59305030052048],[-73.93153495293326,40.59269283051889],[-73.93162526000417,40.59282794876041],[-73.93174087511983,40.59279439369439],[-73.93156462560292,40.59255174077164],[-73.93143675613805,40.59216713451809],[-73.93130932293165,40.59216058122609],[-73.93113956123494,40.59200892874786],[-73.93136406792843,40.59192837307218],[-73.93139997986387,40.59180489056213],[-73.93100989343158,40.591931042480915],[-73.93099465973226,40.59181819898606],[-73.93115360238347,40.591855069690624],[-73.93135301020665,40.59179119396225],[-73.93130130855013,40.59169297061032],[-73.93142565439744,40.591604184147364],[-73.9310704045976,40.59172881226954],[-73.9310760215981,40.59159759276773],[-73.93107702484347,40.59168869665342],[-73.93123057108953,40.59164198313342],[-73.93130541636036,40.591360358668304],[-73.93124592494819,40.59163697699582],[-73.93142252716036,40.59158857039088],[-73.93142232253692,40.59150663469153],[-73.9314929196836,40.591481039286975],[-73.93154334733107,40.59135047118339],[-73.93148084945854,40.59135294100976],[-73.9314665489463,40.59139890185896],[-73.93143272420816,40.591239241307946],[-73.93147647503525,40.59134207228152],[-73.93154664980308,40.591337935423425],[-73.9315593944162,40.59129296407076],[-73.93155272211989,40.591199797036374],[-73.93142883104387,40.591136381001725],[-73.93141600294896,40.590609105922525],[-73.931341259167,40.59061546325257],[-73.93113301959811,40.58954611892402],[-73.93121294858955,40.58953130811926],[-73.93109178164583,40.5893265655721],[-73.93088880073574,40.58920734017372],[-73.93070488595929,40.58894206677704],[-73.93068568059813,40.58882195422679],[-73.9306243872196,40.58884907156895],[-73.93056889562718,40.588778436819354],[-73.93009138213294,40.58898886237853],[-73.93007004763594,40.588954093083736],[-73.93058602090876,40.588751292833024],[-73.93053444194162,40.58867959008447],[-73.93065021927524,40.58866986977071],[-73.9306353232422,40.588623580120164],[-73.93054733435122,40.588628541291364],[-73.9303996759751,40.58846552041526],[-73.9297441078087,40.58864107922705],[-73.92972846380187,40.58861391582973],[-73.93038545256267,40.58844161607884],[-73.93036150933797,40.58827899571408],[-73.93026338157473,40.588229816921846],[-73.92970255020445,40.58760735547414],[-73.92972232646731,40.587560082903785],[-73.93134917824064,40.58732816722948],[-73.93136556192977,40.58716922512893],[-73.93125191333051,40.58684982521464],[-73.93118073044306,40.58679873371339],[-73.93104528754786,40.586814160037136],[-73.93105809234719,40.58690727637301],[-73.93081445017802,40.58692342249568],[-73.93080593035226,40.58689626302754],[-73.92964322225112,40.587031326968486],[-73.93082019774086,40.58687563400688],[-73.93082871260373,40.586908224439085],[-73.93091135186279,40.58690284319079],[-73.93101679851637,40.58688552821914],[-73.93101218068472,40.586830487683045],[-73.92966894690672,40.58695531167727],[-73.92956343312866,40.58703562262389],[-73.92919437666497,40.5870875321144],[-73.92857394002446,40.587061501869215],[-73.92829674954027,40.58691795605493],[-73.92808232971643,40.58669769343502],[-73.92811957884432,40.58632914969696],[-73.92803894403414,40.586323829754036],[-73.92811039892587,40.58629489156008],[-73.92814969379573,40.58617810726031],[-73.92791933785847,40.586135806046094],[-73.92792514440914,40.58609365392655],[-73.92816473860942,40.58611400349511],[-73.92817273929957,40.58617285219886],[-73.92827672497614,40.586106943570066],[-73.92815700695617,40.585864523066064],[-73.92785999074837,40.58591742318676],[-73.92774311153148,40.58605006520932],[-73.92736955785888,40.586006585316326],[-73.92733683471793,40.5860403844605],[-73.92753271376789,40.58625944180858],[-73.927586418299,40.586254135332325],[-73.92759559857465,40.58640009709843],[-73.92751621929689,40.58639826671498],[-73.92751168880422,40.58627010754124],[-73.92728079727048,40.58604390900851],[-73.92737247727493,40.5859592043135],[-73.9273043382388,40.585865928419864],[-73.92676297506532,40.585600371980576],[-73.9266627295575,40.585466812383146],[-73.92638041946992,40.585295756348145],[-73.9263056364223,40.585361566237225],[-73.92660195912511,40.585529071239215],[-73.92654820963327,40.58557531538758],[-73.92549354358309,40.585019292003146],[-73.92552860874578,40.58497837657266],[-73.92627529542237,40.58535264744198],[-73.92634542074774,40.58527615425053],[-73.9258333591689,40.58495307722125],[-73.9267829272558,40.58486143783675],[-73.92712081850193,40.58487935767083],[-73.92840477170031,40.585262066841345],[-73.92858912022155,40.585207259721784],[-73.93139947576307,40.58607989549122],[-73.93126945000861,40.58543639341877],[-73.93019077880875,40.58508559303941],[-73.93009616234016,40.58450207623203],[-73.93107641275587,40.58437967553106],[-73.93106383718822,40.5843184676397],[-73.93204244970433,40.58423396007777],[-73.93186345494276,40.58308286125237],[-73.93197721216323,40.58311054203613],[-73.93192811186755,40.58286976893524],[-73.93237695742825,40.5829185099781],[-73.93237196888707,40.58296138469916],[-73.93201379961152,40.58292598174487],[-73.93201839411536,40.583111124618526],[-73.93259877057642,40.582919267411775],[-73.93304047366911,40.582941455495074],[-73.93349145637734,40.58305871726026],[-73.93348952833723,40.58296458804385],[-73.93420971487016,40.58297979839083],[-73.93420772865389,40.583094258737994],[-73.93437970209233,40.58313903367404],[-73.93455992902948,40.5831654131263],[-73.93456057101982,40.58302017383224],[-73.93528194372155,40.58309697687025],[-73.93527611246901,40.58324291318131],[-73.93569071639767,40.583275093189116],[-73.93571933875555,40.58315269979281],[-73.93567676468075,40.583153530701026],[-73.93567353145987,40.58301942441252],[-73.93582439209857,40.58302111555166],[-73.93576657211088,40.58327750984968],[-73.93613233585454,40.58331447408963],[-73.93625253184905,40.58324718862198],[-73.93628723189404,40.5830009035583],[-73.93612802211177,40.582979364522004],[-73.93609824969622,40.58301163893403],[-73.93609668691359,40.582948745832866],[-73.93656607095066,40.58295764878679],[-73.93656436830716,40.58298694422468],[-73.93630031272684,40.58300295567584],[-73.93631716195456,40.58317905120146],[-73.93653912847093,40.58316362091794],[-73.93657592440783,40.58324050558995],[-73.93697427463809,40.583230325908694],[-73.93698767897004,40.583016272171555],[-73.93663307422507,40.582972211904064],[-73.93705921677471,40.58297798232012],[-73.9370529045103,40.583084699478015],[-73.93763269743296,40.58309626828406],[-73.93702675588723,40.583125872599325],[-73.93700558408266,40.583016019471366],[-73.9370148108711,40.58323327236432],[-73.9371245979845,40.583346730164195],[-73.93729744006791,40.58334884150787],[-73.93732470825798,40.58329281845636],[-73.9378318029718,40.58329309395857],[-73.9378873274903,40.583343966662575],[-73.93811917695139,40.58334047849253],[-73.9380942062777,40.58311681071695],[-73.9382399141382,40.58311688913285],[-73.93825745769912,40.58327956714169],[-73.93833089139778,40.58334119827811],[-73.93855276302428,40.58333798499161],[-73.93847712885872,40.583177897271135],[-73.93866846657744,40.58316442817501],[-73.93862755765117,40.583067021797454],[-73.93878660441516,40.58307093787544],[-73.9386685173063,40.583084064326215],[-73.93869745864703,40.58316493936719],[-73.93929640450669,40.58316726873529],[-73.9393015301897,40.583333215054104],[-73.9398253891649,40.58333144625084],[-73.93982884050544,40.58317053569252],[-73.93985851642724,40.583331334095774],[-73.9405774582891,40.58332822557346],[-73.9405660894777,40.58308736830806],[-73.94010903617048,40.583075068681325],[-73.94067657802273,40.58306580556732],[-73.94058568471232,40.583085976388936],[-73.94058872809933,40.58320694745642],[-73.94062855508307,40.583205295764905],[-73.94063649330324,40.58332834119563],[-73.94070019448833,40.58332762473175],[-73.94091645490738,40.58330240653129],[-73.9408971054338,40.58308760657751],[-73.9407384060463,40.583075612817524],[-73.94102517918685,40.58307036190619],[-73.9409145036293,40.58308833841556],[-73.94093422085356,40.5833023064367],[-73.94115699675488,40.58329922746805],[-73.94109844565533,40.58309477619717],[-73.94120155728886,40.58309046520497],[-73.94115408610513,40.58311322222523],[-73.94120929823984,40.583298504883025],[-73.94126351164637,40.58333675629559],[-73.94144050857248,40.58334014697358],[-73.9414883371834,40.583528736446176],[-73.94154438723228,40.583518083299715],[-73.94157408083618,40.583607555436785],[-73.94255133565294,40.583514476170805],[-73.94202033352751,40.58311042378244],[-73.94214938744283,40.58310667955057],[-73.94270167828903,40.583508797614286],[-73.94304709711925,40.58349212946455],[-73.94256316190977,40.58312734751643],[-73.94268774005667,40.58312281657203],[-73.94319506223945,40.583489662633575],[-73.94354467530923,40.583471014361066],[-73.94309334847381,40.583134545214705],[-73.94322815546556,40.58313082021103],[-73.94369153004571,40.58346775426595],[-73.94406764167104,40.583472009110366],[-73.94363589795742,40.58314557390953],[-73.9437651170738,40.58314471883187],[-73.94423403587135,40.58347995164652],[-73.94461828666235,40.583496626087666],[-73.94417458457846,40.583158291217906],[-73.94432059752158,40.583159424877294],[-73.94477544081295,40.583507804409805],[-73.94517477781615,40.58352137824419],[-73.9447127103015,40.58316504453059],[-73.94484512940915,40.58316423434091],[-73.94534992503475,40.58352905211037],[-73.9457301486455,40.583544874558406],[-73.94526670124625,40.583182518567234],[-73.9453760523788,40.5831819316505],[-73.94589911888089,40.58355266261021],[-73.94628634691954,40.58356868470276],[-73.94579941258932,40.58319463972766],[-73.94592413001226,40.58319410443506],[-73.94643429059352,40.583563152592404],[-73.94678945068819,40.58355046711154],[-73.94631603648753,40.58320694021066],[-73.94645496477298,40.58320516808002],[-73.94691796276105,40.5835460332497],[-73.94726832705307,40.58353318156928],[-73.94682202947195,40.58319119187102],[-73.94701390883579,40.58318810097943],[-73.94746867861319,40.58352819536238],[-73.94836747924927,40.583488596258235],[-73.95349322048679,40.58298819826096],[-73.95330135995677,40.58200274963346],[-73.94969672499397,40.58231940106664],[-73.94274062592514,40.580995589559244],[-73.9338128066391,40.58113292574203],[-73.93381364630925,40.58121398905241],[-73.9351340763902,40.581183789054755],[-73.9351087911519,40.581303817020974],[-73.93509532596835,40.581210618963176],[-73.93340042885238,40.58121538886922],[-73.93339931869012,40.581164801525084],[-73.9337631336547,40.58118346622532],[-73.93375801356123,40.58113204160583],[-73.93300348916412,40.58114467541715],[-73.93297161956652,40.581283629572575],[-73.93296350375759,40.58114517026214],[-73.93290958744818,40.58114576736107],[-73.93291340814963,40.58128373933713],[-73.93287295022402,40.58128600047315],[-73.93286916364707,40.58114848252058],[-73.93280636493385,40.581147418686825],[-73.93269753266532,40.58126928847301],[-73.93258006633955,40.581264741203796],[-73.93250341155928,40.58114698763391],[-73.93181497833328,40.57895869723003],[-73.931826884272,40.5786804710954],[-73.93169026396194,40.57817886114726],[-73.93164069394206,40.57817080917604],[-73.93106028108006,40.57626592009682],[-73.93106288401668,40.576163099718514],[-73.93144225685573,40.57570097043028],[-73.93150256744059,40.57566050512676],[-73.93334421019755,40.5755657030526],[-73.9348609283043,40.57552779666814],[-73.9349022910097,40.57548535354588],[-73.9348935645524,40.575221645997615],[-73.93499540238177,40.57522641258836],[-73.93500161782048,40.57543562083615],[-73.93507861896349,40.57550946601055],[-73.93575722316272,40.57572721627248],[-73.9364710758659,40.575860496356356],[-73.93660358189875,40.57577240544743],[-73.9367075253743,40.57541842721156],[-73.93683116228804,40.575560016695015],[-73.94250907828427,40.575373554531744],[-73.94253768741831,40.57543654722795],[-73.94247626518168,40.57549410645032],[-73.9425571224999,40.57556433083248],[-73.94364149533129,40.575772859958384],[-73.94427911409018,40.575800511412645],[-73.94450580469393,40.575771413769566],[-73.94463319129606,40.57569119674709],[-73.94455272237943,40.57529349621063],[-73.9445964288115,40.575245617788624],[-73.9446481079413,40.57526111233925],[-73.94468236538292,40.57544478261653],[-73.94474841805962,40.57551202474861],[-73.94527483146129,40.57556791313406],[-73.9457235205093,40.57555943947638],[-73.94603603739178,40.57546565666004],[-73.94618237587972,40.575298836059176],[-73.94620550151308,40.57519906694625],[-73.94595330144175,40.575212017721654],[-73.94592390301752,40.575115432309694],[-73.94896375973471,40.57477820421148],[-73.94991862626001,40.57455162473905],[-73.95018552432911,40.574559567931175],[-73.95132509565437,40.57442437791532],[-73.95207791647867,40.574398602865294],[-73.95235846742617,40.574274686193014],[-73.95374063177276,40.581355892240346],[-73.95383801654631,40.58174555231532],[-73.9539200074703,40.58186979357335],[-73.95414287795587,40.58310614010554],[-73.95645729125697,40.58265885105774],[-73.95703134180401,40.58303533241693],[-73.95900740039079,40.582838127802084],[-73.96004798667482,40.58326987240659],[-73.96014924129607,40.58357589703919],[-73.96034190762006,40.58596836626213],[-73.96034953585209,40.58730628607391],[-73.9561931370802,40.587762268954684],[-73.95700330423729,40.592002256235226],[-73.95607720352427,40.59210143244551],[-73.9569271971363,40.59661207631129],[-73.9424847334074,40.5982003656123],[-73.94288954061497,40.60031865019876],[-73.93447158901417,40.60123151189733],[-73.93503274500162,40.60173379039817],[-73.93355117153605,40.602687280824874],[-73.92813139605018,40.59777792814573],[-73.92956858243312,40.59682026542199],[-73.91819087798073,40.58660685492545],[-73.91809256480836,40.586570335004716]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK73",NTAName:"North Side-South Side",Shape_Leng:28176.0520744,Shape_Area:28868679.7978},geometry:{type:"Polygon",coordinates:[[[-73.95814292441024,40.724404284402375],[-73.95771989205166,40.72428495735954],[-73.95477662947451,40.72245950466809],[-73.95164632252363,40.72348585748397],[-73.95064594267232,40.72170569328178],[-73.94986599529747,40.722179483745066],[-73.94907816838736,40.722540287203],[-73.94841638605058,40.71845553312306],[-73.94721341810748,40.71856098611831],[-73.94866397410118,40.71768277145599],[-73.9511443369976,40.71603452078596],[-73.95275381269637,40.714735991056855],[-73.95348472164814,40.71407020807864],[-73.94937231850682,40.7140668783097],[-73.94865533511802,40.70972498318217],[-73.95087492667216,40.7095131151983],[-73.95023693757913,40.70547324665451],[-73.95191055699286,40.70636007892379],[-73.95790430738559,40.70842717347004],[-73.95838432367218,40.7076766907991],[-73.95845576794645,40.70725184744558],[-73.96327873777076,40.707729298518665],[-73.96838933680787,40.706829186746916],[-73.96929296282454,40.70709333109537],[-73.96984864823514,40.708003042190256],[-73.96994088125628,40.70931023140594],[-73.96955679589725,40.71029607081725],[-73.96964728659573,40.71037491098551],[-73.96994489298918,40.71039973365061],[-73.97000953222525,40.71045393762759],[-73.96997064587528,40.710508071218946],[-73.96973123695808,40.71051282944232],[-73.96963399936396,40.710665396155726],[-73.9697941600054,40.71074050647944],[-73.9697502667848,40.71083287772716],[-73.96934894880832,40.71096061478642],[-73.96976280291112,40.711172617257226],[-73.96970449248442,40.711236584008596],[-73.96933582617383,40.71111323878584],[-73.96925812194743,40.71116242174901],[-73.9692386095378,40.71124610984672],[-73.9694519578474,40.711393965517274],[-73.96942598248559,40.71147272562992],[-73.96930299564802,40.71151202974785],[-73.96918658210195,40.71146763615607],[-73.96911535361012,40.7115118989781],[-73.96886701898465,40.71223244458902],[-73.96880934254614,40.71225605547466],[-73.96886922090012,40.71226619751629],[-73.96883145652359,40.71239276365022],[-73.96894455591743,40.712426547217625],[-73.96879580931456,40.71273703885358],[-73.96872927908804,40.71272014379825],[-73.96867997513394,40.712849269902584],[-73.96846973347043,40.71282470934613],[-73.96845231690251,40.71292318664502],[-73.96856767224719,40.71294926378502],[-73.96849927445857,40.71310284084992],[-73.96884229050275,40.7132239250216],[-73.96736391633395,40.716483679557626],[-73.96724404348952,40.7165853504189],[-73.96726331381618,40.71666616768835],[-73.96711354289906,40.716897539606514],[-73.96726798422097,40.716985740955785],[-73.9663527858225,40.71830437392149],[-73.96624200755943,40.71825177876981],[-73.9660759791305,40.718397328056966],[-73.96614672505456,40.718501871395176],[-73.9658789353267,40.718755077686396],[-73.96570332076257,40.71891811422512],[-73.96552577333152,40.71890089271225],[-73.96515385976039,40.71926968304735],[-73.96528849214064,40.71936399960838],[-73.96539613438644,40.71956487925418],[-73.96554693018659,40.71965919869064],[-73.96538515805555,40.719954272782324],[-73.96537430995687,40.72009363256409],[-73.96513713562288,40.720343594754155],[-73.96501325438082,40.72029027259391],[-73.96490548671237,40.72032712936548],[-73.96446386180367,40.72006466299989],[-73.96435606131355,40.72016300359865],[-73.96447993459567,40.720232723486355],[-73.96353855414517,40.721573378514336],[-73.96343759552924,40.72155909516231],[-73.96296566403043,40.72203447662029],[-73.96223504964352,40.72357025876262],[-73.96200744799043,40.72399190110518],[-73.96189426712185,40.724106702101054],[-73.96165984235316,40.72486045396024],[-73.96211461566836,40.72514806339889],[-73.9619023964313,40.72532050081107],[-73.96153679358723,40.72510891834949],[-73.96116366302357,40.725264605830674],[-73.9604323024061,40.725114108660506],[-73.9603665110242,40.725047309386106],[-73.95875928235952,40.72454135436979],[-73.95833078226909,40.72441170076614],[-73.95814292441024,40.724404284402375]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI07",NTAName:"Westerleigh",Shape_Leng:41651.1215319,Shape_Area:63292089.2484},geometry:{type:"Polygon",coordinates:[[[-74.13047429009482,40.63088550974053],[-74.13014141541782,40.62996520852987],[-74.13130985317957,40.6263283436491],[-74.13069767192907,40.62634095686901],[-74.13007946896828,40.62641859612023],[-74.12216225504115,40.62747689266609],[-74.12125677927577,40.62782275033951],[-74.12012888024826,40.62653615348659],[-74.11790654882513,40.62487746147732],[-74.11747606519826,40.62467350237262],[-74.1132624955781,40.623054425040735],[-74.11153393893858,40.62160364605463],[-74.11094392865733,40.621194488998526],[-74.11001550650612,40.62068834425541],[-74.10608939626856,40.61898419570847],[-74.10552598888417,40.618592329499606],[-74.10518709679577,40.61828147484371],[-74.10350925295981,40.61641607539762],[-74.10209434379627,40.614600490701925],[-74.09987733805502,40.61291865202127],[-74.09935043021707,40.61241907603295],[-74.09862151345285,40.61151891214526],[-74.09776968697935,40.610623592940705],[-74.10722963838855,40.6102524453156],[-74.10890146158111,40.61025158549936],[-74.11000934118235,40.610336205547085],[-74.11047956436134,40.610418656145356],[-74.11263747380981,40.6109673662597],[-74.11359920399701,40.61114391251114],[-74.11458547834052,40.61120229579376],[-74.11566833840763,40.611175384412796],[-74.11687458182021,40.61097182592981],[-74.12135179626337,40.60976526866158],[-74.1245261878744,40.60902231895395],[-74.12650911524376,40.60866290780352],[-74.12874897506448,40.60839174103171],[-74.13210459722455,40.608152924106314],[-74.13215051174825,40.60855196388084],[-74.14283290552227,40.607992595485555],[-74.14471100624272,40.608034297118394],[-74.14575166802531,40.60818646197572],[-74.14719646653661,40.60856292974586],[-74.14852820185925,40.60908079527283],[-74.14954343557085,40.60962717289027],[-74.14696864216103,40.61015135570589],[-74.14603562115163,40.617012777499774],[-74.14419491885171,40.616870261569844],[-74.13982184794214,40.61629982594092],[-74.13836666875454,40.62173711686207],[-74.13861274061527,40.621772877689764],[-74.13826358199559,40.62424376957255],[-74.13764014534718,40.62421538220067],[-74.13723036985567,40.624271603579764],[-74.13668630057124,40.62453351425988],[-74.13581008278032,40.62506433958861],[-74.13805849495895,40.62706851789307],[-74.13789126703902,40.627452880391935],[-74.1380639380018,40.627568471136456],[-74.13785800142752,40.62769048761737],[-74.13674237782392,40.62866253672542],[-74.13586108350344,40.62806152838007],[-74.13408698261898,40.62954168121522],[-74.13343731220596,40.62907434575091],[-74.13161834492138,40.63058368945241],[-74.13107460341514,40.631147729710584],[-74.1305949982894,40.630880282672024],[-74.13047429009482,40.63088550974053]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI28",NTAName:"Port Richmond",Shape_Leng:38927.05813,Shape_Area:36422542.2931},geometry:{type:"MultiPolygon",coordinates:[[[[-74.12613276551231,40.64126438802823],[-74.12599542488428,40.640231242628],[-74.126069828622,40.64025447268741],[-74.12619996291652,40.64126431430291],[-74.12634180444694,40.64125278369696],[-74.12636808688981,40.6413323804869],[-74.12564026804624,40.641418492082984],[-74.12563265806337,40.64134171819284],[-74.12613276551231,40.64126438802823]]],[[[-74.1227031966185,40.64137664893174],[-74.12272114449654,40.64134762354625],[-74.12276203509289,40.64142663529712],[-74.12271103141838,40.641433755251974],[-74.1227031966185,40.64137664893174]]],[[[-74.12185329597821,40.64158069227954],[-74.12180661082161,40.64141215957812],[-74.12184147061457,40.64140589427088],[-74.12186561799233,40.64155594932427],[-74.12198146446646,40.64150106676875],[-74.12199083807539,40.64155463949942],[-74.12185329597821,40.64158069227954]]],[[[-74.12130529017028,40.64160070313071],[-74.12137332939032,40.64147647474077],[-74.12132617111651,40.64160656922885],[-74.12130529017028,40.64160070313071]]],[[[-74.12107727405025,40.64160741958351],[-74.12118039507698,40.641383445379525],[-74.12121470320174,40.6413968399868],[-74.12107727405025,40.64160741958351]]],[[[-74.12155343671266,40.64161162782144],[-74.12176052668624,40.64157431405655],[-74.12175764696875,40.641423424454295],[-74.12177911197512,40.64159254711696],[-74.12155343671266,40.64161162782144]]],[[[-74.12117246208992,40.64166914456796],[-74.12128074794364,40.64143249598709],[-74.12131194763691,40.64145253132571],[-74.12117246208992,40.64166914456796]]],[[[-74.13435269639508,40.64188679690179],[-74.13430281251246,40.641753794405936],[-74.13349719766671,40.64171690148109],[-74.1334153923328,40.64154711655099],[-74.13322799616074,40.64145707358679],[-74.13299172459463,40.64141693666384],[-74.13282505053006,40.641419630335584],[-74.13256222253696,40.641531855788706],[-74.13242043209952,40.64162342108146],[-74.13240283643103,40.641704388983726],[-74.13125581180256,40.64159683076381],[-74.13146199830796,40.64131010407427],[-74.13108083937522,40.641026560604864],[-74.13018370079186,40.64072382608229],[-74.12967785100248,40.641385312553595],[-74.12949057637367,40.64135483519582],[-74.12997740196747,40.64072987285631],[-74.12987750736707,40.6406868184587],[-74.12992088579603,40.64062898297604],[-74.1293071318685,40.64033741121096],[-74.12922977261061,40.640484372352375],[-74.12893301209803,40.64041392898525],[-74.128994963095,40.64118931324104],[-74.12890729033452,40.64119482758613],[-74.12881201847128,40.64022697750389],[-74.12813214919126,40.64024999943808],[-74.12810900485869,40.640139674293216],[-74.12752677306857,40.64015530471571],[-74.12739568551278,40.6399747221562],[-74.1273911938027,40.639829798962],[-74.12724481838399,40.63976689085684],[-74.12714774563898,40.6393110568502],[-74.12702736020904,40.639319077984275],[-74.12699054233235,40.639110891787],[-74.12697679183944,40.63843259038399],[-74.12707923561645,40.63812243747614],[-74.12688872731626,40.63721008809406],[-74.1286704730065,40.637348264806384],[-74.12885649512525,40.63670218604479],[-74.12885281941945,40.63507441936544],[-74.12893129415087,40.63457748796835],[-74.12900054064659,40.63433359385648],[-74.1299324759517,40.632908787459556],[-74.13046976839325,40.63167632109556],[-74.13060220372229,40.63135782719116],[-74.13047429009482,40.63088550974053],[-74.1305949982894,40.630880282672024],[-74.13107460341514,40.631147729710584],[-74.13161834492138,40.63058368945241],[-74.13343731220596,40.62907434575091],[-74.13408698261898,40.62954168121522],[-74.13586108350344,40.62806152838007],[-74.13674237782392,40.62866253672542],[-74.13785800142752,40.62769048761737],[-74.1380639380018,40.627568471136456],[-74.13789126703902,40.627452880391935],[-74.13805849495895,40.62706851789307],[-74.13581008278032,40.62506433958861],[-74.13668630057124,40.62453351425988],[-74.13723036985567,40.624271603579764],[-74.13764014534718,40.62421538220067],[-74.13826358199559,40.62424376957255],[-74.13861274061527,40.621772877689764],[-74.13836666875454,40.62173711686207],[-74.13982184794214,40.61629982594092],[-74.14419491885171,40.616870261569844],[-74.14603562115163,40.617012777499774],[-74.14696864216103,40.61015135570589],[-74.15018666451151,40.60949781115523],[-74.15379116657408,40.612255612755334],[-74.15259266449769,40.61657308141166],[-74.15231170430091,40.617162755917754],[-74.1516575788834,40.61804055799045],[-74.14831982319728,40.621449516078],[-74.14772830369287,40.6221366192619],[-74.14710957687771,40.62303226022552],[-74.14678442553688,40.623607550677285],[-74.14622812537053,40.624925361709565],[-74.14563382845752,40.626725150753806],[-74.14554072012918,40.62783252211597],[-74.14593544628516,40.627824114565335],[-74.14608756406275,40.62891590278752],[-74.14622202814859,40.629106957185456],[-74.14752619029798,40.6293892882993],[-74.14683016553717,40.631382654000284],[-74.14478228995515,40.63795378029727],[-74.1435999829229,40.63851412568797],[-74.14312802509043,40.63968037312675],[-74.1428597463245,40.63956930452419],[-74.14257769402025,40.63953413750097],[-74.14238795149326,40.63964121082989],[-74.14231969773265,40.63979226696449],[-74.14240463835903,40.64019825128138],[-74.14229766980858,40.64030580659105],[-74.14215420029258,40.64034324777035],[-74.14205431483461,40.640296759707326],[-74.14155623038329,40.640366768816186],[-74.1414804746932,40.64009219379205],[-74.14128624022685,40.6401452751609],[-74.14119221839898,40.64038867508107],[-74.14102430552119,40.64050666884391],[-74.14076253645278,40.64058939691118],[-74.13929745763888,40.64080583775188],[-74.13925744852591,40.640735726221614],[-74.13920382377104,40.64074596717295],[-74.1391832803589,40.64085489201922],[-74.1375757490446,40.641001152370336],[-74.13734401529297,40.641148322830105],[-74.13737001815956,40.64129546348814],[-74.13435269639508,40.64188679690179]]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI22",NTAName:"West New Brighton-New Brighton-St. George",Shape_Leng:67963.7161863,Shape_Area:56065727.0217},geometry:{type:"Polygon",coordinates:[[[-74.07258133873471,40.637941874089464],[-74.07486917475198,40.63779280957757],[-74.07506052890967,40.63774840033326],[-74.0751520797744,40.637788617580455],[-74.07683997780401,40.637750259619565],[-74.07813163434041,40.63817145360892],[-74.07836890421049,40.63829079467846],[-74.07865269666793,40.63830402520266],[-74.07878831035609,40.63826855858653],[-74.08177940518485,40.63662301475497],[-74.08302091199303,40.63602507064243],[-74.08373397276404,40.635737144056556],[-74.08587882899151,40.63669158950093],[-74.08690592827844,40.635857243131206],[-74.08870582339759,40.63684520627818],[-74.0892216782161,40.636088080893934],[-74.08970378337375,40.63568250098352],[-74.0902773859392,40.635499030077085],[-74.09090698781257,40.63548572915699],[-74.09242513546198,40.63558181331148],[-74.09338942318296,40.63659955499507],[-74.09386276384379,40.63802491708693],[-74.09409312556045,40.63926691373025],[-74.09637906209679,40.63903537019443],[-74.09767290788828,40.63896067917031],[-74.09787969175628,40.64035805499109],[-74.09990409604531,40.64016295461374],[-74.10480990833243,40.63897670148306],[-74.106967068375,40.638717039320966],[-74.10719674747105,40.63863985125543],[-74.1074632319621,40.63843848833599],[-74.10905120519037,40.6381848658148],[-74.10938961823219,40.63806698235527],[-74.1097483334345,40.63786583288587],[-74.11499559713077,40.637292225803506],[-74.11519147377682,40.63834768105235],[-74.1176572251188,40.63806246692529],[-74.11745986550397,40.635769405401184],[-74.11707785779593,40.634007108452224],[-74.11614321176965,40.62870226452693],[-74.11544777625285,40.627220617646344],[-74.1132624955781,40.623054425040735],[-74.11747606519826,40.62467350237262],[-74.11790654882513,40.62487746147732],[-74.12012888024826,40.62653615348659],[-74.12125677927577,40.62782275033951],[-74.12216225504115,40.62747689266609],[-74.13007946896828,40.62641859612023],[-74.13069767192907,40.62634095686901],[-74.13130985317957,40.6263283436491],[-74.13014141541782,40.62996520852987],[-74.13060220372229,40.63135782719116],[-74.1299324759517,40.632908787459556],[-74.12900054064659,40.63433359385648],[-74.12885281941945,40.63507441936544],[-74.12885649512525,40.63670218604479],[-74.1286704730065,40.637348264806384],[-74.12688872731626,40.63721008809406],[-74.12707923561645,40.63812243747614],[-74.12697679183944,40.63843259038399],[-74.12699054233235,40.639110891787],[-74.12712443009136,40.63986318426419],[-74.12705362205264,40.64024173763895],[-74.12634633446164,40.64037630175882],[-74.12569811633216,40.64015593368911],[-74.12469728947032,40.6402393510746],[-74.1241557844501,40.64013471664001],[-74.12363726025602,40.64034287089129],[-74.12354404678014,40.64040553513158],[-74.12354793772015,40.64049084338203],[-74.12340726999285,40.64058895710924],[-74.12285630555338,40.64082050884885],[-74.12265174126273,40.64062676563037],[-74.12257280545134,40.640622340093465],[-74.12290724898476,40.6410192661145],[-74.12282565410312,40.64129387551501],[-74.12269555887673,40.641353026672554],[-74.12195850128322,40.64144698308063],[-74.12184147061457,40.64140589427088],[-74.12144753366917,40.64150273758471],[-74.12118039507698,40.641383445379525],[-74.12071317588781,40.641045782693425],[-74.11993480088911,40.64119760438382],[-74.11997111213586,40.641314814562264],[-74.11960716747869,40.64138030935415],[-74.11995699875764,40.642209453429054],[-74.11985443942095,40.64223561390477],[-74.11952986105754,40.641469914321874],[-74.1194656129683,40.6414788741719],[-74.11942631292398,40.64142352418467],[-74.1190972055961,40.64147346602007],[-74.11948087155088,40.64235510170976],[-74.11940029532455,40.642379378532716],[-74.11900348200308,40.641464614510056],[-74.11861635170294,40.64153036502968],[-74.1186883410023,40.64179764355325],[-74.1186517159856,40.64180884612174],[-74.11896077402352,40.642504515993195],[-74.11883624616942,40.64254186406033],[-74.1184018508355,40.641529800542855],[-74.1181553658689,40.641593684261046],[-74.11820831549389,40.641750235375895],[-74.11800767093656,40.641805497533284],[-74.11815635743858,40.64213129829872],[-74.11804891156362,40.64215746101179],[-74.11791728683134,40.6418258769521],[-74.11773478385703,40.64179669853557],[-74.11762841680792,40.64162158290067],[-74.1174568960422,40.641644801773694],[-74.11728814480377,40.64159437720458],[-74.1171709328469,40.64162427104178],[-74.11711235699556,40.641655967138846],[-74.11750702523288,40.6424204084301],[-74.11741912558007,40.64244841215588],[-74.11713706469337,40.64189806463042],[-74.11672187663888,40.642031756096564],[-74.11722470082545,40.64302735996257],[-74.11714900527414,40.643049768652276],[-74.11666607646228,40.6421067663339],[-74.11630000082744,40.642202665102246],[-74.11675342874659,40.64316182670232],[-74.11667041382687,40.643189824892815],[-74.1161420863572,40.642216454150315],[-74.11571917042296,40.64235181921401],[-74.11622691839436,40.643307105862725],[-74.11614843005728,40.64333111259175],[-74.11564823433703,40.64237468232923],[-74.11535082182931,40.64247054015817],[-74.11511714818039,40.642784992677186],[-74.11478076494303,40.64295761592831],[-74.11379666086009,40.64360951580787],[-74.11404053146022,40.64404250211975],[-74.11395094134463,40.64413659167456],[-74.11288806510882,40.64453244413493],[-74.11282960893455,40.644462428185975],[-74.11379152893629,40.644075221830754],[-74.11389010890323,40.64398966912601],[-74.11381590400771,40.64389574133994],[-74.11354450863908,40.64395412006726],[-74.11333023258437,40.64372349658049],[-74.11180799136832,40.64461067447673],[-74.11190333685154,40.64470602674029],[-74.11116129469174,40.64509642267868],[-74.11111633600619,40.64504690232372],[-74.11176646649939,40.644706159842336],[-74.11172529995714,40.644659361726085],[-74.11101110999861,40.64505309528206],[-74.10973932564484,40.645463728184716],[-74.10886489895967,40.64557912880396],[-74.10472221599763,40.645563657399435],[-74.10464577782204,40.64563047031573],[-74.10439613555202,40.64566994108002],[-74.10434058744815,40.645721165402776],[-74.10412356301745,40.64574043220009],[-74.10398644791056,40.64562270284426],[-74.10307296677408,40.64563814841738],[-74.10231679337322,40.6455425996775],[-74.10168264441667,40.64540673298669],[-74.10162941761631,40.64548895894021],[-74.10169906586981,40.64553648533392],[-74.10161828954737,40.645526538871444],[-74.10157833974776,40.64551442131607],[-74.1016426644115,40.64539654892613],[-74.10060542005353,40.6451323333171],[-74.10010007356622,40.64505941559197],[-74.09880066819827,40.64504703431135],[-74.09849981625507,40.64537036195374],[-74.09604555347562,40.64537274744212],[-74.09468500855279,40.64555571773532],[-74.0929882825363,40.64597278075192],[-74.09300507296236,40.64607631431423],[-74.09135697876026,40.64670072410102],[-74.0899233404751,40.647176131601775],[-74.0894035162771,40.64730577615568],[-74.08836043489225,40.647907905327635],[-74.08824112474026,40.64790165648607],[-74.087674426815,40.64823529361476],[-74.08570754378212,40.64888055337045],[-74.0852269841167,40.64892555177345],[-74.08484403215716,40.64889114733942],[-74.08402179391804,40.6486043549171],[-74.08221272914936,40.648280162290064],[-74.08142228269665,40.648504724943756],[-74.08072838762372,40.648274873846255],[-74.08051823788358,40.64824551473268],[-74.07980996428704,40.64838331298792],[-74.07899546399243,40.648142554421945],[-74.0770865793665,40.64719986076572],[-74.0769934108888,40.64720585183902],[-74.07682895680888,40.6470805219362],[-74.07650657152858,40.64696881818334],[-74.07599222761543,40.646552023758986],[-74.07445282563586,40.64506748771805],[-74.07407812091216,40.645084328910656],[-74.07395839976466,40.64519320544551],[-74.07359107919277,40.64499892804298],[-74.07349851433601,40.645083373474655],[-74.07375861295323,40.645313351270275],[-74.07382911232175,40.64531177214266],[-74.07377880342953,40.64535629846422],[-74.07385653684669,40.64542481559701],[-74.07333813922911,40.645783115659235],[-74.07324539464852,40.645704925269506],[-74.07348694195123,40.645549807744835],[-74.07341838754057,40.64548847917828],[-74.07369011806443,40.64530572405478],[-74.0732385381076,40.64496386390981],[-74.07302520573127,40.64513123781715],[-74.07320225954697,40.644943941243504],[-74.07301239963513,40.644838679702175],[-74.0730555988172,40.6448079178409],[-74.07342590813512,40.64500056750959],[-74.07327272901475,40.644916278972886],[-74.07334517133616,40.64485025792893],[-74.07312184183509,40.64471479946893],[-74.07279850341494,40.64491012376873],[-74.07258775487888,40.644790863174045],[-74.07270308267547,40.644645595124935],[-74.07256468232953,40.644719748858144],[-74.07261232795621,40.6446752895799],[-74.07252587520979,40.64467003951456],[-74.07257551719215,40.644617685388575],[-74.07262311218132,40.64465387833524],[-74.07266630837185,40.64462092065909],[-74.07253221959748,40.64455679217064],[-74.07258623109269,40.64453041424944],[-74.07272467079098,40.64462088376649],[-74.07278260612932,40.64449184001742],[-74.07269828799025,40.64444127346733],[-74.07233100894291,40.64459987318498],[-74.07165829759784,40.645033746435004],[-74.07230919112718,40.64457775305171],[-74.07225588436283,40.64454643110188],[-74.07216148380606,40.644581534806505],[-74.07201843213238,40.644411932940834],[-74.07229190281821,40.6442660478204],[-74.07218488601667,40.644110465395116],[-74.07186080936856,40.64420176176972],[-74.07175648087781,40.64401184549859],[-74.07205817440055,40.64390042769901],[-74.07200080155476,40.64378113296955],[-74.07179259309383,40.6438163085785],[-74.07177075212526,40.64377205483533],[-74.0716496940852,40.6437868857246],[-74.07159679201105,40.64346015698602],[-74.07135612176633,40.64349730455602],[-74.07134109417919,40.64345622552156],[-74.07149090063892,40.64342874058587],[-74.07148202432619,40.643292625063495],[-74.07098328230775,40.6433887440083],[-74.07093784471476,40.643345963840545],[-74.07095942168603,40.643309727028274],[-74.07125765981517,40.64325850172702],[-74.07127283144261,40.6432963611225],[-74.07144331706263,40.64327056082801],[-74.07141659782495,40.64319310959532],[-74.0711430928901,40.643250909742],[-74.07113105720934,40.64320526367827],[-74.07150263147402,40.643129304192875],[-74.07147777388595,40.64280829377456],[-74.07164540901461,40.642800359680614],[-74.07164892198941,40.642679931177035],[-74.07170286187443,40.6426798975573],[-74.07170351967267,40.64279633527996],[-74.0721843490306,40.642714093289484],[-74.07210952444632,40.64246321679274],[-74.07037430990597,40.642691403053135],[-74.0703292371539,40.64252612813229],[-74.07323829249574,40.64218473608193],[-74.0731440058592,40.64185297347493],[-74.0702465876464,40.642206974296464],[-74.07019399559219,40.64200750280528],[-74.07308689819328,40.64163681446702],[-74.07289005609574,40.64092267237345],[-74.07196280961678,40.640995579760656],[-74.07180500367038,40.64102934375623],[-74.07181141822922,40.64112312420188],[-74.0700184914874,40.641278132237495],[-74.0699835465395,40.64106894311678],[-74.0728504119488,40.64080368794243],[-74.07277690077086,40.64052896314691],[-74.07307725837744,40.640513311796305],[-74.07309035578784,40.63861899968583],[-74.07292933384748,40.63859264983822],[-74.07292601136348,40.638441154560006],[-74.07301444562152,40.638409383616214],[-74.07267024642061,40.63837638962674],[-74.07258809054152,40.638301894170546],[-74.07260933933598,40.6382268953206],[-74.07238852950294,40.63824526599671],[-74.07237941129381,40.63816272607407],[-74.07260632797495,40.638136307844405],[-74.07258133873471,40.637941874089464]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI35",NTAName:"New Brighton-Silver Lake",Shape_Leng:30322.520368,Shape_Area:47142780.3891},geometry:{type:"Polygon",coordinates:[[[-74.08373397276404,40.635737144056556],[-74.08443647578623,40.63540524804887],[-74.08574928999671,40.63395555772531],[-74.08835621368921,40.630734963691324],[-74.08914567603216,40.63012462153565],[-74.08934045708179,40.62992328545795],[-74.09158095983538,40.62654592333809],[-74.09223971361276,40.62574291624776],[-74.10004426975568,40.619357955413065],[-74.10073089155803,40.61870975465696],[-74.10189835110555,40.61745221106974],[-74.10254940556761,40.61685368522699],[-74.10350925295981,40.61641607539762],[-74.10518709679577,40.61828147484371],[-74.10552598888417,40.618592329499606],[-74.10608939626856,40.61898419570847],[-74.11001550650612,40.62068834425541],[-74.11094392865733,40.621194488998526],[-74.11153393893858,40.62160364605463],[-74.1132624955781,40.623054425040735],[-74.11544777625285,40.627220617646344],[-74.11614321176965,40.62870226452693],[-74.11707785779593,40.634007108452224],[-74.11745986550397,40.635769405401184],[-74.1176572251188,40.63806246692529],[-74.11519147377682,40.63834768105235],[-74.11499559713077,40.637292225803506],[-74.1097483334345,40.63786583288587],[-74.10938961823219,40.63806698235527],[-74.10905120519037,40.6381848658148],[-74.1074632319621,40.63843848833599],[-74.10719674747105,40.63863985125543],[-74.106967068375,40.638717039320966],[-74.10480990833243,40.63897670148306],[-74.09990409604531,40.64016295461374],[-74.09787969175628,40.64035805499109],[-74.09767290788828,40.63896067917031],[-74.09637906209679,40.63903537019443],[-74.09409312556045,40.63926691373025],[-74.09386276384379,40.63802491708693],[-74.09338942318296,40.63659955499507],[-74.09242513546198,40.63558181331148],[-74.09090698781257,40.63548572915699],[-74.0902773859392,40.635499030077085],[-74.08970378337375,40.63568250098352],[-74.0892216782161,40.636088080893934],[-74.08870582339759,40.63684520627818],[-74.08690592827844,40.635857243131206],[-74.08587882899151,40.63669158950093],[-74.08373397276404,40.635737144056556]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX52",NTAName:"Schuylerville-Throgs Neck-Edgewater Park",Shape_Leng:90942.4003514,Shape_Area:88569711.3595},geometry:{type:"MultiPolygon",coordinates:[[[[-73.83979488496,40.83561920749189],[-73.8396148723858,40.83561056836572],[-73.83969886642252,40.83557527991652],[-73.83968659420832,40.83550917341244],[-73.83959955569637,40.83551849422483],[-73.83966798761942,40.835492625479326],[-73.83957792735124,40.83546653685207],[-73.839664999928,40.835443053947266],[-73.83965271639369,40.83538166842023],[-73.83956877512524,40.83539571384327],[-73.83963111649639,40.83531791035978],[-73.83954719238324,40.83532487387516],[-73.83961561208385,40.83530372664373],[-73.83960332994585,40.835242340441745],[-73.83953185877344,40.83523988111043],[-73.83961890698585,40.835225840034674],[-73.83960659640763,40.83517625553414],[-73.83951337120294,40.83517376593598],[-73.83960353479861,40.83515736929407],[-73.83958501369492,40.83510541624057],[-73.83950733344851,40.835100587842206],[-73.83959437645464,40.835088907192976],[-73.83957586742359,40.83503223265335],[-73.83945783797706,40.835006105189365],[-73.83956666840155,40.83498029272955],[-73.83955747137693,40.83492835364494],[-73.8394828820375,40.834930609770545],[-73.83955130770883,40.834907101499184],[-73.83954830808229,40.8348622514434],[-73.83946132669244,40.834847967741396],[-73.83961993115035,40.834800981937406],[-73.83947693916858,40.83481730507664],[-73.83961377382477,40.83477736989048],[-73.83960141648538,40.83474666847677],[-73.83947085592615,40.83476300956684],[-73.83960456474952,40.83473015128701],[-73.8395953097228,40.834701814602305],[-73.83946474267518,40.83472051491927],[-73.83941220310875,40.834600065107395],[-73.83948374192401,40.83457420079435],[-73.83959266688868,40.83456047564461],[-73.8397089948632,40.83485271793772],[-73.83967445429295,40.835098757889334],[-73.83979488496,40.83561920749189]]],[[[-73.83960098611604,40.83567071869945],[-73.83962599476902,40.8356997123696],[-73.83960850400308,40.83570805068451],[-73.83960098611604,40.83567071869945]]],[[[-73.82598686895278,40.84067575238659],[-73.82584985960631,40.83706086710302],[-73.82573525138082,40.83664539491425],[-73.82544296399837,40.83595917077401],[-73.82540482581278,40.83565927474003],[-73.82544607419136,40.835361129367115],[-73.82560350295608,40.83503014721339],[-73.8258777558263,40.834674047450626],[-73.82622087804741,40.834354708293255],[-73.82601252570734,40.834020778205286],[-73.82515883868953,40.83461447159697],[-73.82463346490994,40.83385580771462],[-73.8237938316849,40.834300146959286],[-73.82223130070494,40.83455601268213],[-73.81606068234676,40.83603019645688],[-73.81585050609728,40.83590435510821],[-73.81552500922513,40.83597630692601],[-73.8155425777769,40.835897274649376],[-73.81606339574218,40.835772927473684],[-73.81607256205925,40.835595055319665],[-73.8160077307084,40.835512597336034],[-73.81557397060101,40.835525081831086],[-73.81560880514267,40.835475724413044],[-73.81596024072206,40.83543346101672],[-73.81608188379768,40.83536118240124],[-73.81609138692484,40.83506142683305],[-73.81600054186795,40.83497563349131],[-73.81608401467282,40.83459034626623],[-73.8160105821298,40.83448152030581],[-73.81566358139256,40.8344908493069],[-73.81599347092268,40.83439584455291],[-73.81602829589407,40.83434978118204],[-73.81601196681459,40.83398080521077],[-73.81599215149139,40.83391958016276],[-73.81588801171024,40.833925191540615],[-73.815986842867,40.83390159047461],[-73.81593920982328,40.83367686641551],[-73.81581094433616,40.83348098975514],[-73.81573283041142,40.833497541851855],[-73.8156987722173,40.833462280861134],[-73.81577942432305,40.83341052627179],[-73.81581632050725,40.83330125935019],[-73.81573931591338,40.832917569023245],[-73.81563962587074,40.83279696542465],[-73.8154869585189,40.83229989105759],[-73.81536778669573,40.83220016860315],[-73.8152868698753,40.83187570053319],[-73.8151188664175,40.83170941705408],[-73.81503125254116,40.831682117017856],[-73.81511743613846,40.83161415874406],[-73.81497525883806,40.83142075639332],[-73.8148793738859,40.831030086491396],[-73.8148534691479,40.83100819972943],[-73.8144922094628,40.83117114022327],[-73.8144703368803,40.83114145825199],[-73.8148431349859,40.83098612051465],[-73.8147638769196,40.83081679999348],[-73.81452008511535,40.83062287579318],[-73.81391425388861,40.83092425703549],[-73.81389783294327,40.83090755415717],[-73.81451016587613,40.830614047052144],[-73.8144099091828,40.830495338636894],[-73.81429416266315,40.830505169430836],[-73.81430920681511,40.83035927120742],[-73.81385671977279,40.83056144292263],[-73.81429959295049,40.8303501037026],[-73.81390384121464,40.830068161662034],[-73.81382087385569,40.82996758146247],[-73.8138677501533,40.82985736878264],[-73.8137029600182,40.829933033128526],[-73.81366831350864,40.82989128485486],[-73.81388709570129,40.829821032467656],[-73.81388971246571,40.82977745220221],[-73.81382829192323,40.82964146799007],[-73.81369726279115,40.82955233460175],[-73.81356669955272,40.82958954788838],[-73.81368881870834,40.829534579120114],[-73.81361110494477,40.829376757955956],[-73.81354614192867,40.829344534658965],[-73.81337687373376,40.82939120271155],[-73.81350420409579,40.82922093467617],[-73.81338766389125,40.82902309447351],[-73.813199275796,40.828928904764624],[-73.81299420898007,40.82898292655073],[-73.81290321918908,40.828953131163374],[-73.81318011408925,40.82880287122953],[-73.81305326961018,40.828800194856015],[-73.8131316371516,40.828691613924335],[-73.81293970515077,40.8287011848558],[-73.81283902833238,40.82864666669566],[-73.81280015000061,40.8285922504551],[-73.81287233236326,40.828370008559496],[-73.81275469994523,40.82824823625133],[-73.81072685676419,40.828285906243124],[-73.81001568322193,40.828254470281394],[-73.80992515920018,40.82817971197839],[-73.80997887518512,40.82790769580865],[-73.81009578138247,40.82781949309145],[-73.81029679260439,40.82799085251051],[-73.81105578108613,40.827984995683465],[-73.8110429165629,40.827839986368176],[-73.81025342354776,40.82783413170937],[-73.81025357303976,40.82779717689449],[-73.81003940033307,40.82777813878675],[-73.81027578336352,40.8277785240717],[-73.81027562551787,40.82781771683239],[-73.81182240952792,40.827825507298044],[-73.81106294168235,40.82784364943358],[-73.81107326729983,40.82798440231363],[-73.81170732771469,40.82800674509529],[-73.81227167502749,40.827866531791216],[-73.81260338913438,40.827835076207556],[-73.81271796789486,40.827733999987565],[-73.81265206466672,40.827558779615806],[-73.81327731562807,40.82721987352254],[-73.81354780928984,40.826941819513344],[-73.81384974863515,40.826803528854256],[-73.81389062319651,40.82666005126379],[-73.81368086393154,40.82643013946839],[-73.81372207686613,40.82627159251503],[-73.81291776131228,40.8263503891206],[-73.81372787850366,40.82626121871798],[-73.81399111623492,40.826069598588894],[-73.8140390527365,40.825956305508264],[-73.81395054142311,40.82572915144465],[-73.81342102197206,40.82592501676829],[-73.81394162019552,40.82571703172953],[-73.81379616124781,40.82557638229395],[-73.81384158537409,40.8253902143899],[-73.81379523451503,40.82529808600043],[-73.81333522672246,40.82517094670866],[-73.81211350556441,40.82555263465929],[-73.81293781579006,40.82523532904694],[-73.81327735581465,40.82516132170859],[-73.81312368501504,40.825068708754],[-73.81308215093006,40.8249445468397],[-73.81335946559689,40.82474843317944],[-73.81403745843352,40.82448346949387],[-73.81402237553111,40.82430397457793],[-73.81393383597657,40.82413716316101],[-73.81378080257551,40.823999920519384],[-73.8132741739903,40.823966665819555],[-73.8131933924471,40.82413798029243],[-73.81307687892682,40.824158431179875],[-73.8128102869299,40.82433911331676],[-73.81282255867613,40.82467968021846],[-73.81274834912769,40.82477718704399],[-73.8123200554578,40.824411308342846],[-73.81201913394884,40.82432568722638],[-73.81177284871205,40.824339806172794],[-73.81158752785291,40.82449259986607],[-73.81164355619617,40.82460166226862],[-73.81155844768891,40.82451209023506],[-73.81122136266141,40.82458580068856],[-73.81119903005475,40.8247911133807],[-73.81103147525597,40.82470822704193],[-73.81084728678651,40.8248724909648],[-73.81087496294528,40.825113947943954],[-73.81078485286588,40.82511380012246],[-73.81076192559331,40.824901570211615],[-73.81040914396264,40.825021130469004],[-73.81029687387189,40.82516492580809],[-73.81006078704058,40.82514329457059],[-73.80965481075735,40.825275535117946],[-73.80924839089201,40.825635263618736],[-73.80919816842237,40.82581220521544],[-73.80909234633549,40.82587339816406],[-73.80878493921445,40.82579971898292],[-73.80846922650889,40.82586033865237],[-73.80827534477034,40.825801233282974],[-73.80799778151433,40.82579036736364],[-73.8079524936244,40.825825576973756],[-73.80796309299765,40.8257817427323],[-73.80783421253129,40.82576745480193],[-73.8076660476525,40.825896992059036],[-73.80734677318175,40.82562974144341],[-73.8072287509391,40.825455623239336],[-73.80697771152352,40.825388370394855],[-73.8069719138646,40.82524438070608],[-73.8068172736986,40.824996285912924],[-73.80673428399326,40.8246845829844],[-73.80656361554976,40.82460640543175],[-73.80671607256531,40.82453585161636],[-73.80677536296291,40.82444861773689],[-73.8067075535402,40.82425967758665],[-73.80651819407532,40.82419799191269],[-73.8067310462778,40.824134881493855],[-73.8067904943618,40.82399336168914],[-73.80675058126184,40.8238280706597],[-73.80646480610474,40.82379926749911],[-73.80669197728992,40.8236792710642],[-73.80666166000627,40.823419584237094],[-73.80650977491834,40.82329423114605],[-73.80626417474804,40.823341025704615],[-73.806236306937,40.82330793465065],[-73.8064602741805,40.82322097751136],[-73.80651018671028,40.82315261172038],[-73.80638355086955,40.82289276213075],[-73.80629982379592,40.82283597373449],[-73.8060479275223,40.82291108114825],[-73.8059516912445,40.82288259534941],[-73.8061476308591,40.82281683527484],[-73.80622242082096,40.82274142998943],[-73.80621136474034,40.82260935291477],[-73.80582465647007,40.82176778979412],[-73.80585139220267,40.82154697180628],[-73.80595822489678,40.821428043773345],[-73.80599159848938,40.820823558490055],[-73.80572802989732,40.820177338695],[-73.8046193127151,40.81902711421486],[-73.80405403182952,40.81856993978952],[-73.80348320649314,40.81827698546659],[-73.80267407634163,40.81823857509142],[-73.80252163401921,40.81852598780329],[-73.80230024253227,40.81848471629446],[-73.80207892938016,40.818556736969704],[-73.80203991576234,40.818466448695965],[-73.80188453083619,40.8183589508892],[-73.80111526353963,40.81810654009471],[-73.80081280395596,40.81809119590072],[-73.80070762635805,40.818045097792684],[-73.80058906737115,40.817935428096646],[-73.80057291144517,40.81770009433161],[-73.80032337978146,40.817562833914494],[-73.79849679070347,40.8169061477824],[-73.79812765298064,40.81681406993203],[-73.7979480421167,40.81662280175245],[-73.79759032777326,40.8165075320701],[-73.79738112573536,40.81576350489561],[-73.79771465236783,40.81551329274338],[-73.79811945293628,40.81569878450065],[-73.79864220712756,40.81546401593629],[-73.79902816313998,40.81554113493865],[-73.79994678252413,40.81444956569055],[-73.80011146864278,40.8140245255606],[-73.80048824791565,40.81386700886415],[-73.80091593237641,40.81376140250651],[-73.80131991856456,40.81326090053895],[-73.80145800517316,40.81294094720311],[-73.80174561215964,40.812865017415675],[-73.801426344477,40.81242442153609],[-73.80137385985101,40.81244424632479],[-73.80133906141207,40.81239373439238],[-73.80140380968851,40.812363308658504],[-73.80175932114672,40.81286139698611],[-73.80216842800735,40.81275699423703],[-73.80259050610674,40.81250931940335],[-73.80304775394212,40.81244870819222],[-73.80347049567385,40.81255936585385],[-73.80361390224267,40.81252110662251],[-73.8036503484747,40.812606140520444],[-73.80351997906503,40.81292187125157],[-73.80362063328037,40.812964740817705],[-73.80373757162417,40.812793607519964],[-73.80377912019883,40.81280990604299],[-73.80361429261185,40.81304451442551],[-73.80423653201754,40.81364652799322],[-73.80435810346694,40.81360853867395],[-73.80415365301046,40.81373067286509],[-73.80422899591791,40.813663305211655],[-73.80355921193643,40.81304271217225],[-73.80361455805945,40.812972191191555],[-73.80351370643075,40.812935243289374],[-73.80338820741234,40.81312996652125],[-73.80325294454983,40.81319677354994],[-73.8032354331692,40.81329636637069],[-73.80346101380125,40.81332924375751],[-73.80323201378715,40.81331580967364],[-73.80322449366628,40.813358580521204],[-73.80345519299765,40.81340269099051],[-73.80396704523274,40.81396655325652],[-73.80409073408262,40.81395152475965],[-73.80443465897423,40.814293196487164],[-73.80453081609834,40.814254619924334],[-73.80443367657365,40.81431888559725],[-73.80403602000496,40.81396304812018],[-73.80395955345402,40.813988085558215],[-73.80343042109999,40.81342211984283],[-73.80322176299295,40.813374109942174],[-73.80319870538823,40.8135052405721],[-73.80351667337368,40.81395196364861],[-73.80418033130357,40.814589962811425],[-73.80431466904538,40.8145921604809],[-73.80439172006534,40.814537856201675],[-73.80443003333593,40.81458306261309],[-73.80432977892737,40.81460314258581],[-73.80447282080517,40.81488983165107],[-73.80471812332823,40.81523050509393],[-73.80511465511805,40.81563584935954],[-73.80596026416019,40.816042449239404],[-73.80619919500414,40.81628707077276],[-73.80628451814465,40.816268486892234],[-73.80641593661197,40.81651369035878],[-73.80657247326316,40.81660635539348],[-73.80630968775057,40.81614680715772],[-73.80611761373763,40.81595220882348],[-73.80537878784826,40.815482620282644],[-73.80508103532989,40.815197963511096],[-73.80455440585166,40.8146298417356],[-73.80465942815182,40.814544988619396],[-73.80468358440335,40.81457194040202],[-73.80458924572575,40.81462151114396],[-73.80527878825231,40.81537726427368],[-73.80610141798051,40.81591971645123],[-73.80632932632463,40.816137958316084],[-73.80661216122775,40.81657794543156],[-73.80671968053218,40.81657517074803],[-73.80657923698048,40.81661807421051],[-73.80660603189658,40.81666449404107],[-73.80692933243698,40.81656837907782],[-73.80653572493948,40.81589198638626],[-73.80694199601903,40.816564614221825],[-73.80704600153508,40.81653369387528],[-73.80694686997859,40.81621407857676],[-73.8066287348945,40.8156838397062],[-73.80657844298625,40.8157303146856],[-73.80640177811456,40.81570203064949],[-73.80641230578713,40.81566444938956],[-73.80661773802609,40.81566855824343],[-73.80659328405628,40.81561670615362],[-73.80567498554065,40.815212292189734],[-73.80531902580664,40.81478131299821],[-73.80516580583368,40.81368508069285],[-73.8051922436925,40.81314382111635],[-73.80505213646258,40.812894962434115],[-73.80479686677103,40.812727892155756],[-73.804387197251,40.81222979321458],[-73.8042149150752,40.81216226582476],[-73.80390281789283,40.81214399837649],[-73.80361382082164,40.81193828205911],[-73.80334845213235,40.81163206806386],[-73.80316660739412,40.8112676963761],[-73.802725954659,40.810630164398184],[-73.80224245268205,40.8101973936592],[-73.80204964632904,40.81016071487724],[-73.80135552813063,40.81071084489602],[-73.80115707624914,40.810587765615004],[-73.80101172909848,40.810713399647284],[-73.80124032464401,40.810479339739246],[-73.80146670007326,40.81014171796309],[-73.80010949982932,40.809710953576825],[-73.7985376596496,40.80958707552967],[-73.7937634697612,40.80745116787284],[-73.79228907337428,40.806849005579465],[-73.79166240652069,40.80688291241791],[-73.79140059876885,40.8069978779323],[-73.79130157564595,40.8071725205841],[-73.79159005331321,40.807411598721835],[-73.79152359087904,40.80748908731247],[-73.79144175664936,40.80749974928733],[-73.79086475738721,40.80734113943538],[-73.790739033351,40.806971042540276],[-73.79073480049921,40.80658882885776],[-73.79042839442933,40.80632664991074],[-73.79025263728609,40.80601919652201],[-73.7901246322796,40.8057715598845],[-73.79006256261906,40.80540894183319],[-73.79028410874172,40.804817103688784],[-73.79065958257814,40.80448579258209],[-73.79103717449442,40.804263031700785],[-73.79169448000965,40.80412191786076],[-73.79206204901796,40.80410089214104],[-73.79224529219165,40.803996364314834],[-73.79284911697782,40.804167128048746],[-73.79338982352864,40.804204330037415],[-73.79400631451684,40.80463795216527],[-73.79401383625991,40.80482686129678],[-73.79451648626262,40.80500321868417],[-73.7950490247924,40.80560929472433],[-73.79577769327854,40.806162949027986],[-73.79584187328574,40.806168721200976],[-73.79601037569105,40.80592103186699],[-73.7961882392365,40.805996877675035],[-73.79620903473196,40.8059685904618],[-73.79650268526504,40.80610443548742],[-73.79636945999798,40.80627720276659],[-73.79702945544382,40.806345377216374],[-73.7979196776941,40.80669422705056],[-73.79885945699856,40.80713647295009],[-73.8005768437576,40.8083118247615],[-73.8019523837673,40.80900282644547],[-73.8025035046621,40.80911406594116],[-73.8029592168226,40.80907708272326],[-73.80359386615072,40.80875717047788],[-73.80373154099397,40.80853414303246],[-73.80392673417202,40.808527970811646],[-73.80405363887618,40.808751658089946],[-73.80467808413027,40.80922579878002],[-73.80501511652442,40.80944269570697],[-73.80506135232702,40.80936497193477],[-73.80511892265707,40.80939693436304],[-73.80503639918942,40.80945560231065],[-73.80621482271205,40.81004741226068],[-73.80713987884191,40.810661676453726],[-73.80759470369259,40.81126928328998],[-73.80822799216618,40.8118910021971],[-73.80894087630172,40.812411655877696],[-73.80992029081794,40.81292915226175],[-73.81026812328562,40.81299948037328],[-73.81050159246402,40.812964941433876],[-73.8105983227575,40.81293882410212],[-73.81066931287849,40.81276436653753],[-73.8107847786834,40.81277095135498],[-73.8109049420004,40.8128893543459],[-73.81107747886252,40.81288183577515],[-73.81124703768344,40.812993290874715],[-73.8115660742594,40.81305400191509],[-73.81177347317576,40.81304371861299],[-73.81185065747442,40.812939400040236],[-73.81194127077774,40.81302983071729],[-73.81276572662648,40.81315863066579],[-73.8131338179631,40.81333105424301],[-73.813470052449,40.813392518454435],[-73.81359806345645,40.81332634208564],[-73.81355246113387,40.813431990941574],[-73.81388857435476,40.813589888576956],[-73.81415712366729,40.81352089225854],[-73.81443067312568,40.813518375213114],[-73.81446017919363,40.81296310225662],[-73.8143693843687,40.81293640140596],[-73.81449994116008,40.812908287604465],[-73.81461860845127,40.812966897238695],[-73.81449745463847,40.81296493146695],[-73.8144772719115,40.813518541338546],[-73.81566326391933,40.813512039744516],[-73.81576169303902,40.81357184982207],[-73.81587919093572,40.8137670553638],[-73.81620056962727,40.81384747547523],[-73.81648015546817,40.81385323187879],[-73.81667835320107,40.81380043946822],[-73.81674850706985,40.81370849777123],[-73.81737201693147,40.813574343805435],[-73.81735988456762,40.81337571953463],[-73.81738942157673,40.81357073625166],[-73.81792084127711,40.81354467959809],[-73.81793546303673,40.81329796423282],[-73.81797608953171,40.81329902414741],[-73.8179580717675,40.81354108952956],[-73.81804229161196,40.81353296785627],[-73.81808440601239,40.81346930619028],[-73.81874391583465,40.81342608835087],[-73.81981638454957,40.813179933155894],[-73.82006955436928,40.81304473862033],[-73.82010759340305,40.812864069665395],[-73.82039207280259,40.8128440140072],[-73.82041302954497,40.81297161112398],[-73.82055521583467,40.813017655077914],[-73.82049024326341,40.81283644919555],[-73.8204459503246,40.812845231399336],[-73.82040420163088,40.81277435579994],[-73.82046249897569,40.81275674407809],[-73.82043933256568,40.812707141586515],[-73.82024436122057,40.81243067757397],[-73.82106512137238,40.81220359146327],[-73.82032355582037,40.81243965219591],[-73.82042087950599,40.81263807250519],[-73.82112969804916,40.81244975686682],[-73.82044179624144,40.812657577836184],[-73.82056254897576,40.81280823782282],[-73.82052755133459,40.812825885699425],[-73.82058709143993,40.81301944660809],[-73.82117960695338,40.81295258706848],[-73.82125429497233,40.812904906205375],[-73.82122415255708,40.81284998084557],[-73.82141253439897,40.812872952477996],[-73.82139426361707,40.81284139332032],[-73.8214572357868,40.812818477967866],[-73.82142259915258,40.81270158730636],[-73.82151718504765,40.81284732123437],[-73.82168925261544,40.81276832745507],[-73.82169530549903,40.81266483427244],[-73.82175599067496,40.8127685360242],[-73.82210994475064,40.81270087964385],[-73.82209150008235,40.81262827121305],[-73.82217757126165,40.812679740811674],[-73.82228290891894,40.812661499788575],[-73.8221341396916,40.812366339030184],[-73.82217145218742,40.81235400527641],[-73.82230863493984,40.81265821507751],[-73.82263918380586,40.81257600681351],[-73.82272558091378,40.81250532945066],[-73.82339468020488,40.81235588549543],[-73.82345068402803,40.81232410603195],[-73.82347433550349,40.8121913737791],[-73.8235579887495,40.81227647361681],[-73.82362089732929,40.81227656987347],[-73.8240638743264,40.812169261023605],[-73.82453550423837,40.81198695467623],[-73.82459615745503,40.81176999506635],[-73.8247105112523,40.81169935840606],[-73.82479433788629,40.81171895857951],[-73.82487321949918,40.81184653686495],[-73.82505782163031,40.81182991738415],[-73.82480905359998,40.81143928159995],[-73.8249276238048,40.81153682481717],[-73.82507659171799,40.81182331338743],[-73.82524350467835,40.81176134024005],[-73.82487938938083,40.81127298382816],[-73.82491670053443,40.811260649183424],[-73.82526664318084,40.81175234789848],[-73.82549075318566,40.811659330423375],[-73.82523137433445,40.81120978879368],[-73.82551303817354,40.811649133409354],[-73.82565070232086,40.81159229041246],[-73.82535766859547,40.811027643923715],[-73.82567229150942,40.81158474373135],[-73.82576645033132,40.811551828553334],[-73.82549979349378,40.811027859126284],[-73.82553710461548,40.81101552428062],[-73.82581255718914,40.81153370452031],[-73.82592714984659,40.81148650139663],[-73.8257975590523,40.81120533513715],[-73.82595641099937,40.811474448435064],[-73.82611489654711,40.81140637529221],[-73.82622408746889,40.81128177016078],[-73.82725143185944,40.81142859353318],[-73.82821837553483,40.8114245919946],[-73.82878878953309,40.81134066805125],[-73.82933832665823,40.81119735027769],[-73.83017915334241,40.810834549441424],[-73.83094750433294,40.81030208812424],[-73.83147437754202,40.809775148273935],[-73.83187885008874,40.80918908106159],[-73.83216616999695,40.80850227770465],[-73.83222893608713,40.80798448301815],[-73.83215633709617,40.807467430904715],[-73.83188006068278,40.80685291305505],[-73.83180127454271,40.806737296271024],[-73.83167234019635,40.8067107838823],[-73.83162063274523,40.80662812868062],[-73.83168311355237,40.80653059631807],[-73.83191271615328,40.806493899790375],[-73.83205996881212,40.80635786381793],[-73.83196088503047,40.80591629126152],[-73.83167187882789,40.80540184114147],[-73.83161574455448,40.80493825599323],[-73.83301374158219,40.80497102772727],[-73.83431545174605,40.80516265676174],[-73.83506866790083,40.80535872729893],[-73.83589256578401,40.80566144848108],[-73.8369122565336,40.80592909372446],[-73.83743612126004,40.80620264268057],[-73.83806076528188,40.807039774693294],[-73.8380486642201,40.80755797010692],[-73.83824420940378,40.80817680987221],[-73.83848257568471,40.80849122098715],[-73.83861835755931,40.80886277009491],[-73.83897298765969,40.80951471944556],[-73.8391878232663,40.80974161193367],[-73.84008711634797,40.81126606864291],[-73.84025952896259,40.81144303678274],[-73.84030146989987,40.81169752067082],[-73.84026339044419,40.81203106239279],[-73.84043199540832,40.812541128739475],[-73.84029454871819,40.81285564980105],[-73.84032701554435,40.81313578813778],[-73.84026867680392,40.81328047502381],[-73.84002346992021,40.81362002317765],[-73.83966236683467,40.813921645583214],[-73.83962901669685,40.81400971805184],[-73.83965775448638,40.81411676059539],[-73.83956806528747,40.81449124911066],[-73.8395309148115,40.815183454949],[-73.83961742551556,40.81538184382537],[-73.83953766669553,40.81581918222215],[-73.83971280651028,40.81617660509007],[-73.8397435594376,40.81640607150278],[-73.83696070270669,40.81634054053473],[-73.83667856364178,40.817588762913694],[-73.83666068662247,40.81797116118242],[-73.83650145938019,40.818710659292364],[-73.83614239503905,40.81919890299804],[-73.83612598954788,40.82349743203129],[-73.83626003629826,40.824971880684814],[-73.83661819651613,40.82711414869367],[-73.83691608907723,40.828451826101585],[-73.83709061375835,40.8289671473109],[-73.84032294763234,40.82882395122286],[-73.84228428309754,40.82864660498179],[-73.84233077411112,40.82907396245278],[-73.84223013648113,40.8298306912489],[-73.8418864384061,40.83071317653535],[-73.84084584591342,40.83174852432989],[-73.84075047303119,40.83177986361094],[-73.84024396311139,40.83220402332108],[-73.8394341192846,40.83298338028857],[-73.83918095199304,40.83315611875247],[-73.83899809143148,40.833382455358084],[-73.83885232384733,40.83369066784823],[-73.83881438398808,40.8339581193044],[-73.83892926676722,40.8344271980851],[-73.83896515672909,40.83500631575781],[-73.83923392305779,40.83674104025823],[-73.83918642065144,40.83710741592501],[-73.83926310319262,40.83720488547756],[-73.83922069324056,40.83739247261558],[-73.83928671889561,40.838042244632504],[-73.83915984293945,40.83845984565505],[-73.8391925523571,40.83871362805776],[-73.83936180403171,40.83880178471587],[-73.83958953765698,40.83879848582566],[-73.83972014383187,40.83956540598428],[-73.83956700266877,40.84054722788649],[-73.8393679425065,40.84088297348177],[-73.83839056225075,40.84067681413417],[-73.83771374829361,40.84040630951643],[-73.8376700161719,40.841121907655555],[-73.83688925154424,40.84337478830599],[-73.83582911407471,40.8434712946941],[-73.83294076425594,40.84351915996679],[-73.83043186358091,40.84385798363005],[-73.82757536047414,40.84473187468047],[-73.82611300711154,40.84533869377129],[-73.82624132909858,40.842993594144396],[-73.82598686895278,40.84067575238659]]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX07",NTAName:"Bronxdale",Shape_Leng:17426.9992191,Shape_Area:15194897.6072},geometry:{type:"Polygon",coordinates:[[[-73.86137924069502,40.87133651214145],[-73.86156274129895,40.86554946455496],[-73.85961281183101,40.86551271811236],[-73.85890956790672,40.86463692612592],[-73.85806098499039,40.863042359762645],[-73.85780378831065,40.86303621662235],[-73.85735319614342,40.85971160584967],[-73.85663774604133,40.85811917198921],[-73.86758752468768,40.857830089651884],[-73.86807772351477,40.85784684234343],[-73.86817334023647,40.8579185492957],[-73.86818830558833,40.85806383380827],[-73.86841539696033,40.85778035764108],[-73.86954868104695,40.85772602967981],[-73.87088983898644,40.85727281781133],[-73.87100227739215,40.85727684269108],[-73.87108262579078,40.85737703963335],[-73.87057937656577,40.86140455342528],[-73.87038854722981,40.86405387629927],[-73.87056192524662,40.871510778453704],[-73.86137924069502,40.87133651214145]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI05",NTAName:"New Springville-Bloomfield-Travis",Shape_Leng:109225.694407,Shape_Area:327752859.629},geometry:{type:"Polygon",coordinates:[[[-74.19555975259358,40.635023986130555],[-74.18368791092843,40.628737925050686],[-74.18190235713591,40.62775580720619],[-74.1799370604792,40.62660129652092],[-74.17888390573705,40.62593287173687],[-74.17828177368064,40.625451361419955],[-74.17610052793091,40.62340624288138],[-74.17519625666323,40.622706243880586],[-74.17459706258596,40.62236401199165],[-74.17361244094337,40.6219487408698],[-74.17236261023876,40.621635798864965],[-74.16953656511417,40.62127050010983],[-74.16888894245777,40.62115114335061],[-74.16808086339643,40.620936256187015],[-74.1648419038537,40.61957240490336],[-74.1616301032681,40.61793493640935],[-74.15986704925254,40.616813225100174],[-74.15792673862424,40.61545742460415],[-74.15018666451151,40.60949781115523],[-74.14954343557085,40.60962717289027],[-74.14878329527237,40.60919998717098],[-74.14826912001008,40.60896670999483],[-74.14690609333098,40.60846834048587],[-74.14549413001637,40.60813857257147],[-74.14471100624272,40.608034297118394],[-74.14391816414114,40.60798983747879],[-74.14283290552227,40.607992595485555],[-74.13215051174825,40.60855196388084],[-74.13210459722455,40.608152924106314],[-74.1309400232729,40.60821431241529],[-74.12874897506448,40.60839174103171],[-74.12650911524376,40.60866290780352],[-74.12350639197315,40.609233602197115],[-74.12135179626337,40.60976526866158],[-74.1211687988175,40.60883437596133],[-74.11834442054459,40.60914412673404],[-74.1174246645393,40.60928900941378],[-74.11706965273336,40.60820624975493],[-74.11649318843428,40.60765675164923],[-74.11615857789457,40.60748094796884],[-74.1158771640141,40.607257470533895],[-74.1151134259586,40.60253381737307],[-74.11487058414056,40.60213665954404],[-74.11500031023066,40.602074285992515],[-74.11684368719311,40.601894807453775],[-74.12059546276707,40.601809758239554],[-74.1205557676572,40.60104529194858],[-74.12059578084879,40.60086693733128],[-74.12070424315331,40.60070598094703],[-74.1222942505616,40.599687177518796],[-74.12264348705796,40.59941858473046],[-74.1231857906992,40.59919511584047],[-74.12322499734954,40.59909695322756],[-74.12470164773828,40.59830492609312],[-74.12506115510087,40.59818005633407],[-74.12545223411504,40.59813734974918],[-74.12798105653137,40.59842483609134],[-74.13091909425592,40.598855048153986],[-74.13099847667208,40.5986215420735],[-74.13123935852082,40.59830974875968],[-74.13205430801169,40.597818705713486],[-74.13281306469479,40.59724097358987],[-74.13378749564957,40.596330532161616],[-74.1351017678228,40.594535032674735],[-74.13639761390274,40.59197345705154],[-74.13659957140696,40.59166794779334],[-74.13849744236346,40.58931370523234],[-74.13864458593694,40.589060804809776],[-74.14168277456251,40.58874118495153],[-74.14387326730917,40.588615299377],[-74.14636402137597,40.58855786922573],[-74.14790576542231,40.58855634617002],[-74.14819807748574,40.588599680504984],[-74.14846882501762,40.5886985419927],[-74.14972777163992,40.58949250358195],[-74.15537259655407,40.592597338963515],[-74.15610300430006,40.593047475550506],[-74.15989227948343,40.59517014157221],[-74.16025756093406,40.59534393813316],[-74.16189940578211,40.59529877113198],[-74.16188841107332,40.594837457613465],[-74.16200420840285,40.59432634264854],[-74.16219305322508,40.59384151639109],[-74.16261028361865,40.59315453244862],[-74.16323016948155,40.59257129408526],[-74.16578641259233,40.5907078038004],[-74.16770593043519,40.588820819784694],[-74.16796294073042,40.588304028666],[-74.168429162774,40.58649792324047],[-74.16962345008565,40.57842904391853],[-74.16995465642665,40.57345803830359],[-74.16994243590669,40.57190862076039],[-74.1696855881454,40.56959152118392],[-74.16962643418672,40.56829840962703],[-74.16982582316331,40.56109042060551],[-74.17065530963951,40.56119644638819],[-74.17146296076179,40.56137542947303],[-74.17348507995895,40.562267489964086],[-74.17488750422397,40.562826419265335],[-74.17659366074243,40.563241329320675],[-74.17794544208279,40.563983366606685],[-74.18159556472735,40.56531796146255],[-74.18225953233575,40.56547235023007],[-74.18295816011033,40.565480200239584],[-74.1834031174432,40.565404962385614],[-74.18425030575975,40.5651089905578],[-74.18525395953219,40.564549354714295],[-74.18627446177058,40.564325527074026],[-74.18726897630076,40.564041693798515],[-74.18909923999354,40.56368927163293],[-74.18947754611422,40.56358099017063],[-74.18997973128205,40.56331160588608],[-74.19056041268846,40.56276545593749],[-74.19101021734862,40.56256940218957],[-74.19146034313165,40.56251942938373],[-74.19191967465481,40.56252570492366],[-74.19288348022269,40.56265384000212],[-74.1931738836402,40.56260434437123],[-74.19341094704862,40.56248503957836],[-74.19407564538379,40.56207847367047],[-74.1976948122143,40.55888705352012],[-74.20018273922574,40.55645443356851],[-74.20062607249068,40.55613226191024],[-74.20091501343462,40.55600526099166],[-74.20142165352208,40.555898410343005],[-74.20194631750013,40.55587385212482],[-74.20261207186815,40.5559477064235],[-74.2031482603452,40.556061784616574],[-74.20353219210544,40.556231009260046],[-74.20398450075923,40.55661748457142],[-74.20520041175838,40.55733222053218],[-74.20613872534233,40.55754450567573],[-74.20699885281918,40.557567489102745],[-74.20569605157344,40.55851600560037],[-74.21324031474563,40.55667262373701],[-74.21313586328942,40.557051009891],[-74.21294006315475,40.557206720406484],[-74.21264343798912,40.55728972655433],[-74.21267302665483,40.55764756000803],[-74.21226950403724,40.557972792057406],[-74.21199843230148,40.55837806697711],[-74.21175620455129,40.55912475727615],[-74.21178440021971,40.55918790691376],[-74.2119702923471,40.55929773757571],[-74.21188042321681,40.55959693786176],[-74.21117826608182,40.56044684290718],[-74.21117303560399,40.56073012838591],[-74.21129678768314,40.56086088513545],[-74.21134005347224,40.561230353084035],[-74.21119328295504,40.56154221937723],[-74.21109600355074,40.56213147078917],[-74.21134392485384,40.56292331278024],[-74.21137997858779,40.56349220527483],[-74.21096277401227,40.564290450150224],[-74.21074330542261,40.5652281791291],[-74.21062343743944,40.5655202001745],[-74.20954125923305,40.567514584873244],[-74.20953467232908,40.56792804865803],[-74.20938515429171,40.56796172513164],[-74.20932175268335,40.56802530075689],[-74.20924168547243,40.56840985887977],[-74.2090581665101,40.568575017520516],[-74.20886661112192,40.56890979392914],[-74.20884309550478,40.56909028067201],[-74.2089263632867,40.56962429844997],[-74.20875830301408,40.56980773732964],[-74.20861881832596,40.56986258560527],[-74.20845933029507,40.57017825116346],[-74.20825567570813,40.57029184662187],[-74.20801705381419,40.57051795740073],[-74.20801360133798,40.57062336385581],[-74.20816851102188,40.57071942341424],[-74.20783559014976,40.572610000446446],[-74.2072629827322,40.57411302777154],[-74.2070780041026,40.57426633971401],[-74.20708141086648,40.57437199944074],[-74.20722650206052,40.574486796411705],[-74.20709136979463,40.574604446795945],[-74.2070702430027,40.574743025323485],[-74.20728431413175,40.575254532872584],[-74.20710601770276,40.57535582393278],[-74.20697412386819,40.57552512720596],[-74.20681205626775,40.575922020188194],[-74.20688655587763,40.57621727105957],[-74.20708917179341,40.576305589836174],[-74.20692739963451,40.57654399035156],[-74.2067027473594,40.576543180016756],[-74.206580405319,40.57665273633409],[-74.20653125495603,40.57690163736768],[-74.20669297509632,40.57698904544462],[-74.20681606548132,40.57712124178393],[-74.20680827961654,40.57717956828994],[-74.2067160282676,40.57723075758007],[-74.20663528303699,40.57739612172639],[-74.20650468364384,40.57741214977011],[-74.20632344195356,40.577538818964825],[-74.2061811721045,40.57790352758718],[-74.20617390206719,40.57816347474193],[-74.20591732509241,40.57861664705101],[-74.20599255081491,40.58041038393589],[-74.2057649415563,40.58065581016018],[-74.20572403289714,40.58096568893213],[-74.20541737056935,40.581069486480246],[-74.20528796822211,40.58120288159002],[-74.20526700378385,40.581373875096126],[-74.2050813698708,40.581599468300034],[-74.20512367362882,40.58178121933346],[-74.20507012464702,40.5819148905235],[-74.20513225919501,40.5820665214702],[-74.20508854474669,40.58220819007017],[-74.20496559453859,40.58256372107794],[-74.20486430388439,40.5826696938312],[-74.20476976290908,40.5826912346548],[-74.20470911902726,40.582797669406794],[-74.20473901192639,40.58317590192997],[-74.20462417365786,40.583206562938145],[-74.20440076499612,40.58371294584075],[-74.20446835300697,40.58404302457127],[-74.20463390274026,40.58432323880008],[-74.2043643389893,40.58463414886806],[-74.2044420011903,40.58505023288675],[-74.20441471729546,40.58552367482355],[-74.20431893886213,40.5856007842591],[-74.20433621964571,40.585751428174945],[-74.20413954494434,40.585836197054654],[-74.20411940324256,40.58589554107457],[-74.204274942826,40.586110054126955],[-74.2042022853119,40.586414202142414],[-74.20426533002741,40.587320534540346],[-74.2043782010292,40.587560770747686],[-74.20438633388248,40.58792835634493],[-74.204542122941,40.58799326446238],[-74.20458065694643,40.58821760318002],[-74.20449833794224,40.58834277618763],[-74.20427270399198,40.58848255544932],[-74.20426068074411,40.58862702300178],[-74.20418131762771,40.58866637255662],[-74.20412200964363,40.58888147442012],[-74.20420368247349,40.589087300784016],[-74.20432302142393,40.58913661747331],[-74.20457422072786,40.58871913882288],[-74.20470529848627,40.58877237083055],[-74.20443548400782,40.589218397291695],[-74.20464608943209,40.5892857454658],[-74.20440892617518,40.589706763810376],[-74.20420300609162,40.589642971741675],[-74.20385886609276,40.59024952536162],[-74.20369974335647,40.59019990597221],[-74.20394167611984,40.58980739639928],[-74.20388550456217,40.58978610973625],[-74.20265866971728,40.59072214527977],[-74.20253496906807,40.590647960160226],[-74.20237763610119,40.59064471249894],[-74.20201405533291,40.59089579862243],[-74.20246775956585,40.59083882485733],[-74.20305254911503,40.59114054180982],[-74.20296340195645,40.59123092277663],[-74.20245495063136,40.590951125851966],[-74.202027339207,40.59099907929196],[-74.20212378233109,40.591253326955375],[-74.20189898808043,40.59139325270466],[-74.20184092923174,40.59163648336182],[-74.20200349813027,40.59178076479501],[-74.20230284591756,40.591469321774326],[-74.20231645768172,40.59152396460013],[-74.20202032457777,40.59178671501953],[-74.20205960871616,40.59180885418954],[-74.20200944557337,40.591860299961034],[-74.20194367621755,40.59182367411992],[-74.20175478948575,40.592017324818414],[-74.20182443675536,40.59205295636847],[-74.2017824829247,40.59209513428419],[-74.20172160160585,40.59205302167911],[-74.20130339394395,40.59253148864053],[-74.20092540496358,40.59286637930483],[-74.20074880806405,40.59275033941975],[-74.20047126880445,40.592811752111515],[-74.20033102130921,40.593095398803214],[-74.1997406100636,40.59356466906813],[-74.19936212345475,40.594094082291775],[-74.19949357986884,40.594240640918635],[-74.19948344927111,40.594320936251464],[-74.19902465726129,40.59467644801812],[-74.19887443607037,40.59494492775922],[-74.19873232619663,40.595011798309336],[-74.19856137143587,40.595552781012294],[-74.19800880077607,40.59626183714957],[-74.19795002851602,40.59647035480367],[-74.19763717782158,40.59677668374834],[-74.19751357652777,40.59679898603787],[-74.19752238496353,40.59736454834916],[-74.19745243380663,40.5975577589928],[-74.19749670863952,40.59772425960453],[-74.19738378893929,40.59780564230558],[-74.19730619779754,40.59805952223979],[-74.1974176437266,40.598203679702245],[-74.19743893251952,40.59846083405213],[-74.19875958205299,40.60171197517623],[-74.20014866759911,40.603683350098684],[-74.20138527406581,40.604636966209604],[-74.20221849851056,40.60596967961648],[-74.20281628374592,40.608270827967296],[-74.20267299169083,40.609827861231885],[-74.20230179014108,40.611875642039],[-74.20244374449372,40.613284693429335],[-74.20038348428669,40.61642809723858],[-74.2005898651198,40.61702892738828],[-74.20082804386197,40.61709428804823],[-74.20091423238283,40.61779882239858],[-74.20087478740132,40.61810041085585],[-74.20078290383938,40.61811167572139],[-74.20069507526793,40.617979433723306],[-74.20054156331668,40.61799763899097],[-74.20043867109607,40.61807554666409],[-74.20035203856096,40.618342198052105],[-74.20051657149043,40.618634034631995],[-74.20083991516596,40.61880430260612],[-74.20069799274243,40.618949758130746],[-74.20068071348872,40.619168454348056],[-74.20082091631808,40.61956881248706],[-74.20096499698896,40.61976758058444],[-74.20103548394708,40.62009545580406],[-74.20098684450282,40.62032189395892],[-74.20106997403124,40.620381539773575],[-74.20077407925913,40.6203948700693],[-74.20050588195714,40.620299671597486],[-74.20045783164859,40.62035015153808],[-74.20049514742384,40.62045771059107],[-74.20042800191919,40.62049541101681],[-74.20052688004162,40.620572967453725],[-74.20087331582049,40.62059115472111],[-74.20112138194693,40.62107332293814],[-74.20125847310118,40.62155483087217],[-74.20143239998039,40.62161260896531],[-74.20130810779165,40.621658098267176],[-74.20123089137527,40.62207421099058],[-74.20132414578998,40.622515648995446],[-74.20127534263133,40.62268827628604],[-74.20154553334768,40.622698052023075],[-74.20163201038157,40.62312156545854],[-74.20158494435563,40.6234983336814],[-74.20134408905349,40.623552568644286],[-74.20139733073573,40.62373612103805],[-74.20107662790333,40.624078346589755],[-74.20114394216387,40.62446772727587],[-74.20097848041377,40.625362325463385],[-74.20106090574285,40.625557784350704],[-74.201060800333,40.62589517900682],[-74.20118252353666,40.62611021520685],[-74.20121615531617,40.62605377106962],[-74.20141670667759,40.62607051339313],[-74.20098625499446,40.62934414810745],[-74.2008047968128,40.62933257144424],[-74.2007548389544,40.62959463411343],[-74.2006212328852,40.62958763810806],[-74.20047681715856,40.629657077505016],[-74.20042573785116,40.629821165953324],[-74.20040812771617,40.63025010069454],[-74.20072423728027,40.630275007317245],[-74.20077355841023,40.63024597590123],[-74.20078729982787,40.63034627346265],[-74.20074638478476,40.63037043474741],[-74.20070838016241,40.63032380890615],[-74.20040311577092,40.630292362268506],[-74.20018462159052,40.63132866946418],[-74.20035346710823,40.63137723655126],[-74.20041809054722,40.631348588698366],[-74.20040380373153,40.6314458206772],[-74.20017265407732,40.63136108053098],[-74.2000207995478,40.6316207362025],[-74.19869022104285,40.632698760932506],[-74.19850080562588,40.63279791127435],[-74.19834081295305,40.632963826979754],[-74.19840057854891,40.63307903541763],[-74.19834358329685,40.633141487706276],[-74.198159986581,40.63323490833667],[-74.19795939007535,40.63326685737902],[-74.19759109214637,40.633081284078585],[-74.19746144974155,40.63322158900544],[-74.19728675222719,40.63329193057949],[-74.19722682789022,40.63350130305231],[-74.19728584360946,40.6337429293748],[-74.19714960710617,40.63392851677316],[-74.1968861875395,40.63394946748075],[-74.19646965159134,40.63413553368534],[-74.196332892298,40.634526118816225],[-74.19618464614517,40.63462572456367],[-74.19619879725178,40.63473020967253],[-74.19603303863278,40.63487718727613],[-74.19602904691304,40.6349958483044],[-74.19588355396762,40.63506696183722],[-74.19555975259358,40.635023986130555]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI32",NTAName:"Rossville-Woodrow",Shape_Leng:33248.9664323,Shape_Area:64948359.9859},geometry:{type:"Polygon",coordinates:[[[-74.2031482603452,40.556061784616574],[-74.20326490006957,40.555628476993355],[-74.20097039276392,40.55079013934031],[-74.19985031615555,40.548132419104526],[-74.19730759116851,40.54326204572504],[-74.19609298383745,40.54049773687561],[-74.19237403412298,40.53304061056431],[-74.19174368836767,40.53191669720956],[-74.19313383033797,40.531194915641734],[-74.1939845692255,40.53087104713313],[-74.19608390164515,40.52991174723517],[-74.19909783767159,40.52829964529554],[-74.19984360510149,40.52785744105145],[-74.20071057528436,40.52722595238272],[-74.20103324175668,40.52691941535216],[-74.20152661625093,40.526265206398065],[-74.20276973338426,40.5259072180798],[-74.20755306474628,40.52524734900318],[-74.20806338753552,40.52523893851992],[-74.2088276965507,40.52537989901121],[-74.2091966020294,40.525376579771965],[-74.20961205809617,40.52522663513917],[-74.20983404366756,40.524990767691605],[-74.21028201852559,40.524721067197156],[-74.21142518383878,40.524414101550455],[-74.21229294528406,40.524276853080295],[-74.21567230421208,40.52395762836103],[-74.21559699290884,40.52406106962403],[-74.2156078363909,40.525494739255706],[-74.21574341097,40.52646400559],[-74.21684517077536,40.52864208718379],[-74.21728324509621,40.529873283052076],[-74.21800676455497,40.53229859022725],[-74.21831515237022,40.535312078801915],[-74.21791053490651,40.53702886088401],[-74.21770976122995,40.53831199324509],[-74.21767785777907,40.5401315469949],[-74.21776941644573,40.54112662992638],[-74.21844432487109,40.54296409475553],[-74.22131562715371,40.550253073856474],[-74.22114869825641,40.55048965840333],[-74.21911576457275,40.55223231413673],[-74.21778377707878,40.553049188028666],[-74.21777232653842,40.553244885044165],[-74.21789204427934,40.553835854855315],[-74.21784397860512,40.554432717640516],[-74.21721338161525,40.5547148589435],[-74.21509339688767,40.55549893255675],[-74.21473803016869,40.55557613295464],[-74.21350175561112,40.55566761810389],[-74.2122003409283,40.55644343036042],[-74.2105078944707,40.55706418186715],[-74.20699885281918,40.557567489102745],[-74.20613872534233,40.55754450567573],[-74.20557588439554,40.557443592962585],[-74.20506288318221,40.557277876271094],[-74.20398450075923,40.55661748457142],[-74.20353219210544,40.556231009260046],[-74.2031482603452,40.556061784616574]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN41",NTAName:"Fresh Meadows-Utopia",Shape_Leng:22107.1249254,Shape_Area:27774859.4949},geometry:{type:"Polygon",coordinates:[[[-73.7775750688206,40.73019327580699],[-73.78116054967619,40.72921275859892],[-73.79085659843834,40.72602748929767],[-73.79174472669787,40.725788850395666],[-73.7937893865178,40.73070118166386],[-73.79384983414468,40.731246783490924],[-73.7938193723034,40.7316573882338],[-73.79390942515764,40.731717775562174],[-73.79397708714757,40.73229685316651],[-73.79438449784254,40.73286592934908],[-73.794594865411,40.73340935817155],[-73.79458633240402,40.73505225214464],[-73.79516450887594,40.73641140399298],[-73.79594852831097,40.73781371914783],[-73.79584803288829,40.73807468021111],[-73.79651029115769,40.737908637229054],[-73.79650350005979,40.73800383592641],[-73.79607605160746,40.73814429824637],[-73.79636108875361,40.73812415326031],[-73.79640218640291,40.73828235819023],[-73.79533772922126,40.738493673275336],[-73.7803660354394,40.742591662644],[-73.77859924777994,40.74290812265152],[-73.77573836927098,40.74332564716399],[-73.7745506685029,40.74081510200932],[-73.77315793625455,40.736992898159265],[-73.77229585523219,40.73510969623618],[-73.77121678093121,40.73333747727874],[-73.77010680441991,40.73177918326145],[-73.77491335249017,40.73091285976705],[-73.7775750688206,40.73019327580699]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN18",NTAName:"Rego Park",Shape_Leng:26675.6171768,Shape_Area:19941034.5827},geometry:{type:"Polygon",coordinates:[[[-73.85872465763259,40.73570864419564],[-73.85625665102398,40.730959123100234],[-73.85851097908393,40.73028680280456],[-73.85762923647985,40.72860692181527],[-73.85771592411545,40.7285054608001],[-73.85741240598783,40.72832247976294],[-73.85808765733815,40.728568721830925],[-73.85941988033147,40.72646483756294],[-73.85727108116926,40.725681298089526],[-73.85805416894009,40.72444540610254],[-73.86203833783489,40.72595678540583],[-73.85990796488952,40.724346234659166],[-73.8586809764857,40.72261244048402],[-73.85777168470324,40.71645629320605],[-73.8574485790929,40.71369280004866],[-73.85729287192326,40.71146767668838],[-73.85975932862961,40.711845059282055],[-73.85962920970181,40.71397529519454],[-73.85982746172238,40.7145616896091],[-73.86003789875774,40.71493223572394],[-73.86301850142435,40.71770788185682],[-73.86523870611744,40.71997671002668],[-73.86929270489084,40.72443592947488],[-73.86970765351231,40.72514643414138],[-73.87084539424181,40.72748459344054],[-73.87146074249573,40.7293263741384],[-73.87509154155609,40.73067136321961],[-73.87054725164839,40.73203701870214],[-73.86447086179022,40.73400727492893],[-73.86462193356107,40.73428169011474],[-73.85886555753802,40.735939139311085],[-73.85872465763259,40.73570864419564]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN25",NTAName:"Corona",Shape_Leng:23900.4783189,Shape_Area:20084081.5829},geometry:{type:"MultiPolygon",coordinates:[[[[-73.85442575253663,40.748851726884496],[-73.85405453298718,40.748158316947894],[-73.85360568293821,40.747496828592006],[-73.85011556636418,40.74072356279838],[-73.84780164620524,40.74004967696215],[-73.84823628010899,40.73929040113395],[-73.84777844217429,40.73934483524631],[-73.8475082034414,40.73900780704003],[-73.84956453785416,40.738106092395924],[-73.85187067482497,40.73734292918602],[-73.85340136479013,40.73700275827821],[-73.85567427651216,40.73658665815272],[-73.85872465763259,40.73570864419564],[-73.85886555753802,40.735939139311085],[-73.86462193356107,40.73428169011474],[-73.86582956039898,40.73664322351456],[-73.86756253428725,40.74094188859119],[-73.86755729554957,40.741677696823885],[-73.86747169233716,40.7420957225196],[-73.86749135058345,40.74330204745735],[-73.86790963860358,40.74493371658836],[-73.86032027659726,40.747195699021354],[-73.86027336093433,40.74710172766283],[-73.85442575253663,40.748851726884496]]],[[[-73.85442575253663,40.748851726884496],[-73.85583495566055,40.75157727245888],[-73.85455552256288,40.75196191903409],[-73.85579909030595,40.75440952817461],[-73.85383081355535,40.75495833751337],[-73.85312635464207,40.75510934301631],[-73.8530076226801,40.75455456552017],[-73.85261725352242,40.75340506552792],[-73.85086439710032,40.749995641874605],[-73.85442575253663,40.748851726884496]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN29",NTAName:"Elmhurst",Shape_Leng:36705.0164302,Shape_Area:32671507.7917},geometry:{type:"Polygon",coordinates:[[[-73.86790963860358,40.74493371658836],[-73.86749135058345,40.74330204745735],[-73.86747169233716,40.7420957225196],[-73.86755729554957,40.741677696823885],[-73.86756253428725,40.74094188859119],[-73.86582956039898,40.73664322351456],[-73.86447086179022,40.73400727492893],[-73.87054725164839,40.73203701870214],[-73.87628302426636,40.73031309391965],[-73.87969354088507,40.72901015941861],[-73.88049068212484,40.72881654204623],[-73.88130917687704,40.72868082652119],[-73.8850072950199,40.728371895070104],[-73.8862376588498,40.72812701722863],[-73.88720524954047,40.72779299719091],[-73.88723573007663,40.72893296466081],[-73.88736093270067,40.7295707833962],[-73.8875596216051,40.7301970557407],[-73.88805975152191,40.73008723019763],[-73.88852285901477,40.73453116001532],[-73.8875142662088,40.73422534882308],[-73.88689197756352,40.73409916284289],[-73.88500017855742,40.733970056541146],[-73.88381086968471,40.733559535668725],[-73.88352910369615,40.733848278704315],[-73.8810869161179,40.732935630218016],[-73.8802939192119,40.732561645303356],[-73.87752195765928,40.731593169216296],[-73.87725122453755,40.731794153381486],[-73.87822455964039,40.7321022697678],[-73.87708276281701,40.732909316762054],[-73.88066188945511,40.735707874190936],[-73.88051536791613,40.735752171924034],[-73.88033059323018,40.7373336772273],[-73.88230252677222,40.737707701154],[-73.87945154892323,40.738198113637495],[-73.87743058352486,40.73860051566832],[-73.87791831742702,40.739394957188566],[-73.87848682293269,40.73993390905897],[-73.87910739756686,40.74044507821544],[-73.88100387984024,40.741840662492585],[-73.88294286815255,40.74160954372014],[-73.88282912173034,40.74099228285427],[-73.88551225128519,40.7401650188858],[-73.8857258812434,40.741288705926756],[-73.8875113205751,40.74108252663564],[-73.88798650795324,40.74354819237002],[-73.89071647522985,40.74312778397546],[-73.89139145532337,40.746641004329845],[-73.89175048792531,40.74681172763667],[-73.86942458603157,40.74915685152],[-73.86891395801302,40.74836887704176],[-73.86852925170723,40.74758830224426],[-73.86843751028877,40.7470311973158],[-73.86790963860358,40.74493371658836]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN44",NTAName:"Glen Oaks-Floral Park-New Hyde Park",Shape_Leng:33596.5264183,Shape_Area:45665592.3077},geometry:{type:"Polygon",coordinates:[[[-73.71049995362073,40.727227087413205],[-73.71075217230286,40.7305253750584],[-73.71147804876117,40.73250140137633],[-73.71476982690561,40.73790034823882],[-73.71544946835711,40.739216804071205],[-73.7189440633118,40.746944255672666],[-73.71988664004937,40.749369510672864],[-73.72010101501536,40.74977532930484],[-73.7225857184374,40.74885045120612],[-73.72339596217738,40.75038907592437],[-73.72627213222938,40.74930649076058],[-73.72768032618174,40.74963924507562],[-73.72806204987045,40.74856135087763],[-73.72829055962296,40.74745866499683],[-73.7288862157984,40.74756663670344],[-73.72896183010442,40.74763286903555],[-73.7287195280344,40.74819708055658],[-73.72825381049505,40.749693728645596],[-73.72788401100424,40.75038748332388],[-73.72737889140159,40.75102956739969],[-73.7270938955777,40.751341604743665],[-73.72641472137153,40.75191587781272],[-73.72384451856351,40.7534568116675],[-73.7232667341128,40.75394759949698],[-73.72264543527841,40.754600524027786],[-73.7224109479757,40.754920188745814],[-73.72145870261355,40.75665808054616],[-73.72096511710163,40.75729378916873],[-73.72031595291358,40.75789725862008],[-73.7195646072074,40.758450560420506],[-73.71897050364856,40.75878323753907],[-73.71831971818538,40.75908207617791],[-73.71767237065706,40.759311211520334],[-73.71685440444712,40.759525514522245],[-73.71612528233499,40.75966071430727],[-73.71498214022964,40.759782865022075],[-73.71351828105992,40.759837730830796],[-73.71244940730716,40.75924170421861],[-73.70782538631593,40.75621640432433],[-73.70527128316661,40.7547704409511],[-73.70217841679892,40.752885939497325],[-73.7016334582607,40.752493329691156],[-73.70134715916575,40.75078058137418],[-73.70117316548914,40.748924301621166],[-73.70089340027842,40.74705726562514],[-73.70077960740566,40.745041453798414],[-73.70058164037454,40.743183841588454],[-73.70002020437217,40.7392365417302],[-73.7008114709626,40.738439152387905],[-73.70147073038117,40.73751156096408],[-73.70206036356463,40.73644275716841],[-73.7064802819973,40.72971129922878],[-73.70766217305993,40.72783093450943],[-73.71049995362073,40.727227087413205]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN60",NTAName:"Kew Gardens",Shape_Leng:21357.4186559,Shape_Area:20452336.7409},geometry:{type:"Polygon",coordinates:[[[-73.81637824492985,40.702451964468636],[-73.81744340780958,40.70241752009015],[-73.81754376193393,40.70265734881743],[-73.82147824879263,40.7034156042511],[-73.8224589034409,40.703655531283545],[-73.82270811436416,40.70362481275424],[-73.83152109606644,40.70138962879873],[-73.83213204085827,40.70279408079233],[-73.83391709686666,40.702347367970354],[-73.8346024491606,40.70392746712543],[-73.83556177773612,40.703680883184084],[-73.83596592403704,40.70344533017505],[-73.8361697132522,40.70341482975886],[-73.83644056955666,40.70345494715912],[-73.83661882198182,40.70342001787277],[-73.83696237811036,40.70421245233312],[-73.83800579092035,40.70587074635336],[-73.83810193087305,40.70622282282285],[-73.8380816000771,40.70649252025241],[-73.83798280242273,40.70675198780391],[-73.83714702989015,40.70795704576075],[-73.83789559768121,40.708273466059396],[-73.8386482058117,40.708484722362186],[-73.84314625301296,40.70922345641874],[-73.84133936609089,40.709946234363116],[-73.83972439908847,40.71039876558735],[-73.83952312732589,40.71049645145645],[-73.8377089419937,40.711036484271276],[-73.83703688217308,40.711311705082124],[-73.83611476516761,40.71182514687331],[-73.83600510752498,40.711729671540674],[-73.83129817876875,40.71426413307678],[-73.82995752627295,40.71458088793365],[-73.82850807716517,40.7150443297608],[-73.82715524215058,40.7153880043901],[-73.82591945198023,40.71598987682755],[-73.82559716329271,40.71551433693921],[-73.82471749493712,40.71450684972674],[-73.82428940584002,40.71387006610684],[-73.82385072068409,40.71293320564064],[-73.82363860645444,40.712666644482155],[-73.8232024744549,40.712205948691775],[-73.82098519130527,40.710323845271546],[-73.82045236393571,40.70977454857411],[-73.8195536332589,40.708425229555154],[-73.81809905196823,40.70597371522998],[-73.81709738756588,40.70402980108506],[-73.81637824492985,40.702451964468636]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN66",NTAName:"Laurelton",Shape_Leng:29501.1283093,Shape_Area:39764130.2416},geometry:{type:"Polygon",coordinates:[[[-73.73355835321034,40.685517053807644],[-73.72718272494006,40.68359733001875],[-73.72810238799391,40.6817656370748],[-73.72851656796784,40.68121047255993],[-73.72924739897154,40.6804309856405],[-73.72950555795234,40.680055725643854],[-73.73047301194771,40.6793479372616],[-73.73106142472689,40.67830662072249],[-73.73303223411338,40.676495026141055],[-73.73505915346198,40.67398974996725],[-73.73597469371673,40.672567421782375],[-73.73624941770629,40.67263060172311],[-73.7359343859039,40.67243297135646],[-73.7371842445494,40.67090981324917],[-73.73775794390919,40.67005754690128],[-73.74117817298486,40.66640295437327],[-73.75602173442488,40.666391716104144],[-73.75763129618149,40.666451156607],[-73.75699533361423,40.667741268564356],[-73.75671602468458,40.668562526875164],[-73.75643734357958,40.66966637874346],[-73.7564062130196,40.670372915422824],[-73.75648374561719,40.671489866373136],[-73.75636239259673,40.672429237110244],[-73.75814760678536,40.672706914807655],[-73.75857198867719,40.67263733161661],[-73.75859630277026,40.67274790366507],[-73.76031464000941,40.6751099713793],[-73.75691881719031,40.67652887087493],[-73.75672742391518,40.67620876541205],[-73.75648885835807,40.67602276208845],[-73.75576169227469,40.675885909420444],[-73.75523457805714,40.677288409244824],[-73.75484909670557,40.67792883838739],[-73.75225828685411,40.681491411474006],[-73.75180409215658,40.682403323490654],[-73.75103020622572,40.68422286736814],[-73.7500899119713,40.68592344636012],[-73.74809302657842,40.68528309259189],[-73.74801584492349,40.68541877611115],[-73.74095291410018,40.683291215707385],[-73.74046388075443,40.684193838213794],[-73.73950237547244,40.6838966825207],[-73.73964596498838,40.68359848592596],[-73.73581149255288,40.68245244619857],[-73.73423734863464,40.68534277938339],[-73.7337335013777,40.6852004860797],[-73.73355835321034,40.685517053807644]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN28",NTAName:"Jackson Heights",Shape_Leng:29425.5815814,Shape_Area:47842277.0416},geometry:{type:"Polygon",coordinates:[[[-73.87365721712081,40.75680348560199],[-73.8708421564075,40.75154469308947],[-73.86942458603157,40.74915685152],[-73.89175048792531,40.74681172763667],[-73.89240906681817,40.747135328888824],[-73.89624245572702,40.74871954558168],[-73.89707650019884,40.75011887557886],[-73.89721143777562,40.75046637541072],[-73.89733942814927,40.75141956802873],[-73.89762297821557,40.75252318360266],[-73.89790235325053,40.75308771508843],[-73.898971171146,40.754715305945304],[-73.89923583713681,40.75553001745117],[-73.89976862080843,40.75666423736013],[-73.89986047525841,40.75733746251911],[-73.89978921664458,40.757898478894774],[-73.89956743939888,40.75854526251287],[-73.89700714606818,40.76235119348959],[-73.89624744731634,40.76333274721373],[-73.89542447794862,40.763947245817945],[-73.89516837063907,40.76419736223097],[-73.89483535125083,40.76465531620138],[-73.89461716409494,40.76525625741185],[-73.8944604428333,40.76544639115392],[-73.89403763130206,40.765758919728114],[-73.89349605945462,40.76595093000075],[-73.89325108788067,40.76627144523109],[-73.89183535796347,40.76622708004935],[-73.89089043694102,40.765858198110394],[-73.88918520529235,40.7662976919292],[-73.8883547111141,40.76669771380003],[-73.88602554198903,40.767282958202564],[-73.88439729428212,40.76784217036935],[-73.88277241826252,40.76852944143745],[-73.8785491567377,40.77077199556588],[-73.87743339837307,40.77120025528227],[-73.87608949641864,40.7715369030866],[-73.8759736261482,40.771042762244896],[-73.87601415579742,40.769816976085],[-73.87638792444172,40.76899955847407],[-73.8749957509396,40.76126432242942],[-73.87601371860643,40.761443732139405],[-73.87513874299533,40.75663381606068],[-73.87365721712081,40.75680348560199]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK42",NTAName:"Flatbush",Shape_Leng:38737.9604601,Shape_Area:45254292.7562},geometry:{type:"Polygon",coordinates:[[[-73.95870789822969,40.65038727378257],[-73.9582608207769,40.6485327450313],[-73.95815003514555,40.64776767369111],[-73.95797764682925,40.64457625601904],[-73.95763644576253,40.6426894994632],[-73.95746359870881,40.64237166977628],[-73.95360004719377,40.638422347449996],[-73.95116311183466,40.63844818339569],[-73.94537272424144,40.638786955243674],[-73.94462885425988,40.63183773463211],[-73.94647961784932,40.63170816167806],[-73.94415535255824,40.62950828520796],[-73.95995565121835,40.627778672540586],[-73.96040734342054,40.630162530576236],[-73.9623259936459,40.62996871673756],[-73.97136622157025,40.628929162715856],[-73.97092126268777,40.626569985505505],[-73.97623453682753,40.62597635073021],[-73.97716511994669,40.63074665412932],[-73.96986869339571,40.63419467459814],[-73.97029036162948,40.636406341418],[-73.96803868487798,40.63665098543635],[-73.97139631688152,40.64825778611406],[-73.97069344126612,40.64849677639659],[-73.9646543863076,40.65088772795596],[-73.9662132189326,40.653189405048934],[-73.9598610304714,40.65563478893648],[-73.95932926470222,40.652928178711704],[-73.95870789822969,40.65038727378257]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN06",NTAName:"Jamaica Estates-Holliswood",Shape_Leng:35446.8797374,Shape_Area:42789695.341},geometry:{type:"Polygon",coordinates:[[[-73.75670329233722,40.7262294321592],[-73.75670987300406,40.72617907294812],[-73.7554807368818,40.725119807263894],[-73.75508625098963,40.724490060116366],[-73.75496919462795,40.724159647308994],[-73.75577121005354,40.72364021589348],[-73.75301295440084,40.721099279291884],[-73.75263582319452,40.72069796646313],[-73.7523343833982,40.720262460692986],[-73.75725671509139,40.71813860166256],[-73.75832728673095,40.71958208936393],[-73.76571447240636,40.71639337871298],[-73.76664095243684,40.71764661366442],[-73.76733228152935,40.71728979681192],[-73.77357135234456,40.71512009536999],[-73.78657528693576,40.71197249327791],[-73.78784678480142,40.71181083266498],[-73.78871789555492,40.71204979303975],[-73.78901209587958,40.712072709100696],[-73.78928335067606,40.712031729151086],[-73.79303800052352,40.7107110754254],[-73.7930265420403,40.711981364640984],[-73.79313224917965,40.71240723601491],[-73.79360704402322,40.7135084700098],[-73.79363636669571,40.71381939732468],[-73.79358570299401,40.71412867817443],[-73.79346012404464,40.714419192045526],[-73.79240413349557,40.716193040973735],[-73.79224175633499,40.71742717949321],[-73.7920137663966,40.71796768743812],[-73.79162842648121,40.71841796531011],[-73.7908996060158,40.71887580779076],[-73.79073248864259,40.71920875733025],[-73.79037661684342,40.72010372421771],[-73.79030267429577,40.720891465459715],[-73.79035703879286,40.723005300179736],[-73.79045149323433,40.72355453182329],[-73.79147613698592,40.72513846498199],[-73.79174472669787,40.725788850395666],[-73.79085659843834,40.72602748929767],[-73.78116054967619,40.72921275859892],[-73.7775750688206,40.73019327580699],[-73.77523387160997,40.72523753282356],[-73.77634189043032,40.724465646594524],[-73.77667910966098,40.72399361329351],[-73.77700327859334,40.72372000868227],[-73.77738999307422,40.72349836725186],[-73.77803765890819,40.72328426871466],[-73.77774895414781,40.72284210956453],[-73.77727808027498,40.72234633629504],[-73.77583631421321,40.723431739568426],[-73.77605631092646,40.723355940083835],[-73.7754847359473,40.72372061487232],[-73.77437108686583,40.7242611321102],[-73.77286784140506,40.72486798512578],[-73.77139578147347,40.725350501341346],[-73.7692407486217,40.7259027012565],[-73.76872630300653,40.72599314332874],[-73.76856605350592,40.725853970734555],[-73.76745787952893,40.72613928143502],[-73.76568253242932,40.72637752360058],[-73.76475781219608,40.726397124111024],[-73.76102756078588,40.72589417902554],[-73.75994854133044,40.72580527783422],[-73.75922708617102,40.72580597829969],[-73.75835433165375,40.7258885098616],[-73.75670329233722,40.7262294321592]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN34",NTAName:"Queens Village",Shape_Leng:41782.3996433,Shape_Area:69533432.8564},geometry:{type:"Polygon",coordinates:[[[-73.72816233921212,40.72308414028533],[-73.72882383523115,40.7228836426953],[-73.72945614275385,40.722629528913934],[-73.73032628968096,40.72215729678479],[-73.72917629515445,40.7191672145617],[-73.72735961842656,40.71238894111478],[-73.72697146783058,40.710714504033405],[-73.72689487481324,40.70997857361935],[-73.72704696552918,40.70949875281049],[-73.7267775953371,40.70305929190145],[-73.72776791889802,40.703020637944014],[-73.73426455293946,40.703219542878266],[-73.73430403660008,40.70247813169505],[-73.7407767579591,40.70267983786236],[-73.74050336486624,40.703433556949896],[-73.74109294020496,40.70348106268248],[-73.74148805288023,40.70343161213639],[-73.74590871019437,40.70228727366437],[-73.74500119060667,40.700262213049804],[-73.7477301218163,40.69955313683431],[-73.74618157950404,40.69612192598294],[-73.74863325886776,40.69544476092139],[-73.75019295751487,40.698912081578214],[-73.74930547145108,40.699142313492345],[-73.75205066516905,40.705228027516945],[-73.75047058182726,40.705639931035],[-73.7512124696992,40.70730658007804],[-73.75370834622872,40.713324636739706],[-73.75401024530535,40.71383490137963],[-73.75725671509139,40.71813860166256],[-73.7523343833982,40.720262460692986],[-73.75263582319452,40.72069796646313],[-73.75301295440084,40.721099279291884],[-73.75577121005354,40.72364021589348],[-73.75496919462795,40.724159647308994],[-73.75508625098963,40.724490060116366],[-73.7554807368818,40.725119807263894],[-73.75670987300406,40.72617907294812],[-73.75670329233722,40.7262294321592],[-73.75442222511278,40.72704214823281],[-73.75297028783315,40.727705620133],[-73.7518423829017,40.728326501898174],[-73.75048295715928,40.729221294395316],[-73.7498098750692,40.7297467500572],[-73.74672140362712,40.73247715064396],[-73.74665689504377,40.731814924561526],[-73.7464916217069,40.73141458904646],[-73.74629555788846,40.731180177967424],[-73.74555591476273,40.730637473483085],[-73.73272577953306,40.72773407036237],[-73.73147215120912,40.72741179527419],[-73.7299078105697,40.72327301236054],[-73.72836415359919,40.72361435238169],[-73.72816233921212,40.72308414028533]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN42",NTAName:"Oakland Gardens",Shape_Leng:42329.6909178,Shape_Area:50975465.2122},geometry:{type:"Polygon",coordinates:[[[-73.74016951828855,40.7384818975084],[-73.74151636839602,40.73686036104047],[-73.74294785855837,40.73545655203287],[-73.74472417766796,40.73401103024978],[-73.74672140362712,40.73247715064396],[-73.7498098750692,40.7297467500572],[-73.75048295715928,40.729221294395316],[-73.7518423829017,40.728326501898174],[-73.75297028783315,40.727705620133],[-73.75442222511278,40.72704214823281],[-73.75655253396536,40.726270754932905],[-73.75670329233722,40.7262294321592],[-73.7578714145791,40.727106851486425],[-73.76160814438539,40.72904753444114],[-73.76327537810529,40.730240541116004],[-73.76435071526215,40.73115119213589],[-73.76564374465639,40.73253312673899],[-73.76369979170164,40.732864116847814],[-73.76510920615992,40.73455658480407],[-73.76273303467916,40.7352621626722],[-73.7624853869563,40.73618169518283],[-73.76248609277276,40.73673098195222],[-73.7625969477084,40.73708732642264],[-73.7655684981059,40.743258155027185],[-73.7664910963283,40.743748430185285],[-73.76687853596971,40.744093578703655],[-73.767729913593,40.74577622617263],[-73.76073612098445,40.747737385471964],[-73.75802805583017,40.74895781631855],[-73.7568412730045,40.74932207770428],[-73.75737034770665,40.75024385676453],[-73.75906249202522,40.75220918132889],[-73.75968494353953,40.752536256845126],[-73.75994649731062,40.752760006378054],[-73.76012948812914,40.753022117169095],[-73.76080194147526,40.7545477298219],[-73.76101539982129,40.75481609299341],[-73.7616766980221,40.75532347682203],[-73.76184344003016,40.75553726931341],[-73.7619271375463,40.75577285336091],[-73.76176692858844,40.757278802073074],[-73.76239510540735,40.75949699812226],[-73.75800131701065,40.760379867479095],[-73.756820621964,40.75973480633186],[-73.75625606290241,40.75843046955818],[-73.75583713323265,40.7577420617845],[-73.7555734371642,40.75828095184058],[-73.75511648356404,40.758479498133276],[-73.75404744891391,40.758512386011354],[-73.75369069097542,40.7584447883814],[-73.75320997118305,40.75824487300704],[-73.75230259322849,40.75945519933163],[-73.75115582971529,40.759069768753264],[-73.75057710691372,40.758014894987355],[-73.75004764532159,40.758404658291774],[-73.74809587941182,40.75589954972387],[-73.74711113834344,40.75417328609082],[-73.74774116505658,40.75384994464688],[-73.74709885341818,40.75234682867538],[-73.74684219680451,40.75205807565612],[-73.74652681412704,40.75184264645072],[-73.74621665660862,40.751685850524396],[-73.7457794874764,40.75156080529688],[-73.74507911666329,40.75027389673685],[-73.74384322132067,40.74769009627102],[-73.74625984399837,40.746711475312814],[-73.74593060304679,40.74571565900562],[-73.74477587129022,40.743281097372225],[-73.74567621115477,40.74302729862093],[-73.74671975328835,40.743123648060056],[-73.74784861300972,40.74329607797115],[-73.74887697332393,40.743288374544626],[-73.7507279032,40.742997846899726],[-73.75347300027275,40.742404844704815],[-73.75138967527695,40.74019415950902],[-73.75098230033593,40.74002146284618],[-73.75037358668034,40.7399224670844],[-73.74996804311489,40.73974575298679],[-73.7439619355481,40.740789126956024],[-73.74371941311084,40.73938314961697],[-73.74360280254857,40.739012608815166],[-73.74306820821381,40.73844081776184],[-73.74128113916939,40.738788692368054],[-73.74100638485653,40.73874396809776],[-73.7407734476423,40.73863527343253],[-73.74016951828855,40.7384818975084]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN35",NTAName:"Washington Heights North",Shape_Leng:26623.8733303,Shape_Area:22662452.9056},geometry:{type:"Polygon",coordinates:[[[-73.92872203137537,40.86674266333024],[-73.9272691509196,40.86553455981896],[-73.9247415340757,40.861593638252025],[-73.92499818374048,40.86146373803843],[-73.92496310640051,40.86108928317822],[-73.92502162130454,40.86069531087311],[-73.92528662662241,40.86012579668752],[-73.92573839867413,40.85963768044929],[-73.9266257510088,40.85905332557853],[-73.92698078628499,40.85860624131131],[-73.92712222071785,40.85810961121079],[-73.92691117491182,40.85750876085586],[-73.92674232341741,40.85782976791339],[-73.92634775493235,40.85809897118225],[-73.92599285788782,40.85818586689698],[-73.92546547789321,40.85814241143536],[-73.92508143618909,40.857956788312634],[-73.92486929942363,40.85765619133568],[-73.92472918878461,40.85732628669623],[-73.92467094585615,40.85681088971975],[-73.92469199899043,40.856641997249234],[-73.92769565804304,40.85248778210612],[-73.92703315736694,40.852200775102766],[-73.92707982343958,40.85143234338458],[-73.92747680551746,40.85069436979465],[-73.92824918846772,40.849839854581795],[-73.92858519996861,40.84963880218394],[-73.92886675421994,40.84939231334598],[-73.92970731493037,40.84812261221643],[-73.93062107886071,40.84848097676885],[-73.93139355315762,40.84742823140946],[-73.93639683136003,40.84954119483693],[-73.9357539429627,40.85016820285021],[-73.93957073846597,40.85127555618831],[-73.93992663249514,40.85132430476711],[-73.94068821968366,40.85131543261699],[-73.94126220306671,40.85139196219374],[-73.94203871715261,40.851931028896026],[-73.94253950964713,40.85150210533041],[-73.9429034615928,40.85099716398683],[-73.9430964794399,40.85038730258541],[-73.94317806054853,40.84979994350197],[-73.94692626471009,40.85052805617122],[-73.94651590149984,40.85096833857761],[-73.946372009516,40.850969818017646],[-73.94632077345882,40.850923256174035],[-73.9463521870395,40.85086996465755],[-73.94627501496704,40.85084097717297],[-73.94617304413968,40.85095795448535],[-73.94620078322082,40.85103148810535],[-73.94615819227633,40.85104728646892],[-73.94611976647998,40.850968754141576],[-73.94608190501067,40.85098071488104],[-73.94614159383535,40.851093698965016],[-73.94611744105192,40.851172582517115],[-73.94576726165661,40.85116946515458],[-73.94572806361968,40.85122777318984],[-73.94565283626453,40.851211097838615],[-73.9454490380059,40.851427659209804],[-73.94525311029122,40.85149188685092],[-73.94526640999081,40.85157102855115],[-73.94515355593171,40.851586484606706],[-73.94497798461819,40.85173164800321],[-73.94469380703812,40.851824093769174],[-73.94466721244332,40.85192122600706],[-73.94450381945983,40.85195707945259],[-73.94450515512597,40.85188989851201],[-73.94442232659368,40.85190470473122],[-73.94432518482476,40.8518225764386],[-73.94421073869377,40.851929655729606],[-73.94419660781348,40.85201534181583],[-73.94401324016911,40.851999843664686],[-73.94388153574954,40.85217237720743],[-73.94347978611897,40.85228188194226],[-73.9430264437118,40.85262617787096],[-73.94247365992008,40.853171277306956],[-73.94186996426717,40.85386773894022],[-73.94099928999188,40.85535861893858],[-73.94095704472458,40.85552033389192],[-73.94048831269313,40.856204628320114],[-73.94029347563355,40.85664177015537],[-73.93994880743332,40.85706661425643],[-73.9396848241026,40.85728932103599],[-73.93911094164396,40.858040911225714],[-73.93891471443509,40.858406937423204],[-73.93843728791872,40.85907336212113],[-73.93830957434339,40.85938052310552],[-73.93752944172562,40.86009664128201],[-73.93758054140304,40.86020320665084],[-73.93713577577711,40.860783636699956],[-73.93704223142183,40.86105753297888],[-73.93681096972902,40.86125802374982],[-73.93681045515451,40.86136346606028],[-73.93647561664896,40.86192659117072],[-73.93559460864022,40.86296505185242],[-73.93443446917307,40.86450373173413],[-73.93435568513524,40.86473290706837],[-73.93401664426698,40.865035548291594],[-73.93395001711578,40.86534674620984],[-73.93378916436356,40.865428634268504],[-73.93357158073782,40.86576675094463],[-73.93357396188235,40.86584129553906],[-73.933436351359,40.86598658199568],[-73.93340182700803,40.866135646839886],[-73.93332317623769,40.86623809501452],[-73.93325688879918,40.86624178458099],[-73.93313150185674,40.866426213789545],[-73.93266332721514,40.8672370659344],[-73.93290171825566,40.867293043899295],[-73.93283958205113,40.86741527640881],[-73.93259794852804,40.867311349670395],[-73.93251888404441,40.86741050336583],[-73.9323866223573,40.86769389324471],[-73.93237341288621,40.86806348807322],[-73.93226769892459,40.86856231897276],[-73.93249214364889,40.868677518657485],[-73.93265083512807,40.86846503348186],[-73.93252354560038,40.86872207835891],[-73.93225031821254,40.86863950836788],[-73.9323138544823,40.868923720343695],[-73.93256895482791,40.86897940321393],[-73.93250469803198,40.86912955816261],[-73.93229327689917,40.869199501439645],[-73.93218903892283,40.86936697638944],[-73.93246883069908,40.86947609938697],[-73.93235370807275,40.869755255296575],[-73.93226581636974,40.869734771640026],[-73.93235934466003,40.869507363219356],[-73.9321333660305,40.86941597544098],[-73.93205002169796,40.86964174628013],[-73.93219855115137,40.86984487074343],[-73.93156536939783,40.86958215843704],[-73.93141437380672,40.86896192840375],[-73.92872203137537,40.86674266333024]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN01",NTAName:"Marble Hill-Inwood",Shape_Leng:31826.6742749,Shape_Area:17703895.1091},geometry:{type:"MultiPolygon",coordinates:[[[[-73.92151894059089,40.85660117062318],[-73.92175965629761,40.85630468180847],[-73.92182325044611,40.856329125863496],[-73.9222961101445,40.85566383573176],[-73.92234459374129,40.85568233581484],[-73.92169841970889,40.8566723018554],[-73.92151894059089,40.85660117062318]]],[[[-73.911224414078,40.87302775193199],[-73.91096169203044,40.87261701014607],[-73.9106487727781,40.87229624846062],[-73.91054082128483,40.87205832757543],[-73.91043363504242,40.87138081638372],[-73.91054357762047,40.87128624754063],[-73.91072355879963,40.87094883563943],[-73.9106779365017,40.87087278982883],[-73.91075680633605,40.87057472639715],[-73.91074831347414,40.870264646618395],[-73.9109249115803,40.869436591353605],[-73.9110577159244,40.86940865178945],[-73.91134621437836,40.86952428990773],[-73.91147448899112,40.869454757638316],[-73.91146347606924,40.869377382230134],[-73.91103057950258,40.86915540299597],[-73.91112890881833,40.86892004316142],[-73.91132817758825,40.86880243953576],[-73.91132553554417,40.86867589550758],[-73.91151485871008,40.868281239257094],[-73.91171163038129,40.86810028405536],[-73.91180556034624,40.867810479113864],[-73.91191159865944,40.867700205169854],[-73.91184774646814,40.86767252047247],[-73.91273173985788,40.86660521220923],[-73.91254775130281,40.86651494300429],[-73.91391863133241,40.864745584403586],[-73.91431200712572,40.86462502219323],[-73.91492387927869,40.864580378919115],[-73.9145403762602,40.86441235162336],[-73.91441113392746,40.86417362637039],[-73.91508583854332,40.86444814341728],[-73.91543189784478,40.86441830355413],[-73.91545342726603,40.86433373608123],[-73.91563236347669,40.86430947267686],[-73.91566444458371,40.864350153315954],[-73.9158991164586,40.86430803758248],[-73.91593138049882,40.86420396458433],[-73.9158714806572,40.86412909053301],[-73.91558377757016,40.86407065104856],[-73.91535981954006,40.86407728978839],[-73.91519574800158,40.86394522423328],[-73.91517556429709,40.863680433750915],[-73.91536190015128,40.86354723256713],[-73.91547682444254,40.86334610729674],[-73.9154549655414,40.86320845729237],[-73.9153450668949,40.86316454177228],[-73.91538673051141,40.86308438420068],[-73.91552015328243,40.86291007496546],[-73.91567199713795,40.86290242787753],[-73.91610517927835,40.86248814430605],[-73.91679534822488,40.86197760126722],[-73.91705129801854,40.861892622976505],[-73.91729467741744,40.86167941772805],[-73.91750401182699,40.86136332436704],[-73.91782702380148,40.86104278280525],[-73.91782136420322,40.86094890179108],[-73.9179219058387,40.86082542617207],[-73.91788387387673,40.86080222076804],[-73.91843439251785,40.86022153339526],[-73.91836074461783,40.86019580904361],[-73.91839311151449,40.86008046942141],[-73.91861094928484,40.85986311030162],[-73.91877796533964,40.85954675031089],[-73.91950213727121,40.85879113379094],[-73.92036070029987,40.859148711450686],[-73.92044466588784,40.85912449207713],[-73.91977424610862,40.85879477229114],[-73.92047868273163,40.859104092098825],[-73.92043350742901,40.85917235515499],[-73.92065316143588,40.85926326599596],[-73.92127091296314,40.86018804281669],[-73.92136406250019,40.86021146544249],[-73.92159014782033,40.86007280002642],[-73.92173654090342,40.85967245978592],[-73.92164878482538,40.85955093298401],[-73.92183337804897,40.859555065348076],[-73.92172807921871,40.85939481544827],[-73.92184589191399,40.85938288171935],[-73.92179318314092,40.85935281461503],[-73.92186633849963,40.859181339145074],[-73.92181807326604,40.859115237627435],[-73.92157640358324,40.859055001450976],[-73.92129619437267,40.858879953898125],[-73.92137003870111,40.85887867143288],[-73.92125580136795,40.85884655352701],[-73.9212568347568,40.85871508298695],[-73.92107155309348,40.85855344402605],[-73.92112178010414,40.858445356851206],[-73.92106819230465,40.85841728803165],[-73.92108767646549,40.858299841248],[-73.92094165801768,40.8582844149145],[-73.9209386901695,40.858120674461475],[-73.92060931660995,40.85801869514789],[-73.92048438547526,40.858232548062446],[-73.92035142875447,40.85819522061912],[-73.92036477249769,40.858164937099126],[-73.92047278308776,40.85819530433254],[-73.92043129405519,40.858137220870944],[-73.92049359871997,40.858165341059085],[-73.92047870523533,40.85811294928197],[-73.92051858770834,40.858126232545835],[-73.92058272320207,40.85801141873182],[-73.92053125929235,40.85795301382891],[-73.9205986546337,40.85789878704332],[-73.92056458681323,40.857882978376054],[-73.92077315152538,40.85794118585791],[-73.92072417703463,40.85788498802634],[-73.92075835176838,40.85781054053568],[-73.92063119159805,40.857795938073245],[-73.92070610816093,40.85770101410191],[-73.92071766909079,40.857772332689585],[-73.92090874801751,40.85784377280372],[-73.92101432159772,40.85783880267796],[-73.92098779315481,40.85777630837966],[-73.92095035684841,40.8578103571393],[-73.9208240798597,40.85775220748153],[-73.9208399142182,40.85772129488842],[-73.92098531723384,40.85776431235185],[-73.92086403145025,40.85770616565291],[-73.92095880812545,40.857685411498565],[-73.92088985517742,40.857663905175635],[-73.92091400831144,40.8576191132754],[-73.92081427830767,40.857607059415365],[-73.92077266907232,40.85764993976238],[-73.9207835691489,40.85756980360234],[-73.92069706993836,40.857621485757114],[-73.92075532130511,40.857557159145706],[-73.92098217660374,40.85761221698065],[-73.92095148909623,40.85755666349576],[-73.9210319869229,40.85755504338849],[-73.92090011378167,40.85749428733865],[-73.92099676230906,40.857484474377095],[-73.92104891513682,40.857381521111556],[-73.92116405945735,40.85743661969262],[-73.92107291394788,40.85751698028305],[-73.92112119690388,40.85753677033058],[-73.92122323658648,40.85752233035379],[-73.9213047520937,40.85742065143314],[-73.92151967268634,40.857348906380025],[-73.92159242598989,40.85726341560262],[-73.92159160704566,40.857065154233396],[-73.92188651896565,40.85698461123253],[-73.92204492149719,40.85685415958372],[-73.92277921133939,40.85682619839078],[-73.92282846103095,40.85685140959511],[-73.92295846573029,40.858913781248766],[-73.9272691509196,40.86553455981896],[-73.92872203137537,40.86674266333024],[-73.92623313377472,40.86850613828389],[-73.92382143431996,40.86901838166758],[-73.92234360705152,40.86945904067093],[-73.92214152586973,40.86914779597353],[-73.92132981624518,40.86957128259192],[-73.91925481689897,40.87100784213318],[-73.91969887598277,40.8720635305367],[-73.91845930852189,40.87302205327087],[-73.91400985416996,40.871160593864474],[-73.91366488712917,40.871500585169905],[-73.91154298541007,40.87325374264172],[-73.911224414078,40.87302775193199]]],[[[-73.9066653094113,40.875715608995364],[-73.9077427078456,40.87284595211156],[-73.9084636791247,40.872620792207115],[-73.9087204639138,40.872228665589304],[-73.9089323517538,40.87215734797008],[-73.90971690072656,40.87320461141757],[-73.91035514009809,40.873777855309164],[-73.91092118009573,40.874146396542656],[-73.9114842829568,40.87441792059757],[-73.91194663007458,40.87457702125154],[-73.9157860927398,40.8757171829603],[-73.91487449173466,40.87664214631953],[-73.91205829964026,40.87811932004812],[-73.91148913190445,40.879018858809516],[-73.91033193566423,40.87903804730721],[-73.9094983211747,40.8787767321817],[-73.90765281705261,40.877428022859384],[-73.90703748870499,40.876895160707534],[-73.90681873007055,40.876619587786436],[-73.9066653094113,40.875715608995364]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN57",NTAName:"Lindenwood-Howard Beach",Shape_Leng:78496.4476482,Shape_Area:63863596.1172},geometry:{type:"MultiPolygon",coordinates:[[[[-73.85898002979155,40.652675457835485],[-73.85854822276491,40.65236079018087],[-73.8578339260735,40.65155815255726],[-73.85731941515512,40.65123709900784],[-73.8573022453536,40.651064104578424],[-73.85695870291933,40.65058737347172],[-73.85898002979155,40.652675457835485]]],[[[-73.85898002979155,40.652675457835485],[-73.85975533673268,40.65410417618973],[-73.85941022942802,40.65386473691975],[-73.8594447402715,40.65363754760169],[-73.85934240868158,40.65356106691091],[-73.85924955939744,40.653254295429186],[-73.85904529229798,40.6531079760839],[-73.85898002979155,40.652675457835485]]],[[[-73.85975533673268,40.65410417618973],[-73.86048308196885,40.65465892867756],[-73.86098917354018,40.65520976660258],[-73.86076223557298,40.655212130393785],[-73.86045463170866,40.65506710736613],[-73.85979242750736,40.65447615737699],[-73.85975533673268,40.65410417618973]]],[[[-73.83032725337064,40.65513280580328],[-73.83041325125025,40.655157822337166],[-73.83041203905744,40.65521585576165],[-73.83026601851493,40.65542864678473],[-73.83000321318897,40.65555212870702],[-73.82988919922009,40.65552282258495],[-73.82994556435838,40.6554244943529],[-73.83032725337064,40.65513280580328]]],[[[-73.85096453684082,40.671719511371116],[-73.84847765302482,40.67091673865273],[-73.8478700087405,40.67077949985452],[-73.84322150154419,40.66934041088452],[-73.84288589374712,40.66928507550809],[-73.84243585420113,40.66928855741673],[-73.84227237880692,40.66873604618449],[-73.84215802163921,40.668701447728],[-73.84013623756769,40.66826802501509],[-73.84008991067896,40.66843655612682],[-73.8392785101625,40.66820184941317],[-73.83744908726737,40.66779835039966],[-73.83730072134576,40.66770735931361],[-73.83667829534579,40.66758649247935],[-73.8357010882824,40.667260222424765],[-73.83487654300704,40.66721166471805],[-73.83464965632115,40.66711530780337],[-73.83334819203355,40.66677318701444],[-73.83300277616104,40.665920517862496],[-73.83247768214142,40.66496821281222],[-73.83030563682168,40.66042499663797],[-73.82991335753407,40.65966566818297],[-73.82931420152828,40.65889865674548],[-73.82859942404696,40.65719697301599],[-73.82807181096602,40.65526770219994],[-73.8263924284449,40.64832434861558],[-73.82655298060229,40.64839690726852],[-73.82660190211635,40.64855927220123],[-73.8268115711495,40.64877651530323],[-73.82733874658778,40.64894539715368],[-73.82752122443982,40.64896570674747],[-73.82763624337947,40.648927869767796],[-73.82787736725261,40.649019270054275],[-73.82828395315657,40.64904256262429],[-73.82859874349167,40.649169794010675],[-73.82891475663621,40.649379155319004],[-73.82912090236671,40.649825815891624],[-73.82933909047297,40.64994732500725],[-73.82938618133836,40.65003440854414],[-73.82968053496558,40.65022886569531],[-73.82986948832638,40.65042962964013],[-73.83001172288746,40.65091735324273],[-73.83038140903135,40.65114791993078],[-73.8305312551552,40.651329520124385],[-73.83069916378254,40.651404311581054],[-73.83093651353481,40.6516261292558],[-73.83110356210946,40.65225669490763],[-73.8313315146939,40.652747556941],[-73.8312921429573,40.65347092446842],[-73.83156040928806,40.65360326778684],[-73.83161314793695,40.65374895323619],[-73.83158322059785,40.65381378583109],[-73.8311318184911,40.65424809694092],[-73.83015719582366,40.65500135673464],[-73.83013498681505,40.65502863509915],[-73.83020905999672,40.65502997144833],[-73.83018320665532,40.65506427326677],[-73.83013012659282,40.655039666372254],[-73.83008155069435,40.65514384105466],[-73.82934489243117,40.65571002158371],[-73.82904066422411,40.65602238094892],[-73.82901417557974,40.65610788445244],[-73.82918818921712,40.656072270302744],[-73.82966677586151,40.655599040015325],[-73.83015032620746,40.655664602843395],[-73.83030805601791,40.65561999347911],[-73.83044328137915,40.65551947244544],[-73.83058237083287,40.65532375453879],[-73.83055658589429,40.65515473712589],[-73.8305306915188,40.65535764899061],[-73.83053759090681,40.65491222324033],[-73.83056930687607,40.65514245592533],[-73.83055609756155,40.654892921740505],[-73.83060245974771,40.65480688977751],[-73.83134353287797,40.654168378389976],[-73.83170814477536,40.65393117429784],[-73.83205445130542,40.65404641806759],[-73.83212330981654,40.65427316167605],[-73.83200052870747,40.65444081896505],[-73.83216050229873,40.654509508672696],[-73.8322169851858,40.65446038629296],[-73.83216594777046,40.65453045483013],[-73.83204647839084,40.6544810763205],[-73.83190474303169,40.6546305199391],[-73.83185835817896,40.65461183972649],[-73.8314933010301,40.65497982053972],[-73.83135764938119,40.65547097583979],[-73.83116100809882,40.65591923273198],[-73.83021213226999,40.65633719250648],[-73.83003301456682,40.65656716783348],[-73.82992739066563,40.65657155323354],[-73.82955413715338,40.656423770868464],[-73.82937603410717,40.65650633521588],[-73.8292365379905,40.656664527519006],[-73.82930974695338,40.65693245753516],[-73.82896778740296,40.657205247920054],[-73.82917919800573,40.657799778545254],[-73.82932389422103,40.657880663134165],[-73.82951375096916,40.65791452442423],[-73.82965499496582,40.65808820366557],[-73.83013028740645,40.65840264271597],[-73.83005061284454,40.658490048397184],[-73.82985300549761,40.658467911061],[-73.82970706839046,40.65850251336194],[-73.82962667738495,40.65855707860328],[-73.8295998696928,40.65865680591115],[-73.82992819287561,40.659180980904864],[-73.83001290893577,40.659554586715764],[-73.83014950104759,40.6598086849573],[-73.83017592455595,40.65975845105017],[-73.83001214184988,40.65916316387879],[-73.82982589468602,40.65896126923766],[-73.82969520149392,40.65865592869243],[-73.82970652828601,40.65860197635441],[-73.82979240260039,40.6585680176266],[-73.83000120823701,40.65859389024502],[-73.83019910720928,40.658508969065096],[-73.8302442703939,40.65834996934813],[-73.83000600274029,40.65817634852297],[-73.8298271228173,40.65811643485667],[-73.8296301319762,40.65784629785765],[-73.82937290582953,40.657794788408125],[-73.82922393836873,40.65770651238293],[-73.82906423436437,40.657442112147464],[-73.82909434891197,40.65733421866426],[-73.82949826107962,40.65690590795439],[-73.82946151593038,40.65668997716948],[-73.8295026518597,40.65664743148165],[-73.83009172569682,40.65673635744862],[-73.83018507874806,40.65669388796977],[-73.83050532057378,40.65634236731616],[-73.83106670806468,40.65613845468091],[-73.83127112564996,40.65600327147703],[-73.83144150699891,40.655766516622855],[-73.83155309177302,40.65524297186957],[-73.83185238479284,40.654885038266954],[-73.83218186134015,40.65489475195572],[-73.83285224112379,40.657062138771686],[-73.83290309524595,40.657483771623035],[-73.83278194361473,40.65754846038349],[-73.83208497100858,40.656131028511304],[-73.83194394644246,40.65617142725438],[-73.83260036370731,40.657826591124696],[-73.83201491708162,40.658077531631555],[-73.83096907996668,40.658230294172334],[-73.8312844618362,40.6584066826304],[-73.83338439472544,40.65805185920797],[-73.83111241607584,40.64941992204235],[-73.83103675141453,40.64878844359656],[-73.83109184508524,40.64848480681675],[-73.83134672834726,40.64815576791734],[-73.83166902767807,40.64797221101765],[-73.83461829480825,40.648124104717354],[-73.83527877306892,40.64828384470117],[-73.83546272695871,40.648369340095215],[-73.83561034769761,40.64850568474222],[-73.83569927781315,40.648668914791465],[-73.8357118338955,40.64900637736719],[-73.83578775273202,40.64916219867997],[-73.83572275412192,40.64937822992842],[-73.8362236205694,40.651073757308566],[-73.83653898105406,40.652698463356316],[-73.83754994231398,40.6560282844255],[-73.83796474521759,40.65776477174405],[-73.8382680405473,40.65937790027199],[-73.8387851750313,40.661088448434775],[-73.8380580101462,40.66200606333996],[-73.83873608556083,40.66245405951848],[-73.8399794997562,40.66190427386222],[-73.839725403531,40.660950658874675],[-73.83978752613048,40.660485997545415],[-73.83895864143486,40.65755139315288],[-73.83814021702017,40.65422479256088],[-73.83762971693619,40.652507710777215],[-73.83592320073284,40.64549979067495],[-73.83633074721295,40.645321149279546],[-73.8400064646437,40.64513606888876],[-73.84009313546987,40.6450562035634],[-73.8403032667007,40.64500944497184],[-73.84058394677592,40.6448630260453],[-73.84089258685121,40.644969036711764],[-73.84599608300705,40.64456831949446],[-73.84950699084175,40.644133765678745],[-73.85183280803858,40.64586005570825],[-73.85216961552312,40.64633364854257],[-73.85236722602065,40.64685080348969],[-73.85241668622079,40.64738809796718],[-73.85230349920236,40.64777102858229],[-73.85207890601963,40.64812430573491],[-73.85193589399188,40.64857859595681],[-73.85159089132351,40.649096478442104],[-73.85143723187642,40.64910567656138],[-73.85133725114791,40.649182421175],[-73.85129485181866,40.64908584648494],[-73.85113586061435,40.64907232467635],[-73.85090552461409,40.64916819600035],[-73.85092740820906,40.649412514271425],[-73.85080931477651,40.64956440096542],[-73.85078185996016,40.64980609222275],[-73.85061030166486,40.6497947652171],[-73.85058099294757,40.64986220594778],[-73.85057653598564,40.65034992519287],[-73.85052038960148,40.65038231054293],[-73.85037708349654,40.6502744998756],[-73.85043630981518,40.65036853425955],[-73.85042261012721,40.65047699482541],[-73.85024190300314,40.650543384404585],[-73.8501552962468,40.65065602095159],[-73.84985434458905,40.6508324398629],[-73.84968938316864,40.65087834833244],[-73.84968367444209,40.650923612260755],[-73.84942572156439,40.65092925242017],[-73.84925726840824,40.651031532550874],[-73.84921658357293,40.651168997987604],[-73.84939766406322,40.651434878950354],[-73.84992253250303,40.65165796360281],[-73.85011846068123,40.65166816844532],[-73.85024113552008,40.65157691801336],[-73.85044919469753,40.65159692790651],[-73.85069712056728,40.65150330869099],[-73.85078499726184,40.65153285190427],[-73.85111120436922,40.65141884743046],[-73.85149116370032,40.65119797267728],[-73.85178606572335,40.650815639351876],[-73.85206308995255,40.65080396040592],[-73.85230658834425,40.6506009130637],[-73.85250949601188,40.65055140331398],[-73.85321677105824,40.65065033803907],[-73.85403329488027,40.650660311572246],[-73.85514524767977,40.65104073996871],[-73.85544246443918,40.65120354314982],[-73.85549246796344,40.65128116066039],[-73.8557191110678,40.651250207831694],[-73.85591932968634,40.65130926173192],[-73.8561614858096,40.65149098521864],[-73.8562761269667,40.65165453346015],[-73.85632763963152,40.65212833463643],[-73.85651523464513,40.65234581936267],[-73.85654936967255,40.652553211039965],[-73.85671289006358,40.652801664094476],[-73.8569106376285,40.652946593955285],[-73.85705388347891,40.65296669963727],[-73.85719251831557,40.6529326678282],[-73.85730222088836,40.65283599638952],[-73.85751526265261,40.65281987098435],[-73.85772331774075,40.65272622856906],[-73.85828132383817,40.65299487215181],[-73.85852026658145,40.65331118940374],[-73.85857198690208,40.653725197940965],[-73.85876419753467,40.65403255472361],[-73.85875807991592,40.65416162733503],[-73.85915498380142,40.65440246836765],[-73.8592655290238,40.65463850810449],[-73.85930573554423,40.65497238338423],[-73.85967017937716,40.655187895160765],[-73.85995906594775,40.65549029704411],[-73.86072952136077,40.6560468126668],[-73.86084030699915,40.65617157477914],[-73.8613638195039,40.65641475416525],[-73.86140125172595,40.65657808763998],[-73.86136038361364,40.656594204704454],[-73.86098888183685,40.65653696605686],[-73.86067414586057,40.65658459166559],[-73.86061669395681,40.656464657207714],[-73.86061557040891,40.65664054217452],[-73.8604428867467,40.65669698517317],[-73.86051503888419,40.6567670097428],[-73.86020839501059,40.65701037444646],[-73.8601594829453,40.657012263680734],[-73.86006777819539,40.6567798610495],[-73.86005569640446,40.65697225515617],[-73.85983363521488,40.65697706322044],[-73.85996243295557,40.65705261874036],[-73.86007499798224,40.657048611079986],[-73.85981027609677,40.65732241149367],[-73.85979094247288,40.65743201360655],[-73.85993897345534,40.65772017715116],[-73.85970571828656,40.65783698479444],[-73.85957204821743,40.65803534976111],[-73.85955515254454,40.65819941034697],[-73.85963558669376,40.65845777205645],[-73.85989457525865,40.65858841896412],[-73.86025847890082,40.65862971173904],[-73.86031051908247,40.65878442099239],[-73.86019761195703,40.65886085816],[-73.86023236327553,40.65889713055999],[-73.8604518299261,40.65879671932937],[-73.86039260102213,40.65862014824468],[-73.86051237198198,40.65855609546895],[-73.86051208601661,40.658497671518475],[-73.86063470977916,40.65849806014776],[-73.8607199797675,40.65841629528734],[-73.86092445744517,40.658352349876125],[-73.86098077488866,40.658381303031454],[-73.86098115501093,40.65852264516439],[-73.8608577308958,40.65871992680103],[-73.86061668786319,40.65883239593784],[-73.86049000446705,40.658994143141115],[-73.86048465696724,40.65918243279204],[-73.86061207377217,40.659326534605924],[-73.86079238503054,40.65923294188333],[-73.86085533980189,40.65900368015589],[-73.86124943438328,40.6587209100245],[-73.86132276468818,40.65851493216583],[-73.8612728031502,40.658265167667196],[-73.86095892098011,40.65806094298151],[-73.86053747632884,40.65809226204115],[-73.86038783682788,40.65823690689206],[-73.86011221639009,40.65832681508009],[-73.85976839654899,40.65828193634653],[-73.86002465025645,40.658107789134824],[-73.86004308391907,40.658032976693285],[-73.86019595407625,40.65799055134812],[-73.86021363811534,40.657913469551566],[-73.8605755168128,40.657836051890506],[-73.86040714201879,40.65776134156813],[-73.86040537631261,40.65760582054199],[-73.86031029516802,40.657418070541944],[-73.86034164638873,40.65724790569716],[-73.86060930392624,40.65715545619799],[-73.86062372403475,40.657205456083666],[-73.8606632149729,40.65710296544398],[-73.86075342042031,40.65708013428229],[-73.86087597605719,40.65690816201699],[-73.86127520118563,40.657000906359244],[-73.86161371163618,40.65699651025276],[-73.86162505362074,40.65768732859002],[-73.86170301261393,40.65802488936042],[-73.86269778299636,40.657618308509775],[-73.86317083340506,40.65827651244626],[-73.86035978206114,40.65964582850958],[-73.85851436393638,40.65989894246857],[-73.8576153718558,40.66011893315379],[-73.85842950857409,40.66345336042925],[-73.85568461221143,40.66386749237292],[-73.85763323108362,40.67165619403801],[-73.86038937918134,40.671268775444425],[-73.86107192499126,40.6740198138945],[-73.86106295016751,40.674342934730134],[-73.86131863648569,40.67502126881618],[-73.86029565646665,40.67477189446216],[-73.85825153692174,40.67413561068757],[-73.8571134919669,40.67357505459495],[-73.85096453684082,40.671719511371116]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN43",NTAName:"Bellerose",Shape_Leng:32084.8852922,Shape_Area:55194904.2069},geometry:{type:"Polygon",coordinates:[[[-73.71049995362073,40.727227087413205],[-73.71587971994644,40.72654190565913],[-73.71828706778551,40.7260411112704],[-73.7256719695944,40.72403765899314],[-73.72816233921212,40.72308414028533],[-73.72836415359919,40.72361435238169],[-73.7299078105697,40.72327301236054],[-73.73147215120912,40.72741179527419],[-73.73272577953306,40.72773407036237],[-73.74555591476273,40.730637473483085],[-73.74629555788846,40.731180177967424],[-73.7464916217069,40.73141458904646],[-73.74665689504377,40.731814924561526],[-73.74672140362712,40.73247715064396],[-73.74472417766796,40.73401103024978],[-73.74294785855837,40.73545655203287],[-73.74151636839602,40.73686036104047],[-73.73986995534342,40.73886690132912],[-73.73933151426655,40.73947447517087],[-73.73901210418468,40.739746479176645],[-73.73816047986665,40.74037643531593],[-73.7343696590925,40.74235159856113],[-73.73375484853679,40.7427476283124],[-73.732416946135,40.74369457690727],[-73.73106461880839,40.74488837588429],[-73.729931691068,40.746188124590155],[-73.72906670974076,40.74739095924613],[-73.72896183010442,40.74763286903555],[-73.7288862157984,40.74756663670344],[-73.72829055962296,40.74745866499683],[-73.72806204987045,40.74856135087763],[-73.72768032618174,40.74963924507562],[-73.72627213222938,40.74930649076058],[-73.72339596217738,40.75038907592437],[-73.7225857184374,40.74885045120612],[-73.72010101501536,40.74977532930484],[-73.71988664004937,40.749369510672864],[-73.7189440633118,40.746944255672666],[-73.71544946835711,40.739216804071205],[-73.71476982690561,40.73790034823882],[-73.71147804876117,40.73250140137633],[-73.71075217230286,40.7305253750584],[-73.71049995362073,40.727227087413205]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK79",NTAName:"Ocean Hill",Shape_Leng:22496.5091808,Shape_Area:20078320.1855},geometry:{type:"Polygon",coordinates:[[[-73.9040463980889,40.67922059801916],[-73.900046261425,40.67689308953773],[-73.90291887262816,40.67568458142076],[-73.90438792800407,40.675206746606364],[-73.90450912336803,40.67505211098788],[-73.90841931632201,40.67331333272408],[-73.91923062965684,40.668631365306055],[-73.92011464253183,40.66837600234431],[-73.92014864255412,40.66822948387535],[-73.92275257154432,40.66709733296163],[-73.92164748131954,40.67887054703262],[-73.9163011986149,40.67857711243402],[-73.91804606958485,40.68721324777091],[-73.9040463980889,40.67922059801916]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK35",NTAName:"Stuyvesant Heights",Shape_Leng:28239.2212927,Shape_Area:31406561.0274},geometry:{type:"Polygon",coordinates:[[[-73.91804606958485,40.68721324777091],[-73.9163011986149,40.67857711243402],[-73.92164748131954,40.67887054703262],[-73.92183500137108,40.6789455591443],[-73.92197376275982,40.67907748928769],[-73.92213242865932,40.67974497770048],[-73.92281374267743,40.68341442962245],[-73.92900884018408,40.682702905485726],[-73.9291613070305,40.68343632444368],[-73.93500821720123,40.6827637680032],[-73.93435066474018,40.67956340755088],[-73.94032793962099,40.679889974562045],[-73.94394947271304,40.69822127983908],[-73.93856854782675,40.69884813554939],[-73.92970192402798,40.69386339710912],[-73.91804606958485,40.68721324777091]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK61",NTAName:"Crown Heights North",Shape_Leng:35635.5444966,Shape_Area:51618585.1081},geometry:{type:"Polygon",coordinates:[[[-73.92164748131954,40.67887054703262],[-73.92275257154432,40.66709733296163],[-73.92872204594657,40.66449556918267],[-73.92868404424777,40.66508602327383],[-73.93698362306591,40.66553550787775],[-73.93674947013409,40.6681273707869],[-73.94781857537949,40.6687837536743],[-73.94772996328905,40.66971344240998],[-73.95526963654763,40.67012490485407],[-73.95904725285418,40.67088226754646],[-73.96131877957849,40.67140667593056],[-73.96007428283123,40.674878070971616],[-73.96318238790344,40.675529503986],[-73.96153961956429,40.6800862550271],[-73.96134655885787,40.680463524300905],[-73.95529361599387,40.67920315104391],[-73.95543681493255,40.679957855183936],[-73.95328187439998,40.68020003147551],[-73.95337017442844,40.68064050844405],[-73.95155682676496,40.680498847575564],[-73.93435066474018,40.67956340755088],[-73.93500821720123,40.6827637680032],[-73.9291613070305,40.68343632444368],[-73.92900884018408,40.682702905485726],[-73.92281374267743,40.68341442962245],[-73.92242652099652,40.68121074517343],[-73.92197376275982,40.67907748928769],[-73.92183500137108,40.6789455591443],[-73.92164748131954,40.67887054703262]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN09",NTAName:"Morningside Heights",Shape_Leng:20753.0275622,Shape_Area:20157325.5613},geometry:{type:"Polygon",coordinates:[[[-73.95210125215368,40.81144285350151],[-73.95357577810364,40.80947669765964],[-73.95496657106321,40.81006455470347],[-73.9581816725283,40.805596791128394],[-73.95825482580135,40.804713878441426],[-73.95820300807164,40.80389427099882],[-73.95824878329815,40.803106486471115],[-73.95964685423152,40.80115642325646],[-73.95848111476144,40.800670477586024],[-73.95817297037708,40.800582541457096],[-73.96003018437119,40.79803810739431],[-73.97032589833502,40.8023845608707],[-73.97287179081539,40.80335618714271],[-73.97205095588008,40.804530376010185],[-73.97181849549725,40.80471754219951],[-73.9716111339144,40.80509618747433],[-73.97110765852325,40.80579013917412],[-73.96885218645347,40.80875198561196],[-73.96855747837367,40.809072893821174],[-73.9684247357318,40.809394060333176],[-73.96762038890758,40.810584850394505],[-73.96740185312369,40.8110221553971],[-73.96510784267484,40.81427547552715],[-73.96414082888299,40.8157716574539],[-73.96340395168487,40.816684196935306],[-73.9620310579599,40.81808633097916],[-73.95949328803863,40.81700747377887],[-73.95626958003412,40.813375023165094],[-73.95570690123454,40.8141439600403],[-73.95408058407713,40.8122801128958],[-73.95210125215368,40.81144285350151]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN12",NTAName:"Upper West Side",Shape_Leng:29158.1319774,Shape_Area:34380993.6197},geometry:{type:"Polygon",coordinates:[[[-73.96003018437119,40.79803810739431],[-73.97499744020564,40.777532545719424],[-73.98507184345014,40.781779680969194],[-73.98567936117642,40.78031263333493],[-73.98654378951805,40.780657980791055],[-73.98812746102577,40.78140179644223],[-73.98804128806734,40.78158596034862],[-73.98810029316343,40.7816028783052],[-73.98807644980623,40.78165093500168],[-73.9880180606334,40.7816341888105],[-73.98546581263146,40.78536070057553],[-73.98617270496544,40.786068452258675],[-73.98645586240198,40.7859192190814],[-73.98707234561569,40.78518963831753],[-73.98711901394275,40.78521031799894],[-73.98649778102359,40.78595120288725],[-73.98616462880626,40.786121882448306],[-73.98612842248588,40.78623900133112],[-73.98602727545033,40.7862289642368],[-73.98609763784941,40.786058225697936],[-73.98542932126942,40.78541394218462],[-73.98508113773205,40.785921935110444],[-73.98519883325449,40.785966552197756],[-73.98517050238989,40.786013334158156],[-73.98521621867376,40.786030501313824],[-73.98524962933016,40.78596313985583],[-73.98524003354572,40.78603585813685],[-73.98568388524215,40.78622212391968],[-73.98571752900456,40.78617599466878],[-73.98576566029752,40.786196274858625],[-73.9856828719225,40.78630978621313],[-73.98563627093064,40.78629014964412],[-73.98567072256468,40.786242911993796],[-73.98516264060842,40.78602099876467],[-73.98513163631205,40.786060297019965],[-73.98501696406497,40.78601423719563],[-73.98465507883022,40.78653474180794],[-73.98574378790113,40.78657008235215],[-73.98589227294448,40.78642652901966],[-73.98594956155678,40.78648711296135],[-73.98581237352651,40.78661686535709],[-73.9846194292453,40.786586016349915],[-73.97287179081539,40.80335618714271],[-73.97032589833502,40.8023845608707],[-73.96003018437119,40.79803810739431]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX33",NTAName:"Longwood",Shape_Leng:18982.1293605,Shape_Area:10732451.911},geometry:{type:"Polygon",coordinates:[[[-73.89483522924053,40.8262468412122],[-73.89487088534919,40.82393727215577],[-73.89320005033731,40.82400818250613],[-73.89586019567822,40.82263104589931],[-73.89588135872873,40.8209925747051],[-73.89283653079514,40.82097405461585],[-73.892901561986,40.82081122319063],[-73.89704466722095,40.81680185968668],[-73.8954285877251,40.815844672428106],[-73.89759123779672,40.813776873348985],[-73.90308946530325,40.80985639970225],[-73.90341720373648,40.811506882855625],[-73.90418036435749,40.81212482006474],[-73.90446551410588,40.812281959913086],[-73.90300983214364,40.8163177919547],[-73.90061141080827,40.82210880792951],[-73.9019875859743,40.8224404231056],[-73.90050540470314,40.826007622430005],[-73.90164895560513,40.826256978347054],[-73.90093510700856,40.82792810175718],[-73.89979756756765,40.827684354294504],[-73.8954852276467,40.828248540882335],[-73.8951102086082,40.82803689895232],[-73.89515277859984,40.827834290178146],[-73.89483522924053,40.8262468412122]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX55",NTAName:"Soundview-Bruckner",Shape_Leng:19755.3059061,Shape_Area:16260530.926},geometry:{type:"Polygon",coordinates:[[[-73.86033845846251,40.83325316598345],[-73.86032508956593,40.83319863961612],[-73.86008270199876,40.833111456899005],[-73.85739121187507,40.83229737222602],[-73.85737529457845,40.83204654639924],[-73.8561511282952,40.82677004571338],[-73.8735680846446,40.82441984646477],[-73.87898855614517,40.82371109055362],[-73.8799300227661,40.82364106213147],[-73.88178621769762,40.82340170049733],[-73.88438994861654,40.822967396448554],[-73.88464602649707,40.823823537474574],[-73.88461335944243,40.82527650331888],[-73.88438705287568,40.82681728353216],[-73.88378414134571,40.82827429246237],[-73.88198096595158,40.82835598023313],[-73.87729930449196,40.82874277437248],[-73.86456547270939,40.83238923465531],[-73.86155834859025,40.833330221162335],[-73.86129183742284,40.83353642099868],[-73.86085019682675,40.83361353809987],[-73.86075203106817,40.83359537475684],[-73.86049053534518,40.8334664040564],[-73.86033845846251,40.83325316598345]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX09",NTAName:"Soundview-Castle Hill-Clason Point-Harding Park",Shape_Leng:67150.4762946,Shape_Area:51958951.0723},geometry:{type:"MultiPolygon",coordinates:[[[[-73.88054585187345,40.818468022360655],[-73.88098029659422,40.818235623127926],[-73.88244779619045,40.81926832251218],[-73.8837878612648,40.821933413771255],[-73.88429488145051,40.82271820526731],[-73.88438994861654,40.822967396448554],[-73.88178621769762,40.82340170049733],[-73.8799300227661,40.82364106213147],[-73.87898855614517,40.82371109055362],[-73.8735680846446,40.82441984646477],[-73.87342239025335,40.82407345399972],[-73.87246834182385,40.82015009086087],[-73.87981464297569,40.8191624492633],[-73.88054585187345,40.818468022360655]]],[[[-73.8423171254648,40.827184684681164],[-73.84207620647354,40.82653773486493],[-73.84202727066099,40.82654744774503],[-73.84170466362015,40.825767381987966],[-73.84175457615964,40.82575542039668],[-73.84120250732009,40.82481685808496],[-73.84100637880961,40.82424102710955],[-73.84086821879589,40.82415350720731],[-73.84044970382466,40.82334556649755],[-73.84046603459996,40.82308002358285],[-73.84012785623139,40.82242142701557],[-73.8401125379606,40.82229940621991],[-73.84001752995961,40.822190242120335],[-73.84002656078874,40.82206773291383],[-73.83995959526133,40.82199985973815],[-73.83998726019149,40.82192193255414],[-73.83982926241693,40.82157150149602],[-73.83990886675215,40.82115479859528],[-73.83988142998685,40.820896867012735],[-73.83998460083197,40.82079477636264],[-73.84010069202016,40.82032276172858],[-73.84006060044294,40.82023007174077],[-73.83996730528735,40.82017908200395],[-73.83999860473577,40.81993494681397],[-73.84014625733198,40.81981924855241],[-73.84028911945015,40.819807704051264],[-73.84023155431491,40.81973553077011],[-73.84036528525614,40.81957775002422],[-73.84061881496069,40.81954950077843],[-73.840813450231,40.81944469119123],[-73.8408435233595,40.819355043390544],[-73.84104454654549,40.81923016959909],[-73.84128974603104,40.81915650957],[-73.84156703725515,40.818940432211626],[-73.84188441734315,40.818850018103234],[-73.84198684834044,40.818774373908134],[-73.84212585817747,40.81845822141067],[-73.84209366311855,40.81805954295157],[-73.84237534420502,40.81748984708059],[-73.84279875877245,40.81693700865026],[-73.84289216451066,40.81673045342624],[-73.84306379033737,40.8165586450267],[-73.84304301830119,40.81637731904972],[-73.84315283461214,40.81627342796546],[-73.8431699276372,40.81605105501337],[-73.84358001433822,40.8154683465972],[-73.8437405300036,40.81532169954199],[-73.8437722684804,40.815139071280306],[-73.84417911440971,40.81435717709198],[-73.84417920712986,40.814186670056365],[-73.84438736896743,40.813645130827105],[-73.84486622690478,40.8127515034177],[-73.84520736885226,40.81188702150693],[-73.84528019236559,40.811778116745614],[-73.84546538609885,40.81176496716081],[-73.84576561702227,40.81158227884196],[-73.84617302938317,40.81067666392871],[-73.84688871142201,40.81052132517743],[-73.84719684575792,40.81058048761504],[-73.84746772234418,40.81090394285511],[-73.84758283466141,40.811281749251094],[-73.84821486581855,40.812462908996565],[-73.84876286855342,40.812904686119516],[-73.84938556214124,40.81323686534589],[-73.85041066820115,40.81358402388846],[-73.8506024627011,40.8139301995403],[-73.85114472260702,40.81439654887591],[-73.85246819393376,40.81427920741925],[-73.85242403627313,40.81442008423489],[-73.85262058756427,40.814505749279284],[-73.85279369903857,40.814435150542664],[-73.85291177501858,40.814500996711516],[-73.85281883014774,40.814335174743924],[-73.85265013335633,40.81436314647358],[-73.85261262519269,40.81396258284021],[-73.85288616298557,40.8138817125295],[-73.85294266398022,40.813750246390946],[-73.8528693694274,40.81369282492294],[-73.85336857868822,40.81359390313627],[-73.85374358093381,40.813645833154816],[-73.8543465565112,40.813863857914924],[-73.85484235409916,40.814091518012376],[-73.85514695381586,40.81436899429721],[-73.85531511789938,40.814412141184675],[-73.85538030243687,40.81428888208269],[-73.8553196589575,40.81416156715019],[-73.85504860133686,40.81407318962293],[-73.85443075596598,40.81371791906975],[-73.85346774058634,40.813477711106025],[-73.85312764740804,40.81353514798097],[-73.85255739434928,40.813735334655156],[-73.85206357413176,40.81372606016076],[-73.85136357691717,40.81355006169793],[-73.85119997725297,40.813553143873555],[-73.85099218802839,40.81347985266296],[-73.85028418150782,40.813029263913094],[-73.84965010450165,40.81275188176829],[-73.84921243816727,40.81238419948329],[-73.84903294180677,40.812118910078524],[-73.8490453605222,40.81198632429121],[-73.84914037597655,40.81169834023151],[-73.8493842032197,40.81128707476842],[-73.84924827589532,40.811122263471866],[-73.84917358424852,40.81092434078399],[-73.84941898780481,40.810587427449484],[-73.84952977419134,40.81027822112496],[-73.84979804588166,40.810032877885895],[-73.84990892306422,40.8096601215868],[-73.84976705169898,40.809669120009495],[-73.84976011634078,40.80964521322044],[-73.84991938701836,40.809626665926835],[-73.8500171019232,40.809330656288815],[-73.85002012324543,40.80925403953002],[-73.84984662518077,40.80925232875299],[-73.85004241612906,40.80921540848762],[-73.84996732839237,40.808875512453525],[-73.84974778878538,40.808913639149374],[-73.84972865424784,40.808875111639665],[-73.84995749531348,40.80883006842595],[-73.8499511693801,40.80871472017219],[-73.84955076934942,40.80872086751087],[-73.84995355606381,40.80869340607635],[-73.84996696802817,40.808578018843605],[-73.84988093198172,40.808476252427766],[-73.84986663269072,40.808337009760564],[-73.8496116648653,40.80812418505204],[-73.8487600767984,40.808337457792156],[-73.84870962479349,40.80824046991643],[-73.84952218256848,40.80805527721761],[-73.84945431152308,40.8080236801958],[-73.84938838508384,40.80787753283624],[-73.84877737927746,40.80763587777497],[-73.84841640961652,40.807368775795304],[-73.84828024018297,40.806852405047685],[-73.8483987979713,40.80652432728164],[-73.84837953655273,40.80636018633368],[-73.84811499148917,40.806128582675555],[-73.84763420691263,40.806008590411444],[-73.84753621975595,40.805926402795144],[-73.8474882264191,40.80544890914913],[-73.84752776906275,40.805329604285866],[-73.84790298652742,40.80500217939724],[-73.84807624665521,40.80491964115],[-73.84840272883372,40.80485807682807],[-73.84864784606215,40.804699371480325],[-73.84874317212969,40.80489625918351],[-73.84879992124705,40.80489902944046],[-73.84883562500313,40.804796651169184],[-73.84894604005996,40.804762168994685],[-73.84903072008166,40.80479690682808],[-73.84921466578403,40.805020864419575],[-73.84933382307936,40.805051218261745],[-73.84931788941785,40.80466146570312],[-73.84941036337716,40.804667976275596],[-73.8494285266157,40.80505982813969],[-73.84982107183848,40.80509443084343],[-73.84997722709296,40.80505959447926],[-73.85014867564311,40.804534218812925],[-73.85019839102557,40.80451002497477],[-73.8509207057749,40.80447786811722],[-73.85118552925951,40.80449258610155],[-73.85147537296646,40.804598378326354],[-73.85204922599488,40.804599116241],[-73.854071204932,40.80445746242024],[-73.85460114248228,40.80454764982743],[-73.85538879311301,40.80446442679165],[-73.85585446335388,40.804514646139516],[-73.85662613767711,40.80483030371737],[-73.85657780148449,40.80493285143977],[-73.85639785205899,40.80494683571334],[-73.85592942786734,40.804724869734834],[-73.85569047098377,40.804676565575505],[-73.85556358500071,40.80478499583057],[-73.85560497039725,40.805062157034875],[-73.85572072708754,40.80512210417966],[-73.8561254256331,40.80528168125076],[-73.85652361993083,40.80523993226078],[-73.85694865178851,40.8052746147743],[-73.85712145614292,40.80533047465616],[-73.8572449198857,40.805307238116065],[-73.85712793694388,40.80518549405787],[-73.85667579724527,40.8049953703216],[-73.85667488240546,40.80495191070469],[-73.8568342102456,40.80490927021274],[-73.85812705699772,40.80546652004926],[-73.85889037502379,40.80588949067518],[-73.85891177250494,40.80595412602396],[-73.85882643239108,40.80599319272248],[-73.85850560039155,40.805819542792754],[-73.85844385359715,40.80595204569234],[-73.85831487707078,40.805998591012155],[-73.85838196938258,40.80614933143645],[-73.85839331448693,40.80640847622133],[-73.8585031176915,40.80642426926062],[-73.85851704240636,40.80663788375794],[-73.85861191967342,40.80669751303596],[-73.8589347172643,40.80667435866588],[-73.85908475852669,40.80648021816347],[-73.85885706633593,40.80603596399029],[-73.85887709403187,40.80598850810075],[-73.85897232074096,40.80596606723865],[-73.85919545024477,40.80626987782969],[-73.8593660233232,40.806675683207786],[-73.85940191920201,40.80752959133723],[-73.85937656357511,40.80756829517261],[-73.85925775276075,40.807542673007745],[-73.8592226531399,40.80703356901211],[-73.8591586814882,40.80687897464915],[-73.85908225488016,40.80684040682203],[-73.85866505169191,40.80683275149559],[-73.85838996228814,40.80825880914877],[-73.85877452654638,40.80923397463294],[-73.85895141287922,40.810271417587316],[-73.85907662566417,40.80997555810208],[-73.85947161492854,40.809905114265085],[-73.85954809676652,40.809818250205524],[-73.85966616558635,40.80980656472315],[-73.8601269523569,40.80960549938867],[-73.85974669043448,40.809277881413756],[-73.8595405986248,40.809019702446314],[-73.85932919295087,40.808996540578164],[-73.85941389747045,40.80886494740207],[-73.85931632584813,40.80820679991093],[-73.85940147964016,40.80816510231115],[-73.85970273338536,40.80895192545154],[-73.85996955467667,40.809260763920186],[-73.8602362545423,40.80945027734429],[-73.86077442429352,40.809663140063385],[-73.86228604582757,40.80994591122733],[-73.86135706534722,40.81083684190639],[-73.86111126701572,40.81115015357003],[-73.867079530291,40.81444134219911],[-73.8695448036227,40.81609475331287],[-73.87145992831215,40.82472020883906],[-73.85727871181682,40.82659962458276],[-73.85635677476688,40.826752085458125],[-73.85619656533879,40.82604099472444],[-73.85597162390528,40.82606387775786],[-73.85513639749286,40.82243618880661],[-73.84289858827434,40.82408305940845],[-73.84390649944743,40.82840633324008],[-73.84289527507835,40.82856917612174],[-73.84272187785834,40.82827562091445],[-73.84253325731062,40.82752730364587],[-73.8423171254648,40.827184684681164]]],[[[-73.83667856364178,40.817588762913694],[-73.83696070270669,40.81634054053473],[-73.8397435594376,40.81640607150278],[-73.83979657390654,40.81658028166943],[-73.83996634646958,40.81670411767838],[-73.84003308747648,40.8168221409416],[-73.84019020589312,40.81718827305727],[-73.84007129934884,40.817548908704126],[-73.84010005057817,40.81773615612366],[-73.84005323717612,40.817921288098916],[-73.83921022101008,40.81888835662422],[-73.8389273336157,40.81900120960544],[-73.83879133810842,40.8195285886899],[-73.83868347767142,40.819591380515135],[-73.83880789876241,40.81974193514178],[-73.83906398923861,40.81980243234161],[-73.83893197193288,40.821328934031975],[-73.8390116813387,40.82195017053054],[-73.83888231712896,40.82214048985693],[-73.83891082771872,40.82221526087008],[-73.83907059473009,40.82225284895754],[-73.83901290013972,40.82238043366315],[-73.83906086613186,40.82240162060198],[-73.83904904481194,40.82268874814583],[-73.83921255059533,40.82287580292446],[-73.83945427449137,40.82292284655892],[-73.83952777714357,40.823038158649254],[-73.83944934939407,40.823265355084345],[-73.83958012564547,40.82342745369341],[-73.83961186572405,40.823863426518095],[-73.83974013877231,40.82411049303667],[-73.84004144000569,40.82422666938138],[-73.84013113528621,40.82431708867481],[-73.8402724778753,40.824761978023595],[-73.84110780912118,40.826153326748745],[-73.84132088542792,40.82676473521847],[-73.84222047999326,40.8283418879438],[-73.84228428309754,40.82864660498179],[-73.84032294763234,40.82882395122286],[-73.83709061375835,40.8289671473109],[-73.83691608907723,40.828451826101585],[-73.83661819651613,40.82711414869367],[-73.83626003629826,40.824971880684814],[-73.83612598954788,40.82349743203129],[-73.83614239503905,40.81919890299804],[-73.83650145938019,40.818710659292364],[-73.83666068662247,40.81797116118242],[-73.83667856364178,40.817588762913694]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN23",NTAName:"College Point",Shape_Leng:59480.6661445,Shape_Area:50617410.2338},geometry:{type:"MultiPolygon",coordinates:[[[[-73.86788407536888,40.78736103669533],[-73.86803304873455,40.78718202995269],[-73.86813031933895,40.78723277784338],[-73.86918113437791,40.785943489569966],[-73.86923491765765,40.785969915418924],[-73.86817127125163,40.787256195654486],[-73.86823784702256,40.787279643084],[-73.86809912324011,40.78745866181914],[-73.86788407536888,40.78736103669533]]],[[[-73.83839013420685,40.79830487207688],[-73.83919004727309,40.797777265945044],[-73.84025860809136,40.79758885843214],[-73.83997099656182,40.79690564189314],[-73.8390367681228,40.797052477080776],[-73.8384008307784,40.796755258809405],[-73.83736225289819,40.794263524247704],[-73.83708406769921,40.79390346197056],[-73.8371260469754,40.79369555004113],[-73.83663288923377,40.7925163755386],[-73.8381806920698,40.79274850190154],[-73.83922303106193,40.79304304611827],[-73.83953626138182,40.79320132294934],[-73.84018731572058,40.79370471592344],[-73.84067828337382,40.793907891633204],[-73.84081532628042,40.791504885220604],[-73.83895676116028,40.79143843059256],[-73.83900524084824,40.790617322357015],[-73.83992306201104,40.79064990170561],[-73.84008157479629,40.78785153171433],[-73.83824429137957,40.78778591565143],[-73.83834963829922,40.78585030616101],[-73.83845605478703,40.78582446764887],[-73.8386992125566,40.78167695659995],[-73.8366938594283,40.7816495750185],[-73.8251374032295,40.78169970639239],[-73.82616437167341,40.77968464538979],[-73.82830621345812,40.776000787922],[-73.82908256172642,40.774794320652795],[-73.83000011059576,40.77373240736587],[-73.83161455517782,40.77241020922491],[-73.83433960156574,40.770787819509245],[-73.83536623599826,40.77012144096686],[-73.836140524864,40.769527373748446],[-73.83746794619812,40.76830671770571],[-73.83805766709777,40.76759634398352],[-73.8391318926342,40.76599110556835],[-73.83952678713938,40.7661395497265],[-73.83969772549086,40.76639267704537],[-73.83973386806863,40.766734414653186],[-73.83949805861917,40.767017016985626],[-73.83959072609815,40.767110824719005],[-73.83975387982274,40.767120444435726],[-73.83978750406861,40.76705148540924],[-73.839869578183,40.76708653570917],[-73.83993922177469,40.76706427714734],[-73.83988430756553,40.76695220420759],[-73.83990190913453,40.766824158414025],[-73.84000758970946,40.766623420465876],[-73.84022374446917,40.76652923979877],[-73.84031170315286,40.76629479789837],[-73.84086515071176,40.76621486974829],[-73.8408600710315,40.76614219398063],[-73.84088883538399,40.76621037925822],[-73.84102191922695,40.7661851482762],[-73.841008029599,40.76611688421675],[-73.84107888708111,40.76611036721399],[-73.84105643008807,40.76617860508417],[-73.84120530561162,40.766150380877384],[-73.84120075497819,40.76608124266234],[-73.84122723929282,40.766146221616175],[-73.84172286141153,40.766043280530404],[-73.84166211638204,40.76596848399207],[-73.84171309711834,40.76595816022959],[-73.84174481257213,40.766038413062326],[-73.84196444921884,40.76598971084907],[-73.84196546583156,40.76592732305349],[-73.84186231560814,40.76592529148973],[-73.84231744497137,40.7658191365727],[-73.84236463453713,40.765835266052676],[-73.84227261595426,40.765855928246545],[-73.84231828010182,40.765911251377084],[-73.8425134757194,40.76586796746761],[-73.84247287860016,40.765785331371816],[-73.84252261658962,40.76577500488191],[-73.84253623494857,40.76586292069538],[-73.84268196002424,40.765830607164276],[-73.84295915637374,40.7658547224249],[-73.84336969753048,40.76572529284761],[-73.84346820629622,40.765653071416416],[-73.8437063352798,40.76567996834528],[-73.843947482697,40.76549488148481],[-73.84448895884205,40.76545960258393],[-73.84491332846123,40.76552838767595],[-73.84528163541587,40.76566611948252],[-73.84602715981245,40.766044871553845],[-73.8462002403795,40.76619634316638],[-73.84652170484962,40.76629579962744],[-73.8468496463688,40.76626203475839],[-73.84723067976155,40.7663131580957],[-73.84780575104429,40.76677294817166],[-73.84821324018462,40.767634597847994],[-73.84856697205146,40.76809090719991],[-73.84833089227482,40.76833211506263],[-73.84830138265785,40.76843044060747],[-73.8488352238172,40.768752302094036],[-73.84901287145172,40.76921530435213],[-73.84892255780399,40.76932453446285],[-73.8489227616772,40.76940717390534],[-73.848658639603,40.769614331695756],[-73.84860101425359,40.76981782488276],[-73.84872999189102,40.76998954177918],[-73.84892724343372,40.76991478836157],[-73.8488178109573,40.769738054133235],[-73.84950427178488,40.76951022388225],[-73.84955529811093,40.769562898502194],[-73.84949207284858,40.76958340150844],[-73.84955506042934,40.769668112981506],[-73.84963028897404,40.76966134932584],[-73.84970521295284,40.76978953551764],[-73.84964194038288,40.76983062462466],[-73.84969586732994,40.76993133597955],[-73.84977407859319,40.7699360129438],[-73.8490755126137,40.770193563268386],[-73.84899274432647,40.77002868007275],[-73.8487267189044,40.77010618908965],[-73.84858664304573,40.770504249905],[-73.84867152934957,40.77076157290335],[-73.84890527065546,40.77098225068582],[-73.84912991114939,40.77106378837756],[-73.84949402711865,40.77132861681544],[-73.84977303656784,40.771804799152584],[-73.84994241882978,40.77192719325987],[-73.85030397516576,40.77193819959036],[-73.85033808818525,40.771743668538754],[-73.85036823592398,40.77181539332885],[-73.85126052461455,40.77187287281681],[-73.85130108440582,40.77180636079845],[-73.8512703762071,40.771985534743564],[-73.8512537491334,40.771890786148546],[-73.85036146596313,40.77183074564869],[-73.85033410569378,40.77201760525556],[-73.85029717640124,40.77196635301828],[-73.84995162583527,40.771958298375324],[-73.84986902411919,40.772183062008224],[-73.8500373857292,40.77218107292836],[-73.85004065546363,40.77222460055492],[-73.84983958377792,40.77223100236485],[-73.84957161022011,40.77256110383161],[-73.84918580503236,40.773104720588584],[-73.84897619933308,40.77356166795781],[-73.84896112400038,40.77374268475333],[-73.84921678094061,40.774639582067245],[-73.84916308140728,40.77500454682159],[-73.84893873474762,40.775560358480696],[-73.8491163666394,40.77578751887027],[-73.84895559391533,40.77796167373218],[-73.84903388635969,40.77809137635634],[-73.84936761627041,40.77816868022553],[-73.8495358659634,40.77842588555707],[-73.8497474142047,40.77841405400605],[-73.84974445808723,40.778464814107764],[-73.84953664690558,40.77845762028984],[-73.84945106324771,40.77858090421408],[-73.84945995577803,40.77865656756345],[-73.84975786860373,40.778722305772476],[-73.84980132164125,40.77876730602867],[-73.84993353296176,40.77876912338099],[-73.8498008817831,40.77879328482853],[-73.84978114316348,40.77911193004275],[-73.84957155453701,40.77919283670707],[-73.84957921443748,40.77941026414157],[-73.84963968999159,40.77948327517759],[-73.84975404435251,40.779477201424335],[-73.84973851342339,40.77940144669408],[-73.85012866957877,40.77936681108511],[-73.85011148130212,40.779300895374035],[-73.8506722773164,40.77919399711155],[-73.85096718956468,40.77911091411253],[-73.85094705724251,40.77906915543025],[-73.8514760606044,40.77896440872543],[-73.85148755546659,40.77899297761323],[-73.85101339619418,40.77912195667434],[-73.85107946082857,40.779297757684],[-73.85015741651678,40.77943274199088],[-73.85014017381948,40.77939098692655],[-73.85012275250426,40.77942830422234],[-73.84979304347628,40.77949768469491],[-73.84981720066122,40.779630347551596],[-73.85235267881522,40.77948067182818],[-73.85232086242218,40.779169284703755],[-73.85238832844523,40.77952890238777],[-73.85235751917288,40.779496739045165],[-73.84982102325982,40.779651338802175],[-73.84984362910451,40.77977547492008],[-73.84956744240357,40.77987540475432],[-73.84955315550083,40.779990415384006],[-73.84973465207516,40.77999639195544],[-73.84974018106978,40.780040450022895],[-73.85031473957852,40.780041535501496],[-73.85037642446959,40.780009592085506],[-73.85044992861543,40.78003365069722],[-73.85045655965587,40.77988827991288],[-73.85048371654518,40.7799618037762],[-73.85162286781564,40.77993931296451],[-73.85163563328629,40.779869035490286],[-73.85169028085545,40.77986750797559],[-73.85167099162238,40.78003522887811],[-73.85162266134178,40.78003197177816],[-73.85162492646276,40.77995848607226],[-73.85048578225802,40.77997778253563],[-73.85047510483825,40.780052854327074],[-73.85041830321086,40.780078342336914],[-73.84949381274431,40.78006582811505],[-73.84958872905416,40.780232725119795],[-73.8496174002991,40.78054600206632],[-73.84981503152129,40.78064171303457],[-73.84981173102312,40.780870733632185],[-73.84988932081794,40.78108913479842],[-73.85093970945037,40.781081162892065],[-73.8509364639654,40.781119575156],[-73.84988728063752,40.781121511316854],[-73.84983660080398,40.78159962491712],[-73.84918709418581,40.78164181104693],[-73.849234925789,40.781701568353235],[-73.84948737902806,40.781748850911455],[-73.84954774265996,40.7818410783427],[-73.84949266381935,40.78196840893768],[-73.84926950290884,40.78212166180875],[-73.84925258182844,40.78226477501403],[-73.84952319204761,40.78235653832875],[-73.85023033855576,40.78241557832096],[-73.85028089657791,40.78245956200958],[-73.85050121243168,40.78235387589485],[-73.851158882904,40.78236693863502],[-73.85123047734251,40.78240254733372],[-73.85314993069177,40.78232393627616],[-73.8532233101617,40.78206053386585],[-73.85331933850037,40.78203460406848],[-73.8548542920655,40.781940041469866],[-73.85528242786702,40.78197538384733],[-73.8553884517456,40.78207571580804],[-73.85545062835031,40.78314307863577],[-73.85573475263921,40.7831565720152],[-73.85573467582262,40.783192025676755],[-73.85581862763893,40.78319415645905],[-73.85587567996785,40.78330970432562],[-73.85587458930499,40.78319827823176],[-73.85592656616086,40.783196317505386],[-73.85593296680126,40.783317879498824],[-73.85645206661756,40.783322990816075],[-73.85643993663156,40.783157516967],[-73.8566769089344,40.783150087659486],[-73.85660286912328,40.78289226124879],[-73.85664951090608,40.782892319276414],[-73.85671872229133,40.78320553614919],[-73.85684129014672,40.783371363485166],[-73.85734052316836,40.78337127058619],[-73.85749351368148,40.7834495245745],[-73.85761223352836,40.78361187050413],[-73.85808318103427,40.783724078339084],[-73.85817378931843,40.78401740034894],[-73.85812502709338,40.78418815131217],[-73.8578892976976,40.78428703527754],[-73.85783105450368,40.78444208833941],[-73.85784666000168,40.78450904406454],[-73.85793550112932,40.78450208705598],[-73.85797685608654,40.78467816456891],[-73.85852698593597,40.78522893917453],[-73.85899156051012,40.785204168639865],[-73.85905644532374,40.785431813060384],[-73.85909500008366,40.78543874885147],[-73.85899065925456,40.78510490083787],[-73.85903628973944,40.785092722276936],[-73.8591104979867,40.78544258469838],[-73.85952909263577,40.78553055952968],[-73.85952369572085,40.78556195425345],[-73.85906638596016,40.78546668726041],[-73.85908887702193,40.78553228857314],[-73.85899048937476,40.785491598431115],[-73.85894034431863,40.78556764738819],[-73.85907417510448,40.78560385612563],[-73.85913505739214,40.78570141202894],[-73.859012474675,40.785801218356866],[-73.85912461223825,40.785850159160674],[-73.8591032279806,40.7858795087699],[-73.85900754935805,40.785833144017914],[-73.85898579987946,40.786004942874506],[-73.85858840508558,40.786148140153834],[-73.8585694261782,40.78627618569104],[-73.85868283350078,40.78653116647524],[-73.85812817092382,40.78705156105743],[-73.85797998052432,40.78705739404154],[-73.85753581125842,40.78693055011703],[-73.85723247185746,40.78672269067813],[-73.857011189699,40.786647358763524],[-73.85681133765593,40.786672613194575],[-73.8566345788448,40.786730115165824],[-73.85651686958866,40.78694562095414],[-73.85635589820711,40.78697773038967],[-73.856200203812,40.78715009995978],[-73.85617275786657,40.78749321987568],[-73.85595868979166,40.78767517877457],[-73.85539747579995,40.787690540339725],[-73.85476457398677,40.787780011211545],[-73.85428498263198,40.787739117496706],[-73.8534518446145,40.78782611179627],[-73.85322865679301,40.78789022303589],[-73.85284230067748,40.78821137173907],[-73.85284201072237,40.78834255597263],[-73.85288990261299,40.788346669552105],[-73.85438364788581,40.78832012876302],[-73.85463110180241,40.7884179831317],[-73.8548019479933,40.78861915472675],[-73.85477254371324,40.789036374605246],[-73.8545612018889,40.78966970070038],[-73.85447194137355,40.79025897532041],[-73.8535519793622,40.79067681416439],[-73.85309377037599,40.79083784371401],[-73.85274514158601,40.79101060206983],[-73.8526583069305,40.791106420610326],[-73.85266418365853,40.79125579452453],[-73.85285879649223,40.79153378501165],[-73.8537433789428,40.792293772302585],[-73.85377854976834,40.79242127400789],[-73.85363080166007,40.79309818271063],[-73.85373351660077,40.79393537408678],[-73.85353237242512,40.79413885681258],[-73.85304034260248,40.79426355396389],[-73.85276627198616,40.79438924682415],[-73.85263725293447,40.79454229280632],[-73.85263098256245,40.79494485424469],[-73.85255611576741,40.79489356497344],[-73.85242651222977,40.794609758821004],[-73.85159077157464,40.794086530575285],[-73.85097034152751,40.79385794832401],[-73.85000721629642,40.79360091123316],[-73.84933654876025,40.79337149956618],[-73.84906160835087,40.793362610298466],[-73.8489305189893,40.79341069705601],[-73.84884894723227,40.79350168515573],[-73.84907814795727,40.79414538448079],[-73.84903163098437,40.794338084636095],[-73.84878370219919,40.794542102226124],[-73.84887654563344,40.795134041691234],[-73.8487099936134,40.795416481289855],[-73.84855988738981,40.795495060218315],[-73.84781967180635,40.795784695468086],[-73.84660914258151,40.79602723440848],[-73.84632264384064,40.79616408876167],[-73.8462452847246,40.79616195066794],[-73.84597412890419,40.79601730187317],[-73.84559167122411,40.79601181902568],[-73.84561606324522,40.795845718962205],[-73.84528519601372,40.79544339037913],[-73.84498447687012,40.795265209412115],[-73.8448889217659,40.795109095609796],[-73.84459915044434,40.79491154987516],[-73.84438472054501,40.79487034153042],[-73.84390523936055,40.794869306206365],[-73.84354668938991,40.79491394401048],[-73.84333760876125,40.7950213869603],[-73.84336415641464,40.79534609866872],[-73.84330632386919,40.795500933488874],[-73.84317961314952,40.795433872027],[-73.84304363919281,40.795214739011726],[-73.84289545847204,40.79518278540814],[-73.84284865322391,40.795213401671695],[-73.84328497260337,40.79617439268593],[-73.84320653702909,40.79619290309407],[-73.84280875241225,40.79541822241309],[-73.84225959368347,40.79558496893733],[-73.84292069025281,40.796903686183946],[-73.8428667525937,40.79692222907192],[-73.84216747341138,40.79561294016359],[-73.84190480251942,40.795621794240745],[-73.8416869879849,40.795408670894936],[-73.84158721240779,40.79540106821694],[-73.84142736783137,40.79549043036402],[-73.84136287271956,40.795619950695084],[-73.84136133709815,40.79585660057846],[-73.84149409342288,40.79598188920638],[-73.84134129922946,40.79609535875539],[-73.84129943612108,40.796219669330895],[-73.84059982294619,40.79680680321054],[-73.8401393036446,40.7968791878361],[-73.84043977575956,40.797637513245306],[-73.84041517975956,40.79767843675613],[-73.83923388155394,40.79788530644818],[-73.83920948324106,40.79784431435395],[-73.83841944150056,40.798342146636365],[-73.83842915829165,40.79837567115333],[-73.83789967503847,40.79850897018146],[-73.83787044050948,40.79844190861322],[-73.83839013420685,40.79830487207688]]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN32",NTAName:"Yorkville",Shape_Leng:17409.2100766,Shape_Area:13594779.619},geometry:{type:"MultiPolygon",coordinates:[[[[-73.93804640603437,40.78082954427551],[-73.93790133623939,40.78074999617253],[-73.93779448726416,40.780781258755425],[-73.93779944245678,40.781031339796996],[-73.93764631821483,40.78100121589283],[-73.93759894622622,40.78046784086144],[-73.93779269102458,40.780357904212664],[-73.938237735094,40.780259079465324],[-73.93839622591783,40.7802624328886],[-73.9386120088806,40.7803389558693],[-73.9392374617828,40.77973339355579],[-73.939318219876,40.77971800182686],[-73.93953015859368,40.77952762026082],[-73.93958378972476,40.77957647400713],[-73.93943238100773,40.77981220027457],[-73.93949329818172,40.77987369131575],[-73.93937515379675,40.7799787718492],[-73.93930528496779,40.77995122455209],[-73.9392178962528,40.780013520221424],[-73.93872802926595,40.78051074370458],[-73.93883951845037,40.78059924979984],[-73.93874423089275,40.78104387604222],[-73.93830097951646,40.78136208436499],[-73.93808213268761,40.781418437274596],[-73.93796757721647,40.78128933406025],[-73.93804948921758,40.78105580604244],[-73.93804640603437,40.78082954427551]]],[[[-73.94383256676065,40.782859088972664],[-73.94376005274468,40.78282893221969],[-73.9436320172787,40.78296232318279],[-73.94354420712477,40.7828805243252],[-73.94364823539011,40.78265616133325],[-73.94388068102498,40.781532042861755],[-73.94387075988706,40.78127302657157],[-73.94360047475412,40.78015909946616],[-73.94321386265224,40.77931758865997],[-73.94300423950467,40.77963949547416],[-73.94278066641971,40.77950615406814],[-73.94271600611204,40.77954416947641],[-73.94262799650491,40.779323118968954],[-73.94271237476218,40.7792148569398],[-73.94253556320852,40.77909095606242],[-73.94289340818793,40.7786140932461],[-73.94265530676857,40.77812496557382],[-73.94243848174503,40.777315235765954],[-73.94232881653734,40.777242655641246],[-73.94236132615558,40.77716473788714],[-73.94219877737157,40.777086771456666],[-73.94207418803877,40.77691784697707],[-73.94200266788386,40.776185317383025],[-73.94208160523488,40.77595701631736],[-73.94240100949048,40.775726927526115],[-73.9425876964068,40.77521895652805],[-73.94293043781397,40.774676268035805],[-73.94366431814844,40.77384076367422],[-73.94487889662857,40.772569561504994],[-73.94640418985175,40.771269045619526],[-73.94748975456329,40.7701151545216],[-73.95729410043843,40.77428355457271],[-73.94933170560954,40.78519312655759],[-73.94383256676065,40.782859088972664]]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK37",NTAName:"Park Slope-Gowanus",Shape_Leng:31492.3422586,Shape_Area:42501384.4217},geometry:{type:"Polygon",coordinates:[[[-73.97375598416605,40.6830340197846],[-73.97374011732195,40.6828920324963],[-73.97469118307257,40.68026661630196],[-73.97618051352339,40.67806432096369],[-73.97188596772811,40.676394652976754],[-73.96949738784465,40.67590637996424],[-73.96969317549178,40.67536085443335],[-73.96928310681992,40.67507596707361],[-73.96907731725602,40.67483967081448],[-73.96883910850856,40.67440796702847],[-73.9687420496577,40.67408712196888],[-73.96874174717372,40.673448029972036],[-73.96894206351266,40.67288749127016],[-73.96966394014588,40.67264236736452],[-73.97041289484474,40.672593723023965],[-73.97085440635156,40.67186436477422],[-73.97181594654785,40.67062947530519],[-73.97965353410343,40.66124323322831],[-73.97993375157452,40.66127078067191],[-73.98017161103702,40.66115465898042],[-73.98223034213164,40.662141492793666],[-73.9839179262909,40.660137488392884],[-73.9850867930315,40.65901328842666],[-73.98648200798273,40.659909879618205],[-73.98688464512195,40.660366389098186],[-73.9872506884457,40.66037895632415],[-73.98871651059684,40.662404938359266],[-73.99063765228712,40.66057741376787],[-73.99692689946772,40.66437491500545],[-73.9958102528014,40.66553098906085],[-73.99595866270725,40.665704549474086],[-73.99575957360109,40.66578388890486],[-73.99530800378002,40.666157999468],[-73.99502872563237,40.66651528579297],[-73.9949035013398,40.666785434513706],[-73.99507117648324,40.66707573169508],[-73.99585129212464,40.66797249600197],[-73.9964814270144,40.66892523573976],[-73.99667191671686,40.66873916801662],[-73.99861887970067,40.67183017256472],[-73.99847134058679,40.67205910098933],[-73.99805741652258,40.672469545103176],[-73.99596213113568,40.67496822441082],[-73.99540989293106,40.67556309728558],[-73.99493096224708,40.67590705297744],[-73.99450491118412,40.67607277467224],[-73.99405797580707,40.676182783530216],[-73.99312374473858,40.67617871383899],[-73.99069861947515,40.6758074189659],[-73.9894089638394,40.677454517362186],[-73.98931813737082,40.67834938936428],[-73.98766803899372,40.68081780924552],[-73.98653302974753,40.680372638934536],[-73.98610388172817,40.68100852219328],[-73.98175333524142,40.67931322129869],[-73.97876022462926,40.68376544448311],[-73.9783886249567,40.68442334154626],[-73.97804289547376,40.684856615139985],[-73.97745722097206,40.684052286608065],[-73.97709796719118,40.683869780472165],[-73.97595299697944,40.68347469826458],[-73.97375598416605,40.6830340197846]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN17",NTAName:"Midtown-Midtown South",Shape_Leng:27035.7389625,Shape_Area:30192051.9793},geometry:{type:"Polygon",coordinates:[[[-73.97301487176121,40.76427887944519],[-73.96980028825634,40.76291351263022],[-73.97580739426198,40.75467727461179],[-73.97651569446147,40.75497426334509],[-73.97834877041339,40.752410130141804],[-73.98088709894267,40.75348098873851],[-73.98227490438855,40.75157729841357],[-73.98407636095357,40.749102125383985],[-73.98085054416383,40.747750370378185],[-73.98407485194073,40.743324718416474],[-73.99051503521112,40.74604031741259],[-73.99141858560698,40.7448026824962],[-73.99709902854309,40.747205102042216],[-73.98211061533098,40.76774447654632],[-73.98179174612808,40.76771375683202],[-73.98151276215215,40.76789016803162],[-73.97301487176121,40.76427887944519]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN19",NTAName:"Turtle Bay-East Midtown",Shape_Leng:21644.2854414,Shape_Area:17397677.6899},geometry:{type:"MultiPolygon",coordinates:[[[[-73.9612468228547,40.740424731718385],[-73.96125957937343,40.740332939444805],[-73.96164163979047,40.74035611292442],[-73.9616298256384,40.740458929457496],[-73.9612468228547,40.740424731718385]]],[[[-73.96421230461786,40.74660431797427],[-73.96427364752462,40.746541844552404],[-73.9643372925631,40.74654572659295],[-73.96444522752677,40.74641042475802],[-73.96458318426946,40.74645440067331],[-73.96447543657698,40.746640833197816],[-73.96415980288431,40.74686554735955],[-73.96412514486175,40.74684576060531],[-73.96421230461786,40.74660431797427]]],[[[-73.96162927534917,40.7551523842591],[-73.96532405652563,40.7510477182722],[-73.96836519324148,40.74743349462008],[-73.96823171649706,40.747368476489015],[-73.96830191005925,40.74727329874199],[-73.9698756140306,40.7454447891376],[-73.96997377026274,40.74549574743059],[-73.97078834776642,40.74440621769031],[-73.97094063026499,40.74447144402554],[-73.9711250301857,40.74418974844502],[-73.97070317465607,40.743990494908566],[-73.97076123590794,40.74394210764179],[-73.97118193576081,40.74410323270783],[-73.97135753007947,40.74383845535961],[-73.97120546301967,40.74377151030129],[-73.97128101831677,40.743651942051315],[-73.97124127770066,40.74363774014749],[-73.97118780171988,40.743707363261755],[-73.97108533439574,40.74366405834515],[-73.97124584132813,40.74340203417448],[-73.97135416843821,40.74342493319508],[-73.97131062453981,40.743524023190645],[-73.97135563409174,40.74353964934943],[-73.9716792120084,40.74305446355715],[-73.97350834958294,40.74378203368307],[-73.97122806189908,40.74691917069016],[-73.97584137857154,40.74888595486781],[-73.97444451559606,40.750764692994835],[-73.97834877041339,40.752410130141804],[-73.97651569446147,40.75497426334509],[-73.97580739426198,40.75467727461179],[-73.96980028825634,40.76291351263022],[-73.9587779082273,40.75827092034615],[-73.95918103219992,40.75785611105221],[-73.96065638180474,40.75592314955018],[-73.96162927534917,40.7551523842591]]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN20",NTAName:"Murray Hill-Kips Bay",Shape_Leng:23132.4255512,Shape_Area:14465584.2197},geometry:{type:"MultiPolygon",coordinates:[[[[-73.96230408011098,40.73311409090805],[-73.96226340423296,40.73291555162348],[-73.96352136167032,40.73282718736598],[-73.96358665286172,40.73292157806566],[-73.96367726013197,40.73292007347844],[-73.96366122635746,40.73279850598195],[-73.9640650711524,40.73277904065386],[-73.9640604792743,40.7329450238287],[-73.96230408011098,40.73311409090805]]],[[[-73.97219641647808,40.74040257875025],[-73.97221685488402,40.740307625061675],[-73.9722700126808,40.740308574345505],[-73.97229979590863,40.74003496274296],[-73.97243888981416,40.74002174997322],[-73.97265743869113,40.7392227542771],[-73.97259038158627,40.73676965433949],[-73.9724899417474,40.735803280107596],[-73.97286939178467,40.735770861285545],[-73.9744138581653,40.736414393858944],[-73.9744597500439,40.73629401971816],[-73.97402692170377,40.736125767245625],[-73.97404679254475,40.73609992943203],[-73.9744664711336,40.73627845683004],[-73.97450375947156,40.73606458844389],[-73.9741406201839,40.7359556566647],[-73.97450488285962,40.73604228053668],[-73.9745079393818,40.735796945269776],[-73.97448737985137,40.735876987533075],[-73.97446125831932,40.73583242406433],[-73.97424533118314,40.73578115493262],[-73.97446939214792,40.73579916097904],[-73.97446461207333,40.735668172162015],[-73.97414539712076,40.73567255831331],[-73.97305698778139,40.735177452913106],[-73.97280661710461,40.735523918521125],[-73.97293031992528,40.73560761439681],[-73.97276308380353,40.735505087473534],[-73.97299695202484,40.73518650689109],[-73.97283745943481,40.73519971620183],[-73.97294520692611,40.73506517007094],[-73.97297083635605,40.73515721697126],[-73.97303684713731,40.735127947144925],[-73.97329895112209,40.73524235507723],[-73.97329627362964,40.7350408566425],[-73.97354472883941,40.734944326604015],[-73.97474900590649,40.735425188500095],[-73.97495992976468,40.73536871799873],[-73.97522275594582,40.7353979075307],[-73.97849845639804,40.73679095652543],[-73.97805226497616,40.73755395365617],[-73.98266497479025,40.73949733270412],[-73.98085965412407,40.74196976808192],[-73.98407485194073,40.743324718416474],[-73.98085054416383,40.747750370378185],[-73.98407636095357,40.749102125383985],[-73.98088709894267,40.75348098873851],[-73.97444451559606,40.750764692994835],[-73.97584137857154,40.74888595486781],[-73.97122806189908,40.74691917069016],[-73.97350834958294,40.74378203368307],[-73.9716792120084,40.74305446355715],[-73.97188888913065,40.74272481985293],[-73.97174059715846,40.7426635795089],[-73.97195955856253,40.74233792154364],[-73.97228992099217,40.74072103903175],[-73.97216848387873,40.74069312030048],[-73.97223504317165,40.740413403401945],[-73.97219641647808,40.74040257875025]]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN40",NTAName:"Upper East Side-Carnegie Hill",Shape_Leng:23778.4063968,Shape_Area:20065328.7099},geometry:{type:"Polygon",coordinates:[[[-73.94933170560954,40.78519312655759],[-73.96658338422283,40.76155093507397],[-73.97301487176121,40.76427887944519],[-73.95577735912323,40.78791392447104],[-73.94933170560954,40.78519312655759]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN31",NTAName:"Lenox Hill-Roosevelt Island",Shape_Leng:37847.3643322,Shape_Area:21511130.8706},geometry:{type:"MultiPolygon",coordinates:[[[[-73.95620136735037,40.74968563332347],[-73.95619953007305,40.749670714925344],[-73.95620136867242,40.749685632821375],[-73.95620136735037,40.74968563332347]]],[[[-73.9418003279553,40.769046926625016],[-73.94285528620705,40.76830349440929],[-73.94381427388863,40.7672209120502],[-73.9448402665221,40.765823628390805],[-73.94662141408685,40.76386277208093],[-73.94943175497147,40.76054861685859],[-73.95033358880572,40.75985675555384],[-73.9512600590877,40.75881011637173],[-73.95177822025995,40.75840254987695],[-73.95209232956535,40.75799314034456],[-73.95217663423735,40.75783133593737],[-73.9522114634206,40.757583639832895],[-73.95254079336875,40.757095314537246],[-73.95330696035853,40.7563443271275],[-73.95507326928161,40.75479868255477],[-73.95519503183567,40.75477452347618],[-73.95692404370732,40.7529611598914],[-73.95791452493185,40.75210985452531],[-73.95860755756424,40.7516133239869],[-73.95903975987352,40.75139248511162],[-73.95902757442488,40.75129736985094],[-73.95955875996881,40.75081459776217],[-73.96082903392382,40.74991055070525],[-73.96117373026979,40.74949844257153],[-73.96142477936588,40.7494012903988],[-73.9615830493857,40.74941430110648],[-73.9616079944245,40.749564316510174],[-73.96155080004516,40.74977388970561],[-73.9613200340875,40.75007467193483],[-73.96111060141875,40.75060046990071],[-73.96070940876243,40.75114849824432],[-73.96001132329815,40.7518315173348],[-73.95950079995097,40.75295638219571],[-73.95901616693567,40.75359505995761],[-73.95892671120951,40.75356249236139],[-73.95845836871766,40.753949236505086],[-73.95565513098005,40.757095106228114],[-73.95550425524473,40.75733345607254],[-73.95366241876842,40.759479733611165],[-73.95332321617957,40.75974596418481],[-73.95339140733954,40.75979676235769],[-73.95312451571041,40.760052758429794],[-73.95297788216074,40.759962107876866],[-73.95208632266548,40.760862154404805],[-73.9516250497398,40.76167886360574],[-73.95093734928088,40.76257049523779],[-73.94997191750294,40.763646029814446],[-73.94920376022777,40.76426964383276],[-73.94908628791565,40.764264027274926],[-73.94770109012802,40.76602239732512],[-73.9465527389316,40.767368204561464],[-73.94585112333094,40.768247750235524],[-73.9458445142382,40.76832122825139],[-73.94570357334803,40.768327933809196],[-73.94548114289287,40.768624779437786],[-73.9456272109345,40.768692953178856],[-73.94556302048788,40.76880177552451],[-73.94540491916129,40.768732173038856],[-73.94524510407459,40.76877326831069],[-73.9451570422152,40.769118317751655],[-73.94472478497457,40.76978627153482],[-73.94400423956336,40.7702939821508],[-73.94320414114273,40.77099239924603],[-73.94257830300967,40.77170185722103],[-73.9421267458072,40.772034700509074],[-73.94136990742405,40.772309150827695],[-73.9408870721167,40.77237251577599],[-73.94056957486687,40.77261475946702],[-73.9402746085516,40.77294743689259],[-73.94017959804106,40.77295931559438],[-73.94007665685501,40.77292618686018],[-73.94001157324416,40.77284236105549],[-73.94028207924197,40.772301406991204],[-73.94027766722354,40.77171314173949],[-73.94020021779653,40.77112830566271],[-73.94027985829325,40.77067071100977],[-73.94035533477512,40.77049657437102],[-73.94082605300343,40.769912156262976],[-73.94111778718025,40.769414408574626],[-73.9418003279553,40.769046926625016]]],[[[-73.95854329612965,40.758495622935556],[-73.9587779082273,40.75827092034615],[-73.96658338422283,40.76155093507397],[-73.95729410043843,40.77428355457271],[-73.94748975456329,40.7701151545216],[-73.94866416477961,40.76885762339427],[-73.95006979369165,40.76702508838357],[-73.95441826078604,40.76218410495104],[-73.95854329612965,40.758495622935556]]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX59",NTAName:"Westchester-Unionport",Shape_Leng:27119.0506176,Shape_Area:23948059.0946},geometry:{type:"Polygon",coordinates:[[[-73.8393679425065,40.84088297348177],[-73.83956700266877,40.84054722788649],[-73.83972014383187,40.83956540598428],[-73.83958953765698,40.83879848582566],[-73.83972014515656,40.83956540548354],[-73.84030282537185,40.839524313944985],[-73.84027376953883,40.83920627289606],[-73.84016248497481,40.83906606478445],[-73.84010873937099,40.838852118209786],[-73.84003063664564,40.83885759214869],[-73.84002808869033,40.83894787100794],[-73.84000970504766,40.83883809045586],[-73.84009889702675,40.838827455412215],[-73.84006879973998,40.83875204009076],[-73.84013531533492,40.83861417691743],[-73.83995595134365,40.83828651714409],[-73.84000264348624,40.83825197547385],[-73.83992026482686,40.8378206632602],[-73.83985132007369,40.83782174943224],[-73.83984179647032,40.83790493838015],[-73.8398283357183,40.83768717876124],[-73.8398490706556,40.837788111494895],[-73.83991581404848,40.83778279647402],[-73.8399502981812,40.837583896587525],[-73.83984192033127,40.83688527655305],[-73.83984235556304,40.83611624146388],[-73.83975458112093,40.83613197034189],[-73.8397594290159,40.83629627837043],[-73.83965902852734,40.836067113758816],[-73.83982556569437,40.836054399567615],[-73.83982172292777,40.83601655488614],[-73.83971159146708,40.83601739781273],[-73.83982175649044,40.83600261458001],[-73.83981792943709,40.835958795339366],[-73.83972482818312,40.83596464124921],[-73.83981403197609,40.83594385431258],[-73.83981022758378,40.83589007730083],[-73.83975779019482,40.83588801343361],[-73.83981026594553,40.83587414480407],[-73.83979992825583,40.835811398353655],[-73.83965173547872,40.83582911549004],[-73.83968001567375,40.83606315937747],[-73.83960850400308,40.83570805068451],[-73.8396557334673,40.83580223593772],[-73.83979605087636,40.835788489403384],[-73.83978960150333,40.835744667690314],[-73.83965849740669,40.83574348923366],[-73.83979226941008,40.83572575105287],[-73.83977927824574,40.835675944833056],[-73.839682260142,40.83567581001603],[-73.83979488496,40.83561920749189],[-73.83967445429295,40.835098757889334],[-73.8397089948632,40.83485271793772],[-73.83953085168073,40.834368918235754],[-73.83959108452291,40.83404168809057],[-73.83992048478798,40.83332079429688],[-73.84018151699009,40.83304342547372],[-73.84181725912111,40.831726193654625],[-73.84221334730861,40.83155050727805],[-73.84234527426551,40.83130044801929],[-73.8427588429378,40.830818484142796],[-73.84270324854316,40.83074502666988],[-73.84293731237717,40.830121401184854],[-73.84305256297338,40.83010156708154],[-73.84309950959596,40.82996001179513],[-73.84302116297873,40.82996158712051],[-73.84305345261805,40.82976209003849],[-73.84310691599904,40.829794139319844],[-73.8430339460855,40.82893498494097],[-73.84289527507835,40.82856917612174],[-73.84390649944743,40.82840633324008],[-73.84289858827434,40.82408305940845],[-73.85513639749286,40.82243618880661],[-73.85597162390528,40.82606387775786],[-73.85619656533879,40.82604099472444],[-73.85635677476688,40.826752085458125],[-73.8561511282952,40.82677004571338],[-73.85737529457845,40.83204654639924],[-73.85739121187507,40.83229737222602],[-73.86008270199876,40.833111456899005],[-73.86032508956593,40.83319863961612],[-73.86033845846251,40.83325316598345],[-73.8598393763314,40.833340896342044],[-73.85168459747828,40.834201052350295],[-73.85207005930687,40.835625303052296],[-73.85333525008222,40.842470155155596],[-73.85052278082863,40.842789489298966],[-73.84779791990552,40.840696310626896],[-73.84458129174455,40.83853550762945],[-73.84204144705802,40.840645897248095],[-73.84140548280682,40.84060250295229],[-73.8393679425065,40.84088297348177]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK40",NTAName:"Windsor Terrace",Shape_Leng:19033.5401833,Shape_Area:14041611.8524},geometry:{type:"Polygon",coordinates:[[[-73.97984261884451,40.66072744113138],[-73.9796803291629,40.66076665686116],[-73.9795787009564,40.66085324215392],[-73.97515738100007,40.65872279411495],[-73.97448234034705,40.65833944977868],[-73.97426735561795,40.65802878769351],[-73.97411953458278,40.65769375242148],[-73.97379189834392,40.65639232344359],[-73.97232846288077,40.651397929082854],[-73.97259159552209,40.65127646090978],[-73.9726804879351,40.651132382315446],[-73.97268874853815,40.65096712721162],[-73.97258644617722,40.650805064026905],[-73.97244202231177,40.65069817564069],[-73.97208846041417,40.65065690875361],[-73.97084113729679,40.64637857107231],[-73.97464224409909,40.64481321887924],[-73.97482741623614,40.6456634208678],[-73.9777738056422,40.645341876574996],[-73.97819074359319,40.64752599151112],[-73.980291154772,40.64729716143123],[-73.98179568718417,40.655246097158184],[-73.98843135252152,40.6592512116578],[-73.9872506884457,40.66037895632415],[-73.98688464512195,40.660366389098186],[-73.98648200798273,40.659909879618205],[-73.9850867930315,40.65901328842666],[-73.9839179262909,40.660137488392884],[-73.98223034213164,40.662141492793666],[-73.98017161103702,40.66115465898042],[-73.98022902594711,40.66098532598772],[-73.98017201552548,40.660867753870484],[-73.98000113758691,40.660757564209675],[-73.97984261884451,40.66072744113138]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN45",NTAName:"Douglas Manor-Douglaston-Little Neck",Shape_Leng:45832.62903,Shape_Area:68567595.9664},geometry:{type:"Polygon",coordinates:[[[-73.71351828105992,40.759837730830796],[-73.71498214022964,40.759782865022075],[-73.71612528233499,40.75966071430727],[-73.71685440444712,40.759525514522245],[-73.71767237065706,40.759311211520334],[-73.71831971818538,40.75908207617791],[-73.71897050364856,40.75878323753907],[-73.7195646072074,40.758450560420506],[-73.72031595291358,40.75789725862008],[-73.72096511710163,40.75729378916873],[-73.72145870261355,40.75665808054616],[-73.7224109479757,40.754920188745814],[-73.72264543527841,40.754600524027786],[-73.7232667341128,40.75394759949698],[-73.72384451856351,40.7534568116675],[-73.72641472137153,40.75191587781272],[-73.7270938955777,40.751341604743665],[-73.72737889140159,40.75102956739969],[-73.72788401100424,40.75038748332388],[-73.72825381049505,40.749693728645596],[-73.7287195280344,40.74819708055658],[-73.72906670974076,40.74739095924613],[-73.729931691068,40.746188124590155],[-73.73106461880839,40.74488837588429],[-73.732416946135,40.74369457690727],[-73.7337063066621,40.74278250143051],[-73.73451799842132,40.743822457249905],[-73.73487307226317,40.74446126828543],[-73.73503555224956,40.74514659825411],[-73.73503921620797,40.74618407559818],[-73.73522444489399,40.746762954036114],[-73.73543000252702,40.74716066862061],[-73.73591497487688,40.74753887935015],[-73.73689967571399,40.74801670056143],[-73.73741376512213,40.74839221625963],[-73.7383046852927,40.74924682906706],[-73.73985376108601,40.75129852995278],[-73.74087361794932,40.751968385524734],[-73.74143323701331,40.752708735710186],[-73.74164693813852,40.75308533993153],[-73.7417807969441,40.75348221594024],[-73.74127837848548,40.75457638643167],[-73.74075722166485,40.75496746866901],[-73.73979348173816,40.75539888184548],[-73.73949921349272,40.75563034093078],[-73.73929461373467,40.75587624803259],[-73.73917789089741,40.756128954320495],[-73.73914373219499,40.756393617566744],[-73.73917854020061,40.7567192037521],[-73.73929222404772,40.75697393579558],[-73.73964315657828,40.756738382338796],[-73.74041677628853,40.756676317472795],[-73.74120820645948,40.75620461768563],[-73.74125945440775,40.756710496683816],[-73.74250213924488,40.7585881495468],[-73.74310625831069,40.75849426462634],[-73.74346609359459,40.75933829893354],[-73.74473826476742,40.76075997504756],[-73.74597810563424,40.76397628490018],[-73.74936995528708,40.762933643854254],[-73.75021253221281,40.763749382154685],[-73.74687521766978,40.76451862891899],[-73.74940846573391,40.767551978944304],[-73.75338853072759,40.76533394558621],[-73.7540342230552,40.76605501972717],[-73.75414938916104,40.76629953305325],[-73.75436074582069,40.76646023070888],[-73.75463837743982,40.766929936122686],[-73.75488691731017,40.767180372068324],[-73.75507210849047,40.76753310678734],[-73.7550760338357,40.767663747806296],[-73.7548725610038,40.76812070432508],[-73.75485915829502,40.76840425245583],[-73.75470219963218,40.76862087233276],[-73.75449196913834,40.76865971500433],[-73.75439388269345,40.76875346274863],[-73.75471391688049,40.76879514339493],[-73.75470593650574,40.76974152294527],[-73.75533279459188,40.77099815465326],[-73.75551295852655,40.77094501345513],[-73.75553498662788,40.77098552649296],[-73.75534216256267,40.77102215224119],[-73.75550243961897,40.771282509092394],[-73.75557332715422,40.7715291259241],[-73.75542423703577,40.77164213534984],[-73.7550826771383,40.771713228492196],[-73.75511523628427,40.77183490648836],[-73.75507386869083,40.77184026684916],[-73.75505920386048,40.771719174693374],[-73.75438074757541,40.772041271642145],[-73.75357000906136,40.77269461612929],[-73.75340985812531,40.77295917381144],[-73.75336691999682,40.77320784675823],[-73.7536796912164,40.77397297882968],[-73.75383615718921,40.77422433743277],[-73.75395573939907,40.77430620907511],[-73.75410406104969,40.77471047414809],[-73.7541441545853,40.77504467904685],[-73.75427404182324,40.775184235164616],[-73.75424149999384,40.77526683036521],[-73.75466042442363,40.775836284487184],[-73.75480097186362,40.77589859528338],[-73.75488688194451,40.77618932212213],[-73.75518575328215,40.77649807082879],[-73.75502286717985,40.7766376161508],[-73.75485800645488,40.77689639958143],[-73.75487358537985,40.776977087335986],[-73.75498193747217,40.77704380336276],[-73.75489252125946,40.77716723647609],[-73.75481322893435,40.77761903230559],[-73.7554183135385,40.77763574382418],[-73.75542434578469,40.77758394567128],[-73.7555178160472,40.77758414401992],[-73.75551737581797,40.777704048364164],[-73.75542002110876,40.777700881250176],[-73.75542214212092,40.77765351540986],[-73.75481217124653,40.77763599592339],[-73.75455791105841,40.77777659066425],[-73.75448452828326,40.7779044679815],[-73.75464981251385,40.77799210629303],[-73.75444196282032,40.778125156538415],[-73.75430183540865,40.77840611148984],[-73.75411171878478,40.779024568987],[-73.7541296414919,40.77938414323901],[-73.75393275467202,40.779762610077796],[-73.75300812616021,40.780866074687296],[-73.75299839296433,40.78128948952211],[-73.75245962753205,40.7817810905698],[-73.75080593613784,40.782893378668064],[-73.75029101900212,40.78248292040108],[-73.74706767633099,40.78054553224991],[-73.74412314568102,40.778638657554154],[-73.74075991489315,40.776694710498425],[-73.74007973971888,40.7762087953963],[-73.73937598887052,40.77601366916728],[-73.73912362003718,40.775704143072694],[-73.7388622736383,40.77557315790127],[-73.737702836223,40.774793585732326],[-73.73389261591328,40.772527178759276],[-73.73304215713443,40.77195443436459],[-73.72870722118745,40.76946148409257],[-73.72771875324986,40.7687961358457],[-73.72554598999473,40.76749535582898],[-73.72356002154224,40.76612876166513],[-73.72305924172518,40.76614440631413],[-73.72248438411825,40.765527210355806],[-73.72114272750984,40.76487260636556],[-73.72021435717204,40.76419260559271],[-73.71657585252204,40.761781811522184],[-73.71351828105992,40.759837730830796]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN34",NTAName:"East Harlem North",Shape_Leng:30619.3398706,Shape_Area:24494704.8798},geometry:{type:"MultiPolygon",coordinates:[[[[-73.9271851477837,40.79734989678022],[-73.92767122620867,40.797217014266224],[-73.92770694127178,40.797298662876955],[-73.92738263558482,40.79737706257486],[-73.92736675660667,40.797346820344785],[-73.92720299704214,40.797386747799365],[-73.9271851477837,40.79734989678022]]],[[[-73.92672091235107,40.80041421094397],[-73.9265384638998,40.80033389881047],[-73.9265535165366,40.80031517292141],[-73.92674263892997,40.800403498972756],[-73.92672091235107,40.80041421094397]]],[[[-73.92666565480393,40.80018271403577],[-73.92669572629558,40.80014697715243],[-73.92724770855416,40.80039295736937],[-73.92711464230642,40.800563756229515],[-73.9270669662849,40.80054301212579],[-73.92716933022487,40.80040585369612],[-73.92666565480393,40.80018271403577]]],[[[-73.92688606022,40.80084064836889],[-73.9265095486736,40.800657031021956],[-73.92655241742345,40.800604825091845],[-73.92686908613322,40.80078367679882],[-73.92699531369269,40.80063617610468],[-73.92704640364045,40.800651743031686],[-73.92688606022,40.80084064836889]]],[[[-73.9338058994802,40.81651249324746],[-73.93382900950758,40.815585360187846],[-73.93394608825346,40.81558762473915],[-73.93396620950391,40.81456521074887],[-73.93401476726979,40.814483752624774],[-73.93385652638817,40.81448147441919],[-73.93392984600194,40.81334769063376],[-73.93428227801445,40.81082305000605],[-73.93434080971473,40.80992758274955],[-73.93433864584738,40.809562213831335],[-73.93412073418153,40.808656451977015],[-73.93356119311481,40.80760067738664],[-73.93308471749712,40.80702691470205],[-73.93115949987327,40.80496694026243],[-73.93030876458828,40.8037860148655],[-73.93001261302969,40.80328749842872],[-73.92998106679028,40.803203772320316],[-73.9300493039971,40.803123313051564],[-73.9294536639969,40.801907368333794],[-73.92920817529829,40.80114752061084],[-73.92903490240309,40.801080903851854],[-73.92890152344224,40.799855214160104],[-73.92903640179625,40.796762594101246],[-73.92927936741171,40.795853139520574],[-73.92987485712135,40.795035156225325],[-73.92980955349987,40.79498316629668],[-73.92983254042524,40.794949061140784],[-73.92991636120598,40.79494911213701],[-73.93006881101668,40.79470082860583],[-73.93010771028145,40.79471299106367],[-73.9301966445908,40.79459322385006],[-73.93348475349627,40.79277428483201],[-73.93505300005576,40.791687202908996],[-73.93542842732296,40.79199688011592],[-73.93555312839224,40.79184222557423],[-73.93773612057375,40.79281580410158],[-73.93864883300408,40.79155775480609],[-73.94327251190568,40.793488102935555],[-73.94187604660893,40.795405868547874],[-73.94831125454381,40.79812921756678],[-73.94459751345607,40.803228145255666],[-73.94613131048673,40.803877357584135],[-73.94430194587123,40.806390824581],[-73.94275367228194,40.805744012794605],[-73.94177140170075,40.80708899984708],[-73.93854407863263,40.805729652932506],[-73.93580780201182,40.80949763825762],[-73.93901753314599,40.810856556874455],[-73.9348734376888,40.81652784701465],[-73.93407463911576,40.81782651394814],[-73.93438112852347,40.81932807562949],[-73.9344003994333,40.819667782434095],[-73.93383000695911,40.81949109558767],[-73.9338058994802,40.81651249324746]]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX08",NTAName:"West Farms-Bronx River",Shape_Leng:17463.6605448,Shape_Area:15082116.02},geometry:{type:"Polygon",coordinates:[[[-73.86271114406922,40.832991508800504],[-73.86456547270939,40.83238923465531],[-73.87729930449196,40.82874277437248],[-73.88198096595158,40.82835598023313],[-73.88378414134571,40.82827429246237],[-73.88352018758039,40.82926018198952],[-73.8835741170671,40.82947864610113],[-73.8839009478877,40.82980281640784],[-73.88005188503385,40.83470205869834],[-73.87925239497817,40.834424789995346],[-73.87838370405677,40.83525903217003],[-73.87756524629323,40.83581875153157],[-73.87628029489369,40.836461531583446],[-73.87565111791633,40.836659549140194],[-73.8749877232997,40.836772978158656],[-73.87482228091986,40.836859480491476],[-73.8747145202419,40.83700225374522],[-73.87470145087771,40.837162311231594],[-73.8747274004063,40.837233973680654],[-73.87490851072131,40.837359609695056],[-73.8743002855087,40.83724244253305],[-73.8740105132429,40.83731000523749],[-73.8737959022252,40.83744513333405],[-73.87347510472318,40.83774633959947],[-73.87314714674842,40.838263898973096],[-73.8727720465853,40.839751282336],[-73.86920766882207,40.839600046711794],[-73.86874073484726,40.839824576138234],[-73.86782258115174,40.84016649901611],[-73.86546450190856,40.84085689196467],[-73.8644801171789,40.841087796884246],[-73.86393748103441,40.84004456590264],[-73.86271114406922,40.832991508800504]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK30",NTAName:"Dyker Heights",Shape_Leng:30562.58412,Shape_Area:29908250.2756},geometry:{type:"Polygon",coordinates:[[[-74.00702302486353,40.632109995476355],[-74.00193011441127,40.62903276789133],[-74.00251454806296,40.628474209562555],[-73.9972406703973,40.62528868702802],[-73.99771358929597,40.62368026991597],[-73.99932090218985,40.624655246846515],[-74.01171201489784,40.612735029187576],[-74.02121548198696,40.61847198527935],[-74.02145207492896,40.618027191687545],[-74.02160848456941,40.617536738293765],[-74.02478376263241,40.6096996290043],[-74.02710660490857,40.61024395632428],[-74.02637609057152,40.612450603402046],[-74.02653228216728,40.61242537076809],[-74.02754297194576,40.612937183204146],[-74.02624732375942,40.61510478138761],[-74.02574988994118,40.61605822319561],[-74.02525327174868,40.616678457892014],[-74.0228759867753,40.61946614790893],[-74.02008667202567,40.6224209531646],[-74.0197049155713,40.62218496500806],[-74.0187518073421,40.6243175113759],[-74.01514630680121,40.63322193848727],[-74.01000340831531,40.63011308934296],[-74.00702302486353,40.632109995476355]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX10",NTAName:"Pelham Bay-Country Club-City Island",Shape_Leng:139407.83858,Shape_Area:40245529.9548},geometry:{type:"MultiPolygon",coordinates:[[[[-73.78833349834532,40.83466712975934],[-73.78931223672794,40.83446488655463],[-73.78951019872315,40.835364042525704],[-73.78845700015214,40.835309914315374],[-73.78833349834532,40.83466712975934]]],[[[-73.81563378176872,40.848183122395234],[-73.81576246982651,40.84818168006498],[-73.8158666602996,40.84808851853992],[-73.81589732510676,40.84782360519031],[-73.81560451391988,40.847658683162095],[-73.81597449927878,40.847652422096694],[-73.8160558923297,40.84758745514814],[-73.81612862993482,40.84738885611978],[-73.81614872235666,40.84664884528274],[-73.81610537477157,40.846454544437435],[-73.81602685115186,40.846400457764844],[-73.8157190383456,40.84629344349879],[-73.81545867615472,40.846603028771526],[-73.81462727722557,40.84714279475984],[-73.81464594697546,40.84721961352892],[-73.81451106835777,40.84710607802779],[-73.81460847301877,40.847127137240406],[-73.81532877823554,40.846665663799975],[-73.81570353189454,40.84629134042375],[-73.81551442198024,40.846322551392596],[-73.81507222380642,40.84654347111353],[-73.81492265673268,40.84648348818858],[-73.81365740839378,40.847205277176435],[-73.81368634738338,40.84727432500646],[-73.81356372861671,40.847151411278475],[-73.81364472783076,40.84719024269664],[-73.81490858203333,40.84646876437644],[-73.81465695793435,40.84620554530135],[-73.81446907740352,40.84623415170302],[-73.81442352579826,40.84618782507243],[-73.81465507970381,40.845968497425126],[-73.8146044903403,40.84590867307144],[-73.81508593856046,40.84559500241341],[-73.81502627604301,40.84549999505841],[-73.81420573129107,40.84601018088835],[-73.81399042198721,40.845826918692275],[-73.81318865138824,40.84622953597369],[-73.81314460200242,40.84616856213868],[-73.81381880576474,40.845802488224365],[-73.81401812695718,40.84563145688779],[-73.8134640968365,40.84594950610952],[-73.81403198153201,40.8455892978668],[-73.8139542446311,40.84552156755352],[-73.81368589093512,40.845659062254754],[-73.81394279195236,40.84551158860971],[-73.81385667798956,40.845417562386416],[-73.81372892648908,40.84548506766965],[-73.81384258869345,40.84539939043913],[-73.81363258232705,40.845280769031326],[-73.81335905585026,40.845845499331034],[-73.81328932759058,40.84595102273266],[-73.8132129524425,40.84592293984183],[-73.81328359296057,40.845937438147615],[-73.81330786983101,40.845899363231034],[-73.81361858267188,40.84527504188594],[-73.81346166413543,40.84521084953057],[-73.81325997724693,40.845233990458176],[-73.81280034773177,40.846295005049456],[-73.81284940024705,40.84631879949933],[-73.81272457742948,40.846286619948145],[-73.81278637726452,40.8462888896987],[-73.81324326351064,40.845235907849975],[-73.81310050658705,40.845172414403244],[-73.81287703597569,40.84513466794586],[-73.81286151025029,40.84517498772356],[-73.81315597110434,40.845212100377346],[-73.81285536891457,40.845186285460294],[-73.81234003852715,40.846544520119785],[-73.81241445262094,40.846559380245104],[-73.81227790900503,40.84654345827921],[-73.81232960133006,40.84654151183247],[-73.81284143551535,40.84518017017483],[-73.81261378787293,40.845109507865864],[-73.8128489654355,40.84516302793774],[-73.81285774337955,40.84512954458909],[-73.81254457815614,40.84497959800829],[-73.81244008431351,40.845237073817515],[-73.81254866464359,40.84526069010321],[-73.81245544053375,40.84526432746108],[-73.81195504551967,40.846475824835395],[-73.81203501563473,40.84653260540037],[-73.81191568333297,40.846527388689864],[-73.81188458844791,40.8465949670612],[-73.81243625126857,40.84673771207661],[-73.81187766058915,40.84661655663378],[-73.81184149287854,40.84671412757455],[-73.81169971889842,40.84668170081471],[-73.81234277106788,40.84512618287218],[-73.81266141415233,40.84420764950187],[-73.81278395303993,40.844228348196005],[-73.81271242235539,40.84446653629535],[-73.81278096734698,40.84425543198],[-73.81282121937927,40.84425961554689],[-73.81276123529959,40.84447330393547],[-73.81299120305088,40.84452250705551],[-73.81298325218069,40.84454982704339],[-73.81270337280489,40.844485312432376],[-73.81264889402848,40.84465946766835],[-73.81289731370832,40.8447132314597],[-73.81291175759475,40.84465804769443],[-73.8131131821905,40.84468395445473],[-73.81303619713655,40.844743284463014],[-73.81311795023707,40.84478760306706],[-73.81309338317106,40.84484827629713],[-73.81265744462624,40.84475144920641],[-73.81268023985143,40.84469011565865],[-73.81264095809883,40.844681662260285],[-73.81254909120851,40.8449522746435],[-73.81285367229421,40.84491990461953],[-73.81344958160679,40.844960824821094],[-73.81354668877833,40.844972682812724],[-73.8135476194774,40.84504186920359],[-73.8136558067382,40.845059122042855],[-73.81403863124154,40.84491028044361],[-73.81414462044778,40.844818173239844],[-73.81418274982292,40.84474156904798],[-73.81386694883192,40.84484233165282],[-73.81369979287813,40.84484845686337],[-73.81418653278766,40.84472541544423],[-73.81417097607722,40.84463994669195],[-73.81399066798822,40.84447977248227],[-73.81365179712571,40.84443683775058],[-73.81355528835337,40.84437910481038],[-73.81343074980109,40.84418744044418],[-73.81336991796844,40.843800827888316],[-73.81344191748576,40.843653956791336],[-73.81354351238554,40.843578295931756],[-73.81401565727629,40.84351917107276],[-73.81417994362558,40.84345309435277],[-73.8143219249507,40.84330000664776],[-73.81437458318716,40.843088926000505],[-73.81443311693067,40.8430982852661],[-73.81458365753461,40.843288897482296],[-73.81488279360381,40.84340205570708],[-73.81502021853652,40.84350628517086],[-73.81514446702967,40.843666239698074],[-73.81525940917355,40.844013385688186],[-73.81566609597236,40.844379951004875],[-73.81599415781245,40.84440311660845],[-73.81597011985593,40.84424098497465],[-73.81601970138524,40.844134551020765],[-73.81611814011703,40.84404086194171],[-73.816311104564,40.8439795341219],[-73.81644537997592,40.84400877207353],[-73.81651560223897,40.844129966864465],[-73.81660999626499,40.84409074021557],[-73.8167412804296,40.84414000144419],[-73.81701765067369,40.84409628858254],[-73.8170982398312,40.84417004547558],[-73.81708851781124,40.84426451236697],[-73.81750072974577,40.844367444407716],[-73.81823722746202,40.844355041712625],[-73.8181908911679,40.84411314800104],[-73.818084441786,40.84412824349914],[-73.81792732676385,40.84425024734951],[-73.81768994566343,40.84426849516754],[-73.81742868458073,40.84417743293926],[-73.81718704179752,40.843915963914974],[-73.81669068165954,40.84397496582524],[-73.81662677325096,40.84394489856023],[-73.81661244498649,40.84383184466534],[-73.8164445195421,40.84367407385205],[-73.81636686950458,40.84351830086509],[-73.81635030529999,40.84333112287533],[-73.81620217852912,40.84307332262813],[-73.81590994535821,40.84286902912587],[-73.81572300065964,40.84253656548328],[-73.81517113664873,40.84257716162382],[-73.8157020791259,40.842519721690635],[-73.8154150396273,40.84239132728189],[-73.81540790077769,40.84232599873768],[-73.8155474403908,40.84215945312103],[-73.81558492163332,40.841841264603524],[-73.81552506814651,40.84164799590017],[-73.81532969699899,40.84149203214215],[-73.81526263397677,40.84125983942301],[-73.81523211232661,40.84123377337656],[-73.81476263163238,40.84141329770916],[-73.81473345751361,40.841375728309764],[-73.81522026179324,40.84120267649965],[-73.81523404887385,40.84100964099391],[-73.81505399109442,40.84053808589653],[-73.81490477019936,40.84055936014351],[-73.8150491269438,40.84051761955232],[-73.81497336213279,40.84007688469781],[-73.81480646762463,40.83980436638489],[-73.8143659650249,40.83986536376493],[-73.81479697814572,40.83978795740581],[-73.81469838960729,40.83975854147648],[-73.81472319684481,40.83958888660001],[-73.81431578800087,40.8396495265094],[-73.8143090013369,40.839622416379235],[-73.81471999083851,40.83957187858941],[-73.81469650157497,40.839451058977694],[-73.81478277674101,40.83907648795653],[-73.81538843489147,40.83885231539409],[-73.81542614030383,40.83878279777044],[-73.815547579354,40.83878628623573],[-73.815669275305,40.83869753786715],[-73.81584721151468,40.83866158579062],[-73.81626470640907,40.838263655717164],[-73.8163389425032,40.838082593061024],[-73.81628730390072,40.837934272546505],[-73.81645257929443,40.837769825924795],[-73.81647890357323,40.837661159371905],[-73.8163640764497,40.83683413538192],[-73.81629939882234,40.83669567616345],[-73.81616090485214,40.836586747032214],[-73.81620466962886,40.83644516702871],[-73.81606068234676,40.83603019645688],[-73.82223130070494,40.83455601268213],[-73.8237938316849,40.834300146959286],[-73.82463346490994,40.83385580771462],[-73.82515883868953,40.83461447159697],[-73.82601252570734,40.834020778205286],[-73.82622087804741,40.834354708293255],[-73.8258777558263,40.834674047450626],[-73.82560350295608,40.83503014721339],[-73.82544607419136,40.835361129367115],[-73.82540482581278,40.83565927474003],[-73.82544296399837,40.83595917077401],[-73.82573525138082,40.83664539491425],[-73.82584985960631,40.83706086710302],[-73.82598686895278,40.84067575238659],[-73.82624132909858,40.842993594144396],[-73.82517999004769,40.84270005947815],[-73.82495697663144,40.846105444801985],[-73.82048405617267,40.84850102613273],[-73.82014043680648,40.848020598551656],[-73.8163011921837,40.84857217240456],[-73.81514191918662,40.849080612735015],[-73.81534394312402,40.84885332013783],[-73.81532344068897,40.848577570693685],[-73.81545090163206,40.84851289737757],[-73.81553003666964,40.84829927640197],[-73.81563378176872,40.848183122395234]]],[[[-73.83676643709143,40.84338597001324],[-73.83688925154424,40.84337478830599],[-73.8367687679639,40.84354282093717],[-73.83615362980419,40.84613117556464],[-73.83555900132488,40.851964013948134],[-73.83519691898995,40.85284353126884],[-73.83463970216,40.853817993760984],[-73.83439574308414,40.85411187093297],[-73.83390574013086,40.85446778024176],[-73.83295928385674,40.854924106346466],[-73.83228148863836,40.855177449609066],[-73.83129157705511,40.855434105351854],[-73.82860197165323,40.8557178475947],[-73.82723026126358,40.853350756948835],[-73.82721751210228,40.853250513298846],[-73.82737835766385,40.852817959166735],[-73.82713133325457,40.851871081024385],[-73.82785535403784,40.84973868596936],[-73.82797002364352,40.849187767606615],[-73.82799994536624,40.84863235054607],[-73.8264501494086,40.84626339582642],[-73.82624553007015,40.845807338882835],[-73.82611300711154,40.84533869377129],[-73.82757536047414,40.84473187468047],[-73.83043186358091,40.84385798363005],[-73.83294076425594,40.84351915996679],[-73.83582911407471,40.8434712946941],[-73.83676643709143,40.84338597001324]]],[[[-73.78061730829722,40.85573517581002],[-73.78090476917812,40.854968132158334],[-73.78156389766129,40.85500128643506],[-73.78156303334349,40.855744796002035],[-73.78122782332015,40.856087789162736],[-73.78061730829722,40.85573517581002]]],[[[-73.78283291447866,40.85587030844573],[-73.78302371588687,40.855092766666154],[-73.78367819731318,40.85517343751094],[-73.78394699722011,40.85563043752661],[-73.78343487435194,40.85636286595755],[-73.78283291447866,40.85587030844573]]],[[[-73.79018745195003,40.85860991738615],[-73.79004599837913,40.85847540440952],[-73.78972202672381,40.858562453408624],[-73.78934280432145,40.858560931042696],[-73.78898385079637,40.858470842735954],[-73.7887956452149,40.8577119942915],[-73.78878402854738,40.85742068983394],[-73.78804342975799,40.857559917687105],[-73.7880283070183,40.85751468128372],[-73.78877898610214,40.85740092520087],[-73.78871047754379,40.85704703271223],[-73.78880626678894,40.85679784953109],[-73.78877940590479,40.85670918583045],[-73.78889654957189,40.85657338670979],[-73.78875894260247,40.85631553290663],[-73.78862333817497,40.856282311843394],[-73.78858212373603,40.85616288821653],[-73.78853687735483,40.85615850378537],[-73.78835943222366,40.855626489148236],[-73.78841511184291,40.85518763710445],[-73.78855365791162,40.855148735612886],[-73.7884969618678,40.855053834835545],[-73.78833961444353,40.855030877113734],[-73.78829413646666,40.85482265139007],[-73.78842472253508,40.85472603287891],[-73.78847732653361,40.85440052053215],[-73.7883470068363,40.854153518949786],[-73.78736269141099,40.8544195305728],[-73.78734753146584,40.85438588495691],[-73.78834514784097,40.8541320123501],[-73.78832399449914,40.854102515649636],[-73.78819872490017,40.8541277890581],[-73.78816813692181,40.85408577890351],[-73.7876901428156,40.8541882912455],[-73.78731450066242,40.85421194272565],[-73.7871970608475,40.85417579079191],[-73.78712545967674,40.85404437865438],[-73.78690734702697,40.854063972299166],[-73.7871328723602,40.854024270878305],[-73.78720845606956,40.85395440328333],[-73.78792821707313,40.85373779738914],[-73.78800508108601,40.853664868451204],[-73.78796264288071,40.85347472093553],[-73.78716496421868,40.85275741228183],[-73.7870762772129,40.85279958743663],[-73.78713667028032,40.85273387524412],[-73.78693805735826,40.85257908292888],[-73.78678232558087,40.852555707235574],[-73.7867689971708,40.85245473539837],[-73.78641733510767,40.852144576469655],[-73.78588186506651,40.85178867244085],[-73.78566404122405,40.85179599582089],[-73.78529210719027,40.851620649973505],[-73.78480722728997,40.85175266902251],[-73.78433474208562,40.85177615757236],[-73.78413189167983,40.85183280615722],[-73.78431415166013,40.85176754570686],[-73.78402637080502,40.851609931862804],[-73.78397932898604,40.85153261744043],[-73.7838711529196,40.85155896166878],[-73.78396112488473,40.85148693342038],[-73.78338158610393,40.85158673391433],[-73.78353416916762,40.85152078053071],[-73.7834449593611,40.851400909224395],[-73.78360210541761,40.851319519280075],[-73.78435188772272,40.85109835504656],[-73.78460077763795,40.851095692196424],[-73.78451936366278,40.850892735022576],[-73.78444750529492,40.85090481745937],[-73.78443407549099,40.85086151490381],[-73.78450494990608,40.85085350046363],[-73.78445463222367,40.850772873853224],[-73.78426993630781,40.85076557351948],[-73.78407975148433,40.85063061490728],[-73.78385181911877,40.85071146765857],[-73.78384119241808,40.850692899497055],[-73.78406580837334,40.85062523323638],[-73.78401288041842,40.85047528985303],[-73.78425785760015,40.85025318064108],[-73.78420047200572,40.850060644241836],[-73.7835349780874,40.849220967420266],[-73.78345368143937,40.84918372050895],[-73.78317944898438,40.8492223604469],[-73.7830353553807,40.849071907625266],[-73.78244952709213,40.84934115401567],[-73.78221806474305,40.849166804596116],[-73.78209456304502,40.84924730000969],[-73.7821932862789,40.84914279099534],[-73.78215814152053,40.84911617392385],[-73.78157492379998,40.84943063184532],[-73.78154449088599,40.84940043464328],[-73.78214108697848,40.84910066266765],[-73.78193782779806,40.848933980906],[-73.78182869098387,40.848959204861025],[-73.78169581560924,40.84884836234783],[-73.78161594069073,40.84889620461111],[-73.78168604284511,40.84883788315218],[-73.78161367535203,40.84877238634991],[-73.7815062025913,40.848842528177826],[-73.78157440440638,40.848731808212364],[-73.7814324952229,40.84880000581329],[-73.78150756442157,40.84871928938007],[-73.78149386587495,40.848580475825756],[-73.78203616779538,40.848438049284674],[-73.78202189306678,40.848339561917506],[-73.78206189132595,40.84844918328462],[-73.7817970940136,40.848547143271226],[-73.78207041238291,40.848469412494545],[-73.78209640639666,40.84839838786305],[-73.7825587775885,40.848277325976184],[-73.78267467079044,40.848139671941404],[-73.78155442054316,40.848400707585014],[-73.78152611318404,40.848343466137095],[-73.78138148849071,40.84837719583045],[-73.78139151751354,40.84842203722654],[-73.78110827162973,40.84852042002221],[-73.78107580166368,40.84849099161345],[-73.78131833463334,40.84839407797135],[-73.78097820938954,40.84845834791352],[-73.78130627517383,40.8483476864726],[-73.78110697841508,40.84829475819777],[-73.78135124158361,40.84829058454092],[-73.78137145882067,40.848332354096854],[-73.78263740464077,40.848072649247044],[-73.78250408633538,40.84791327376322],[-73.78158418081713,40.84803705153718],[-73.78148431950562,40.847882193848626],[-73.78150307163159,40.84768164296303],[-73.78142920347916,40.84745634535721],[-73.78152237261523,40.84731347994264],[-73.78184409966968,40.84713610743569],[-73.78182523912382,40.84706551767203],[-73.78205261929133,40.84699083742515],[-73.78209539971067,40.84691339096236],[-73.78221497817432,40.84686140958944],[-73.78216393501762,40.84663633778205],[-73.78063668411161,40.84692333475239],[-73.78067693704074,40.84706148579346],[-73.78046241598466,40.84710023328956],[-73.78040327024776,40.84693113416733],[-73.78106043973015,40.846802551854296],[-73.78115182578733,40.846246304124506],[-73.78118979824518,40.846252558803556],[-73.781106757608,40.84674699714114],[-73.78168786937847,40.84663887521188],[-73.78174288903256,40.84641229011589],[-73.78171494622926,40.8466574737121],[-73.78109301885189,40.84679849158738],[-73.78215667396833,40.846607578113655],[-73.78214232849322,40.846577706609835],[-73.78232827748441,40.846548611271245],[-73.78229153057184,40.84645779011786],[-73.78251345183041,40.846408771552404],[-73.78235702810517,40.84598158833263],[-73.78257932865691,40.845935893027736],[-73.78249597258956,40.84566156194902],[-73.78309442048653,40.84551828556467],[-73.78314644227369,40.84530994202599],[-73.78307455830661,40.845509764291876],[-73.78257509379023,40.84560185056605],[-73.7824248715568,40.845676336164416],[-73.78181646170493,40.845764978052216],[-73.783050749408,40.84549682317585],[-73.78309455887225,40.84516923547114],[-73.78306023126584,40.84508570856699],[-73.78190735927913,40.84535556174679],[-73.78181535966634,40.84548058288154],[-73.78188707672838,40.84533388514677],[-73.78307457446687,40.84505636873385],[-73.78313318952935,40.84518167305942],[-73.78310841324992,40.845289819400804],[-73.78315245505742,40.845295983327766],[-73.78322207613928,40.84506344465816],[-73.78309714310716,40.84499167433201],[-73.78297579244331,40.844680948020375],[-73.78336536201525,40.84444472298292],[-73.78332100656206,40.84434782480233],[-73.78306041018179,40.84437206389408],[-73.78301129763369,40.84417269034595],[-73.7832698713884,40.84406939209158],[-73.78309494706286,40.843866093899656],[-73.78349593173981,40.84373234243337],[-73.78348428748816,40.843678545998436],[-73.78298567054603,40.84379407880399],[-73.78290651015945,40.843936125841324],[-73.78054654061509,40.8444695343603],[-73.78057628905162,40.844500503008234],[-73.78052736114726,40.8445251403394],[-73.77992703744438,40.84388308135583],[-73.7799786859016,40.84385638925437],[-73.78053302714561,40.84445302176262],[-73.7803962328201,40.84396640817975],[-73.78058464795063,40.844434572699456],[-73.78106261364299,40.84432831787669],[-73.7808769019871,40.84386222048778],[-73.78108977797852,40.8443201270776],[-73.78154602523334,40.844215889747694],[-73.78137674164547,40.84370448654128],[-73.78157590302862,40.84420770296786],[-73.78200770536675,40.84410960066963],[-73.78183306599361,40.84357551830487],[-73.78203757586265,40.844103474973444],[-73.78243679961639,40.8440094311011],[-73.78224871668732,40.843436168417476],[-73.78246939706243,40.84399918783504],[-73.7828224397139,40.843919481199435],[-73.78257210724104,40.8432945814407],[-73.78260741176449,40.8432864049576],[-73.7827849863566,40.8437545454809],[-73.7830918611238,40.843685054811175],[-73.78287388243187,40.84312410236234],[-73.78313252568671,40.843697496731735],[-73.78280661506558,40.84377931612201],[-73.78284151617683,40.843894787201904],[-73.7829830443999,40.8437672832353],[-73.78347481249253,40.843654738109706],[-73.78319194518801,40.84286786398385],[-73.78304539815446,40.84289633206667],[-73.78321038850865,40.843479338866466],[-73.78300874374565,40.842902446434856],[-73.78291098678902,40.842922355005555],[-73.78289487635368,40.842869773693266],[-73.78313926034856,40.84282231949128],[-73.7831170396102,40.84277127263442],[-73.78291747085117,40.84280644567909],[-73.78289925507741,40.842775499836016],[-73.78312383086502,40.84273620299488],[-73.78288778301486,40.8424948288496],[-73.78273319376777,40.84252170549846],[-73.78281584526057,40.84276452259662],[-73.78277919046211,40.84277063689117],[-73.7827066998257,40.84253247581031],[-73.78229941270918,40.8426058964133],[-73.78244452404594,40.84304203441669],[-73.78240786884533,40.84304814691729],[-73.78226682874738,40.8426120182282],[-73.7818004836245,40.84269614579363],[-73.78196972502658,40.843220428815876],[-73.78193306593671,40.84322808807642],[-73.78177196993909,40.8427022734932],[-73.78124656634499,40.842797107289435],[-73.78142785254946,40.843370873277635],[-73.78138916319335,40.84337698260529],[-73.78121601185633,40.84280477689435],[-73.78067429925021,40.842907304537675],[-73.78082903681303,40.84350729714566],[-73.78064376059653,40.842910337119534],[-73.78029552532071,40.84297304489394],[-73.78029286577423,40.84377830536538],[-73.78022773872681,40.843778181297694],[-73.78022662418412,40.842883267930304],[-73.78029175678301,40.84288184660032],[-73.78029152196491,40.84295294475398],[-73.78286499304919,40.84247810188269],[-73.78271552088931,40.84244650059171],[-73.78230783665789,40.84251935826532],[-73.78229572698892,40.842488423848586],[-73.78241082488185,40.842450050324516],[-73.78059735756418,40.842786599939714],[-73.78058525374082,40.8427541194414],[-73.78236855953503,40.84242849314963],[-73.78234000558815,40.84234092564352],[-73.78215166139555,40.84235522811131],[-73.78233051727184,40.84232245076148],[-73.78231110976724,40.84222417895839],[-73.78216005558018,40.842277963047714],[-73.78162055088099,40.84232949488924],[-73.78230643384104,40.84221111530866],[-73.78237241057278,40.84206661567341],[-73.78233257215892,40.841922844111366],[-73.7823116321499,40.841981492172216],[-73.78226695917957,40.84195049461358],[-73.78145418074618,40.842171527127306],[-73.78144003107849,40.84214213349339],[-73.7823235128595,40.841898330454576],[-73.78226771471904,40.84178617440214],[-73.78203752600122,40.84184191671627],[-73.78226345326243,40.84177811598242],[-73.78224024540253,40.841735866123365],[-73.78201593435607,40.84179318902515],[-73.78223592679548,40.84172788247796],[-73.7821662448514,40.84168914411134],[-73.78188333127862,40.841733819393376],[-73.7818660122127,40.84168736467964],[-73.7814069659546,40.84177204020152],[-73.78141830265957,40.84180596942198],[-73.7812992811557,40.84179444162358],[-73.78132082237096,40.841857948506906],[-73.78127498829274,40.84187090285887],[-73.78133868571558,40.84199621848415],[-73.78124863502504,40.84187780798531],[-73.78113290101267,40.84191062605357],[-73.78119772238894,40.84204202937298],[-73.78109967064515,40.84192012611327],[-73.78097935727091,40.841952935336764],[-73.78102354425015,40.84209299441156],[-73.78095529321456,40.84195984541311],[-73.78084643997113,40.8419891981232],[-73.78092499038792,40.84212323619832],[-73.78088717448657,40.8421344670586],[-73.78081435394024,40.841998700777495],[-73.78069632802134,40.842032383000635],[-73.78076452901949,40.84218031288374],[-73.78072098896615,40.842191532307],[-73.78065508284418,40.8420418683637],[-73.78053131415075,40.84208075603328],[-73.78056292707016,40.84221470520364],[-73.78050381144546,40.842089398373865],[-73.7803948047966,40.842164829237014],[-73.78034805158225,40.842109098224434],[-73.78042577181698,40.84249439370426],[-73.78029863976323,40.84251153996471],[-73.78019599955287,40.84204621097614],[-73.78033227924826,40.84203169026734],[-73.78037786810297,40.84209350522439],[-73.78126135401864,40.84183957845699],[-73.78123754712252,40.841768242042036],[-73.78185048197781,40.841653946394274],[-73.7818048644,40.84128278593993],[-73.78166051213775,40.84112417458303],[-73.7808422380231,40.8412763240281],[-73.78092886504994,40.84154542526755],[-73.78089220610151,40.84155308419824],[-73.78079752989635,40.841256146049616],[-73.78164855361766,40.84109776353004],[-73.78161356477628,40.84100727206841],[-73.7813914356895,40.84103660961814],[-73.78161069651529,40.84099624002566],[-73.78159702603988,40.840948669593224],[-73.78137488261129,40.8409788710063],[-73.7815939687108,40.84093979674678],[-73.7815430901564,40.840784781526125],[-73.78141805071887,40.840714755716164],[-73.781485705628,40.84062083948603],[-73.78145349846598,40.840505284575],[-73.78154296060539,40.840386661604434],[-73.78149172006935,40.84020622452521],[-73.7812536190091,40.840255499937506],[-73.78148878089253,40.84019732392203],[-73.78136267245316,40.83973018981628],[-73.78117947868576,40.839745862257054],[-73.78135932010673,40.839711708215745],[-73.7813412521194,40.83947856344413],[-73.78113875792138,40.839494278802974],[-73.78133988849417,40.839469699830246],[-73.78132522577033,40.83929178135654],[-73.7815678098351,40.8385374057363],[-73.78172154866671,40.83822356610973],[-73.78200420989043,40.8380155723071],[-73.78188455720445,40.83765027610219],[-73.7823814255608,40.83732410616736],[-73.78272760738825,40.83748795934624],[-73.78290629191044,40.83732000557014],[-73.78279680443428,40.83692052345199],[-73.7827036458365,40.83684280196553],[-73.78268131501763,40.83648367715479],[-73.78282260139738,40.83633815588787],[-73.783029218629,40.83634585184216],[-73.78338168059335,40.83690927168063],[-73.78410164591475,40.83672552885536],[-73.78431347112944,40.83681282675119],[-73.78448456140015,40.837024222538524],[-73.78491512256413,40.83684199857525],[-73.78488487052027,40.836792444412076],[-73.78498060328256,40.836746425577964],[-73.78508226709116,40.836881907209154],[-73.78498435600926,40.83692957218053],[-73.7849432573329,40.83687504914356],[-73.78450333965361,40.8370577651711],[-73.78485009222663,40.83747048917849],[-73.7851258210931,40.837446041568164],[-73.78563997845453,40.83706443458532],[-73.78583067964122,40.837209980004516],[-73.78579367506092,40.837233009872115],[-73.7856527957232,40.83713210472597],[-73.78516584428664,40.83747133406175],[-73.78527712948421,40.83775671808691],[-73.78557796850949,40.83792711322535],[-73.78549864183114,40.83848036629246],[-73.78553011511525,40.83879827733834],[-73.7857350929869,40.839234231775805],[-73.78614637767015,40.83958736625309],[-73.78627272274827,40.839588308565176],[-73.78652598496426,40.83972311560698],[-73.78740758746171,40.83967762269433],[-73.78733627876623,40.83971002109499],[-73.78749162161402,40.839989639321495],[-73.78745014326726,40.84007246158648],[-73.7876393121901,40.84053189523665],[-73.78735724244459,40.84059077177662],[-73.78749166412595,40.84084234167402],[-73.78818132144562,40.84071108050135],[-73.78809400249322,40.84050179629598],[-73.78815921100342,40.840490778565815],[-73.78825453283456,40.84074586311847],[-73.78752379733696,40.84087961218515],[-73.78757937523619,40.84093271049871],[-73.787786567951,40.840892222012755],[-73.78786404049858,40.8410817253323],[-73.78760640589606,40.84114188575646],[-73.78761237782592,40.84119800529582],[-73.78784487499479,40.84147147933323],[-73.7881219015148,40.84146208936973],[-73.78825197653772,40.8415287453728],[-73.78836617408963,40.84150461001016],[-73.78826064465721,40.84154196286075],[-73.78820427907813,40.841688689626494],[-73.78802003550362,40.84178384145875],[-73.7880484708972,40.841850723126456],[-73.78829358843862,40.84178537313665],[-73.78805599136966,40.841867030178754],[-73.78838456613674,40.84238197837059],[-73.78852027016237,40.84241176544934],[-73.78883864895148,40.842350395961155],[-73.78852780867535,40.84242557639217],[-73.78876384724687,40.842659624839754],[-73.7888430895005,40.84300024582371],[-73.78905825501366,40.843235331770025],[-73.7896166032845,40.84311265436497],[-73.7896575565687,40.84323135456165],[-73.7898352230237,40.84316552413815],[-73.78985456556282,40.84323238006138],[-73.78992424858242,40.84322415423947],[-73.78988202833655,40.84304960029132],[-73.7899309338825,40.843042264363646],[-73.78999975375217,40.843307817244785],[-73.78995207552975,40.843313298934326],[-73.78993152902551,40.84324087250165],[-73.78986183858281,40.84325095414668],[-73.78988953603839,40.84338093446727],[-73.78973469260586,40.84341324747747],[-73.78974579972726,40.84344782258867],[-73.78989919889905,40.84341714665902],[-73.78975626839903,40.84347034066182],[-73.78980449436021,40.84358665577861],[-73.78933708659535,40.84368149805431],[-73.78933021337063,40.843793677906206],[-73.78936047323496,40.84384323034386],[-73.78942132625369,40.8438367425103],[-73.78946443345434,40.84394571404484],[-73.78934047096318,40.84398508505805],[-73.78947182214253,40.844292977849456],[-73.78992895494355,40.84492423756803],[-73.79001969152122,40.844928417157234],[-73.79066589001022,40.84574155883438],[-73.79098858375896,40.84565283206247],[-73.79101885992951,40.84569743474455],[-73.79069785364858,40.84578601255083],[-73.79096069662366,40.84623024627571],[-73.79090848534597,40.84625160108979],[-73.79097333310678,40.84635731152496],[-73.79149076513715,40.846251004462665],[-73.79112759312831,40.84635759095072],[-73.79118128785345,40.84655567592975],[-73.79141379114441,40.8465478470328],[-73.7914310833191,40.846575926679],[-73.791324519473,40.8466087319966],[-73.7914803465966,40.84680205220992],[-73.79179343625613,40.846731671826696],[-73.79180418591619,40.846767988991594],[-73.7913670985845,40.8468876426858],[-73.7913842834916,40.846950369626335],[-73.79148637416958,40.84695880326023],[-73.7914404968833,40.84730604348354],[-73.79177232634669,40.84722825327787],[-73.7919200710007,40.847228519878996],[-73.79191997810088,40.84725821803071],[-73.791429627565,40.84735998917436],[-73.7914173854464,40.84748004656329],[-73.79151739252161,40.84746042919799],[-73.79154104882424,40.84753801679563],[-73.79126708567362,40.84760186735406],[-73.79132976036394,40.848057922562894],[-73.7916176543145,40.848052924407796],[-73.79133588063232,40.848086238652414],[-73.791362881068,40.84823230239026],[-73.79124475264261,40.848552220447104],[-73.79106000608522,40.84872508882857],[-73.79111195407883,40.848808127034154],[-73.79104432321175,40.848740796449945],[-73.79091971794087,40.848866873016995],[-73.7910136233899,40.848985209716794],[-73.79098057835532,40.84899999916936],[-73.7908871020737,40.848886563296524],[-73.79024725647187,40.84917884699107],[-73.7897571107061,40.849531469287605],[-73.78985836952191,40.84997255936185],[-73.79064976493059,40.849844233237526],[-73.79092590534482,40.84978203770637],[-73.79094776857634,40.849739179643784],[-73.79098877124963,40.84982834852699],[-73.78986630380155,40.84998938969923],[-73.79001758789165,40.85031633145992],[-73.79024642580448,40.8502790731515],[-73.79025767031698,40.85015865126973],[-73.79035767047915,40.85014233461711],[-73.7904050605431,40.85027276271396],[-73.79014198665571,40.850325080607576],[-73.79022659043376,40.850368131663274],[-73.79005484537794,40.850397518036964],[-73.79011588587767,40.850333283173406],[-73.79002411829491,40.850347819582844],[-73.79003888486413,40.85045128862396],[-73.78991872482868,40.85061172713775],[-73.79102381130423,40.85043227542403],[-73.78992953626661,40.85062612255499],[-73.79007093170911,40.850932019604194],[-73.79024764837519,40.8509035105228],[-73.79007405920504,40.850939715312485],[-73.79008640021908,40.85098447385346],[-73.79026824507268,40.8509610880738],[-73.79009094452094,40.8509947639015],[-73.79012439171831,40.851189912194556],[-73.78951371516168,40.85130077171312],[-73.789562724642,40.851487336822075],[-73.78966276283408,40.85148870332213],[-73.78978510702808,40.85146229337813],[-73.78971059211989,40.851449164586285],[-73.78966571914015,40.85133864282483],[-73.78976843294967,40.85132398107071],[-73.7898108047848,40.85145213196684],[-73.79005781426925,40.851414530211066],[-73.79001797053542,40.851259470959484],[-73.79008961569993,40.85140716358977],[-73.79034518797947,40.85136679305498],[-73.79033709518075,40.85122014385104],[-73.79037943653307,40.85135850372398],[-73.7908245419897,40.85128970631839],[-73.79081765352956,40.85114862715578],[-73.79085756325742,40.8512832694446],[-73.79098717984299,40.85126401529904],[-73.79086603902765,40.851308342362856],[-73.79089018435825,40.85140397743769],[-73.79083302199105,40.8513138509969],[-73.79038545954286,40.851386356467614],[-73.79038756834741,40.851493087419634],[-73.79035488961053,40.85139094116142],[-73.79009442491892,40.851432229893014],[-73.79011618150705,40.85150929930472],[-73.79007338074112,40.85151664642066],[-73.79005162420019,40.85143957700097],[-73.78966490278331,40.851500382130865],[-73.78972573645895,40.85169267056372],[-73.79014778434481,40.85160740718402],[-73.79017310700392,40.851662579154876],[-73.79089217930074,40.85154690354887],[-73.79091633421976,40.85163882596731],[-73.79019588667285,40.851752904562886],[-73.79021640272953,40.851839826789245],[-73.79023273678264,40.85175637716744],[-73.7904552867565,40.85172337149926],[-73.79046370528098,40.85176700615398],[-73.79026555282867,40.85181490534541],[-73.79029928959116,40.85196902564683],[-73.79008396904274,40.852034526879606],[-73.7901550926101,40.852251285235795],[-73.7902434632545,40.85223063948417],[-73.79016095150182,40.85204023542576],[-73.79019520313298,40.852031017738064],[-73.79027404301972,40.85222327109372],[-73.79053212354651,40.85216341464395],[-73.79045200336101,40.85198972095027],[-73.79050704238345,40.85197775584264],[-73.79057493410306,40.85215328413433],[-73.79080610587769,40.85209987596774],[-73.79074309499367,40.85192621249434],[-73.79058037559622,40.85197788898881],[-73.79056092524486,40.85194444338879],[-73.79079463354843,40.851861341385735],[-73.79081896780883,40.851896652302],[-73.79076267521069,40.85191882351909],[-73.79085380783908,40.85208882496957],[-73.79111196150576,40.85200576731105],[-73.79106594789558,40.85186832982763],[-73.79101097118456,40.85186080525289],[-73.79117366731278,40.851816552766856],[-73.79110265321704,40.85185633106268],[-73.79118770764549,40.85201611250672],[-73.79146293339032,40.85194514919408],[-73.79139621768188,40.85178354562008],[-73.7913204511751,40.85177969609413],[-73.7915173867795,40.851729935890866],[-73.79142679645513,40.851776175917145],[-73.79149596880404,40.851934072422495],[-73.79176994883012,40.851870530951295],[-73.7917275018874,40.851764653959144],[-73.79248359357187,40.851523791406876],[-73.79229872479269,40.851623689583015],[-73.79176780605948,40.85177400770604],[-73.7918017523138,40.85186223510996],[-73.79205731391703,40.85182557326115],[-73.79017007192488,40.852280661154566],[-73.79113795170932,40.85205585257364],[-73.7912055913464,40.852197749785596],[-73.79133456753259,40.85216606767358],[-73.79121251169282,40.85221517641533],[-73.79122653318932,40.852258010501984],[-73.79136187979898,40.8522259775339],[-73.79123655971777,40.85228028988651],[-73.79318284142042,40.85180857187247],[-73.79311837183836,40.8515782952408],[-73.79322026114554,40.851828437088116],[-73.79315339612624,40.851844404533665],[-73.79323786787634,40.85193117467445],[-73.79312894074076,40.8518480721733],[-73.79124556783766,40.852304681410715],[-73.79138052761711,40.852602038305946],[-73.79340960300543,40.85210987765633],[-73.79340987631163,40.85202188373037],[-73.79350762831913,40.85226404392482],[-73.79342400669043,40.85213630252756],[-73.79139106468674,40.85262807498589],[-73.79144640027788,40.85277157192415],[-73.7904205378017,40.85302297821249],[-73.79049879363049,40.85318872151345],[-73.7907712759549,40.853118526990635],[-73.79079150823905,40.85316339959331],[-73.79100586740219,40.85311769126193],[-73.79100777755552,40.8530286003552],[-73.791030331149,40.8531115485876],[-73.79145436303881,40.85301084721096],[-73.79138972495285,40.852836253937056],[-73.79143702716799,40.8528227274809],[-73.79150327251574,40.85300474895964],[-73.79170223962277,40.85295808594678],[-73.79165554502431,40.852777338227696],[-73.79172995524621,40.852954423490104],[-73.7919631824496,40.852895448227535],[-73.79191650012405,40.85271098813961],[-73.79198928164566,40.852888070298],[-73.79222412997545,40.85283157209309],[-73.7921758090399,40.85264958432276],[-73.79225186163748,40.85282296038336],[-73.7924866988149,40.85277017395219],[-73.79243675473354,40.85258570820601],[-73.79250954114242,40.852761552715556],[-73.79283083884894,40.85268046076784],[-73.79276455868575,40.85250833947086],[-73.7928151196693,40.852494819308866],[-73.79290086687219,40.85269543547972],[-73.79080758729927,40.85319906006426],[-73.79086201986841,40.85331978110349],[-73.79111431429384,40.85326445192466],[-73.79126573232067,40.85370686423434],[-73.79252408728911,40.85340992070487],[-73.79240931037087,40.85305333561214],[-73.79255598392737,40.85340117803821],[-73.79297928311205,40.85330294440685],[-73.79287610048588,40.852944181328425],[-73.79303991170266,40.853371249285175],[-73.79299948121594,40.85332937972326],[-73.79127368194317,40.85373220788284],[-73.79129040940161,40.85384457374942],[-73.79105721254831,40.85391841242664],[-73.7924581684481,40.85360070875491],[-73.79246226705011,40.85367991099853],[-73.79244069248773,40.85363037509782],[-73.79107002765952,40.8539449566646],[-73.79158360923506,40.85389088823083],[-73.79171835293904,40.85391732827793],[-73.79178611175696,40.853993539900756],[-73.79251418302708,40.8538963082695],[-73.79253714605024,40.85384932731031],[-73.7925675894479,40.85401643444049],[-73.79251736175937,40.85392229994332],[-73.79179366809414,40.854004829900354],[-73.79191811736385,40.85422235474288],[-73.79133811791577,40.854439011538304],[-73.79129282160805,40.85458402547423],[-73.79207675667554,40.85564516770709],[-73.79250306751642,40.85578866613819],[-73.79248791157372,40.855946993209756],[-73.79230720796743,40.856072355408216],[-73.79211617014695,40.8560126152928],[-73.79201712228526,40.856176948606254],[-73.79263787674974,40.85623582617106],[-73.79270523985136,40.85619232890571],[-73.79268768222654,40.856335218720325],[-73.79315700296155,40.85635091107476],[-73.7931468608597,40.8564678284711],[-73.79311527696748,40.85640466330656],[-73.7926179379683,40.85635829490762],[-73.7926329438118,40.856249739029344],[-73.79201050075247,40.856225127719604],[-73.79193700279905,40.85640515741954],[-73.79207000927919,40.85641496516147],[-73.79208814819965,40.856477642009374],[-73.79200911296147,40.856540144211166],[-73.79190183340256,40.856546911368],[-73.79305133874315,40.85672596115078],[-73.79309492218563,40.85668644140528],[-73.7930307836123,40.856813917951534],[-73.79304835962016,40.85675235385887],[-73.79189423025076,40.85656888933078],[-73.7918284550688,40.856668143394614],[-73.79196180657604,40.856716856586345],[-73.79182299976166,40.85667610751277],[-73.7917926453544,40.85671985231655],[-73.79192955780464,40.85676900166961],[-73.79178502817679,40.85673085794511],[-73.79170704257521,40.85685184235245],[-73.7918603261915,40.856792803533175],[-73.7918822302672,40.8568241651251],[-73.79173546476557,40.856866429528225],[-73.79187172647434,40.85698428896503],[-73.79220265884061,40.857146000409124],[-73.792374840124,40.85690617253138],[-73.79242794130805,40.856928541531616],[-73.79222189186386,40.857152298424666],[-73.79282713237981,40.85743578991787],[-73.79295400784768,40.85699178335114],[-73.79301264449191,40.85700302604436],[-73.7928840395509,40.85747920249481],[-73.79185978781405,40.8570041072606],[-73.79268338509449,40.85742039308893],[-73.79260923020631,40.85750770450226],[-73.79257669621394,40.8574878467249],[-73.79263557328065,40.857421956602565],[-73.79211266783628,40.85716693187034],[-73.79189451913092,40.85743712186523],[-73.79246516131485,40.85771533178522],[-73.79256970440599,40.857639625362275],[-73.79239521723281,40.857845547752156],[-73.79244336403714,40.857736741469274],[-73.79174254082359,40.85739395000413],[-73.79187281963945,40.857427183076716],[-73.79209332504095,40.857157989947154],[-73.79184303217397,40.85702870201134],[-73.7916039346147,40.85737531248987],[-73.7912937885231,40.8572632381955],[-73.79094202260372,40.857552748188795],[-73.79163664587966,40.857882812570885],[-73.79178529423412,40.85777542535298],[-73.7914369590811,40.858154685123054],[-73.79161866075827,40.85790134204803],[-73.79093222800748,40.85756778747052],[-73.79079067047189,40.85775035081783],[-73.79044190145541,40.85791653409861],[-73.79023592738763,40.8581540848112],[-73.79006133563244,40.85845954856122],[-73.79018745195003,40.85860991738615]]],[[[-73.76783205637167,40.85444220574203],[-73.76823126524461,40.85388788880734],[-73.76855660327054,40.8532383229594],[-73.76904438987128,40.853290924693574],[-73.76938529139699,40.852536133996786],[-73.768608176871,40.850788395378075],[-73.76959674377652,40.8475945190995],[-73.7695032162894,40.84721783423646],[-73.76805636086229,40.845598218137425],[-73.76789492673002,40.84528943251447],[-73.76901389181124,40.84509734272182],[-73.77118378010576,40.84694451331209],[-73.7715721876706,40.847500058579044],[-73.77130773004298,40.84802877382051],[-73.7708892028736,40.84975177133931],[-73.77204963668454,40.85161828975738],[-73.77246892938172,40.851709147389265],[-73.7724665195014,40.85180956889388],[-73.77271117496144,40.85182658093367],[-73.77246594126667,40.85183368399969],[-73.77246052229246,40.85205954217235],[-73.77264417003487,40.85213898007615],[-73.77267130533082,40.85209888827963],[-73.77296356611288,40.852159253958554],[-73.77294539162794,40.852210466946865],[-73.7727060142553,40.85214593507562],[-73.77264837746922,40.8522244026295],[-73.77289075665114,40.85239826899691],[-73.77245940163023,40.852106267082135],[-73.77245149481669,40.8524358968948],[-73.77173060478097,40.8524768313204],[-73.77171715936544,40.85300453928181],[-73.77229680531381,40.853086378252364],[-73.77227536313356,40.853437135363826],[-73.7723491752136,40.8538514197328],[-73.77280751808918,40.85385063127561],[-73.77281122687667,40.85379708655034],[-73.77296285401061,40.85380006224775],[-73.77295817517044,40.854137432923366],[-73.7727959778814,40.85413175870315],[-73.77280008065782,40.85396307625658],[-73.77269430639828,40.85395751299703],[-73.77269448026055,40.85390663901333],[-73.77233272219738,40.853900844675195],[-73.77214036841818,40.85441271260057],[-73.77220606901291,40.855364883338424],[-73.77213970639949,40.85643579919962],[-73.77218152991513,40.858868346282186],[-73.77235432710653,40.85967316198053],[-73.77219223055423,40.85998663859692],[-73.7708456236057,40.86010101285674],[-73.76947305424012,40.85933013666856],[-73.76836277224596,40.85835828885051],[-73.76836085985347,40.857655362702076],[-73.76533243995291,40.85504359512487],[-73.76783205637167,40.85444220574203]]],[[[-73.78452431937967,40.860477063147805],[-73.78446215567952,40.860134679133274],[-73.78435963202567,40.86004441729511],[-73.78440007895902,40.85976627444504],[-73.78457156306106,40.85971548228866],[-73.78460172751576,40.859368339767784],[-73.78470517119784,40.85917438043838],[-73.78494557725968,40.859018706941505],[-73.78517519142927,40.85893907211991],[-73.78519664387123,40.858827023637396],[-73.78529680255667,40.858833214954856],[-73.78525939669223,40.85898726629371],[-73.78534653596095,40.85894339400974],[-73.78538834843641,40.859057560950475],[-73.785522920473,40.859019781641194],[-73.78558046666768,40.85915999770249],[-73.78566224996798,40.85914213617787],[-73.78572792401751,40.85921431495629],[-73.78594123750528,40.859284765298824],[-73.78629177967477,40.85931143541397],[-73.78657148159215,40.85923189058469],[-73.78700771825791,40.858842391033086],[-73.78722398173718,40.85881476771635],[-73.78740560244177,40.85890317206442],[-73.78741589162614,40.85898325360333],[-73.78726224486662,40.8592151528478],[-73.78697913779838,40.85953488078644],[-73.78710772633404,40.859719261641686],[-73.78704158794568,40.859791196365784],[-73.78694940092086,40.85976500589645],[-73.78685886839497,40.86004505784077],[-73.78610698578403,40.860209796420264],[-73.78576157642111,40.86022516831054],[-73.78522080164281,40.86032624293564],[-73.78503841008703,40.86047602052991],[-73.78489093085766,40.86042770792548],[-73.78467713549215,40.86050537012097],[-73.78452431937967,40.860477063147805]]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX99",NTAName:"park-cemetery-etc-Bronx",Shape_Leng:223873.306477,Shape_Area:220804164.952},geometry:{type:"MultiPolygon",coordinates:[[[[-73.86958054803937,40.81627772959349],[-73.8695448036227,40.81609475331287],[-73.867079530291,40.81444134219911],[-73.86111126701572,40.81115015357003],[-73.86135706534722,40.81083684190639],[-73.86228604582757,40.80994591122733],[-73.86440333379625,40.810275985935014],[-73.86765646284468,40.810583761937146],[-73.86868890960875,40.811854272456515],[-73.86976955850037,40.81342369975715],[-73.87077804885936,40.814486895487775],[-73.8717160645012,40.814922335490174],[-73.87651996099781,40.816131063424834],[-73.87663459963707,40.815711508099156],[-73.87806283262127,40.81618263244407],[-73.88098029659422,40.818235623127926],[-73.88054585187345,40.818468022360655],[-73.87981464297569,40.8191624492633],[-73.87246834182385,40.82015009086087],[-73.87342239025335,40.82407345399972],[-73.8735680846446,40.82441984646477],[-73.87145992831215,40.82472020883906],[-73.86958054803937,40.81627772959349]]],[[[-73.8022229542144,40.84163481314523],[-73.80263811156449,40.841081152261935],[-73.80529495910666,40.841134924850195],[-73.8069460864189,40.84146244618119],[-73.80680801372391,40.8424891399875],[-73.80393073307408,40.842594072549886],[-73.80367560026525,40.84225849291599],[-73.8022229542144,40.84163481314523]]],[[[-73.90798077164173,40.837178094000144],[-73.90916255883798,40.836964596523345],[-73.90963449164143,40.83712531811401],[-73.90945266983402,40.837203825307405],[-73.90932083471013,40.83732713374302],[-73.9091009208751,40.83773351616606],[-73.90891035737006,40.83837648078475],[-73.90887759933507,40.838902892618925],[-73.90898550963412,40.839690927730686],[-73.9096245542307,40.84210962501073],[-73.90958727269663,40.84275637501847],[-73.90596061823445,40.84262870411975],[-73.90586721929043,40.84257998724586],[-73.90514893975094,40.8425471957383],[-73.90501514957926,40.84240469831954],[-73.9051920801102,40.840707581824134],[-73.90548026230015,40.84005259230461],[-73.90580671727224,40.83950414341204],[-73.90662150118409,40.838400880990584],[-73.90686715270321,40.83816235121436],[-73.90763288374428,40.83760785681105],[-73.90798077164173,40.837178094000144]]],[[[-73.88941724869116,40.83942273388278],[-73.88869040830879,40.83915802646798],[-73.88813752159339,40.83986200238474],[-73.88659802345121,40.83927905010847],[-73.88730373141802,40.838127190700604],[-73.88841187161508,40.8385533910625],[-73.88874067915337,40.83796845937465],[-73.89057363264938,40.83690104803077],[-73.89110124772928,40.83672748163841],[-73.89337676251424,40.8365400089472],[-73.89385624321906,40.83639510172943],[-73.89430314021551,40.83618364442289],[-73.89469434268513,40.8359135740249],[-73.895350912651,40.83523446050888],[-73.89583107702725,40.834878551220264],[-73.8963751983027,40.834578150022004],[-73.89696589084858,40.83434214589525],[-73.90121578431375,40.83541014102133],[-73.90122534987549,40.835499911237356],[-73.89666161733358,40.84352460706789],[-73.89591487098836,40.843142919119195],[-73.89537836114475,40.842938779458514],[-73.88941724869116,40.83942273388278]]],[[[-73.77290231992444,40.86120858327846],[-73.77323150255603,40.860747169588244],[-73.7735126416603,40.861241183081894],[-73.77310632988133,40.86161457503411],[-73.77290231992444,40.86120858327846]]],[[[-73.7746015641713,40.862069047461],[-73.77457410807378,40.86195718217426],[-73.77463383677218,40.86181689058306],[-73.77476056449754,40.861774879533456],[-73.77484472768981,40.86157670065326],[-73.77493188967567,40.86155230236144],[-73.77492878679952,40.86140919324254],[-73.77506102234322,40.86133106830558],[-73.77512255390351,40.861188054018534],[-73.77523206634224,40.86119235649537],[-73.77530545442987,40.861259977468386],[-73.77527340232491,40.86144667092543],[-73.77487254969448,40.86184462040662],[-73.77485681624746,40.86198363433429],[-73.7747488514339,40.86205226410192],[-73.7746015641713,40.862069047461]]],[[[-73.78312589528278,40.862856167299384],[-73.78300940115767,40.86278013832685],[-73.78292783532106,40.86278961399061],[-73.78288197831348,40.86240643258869],[-73.78289032147738,40.862317193726696],[-73.78305399875318,40.86227741403956],[-73.78301584621737,40.86219472719619],[-73.78314504288142,40.8620686789056],[-73.78323505621375,40.86233219883129],[-73.78322682113932,40.86245888949435],[-73.78312068836786,40.86261806311177],[-73.78323014894404,40.86263806691489],[-73.78325856861501,40.862719291679106],[-73.7832115301558,40.862749890111346],[-73.78326241313782,40.86274008673475],[-73.78328053506097,40.86278070620993],[-73.78312589528278,40.862856167299384]]],[[[-73.78401249138903,40.863131994074344],[-73.78381322544804,40.86316275146002],[-73.78354105299664,40.86309550632481],[-73.7835639493315,40.863016684037085],[-73.78368644190915,40.863027024631315],[-73.78380117343671,40.86296657452443],[-73.78367242359639,40.86283286968553],[-73.7837677034899,40.862610608464344],[-73.78403314760361,40.86248168611105],[-73.78447101878139,40.86257046999974],[-73.78469165850869,40.86254278940561],[-73.78467197341281,40.862615333099306],[-73.78454667485435,40.86264947603921],[-73.78456732174409,40.86285375430978],[-73.78451638211669,40.86295577921169],[-73.78435811804633,40.86307351796081],[-73.78427247177973,40.86301497807576],[-73.78416702430185,40.86308757924661],[-73.78428650500068,40.86320508878052],[-73.78418478751625,40.86320711088569],[-73.78401249138903,40.863131994074344]]],[[[-73.76964988560898,40.86548557242308],[-73.76979148260676,40.86512823306182],[-73.77022931630273,40.86513893939606],[-73.77006897366016,40.86552587618469],[-73.76964988560898,40.86548557242308]]],[[[-73.7666896584193,40.86709778162454],[-73.76709907440146,40.86670457174301],[-73.76779449382192,40.866781173262815],[-73.76760072162699,40.867496386542776],[-73.7666896584193,40.86709778162454]]],[[[-73.770809753982,40.87154994684789],[-73.76990710668554,40.870476944470255],[-73.77109611675867,40.87069300471646],[-73.77288042599378,40.87124526242383],[-73.7721778649246,40.87198111018675],[-73.770809753982,40.87154994684789]]],[[[-73.7864851054659,40.873209254950375],[-73.7866248906274,40.87303464803442],[-73.78672689095372,40.87307453926563],[-73.78665449953742,40.87339363776223],[-73.78649986647405,40.873481618607414],[-73.78626202153426,40.87339368663396],[-73.78632869488993,40.873271144554124],[-73.7864851054659,40.873209254950375]]],[[[-73.78605394964907,40.87378264619279],[-73.7861892435864,40.873599727699705],[-73.78633326062918,40.873677724888665],[-73.78632872330334,40.873804928440926],[-73.78619463716474,40.87388531941465],[-73.78605394964907,40.87378264619279]]],[[[-73.77435244645402,40.87416995537227],[-73.77447969615314,40.87407767028594],[-73.77458142278212,40.874109133908],[-73.77460919866006,40.87420217262766],[-73.7745131532197,40.87446495533429],[-73.7745364044475,40.87471001543701],[-73.77409538225922,40.874896184478835],[-73.77407613213153,40.87481473400701],[-73.77415170185259,40.87469267588092],[-73.77397611001277,40.874599401922616],[-73.77403181534442,40.87439477495622],[-73.77425306035087,40.87428435764291],[-73.77435244645402,40.87416995537227]]],[[[-73.78241811931525,40.874923270423004],[-73.78265785360904,40.87479265669402],[-73.7828020751041,40.87494886620532],[-73.78266372854154,40.87513656444494],[-73.78247604125525,40.87516813337886],[-73.78241811931525,40.874923270423004]]],[[[-73.78103351104954,40.876484002047725],[-73.78120649649551,40.876285024957554],[-73.78132704118006,40.876361326546366],[-73.78112767478166,40.87665268050812],[-73.78103351104954,40.876484002047725]]],[[[-73.78650554049727,40.88094013447919],[-73.78613451219972,40.88074604037562],[-73.78582190502608,40.88075509610008],[-73.78572615707064,40.880575414602724],[-73.78578002611273,40.880363962661356],[-73.78598180971427,40.88031748451215],[-73.786099304964,40.88038657172332],[-73.78640732197056,40.88041011377367],[-73.78664008476223,40.880499837436126],[-73.78684884910372,40.880448111291855],[-73.78692034545342,40.88027335060754],[-73.78677238818258,40.88013589624922],[-73.78679741033037,40.879947073814016],[-73.78726793709994,40.879682703832],[-73.78742039384413,40.879770890289905],[-73.7873445177521,40.88007294499109],[-73.78742531437597,40.88044737396557],[-73.78712783465194,40.880923463171214],[-73.78650554049727,40.88094013447919]]],[[[-73.8072864712257,40.885931813816164],[-73.8063588501034,40.88594565965601],[-73.80550576743578,40.886092949181226],[-73.80328682136968,40.885415552669095],[-73.79937520438246,40.88435196982154],[-73.79449254438299,40.88306825107404],[-73.79322870948532,40.88282259490568],[-73.79358741863635,40.88251752388203],[-73.79379237424384,40.88197032626117],[-73.7949170558667,40.88054379098485],[-73.79554579842653,40.8806910153737],[-73.79502596232844,40.87974779721171],[-73.79625097601996,40.87701199977968],[-73.79712701174826,40.87619040040131],[-73.7972039970304,40.8757857929839],[-73.7974381545744,40.87513533245056],[-73.79855330787721,40.87440142827447],[-73.7989124546362,40.87464589314287],[-73.79981389580337,40.87415984971622],[-73.79987713859929,40.873484666791136],[-73.80027274375158,40.87282095182418],[-73.80087270458253,40.871590119893895],[-73.80137235410005,40.87146104260497],[-73.80252284756597,40.87050664469679],[-73.80317726501727,40.87168315507056],[-73.80269939786393,40.87221469079172],[-73.80339117523084,40.87250503763107],[-73.80431849468228,40.87115974106796],[-73.80373339399287,40.87096260282378],[-73.80358314939251,40.86994806102857],[-73.8028295989335,40.87007629352788],[-73.80302203751468,40.86915511979761],[-73.8042202705176,40.86900214816817],[-73.80483122145958,40.86931318178593],[-73.80554495995763,40.86895600501218],[-73.80588410012882,40.86906850218491],[-73.80574486146534,40.8696925765539],[-73.80841596818799,40.871189693367555],[-73.80838731046332,40.870571621611674],[-73.80754063702388,40.870377552174524],[-73.80780673260949,40.86978752042956],[-73.80695275224396,40.86965794817585],[-73.80673074905107,40.86877001307834],[-73.80593179559787,40.86837193206778],[-73.80487266169938,40.868233302832245],[-73.80464604502922,40.86664711643685],[-73.80385280781448,40.86716648480002],[-73.80300388108952,40.86704183656879],[-73.80306041418349,40.86581513370565],[-73.80225816223965,40.86560820641192],[-73.8006977800301,40.86808147681049],[-73.79780377219308,40.872256132273904],[-73.79693374974366,40.87262338049575],[-73.79479044681605,40.87320048403397],[-73.79397363837721,40.87456659456831],[-73.79357210883593,40.8761210583034],[-73.7935960533051,40.87672073272593],[-73.7931670377871,40.87705563906646],[-73.79422169990933,40.87738237046633],[-73.79440294586249,40.87764184299894],[-73.79384702721951,40.878594459789596],[-73.79299880219997,40.8791468626746],[-73.79288910674136,40.87926409282233],[-73.79218928228393,40.87951188328606],[-73.79174583941248,40.87989007165245],[-73.79146024020389,40.87997618076691],[-73.79090368014953,40.88002931469572],[-73.79068927478826,40.88015886427815],[-73.79048858865679,40.88046168983178],[-73.79043046503078,40.880797258029204],[-73.79005864434487,40.88107811623318],[-73.78955872944304,40.88126128491541],[-73.78926161019815,40.881205414623615],[-73.78931835780448,40.880578670091836],[-73.78912020636918,40.880080210993434],[-73.79006332860769,40.87959466151484],[-73.7895230936896,40.878998126557946],[-73.78827313470906,40.87887357315421],[-73.78775415489737,40.87897323005536],[-73.78588496910437,40.879067231751385],[-73.78438168107566,40.87842053167043],[-73.78417738368825,40.87772135392847],[-73.78470964026451,40.87635799484771],[-73.78542459134646,40.87548530202432],[-73.78596895445067,40.87513675012744],[-73.78668493218777,40.874293475542444],[-73.7870867847904,40.873536242216105],[-73.78719087560505,40.87273055372912],[-73.78679051783286,40.872507015314675],[-73.7862487445261,40.87238284677212],[-73.78573128788777,40.872803833869646],[-73.78544759902809,40.87313256336979],[-73.78527509163848,40.873543713801624],[-73.78508139658936,40.87358996222055],[-73.78517279111344,40.87311937546459],[-73.78568099787637,40.87238726505587],[-73.78526152075715,40.87174532233239],[-73.78439311809848,40.872784094427374],[-73.78402157839551,40.87369242209926],[-73.78358738552257,40.87378095468152],[-73.78333967922708,40.87351262137855],[-73.78343142541371,40.8731787019488],[-73.78403716905625,40.87282660126238],[-73.78380906886667,40.872533952915006],[-73.78306853492238,40.87215357592397],[-73.78305579624056,40.87168067823894],[-73.78324264074429,40.871255160946205],[-73.78320175426298,40.87067036085379],[-73.78350180032446,40.87051932877873],[-73.78391578305741,40.87042265086806],[-73.78414454086777,40.8702606557344],[-73.78428802741064,40.870001046741315],[-73.78465917845692,40.86991511496512],[-73.78490216077773,40.86976397324065],[-73.7849599883935,40.869525859439285],[-73.7852180017267,40.869136524128834],[-73.78560245305454,40.868341652223684],[-73.78551744321166,40.869169565720306],[-73.78568791368365,40.86938644678625],[-73.78598679893322,40.86959273828634],[-73.7865710386101,40.869777899884326],[-73.7872697090254,40.86986581499248],[-73.78795446145416,40.86984541906359],[-73.78901059796522,40.86966327545265],[-73.7896819738244,40.86936131077144],[-73.79038207759145,40.86899442562599],[-73.79139032586126,40.86814130746609],[-73.79228914014459,40.86581437721943],[-73.79265095767069,40.86413665318472],[-73.79147317119892,40.86220710624895],[-73.79188014597754,40.861255632209634],[-73.7919045492751,40.860829562711984],[-73.7924501793908,40.86069864952173],[-73.79332560859332,40.86060616885331],[-73.79351029757719,40.86055168129083],[-73.79362302791488,40.86041788353874],[-73.79363962149138,40.86024127817097],[-73.79355968024093,40.86014977214105],[-73.79335942163785,40.86005195896644],[-73.79339985516707,40.85994848620093],[-73.79386568535645,40.85977877483026],[-73.79401054136108,40.859632852094045],[-73.7941217117788,40.85931765679948],[-73.79454562318026,40.85888825916125],[-73.79486983933097,40.858075551259184],[-73.79447566976827,40.85700448766909],[-73.79432902837186,40.856909443842376],[-73.7942684847998,40.8568007092395],[-73.79435005934282,40.85652702380383],[-73.79461709085047,40.85643644890816],[-73.79480897676007,40.85647889903238],[-73.79489023543125,40.85656202371635],[-73.7955888017295,40.85651323676664],[-73.7968546169373,40.8562643582122],[-73.79751616842609,40.855600944706325],[-73.7979853341466,40.854848932594514],[-73.79824950227382,40.8547959851096],[-73.79853274127022,40.85500533260184],[-73.79872255600087,40.85491440117258],[-73.7990477683483,40.85405156055036],[-73.79902419393402,40.85395726764989],[-73.79890553567155,40.8536842305644],[-73.79864274330438,40.853357459921696],[-73.79795583376745,40.85298832971225],[-73.79780522990903,40.85194959759192],[-73.79819365996846,40.850592561406614],[-73.79932043160208,40.849912775376495],[-73.79948681481291,40.84974844806364],[-73.79978592816502,40.84928432398803],[-73.80009912705049,40.84829841339739],[-73.80023888643946,40.84817098051332],[-73.8004038762849,40.84810822082885],[-73.80058890262441,40.8481403033807],[-73.80093628503187,40.848303293829964],[-73.8012331780769,40.84851618681264],[-73.80146735296081,40.848770213808],[-73.80169341184448,40.84925599724798],[-73.80172173366007,40.84976281463482],[-73.8018305644413,40.8501306570584],[-73.80262285042765,40.85132249169615],[-73.80378369858614,40.85273925768481],[-73.80417557998595,40.85334012019024],[-73.8045424727661,40.85473937751506],[-73.80452526719915,40.85485186437918],[-73.8044371014662,40.855007460824496],[-73.80428420522094,40.855130807339975],[-73.80367116494942,40.85530739548398],[-73.8035630853326,40.855420341647154],[-73.80352359729388,40.85555669474527],[-73.80383737490646,40.8564884565041],[-73.80389056267957,40.856900266328594],[-73.80413784756401,40.85784176037563],[-73.80420585726534,40.85895904893252],[-73.8044981748047,40.859438252845415],[-73.80464293816092,40.85996820157118],[-73.80468371826247,40.86081090572398],[-73.80460527769024,40.861217180992675],[-73.80478410540124,40.861546329612864],[-73.80498231801036,40.86172242110771],[-73.80523383930255,40.861853529696546],[-73.80552150503244,40.86193070817247],[-73.80592716427579,40.86194119699033],[-73.8062457193077,40.86142748444243],[-73.8058204128212,40.860034611465395],[-73.80613057038923,40.85988100064527],[-73.80655629956537,40.85981792610007],[-73.80669974908204,40.859905665811944],[-73.80692131727548,40.8601984449183],[-73.80711884936751,40.8603173338886],[-73.80743775906106,40.86039537797446],[-73.80772203841819,40.86039634817247],[-73.80781183550609,40.86035900808186],[-73.80779694289605,40.86020962398043],[-73.80810365071876,40.859959233225055],[-73.8081525538835,40.85966737789617],[-73.80805363634254,40.859395650924505],[-73.80782587815533,40.859172999166205],[-73.80762141553826,40.85882849407853],[-73.80756272928903,40.858604611465154],[-73.80768048107568,40.85853806328953],[-73.80803798486909,40.85925072928912],[-73.80839608041295,40.85975419995918],[-73.80898490138148,40.8603720312804],[-73.80941823527014,40.86067958470486],[-73.80979018725546,40.861030415232385],[-73.81047663959535,40.86198549107364],[-73.81065185838986,40.8620686406231],[-73.81082703678815,40.86230043137675],[-73.81102830944351,40.86243058960731],[-73.81159565238835,40.86264738020524],[-73.8120578223665,40.86267283029031],[-73.8122549533085,40.86274576876293],[-73.812324411906,40.862886580883746],[-73.81293557982603,40.86321662393102],[-73.81327423932164,40.86322083850664],[-73.81363758473849,40.863675376227064],[-73.81372780576628,40.863871366344945],[-73.8138456615502,40.86390175802964],[-73.81404089746819,40.8638603950335],[-73.81395190872968,40.86406456463961],[-73.81395857420803,40.86410270421714],[-73.81400877754669,40.86408603314676],[-73.8142288047785,40.86386339803297],[-73.8141257225285,40.863727556314856],[-73.81437997747577,40.86325439784325],[-73.81459579280144,40.863088165393584],[-73.81493208875284,40.863029546564135],[-73.81501897203428,40.863122525364815],[-73.81510315384155,40.86305746536773],[-73.81641392102728,40.86118062770385],[-73.81587638257504,40.86100386461139],[-73.81568204242575,40.86110976454375],[-73.81549293707921,40.860955286737095],[-73.8152632141528,40.86111774712498],[-73.8147962975749,40.861128956244166],[-73.81485206024097,40.86090099030985],[-73.81381802586874,40.86054827867071],[-73.81273146495045,40.85887754194775],[-73.81230602708418,40.8541620264732],[-73.81640870908018,40.8540822551147],[-73.8165805118621,40.853945636346474],[-73.81684183564055,40.8536252130972],[-73.81697773202359,40.853262728389325],[-73.81696983794134,40.85271127819751],[-73.81714840640625,40.85230235727183],[-73.81713099465554,40.85204046290437],[-73.81720828353122,40.851828165777306],[-73.81708234186164,40.85168406927603],[-73.81691542383501,40.85167352556812],[-73.81706907886695,40.85158468973441],[-73.81712409042213,40.85126957344473],[-73.8169668381161,40.85102606981368],[-73.8168587387075,40.85095737599868],[-73.81660611270236,40.85093984385114],[-73.81632663289398,40.85084346721818],[-73.81622718968806,40.85090840523898],[-73.81604706927786,40.850777926043605],[-73.81571378560838,40.850816203845895],[-73.81569977313974,40.8507723362958],[-73.81603568200009,40.85060266911735],[-73.81596528550169,40.85038952519445],[-73.81619472482309,40.85037793934203],[-73.81627177606747,40.85031203927737],[-73.81628619094232,40.85019457644896],[-73.81573266022272,40.8495384494819],[-73.81565279058913,40.84934983712575],[-73.81544040399963,40.849194396084606],[-73.81520965198482,40.84923076297966],[-73.81513102820756,40.84917250355318],[-73.81514191918662,40.849080612735015],[-73.8163011921837,40.84857217240456],[-73.82014043680648,40.848020598551656],[-73.82048405617267,40.84850102613273],[-73.82495697663144,40.846105444801985],[-73.82517999004769,40.84270005947815],[-73.82624132909858,40.842993594144396],[-73.82611300711154,40.84533869377129],[-73.82617014070634,40.84557398797182],[-73.82633899938838,40.846037547402865],[-73.8265784026816,40.84648372329918],[-73.82799994536624,40.84863235054607],[-73.82797002364352,40.849187767606615],[-73.82785535403784,40.84973868596936],[-73.82713133325457,40.851871081024385],[-73.82737835766385,40.852817959166735],[-73.82721751210228,40.853250513298846],[-73.82723026126358,40.853350756948835],[-73.82801415960876,40.85472248696768],[-73.82860197165323,40.8557178475947],[-73.83129157705511,40.855434105351854],[-73.83165843201597,40.855483447559045],[-73.83200598814066,40.85559487657024],[-73.83281265205602,40.855979712715644],[-73.8328350232271,40.85603584525947],[-73.83193393765505,40.8566935170366],[-73.83111449155481,40.85752432962289],[-73.8283434743138,40.860892026674826],[-73.82826796566378,40.860837333161186],[-73.82799444969343,40.86084018590274],[-73.82787032368176,40.86067821250275],[-73.82759107994585,40.86007855140393],[-73.8274145808099,40.8599598727182],[-73.82714556298393,40.859232394934715],[-73.82699653234717,40.85908778640569],[-73.82632571111193,40.85929799789932],[-73.82444012074622,40.859501383985375],[-73.82450575184409,40.859764021466376],[-73.82037553020737,40.8610330054934],[-73.81895425529213,40.86247456169012],[-73.81684495908254,40.864306792799525],[-73.81699760266432,40.86445903114305],[-73.81641455929814,40.865151497607016],[-73.81578764066221,40.86575806093609],[-73.82091617218941,40.868916934874576],[-73.82126693795246,40.86907160628473],[-73.82329599430467,40.87309741817928],[-73.81992586501927,40.882119333466804],[-73.82027433015821,40.88555070032873],[-73.8167077859142,40.88648095054255],[-73.81547873106547,40.886687446137984],[-73.81442762192319,40.88677196467621],[-73.81356734739506,40.88677870924919],[-73.81198043683345,40.88670433944495],[-73.81027053227714,40.88645124252336],[-73.80834232390394,40.886044313639125],[-73.8072864712257,40.885931813816164]]],[[[-73.87643743064926,40.89687059396222],[-73.87711974105801,40.895468663643506],[-73.8748061811491,40.89572568763888],[-73.87048672642305,40.896640211013775],[-73.86491632477366,40.89574949536623],[-73.86401637674226,40.89552304744664],[-73.861359278643,40.89466231935547],[-73.86198229582742,40.89316126278712],[-73.86273972188104,40.89183889282546],[-73.86276661966554,40.89161957484105],[-73.86620661508445,40.885378614565305],[-73.86626727212003,40.885147691324406],[-73.86625345816194,40.88490730017102],[-73.86606028461775,40.88450579973435],[-73.8660523126306,40.884287044151115],[-73.86885103292916,40.87857981773536],[-73.86907407564988,40.87857916753048],[-73.86941232633508,40.87818180750781],[-73.8702699788134,40.87610397031219],[-73.87037667181832,40.87328437216197],[-73.87056192524662,40.871510778453704],[-73.87038854722981,40.86405387629927],[-73.87057937656577,40.86140455342528],[-73.87108262579078,40.85737703963335],[-73.87100227739215,40.85727684269108],[-73.87088983898644,40.85727281781133],[-73.86954868104695,40.85772602967981],[-73.86841539696033,40.85778035764108],[-73.86988842286954,40.855971067150314],[-73.86990421502472,40.855773292692966],[-73.8682346601507,40.85091373721548],[-73.86920944569867,40.849238372872456],[-73.86941402690951,40.8487880246291],[-73.86889243340889,40.84811232162388],[-73.86944230449559,40.84724418026595],[-73.87109207865386,40.84432478083503],[-73.87190185033853,40.84372143348884],[-73.87280708205994,40.84342426412389],[-73.873992954548,40.84256150561677],[-73.8745684495063,40.841642720121555],[-73.87459175370783,40.84152064753862],[-73.87679872059405,40.84229978727668],[-73.87817546958671,40.842617696045004],[-73.8773390723824,40.84399175505791],[-73.8791940883316,40.84532173372957],[-73.88284445574813,40.847817226451625],[-73.88311982503816,40.84822109187666],[-73.88073042819906,40.85667660491097],[-73.88098293785936,40.85788399212378],[-73.88100678959337,40.858268022657015],[-73.88060896855319,40.86035709310707],[-73.88068839533109,40.86077599304264],[-73.88092572594765,40.86116228824112],[-73.88200794138369,40.86204685336222],[-73.88379371102803,40.864171571731845],[-73.88396002429762,40.86454971928965],[-73.88396922333746,40.864817741303696],[-73.88384464441332,40.865196812650495],[-73.8836732125531,40.86542528323688],[-73.88344168348914,40.86561633152493],[-73.88267624733305,40.86608914148105],[-73.88309003170485,40.86659150928993],[-73.88133855509186,40.86759008775682],[-73.87694352025076,40.8699546815721],[-73.8761922491252,40.87047671092967],[-73.87518802822377,40.8715768284471],[-73.8725525090043,40.87517518282332],[-73.87160577396476,40.876921927761565],[-73.87024100052578,40.88022935290631],[-73.87084077080095,40.88043889400602],[-73.87187100693797,40.88032811992275],[-73.87191803286714,40.88023746610692],[-73.87494589755495,40.87994766929529],[-73.87479240731903,40.88007512889036],[-73.87467601442265,40.881562851685516],[-73.878125943608,40.88215382572798],[-73.8777281772773,40.88345419508519],[-73.877606766124,40.88452304412299],[-73.87783125838064,40.88677275967815],[-73.87803562426485,40.887118321756155],[-73.87814944568201,40.886873807866614],[-73.88124422541554,40.882709633005554],[-73.88208623674541,40.88313222140861],[-73.88274833360872,40.88339738680167],[-73.88368336856523,40.883157615331406],[-73.88421696443181,40.883197728058455],[-73.88683486608483,40.884342026064665],[-73.88705142536118,40.88434957584596],[-73.8875861260892,40.88425561916041],[-73.89288644520438,40.88526430680866],[-73.89467529596429,40.88553265003689],[-73.89595674893192,40.88582832452045],[-73.89978252141954,40.886529123507984],[-73.8993642685055,40.887249090202886],[-73.8977666909259,40.89050938970766],[-73.89728112520795,40.891710683680365],[-73.89675790074938,40.89264544357168],[-73.89643170783383,40.89365527942483],[-73.89715717165433,40.89937182667721],[-73.89697054248143,40.90061116757849],[-73.89635785971493,40.90320013158378],[-73.8965465329244,40.90750665554704],[-73.8966333379699,40.911417375348236],[-73.88605575379722,40.90831445260109],[-73.88405407210496,40.90770269738725],[-73.8830325744206,40.90733363115717],[-73.87803672198648,40.90592860682362],[-73.87483045288496,40.9049437833682],[-73.86789043713748,40.90298695364972],[-73.86820270305341,40.90235538277361],[-73.86899707630546,40.901559155154445],[-73.8701036964182,40.900741946981846],[-73.87136373174026,40.900039151571534],[-73.87388944310376,40.89896546270356],[-73.87482041484934,40.89844543802365],[-73.87589465388922,40.897559458644025],[-73.87643743064926,40.89687059396222]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN12",NTAName:"Hammels-Arverne-Edgemere",Shape_Leng:83846.5814192,Shape_Area:61920069.0271},geometry:{type:"Polygon",coordinates:[[[-73.76809925805176,40.59784597010968],[-73.76795322909503,40.597426057343284],[-73.76771811821797,40.59626131005121],[-73.7674209052326,40.59630520448576],[-73.76717720125461,40.596623181770376],[-73.76711717715389,40.596988133337845],[-73.76715168747808,40.597583900608505],[-73.7669553289132,40.59806727442988],[-73.76654034483096,40.59846942581532],[-73.76599689442864,40.59872106244472],[-73.76654205017635,40.59943444217985],[-73.76444582522092,40.6004352406378],[-73.76336096535539,40.59910504279464],[-73.76165797274827,40.59997307078807],[-73.76128753361084,40.599549271017615],[-73.7618148628794,40.59895137067748],[-73.76255289863575,40.598318118423286],[-73.76333449656079,40.59782287372058],[-73.76277845626547,40.594756544875096],[-73.76440183127873,40.594571683933665],[-73.7637622338133,40.59143970953492],[-73.76541995029443,40.59117360484695],[-73.7663250125633,40.59097365014618],[-73.76735429953362,40.5908633710345],[-73.76796973006678,40.590729482461754],[-73.76813345434199,40.5907368999669],[-73.76828636409618,40.590834347763334],[-73.76872708525322,40.590870068452986],[-73.76995620052728,40.59073007232873],[-73.7708802041345,40.59055383908001],[-73.77153385684241,40.59058063493614],[-73.77242217935705,40.590459952835964],[-73.77376174702829,40.590356354352245],[-73.7740963939505,40.59038676638324],[-73.77441435072238,40.59028444260602],[-73.77529299783372,40.59026292179472],[-73.77592594777778,40.5901785899479],[-73.77583688661194,40.590324598758976],[-73.77645489089379,40.59018123250734],[-73.77666243546737,40.590066332167815],[-73.77720080214559,40.59010129103927],[-73.7776135207686,40.590053471208655],[-73.77918495422034,40.589593108896565],[-73.77942325796698,40.58958020324832],[-73.77985959718424,40.58964710207273],[-73.7804303610206,40.58959662092643],[-73.78142243620564,40.5892713063476],[-73.78178622279165,40.5892509979203],[-73.78288961803264,40.588998671069184],[-73.78350063414175,40.58875787084163],[-73.78453311048492,40.58847805521786],[-73.78551073140778,40.58833488153333],[-73.786305552171,40.58814710788308],[-73.78768370715746,40.587922937712015],[-73.78842295061148,40.58764590359729],[-73.78860298459871,40.587484446052834],[-73.78878406873126,40.58745028886724],[-73.78901325882174,40.58750376010486],[-73.78923024711165,40.58762075825995],[-73.78945065591785,40.587623242907014],[-73.79040001876051,40.58745866959522],[-73.79111283049734,40.58727348654856],[-73.79147720856707,40.587301596484025],[-73.79200188355024,40.58721073844646],[-73.7925179720862,40.58704316501588],[-73.79338308107948,40.5869374540856],[-73.79376524596121,40.58678654545266],[-73.79396902115462,40.586811838291034],[-73.79434460523282,40.586756677983445],[-73.79471998303329,40.586649178427315],[-73.7949431955419,40.58653396786078],[-73.79573362789837,40.58644836700528],[-73.79602046576693,40.586319047176985],[-73.79633505791166,40.58637636567587],[-73.7967017441755,40.58636727152456],[-73.79771707099144,40.586024999005105],[-73.79818740957421,40.585955999829594],[-73.79846640546013,40.58584368065294],[-73.7988154278808,40.585894019010354],[-73.79949174993207,40.5858141809783],[-73.80028251171579,40.58563306631596],[-73.80091511241747,40.58540706093424],[-73.80184018400166,40.58535171084622],[-73.80330229547779,40.58488615649039],[-73.8034987666615,40.58492428756057],[-73.80361128707314,40.58500425779925],[-73.80377557103168,40.58501469648622],[-73.80431422502534,40.58490993835876],[-73.80562313030147,40.58451118378421],[-73.80597104231619,40.584544415857486],[-73.80651754277513,40.58446468575661],[-73.80783502965463,40.58401495035287],[-73.80887034203357,40.584023970841656],[-73.8095149195912,40.58382343175392],[-73.81132481815271,40.58372152471485],[-73.81352448727559,40.5834731490467],[-73.81544351379951,40.58285208494413],[-73.81730795932265,40.582334758939915],[-73.81751059222925,40.58278527117865],[-73.81544517911841,40.58337349188834],[-73.81788322331803,40.58744846866301],[-73.81812861134448,40.587370051699835],[-73.81849901756209,40.587362353054786],[-73.81880351767349,40.587495921583134],[-73.81897507840014,40.58764405856746],[-73.81909407431039,40.58783196115671],[-73.81912916363163,40.588038892945264],[-73.81883722364617,40.588251434958885],[-73.81827864949666,40.58846039456872],[-73.81741586147437,40.58891701410966],[-73.81763800450514,40.589285799485154],[-73.8174204516911,40.58935933325335],[-73.81736798137526,40.589255203051586],[-73.81716590847279,40.58936579873666],[-73.81674197582359,40.58931916984588],[-73.81657902384946,40.58943447399167],[-73.8164191605341,40.58945261646743],[-73.81629654402988,40.58956504919332],[-73.81624423864828,40.589551538558105],[-73.81596626679342,40.58969235018914],[-73.81582455452246,40.5897119713798],[-73.81524832375229,40.58998905579024],[-73.81500343530509,40.590334202115166],[-73.81474784672454,40.590588126172214],[-73.81448107260573,40.59067908136074],[-73.81405803164172,40.59062423925832],[-73.81340983344639,40.59091782311171],[-73.81325671566428,40.59104630249094],[-73.81358856612637,40.59169768582352],[-73.8135540503611,40.59170889619407],[-73.81323474432597,40.59107074001761],[-73.8131299173565,40.59124662634277],[-73.81274321219624,40.5912961840067],[-73.81249376357003,40.59138693715446],[-73.81224338291302,40.59132582310334],[-73.81170344836347,40.591593746637905],[-73.8115130318271,40.59178349031678],[-73.8115742042419,40.592828532703265],[-73.81149423586011,40.59290132619422],[-73.81132554567819,40.59174649514057],[-73.81100766651038,40.59176829726081],[-73.81089019539,40.5919566194239],[-73.81090890307107,40.592058445752684],[-73.81081791874642,40.59209026869599],[-73.81095018952732,40.59250305914452],[-73.81138593086102,40.592442318453436],[-73.81140751227304,40.592871256736075],[-73.81107287021045,40.593022330572055],[-73.81102821253145,40.59298742555113],[-73.8113738393581,40.59286110160759],[-73.81137331289645,40.592703054284186],[-73.81074974913331,40.59279211355254],[-73.81137347321489,40.59268449963415],[-73.81135829315784,40.59246258404494],[-73.810939658946,40.592546847806624],[-73.81080537904421,40.592092095735104],[-73.80991130015997,40.59225371768246],[-73.81006184569986,40.593077610898355],[-73.80990340366074,40.59308077605279],[-73.80977831849525,40.59239902778618],[-73.80973138393713,40.5924041860533],[-73.80980749782444,40.59271040950582],[-73.80974319445119,40.59269495750886],[-73.80970982436533,40.59243960783681],[-73.80963383143487,40.592495166312446],[-73.8095055686676,40.592775197356815],[-73.80952819730967,40.59300877672515],[-73.80970128863609,40.59353404259567],[-73.80959170559156,40.59358068811654],[-73.80950247283022,40.593566267704404],[-73.80935376623239,40.593367778574446],[-73.80917407641941,40.59339569415159],[-73.80904366044257,40.593357862744895],[-73.80832111121644,40.592966840221905],[-73.80793775241565,40.5928381726147],[-73.80687456746521,40.592264953369614],[-73.80664571748989,40.592263352423394],[-73.80602807393922,40.592009309003394],[-73.80593270594095,40.59185554588022],[-73.80589854177524,40.59135580442447],[-73.80578861982589,40.59110082446285],[-73.80577902773113,40.59075949966748],[-73.80571790697208,40.590763881950195],[-73.80570056008587,40.59081465951824],[-73.80581342546579,40.59186886099835],[-73.8056593764847,40.59185104965407],[-73.80476400054194,40.59144971673044],[-73.8043033350821,40.5913188788046],[-73.80422320774714,40.591447995159434],[-73.80416569103039,40.591854709832766],[-73.80701238240896,40.59304869567396],[-73.80731386523041,40.5930660591069],[-73.80782611143384,40.59336993482539],[-73.80804688683968,40.59365031287615],[-73.80781142831069,40.593907379875425],[-73.80780456820635,40.59402097812328],[-73.80797757165422,40.59415786816286],[-73.80788965689891,40.59419057261049],[-73.80789694511054,40.59430160132144],[-73.80773356580042,40.594486016599944],[-73.80753338160466,40.59460616360671],[-73.80743922160715,40.59475996860559],[-73.8074467372451,40.59486581921301],[-73.80731110851832,40.59496317301861],[-73.80711253952028,40.59528407542428],[-73.80686762516393,40.595408710858436],[-73.80604149807385,40.595554555213525],[-73.80485298477404,40.59505633554072],[-73.80463907835824,40.59490583672037],[-73.80464408404336,40.59481806187837],[-73.80449229719721,40.59474781555164],[-73.80411459888883,40.59431916994965],[-73.80403735959106,40.594175468365144],[-73.80400883351923,40.59376772491102],[-73.80403789448302,40.59355046873675],[-73.80412567949342,40.593513805102035],[-73.80403055905913,40.593211894860524],[-73.80375130673917,40.59299448143769],[-73.80380902231202,40.59289116392534],[-73.80369163878105,40.59288556933279],[-73.80361739455438,40.59294133774378],[-73.80303153999508,40.59257718898742],[-73.8024384635624,40.59264006383622],[-73.80249285290718,40.59328631108675],[-73.80237735357416,40.59328671578609],[-73.80250965087282,40.5939481280415],[-73.80314197409054,40.593848224464125],[-73.80313503440725,40.593757943071175],[-73.8031808212496,40.59394537812981],[-73.80314275413551,40.593866983928876],[-73.80251304282987,40.59396685179235],[-73.80256837535138,40.59427226699303],[-73.80323967749761,40.59418846225914],[-73.8032425317115,40.59408723936282],[-73.8032879389302,40.59428211589169],[-73.80324024295774,40.59420405487714],[-73.80272201932164,40.59430321408805],[-73.80271634477458,40.59427361576115],[-73.80260442851133,40.59428775103983],[-73.80270983925004,40.59430643303324],[-73.80257740915899,40.59432212325601],[-73.80258875504288,40.59438474740671],[-73.80233663086595,40.59440486335874],[-73.80234513911594,40.59449597525802],[-73.802773703339,40.59448182541819],[-73.80277681567539,40.59455581805206],[-73.80304215781334,40.59453639859904],[-73.80318574404414,40.5946630028416],[-73.80347149995353,40.59450267265587],[-73.80344017041452,40.59443420917683],[-73.80350896976357,40.594505800011135],[-73.80319675364956,40.59467819988323],[-73.80337754303832,40.59486904065902],[-73.80365519313503,40.594730642030044],[-73.80372454267386,40.594817111979864],[-73.80365167080724,40.59475314278156],[-73.80338467970269,40.59488526035753],[-73.8032001068913,40.59487284642524],[-73.80320303445053,40.59493729339109],[-73.80338472349472,40.59494957958507],[-73.80320373655316,40.59495275556905],[-73.8032070440739,40.595009683114455],[-73.80339097261972,40.59500651249298],[-73.80320801748974,40.59502645047775],[-73.80321494251405,40.595145647948],[-73.80363981182514,40.59513279276299],[-73.80389506940804,40.594990875366086],[-73.80365158624444,40.59514954741725],[-73.80331453795297,40.59517956093542],[-73.80358534121649,40.59516364357045],[-73.80368468761655,40.59519779018494],[-73.80470623160139,40.59638667501563],[-73.80486462646932,40.59673362835146],[-73.80509431912355,40.596767408140394],[-73.8051340625276,40.596607588970514],[-73.80514809966373,40.59672153809762],[-73.80522451261193,40.596766701101565],[-73.80520407858941,40.59689225938826],[-73.80524832604333,40.59689503211213],[-73.80524737229531,40.59694503138051],[-73.80520078296036,40.5969440939941],[-73.8052514353865,40.59703274470252],[-73.80520792410324,40.59703502156482],[-73.80519243494217,40.59719037599557],[-73.80516341154974,40.59675799203129],[-73.80513706065163,40.59682203580167],[-73.80487565214916,40.59674853593163],[-73.80511185479912,40.59715104799808],[-73.8048457890886,40.597415064856186],[-73.80471112225942,40.59767466318327],[-73.80443582727855,40.597723480844266],[-73.80393338922403,40.5979434985839],[-73.80385331601518,40.59809904785897],[-73.80370714924587,40.598112385607045],[-73.80368138795552,40.59817901234663],[-73.80359355082508,40.59819431552485],[-73.80355854855945,40.59829230071358],[-73.80339402477262,40.598413284816836],[-73.80343320999688,40.59844777113624],[-73.8033792728999,40.59851898900649],[-73.8032637340413,40.5985500281663],[-73.80297943325746,40.598844304552955],[-73.80265662904642,40.59893569242731],[-73.80235841845276,40.59892594957578],[-73.80198680899791,40.59885105306526],[-73.80167092680178,40.59889630926941],[-73.80123490662545,40.59912290165509],[-73.8009486786282,40.59915166461985],[-73.80089078534826,40.59920057075455],[-73.80091500623965,40.59939076113575],[-73.8008591685885,40.59921116465513],[-73.80077654707773,40.5991623599757],[-73.80049526371978,40.59920436806854],[-73.80047379227796,40.59933155912371],[-73.8004513179569,40.59918256787399],[-73.79916040009195,40.59925813759454],[-73.79919690825383,40.59936939496674],[-73.79914327503613,40.599418798862885],[-73.79914024196675,40.59925849421587],[-73.79868821055565,40.599262899201136],[-73.79843078655479,40.59917371407834],[-73.79810708664,40.59924575403497],[-73.798112292869,40.599301040240555],[-73.79561757052751,40.59944482929711],[-73.79554637687062,40.59949676215022],[-73.794946323164,40.599419655181926],[-73.79457361595679,40.59941902429966],[-73.79421154444505,40.59947989752515],[-73.79387558152145,40.59959945549505],[-73.79330907387678,40.59996846559873],[-73.79291325690718,40.59998783296682],[-73.79277201626348,40.599941565526834],[-73.79259650337168,40.60005223559944],[-73.79233256449513,40.599954391425754],[-73.7922842064656,40.600018618648654],[-73.79221194321228,40.600012554284156],[-73.79210604486526,40.6000904915379],[-73.79203025769769,40.60022200504383],[-73.79154070576193,40.60035038041848],[-73.79134762453623,40.60047716606794],[-73.79067067838216,40.60109560659399],[-73.790403502095,40.60115405671835],[-73.79025461686716,40.601241996459954],[-73.78939931834394,40.601965535576774],[-73.78785755567594,40.60311117192886],[-73.78761995876613,40.60312319010945],[-73.78727495168621,40.60323794423927],[-73.78650335648778,40.603250205676396],[-73.78635332811824,40.60319465903843],[-73.78631473477456,40.603122509863816],[-73.78616855124969,40.60304744924936],[-73.78647254177085,40.60280320388667],[-73.78650683298197,40.602763232614585],[-73.78646693278722,40.60272304151769],[-73.78658983800636,40.602646117236866],[-73.78662553909115,40.60267711585319],[-73.78716241855363,40.60232643107227],[-73.78766351014485,40.601370464081896],[-73.78792994192969,40.60099530204593],[-73.78850007513712,40.60053885780104],[-73.78921850390114,40.6001132298224],[-73.78928357791776,40.60001988471623],[-73.78953462196618,40.59997181492784],[-73.78980075832331,40.59971560726007],[-73.79003227170432,40.59939311125933],[-73.79028210224466,40.59927877747758],[-73.79034006616921,40.59919167636128],[-73.79033669416053,40.598948591917605],[-73.79043233771186,40.59864908902281],[-73.7909274926112,40.59741268848024],[-73.7910707937075,40.59719836237172],[-73.79110296641791,40.596789744478286],[-73.7909318980418,40.59598317572511],[-73.79102536652763,40.595527157215884],[-73.79083826830143,40.59499687651805],[-73.79065080043435,40.594782701579454],[-73.79042048230907,40.59475269500823],[-73.79045684150317,40.59496013627743],[-73.79057004261973,40.59495180030093],[-73.79071440018099,40.59608554152443],[-73.79080626207622,40.59609339588545],[-73.79059442974035,40.596108384772755],[-73.79068189343903,40.596088898583915],[-73.7905385766652,40.59498078405602],[-73.79042537549715,40.5949891194989],[-73.79040674487618,40.5948558355806],[-73.7903193247474,40.59486165540375],[-73.79041243624567,40.594827658586354],[-73.79037896334775,40.59475196591305],[-73.79015263714747,40.594768202273954],[-73.79031625476229,40.59604819893939],[-73.79042481472429,40.5960539316513],[-73.79017830067248,40.59607131970562],[-73.79028151177357,40.596051416106185],[-73.7901311949162,40.59482287479846],[-73.79011343988775,40.59477348141954],[-73.78990643704786,40.59480862313327],[-73.78986650490671,40.59471554399447],[-73.78989588911115,40.594820736014405],[-73.78984569626375,40.594719596849515],[-73.78978513163784,40.59473138972908],[-73.78981067236684,40.594838517916905],[-73.78977512688955,40.59473333722032],[-73.78973901889982,40.59474366805196],[-73.78967353016405,40.59484352440627],[-73.78971317263996,40.59484261104425],[-73.78987360648395,40.59620444378455],[-73.78999909505022,40.59620894350447],[-73.78969872360815,40.59622803991133],[-73.78984110232884,40.59620694687981],[-73.78967389675829,40.59486047590014],[-73.78946035244319,40.594997466247875],[-73.78940242709974,40.594949785523696],[-73.78937617071955,40.59517654346746],[-73.78917256028747,40.59519231677657],[-73.78912084848457,40.59542626222154],[-73.78912343270227,40.59557007881007],[-73.78921549146807,40.595692123714706],[-73.78910675795653,40.59587773675993],[-73.78910696253816,40.5959917278535],[-73.78926858096271,40.59645372374879],[-73.78919874554379,40.59678063872451],[-73.78925996090999,40.59691675778658],[-73.78909938750343,40.59742115404271],[-73.789185542153,40.597598733071266],[-73.78919080315217,40.597788276062204],[-73.78906829121502,40.5980199273826],[-73.78872539542697,40.59833078085932],[-73.78860652033916,40.59833486608973],[-73.78822073050365,40.59855368647922],[-73.78756221313745,40.599179028424004],[-73.78732492544266,40.599296450500326],[-73.78716919221358,40.59943985923696],[-73.78710231226589,40.59944330089239],[-73.7869689502519,40.59959544106322],[-73.78702312925984,40.59966658409976],[-73.78694898973094,40.59968996800785],[-73.78684530719114,40.599848997589774],[-73.78662409463644,40.60001863317827],[-73.78597109832157,40.600316491815896],[-73.78579378813598,40.600568927993244],[-73.78606508184842,40.600667265777496],[-73.78608873453452,40.600629725706355],[-73.78614358698636,40.60064861875167],[-73.78610528242096,40.60071175706412],[-73.78578006617877,40.60059326189427],[-73.7856420527343,40.600797194018256],[-73.78598359117787,40.600918237941904],[-73.78594303730414,40.60098393286822],[-73.78588596247509,40.600959910521595],[-73.78591858894102,40.600919824671564],[-73.78563276439228,40.60081638362968],[-73.78554281915136,40.60133604297957],[-73.78539358087035,40.60151802170845],[-73.78528368685303,40.601581932877416],[-73.78448233236338,40.60180009858416],[-73.7838034338019,40.6022368115458],[-73.78350560905312,40.60256343874272],[-73.78334197405692,40.603127047920665],[-73.78317278644313,40.60347158433606],[-73.78312802406073,40.603760991847885],[-73.78320431624475,40.60389851976303],[-73.78348138271588,40.60404783581104],[-73.78363588044569,40.6043134120327],[-73.78362777074119,40.60441690390851],[-73.78380616108599,40.60458705964923],[-73.78394764971196,40.60482442511682],[-73.78393244676818,40.60492534549731],[-73.78373194492417,40.605153944946615],[-73.7836669629257,40.60532443592912],[-73.78349084244985,40.605495762614495],[-73.7833842445579,40.60551702949741],[-73.78340388941226,40.60557670838317],[-73.7832697719436,40.60563498066533],[-73.7831765582719,40.6058355856748],[-73.78280460652962,40.60612583430075],[-73.78258632670769,40.60636874352882],[-73.78248626611048,40.60639594746627],[-73.78225374776613,40.60658387925464],[-73.78150652174308,40.607404954847595],[-73.7804083233382,40.608425974829245],[-73.77940143922392,40.60922626068235],[-73.77856806939954,40.60964366342898],[-73.77727898275013,40.609849112589295],[-73.7769279804783,40.6098352029452],[-73.77626538330257,40.609649037889106],[-73.77535164745717,40.6097374069643],[-73.77492336658474,40.60952078520294],[-73.77422234411397,40.60889323163523],[-73.77412897394217,40.60874659586802],[-73.77422269363433,40.60860112864026],[-73.77449080250229,40.60843557121315],[-73.77466166934934,40.608450917813585],[-73.77481441008916,40.60839956311232],[-73.77469639090219,40.60816875236144],[-73.77430904775358,40.60785592523353],[-73.77421737687408,40.607636638970106],[-73.77432541481343,40.60745694349325],[-73.77460294599072,40.607417648882524],[-73.77466711338981,40.607650190980465],[-73.77482414248271,40.60783689898709],[-73.7748488654665,40.60802483265709],[-73.77523851986183,40.60855094300024],[-73.77553555532764,40.60881294578074],[-73.77560428285227,40.608958911426356],[-73.77591974593643,40.60920604490685],[-73.77600772152822,40.609190754248125],[-73.7749459848426,40.60806542027063],[-73.77490855518566,40.6078509052883],[-73.77473738601176,40.60760709537887],[-73.77473443991454,40.607450649993865],[-73.77459009469842,40.60729765609021],[-73.77454551614039,40.60712210153213],[-73.7746280384372,40.60677873175094],[-73.77458447675635,40.606525967320714],[-73.77471597242719,40.6063300012575],[-73.77482760366988,40.60598385962572],[-73.77491283048872,40.60562960749178],[-73.77488547725287,40.60525798800982],[-73.77518711327278,40.60450025631975],[-73.77513168220321,40.60439672196393],[-73.77479068451464,40.604417009218366],[-73.77470340449678,40.604385717019035],[-73.77468798964637,40.60432464838919],[-73.77477178552543,40.604201558243794],[-73.77491373899663,40.604112513232366],[-73.77510340854609,40.604098394730784],[-73.77537608316845,40.604157308867805],[-73.77588140582175,40.60347168175341],[-73.77601557864357,40.60309098462611],[-73.77605391827005,40.60275289440353],[-73.77600401563214,40.602734228503536],[-73.775845909816,40.60279337333103],[-73.77575502513491,40.60300566533068],[-73.7756064224794,40.60304583603844],[-73.77559843746391,40.60293605569969],[-73.77568814362701,40.60281474067048],[-73.7760579355511,40.60251331742217],[-73.77618574390483,40.60248659596208],[-73.77635102435353,40.60252201897303],[-73.7764792425499,40.60244817664337],[-73.77662545802652,40.60220777778551],[-73.77651197537364,40.602213144946376],[-73.77648988622984,40.60217172568517],[-73.7767285076376,40.601989274106266],[-73.77699505143738,40.60169160073815],[-73.77762215694418,40.60124166308546],[-73.77780302387734,40.60096655222123],[-73.77808327752645,40.60079984345947],[-73.77836872931843,40.60083878008982],[-73.77807565281422,40.60070077436789],[-73.778076403336,40.60051418663806],[-73.77818086978309,40.60038554108577],[-73.77834715405766,40.60036563656279],[-73.77930686918683,40.60056730924252],[-73.7799029420776,40.60074540572082],[-73.78010900085108,40.600727429033746],[-73.78031928808544,40.600609394598756],[-73.78061842937602,40.600308551193926],[-73.78081083231581,40.599947754024384],[-73.78116628337473,40.59977094663728],[-73.78143367080322,40.59954626997919],[-73.78158957195356,40.59929725676636],[-73.781906810074,40.59911416534062],[-73.78200805391961,40.59890731333902],[-73.7819360135701,40.59853114424329],[-73.78183226543206,40.598343640772136],[-73.78149557370473,40.59801681040707],[-73.78135874440794,40.597969371289565],[-73.78132973998125,40.59775303744691],[-73.78059568703117,40.597313390833236],[-73.78018334426073,40.59721256970323],[-73.78014410214381,40.59714675698091],[-73.78016845573191,40.596897627246825],[-73.78005493695562,40.596861344908795],[-73.77997415029478,40.597088242429294],[-73.77972702967342,40.597294625341846],[-73.7797184024518,40.597352548285215],[-73.77904364405244,40.5976493993235],[-73.77899722066611,40.5977832741806],[-73.77876825367093,40.597965525773255],[-73.77861593448903,40.59797866329969],[-73.77849136332307,40.59809713078342],[-73.77822973160433,40.59818466137417],[-73.77806376669821,40.598362365915136],[-73.77781414382689,40.598475917015676],[-73.77742174810764,40.59881240436132],[-73.77730277625058,40.59935118307318],[-73.7771985062932,40.59957695925301],[-73.77698813377799,40.599787094308326],[-73.77631770386209,40.60104088868039],[-73.77619278892124,40.6011055546883],[-73.77600163850968,40.60139432390481],[-73.77560049633018,40.601648453143056],[-73.77538820339001,40.6016506009675],[-73.77497207353781,40.6017444870919],[-73.77485738732288,40.601570763838005],[-73.77488488052978,40.601344025239364],[-73.7747124274679,40.60104004387243],[-73.77474212725619,40.600963426437694],[-73.77448134030695,40.60098770385203],[-73.77459908825222,40.60093054370619],[-73.77474724721813,40.60094979034326],[-73.77476381165697,40.60084578537197],[-73.77464033629732,40.600837656349505],[-73.77476313172289,40.60083174488497],[-73.77474285029261,40.60074378309128],[-73.77459931507562,40.600536714376084],[-73.77458217603728,40.600415626049056],[-73.77424462060321,40.600131691285206],[-73.77411995097052,40.59988138128996],[-73.7741749494071,40.59961211284653],[-73.77410924416247,40.59959271243936],[-73.77418446916654,40.59930206238643],[-73.77411815226309,40.59925045805377],[-73.77422338523779,40.59900521773916],[-73.77374432839079,40.59867015398147],[-73.77371810271819,40.59824076789891],[-73.77358545240932,40.59812047275634],[-73.77323082068585,40.598045608578445],[-73.77300592490836,40.59786749965716],[-73.77197533133597,40.597924035300466],[-73.77167625398526,40.59798502122362],[-73.77110941468533,40.59830758419921],[-73.77095267052917,40.598291926780256],[-73.77051024199075,40.598101448713464],[-73.77037291381372,40.59809176811547],[-73.76981453556964,40.598123502494325],[-73.76947725109346,40.59825776995248],[-73.7685340197086,40.59791664536956],[-73.76817114837228,40.59782142227618],[-73.76809925805176,40.59784597010968]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN15",NTAName:"Far Rockaway-Bayswater",Shape_Leng:49203.2904365,Shape_Area:54353699.467},geometry:{type:"Polygon",coordinates:[[[-73.7637622338133,40.59143970953492],[-73.76440183127873,40.594571683933665],[-73.76277845626547,40.594756544875096],[-73.76333449656079,40.59782287372058],[-73.76255289863575,40.598318118423286],[-73.7618148628794,40.59895137067748],[-73.76128753361084,40.599549271017615],[-73.76165797274827,40.59997307078807],[-73.76336096535539,40.59910504279464],[-73.76444582522092,40.6004352406378],[-73.76654205017635,40.59943444217985],[-73.76599689442864,40.59872106244472],[-73.76654034483096,40.59846942581532],[-73.7669553289132,40.59806727442988],[-73.76715168747808,40.597583900608505],[-73.76711717715389,40.596988133337845],[-73.76717720125461,40.596623181770376],[-73.7674209052326,40.59630520448576],[-73.76771811821797,40.59626131005121],[-73.76795322909503,40.597426057343284],[-73.76809925805176,40.59784597010968],[-73.76795043655433,40.598158511418504],[-73.76829168302478,40.59834035055516],[-73.76890472615032,40.59839705641211],[-73.7688917638077,40.59844309700455],[-73.76903989945075,40.598507687535715],[-73.7692609071398,40.598504692271646],[-73.76970071987036,40.598640130523684],[-73.77033634816473,40.598984223332735],[-73.77044647607373,40.59897885122139],[-73.77073894737404,40.59881121728159],[-73.77090026970188,40.59884297578272],[-73.77100024355651,40.59891476786447],[-73.77116052436337,40.59942245207375],[-73.77108437476596,40.599696573029995],[-73.7711393089279,40.60015922794802],[-73.77111103445861,40.60054602854738],[-73.77093512613946,40.60115230828563],[-73.77073733384833,40.60153550225481],[-73.77084737847184,40.60172455230666],[-73.77083917594602,40.601810916097534],[-73.77074383318678,40.60194531862105],[-73.77061758814915,40.60186873047901],[-73.77018588340033,40.60274882332639],[-73.77039964407952,40.60294406043138],[-73.77033615717721,40.603048370129294],[-73.77016223780022,40.60309007250115],[-73.77029746555608,40.60330841369923],[-73.77046829518173,40.60391932649865],[-73.7704566583584,40.60448131581639],[-73.77056521410924,40.60484040925543],[-73.770443909189,40.6049902626573],[-73.7701645339789,40.6051245895161],[-73.77000408169596,40.60535479083428],[-73.77006342333264,40.60565634562625],[-73.76987211710194,40.606046898097],[-73.76983622745945,40.60627800842714],[-73.76999488145317,40.60686001325638],[-73.77001915887529,40.607180186904316],[-73.7697722687344,40.60753774998639],[-73.76981943864452,40.607847583616895],[-73.76949747984234,40.60829312453738],[-73.76923117070868,40.60842747747292],[-73.76893457347879,40.60918347477983],[-73.76915128441289,40.6096747459428],[-73.76971531021158,40.61003699685998],[-73.7702419643962,40.61024956354157],[-73.77058996067,40.61016101867816],[-73.77086443569715,40.61035542247679],[-73.77100447802925,40.61039116388312],[-73.77116894523394,40.610364989263076],[-73.7712912175345,40.61041752596295],[-73.77184662279288,40.61082424420955],[-73.77199007358043,40.61125405176646],[-73.77211789596024,40.61144672027226],[-73.7722143805513,40.611497664584014],[-73.77252726651362,40.61146854704855],[-73.7730809628302,40.611297436570844],[-73.77340389078988,40.61109044877904],[-73.77289590021059,40.61022937360298],[-73.7728831656603,40.610162456915255],[-73.77296895866229,40.61015697211617],[-73.77376767753125,40.61125622247546],[-73.77394430328032,40.612123738516196],[-73.77413182408822,40.61181536235723],[-73.77417180232506,40.61182871477328],[-73.7740432581579,40.612109904331426],[-73.77385782227712,40.612857620459565],[-73.77347356533475,40.61362564688079],[-73.7732781883395,40.61368729725668],[-73.7730601959731,40.6135736102498],[-73.77293616050659,40.61356290282223],[-73.7717415670334,40.613961049987815],[-73.77124296128295,40.61393660984734],[-73.77108014283786,40.6139945757718],[-73.77091678395058,40.61397276719748],[-73.77072528645874,40.614027808608284],[-73.77019814694476,40.614063306531165],[-73.76933085131223,40.613974525075875],[-73.76896496321501,40.61403933884492],[-73.76835465017783,40.614227148473475],[-73.76811864665693,40.614194767144674],[-73.76760132094114,40.614215308065496],[-73.76704379300902,40.61430402508164],[-73.76631013101631,40.61419533543838],[-73.76617422389806,40.61404566881763],[-73.76597595285247,40.61392817527188],[-73.7653989132128,40.61379476814529],[-73.76530079785114,40.61382283108823],[-73.76516400829202,40.61375420268659],[-73.76501724522917,40.61349135519837],[-73.76503813998191,40.613376743056946],[-73.76512568709207,40.61331406540684],[-73.76515429479122,40.613085895213516],[-73.76511737250019,40.61248297248268],[-73.76497772485938,40.612331642578326],[-73.76510161341415,40.61219982475054],[-73.76505961745123,40.61203523061177],[-73.76450473059717,40.61182484116261],[-73.7632367879683,40.61168139449969],[-73.76256997907326,40.61141581405439],[-73.76229944090608,40.61135920554332],[-73.7617241378888,40.61184724275769],[-73.76023635756977,40.61082086495028],[-73.76076730398717,40.610184642970964],[-73.76087049521183,40.610198122359904],[-73.76178242960604,40.60915167005446],[-73.76155051905893,40.60903136580078],[-73.7599844704079,40.61087937784807],[-73.75949119833385,40.61081579591085],[-73.7597209907368,40.61015159764529],[-73.75959633285,40.61017227134676],[-73.75946158290351,40.61034088859385],[-73.75928012124663,40.610368638382575],[-73.75841702564533,40.610280801982135],[-73.75819491434194,40.61031362725502],[-73.75731666632703,40.61029105506969],[-73.75665225624542,40.61022679389346],[-73.7565506247877,40.61015521206893],[-73.75606303287742,40.61025685585743],[-73.75598031280505,40.61021320315426],[-73.75594949018543,40.61029241105267],[-73.75585531630263,40.610317659811784],[-73.75560837015594,40.610077919637384],[-73.75580892838552,40.61036528895022],[-73.75587412912144,40.610385185054774],[-73.75569925964341,40.61036568665726],[-73.75575727259817,40.61036067717329],[-73.75556369084156,40.61011842794627],[-73.7551836151839,40.610164642587655],[-73.75499501085578,40.610132208017504],[-73.75484796871199,40.61023168250327],[-73.75473219572572,40.61040524167841],[-73.75345836196819,40.61051986290872],[-73.7500877107679,40.61164055382715],[-73.74912000680246,40.61179432654369],[-73.74821585882674,40.61201107758946],[-73.74799307317254,40.61231015796779],[-73.74761418929187,40.61199801088484],[-73.74721567885007,40.61217883915326],[-73.74685539024546,40.611574099557025],[-73.7457615017887,40.611991654246125],[-73.74536751712373,40.61120355260289],[-73.74456658067477,40.610117452937466],[-73.74386981848707,40.608892484481096],[-73.74338029296958,40.608178680967924],[-73.74307247939574,40.607886096884094],[-73.74332493333742,40.607536870424774],[-73.74314655214754,40.607259865593235],[-73.74121366852233,40.60551892083217],[-73.74029138976144,40.60459823228099],[-73.73922512562878,40.604142367329445],[-73.73815143124821,40.60271043966418],[-73.73799702689156,40.60160123365686],[-73.73830871885416,40.59820837367949],[-73.73807514925791,40.597817625689],[-73.73808925308366,40.59768829709124],[-73.73838081202874,40.597624684333546],[-73.73852725571277,40.59739205956134],[-73.73864871908602,40.597344265996696],[-73.7386274447949,40.59728081138822],[-73.7385588463223,40.59726321481077],[-73.73848900466741,40.59735889424168],[-73.73871968142834,40.59694881732791],[-73.73857461618117,40.59724463057253],[-73.73862641254613,40.59726591462476],[-73.7387879752461,40.59697535513306],[-73.73907067090944,40.59716520706693],[-73.7393802367283,40.59723907289683],[-73.73962897165256,40.59721149558161],[-73.73992747214797,40.5970549495319],[-73.7400848065331,40.596885305783374],[-73.74011773586561,40.59672774713702],[-73.73999926597543,40.59654275120757],[-73.739798757236,40.596428603789164],[-73.74009714262671,40.596208647291704],[-73.74039153834977,40.59618219567315],[-73.74028393005834,40.596409979862415],[-73.74036012749528,40.596774995540095],[-73.7404411811632,40.59683798819095],[-73.74060240088787,40.59687001409184],[-73.7406438431082,40.59700119865827],[-73.74099733177512,40.59693279587381],[-73.74095619654621,40.596879774259214],[-73.74108315342876,40.596823066572284],[-73.74128604622994,40.59680601545534],[-73.74143535797025,40.596938023025935],[-73.74157380349945,40.59690394604341],[-73.74165872159381,40.59681107760328],[-73.74179629282533,40.59676792712821],[-73.74183083530315,40.596695551334804],[-73.74177502221407,40.596601673525186],[-73.7415123923505,40.59652861251592],[-73.74052059821263,40.596571855999436],[-73.74061526025181,40.59627245084989],[-73.74054701362398,40.59611968571793],[-73.74047930089625,40.596067764059065],[-73.74041452651394,40.59609226945313],[-73.74029022946957,40.596037754981836],[-73.73992793050932,40.59606158731481],[-73.73981229328993,40.59627456218195],[-73.73957904997502,40.59637633784869],[-73.73953153662612,40.59653523265957],[-73.73960988055155,40.59676343754029],[-73.73946370368996,40.596878420093525],[-73.739496609398,40.59702037076053],[-73.73988306007304,40.59677097418952],[-73.73973369321156,40.5965681986952],[-73.73965518790145,40.596585105571016],[-73.73974724088792,40.596542604836564],[-73.7399099469019,40.59677274452027],[-73.73979634095073,40.596882675126814],[-73.73950885867283,40.59704004409157],[-73.73939810824888,40.59704632565622],[-73.73892850726297,40.596875489466484],[-73.73944749108331,40.59702863204877],[-73.73943957124736,40.59689740230744],[-73.73933278706599,40.59691318387461],[-73.73912307710917,40.59678451979306],[-73.73894690694299,40.59676316592433],[-73.73884642113386,40.59682210147762],[-73.73858431403256,40.596860947776136],[-73.73844962514012,40.59698266692684],[-73.73826706179007,40.59735449038136],[-73.73812220875273,40.59738610213892],[-73.73803749190934,40.59591315133762],[-73.73763679379368,40.59441540017868],[-73.73780430355815,40.594528041493476],[-73.73817024543632,40.594539627776626],[-73.73842833243546,40.594469906053305],[-73.73848743971973,40.59435226298824],[-73.73853416622312,40.594438276341116],[-73.73877153146046,40.59452520702933],[-73.73877753580841,40.59435500821673],[-73.73881662582605,40.59435976395233],[-73.73878645044657,40.59452956556169],[-73.7390721241753,40.59459647653461],[-73.73927692202338,40.594545530447654],[-73.73929430628122,40.59445300556066],[-73.7393647247162,40.59452317171582],[-73.7395646533139,40.59456157857743],[-73.73958763363882,40.594426524607414],[-73.7395749318781,40.59456474305867],[-73.73961965156516,40.59458004187731],[-73.739695394656,40.59458939428622],[-73.7396812319055,40.594503558884035],[-73.73995801592363,40.59450076878705],[-73.73998678749325,40.59463285989963],[-73.74013580364576,40.594511572738874],[-73.74021122865054,40.594625163911125],[-73.74062831998191,40.594721652270586],[-73.74079275823904,40.59465024224715],[-73.7409017059638,40.5944882487506],[-73.74089520274937,40.594611579191884],[-73.74131820625325,40.59479259288113],[-73.74162091692338,40.59478649313517],[-73.74169766300282,40.59464174405277],[-73.74180151991484,40.59477199527087],[-73.74222603163004,40.59490588332574],[-73.74242926334576,40.59486851730387],[-73.74238742584876,40.59472925606014],[-73.74276043909049,40.59474431144354],[-73.74279563385528,40.594805220680556],[-73.74291424530843,40.59483215904352],[-73.74313202933757,40.594785792293614],[-73.74334951669152,40.59479514827773],[-73.74346867681761,40.594734584395404],[-73.74348442282238,40.59459051648798],[-73.74359145353874,40.59466457977076],[-73.74462499793184,40.594661774797856],[-73.74588742770479,40.5943904086359],[-73.7466291787912,40.59430149356066],[-73.74684302897123,40.59422329583719],[-73.74692440482542,40.594124428036],[-73.74741812989924,40.594048754615855],[-73.74793019640931,40.59377945370715],[-73.74809672764567,40.59363337393658],[-73.7489511624813,40.59341287562496],[-73.7502260479635,40.592710867784824],[-73.7507449237766,40.592337729735085],[-73.75132642808512,40.591613421969356],[-73.7515575648616,40.59141760263972],[-73.75188466108617,40.59129870154649],[-73.75306758707654,40.59111316649933],[-73.75354241944622,40.59094528724903],[-73.7539559463971,40.59090193968195],[-73.7545403217882,40.59093911024564],[-73.75528072638608,40.59086046307247],[-73.75595463623249,40.59087419754719],[-73.7564523134106,40.59102935150771],[-73.75789189861872,40.59135698827767],[-73.7593801075535,40.59150457645916],[-73.75994809255599,40.59161805117164],[-73.76134311678324,40.59172663385039],[-73.76295275572136,40.59161117743103],[-73.7637622338133,40.59143970953492]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN63",NTAName:"Woodside",Shape_Leng:27859.4604504,Shape_Area:28234395.8758},geometry:{type:"Polygon",coordinates:[[[-73.8986613780062,40.75992101787336],[-73.89941035118888,40.7588088395275],[-73.89967747524827,40.758296863879046],[-73.89986047525841,40.75733746251911],[-73.89976862080843,40.75666423736013],[-73.89923583713681,40.75553001745117],[-73.898971171146,40.754715305945304],[-73.89855813018525,40.75413709614833],[-73.89770744920237,40.75273485959267],[-73.89733942814927,40.75141956802873],[-73.89721143777562,40.75046637541072],[-73.89707650019884,40.75011887557886],[-73.8958303343557,40.748013640940094],[-73.89480782038106,40.74606246466116],[-73.89468658103016,40.74562432010928],[-73.89466630769073,40.74517684007097],[-73.8947456764904,40.74473983304571],[-73.89491209056368,40.74428123100169],[-73.89524819687342,40.743819729816],[-73.89557809294543,40.74350275420418],[-73.89920950764412,40.74054548052465],[-73.90057825392257,40.73949289589982],[-73.901743216204,40.73890039752103],[-73.90364752587223,40.73821736934774],[-73.90672950518606,40.73691348497788],[-73.90761906565108,40.73665029883512],[-73.90926003023544,40.73640318078666],[-73.9085550154221,40.737930424581904],[-73.90832327571795,40.73863053902392],[-73.90750569686406,40.74186224859535],[-73.91194129767386,40.742382949903764],[-73.91124722261358,40.74578399253432],[-73.91244853783236,40.745920402209535],[-73.91190979122955,40.74810539493509],[-73.91164202699211,40.74868457627957],[-73.91015860618914,40.74850196788327],[-73.90989961515164,40.74908727508311],[-73.90945184014238,40.75065545362638],[-73.90949707380156,40.75095058385017],[-73.9103549299247,40.752749908536124],[-73.91067474830963,40.75299507682688],[-73.91023124734723,40.75297652297076],[-73.90944851160427,40.75373135373753],[-73.90901259079544,40.754279814840615],[-73.9084654464799,40.75529168534025],[-73.90782817537799,40.75699926439623],[-73.9075342865693,40.75804521643679],[-73.9070578187741,40.75867814509595],[-73.90632326954609,40.759836820319634],[-73.9077940546165,40.760517799733115],[-73.90356915620245,40.76578178944317],[-73.90225241261254,40.76264382642741],[-73.90147053012262,40.75963305013116],[-73.8986613780062,40.75992101787336]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN70",NTAName:"Astoria",Shape_Leng:32521.6207839,Shape_Area:39331653.6514},geometry:{type:"Polygon",coordinates:[[[-73.9020251656558,40.76741678384719],[-73.90257835047407,40.766921865942905],[-73.9031587617152,40.766285600363645],[-73.9077940546165,40.760517799733115],[-73.90632326954609,40.759836820319634],[-73.9070578187741,40.75867814509595],[-73.9075342865693,40.75804521643679],[-73.90782817537799,40.75699926439623],[-73.9084654464799,40.75529168534025],[-73.90901259079544,40.754279814840615],[-73.90944851160427,40.75373135373753],[-73.91023124734723,40.75297652297076],[-73.91067474830963,40.75299507682688],[-73.9125695417918,40.753304214734975],[-73.91446450844816,40.75367641156904],[-73.91650534553833,40.753891590793884],[-73.91763192835663,40.75385784877921],[-73.91892348120153,40.75363612441158],[-73.92562743725455,40.752137244754955],[-73.92415700043726,40.75396114233172],[-73.93679091661967,40.759882881139255],[-73.93398092138001,40.76282598226015],[-73.93700478603876,40.76423995421693],[-73.93600532386843,40.76588489470605],[-73.9385897687332,40.76681735924904],[-73.93618379675478,40.7676918016622],[-73.93493511053623,40.767013024131266],[-73.93344468520229,40.768817789898776],[-73.92985647941732,40.76732655236074],[-73.92425288796417,40.76472456423411],[-73.9221894620329,40.7672673572131],[-73.91977764822657,40.76615218434559],[-73.91849336979978,40.76773465653341],[-73.9199559685847,40.76844006497454],[-73.91811686452763,40.7700284866905],[-73.9175912045887,40.76990087063197],[-73.90577352969937,40.76802858875871],[-73.90446527108453,40.76758377886934],[-73.90413637780108,40.76752031781234],[-73.90275780081615,40.767503546616865],[-73.9020251656558,40.76741678384719]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX39",NTAName:"Mott Haven-Port Morris",Shape_Leng:35601.3235545,Shape_Area:41903867.0519},geometry:{type:"MultiPolygon",coordinates:[[[[-73.89680883223772,40.795808445159786],[-73.89693872998791,40.79563587285356],[-73.89723603843939,40.79572003753708],[-73.89796839783742,40.79564483916199],[-73.89857332665557,40.79606914025958],[-73.89895261766395,40.796227852579044],[-73.89919434249981,40.796502456018196],[-73.8985205207147,40.796936194189776],[-73.89788253240184,40.79711653214702],[-73.89713149795641,40.7967980777283],[-73.89678526341311,40.796329165984524],[-73.89680883223772,40.795808445159786]]],[[[-73.89833036270556,40.802412820940006],[-73.89646668834571,40.80079047089131],[-73.89864038714995,40.799101164621334],[-73.89902455633363,40.79917219984053],[-73.9002100505928,40.79926415589654],[-73.89978738867131,40.79950955336996],[-73.89971563817444,40.80079880850276],[-73.9000373581574,40.80090874205018],[-73.89948919489882,40.80090111542754],[-73.89938748637188,40.80193566507084],[-73.89833036270556,40.802412820940006]]],[[[-73.92480953822897,40.815659020222654],[-73.9239995134318,40.81543891245006],[-73.92309299904515,40.816697728139005],[-73.92124519680905,40.81621939729781],[-73.9215839208475,40.81555063156339],[-73.9213038336665,40.81547724777691],[-73.92048117349654,40.814563686869796],[-73.91861739796045,40.81552313607106],[-73.91768626980301,40.81608124278633],[-73.91495493671812,40.81493646601085],[-73.91094778957398,40.81362092073729],[-73.90446551410588,40.812281959913086],[-73.90418036435749,40.81212482006474],[-73.90341720373648,40.811506882855625],[-73.90302967636887,40.80970212168705],[-73.9021918570049,40.80482326114791],[-73.9023195673461,40.804597984559116],[-73.90229231926706,40.804564775638525],[-73.90244539070895,40.80441695355137],[-73.90252298450758,40.80446378809854],[-73.9029277033109,40.804197291709094],[-73.90287760566825,40.80415758214612],[-73.90270973102618,40.80416366296461],[-73.90289540505172,40.80414388071018],[-73.90305966733787,40.804017434347806],[-73.9029731194502,40.80393677187098],[-73.90300283171153,40.80391735226745],[-73.90308609846477,40.80399708789682],[-73.90333865261658,40.80385541193324],[-73.90331727421177,40.80377528245513],[-73.90339901556949,40.8038749071397],[-73.90373284581685,40.80377329611777],[-73.90366539253372,40.80370246203193],[-73.90377177524542,40.80374999525845],[-73.90392732704383,40.803634390296466],[-73.90385084368992,40.80357428277844],[-73.90394842506741,40.80362130994785],[-73.90407055303477,40.803520977148175],[-73.90401680971797,40.80347097616883],[-73.90409774980084,40.80341659812554],[-73.90414898901011,40.80345565208473],[-73.90452954029595,40.803170235651315],[-73.90552153240696,40.80201995489852],[-73.90601427821801,40.80155293109587],[-73.9060633650224,40.80158339144958],[-73.90620386757753,40.801492992996664],[-73.90652042213172,40.80117551051974],[-73.90638976887551,40.801090791686335],[-73.9064517112552,40.80103691520166],[-73.90658587833882,40.80110747844594],[-73.90681401688889,40.800890639606166],[-73.90670130044873,40.800820029826276],[-73.90747030436829,40.80000345741227],[-73.90763052690518,40.79993168488227],[-73.90793663556691,40.799627729276125],[-73.90802032289528,40.79963609242171],[-73.90807397321795,40.79957281916773],[-73.90779307559542,40.79949348953795],[-73.90765852928602,40.799420097711426],[-73.90768222800895,40.79938831392527],[-73.90810210034307,40.79953964636028],[-73.90816794820408,40.799461986194245],[-73.90796076542277,40.7992834492684],[-73.90802633276782,40.79923787165956],[-73.90842190768007,40.79944209244493],[-73.90855026742396,40.79930742538948],[-73.90825579500336,40.79909286818056],[-73.90824133266204,40.799025103043796],[-73.9083030360836,40.798959134915485],[-73.9096390009356,40.79794222580126],[-73.9096745552532,40.79796191909],[-73.90979388517727,40.79786849523326],[-73.90984607769178,40.79790059833748],[-73.9099464421473,40.79783430590579],[-73.91013438705264,40.79758863462834],[-73.91071392139703,40.79719577567377],[-73.91089222265344,40.79701779503629],[-73.91162285866275,40.79664107849664],[-73.91372255973513,40.796789439261225],[-73.91904978697673,40.798993935686525],[-73.92024068092739,40.79961368786982],[-73.92044066980387,40.799804156490616],[-73.9207813385824,40.80027500944891],[-73.92132730712378,40.801284591630946],[-73.92203765903025,40.80187719757218],[-73.92292710065783,40.80237329464285],[-73.92358699045894,40.80251572532387],[-73.92422706775021,40.80254501135766],[-73.92665794788489,40.80240980391466],[-73.92762788658793,40.8026956659841],[-73.9273124842436,40.80321177048065],[-73.9274368990251,40.8032774416937],[-73.92728271943602,40.803508264417026],[-73.92764500352521,40.80398863334863],[-73.92836718794597,40.8040327091618],[-73.92848299256801,40.80419302957562],[-73.9287260748983,40.80410362522725],[-73.93005458890525,40.80590234732315],[-73.93053645059675,40.8064702774455],[-73.93051758839178,40.80659056356679],[-73.93116268129252,40.80712829627942],[-73.93226960845429,40.80833952748155],[-73.93252708785978,40.80882328177533],[-73.9326425718146,40.8093828645267],[-73.93259434467191,40.81005315832464],[-73.93286397083277,40.81012443738847],[-73.93287412001965,40.81041404342895],[-73.93269089766969,40.81058293257902],[-73.93267921899455,40.81079913518707],[-73.9325650330207,40.81088597518967],[-73.93263229255196,40.8119046222632],[-73.93242631935765,40.81411751895876],[-73.93222960529138,40.81409433302953],[-73.93027812663173,40.81324802515291],[-73.92921297888263,40.81438195787122],[-73.92919204509968,40.81449601178126],[-73.92896567468706,40.814828255045285],[-73.92885642052595,40.81487986647576],[-73.92821698889489,40.816535646712005],[-73.92731653066559,40.818559633822],[-73.92518486463501,40.818012669377495],[-73.92621972038785,40.81675865597437],[-73.92662718211774,40.816118959174275],[-73.92480953822897,40.815659020222654]]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX98",NTAName:"Rikers Island",Shape_Leng:18914.6267383,Shape_Area:18154387.7156},geometry:{type:"Polygon",coordinates:[[[-73.87287195903876,40.785975027804746],[-73.87308761688934,40.78585495278337],[-73.8735145252476,40.78575009169982],[-73.8753209464376,40.7858805320819],[-73.87677095783457,40.785811407898926],[-73.87756558383913,40.78563611297335],[-73.87830680057648,40.78535662050844],[-73.88537442211032,40.786669126798465],[-73.88577029372406,40.7866778671352],[-73.88596200181901,40.7867525194848],[-73.88612955538372,40.786707993754746],[-73.88692199786374,40.78673311425427],[-73.88715316484884,40.78682618202992],[-73.8872778341865,40.786806673751336],[-73.88770126306409,40.78687227457259],[-73.88830725666226,40.787006344283],[-73.88905212443278,40.7873725597555],[-73.88940460873206,40.78779128007515],[-73.88961097042936,40.788199991008206],[-73.89012684970767,40.78963627949047],[-73.89030135565142,40.78987672683274],[-73.89056971575056,40.790107636212866],[-73.89079999909832,40.79020757619849],[-73.89160587115451,40.79016070045058],[-73.89197448927072,40.7902362742416],[-73.89218182918813,40.79039426960834],[-73.89282283677065,40.79281708195204],[-73.89261805100364,40.79384099530818],[-73.89179289620446,40.79677524575802],[-73.89126861053282,40.79729759286176],[-73.89073139028332,40.79766089980652],[-73.89087421678997,40.79782974822633],[-73.89080346891839,40.79786274095017],[-73.89071401711374,40.797695287449024],[-73.89062148332756,40.79774892294659],[-73.89083042169474,40.79800740607706],[-73.89079505127148,40.79802183685044],[-73.89060785824256,40.79776750713773],[-73.89016916368715,40.79796465792995],[-73.89011894402746,40.79788745625065],[-73.8893651005021,40.79780809138586],[-73.88886162194008,40.797873056895895],[-73.88831097224377,40.79818418537017],[-73.88851389271132,40.798243155786245],[-73.88846064025121,40.798290858281014],[-73.88856204587567,40.79835340382444],[-73.88850873250026,40.79843783999448],[-73.88839282611427,40.79837528036587],[-73.88850364697181,40.79858844391535],[-73.88899654222757,40.79868075499038],[-73.88897709046196,40.798750530860154],[-73.88883691629125,40.798746721774066],[-73.88885148496418,40.79870632845617],[-73.88860021870042,40.79865098491352],[-73.8885856244128,40.79870607179384],[-73.88821348851363,40.79866530413597],[-73.88825230744402,40.79857718039829],[-73.88839250585997,40.798566296265406],[-73.88823353313649,40.7982428842859],[-73.88794420603779,40.798343336181134],[-73.88766940705628,40.79838105015444],[-73.88713264426248,40.798281101902475],[-73.88648571061233,40.79793482714906],[-73.88536002886444,40.79709249327733],[-73.8847036686671,40.796495032070226],[-73.88424498708427,40.796151012754315],[-73.88395093198149,40.79581988266066],[-73.8837574159016,40.79570856541979],[-73.8836235824952,40.795672455865315],[-73.88373136425898,40.79588233621297],[-73.8836551675666,40.79596723006511],[-73.88320394303744,40.79554499746223],[-73.88283375197726,40.795463937644215],[-73.8824118956389,40.79525094398282],[-73.88209633687468,40.795159861043],[-73.88159381157871,40.79506283837464],[-73.87975745821166,40.79488368367067],[-73.87874662234786,40.794639444237234],[-73.87801071682786,40.794374298980586],[-73.87583075485661,40.79315011728723],[-73.87522354103152,40.792550726651825],[-73.87485267905687,40.79226072390683],[-73.87417526889703,40.791892455652956],[-73.87361978246577,40.79177281770712],[-73.87303537491205,40.79152962702548],[-73.8722187903719,40.791036861767175],[-73.87171094798326,40.79062407591861],[-73.87121154209629,40.79003612173787],[-73.87101839580245,40.78939257797728],[-73.87094904759115,40.78860680521252],[-73.87078728233907,40.78796249278299],[-73.87107316744445,40.78757484075273],[-73.8713739875909,40.7872709148274],[-73.87163065373362,40.786797905843066],[-73.87210572329181,40.78646881713686],[-73.87247298679296,40.78630300728305],[-73.87287195903876,40.785975027804746]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI99",NTAName:"park-cemetery-etc-Staten Island",Shape_Leng:46154.9717078,Shape_Area:24033106.7475},geometry:{type:"MultiPolygon",coordinates:[[[[-74.11813477632803,40.550592693150485],[-74.1165629005628,40.5491277417249],[-74.1149420292086,40.54958864961216],[-74.11395149921974,40.54872532279992],[-74.11338340616277,40.54807337515068],[-74.11374841507796,40.54801875755073],[-74.11387354532667,40.54809147694599],[-74.11473781165269,40.547996610676556],[-74.1149717566118,40.54789475160998],[-74.11526784224424,40.54757100023471],[-74.11546177821137,40.54751536224599],[-74.11561408855275,40.54754356997025],[-74.11580699962244,40.54773887042556],[-74.11608004740752,40.54786494678574],[-74.11631185699736,40.54789874789596],[-74.11654532111098,40.547872393147244],[-74.11729988945713,40.547464026184],[-74.11765982832111,40.54735576751868],[-74.11804133083712,40.54730661289456],[-74.11863273548573,40.54678489397633],[-74.11934442046184,40.54585017514453],[-74.119778100698,40.54547045654928],[-74.12004952672447,40.545357944967165],[-74.12046386213504,40.54527263092708],[-74.12105701944122,40.54528637135865],[-74.12158070312732,40.54520860380592],[-74.1220564692203,40.5450244378235],[-74.1224530605039,40.5447705456298],[-74.12424449712778,40.54311038091073],[-74.12638185131074,40.5405207554592],[-74.12762434140176,40.53871795355963],[-74.1307118427267,40.53453507543618],[-74.13356443498039,40.53151117480557],[-74.13618848993349,40.52962079668722],[-74.13690799076248,40.52928191838002],[-74.13728504251763,40.52974046748222],[-74.13743797279722,40.52967586404652],[-74.13814635487718,40.529677758474584],[-74.13845627623157,40.52973569651578],[-74.13883030730551,40.52988935670605],[-74.13901785984704,40.53027092392101],[-74.1390022872743,40.53092216481677],[-74.1391507601378,40.531520111621795],[-74.14027015269487,40.53330001669326],[-74.1406109270312,40.53413060019013],[-74.14058607193473,40.53469993684129],[-74.14046219164314,40.535073873271934],[-74.14032475438938,40.53528457968339],[-74.14019708784532,40.53540787474112],[-74.13995163555677,40.535457088526826],[-74.13906788404886,40.5352880748391],[-74.13822429164946,40.535208267284595],[-74.13507509391575,40.53524117062222],[-74.13425629543751,40.53543922820126],[-74.13381005155647,40.53564293933936],[-74.13340691483275,40.53589811492249],[-74.1330261157119,40.53624033644843],[-74.13338312853053,40.53632442032903],[-74.13336905396233,40.536356194722764],[-74.13301207602925,40.536256065043595],[-74.1329712040365,40.53629468857742],[-74.13316120141164,40.536374002700995],[-74.13309062611813,40.536352730956935],[-74.13307585768663,40.5363974880395],[-74.13294266453622,40.536322033081916],[-74.13119545755265,40.53787240877379],[-74.13128337090333,40.537933490833595],[-74.13152564883086,40.537718542135735],[-74.13129269865557,40.53795670136743],[-74.13181387201773,40.538307358685685],[-74.1321124449556,40.53805229667767],[-74.13176571749537,40.53781744629255],[-74.13169767667848,40.53785712281231],[-74.13184627213376,40.53773464329614],[-74.13178520796501,40.53780229074827],[-74.13213560512357,40.538033126680105],[-74.132424385791,40.53777496023157],[-74.13199817051189,40.53748098443859],[-74.13191182124632,40.53753284097694],[-74.13207952279562,40.53739503363776],[-74.13201821110376,40.53746460223533],[-74.13245302764066,40.53776028086136],[-74.13275480490114,40.53750453647991],[-74.13232205524746,40.53720522204016],[-74.13223596269245,40.53726255073657],[-74.13239801649948,40.537118863926686],[-74.13233769641785,40.537188120784975],[-74.13277603711704,40.537484010915854],[-74.13307445571553,40.53722912330401],[-74.13264694004067,40.53693703830798],[-74.13255786204948,40.53699140775655],[-74.13273560233306,40.53685453524316],[-74.13266726879459,40.53692018908565],[-74.1330945751137,40.53721201692255],[-74.13339187377343,40.53695798434754],[-74.13295577183413,40.536661238721855],[-74.13287438281004,40.53671963230233],[-74.13303508839532,40.53657487562587],[-74.13297252934726,40.53664328201708],[-74.13341004365367,40.536939721870915],[-74.13380823263034,40.53656217567603],[-74.13386054206158,40.53659796199045],[-74.12996934202985,40.53996776911149],[-74.12993843189786,40.5399471355582],[-74.13020869361586,40.53970266381723],[-74.12976405619072,40.539415222949515],[-74.12968375508696,40.53947171959243],[-74.12984555503498,40.53932685696155],[-74.12978384857314,40.53939867623577],[-74.13022754363632,40.53968371705292],[-74.13052164348923,40.53942555811886],[-74.1300844001854,40.539117926373684],[-74.13000272880831,40.539172393657736],[-74.1301693573259,40.5390328780241],[-74.13010505586584,40.53910173596788],[-74.13054176521163,40.53940930625566],[-74.13083906851796,40.53914759238986],[-74.1304074352643,40.538847415764174],[-74.130322448993,40.53890047124445],[-74.1304852829474,40.53875891625598],[-74.13042531514317,40.53883031223004],[-74.13085918854102,40.53913133980231],[-74.13115328715267,40.53887357410362],[-74.13071925808853,40.538581361914886],[-74.13065428107708,40.53861731113223],[-74.13079971962169,40.53849249031334],[-74.13073782525129,40.53856443278572],[-74.13117437050751,40.53885516039263],[-74.1314742421523,40.53859831438013],[-74.13103945434777,40.53830497896405],[-74.1309750911599,40.53834174990208],[-74.13111962282588,40.538218892325155],[-74.13105906666097,40.538288981062855],[-74.1314974013826,40.53858138037219],[-74.1317935081556,40.5383259914891],[-74.13116466378557,40.53790013586832],[-74.12881604599961,40.53998574239652],[-74.1287873750151,40.539963080413884],[-74.12844667303693,40.54024921569725],[-74.1279872852722,40.54071097748309],[-74.12770937968968,40.54114913557434],[-74.12746105528292,40.54174455621885],[-74.12738789627497,40.542295429677694],[-74.1274432180552,40.542736877976445],[-74.12767003229703,40.54338134577103],[-74.12773143427259,40.543423084301054],[-74.12789824961541,40.54336617156211],[-74.12788626375576,40.54330807707474],[-74.12792830507618,40.5433732470559],[-74.12756660696961,40.543499333935124],[-74.12762994103964,40.54360889311481],[-74.1279896839074,40.543484343631064],[-74.128030684975,40.543550558278895],[-74.12798005253305,40.54350903021873],[-74.12781893446555,40.54356439964454],[-74.12838196103087,40.54434484831852],[-74.12944814528849,40.54548399600749],[-74.13011404780964,40.545975725629745],[-74.13072654090811,40.546255189793335],[-74.13155026188866,40.54652452883831],[-74.13308664366708,40.546834295045585],[-74.13364262222407,40.54685496293708],[-74.1343550335157,40.54678893430679],[-74.13520277845132,40.54662827456196],[-74.13585712566037,40.54645169570962],[-74.13700629754594,40.546967771005534],[-74.13744805322531,40.54730532896806],[-74.13861798547457,40.54849238427013],[-74.1376973159297,40.54938354642941],[-74.13607343371179,40.55043330027401],[-74.13455868225847,40.55125507820348],[-74.13177828118643,40.55348997051129],[-74.13042459572925,40.55443704205842],[-74.12730057821922,40.55729517244772],[-74.12402047127598,40.55523082777768],[-74.11945859291163,40.55222190604452],[-74.11850278372162,40.55141638768695],[-74.11876291986579,40.551216114405335],[-74.11813477632803,40.550592693150485]]],[[[-74.05050806403246,40.5664220341608],[-74.04998352496669,40.56639592492854],[-74.04931640362086,40.56588774778043],[-74.04923629842044,40.565362736368094],[-74.05002620158642,40.56531818062113],[-74.05074409977213,40.56588712593502],[-74.05073571037052,40.566032774595776],[-74.05090601639147,40.56609434162829],[-74.05088200371617,40.5661782900041],[-74.05070831606588,40.56619410555585],[-74.0506791668267,40.566310845234085],[-74.05103884196255,40.566618896878786],[-74.05107159803775,40.56672249339779],[-74.05091664821099,40.566695575165326],[-74.05050806403246,40.5664220341608]]],[[[-74.05314036821026,40.57770271454056],[-74.05406044939873,40.577116445238865],[-74.05489778210801,40.577782440919805],[-74.05469316973361,40.57969163172652],[-74.0548513455943,40.57970759257533],[-74.05484560052173,40.5799457914276],[-74.05368629150418,40.5805487596144],[-74.05293190639816,40.579902474665836],[-74.05314036821026,40.57770271454056]]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK60",NTAName:"Prospect Lefferts Gardens-Wingate",Shape_Leng:29563.5319581,Shape_Area:31639844.9199},geometry:{type:"Polygon",coordinates:[[[-73.93068465493032,40.66362047727534],[-73.92646424218866,40.65981436177378],[-73.92725505391624,40.65933756357772],[-73.92819257918781,40.660177173537924],[-73.92834017576637,40.660060036443674],[-73.92799465117675,40.65680210148145],[-73.95006664861295,40.65542299720028],[-73.94957113083304,40.65080789987119],[-73.95870789822969,40.65038727378257],[-73.95932926470222,40.652928178711704],[-73.9598610304714,40.65563478893648],[-73.96188086439827,40.654881191549634],[-73.96306906223856,40.66220785994013],[-73.96291595569674,40.66257727250836],[-73.96242894159052,40.663125207981075],[-73.96193896110734,40.66322359927983],[-73.96061544798397,40.663302750168135],[-73.96033682872293,40.66410869834836],[-73.95729172603521,40.664302632819414],[-73.95720935391155,40.66351739728013],[-73.945462936545,40.66422610413657],[-73.94269628894098,40.664055129235244],[-73.9428289224684,40.66284748566927],[-73.93068465493032,40.66362047727534]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK31",NTAName:"Bay Ridge",Shape_Leng:44373.9002839,Shape_Area:67120712.3405},geometry:{type:"Polygon",coordinates:[[[-74.03266558997932,40.643720344780036],[-74.02905539842813,40.64172534305729],[-74.02890829878068,40.641173410835975],[-74.02703439376477,40.640349986267],[-74.02626267340166,40.640094381840456],[-74.02695244733718,40.63944606454214],[-74.02475437604834,40.638121418091615],[-74.02392610712153,40.638898858183495],[-74.02354939088754,40.63932033369241],[-74.02340085362947,40.63968573184851],[-74.02321780213283,40.639901514603565],[-74.02246253869197,40.64053889908081],[-74.0217267600026,40.64100494154004],[-74.0210805132591,40.64149093663086],[-74.02159214518196,40.640569209030325],[-74.02176040850908,40.639824346198495],[-74.02170098661917,40.639265460226774],[-74.02141038300266,40.63858490267279],[-74.02084657571848,40.63798335120003],[-74.02032883796952,40.63757296928749],[-74.01755212626337,40.63588725076572],[-74.01683540051621,40.63535542857486],[-74.01646523008979,40.63494240707719],[-74.01614231507423,40.63436015883844],[-74.01602896363573,40.633944431491905],[-74.01602010138629,40.63331711366199],[-74.01560204969233,40.633516977941504],[-74.01514630680121,40.63322193848727],[-74.0187518073421,40.6243175113759],[-74.0197049155713,40.62218496500806],[-74.02008667202567,40.6224209531646],[-74.0228759867753,40.61946614790893],[-74.02525327174868,40.616678457892014],[-74.02574988994118,40.61605822319561],[-74.02624732375942,40.61510478138761],[-74.02754297194576,40.612937183204146],[-74.02653228216728,40.61242537076809],[-74.02637609057152,40.612450603402046],[-74.02710660490857,40.61024395632428],[-74.02478376263241,40.6096996290043],[-74.02457855492975,40.610223301974806],[-74.02459441688843,40.60999204141758],[-74.0245319598248,40.6097595959098],[-74.02430437611245,40.60945696914182],[-74.02150602890865,40.607822098832884],[-74.02247769491427,40.60667421564756],[-74.02078540907317,40.60567368551233],[-74.02122508359139,40.60473806226646],[-74.02139467231528,40.60449399877182],[-74.02129949141421,40.60442832294206],[-74.01869135708252,40.603607923939414],[-74.0194276082381,40.60287157834806],[-74.01974772844801,40.603084809263855],[-74.02024692218588,40.603324317781755],[-74.02101662949676,40.603555553060026],[-74.02930882796784,40.60459906355943],[-74.03005146613626,40.604759173811786],[-74.03101612271284,40.60525141411518],[-74.03179633860384,40.60578027459573],[-74.03213159551291,40.60590183576165],[-74.03270681479884,40.60633106603806],[-74.0342728053945,40.60771747823031],[-74.03464894473262,40.60832693722727],[-74.03495830829802,40.60865948908753],[-74.0353037125524,40.608888235224036],[-74.03568233666623,40.609028539498475],[-74.03603977777915,40.60929563900185],[-74.03630931107641,40.60980338916182],[-74.03656161849563,40.61059084954284],[-74.03681542658776,40.61103772125354],[-74.03726510655687,40.61158876140455],[-74.03920557647395,40.61343951273367],[-74.03982365155699,40.61432738866357],[-74.040234273444,40.61502825664905],[-74.04047612021455,40.61562526265889],[-74.04072760517789,40.61705041589272],[-74.04137522825633,40.61999355296547],[-74.04161740773569,40.620562714043125],[-74.04157984042503,40.62127583441747],[-74.04174932346254,40.62245699566946],[-74.04169490179855,40.622802456228335],[-74.04171015812469,40.623305320611784],[-74.04185927579935,40.623805080988774],[-74.04188849255725,40.62440931296724],[-74.04168321534902,40.625383542174546],[-74.04142918710248,40.628070665156926],[-74.04127701609359,40.62902206057004],[-74.04109062117574,40.62972570042863],[-74.04106320467754,40.63019033719121],[-74.04094129387711,40.630454553263334],[-74.04074668999424,40.63069215597966],[-74.039293886904,40.63388635429641],[-74.03680662048852,40.638984221545485],[-74.03876297920756,40.63958825898051],[-74.03868804690734,40.639738256029574],[-74.03672484374883,40.63914119020668],[-74.03620061021041,40.64001129622194],[-74.03571276150703,40.64064015354389],[-74.03597990789541,40.640940050544465],[-74.03634712296503,40.64114331106438],[-74.03673442685158,40.641458421718845],[-74.03677699248189,40.64154403409709],[-74.03674294078243,40.641631829252155],[-74.03445193115382,40.643826786682496],[-74.03453829739405,40.643876381510026],[-74.03407329294261,40.6443139329639],[-74.03284291947881,40.64356371035077],[-74.03266558997932,40.643720344780036]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK32",NTAName:"Sunset Park West",Shape_Leng:84588.0349139,Shape_Area:50068729.7375},geometry:{type:"Polygon",coordinates:[[[-73.9872506884457,40.66037895632415],[-73.99018841435033,40.657600818328554],[-73.9923833948346,40.65889901642443],[-73.99296401975985,40.6583374099625],[-73.99516890066158,40.65966952204401],[-74.01616711475116,40.63948244156936],[-74.01396088612057,40.638153267419426],[-74.01683540051621,40.63535542857486],[-74.01755212626337,40.63588725076572],[-74.02032883796952,40.63757296928749],[-74.02084657571848,40.63798335120003],[-74.02141038300266,40.63858490267279],[-74.02170098661917,40.639265460226774],[-74.02176040850908,40.639824346198495],[-74.02159214518196,40.640569209030325],[-74.0210805132591,40.64149093663086],[-74.0217267600026,40.64100494154004],[-74.02246253869197,40.64053889908081],[-74.02321780213283,40.639901514603565],[-74.02340085362947,40.63968573184851],[-74.02354939088754,40.63932033369241],[-74.02392610712153,40.638898858183495],[-74.02475437604834,40.638121418091615],[-74.02695244733718,40.63944606454214],[-74.02626267340166,40.640094381840456],[-74.02703439376477,40.640349986267],[-74.02890829878068,40.641173410835975],[-74.02905539842813,40.64172534305729],[-74.03266558997932,40.643720344780036],[-74.03262055640155,40.64376540175666],[-74.03231070664172,40.6435745856124],[-74.03223524436778,40.643643370155345],[-74.03254173861602,40.643825483849135],[-74.03226870865822,40.64407437929255],[-74.03197857157306,40.643893380255875],[-74.03189708560319,40.643889349369566],[-74.03051830863372,40.64527442420384],[-74.02908090951757,40.644403596930175],[-74.02899762534749,40.644471961492734],[-74.02915418994529,40.644581445419526],[-74.02886241127038,40.644866023723],[-74.02882159751958,40.64484212565185],[-74.0290865428924,40.644583001799596],[-74.02850116184624,40.64417756470279],[-74.02823134375645,40.64443822883758],[-74.02819053049322,40.64441433020627],[-74.02845721095781,40.64415605924816],[-74.02820569545005,40.644015982890274],[-74.0260494840032,40.64626135032615],[-74.02974078277059,40.64848602621022],[-74.0293899048662,40.648804055113864],[-74.02571758804812,40.64661549229093],[-74.02552081269252,40.64675513814707],[-74.02516202606726,40.64713874849413],[-74.02483957406787,40.64694442476538],[-74.0246148710311,40.647151125118775],[-74.02629688858218,40.648168926521],[-74.02622102475578,40.64824842780921],[-74.02488305491133,40.64741052302421],[-74.0246839045089,40.64760566521803],[-74.0243549693672,40.64739927815345],[-74.02414566050568,40.64761510125983],[-74.02512911955239,40.648323181457236],[-74.02496792117118,40.64860596176491],[-74.02553864578043,40.64978215934803],[-74.02484436363443,40.65059963805697],[-74.02520581253562,40.65081846789918],[-74.02541553929461,40.650618697082486],[-74.02605133196798,40.6509943007431],[-74.02587113764652,40.651160535797345],[-74.02592807625277,40.65119665312026],[-74.0257763316196,40.65133397795858],[-74.02569093854527,40.65131954591188],[-74.02552971543655,40.65147855069281],[-74.02491122849,40.65110628478811],[-74.02510257190238,40.65089330557686],[-74.02477160495674,40.650687707435374],[-74.02452328121382,40.650937553472566],[-74.02448801108874,40.65091837716111],[-74.02424021347528,40.65113351631336],[-74.02550139111732,40.65183985103403],[-74.02541604028592,40.651933806855055],[-74.02417752973396,40.65119177321215],[-74.02382347395064,40.65135378491312],[-74.02365443141966,40.65125618183628],[-74.0235940029519,40.65131566325372],[-74.02305991047031,40.65097430413475],[-74.02285141795981,40.65116919516172],[-74.02536890216508,40.652721436927095],[-74.02522662972642,40.65282985645704],[-74.02272372795781,40.651297322768734],[-74.02262162002121,40.651311558673264],[-74.02154138319226,40.65067162291121],[-74.02134461287902,40.650851861184755],[-74.0212465237341,40.65083497256429],[-74.02139188210673,40.65096775798833],[-74.0213595992164,40.650997278610866],[-74.02124332372404,40.65092597432831],[-74.0211852143458,40.650977634170516],[-74.02112707783827,40.65094321211543],[-74.02105230392199,40.65109828242513],[-74.02233734666834,40.651910605381595],[-74.0222517319971,40.651981601506776],[-74.02098261225862,40.65115682265769],[-74.02089862870834,40.651247275218275],[-74.02380703903108,40.65304472800889],[-74.02359434497556,40.65321636896174],[-74.02353430231582,40.653096426047135],[-74.02333174716821,40.65294224018314],[-74.0229417228345,40.6528794845082],[-74.02285167504515,40.652742411591476],[-74.02195900090581,40.65222278146815],[-74.02162153367617,40.6523199512905],[-74.02123165456229,40.652697024715735],[-74.0211867002789,40.652839836895325],[-74.02320464727123,40.65409611631526],[-74.02306219155221,40.654233236291795],[-74.0221019516245,40.65358795380762],[-74.02187693558206,40.65354801237162],[-74.02162946295482,40.653645164713446],[-74.0212845599841,40.653965108546416],[-74.02123961135376,40.65413076888799],[-74.02114963484495,40.65421075521156],[-74.02182479745484,40.654656175282796],[-74.0216448641536,40.65487898237728],[-74.02089469731605,40.654433575413634],[-74.02063969224982,40.65443933332936],[-74.02060214479557,40.65429082432435],[-74.02047461886175,40.654216589227005],[-74.01961958177249,40.65416532905227],[-74.01941702844242,40.65399971256703],[-74.01919203025406,40.65402259799151],[-74.01924450820472,40.65394261947832],[-74.01917699030467,40.65388550950889],[-74.01896698068849,40.65386840770707],[-74.01872686588683,40.65347431052439],[-74.01862238374554,40.653491349022836],[-74.01811897876472,40.653885271105246],[-74.02025588986935,40.65511826288124],[-74.02005182454282,40.65533594837188],[-74.01787407223817,40.65406150233081],[-74.01715319581027,40.65477510436208],[-74.01746633453725,40.654926800393504],[-74.01741891331389,40.654991840676956],[-74.01980081651998,40.656487210584636],[-74.01970596344239,40.65658116375111],[-74.01726715936587,40.655194187986474],[-74.01691617917064,40.65548327495764],[-74.01665048025754,40.65533879657206],[-74.01639437533764,40.655620642348154],[-74.01910843803122,40.657368884303445],[-74.01860569460997,40.65784587402284],[-74.01585370122795,40.65621323955013],[-74.01543632335643,40.65663239675956],[-74.01774232727493,40.658098916724924],[-74.0176664440952,40.658185638771485],[-74.01786573109679,40.658308447298516],[-74.01768549175469,40.6584529927612],[-74.01748620500715,40.65833740924315],[-74.01750516476575,40.658272374297496],[-74.01504738221855,40.656950386693396],[-74.01442130484553,40.65760802195137],[-74.01745803087903,40.6594501973867],[-74.01554165388995,40.66075835497351],[-74.01400428392415,40.6598119634401],[-74.01366273926608,40.660028780636914],[-74.01183862056551,40.6589128372747],[-74.01110750476306,40.65970627458055],[-74.01402247744021,40.66152974743998],[-74.01315554938816,40.66198159772593],[-74.01265358811494,40.66198165403756],[-74.01023484497786,40.66046118655097],[-74.00859956968289,40.659520923098235],[-74.00745858163896,40.66055847620989],[-74.01037201363212,40.6623988792273],[-74.01046331724486,40.66264211928746],[-74.00955074208035,40.663267694130305],[-74.00868371591301,40.66337201284021],[-74.00616141136321,40.66184506899047],[-74.0056859482289,40.66227474036046],[-74.00428358316123,40.66144489410125],[-74.00414624826216,40.6615616356813],[-74.00562039736654,40.6624939263467],[-74.0057848663662,40.662582528449285],[-74.00585795416244,40.66257489686518],[-74.00622698247925,40.66278782786094],[-74.00592360503033,40.66310825073906],[-74.00380815470885,40.661907945728146],[-74.00348801100648,40.66224055612849],[-74.00455498488714,40.662816372912694],[-74.00460574371596,40.662718884669154],[-74.00454367850809,40.66268014611801],[-74.00473298121777,40.66249650399665],[-74.00535812864251,40.66286912973171],[-74.00515599719316,40.6630474135587],[-74.00506160882843,40.66299204120209],[-74.00497157758612,40.66306821324206],[-74.00519233841086,40.66320155309655],[-74.00524863034875,40.663105620491386],[-74.00518629798093,40.66306960144785],[-74.00538014413921,40.66288392645278],[-74.00599748748692,40.66325861082848],[-74.00579501836195,40.66343615129344],[-74.00569963747786,40.66337678866091],[-74.00561348681748,40.66345839025473],[-74.00772133506703,40.66471863301977],[-74.0076387753481,40.66479598033104],[-74.00730516192836,40.664597590752535],[-74.00725283625047,40.66469032364302],[-74.00731878365984,40.66472986075769],[-74.0071253264674,40.66491521847427],[-74.00652469666112,40.66454722665773],[-74.00670685940636,40.6643629898567],[-74.00679912430277,40.66441830653355],[-74.00688215307305,40.664340372942924],[-74.0066293785957,40.66418793012443],[-74.00653579559383,40.6642574036362],[-74.00664155700737,40.664320210853504],[-74.00644979980788,40.66450620629646],[-74.00584157632485,40.66413802067456],[-74.00602870773491,40.66395913653515],[-74.00611934710184,40.66401056669319],[-74.00620306585375,40.66393016821048],[-74.0060460851898,40.66384000563552],[-74.00599262641796,40.663890763213885],[-74.00592138703395,40.663849598073305],[-74.00575781045487,40.66392275680162],[-74.00574809232238,40.66401194231732],[-74.00582327521114,40.664054563853185],[-74.00575753791415,40.66411439291195],[-74.00589272459429,40.6641903181232],[-74.00574908832141,40.66432650988956],[-74.005744630336,40.664417638964835],[-74.00584924770611,40.66450329861966],[-74.00564140754474,40.66453149089061],[-74.00565025959585,40.66390033784372],[-74.00362862508564,40.662734847031956],[-74.00340348595631,40.66298572659824],[-74.00459238636753,40.663735199832836],[-74.00432294963377,40.664052319975234],[-74.00528132177342,40.664657003523956],[-74.00486193792659,40.66506482193817],[-74.00113519443659,40.66290172304993],[-74.0009442433161,40.6630763919839],[-74.00083401108442,40.66300644168654],[-74.00003024177393,40.66382136938719],[-74.00009913733103,40.663856345506225],[-73.99953152609918,40.66439748543432],[-74.00292463516385,40.666462311660794],[-74.0022403105738,40.666793835145164],[-74.00161950021092,40.66676627917445],[-74.00120611414313,40.667018107202786],[-74.00146470932708,40.66716956870755],[-74.00068774868765,40.66754595189877],[-73.99998149339123,40.667450274406065],[-73.9990260099839,40.66844297212696],[-73.99905372182695,40.668851799213286],[-73.99894520195367,40.66897377448506],[-73.99902633264175,40.66900788840067],[-73.99917988386558,40.66829663988752],[-73.99924049105034,40.66830628655997],[-73.99907935327975,40.66903827186157],[-73.99865580757618,40.66951479504532],[-73.9989116016789,40.66964857863952],[-73.99891684904766,40.66980456321774],[-73.99855824468392,40.671335501669915],[-73.99876941058922,40.67160204710506],[-73.99861887970067,40.67183017256472],[-73.99667191671686,40.66873916801662],[-73.9964814270144,40.66892523573976],[-73.99585129212464,40.66797249600197],[-73.99507117648324,40.66707573169508],[-73.9949035013398,40.666785434513706],[-73.99502872563237,40.66651528579297],[-73.99530800378002,40.666157999468],[-73.99575957360109,40.66578388890486],[-73.99595866270725,40.665704549474086],[-73.9958102528014,40.66553098906085],[-73.99692689946772,40.66437491500545],[-73.99063765228712,40.66057741376787],[-73.98871651059684,40.662404938359266],[-73.9872506884457,40.66037895632415]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN10",NTAName:"Breezy Point-Belle Harbor-Rockaway Park-Broad Channel",Shape_Leng:113973.26118,Shape_Area:99715303.6079},geometry:{type:"MultiPolygon",coordinates:[[[[-73.88346534749658,40.56847801993844],[-73.88336927316286,40.56833185924829],[-73.88313094840228,40.568380626014736],[-73.88275680246294,40.567569861119075],[-73.88317351565858,40.56749160733894],[-73.90230596009383,40.562128209603415],[-73.90156725983896,40.559416058419664],[-73.90123356900084,40.558037922142965],[-73.90125035621423,40.557911583526234],[-73.90093308545309,40.55785621926435],[-73.90065778173289,40.55660664399152],[-73.9011135166433,40.556741561524916],[-73.90159756897373,40.55678466982759],[-73.90234210203988,40.556775065789864],[-73.90301829473275,40.55670174318832],[-73.90481161312604,40.556261854603655],[-73.90723835024318,40.55549011324118],[-73.90879730557717,40.55482950838892],[-73.9162568481331,40.55197106561612],[-73.91780653110628,40.55127929509523],[-73.91866643765117,40.551003837576914],[-73.91948122343736,40.55062481534743],[-73.92641909462697,40.54815578032036],[-73.92774080155944,40.54762805297532],[-73.92887232480248,40.54709387420347],[-73.9305468224336,40.54642197912875],[-73.9340828778999,40.54516466249455],[-73.93511608589176,40.544862257944075],[-73.93612022039845,40.54450741593559],[-73.93709071418735,40.54410175061401],[-73.93889945942566,40.54322801357227],[-73.93966726367951,40.54299179524403],[-73.94047403857304,40.54285007214917],[-73.94055905861703,40.541846776959794],[-73.94073681731305,40.54182008715553],[-73.94012975729916,40.548002561293096],[-73.94012809000672,40.549516288510084],[-73.94064621697875,40.55195530814359],[-73.94065273243868,40.55249781740653],[-73.94053019693672,40.55321479517179],[-73.94034155954245,40.55373789962173],[-73.94007285856678,40.55424022994672],[-73.93972789072299,40.554714685000874],[-73.93931153116006,40.55515455754889],[-73.93882966461187,40.555553629112126],[-73.93803483984486,40.55607899746081],[-73.93665081196943,40.55681617433834],[-73.93570612559043,40.55722454585567],[-73.93535359795736,40.55732163345529],[-73.93501919089327,40.55735354845308],[-73.93411654197067,40.55730309490699],[-73.93357972187393,40.55732982930591],[-73.93288159161322,40.55745388564776],[-73.93222589320598,40.55767481295008],[-73.93177580884337,40.557899562384854],[-73.9287848892434,40.55992550746974],[-73.92788524367893,40.56038366637398],[-73.92615723275419,40.56155260972307],[-73.92586523703922,40.56165174032018],[-73.9252989686968,40.56180715552249],[-73.92421461236678,40.56200131882439],[-73.92329484208311,40.56209058045156],[-73.92107822881383,40.562079852884835],[-73.92036810280452,40.562218832467586],[-73.92020148738958,40.56253196050983],[-73.92025963107159,40.56261229255544],[-73.92011735879366,40.562639526347105],[-73.92009840148407,40.562571180609986],[-73.92017573954705,40.5625225470456],[-73.92033120142729,40.562226054383935],[-73.91909761878114,40.56247016120786],[-73.91766081900086,40.56282614968643],[-73.91680098049565,40.563185496799875],[-73.91519131170266,40.564090666207704],[-73.91455336961286,40.564353432433784],[-73.91386749626399,40.564608096141825],[-73.91313180128004,40.564638243946],[-73.91220200769321,40.56505456984992],[-73.91215942953983,40.56497148274081],[-73.91188319663003,40.56499040523865],[-73.91192692070472,40.565112328068274],[-73.91195464366186,40.56581132267281],[-73.91214509452941,40.565779008938826],[-73.91216181893266,40.56583625156805],[-73.9117361534007,40.56587265348567],[-73.9117351104733,40.56581371621991],[-73.91192551909782,40.56581386237718],[-73.91185809029395,40.564995438003244],[-73.91148922796503,40.565114763239265],[-73.91107382373347,40.56505300872039],[-73.91079817683068,40.565110995831496],[-73.91079826749547,40.56504309659052],[-73.91033193473918,40.56501687024819],[-73.91031901473904,40.56496564698158],[-73.91017496420704,40.56492272352944],[-73.91010084615068,40.5649562016529],[-73.91009922829896,40.56482442599315],[-73.91003762971687,40.56479371060244],[-73.90977170677786,40.56530540530803],[-73.90971684925958,40.56528742546117],[-73.9100230764213,40.56478020953841],[-73.90987653834941,40.56442096895197],[-73.90976258436974,40.56428483692808],[-73.90927708214956,40.56399712415352],[-73.90872545136824,40.56393129153755],[-73.90809044695234,40.56402656413229],[-73.90799528456947,40.56416473687549],[-73.90794821486651,40.56415832398434],[-73.90791411765916,40.56406893676837],[-73.90801597565586,40.56379647377844],[-73.90797551796082,40.56355572211306],[-73.90748073941703,40.5631365579073],[-73.90683894643014,40.56285635926221],[-73.90626255510338,40.56275167664888],[-73.90549533617256,40.56276575778525],[-73.9042237487653,40.56299515867548],[-73.90366773532534,40.56316093955548],[-73.90290669761428,40.563478511446256],[-73.9028359565573,40.5634516953696],[-73.90264896767013,40.563200283192025],[-73.90244787425726,40.56306032188472],[-73.90211869506204,40.5629451505716],[-73.9017575815723,40.562924106930765],[-73.90096031791612,40.56307138984662],[-73.90006663126381,40.56338268738668],[-73.89905579734298,40.563812948642855],[-73.89801645708721,40.564359145517855],[-73.89704215194087,40.5647818474461],[-73.89659163415821,40.56504000102422],[-73.89621164763035,40.565281278820216],[-73.89581663232468,40.56562431858651],[-73.89533259419748,40.566340904173956],[-73.89542366693381,40.56658650687262],[-73.8956186197342,40.56687763449413],[-73.89565980727411,40.56705946098083],[-73.8954912965874,40.56705789199476],[-73.89538025688375,40.566997645046406],[-73.89531210417968,40.56702218855297],[-73.89345467847606,40.56823501855796],[-73.8926101344562,40.56858724728667],[-73.89249413230681,40.56853081092011],[-73.89146452569125,40.568415124016155],[-73.89050235300446,40.56818323540316],[-73.89028537165333,40.568172375144414],[-73.89016495921192,40.5682285247753],[-73.89002018565752,40.568090983869375],[-73.889594924492,40.567941890234025],[-73.88911103138133,40.56791623669153],[-73.8886612899922,40.56796810394103],[-73.88840180766077,40.56807906694457],[-73.88836803030976,40.568144925425216],[-73.88834097846602,40.56806602259844],[-73.88818867528407,40.568033518084434],[-73.88786222574123,40.568038044987105],[-73.88747378475097,40.56813023872448],[-73.88654684002348,40.56847097811003],[-73.88592976749719,40.568484450711004],[-73.88534183019678,40.5685993486546],[-73.88489678220199,40.56849958487685],[-73.88430973105285,40.56869611953866],[-73.88430466693922,40.56866357194761],[-73.88488707124725,40.56847020566868],[-73.88475594832849,40.56828913918742],[-73.88463979353493,40.56833718522709],[-73.88470791077441,40.56842967359391],[-73.8846276458888,40.56837296861143],[-73.88433684774819,40.56848793447797],[-73.88429876082951,40.56843680205301],[-73.8847368986513,40.56826851273868],[-73.88445665776185,40.56789576340594],[-73.88416646626051,40.568001951563964],[-73.88425605450004,40.568157133402345],[-73.88414806727036,40.56800897730114],[-73.88398907450214,40.56806016069419],[-73.88407171935147,40.568195014133465],[-73.8840363832394,40.56820527702404],[-73.88397412531313,40.56806497313349],[-73.88379103703096,40.56812391132453],[-73.88402340092406,40.56850311561082],[-73.88378086756204,40.56812718545728],[-73.88357670606904,40.56820976925096],[-73.8836919504372,40.56839535972333],[-73.88347850015742,40.568473113601634],[-73.88369768110401,40.568836284960526],[-73.88390427884413,40.56890620425924],[-73.88368728096422,40.56884340432972],[-73.88346534749658,40.56847801993844]]],[[[-73.81849901756209,40.587362353054786],[-73.81812861134448,40.587370051699835],[-73.81788322331803,40.58744846866301],[-73.81544517911841,40.58337349188834],[-73.81751059222925,40.58278527117865],[-73.81730795932265,40.582334758939915],[-73.8183818984172,40.5820765600862],[-73.8192881203056,40.58176697435412],[-73.82050198698319,40.58145867605717],[-73.82134165089879,40.58126212745614],[-73.82222751309922,40.58111503216292],[-73.82397556699831,40.58048076353878],[-73.82473701900743,40.58025723770768],[-73.82495905834284,40.58013813920256],[-73.826702994793,40.57965979490503],[-73.82717378885113,40.57944451245259],[-73.82878289896763,40.579038479966414],[-73.82946175207222,40.57880456045936],[-73.83017262880246,40.57874867245782],[-73.83090077211233,40.57849590721191],[-73.83146093331455,40.578419437622735],[-73.83226882481556,40.57812917358785],[-73.83386923172182,40.57764989760894],[-73.83575900751714,40.57681443276594],[-73.83623125724826,40.57665570551986],[-73.83778491239067,40.575923683474464],[-73.83825877960838,40.57579457648639],[-73.83861477888384,40.57563626090022],[-73.84378359141097,40.573887452042634],[-73.84615755275259,40.57303426560749],[-73.84995330701992,40.57158838529145],[-73.85128141360792,40.5711721872626],[-73.85220202399665,40.57074510300148],[-73.85312102850266,40.570506354725424],[-73.8535752554545,40.570341363874164],[-73.85396556577196,40.57031254837008],[-73.85423306127188,40.570137168756816],[-73.8547170135758,40.56993606420064],[-73.85493371329638,40.56989687691536],[-73.85505570248235,40.569814983670305],[-73.85551038432563,40.569658847066314],[-73.8561220237141,40.569505490515894],[-73.85645598828023,40.56934443452468],[-73.85713422129751,40.56912687558923],[-73.85727709642978,40.5690229613771],[-73.85777929146911,40.56885923813841],[-73.85827117413395,40.56861814491843],[-73.86004153002393,40.56799843894276],[-73.86202965574512,40.56710844092569],[-73.86255286095054,40.5668100123016],[-73.86286892277312,40.56683057154632],[-73.86308767528749,40.567597728869366],[-73.86406802390387,40.56929797921459],[-73.86410310060393,40.56935460994425],[-73.86454176111148,40.569242921951336],[-73.86633836363859,40.57238167501555],[-73.86662811957964,40.57305764892384],[-73.86449302911271,40.57354277575922],[-73.86361132952275,40.57382305752114],[-73.86340629371112,40.57411433175846],[-73.86396642057797,40.57502678672166],[-73.86341227940093,40.575316477164556],[-73.86275061598438,40.57585798498221],[-73.86288301956715,40.576059761758074],[-73.85305549585115,40.581255267855006],[-73.85044385149195,40.582130243581354],[-73.84861053538418,40.58218814164104],[-73.84521016865192,40.58157982626368],[-73.83929597982252,40.58186354447296],[-73.83897179301675,40.582484991431514],[-73.83866300747114,40.582668307376686],[-73.838687934053,40.58270107650679],[-73.83853891674397,40.58272734240848],[-73.83855306517037,40.58279171430013],[-73.83848216240935,40.58280078170419],[-73.83846883217522,40.58274020265372],[-73.83830218784803,40.58276328167703],[-73.83828929140847,40.58271364675826],[-73.835840800315,40.58287893936115],[-73.83122785295329,40.5841243723825],[-73.83122924091906,40.58416207228973],[-73.8285247126147,40.584854219377185],[-73.82826267508439,40.585752065938095],[-73.82803692406631,40.58605253838428],[-73.82668838981286,40.58648979849741],[-73.82476427875096,40.587039215772236],[-73.82480116623447,40.58715461536993],[-73.82474352355813,40.58704514197461],[-73.82326157258466,40.58746824027546],[-73.82293688565599,40.587491649726466],[-73.82264303518471,40.58740168458185],[-73.82145971991773,40.58676992492122],[-73.8192974302651,40.58789496589785],[-73.81912916363163,40.588038892945264],[-73.81909407431039,40.58783196115671],[-73.81897507840014,40.58764405856746],[-73.81880351767349,40.587495921583134],[-73.81849901756209,40.587362353054786]]],[[[-73.82075892504889,40.61523267901503],[-73.8176866656646,40.6149329977606],[-73.81652681244354,40.61494700965854],[-73.81658687646512,40.61474454514225],[-73.81657012712569,40.61453736400012],[-73.81643150445521,40.61428233493103],[-73.816156266325,40.61294211550975],[-73.81604375331968,40.612759626442035],[-73.81602636691125,40.61236542446395],[-73.81586106412342,40.61202025697653],[-73.81588914228881,40.6118865638108],[-73.81581602831012,40.61160489323252],[-73.81563522546094,40.6111956001471],[-73.81559858845284,40.61067251633063],[-73.81491794446,40.60905539240186],[-73.81477073792476,40.60885102878017],[-73.81475287110503,40.608632796504665],[-73.81486539922282,40.60802059898569],[-73.81499971251017,40.60782541334002],[-73.81496328870378,40.60764059442574],[-73.8150612987873,40.607317030279894],[-73.81522771731143,40.60704956888278],[-73.81561557741709,40.60669871944571],[-73.81576751578703,40.60637159221872],[-73.81600764295311,40.60619485205995],[-73.8159703204825,40.60607436245343],[-73.81589026350377,40.606025339442624],[-73.81598548527435,40.605733505432376],[-73.81609284320635,40.60574409324161],[-73.81642529989034,40.60522412357491],[-73.81739192106514,40.605158124286795],[-73.81725370593388,40.60394032469185],[-73.81772032704636,40.60222499974205],[-73.8183112112025,40.6013397122134],[-73.81849066054815,40.59938955947812],[-73.81928142201636,40.59752961087658],[-73.81973591831569,40.59751684326907],[-73.82038406378096,40.59656876166241],[-73.82053385802924,40.59613684025864],[-73.8204460562694,40.59574841471485],[-73.82059544851852,40.595602630223794],[-73.82071206778113,40.59517051492431],[-73.8209309527333,40.595108061610645],[-73.82120137599209,40.594779935089456],[-73.82135758286236,40.59469100924333],[-73.82223447148581,40.59485584577482],[-73.8226437729219,40.59490106318703],[-73.82367706968535,40.59490265330448],[-73.82480251258463,40.59508316135395],[-73.82565454833275,40.594964406525264],[-73.82589974801087,40.594861457271655],[-73.8262504467519,40.59495115850988],[-73.82835645407398,40.594790845124756],[-73.8291362611771,40.59480686929653],[-73.82972156172416,40.59464426090914],[-73.83048205961452,40.59458593827012],[-73.83135504802478,40.59463007028259],[-73.8324120966499,40.59461849262108],[-73.83305498419386,40.59481262914005],[-73.83381500025588,40.594947484989476],[-73.83465599514987,40.59516845865223],[-73.8348468281318,40.59554343610687],[-73.83468997430198,40.59589988842889],[-73.83445520581418,40.596226505396785],[-73.8343961270315,40.59646420594511],[-73.83420068056414,40.59665712416403],[-73.83351748212357,40.59698309134841],[-73.83336087722188,40.59723551139863],[-73.83291189147954,40.597457783076244],[-73.83215095205428,40.59767959829197],[-73.8323936451962,40.59780335338328],[-73.83154106006087,40.59795102605601],[-73.83126070912137,40.59789204611117],[-73.83108000671379,40.597791464655266],[-73.83076009448668,40.59744615830983],[-73.83062852179019,40.5974334257242],[-73.8304967590327,40.59749592819191],[-73.83050466584544,40.59762133517477],[-73.83038922548207,40.59773401958527],[-73.83026568640472,40.5977965350972],[-73.82985422945495,40.59787116330139],[-73.82975522193989,40.597990141696755],[-73.82948341823251,40.59813394190258],[-73.8293519565914,40.59807731965319],[-73.82921276779062,40.59782632291465],[-73.82909777422338,40.597763455220644],[-73.82874408639184,40.59776292869093],[-73.8285715645375,40.597681164512935],[-73.82832490250944,40.59764317821753],[-73.82806159675427,40.597680402648805],[-73.82784710903529,40.59792460122606],[-73.82784691505302,40.59799983826346],[-73.82722092998506,40.598331194570626],[-73.8270970627869,40.59851909966194],[-73.82717084790694,40.598613257013504],[-73.82710314559063,40.598688685509686],[-73.8268952725586,40.59870525178698],[-73.82667857306292,40.59895256449634],[-73.82628917971999,40.59920755213829],[-73.82617637541067,40.59937926739646],[-73.82597985975941,40.59947206712292],[-73.82584854764572,40.599440239578854],[-73.82590629513226,40.5991099582099],[-73.82556790752778,40.59854814807088],[-73.82507610835282,40.598214643579176],[-73.82481284618801,40.598139173536666],[-73.8246542066323,40.598149246703],[-73.82448451331592,40.59819646986302],[-73.82431733735471,40.59831310502451],[-73.82395871058296,40.59887689667722],[-73.82406984247395,40.59892248125708],[-73.82421870443292,40.59907448791935],[-73.82416569888669,40.59929937966706],[-73.82407116207843,40.59929225989403],[-73.82379323593733,40.599851223915806],[-73.82376612347181,40.600040070821855],[-73.82257638956357,40.59988773944147],[-73.82255813247474,40.59994156042276],[-73.82235892313436,40.599921922113715],[-73.82194441759792,40.59980115597845],[-73.82168859347235,40.59995402200853],[-73.82146929899633,40.59999372277127],[-73.8214763930177,40.60005034418203],[-73.82173154753421,40.60007648099628],[-73.82172074239797,40.600125283331145],[-73.82234555557142,40.60018010006314],[-73.82234362215932,40.600225661406675],[-73.82248489106972,40.60023554464508],[-73.82261001519797,40.60018603168448],[-73.82443643828283,40.60034498385319],[-73.8244070658681,40.60059112470097],[-73.82445218074886,40.60079696268948],[-73.82430388521037,40.60078519965849],[-73.82429765515748,40.60085210123273],[-73.82413862968961,40.600891466652676],[-73.8239890012412,40.60100198712701],[-73.82388149977814,40.60124921636717],[-73.82351130294259,40.60154577116066],[-73.82345423579784,40.601757952872084],[-73.82362303019768,40.60203200876627],[-73.82357799826494,40.60227189575146],[-73.82304906357764,40.60234491615566],[-73.82294484740481,40.602582909467806],[-73.82276563477781,40.60420260506909],[-73.82278089790951,40.60453487644394],[-73.82290283003627,40.60468726854139],[-73.82281614720097,40.60494101100251],[-73.82271521392778,40.60495008387981],[-73.82259374757734,40.60509140970601],[-73.82253633147998,40.60543279740097],[-73.82246746768423,40.605524982823674],[-73.82260024322491,40.605685158134015],[-73.82290463377655,40.60585127692698],[-73.82236000876232,40.606469260660056],[-73.82224712020046,40.60641986415393],[-73.82211377846275,40.606471956171156],[-73.82173772490525,40.60672055923599],[-73.82167691596466,40.606818908850656],[-73.82126470342853,40.60700285041046],[-73.82119987269738,40.60709504016347],[-73.8212602881281,40.60714435610394],[-73.82119130523468,40.607279608680685],[-73.82089163199404,40.607642153584194],[-73.82090456192024,40.60778124621922],[-73.82003243497637,40.60892365625981],[-73.81994251888376,40.609335748179326],[-73.81998227947363,40.60956038570786],[-73.81980831769367,40.60983495872181],[-73.81961795362155,40.61047904106427],[-73.82051887943078,40.611949948725474],[-73.82043202535115,40.61198710827589],[-73.820434036151,40.61206678700611],[-73.82057595436511,40.61223314088118],[-73.82082274255936,40.61228099224938],[-73.8210840360541,40.61189658265175],[-73.82098893004994,40.61169300643976],[-73.82110627949044,40.611432068097486],[-73.82126119789673,40.61130685696765],[-73.82128421052894,40.61109692878352],[-73.82120543690364,40.610896134988465],[-73.82106228533354,40.6107638483708],[-73.8206269815226,40.610529995216034],[-73.82048700555612,40.61022437929247],[-73.82085878505866,40.6092310582712],[-73.82114637018489,40.60906241107028],[-73.82138268125632,40.60854554494679],[-73.82161460089132,40.60848031922771],[-73.82176098521288,40.608615759591146],[-73.82168241135342,40.608715106587134],[-73.82182531339929,40.608963997185924],[-73.82166797839002,40.60923231660737],[-73.82179804199988,40.60940161338866],[-73.82186205241352,40.60986921256845],[-73.8220962122128,40.61015803173531],[-73.82233079847133,40.61028770325571],[-73.82253978496087,40.61022834479292],[-73.82273529645494,40.6103281141599],[-73.82289233348575,40.610337022194045],[-73.82334654213605,40.611154638919864],[-73.82352882102539,40.611324013934066],[-73.82382468595321,40.611498664910194],[-73.82379847983212,40.61212942139145],[-73.82234961103357,40.614260026197286],[-73.82141601641379,40.615054763934616],[-73.82075892504889,40.61523267901503]]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN99",NTAName:"park-cemetery-etc-Queens",Shape_Leng:454280.564015,Shape_Area:316377640.656},geometry:{type:"MultiPolygon",coordinates:[[[[-73.86522555434864,40.57045847249388],[-73.86454176111148,40.569242921951336],[-73.86410310060393,40.56935460994425],[-73.86308767528749,40.567597728869366],[-73.86286892277312,40.56683057154632],[-73.8626839125123,40.566505656043475],[-73.86300482943786,40.566875957730836],[-73.86319883665405,40.56697222108379],[-73.86349306360209,40.567034311733984],[-73.86475323748427,40.56665257435251],[-73.86553757257511,40.566571609934705],[-73.8666172055463,40.566091942910305],[-73.8663094123244,40.56554606412485],[-73.86663005715063,40.566090111654034],[-73.86688400993934,40.5660839762753],[-73.86738139335078,40.56593539810537],[-73.86832677099378,40.56553115811213],[-73.86848694845878,40.56552701030151],[-73.86825117550174,40.565069489459624],[-73.86852753271033,40.56554546343448],[-73.86862321827094,40.565538008774986],[-73.86924996366304,40.56538476045261],[-73.87062214815249,40.56481330949411],[-73.87027588464699,40.564174653597355],[-73.87064094216505,40.56480994521807],[-73.87091316206484,40.5647645855107],[-73.87263971280457,40.56408418402675],[-73.87237878047488,40.56357511555632],[-73.87274925547604,40.56410955604186],[-73.87321952896157,40.56406390618635],[-73.87398333570002,40.56380747628761],[-73.87396234686537,40.56376070639325],[-73.87402612949141,40.56380039114808],[-73.87459337573858,40.563631163057],[-73.8746666381978,40.56357782411282],[-73.87464481921052,40.56350146230034],[-73.8747365807823,40.563538240729706],[-73.87508297419429,40.563484901363324],[-73.87538638586436,40.56338716397846],[-73.87534551712683,40.563299066600585],[-73.87540121346984,40.56338253312056],[-73.8760676551076,40.56315364740741],[-73.87603074879787,40.56307447802659],[-73.87608272013252,40.563148512787905],[-73.87633039968424,40.56308655277031],[-73.87674349066063,40.56288061457235],[-73.87672645978101,40.56284452175166],[-73.87678968296807,40.56286779582756],[-73.87734281968098,40.56263229637023],[-73.87780227013305,40.56249936429579],[-73.87937898378908,40.56183692908808],[-73.87973011994592,40.561746137261096],[-73.88028402595222,40.56151140831527],[-73.8802967511096,40.56137495524948],[-73.88035535042584,40.561369658868216],[-73.88045748739779,40.561474063629625],[-73.88128249221313,40.56137213387957],[-73.88241586728297,40.56091089700153],[-73.88237441679742,40.560760430809786],[-73.88252056934779,40.56088139491013],[-73.88324741562239,40.56085592148508],[-73.88387562047043,40.56056575125302],[-73.88488436886675,40.560182368041154],[-73.88482639828145,40.56008434162455],[-73.88485949479866,40.560042807457975],[-73.88495111866914,40.56016017455605],[-73.88511277732984,40.56015096173658],[-73.88577690695965,40.560028552989415],[-73.88611109684473,40.55992191902914],[-73.88696170683082,40.559558154144504],[-73.88697510801242,40.55940048249589],[-73.88707182997246,40.559542104885786],[-73.88789256106385,40.55951065137952],[-73.88938592166748,40.55892039964528],[-73.88961884060014,40.55879238897457],[-73.88959262629344,40.558698140939384],[-73.88963947542896,40.558664351794015],[-73.88971251660598,40.55877239782637],[-73.8902165355367,40.55881154861901],[-73.89079589696263,40.558619378907785],[-73.89192354828397,40.55816042152503],[-73.89208699751433,40.55804822513794],[-73.89213864396275,40.55787154099143],[-73.89226637138374,40.55802542116508],[-73.89252745099394,40.558119293542525],[-73.8929368475022,40.55807551401989],[-73.89347065050556,40.55794557863856],[-73.8949514249942,40.5572939254094],[-73.89488196616645,40.55710539053742],[-73.89491817266483,40.55707879529308],[-73.8950179378961,40.557260846465006],[-73.89518458696955,40.55738503715083],[-73.89528651630921,40.55742202490623],[-73.89551188771085,40.55741427014966],[-73.89582644044464,40.557350653954614],[-73.89594551358115,40.55726721154854],[-73.89699522942661,40.55689179163873],[-73.89708358566904,40.55679596449704],[-73.89707956116767,40.55665743308458],[-73.89712552562885,40.55666385916614],[-73.89717686335521,40.55683969645675],[-73.89735688619392,40.556998422539195],[-73.89799514796812,40.55710213718022],[-73.89831103596612,40.55705864257859],[-73.899117184923,40.55680035379473],[-73.89912995191202,40.55664117333375],[-73.89921346312974,40.556712099971065],[-73.8994744005446,40.556718399605394],[-73.89980226357979,40.556631757361],[-73.89981549974233,40.55652650582587],[-73.89990205704461,40.55662042989795],[-73.9001835923217,40.55661762503375],[-73.90053827067622,40.556525856306855],[-73.90054580671716,40.55644291144244],[-73.90062074316904,40.556443238856495],[-73.90093308545309,40.55785621926435],[-73.90125035621423,40.557911583526234],[-73.90123356900084,40.558037922142965],[-73.90156725983896,40.559416058419664],[-73.90230596009383,40.562128209603415],[-73.88317351565858,40.56749160733894],[-73.88275680246294,40.567569861119075],[-73.88313094840228,40.568380626014736],[-73.88262970640679,40.568368929825084],[-73.8820762147467,40.56860200433393],[-73.88212127827951,40.5686618181755],[-73.88192258910145,40.56873144152556],[-73.88189261684595,40.568685096435246],[-73.88121987918434,40.568775581013576],[-73.88045583332487,40.568674379943864],[-73.87867467361698,40.56863993983795],[-73.87797254160715,40.56876163155751],[-73.87740017966797,40.56892617883123],[-73.87598454100325,40.569519790172215],[-73.86663956227197,40.57409921893443],[-73.86288301956715,40.576059761758074],[-73.86275061598438,40.57585798498221],[-73.86341227940093,40.575316477164556],[-73.86396642057797,40.57502678672166],[-73.86340629371112,40.57411433175846],[-73.86361132952275,40.57382305752114],[-73.86449302911271,40.57354277575922],[-73.86662811957964,40.57305764892384],[-73.86633836363859,40.57238167501555],[-73.86522555434864,40.57045847249388]]],[[[-73.83668274106829,40.59494669651323],[-73.8367839580848,40.594887574409036],[-73.83670920825938,40.594711963293435],[-73.8362445648607,40.594496397754135],[-73.83599100458635,40.59442798314016],[-73.8358779812189,40.594531692254286],[-73.83576520416734,40.59453511257505],[-73.83559157397217,40.59444532110317],[-73.83548957637787,40.594454754467],[-73.83541276835358,40.5945489356265],[-73.83527199390073,40.594473517011856],[-73.83511720319565,40.59436584308756],[-73.83505672190275,40.59412219834589],[-73.83513188236283,40.59412946959963],[-73.83516024257878,40.5940614572773],[-73.8351134859865,40.59396826505396],[-73.83433212684889,40.59366076774675],[-73.83431256331623,40.59341552588092],[-73.83422463139526,40.59334824149318],[-73.83387239778715,40.59328326124275],[-73.83385114672687,40.59332621139611],[-73.83373133343385,40.593326038098],[-73.83361163952695,40.5932775117997],[-73.83352017803833,40.59321290776124],[-73.83348178248485,40.59306510580769],[-73.83329545078013,40.59289022545279],[-73.83324963971397,40.592890158984375],[-73.83322124739877,40.59297070686735],[-73.83308377396506,40.59298662544637],[-73.83303505031343,40.59274210122858],[-73.83316620690056,40.5924333667111],[-73.83312434323307,40.592264069064825],[-73.83265939228933,40.59218280364811],[-73.83257498106374,40.59211820911398],[-73.83263966877408,40.592042862938015],[-73.8326089289134,40.591930218019144],[-73.83267596985341,40.59189539361738],[-73.83274648102432,40.59188206475373],[-73.83288011866262,40.591989711148756],[-73.833067018019,40.59193625658477],[-73.83307487165109,40.59161391211072],[-73.83314190531895,40.59158177342802],[-73.83324747925897,40.591638338916546],[-73.83319072180163,40.59178868955176],[-73.83322927028004,40.591874707273696],[-73.83355999168026,40.592084718526394],[-73.83375728840902,40.592101122149245],[-73.83367997692473,40.59201504850849],[-73.83370144153447,40.591886136923485],[-73.83378258395574,40.59184864611473],[-73.83387770786017,40.59185684234783],[-73.83399721888696,40.59197789903609],[-73.83396870697861,40.59210679998955],[-73.83408153119406,40.59208278609032],[-73.8342263835828,40.591932562815465],[-73.83392421303124,40.591577534575535],[-73.83422777067327,40.59137381382261],[-73.83415042672551,40.591301171794086],[-73.83403034912311,40.59140845038406],[-73.83360056172252,40.59135947525198],[-73.83343130348966,40.591404897581924],[-73.83311441237517,40.59130235799315],[-73.83283563342252,40.591460444804774],[-73.83277600360128,40.59135021957247],[-73.8325611103599,40.59132572977755],[-73.83260741887501,40.59112701082996],[-73.83260052602103,40.591065215877045],[-73.83253006957867,40.59105705437032],[-73.8324577468443,40.59038805973482],[-73.83253569550965,40.59021893579929],[-73.83284962070243,40.59009582355287],[-73.83328307100047,40.59008570791239],[-73.83342772675542,40.59001338726891],[-73.83354044048988,40.59003235463255],[-73.83358956566651,40.590115701568266],[-73.83400232738634,40.58992288484006],[-73.83439339168017,40.58995299799171],[-73.83463980875784,40.59005274617159],[-73.83478435641427,40.590023404557265],[-73.83495422767704,40.589728155617955],[-73.83491913647808,40.589669006797095],[-73.83481340409875,40.58967691369036],[-73.83445717248973,40.58981071587243],[-73.83430584994876,40.58972990865542],[-73.83405563128244,40.58974297942082],[-73.8339460607168,40.58987713597731],[-73.83382965643403,40.58992532126531],[-73.8337487303853,40.589876850640046],[-73.83332804704733,40.58983659532504],[-73.83322741518305,40.5897955060834],[-73.83323112660212,40.58972029503289],[-73.83340774259368,40.58954862815872],[-73.83347866711277,40.58936874871183],[-73.83359681193515,40.589328624975394],[-73.83409883714177,40.58937233179574],[-73.8344861149447,40.589343123470684],[-73.8345888355311,40.58929244910334],[-73.83522266937202,40.589470656034564],[-73.83594705455006,40.58936692673097],[-73.83607198232245,40.58943426261684],[-73.83626573378612,40.589456029060976],[-73.83646274185432,40.589587938461406],[-73.83664249161119,40.58957207662678],[-73.83693453583649,40.58974710100794],[-73.8371954113586,40.589699117362954],[-73.83725161485587,40.58977172741026],[-73.83721603048053,40.58991405051854],[-73.83741289656943,40.59010505698776],[-73.83810614160565,40.590492863280154],[-73.83815153434561,40.590664850766125],[-73.83846841001585,40.59077543528389],[-73.83865480129248,40.59092881616313],[-73.8387034663357,40.591205573801645],[-73.83866743647697,40.59153325175088],[-73.83946303752542,40.5922565684882],[-73.83949754039027,40.592168381722935],[-73.83984000695803,40.591897543281604],[-73.83996340087386,40.59187353850931],[-73.83999494182402,40.59194611217224],[-73.83992068316988,40.59205346069028],[-73.83946895572451,40.592332205957916],[-73.83943345802024,40.59243960897197],[-73.8394895820967,40.59254713932046],[-73.83989070190924,40.5928002114938],[-73.84006318683457,40.59287835409837],[-73.84059858452791,40.59297849129278],[-73.84081016081022,40.592919686203714],[-73.84093026245445,40.592798968574265],[-73.8409875662655,40.59241222051885],[-73.84122784858576,40.59213586333126],[-73.84135823835136,40.59213335741707],[-73.84146377613861,40.592208719478236],[-73.8413116936648,40.592442218117135],[-73.84116650852381,40.59244606437192],[-73.84143751160612,40.59249874471385],[-73.84142831850579,40.59255327679585],[-73.84184022441856,40.59271336759547],[-73.84193426610342,40.592931982802035],[-73.84200478923252,40.59291327560431],[-73.84206458750803,40.5929590253503],[-73.84220507443722,40.59315800469277],[-73.8425532887448,40.59318713590642],[-73.84282990630474,40.59338495431447],[-73.8430466059002,40.59345196410186],[-73.84365042322116,40.59348603112834],[-73.84385894018013,40.59342531195973],[-73.84375969699653,40.593607786073534],[-73.84371192494781,40.59386768920811],[-73.84363933259712,40.59388141817308],[-73.84360653016222,40.59394498281134],[-73.84358788589671,40.59416067579144],[-73.8435260079899,40.5942463256092],[-73.8433662316798,40.59430695129886],[-73.84331153773469,40.594423032976096],[-73.84313364052234,40.59447533690167],[-73.84291602171216,40.59444738352491],[-73.8428396708249,40.59451641955825],[-73.84283218743023,40.594613206022665],[-73.8426432536528,40.594729103032336],[-73.84246049104065,40.59471583792678],[-73.84231495048518,40.594630248525235],[-73.8422080302398,40.594667662710265],[-73.84210603877591,40.594838991065295],[-73.84196074544158,40.5949106975099],[-73.84164143574598,40.59492685138895],[-73.84131074866151,40.59515041062],[-73.8413104918889,40.595254571223],[-73.84123770640292,40.59535219935062],[-73.84104539120867,40.59536299613741],[-73.84078351504535,40.5956364298919],[-73.8403197382527,40.595870355646724],[-73.8390296424809,40.59625348474865],[-73.83847829663237,40.59619739892235],[-73.83819202862406,40.596050418288065],[-73.83743435500341,40.5958004430138],[-73.83701776531014,40.595349950118035],[-73.83662377204013,40.59506285186843],[-73.83660044626336,40.594994765536434],[-73.83668274106829,40.59494669651323]]],[[[-73.8244562947687,40.599115837677125],[-73.82439004315063,40.59909811302643],[-73.8244671340969,40.59910746485959],[-73.82451733655459,40.59896580873304],[-73.82395871058296,40.59887689667722],[-73.82452271276411,40.598951263990536],[-73.82477089058425,40.59839184387514],[-73.82448805569142,40.59911116018083],[-73.8245308432464,40.59911949779021],[-73.8244562947687,40.599115837677125]]],[[[-73.82292757811207,40.60006142816304],[-73.82297857712236,40.60004370722575],[-73.82303195166884,40.59993051688428],[-73.82304007915306,40.60006807478681],[-73.82292757811207,40.60006142816304]]],[[[-73.82311740974781,40.600079492525346],[-73.82315293159424,40.599976662649674],[-73.82317356202257,40.5999780053126],[-73.8231801596429,40.60008384902811],[-73.82311740974781,40.600079492525346]]],[[[-73.81339665289289,40.60436407224644],[-73.81184130264796,40.603134665085676],[-73.81085365186651,40.60322371301425],[-73.81053636758674,40.60249598881469],[-73.80986333791377,40.60189578950416],[-73.81003425937743,40.601610907957834],[-73.81002446403939,40.60146564335022],[-73.80991258166742,40.60132020943018],[-73.81003914574583,40.60108957743952],[-73.81004293231491,40.60095471004258],[-73.80985064502394,40.60036561675853],[-73.80999055275569,40.60022838130479],[-73.81000132948589,40.60002868231263],[-73.8101441752303,40.600054855642156],[-73.80997465317678,40.599836702804964],[-73.81018896434588,40.599860400366],[-73.81022695656229,40.599663340153285],[-73.81029493857321,40.599689389650045],[-73.81025503399775,40.59936251435422],[-73.81035740538994,40.599261528491944],[-73.81029011586065,40.59899167007233],[-73.81048808108204,40.59877931123691],[-73.8107844149487,40.59867605082269],[-73.81096169724555,40.59855703088099],[-73.81122022555871,40.59858598697416],[-73.81138719612326,40.5985032621372],[-73.81152379658813,40.59832970667505],[-73.81150861931455,40.59821618352603],[-73.81157550345675,40.59814119875691],[-73.81178922582548,40.59832495396745],[-73.81222073287903,40.598553907975145],[-73.81222386504994,40.598649880717254],[-73.81239671422861,40.598896566804356],[-73.81272920416795,40.599247261570696],[-73.81305369627482,40.599503712015256],[-73.81329373027182,40.59981659270481],[-73.81444738136375,40.60054316835106],[-73.81501471568708,40.602056290558394],[-73.81428693632648,40.60445566622052],[-73.81339665289289,40.60436407224644]]],[[[-73.81569926159654,40.606457067363884],[-73.81546066483351,40.60642813700737],[-73.81552816656342,40.606163069944],[-73.81558381764523,40.60617290276199],[-73.81552536723663,40.60640738028197],[-73.81570815920749,40.606439294196996],[-73.81572726392082,40.60635426227792],[-73.81576751578703,40.60637159221872],[-73.81574174063823,40.60646524523549],[-73.81569926159654,40.606457067363884]]],[[[-73.82718282107054,40.6079197780912],[-73.82679537497145,40.60772044059307],[-73.82629763015818,40.60781707222968],[-73.8261736107582,40.607554111783294],[-73.82639117818776,40.60735743365221],[-73.82598212842402,40.60715799760035],[-73.82590092720902,40.60646593014685],[-73.82649618795779,40.60622446371772],[-73.82690524584685,40.60642389797725],[-73.82861671457663,40.60583848413755],[-73.82866060090225,40.606256158374755],[-73.82815085191217,40.60795028983296],[-73.82718282107054,40.6079197780912]]],[[[-73.82607472604678,40.60843779904348],[-73.82661051008921,40.608196205339055],[-73.82771104235992,40.60839866813067],[-73.82805077260059,40.61004629686528],[-73.82688326480756,40.609596678070396],[-73.82607472604678,40.60843779904348]]],[[[-73.83244207358423,40.60592944853156],[-73.83454144109672,40.60547738376584],[-73.83587601623044,40.60563690754551],[-73.83446265686189,40.60719253294331],[-73.83428342685956,40.60918568185394],[-73.83373275973202,40.609286033073346],[-73.83380311515592,40.609550591858],[-73.83252192341305,40.61038499360474],[-73.83032947906027,40.608487878911355],[-73.83045815392742,40.60666920140316],[-73.83244207358423,40.60592944853156]]],[[[-73.7942017268998,40.60773067561452],[-73.79352152649535,40.606327591394695],[-73.79399754952593,40.606080153462585],[-73.79509002319466,40.607271059100455],[-73.79424799099166,40.60590038003277],[-73.79696327795038,40.60411784876773],[-73.80120019733822,40.60391220065326],[-73.8018028511679,40.60421143145225],[-73.80428530744544,40.60451927953165],[-73.80520676517374,40.606739538099035],[-73.80419695656418,40.60874419803154],[-73.80159206744115,40.61023096250121],[-73.79878198746044,40.610333275690245],[-73.79630654215437,40.60933803253817],[-73.79609453981833,40.60882648344004],[-73.79559832739628,40.608725356302216],[-73.79529977914471,40.60822987831847],[-73.7942017268998,40.60773067561452]]],[[[-73.81520720864937,40.60981673359441],[-73.81559858845284,40.61067251633063],[-73.8154036625592,40.61038480151394],[-73.8150387432528,40.61072453111426],[-73.8146136462951,40.610934073806696],[-73.81450261566708,40.61105847350541],[-73.81449876827786,40.610735453659274],[-73.81483444258139,40.61054418804638],[-73.81502516677824,40.61035320560992],[-73.81517762856761,40.610055675126546],[-73.81520720864937,40.60981673359441]]],[[[-73.81409011566794,40.61446692009977],[-73.81416449897701,40.61429106964078],[-73.8144144148853,40.61410142400812],[-73.8146826267649,40.61397515785502],[-73.81486725972131,40.61401064975279],[-73.81485722289095,40.614299226214804],[-73.81504193462978,40.6143065618143],[-73.81535634872864,40.6141733296829],[-73.81549526637578,40.61403981513316],[-73.8153570301601,40.61392697127488],[-73.81536653934614,40.61382844381873],[-73.81499776068871,40.61358149086307],[-73.81479563255319,40.61319402998128],[-73.81503638494627,40.6129762137494],[-73.81523956560478,40.61298357925828],[-73.8152759071431,40.613201841048756],[-73.81546948317188,40.6133429290084],[-73.8157190614926,40.61327294163633],[-73.81578420222378,40.61309707529882],[-73.81588601679641,40.613019810910856],[-73.816156266325,40.61294211550975],[-73.81643150445521,40.61428233493103],[-73.81623366684647,40.61423104619861],[-73.81582696674207,40.61433597843485],[-73.81554994675568,40.61430737811125],[-73.8150691571859,40.61448257634695],[-73.81471812627862,40.614496088551924],[-73.81444032345235,40.614749038670666],[-73.81420926754474,40.61470344326994],[-73.8140806243293,40.614558409236245],[-73.81409011566794,40.61446692009977]]],[[[-73.76670827781592,40.614910865180356],[-73.76825288003394,40.61487772516936],[-73.77397692084953,40.61600357517017],[-73.76873454822027,40.62090086721642],[-73.76745926950544,40.620511322062534],[-73.76670827781592,40.614910865180356]]],[[[-73.79162058913475,40.62231334348308],[-73.79142802632457,40.622277657342764],[-73.79075818859586,40.622328368325455],[-73.79048062791736,40.622520845760896],[-73.7903050781188,40.62258256142701],[-73.78981035454352,40.622572112659554],[-73.78949653118146,40.62274664236032],[-73.78419483297871,40.62089266991025],[-73.78441936330402,40.62072757271732],[-73.78493153971226,40.620468920724186],[-73.7851104158944,40.6202812219516],[-73.78521543142632,40.62006349374564],[-73.78507784968224,40.61996661358183],[-73.78517524443524,40.61965100037339],[-73.78514372535162,40.61946244402244],[-73.78520870265943,40.6192373479178],[-73.78515456076886,40.61909036591762],[-73.78515920006019,40.61864728248335],[-73.78506327878799,40.61850511855296],[-73.78478111816793,40.61833567667866],[-73.78478547552403,40.617980721836695],[-73.78451882678748,40.6179826705893],[-73.7844965520207,40.61791653247731],[-73.78458184988718,40.61785505060121],[-73.78435569021103,40.6177644905874],[-73.78445273734562,40.617556590931514],[-73.78432120689811,40.61750004012531],[-73.78429919287687,40.61735311796421],[-73.78442813736524,40.61721627074393],[-73.78446087068211,40.61702783412448],[-73.78418536377009,40.61678985942239],[-73.78415704405523,40.61660620428702],[-73.78390060938852,40.61643191346045],[-73.7839075652967,40.6162679087486],[-73.78381802921339,40.61614044420895],[-73.78366070504735,40.616113220062026],[-73.78364494482328,40.6160201646874],[-73.7834459717597,40.61595858986078],[-73.78322554530018,40.615578730723236],[-73.78298118565488,40.61564436669281],[-73.78248993127511,40.61556754988676],[-73.78231042657156,40.61544725686271],[-73.78229527471437,40.61516815367755],[-73.78205109149751,40.61517993165949],[-73.78189090283803,40.615047433891085],[-73.78184222128023,40.615199119630965],[-73.78171700912468,40.61517684879656],[-73.78149577753086,40.615046683487535],[-73.7814159727367,40.61489230670209],[-73.78120399415774,40.61487966338067],[-73.78113050286757,40.614759570571785],[-73.78098597748865,40.614749503537105],[-73.78079376503524,40.61458756709235],[-73.78080415768535,40.61435747268984],[-73.78070887195288,40.61402680900586],[-73.78085046476039,40.61395119022213],[-73.78114906073202,40.61399827097718],[-73.78112055120526,40.61387581550697],[-73.78092185935732,40.6137310043428],[-73.78088360834523,40.6136403541337],[-73.78098980054023,40.613584251712936],[-73.78115999778085,40.613601712787045],[-73.78122166586527,40.61340843637693],[-73.78127952806561,40.61339630628866],[-73.78126051102039,40.613317933002456],[-73.78177836610473,40.61311328429778],[-73.78197506838559,40.612883542644845],[-73.78261557467621,40.61249796863678],[-73.7827857060684,40.6125350113774],[-73.78287901415112,40.61248867479161],[-73.78302450563996,40.61220008319044],[-73.78315942091581,40.61220033778461],[-73.78330429869263,40.61210024193333],[-73.78345861418087,40.612061364866776],[-73.78355221437404,40.61192445198087],[-73.78371299347837,40.61187334570267],[-73.78382814992253,40.612022891547255],[-73.78394373604299,40.612040244785],[-73.78447437567281,40.61185029594847],[-73.78464086652893,40.612019520908184],[-73.7847276066494,40.6120172356188],[-73.7847728543082,40.61193163909373],[-73.78497523419291,40.61192957008934],[-73.7850718538507,40.61185141469714],[-73.78507251590152,40.61164578191831],[-73.78522423150612,40.611415951242975],[-73.78577809315807,40.61099347707073],[-73.7862184324516,40.610911064583924],[-73.78646972800938,40.610678968981574],[-73.7868451869729,40.61079472358817],[-73.78719897412485,40.61065584116455],[-73.78719984810377,40.61038166491333],[-73.7874154456833,40.6102621105944],[-73.78757610899034,40.61024527171192],[-73.78770742637643,40.61036546725975],[-73.78791326214532,40.61028506219789],[-73.78785894330083,40.61019438497833],[-73.78824140913154,40.610126546065686],[-73.78829264835389,40.61017560060224],[-73.78837012007165,40.61005579033558],[-73.78853725349755,40.61002427371056],[-73.78859475483439,40.610124748559805],[-73.78865910627557,40.61009059422678],[-73.78870800946412,40.60986301813488],[-73.78879514031074,40.6097358810117],[-73.78876011660961,40.609637895678915],[-73.78884041217621,40.609640492165816],[-73.78893706313688,40.6095500923681],[-73.78908160165903,40.609552805967276],[-73.78911746868255,40.60938395768332],[-73.78901840304607,40.6092222069458],[-73.78928527958989,40.609137015408066],[-73.78948118868136,40.60914716666045],[-73.78964852624996,40.609049552724336],[-73.78995389362358,40.608981566325944],[-73.79011167149304,40.60885945333168],[-73.79009578875045,40.60880312018514],[-73.79001236618697,40.60877359084323],[-73.79001264338594,40.60868546330815],[-73.79017364012884,40.60856090732902],[-73.79047269491814,40.60845618791433],[-73.79046997488507,40.60829950972431],[-73.79038020614568,40.60824549017298],[-73.79054444426572,40.608111147653005],[-73.79072104674597,40.60813105354394],[-73.79085621391383,40.60804806724658],[-73.7908765910022,40.60769558878491],[-73.79098584611029,40.60768109953871],[-73.79104723143557,40.60774732733389],[-73.79133899604447,40.60773804585386],[-73.79139721012227,40.60761085424477],[-73.79159895008111,40.60780951011928],[-73.7915111469059,40.6081545214168],[-73.79140813105523,40.60822777557577],[-73.79115751304616,40.60825180088661],[-73.79107360039254,40.60837894515513],[-73.79117287672638,40.60847459860615],[-73.79141980894754,40.608602343748544],[-73.79147410074692,40.60870281150916],[-73.79175981051092,40.608757185867056],[-73.7921449954132,40.608749484996665],[-73.79274948626478,40.608646365872914],[-73.79292606044653,40.608676060081905],[-73.79305747477711,40.608766874078775],[-73.79321161896388,40.60877939120826],[-73.7934005191753,40.60897802094784],[-73.79365104095646,40.6089858149691],[-73.79377580688381,40.609150056087636],[-73.79394893617142,40.609255631536136],[-73.79383944411691,40.60934601200365],[-73.79389688461069,40.60946851621681],[-73.79397714306229,40.609483348079685],[-73.79406359128791,40.60957408030568],[-73.79433651688247,40.60960884064344],[-73.79454166514705,40.609748744979655],[-73.79446746878675,40.60985142933028],[-73.79455369148666,40.61001560132577],[-73.79480995093287,40.61024862075146],[-73.7947616927085,40.61027301482926],[-73.79480633941316,40.6103783594772],[-73.79505655097412,40.61048896619427],[-73.79566026939227,40.61054634584657],[-73.79603232907205,40.610728160758384],[-73.79624422255728,40.61076525650759],[-73.79655209352373,40.61092981967625],[-73.79689556095911,40.61100876317937],[-73.79696581991644,40.611143529178555],[-73.79736731722676,40.6111540289356],[-73.79735739829857,40.61124703717314],[-73.797456761957,40.611318204396184],[-73.79771064649519,40.61127948261535],[-73.79837869240353,40.6113124812636],[-73.79850705499888,40.61135432249591],[-73.79852584053728,40.61151592428568],[-73.79864139333543,40.611545503885566],[-73.79898529394642,40.61148245671398],[-73.79912946875949,40.61160755768697],[-73.7991123901827,40.611945354688615],[-73.79917318059815,40.612026245926614],[-73.79932094484789,40.612026504000454],[-73.79939184177395,40.61195073879192],[-73.79970685649201,40.61188029556175],[-73.79988381658063,40.61178513080237],[-73.80001595785122,40.61163848040657],[-73.80025700070239,40.611597282888134],[-73.80034349615052,40.611675769732294],[-73.8005395167723,40.611651630324424],[-73.80056162959768,40.61177651761585],[-73.80080125919478,40.61193390448158],[-73.8006797737325,40.612014179682696],[-73.80047742268741,40.61200648463069],[-73.80023948919155,40.612081960169185],[-73.79999067071373,40.61257358033077],[-73.80008978990159,40.6127279776089],[-73.79993435271605,40.61314387003035],[-73.79931694143282,40.613358220592694],[-73.79935178391476,40.6135222981813],[-73.79965025141276,40.613615843314186],[-73.79968510153255,40.613777473540466],[-73.79951767033211,40.61390692658445],[-73.79950698933641,40.614254527145896],[-73.79944259530322,40.61430337542756],[-73.79950678346569,40.61432307158208],[-73.7994581718867,40.614464971579636],[-73.79949960873975,40.6145727568478],[-73.79936741571925,40.614734095164415],[-73.79940224366955,40.614903069234934],[-73.79917031100385,40.61511564261107],[-73.79906364553335,40.61533332926074],[-73.79900252053623,40.615362599332336],[-73.79903903534353,40.6155505425422],[-73.79900828287823,40.61558293123433],[-73.7989024492685,40.61552399310076],[-73.79878672578644,40.615544826040356],[-73.7987447683358,40.61561429404406],[-73.79877337735286,40.61571471261727],[-73.79854465662952,40.61588959615248],[-73.79837293087942,40.615747382288745],[-73.79816300677705,40.615716090284735],[-73.7980659971719,40.615926450481766],[-73.79818388894267,40.61594833718959],[-73.7982109929383,40.616060366078884],[-73.79806090391466,40.61632691655199],[-73.79755006077956,40.61656692375326],[-73.79738616089826,40.61657964155484],[-73.79727592543749,40.616660412938174],[-73.7972682411669,40.616804379916736],[-73.7974015015387,40.616854755996805],[-73.79743334087892,40.61691923278687],[-73.79737828291215,40.61706601672952],[-73.79741033825569,40.617146713212286],[-73.79713317353568,40.61738137915932],[-73.79724298145645,40.61759376347031],[-73.79713574656114,40.61759191357205],[-73.7969518297394,40.617681425710025],[-73.7968271566042,40.617652569370605],[-73.79678304295513,40.617704722741585],[-73.79683621010035,40.61778883168712],[-73.79678900572843,40.617899430885245],[-73.79681506833495,40.61803887026921],[-73.79690098227312,40.61819271096772],[-73.79697639665073,40.61822811671136],[-73.79700484712896,40.61837994395681],[-73.79670932209947,40.61836962996928],[-73.79650023648885,40.6184573884668],[-73.7963556790424,40.61845468453535],[-73.7963421563273,40.618674982518066],[-73.79622603170385,40.618829002504526],[-73.79628362735241,40.6189049928324],[-73.7961878405797,40.61905453768315],[-73.79619376910257,40.61917378578987],[-73.79629197255329,40.61932851423559],[-73.79612434909335,40.619514266700264],[-73.7961883089092,40.619609853029196],[-73.79602718518987,40.61977113716191],[-73.79592429747635,40.6197978822067],[-73.7959305290335,40.61986154232405],[-73.79559534308575,40.620211012602105],[-73.79557680733001,40.620526585312554],[-73.7954747422191,40.62077629039197],[-73.79554530977404,40.620929798485754],[-73.7952762698779,40.621014223090505],[-73.79501188800626,40.62133074365605],[-73.79503337739287,40.621472753352435],[-73.79523751343393,40.62165715546331],[-73.7949383768939,40.62177167815795],[-73.79481937977151,40.62189144989826],[-73.79471744932349,40.62188376460991],[-73.79458992701342,40.621793326838734],[-73.79444015482298,40.62185157331524],[-73.79443537123052,40.622061632960445],[-73.79469286981065,40.62224030803666],[-73.7946062540955,40.622571700576955],[-73.79434564765558,40.62274584748534],[-73.7939370877137,40.62278701142068],[-73.79352550682357,40.62277100974047],[-73.79226351352028,40.622369089073],[-73.79162058913475,40.62231334348308]]],[[[-73.77172760285139,40.62358502803033],[-73.7717874217154,40.623504080868],[-73.77169908340018,40.623438988204526],[-73.77180205088992,40.6234878803381],[-73.77197318324905,40.62327211630838],[-73.77188149343587,40.62320360205061],[-73.7719866984392,40.62325335218962],[-73.77214546970649,40.62304610520041],[-73.7720313136541,40.6229912129017],[-73.77207296880071,40.622939190360476],[-73.77218824028031,40.62299579379507],[-73.77511891254606,40.619233846984784],[-73.7751804593556,40.61926471788484],[-73.77511877729077,40.61927399328926],[-73.77495328183299,40.619486355822815],[-73.77499461579018,40.619528289922876],[-73.77493976825998,40.61950426656811],[-73.77476640596193,40.619722593388424],[-73.77480885456599,40.61976623803496],[-73.77475625738923,40.619740511207404],[-73.77458288657098,40.619960545525544],[-73.77462198959424,40.61999905929179],[-73.77457162552447,40.61997589811495],[-73.77439825015813,40.620196786709926],[-73.77445085909973,40.62021909763171],[-73.77438587243597,40.620210428792696],[-73.77421473327391,40.62043302878816],[-73.77426958798968,40.620454491143484],[-73.77420347429087,40.62044752778313],[-73.77402897875628,40.620667559550355],[-73.77407143926004,40.62070778889977],[-73.7740165901812,40.620684618835256],[-73.77384546527523,40.620902093747794],[-73.77388568146219,40.620943172981725],[-73.77383308349965,40.62091744405926],[-73.7736608298804,40.621136625440236],[-73.77370215913467,40.62118026845233],[-73.77364843533277,40.621155392467294],[-73.77347730578084,40.6213737210488],[-73.77352087855452,40.62141651548627],[-73.77346603422319,40.62139163670673],[-73.77329266580847,40.62160825230202],[-73.77333623479446,40.62165275509744],[-73.77328363248202,40.62162788065226],[-73.77310914042012,40.62184534831894],[-73.77315159799903,40.621886431223864],[-73.77309787515483,40.62186155448338],[-73.77292561377868,40.622081588967426],[-73.77298158223945,40.62210561649267],[-73.7729132208757,40.62209950168532],[-73.77274432125823,40.6223203965996],[-73.77279356247335,40.62234440991181],[-73.77272857395498,40.62233574030538],[-73.77255744039584,40.622553214267825],[-73.77259653300956,40.62259514494916],[-73.77254616993287,40.622571129333814],[-73.77237279030511,40.622789451131226],[-73.77242539274984,40.622814327162004],[-73.7723615224445,40.62280651245461],[-73.77220950703997,40.62300523198445],[-73.77240313639174,40.62309530229881],[-73.77236260162715,40.62314732600422],[-73.7721689786699,40.62305554733859],[-73.7720046057548,40.623261928516406],[-73.77217018334773,40.62335963116912],[-73.77199669270568,40.62328155898502],[-73.77181882837735,40.62349901798431],[-73.7719877651457,40.623597581460785],[-73.77181316781848,40.62351523514534],[-73.77172760285139,40.62358502803033]]],[[[-73.77348616479085,40.62508511832569],[-73.77381024343438,40.62492559672961],[-73.77383258660585,40.62494484825214],[-73.77348560418895,40.62511314821843],[-73.77348616479085,40.62508511832569]]],[[[-73.79783533398518,40.6274087165715],[-73.79783848091306,40.6270134652973],[-73.79744863612693,40.62711047626094],[-73.79566256726095,40.62611400432774],[-73.79921493427767,40.62408471298846],[-73.79698347650425,40.624864689744726],[-73.79403741754574,40.62563519595611],[-73.79362927481344,40.625156476194896],[-73.79809093107174,40.62306294824431],[-73.79951085673741,40.62117553302096],[-73.7999205769866,40.618575240167075],[-73.80172498640165,40.61996700873173],[-73.80096292308293,40.61777236939818],[-73.80128049504093,40.6158798397475],[-73.80270343867812,40.613580652321716],[-73.80339821027151,40.613172104349616],[-73.80508906012297,40.61343256041946],[-73.80466968986806,40.6143018262956],[-73.80476592682511,40.615800991372005],[-73.80575302222422,40.61669485703574],[-73.80565945060557,40.61760025534372],[-73.80764116962074,40.62119965469334],[-73.80728331329284,40.62166643562194],[-73.80768917763157,40.6222776604236],[-73.806985023151,40.62387199882883],[-73.80557147888447,40.62496900157379],[-73.80516248846956,40.62465622418596],[-73.80271344963617,40.62593478734689],[-73.80251577946912,40.626329137692345],[-73.80011177211622,40.626927441988194],[-73.80092841499382,40.62752410388932],[-73.79783533398518,40.6274087165715]]],[[[-73.81307233892618,40.629261099642676],[-73.81352502122891,40.62730617268586],[-73.81258556104233,40.62837191568217],[-73.81129432273612,40.6247037790014],[-73.81135581995866,40.62293751504067],[-73.81185181296344,40.6220976183739],[-73.81210045334299,40.6211005968149],[-73.81171450418665,40.62070357373618],[-73.81171923661802,40.62009423414048],[-73.81150542539793,40.619796809946244],[-73.81109451157876,40.61791025228183],[-73.81024066504996,40.61648764065421],[-73.81089990481617,40.616218471340915],[-73.81200717839319,40.61717937148442],[-73.81211344524343,40.61792554683546],[-73.81288213914505,40.61891091965567],[-73.81370354000293,40.62138674458606],[-73.81449543302713,40.62239494430015],[-73.814182786256,40.623694631559125],[-73.81518203221347,40.62474417064181],[-73.81612703184858,40.62534899918068],[-73.81679073502562,40.62634891812113],[-73.81383288596315,40.62592623399652],[-73.81382899493454,40.62613507663893],[-73.81627026043992,40.62714580591709],[-73.81720935661431,40.629106351151314],[-73.81730576993608,40.63062197379887],[-73.81637181200449,40.63137272724397],[-73.815067884416,40.631164058075385],[-73.8139173322008,40.63077639121297],[-73.81307233892618,40.629261099642676]]],[[[-73.79577948747539,40.63215847559439],[-73.79803751834714,40.631196239807494],[-73.79796829437947,40.631101307473635],[-73.79811872226205,40.6310375092611],[-73.79827615481264,40.63125217936696],[-73.7981234791794,40.63131768162909],[-73.79805537235067,40.63122445859928],[-73.79081111250504,40.63431035551071],[-73.790792842991,40.63428204320505],[-73.79577948747539,40.63215847559439]]],[[[-73.8233759726079,40.638987046674124],[-73.82277105438686,40.63557691408502],[-73.82243347854097,40.634945100565545],[-73.82209868083697,40.63407230114672],[-73.82189973572855,40.63317571780425],[-73.82184604252804,40.63204018843732],[-73.82107505599556,40.62973377356205],[-73.82081417085439,40.62939043964122],[-73.82059122816392,40.62892422501728],[-73.82008418117968,40.628261639526244],[-73.81991014068153,40.627840653116984],[-73.81973384667764,40.627712304088064],[-73.81796414773603,40.6271055656957],[-73.8180075229494,40.62647634385777],[-73.81769796593268,40.62596162249621],[-73.81710538785214,40.62538485110794],[-73.81611483429549,40.62460465517298],[-73.81608643470935,40.62431540980671],[-73.81672998058576,40.623871514072555],[-73.81795284720684,40.62409328011737],[-73.81891708039834,40.62309026716329],[-73.81889389047463,40.62262915803256],[-73.81825303697346,40.62209423858578],[-73.81778633288097,40.6219377776347],[-73.81778718310689,40.621626331776085],[-73.81697007886828,40.621491557102146],[-73.81691065059817,40.62186964709531],[-73.81653074259579,40.622002518747934],[-73.81571468044626,40.62148955151695],[-73.8154317470428,40.62011653124216],[-73.81718053878458,40.61926727449319],[-73.81744426111274,40.61891175490653],[-73.8174464513911,40.618110895991165],[-73.81764711074587,40.6176119449603],[-73.81777429834649,40.61750112119305],[-73.81775726750763,40.61730714881575],[-73.81760298632467,40.616983832581454],[-73.81751717880147,40.616396411662905],[-73.81716846203035,40.61584319772325],[-73.81711893622212,40.61528219234544],[-73.81652681244354,40.61494700965854],[-73.8176866656646,40.6149329977606],[-73.82075892504889,40.61523267901503],[-73.82141601641379,40.615054763934616],[-73.82234961103357,40.614260026197286],[-73.82379847983212,40.61212942139145],[-73.82382468595321,40.611498664910194],[-73.82410048459032,40.61231956879437],[-73.82432166382952,40.6125884703682],[-73.8243870288316,40.61254878272135],[-73.8243612128081,40.61243932907657],[-73.82444821239918,40.612341126657874],[-73.82467451638081,40.61241991361998],[-73.82473943706762,40.61254932058943],[-73.82460797477813,40.612907204982626],[-73.82468584413475,40.61307641875757],[-73.82520684027206,40.613494977196915],[-73.82525834580272,40.61376361928867],[-73.82540161085667,40.613883197885585],[-73.8255575893193,40.614132104709725],[-73.82575322105288,40.61419208154003],[-73.82609287085893,40.614083181224366],[-73.82619749647593,40.61400376542783],[-73.82619778134854,40.613894351009044],[-73.82635390865971,40.613786157023576],[-73.82662889923557,40.613745800856584],[-73.82703834217762,40.6133950021526],[-73.82725636567055,40.61337871412349],[-73.82737373432053,40.6134186779708],[-73.82758192904863,40.61366765928357],[-73.82772568490178,40.61359824766488],[-73.82787525471794,40.613697628598395],[-73.82769886107026,40.61387671726698],[-73.82732003152249,40.61399551018665],[-73.82724153727001,40.6140650205719],[-73.82750222609543,40.61420466672019],[-73.82845503182502,40.61421603915165],[-73.82900287951897,40.61435611007712],[-73.83009815098156,40.61480533955739],[-73.83091996001424,40.615005487033436],[-73.8314812230364,40.615006311229074],[-73.83202970906773,40.61489769935796],[-73.83246091965546,40.61470933981125],[-73.83331105440291,40.61449331081872],[-73.83401888200319,40.61438116692318],[-73.83342230743995,40.62678198346112],[-73.83304100907765,40.62826127106051],[-73.83286528731682,40.628408350262525],[-73.83289548956773,40.62890347873293],[-73.83236036671227,40.62914225774725],[-73.83196080768144,40.629652729879275],[-73.83183334645678,40.63032330372573],[-73.83189666398192,40.63057239405207],[-73.83160808629839,40.63159032945349],[-73.83119929287744,40.6323745816087],[-73.8311408638877,40.632749395288506],[-73.83133112864142,40.63361769142762],[-73.83193878406723,40.63423622542747],[-73.83190631367563,40.634643425184734],[-73.83195787786693,40.63497888056578],[-73.8323134547505,40.63529880897464],[-73.83249094435713,40.63557855183553],[-73.83245895783561,40.63579410645497],[-73.83309423850456,40.637439988651096],[-73.83340607979218,40.63850135589902],[-73.83289974361324,40.63886268456422],[-73.83221658819181,40.638928490220756],[-73.82866782109744,40.636614718447966],[-73.82808567353278,40.635879726836556],[-73.82591657963168,40.63574741281766],[-73.82518882786893,40.6358617523655],[-73.82478746025774,40.63601169335663],[-73.82443032563286,40.636216520036534],[-73.82413577690069,40.638787996704544],[-73.8245737989033,40.639353873239195],[-73.82419327293158,40.63995327448773],[-73.8233759726079,40.638987046674124]]],[[[-73.74125253145061,40.6874578390578],[-73.7375999412353,40.68636201153256],[-73.73744163705699,40.68670076738553],[-73.73355835321034,40.685517053807644],[-73.7337335013777,40.6852004860797],[-73.73423734863464,40.68534277938339],[-73.73581149255288,40.68245244619857],[-73.73964596498838,40.68359848592596],[-73.73950237547244,40.6838966825207],[-73.74046388075443,40.684193838213794],[-73.74095291410018,40.683291215707385],[-73.74801584492349,40.68541877611115],[-73.74809302657842,40.68528309259189],[-73.7500899119713,40.68592344636012],[-73.74856993160503,40.68780373820849],[-73.74755175366268,40.68934733665572],[-73.74125253145061,40.6874578390578]]],[[[-73.83800373849857,40.70830984006315],[-73.83714702989015,40.70795704576075],[-73.83798280242273,40.70675198780391],[-73.8380816000771,40.70649252025241],[-73.83810193087305,40.70622282282285],[-73.83796048292776,40.70578737962963],[-73.83696237811036,40.70421245233312],[-73.83856418282997,40.703296969393364],[-73.83947815241454,40.70269019433159],[-73.84156378094421,40.70110059871758],[-73.84275664246616,40.7006576953067],[-73.84502472943258,40.69935937651448],[-73.84913837308937,40.69828274120274],[-73.85070842256266,40.70020312510436],[-73.85410116469247,40.70051374882674],[-73.85443455677652,40.70060295213103],[-73.85377512631813,40.69990956791649],[-73.85328620630749,40.69928735744506],[-73.85271130876977,40.6984149620038],[-73.85262446517025,40.6981141067791],[-73.85260966053019,40.69780503974867],[-73.85262948594747,40.69765207765747],[-73.85277238650318,40.69755711194457],[-73.85657185216417,40.697064691525384],[-73.85744447739619,40.69691298471677],[-73.86455708949681,40.695520456512305],[-73.86842489712785,40.694718119514384],[-73.86891704374169,40.69515042319707],[-73.87402053240672,40.694191295217436],[-73.879506412209,40.69114676884316],[-73.88377698649278,40.68786341118491],[-73.88452250891402,40.6866847490949],[-73.88808341842545,40.68529363217105],[-73.8896278757877,40.68423645425289],[-73.89015418672898,40.68500398980447],[-73.89166010659268,40.68404417790933],[-73.89252316832165,40.68342453330659],[-73.894174632671,40.685283248673144],[-73.89530504948772,40.68408052006768],[-73.89577945436986,40.68349718335745],[-73.89628634753659,40.6827583825878],[-73.89646625062986,40.68233642197271],[-73.90116155060393,40.68787793535555],[-73.90042465047065,40.68818389887623],[-73.90180467154046,40.690766298266446],[-73.90123290594052,40.69144227863759],[-73.90038667856075,40.69313995962468],[-73.90003039216377,40.69343745057417],[-73.8985710773043,40.69386983366783],[-73.89736265798818,40.69411084723276],[-73.89691021332283,40.69384227053849],[-73.89742730179678,40.69328898014961],[-73.89764233531483,40.69340865137615],[-73.89768631842568,40.693365258982894],[-73.89695653507484,40.69194920744676],[-73.89474270964169,40.69263695279],[-73.89326209935396,40.692200947459575],[-73.89357935003757,40.693085329232176],[-73.89398113214102,40.693075965542334],[-73.8955862545723,40.693979162011885],[-73.89507694381922,40.69459138970235],[-73.89245207625024,40.69522572878942],[-73.89195658664816,40.69441057018899],[-73.88919365345453,40.69493577021813],[-73.88828642369796,40.69523691673965],[-73.88865416919133,40.69582954890068],[-73.88642048158204,40.69645814949435],[-73.8869998989599,40.696771143801705],[-73.88734003264605,40.69702366620115],[-73.88761064208391,40.69732774547205],[-73.88779396302073,40.6976654277876],[-73.88809909474762,40.698763296478],[-73.88818025786145,40.69885791124142],[-73.88771298020097,40.69967807635822],[-73.88431619451548,40.70020119633849],[-73.88280948496323,40.70068345565651],[-73.88182690581606,40.699529299005775],[-73.87621714178007,40.70159500481845],[-73.87639785216518,40.702294042276634],[-73.86285374177436,40.703414491748674],[-73.85819890700633,40.702911074365716],[-73.8589322439911,40.701320344758884],[-73.85827405827601,40.701223659238906],[-73.85725351412515,40.70121217773545],[-73.85716688252509,40.70167410489204],[-73.8552957150926,40.70199100961049],[-73.8552927590464,40.70259550178765],[-73.85252019054444,40.70229172361753],[-73.853056638353,40.70313704611059],[-73.85473957344772,40.70518485010644],[-73.85473240477538,40.70676414259484],[-73.85110121675433,40.70790098302159],[-73.84933156214034,40.70838833368077],[-73.84876725167257,40.70844457893011],[-73.84762410122774,40.70833262298329],[-73.8466572411161,40.70831864234085],[-73.84567198215159,40.708410366124866],[-73.84453738846398,40.708661054970904],[-73.84381825734583,40.70891182062743],[-73.84314625301296,40.70922345641874],[-73.83938086797481,40.70862603372142],[-73.83800373849857,40.70830984006315]]],[[[-73.90778380515175,40.740744752368116],[-73.90832327571795,40.73863053902392],[-73.9085550154221,40.737930424581904],[-73.90991066509638,40.734997340730665],[-73.9106887640115,40.73347108174275],[-73.90628903408063,40.73240075153296],[-73.90598353285557,40.73326568411645],[-73.90568645938909,40.733915824807454],[-73.90601830403253,40.73401073907942],[-73.90516948859658,40.7358596431284],[-73.9047029758451,40.73567990310633],[-73.90107970834305,40.73391463427611],[-73.9051805791977,40.728956576973715],[-73.90712253078468,40.727424728437796],[-73.9101762761164,40.72927572550905],[-73.91096208682555,40.729640752901226],[-73.91174734232638,40.729912033262494],[-73.9120097468715,40.72922886414803],[-73.91205021265412,40.72850636352958],[-73.91505218095406,40.72860118050036],[-73.91507233834534,40.72797082006903],[-73.91796696706498,40.72850077062925],[-73.9175210756749,40.73100270458853],[-73.9173425053018,40.73138282629282],[-73.91903825157456,40.732005966357164],[-73.91902180402965,40.73208783861029],[-73.91879291984354,40.73196944921479],[-73.91759250746625,40.735239441689224],[-73.91751347899324,40.735350984579696],[-73.91689741909914,40.73544470814948],[-73.91651522687529,40.736757345504856],[-73.91717737969705,40.73689787074092],[-73.91651190571176,40.7389447579649],[-73.91630108538723,40.73906911846408],[-73.91567469626256,40.74078492965859],[-73.91443483239203,40.74053105330962],[-73.91379388676003,40.74251449215333],[-73.91289084169274,40.742482249708765],[-73.90750569686406,40.74186224859535],[-73.90778380515175,40.740744752368116]]],[[[-73.7578714145791,40.727106851486425],[-73.75670329233722,40.7262294321592],[-73.75835433165375,40.7258885098616],[-73.75922708617102,40.72580597829969],[-73.75994854133044,40.72580527783422],[-73.76102756078588,40.72589417902554],[-73.76475781219608,40.726397124111024],[-73.76568253242932,40.72637752360058],[-73.76745787952893,40.72613928143502],[-73.76856605350592,40.725853970734555],[-73.76872630300653,40.72599314332874],[-73.76991329336565,40.72574839859528],[-73.77139578147347,40.725350501341346],[-73.77286784140506,40.72486798512578],[-73.77496975329996,40.7239880614165],[-73.77605631092646,40.723355940083835],[-73.77583631421321,40.723431739568426],[-73.77727808027498,40.72234633629504],[-73.77774895414781,40.72284210956453],[-73.77803765890819,40.72328426871466],[-73.77738999307422,40.72349836725186],[-73.77700327859334,40.72372000868227],[-73.77667910966098,40.72399361329351],[-73.77634189043032,40.724465646594524],[-73.77523387160997,40.72523753282356],[-73.7775750688206,40.73019327580699],[-73.77491335249017,40.73091285976705],[-73.77010680441991,40.73177918326145],[-73.77121678093121,40.73333747727874],[-73.77229585523219,40.73510969623618],[-73.77315793625455,40.736992898159265],[-73.7745506685029,40.74081510200932],[-73.77573836927098,40.74332564716399],[-73.7736218517439,40.7436304626193],[-73.77241461002662,40.743884845221935],[-73.77137678488462,40.74425103550061],[-73.76937164122786,40.74522030908634],[-73.76857701220426,40.74552220488441],[-73.767729913593,40.74577622617263],[-73.76687853596971,40.744093578703655],[-73.7664910963283,40.743748430185285],[-73.7655684981059,40.743258155027185],[-73.7625969477084,40.73708732642264],[-73.76248609277276,40.73673098195222],[-73.7624853869563,40.73618169518283],[-73.76273303467916,40.7352621626722],[-73.76510920615992,40.73455658480407],[-73.76369979170164,40.732864116847814],[-73.76564374465639,40.73253312673899],[-73.76435071526215,40.73115119213589],[-73.76327537810529,40.730240541116004],[-73.76234209839153,40.72953829070128],[-73.76160814438539,40.72904753444114],[-73.7578714145791,40.727106851486425]]],[[[-73.80302898607387,40.74719480090888],[-73.80335214152791,40.74643196519162],[-73.79826235434996,40.7469656555079],[-73.79467568818256,40.74721192846292],[-73.7944586915746,40.745436954215286],[-73.7944636833295,40.74497002170616],[-73.7945350735508,40.744507638214664],[-73.79483295516094,40.74398694206997],[-73.79521257775801,40.74349556879217],[-73.79589335248305,40.742803527223685],[-73.79639432193275,40.74234834989322],[-73.79695065298532,40.74193303514841],[-73.79938421681186,40.74222138402646],[-73.80016281143774,40.7422475287355],[-73.80447287570333,40.7421670999313],[-73.80729839820712,40.74199377747671],[-73.80823789560341,40.742011158110316],[-73.81430884847826,40.7429737730667],[-73.81378452023495,40.74455455279493],[-73.8136842683839,40.7453046674363],[-73.81367361908535,40.74555586454192],[-73.81375799552369,40.74574593645547],[-73.81416171989227,40.7461385803268],[-73.807505993244,40.75013658659011],[-73.80287666488456,40.74976514967169],[-73.8027477074588,40.7483644757949],[-73.80280481382032,40.747881163924404],[-73.80302898607387,40.74719480090888]]],[[[-73.83908354407576,40.76525691346799],[-73.8379042958838,40.76458779730813],[-73.83689970202342,40.762698118217386],[-73.83679107269866,40.761166671252994],[-73.83867321892787,40.75701997859202],[-73.8383404120569,40.75542546285376],[-73.83798921264258,40.754515042982305],[-73.83778038212631,40.7541306833476],[-73.83701406702997,40.75402742114221],[-73.83599840095596,40.752005736585296],[-73.83560230948407,40.75139485333555],[-73.83229535672847,40.75194179113838],[-73.83226187360602,40.75182272177072],[-73.83227581878867,40.751457595065354],[-73.83277623920817,40.749313495051425],[-73.83314141738794,40.7480321826896],[-73.83300301986871,40.74783363145929],[-73.83364897202057,40.7476460992634],[-73.83413036771111,40.747426438593756],[-73.83450311507583,40.74713390481656],[-73.83469042619964,40.746902697785934],[-73.83543777169845,40.74552397407903],[-73.83567553947586,40.74485051756011],[-73.8359507152526,40.74373056960687],[-73.83586131872133,40.74322798453851],[-73.8330151540427,40.74260095830124],[-73.83113122777844,40.742338000406534],[-73.83130117319996,40.739561062689795],[-73.83143025504279,40.73913573312933],[-73.8305355129751,40.73752019476418],[-73.82946751997143,40.73702448225081],[-73.82809152643243,40.73708317577642],[-73.82794969086457,40.737819599239984],[-73.82794360284196,40.738489982440825],[-73.82759017321868,40.73849421766077],[-73.82686746518436,40.73862891215991],[-73.82634965842317,40.73884326447579],[-73.82585368407761,40.73912378014797],[-73.82559030323392,40.73944759179278],[-73.82542658756743,40.73948513792991],[-73.82497439991934,40.73944042675617],[-73.82494800874792,40.73956710500369],[-73.82481178421759,40.739630959899515],[-73.82487827400193,40.73957231226245],[-73.8253932164686,40.7340482361875],[-73.8254625330297,40.73364066157462],[-73.82553129403023,40.73363428147948],[-73.82566535417416,40.73227957787597],[-73.83386267153111,40.73055318900898],[-73.8330708795782,40.72991903138282],[-73.83248002188995,40.72894085408651],[-73.83170465866347,40.728040332246024],[-73.83086471412865,40.7267096339891],[-73.83057961456659,40.72639635103837],[-73.83021953957204,40.72612069614069],[-73.82979910980454,40.72589725400016],[-73.82933887133396,40.72573593884322],[-73.82866154234718,40.725581422749926],[-73.82805145267602,40.725324849653994],[-73.82755527729319,40.72496094976327],[-73.82730900449444,40.724646077497674],[-73.82712926557029,40.72430371206222],[-73.82585945748816,40.72046263176479],[-73.82556765662133,40.719721014661864],[-73.8254823200879,40.71920620793845],[-73.82541926512575,40.717392544422076],[-73.8253164502237,40.717275700246944],[-73.82332432043225,40.71745251000057],[-73.82251099305009,40.71743707630333],[-73.82170479062087,40.71735988999437],[-73.8191283252409,40.71734991931067],[-73.81732944795614,40.717660456711585],[-73.81725907785261,40.71763787695509],[-73.81729568967148,40.717579644971806],[-73.81930469497848,40.71713608089547],[-73.82018883804452,40.7167352241179],[-73.82100705286163,40.716879951033086],[-73.82187417684692,40.71691711844055],[-73.82346833778571,40.71673105185737],[-73.82524731653943,40.716455445122286],[-73.82591945198023,40.71598987682755],[-73.82700620040127,40.71544029779938],[-73.82850807716517,40.7150443297608],[-73.82995752627295,40.71458088793365],[-73.8310314176786,40.71433672576381],[-73.83145866985849,40.71455444993814],[-73.83050461007164,40.714856944799564],[-73.83008535790357,40.71517370291804],[-73.82979616614557,40.715565719133],[-73.83348148353802,40.71833345565659],[-73.83457034898875,40.71902795982897],[-73.83488359412775,40.719303272416916],[-73.83501684230325,40.71952679885818],[-73.83538045147736,40.7207221803721],[-73.83596312427892,40.721677168126675],[-73.83652367712513,40.72237055371197],[-73.83836161375442,40.72556184225823],[-73.83906354616173,40.7268795336721],[-73.83985434224476,40.72817756928242],[-73.84032703229768,40.72880711513032],[-73.84146810861364,40.72999809347482],[-73.84281412537749,40.73115341189032],[-73.84350489084646,40.731814344362675],[-73.84389098177917,40.732258855635045],[-73.84421250370578,40.73273304088343],[-73.84496800004679,40.73400712882319],[-73.84542613094102,40.73494980327682],[-73.84590881515852,40.73639980122155],[-73.8460554183661,40.73709918846959],[-73.84689366193676,40.73867121739413],[-73.84721361587881,40.73864398668386],[-73.84777844217429,40.73934483524631],[-73.84823628010899,40.73929040113395],[-73.84780164620524,40.74004967696215],[-73.85011556636418,40.74072356279838],[-73.85360568293821,40.747496828592006],[-73.85405453298718,40.748158316947894],[-73.85442575253663,40.748851726884496],[-73.85086439710032,40.749995641874605],[-73.85261725352242,40.75340506552792],[-73.8530076226801,40.75455456552017],[-73.85335095181726,40.75601283831397],[-73.8536535198667,40.75683503937099],[-73.85407612119106,40.757652292978754],[-73.85449593244904,40.75827863867387],[-73.85500920858978,40.75887922570097],[-73.85525140080485,40.759147530839975],[-73.8557699745016,40.75953834268469],[-73.85638216116463,40.759906639650666],[-73.85810854025415,40.7606371820916],[-73.85912375861514,40.761275498656445],[-73.85913545312323,40.76141844064874],[-73.85992938029686,40.76220030111184],[-73.86109724401754,40.763664477590254],[-73.86043337819706,40.76386888237301],[-73.859750838222,40.762877839195426],[-73.85941339398101,40.76248326533929],[-73.85907893429899,40.76252283227159],[-73.85892056312612,40.76240640118517],[-73.85899197332893,40.762246523207345],[-73.8589229818273,40.76212234551636],[-73.85864510487951,40.762514395909015],[-73.85888722726264,40.76213360939859],[-73.85883984926518,40.76210532221606],[-73.8586911026832,40.76222119050085],[-73.85884371440261,40.76205876627576],[-73.85861915281873,40.76193559699889],[-73.85765473616337,40.763079822848525],[-73.8584153868299,40.76345313042263],[-73.85850081255472,40.76337643257989],[-73.85834319309086,40.76356256045537],[-73.85839531409535,40.76347705912173],[-73.85763896602012,40.76309944863462],[-73.85683888767875,40.764000179115676],[-73.85696356005904,40.76407442786388],[-73.85667482362348,40.763930188326135],[-73.8568029095629,40.76398084546082],[-73.85758285470703,40.76307290062656],[-73.85669035289207,40.762635632356975],[-73.85658675388774,40.762722840114236],[-73.85678236897392,40.76250827740575],[-73.85671169399481,40.76261568695248],[-73.85760424103286,40.76305328178978],[-73.8581763107053,40.76239629422383],[-73.85661195879644,40.761649541754956],[-73.85819433132532,40.76237410798454],[-73.85858526284444,40.7619170085969],[-73.85747662435645,40.76130891618475],[-73.85627320706276,40.76090240792856],[-73.85537633453954,40.76066938503225],[-73.85522306397417,40.76081695051199],[-73.85533454660224,40.7606581543877],[-73.85466366392802,40.76017116956123],[-73.8545203082372,40.76015934488466],[-73.85425219901802,40.760250677781315],[-73.85372403934953,40.7602463886348],[-73.85277928565594,40.75997298911405],[-73.85210362063115,40.759682826699695],[-73.85200759608831,40.759572499682456],[-73.85158552901186,40.75935542065695],[-73.85144347632415,40.75941908427699],[-73.8506905306546,40.75944879109038],[-73.85017504000449,40.759591600768616],[-73.8497090835063,40.75983883795739],[-73.84930110814338,40.76024287534996],[-73.84987484496263,40.761103812445846],[-73.85181679300061,40.760353732344555],[-73.85197412962872,40.76024940738174],[-73.85207200243944,40.76039288467294],[-73.84981162475141,40.761270974008134],[-73.84916662472364,40.76029658378611],[-73.84891393715097,40.760275786171],[-73.84868655725249,40.76013849410633],[-73.84670933730233,40.761345268634365],[-73.8447450720674,40.76275563070324],[-73.84467648117759,40.76275218035599],[-73.84411566722957,40.76313619957921],[-73.84359361250202,40.76337054278746],[-73.84368787664127,40.76361272608368],[-73.84365028079253,40.76362779379059],[-73.84357100700649,40.76351513280549],[-73.84352013946435,40.76353690309126],[-73.8434362878047,40.76343256619359],[-73.84306961269657,40.763592569153715],[-73.84298349190843,40.76383185087651],[-73.84304240810832,40.764321319920235],[-73.84298479639668,40.76442359311574],[-73.84272819396485,40.7646285489317],[-73.8421165215367,40.76490103369439],[-73.8405263554561,40.76538798919842],[-73.84046519597908,40.765302870000575],[-73.83992813236763,40.7653502119004],[-73.83957826853546,40.76525232297301],[-73.83945813446151,40.765445768458655],[-73.83908354407576,40.76525691346799]]],[[[-73.90137640287553,40.75964203827105],[-73.90147053012262,40.75963305013116],[-73.90225241261254,40.76264382642741],[-73.90356915620245,40.76578178944317],[-73.90287730488971,40.766608346110274],[-73.90217951744471,40.76731584150137],[-73.9020251656558,40.76741678384719],[-73.90065875130139,40.767211434032134],[-73.89432372021544,40.76614647123281],[-73.89349605945462,40.76595093000075],[-73.89403763130206,40.765758919728114],[-73.89428031650127,40.765606776413],[-73.89453879956348,40.76535726745357],[-73.89470543636376,40.76506903349357],[-73.89483535125083,40.76465531620138],[-73.89506657695152,40.7643313277877],[-73.89542447794862,40.763947245817945],[-73.89608492465551,40.763473754704336],[-73.89641138403464,40.76315008327023],[-73.8986613780062,40.75992101787336],[-73.90137640287553,40.75964203827105]]],[[[-73.75021253221281,40.763749382154685],[-73.74936995528708,40.762933643854254],[-73.74597810563424,40.76397628490018],[-73.74473826476742,40.76075997504756],[-73.74346609359459,40.75933829893354],[-73.74310625831069,40.75849426462634],[-73.74250213924488,40.7585881495468],[-73.74125945440775,40.756710496683816],[-73.74120820645948,40.75620461768563],[-73.74041677628853,40.756676317472795],[-73.73964315657828,40.756738382338796],[-73.73929222404772,40.75697393579558],[-73.73917854020061,40.7567192037521],[-73.73917789089741,40.756128954320495],[-73.73929461373467,40.75587624803259],[-73.73949921349272,40.75563034093078],[-73.73996460740699,40.755302877250806],[-73.74075722166485,40.75496746866901],[-73.74127837848548,40.75457638643167],[-73.7417807969441,40.75348221594024],[-73.74164693813852,40.75308533993153],[-73.74143323701331,40.752708735710186],[-73.74087361794932,40.751968385524734],[-73.73985376108601,40.75129852995278],[-73.7383046852927,40.74924682906706],[-73.73741376512213,40.74839221625963],[-73.73689967571399,40.74801670056143],[-73.73591497487688,40.74753887935015],[-73.73543000252702,40.74716066862061],[-73.73522444489399,40.746762954036114],[-73.73503921620797,40.74618407559818],[-73.73503555224956,40.74514659825411],[-73.73487307226317,40.74446126828543],[-73.73451799842132,40.743822457249905],[-73.7337063066621,40.74278250143051],[-73.7343696590925,40.74235159856113],[-73.73816047986665,40.74037643531593],[-73.73933151426655,40.73947447517087],[-73.74016951828855,40.7384818975084],[-73.7407734476423,40.73863527343253],[-73.74100638485653,40.73874396809776],[-73.74128113916939,40.738788692368054],[-73.74306820821381,40.73844081776184],[-73.74360280254857,40.739012608815166],[-73.74371941311084,40.73938314961697],[-73.7439619355481,40.740789126956024],[-73.74996804311489,40.73974575298679],[-73.75037358668034,40.7399224670844],[-73.75098230033593,40.74002146284618],[-73.75138967527695,40.74019415950902],[-73.75347300027275,40.742404844704815],[-73.7507279032,40.742997846899726],[-73.74887697332393,40.743288374544626],[-73.74784861300972,40.74329607797115],[-73.74671975328835,40.743123648060056],[-73.74567621115477,40.74302729862093],[-73.74477587129022,40.743281097372225],[-73.74593060304679,40.74571565900562],[-73.74625984399837,40.746711475312814],[-73.74384322132067,40.74769009627102],[-73.74507911666329,40.75027389673685],[-73.7457794874764,40.75156080529688],[-73.74621665660862,40.751685850524396],[-73.74652681412704,40.75184264645072],[-73.74684219680451,40.75205807565612],[-73.74709885341818,40.75234682867538],[-73.74774116505658,40.75384994464688],[-73.74711113834344,40.75417328609082],[-73.74809587941182,40.75589954972387],[-73.75004764532159,40.758404658291774],[-73.75057710691372,40.758014894987355],[-73.75115582971529,40.759069768753264],[-73.75230259322849,40.75945519933163],[-73.75320997118305,40.75824487300704],[-73.75369069097542,40.7584447883814],[-73.75404744891391,40.758512386011354],[-73.75511648356404,40.758479498133276],[-73.7555734371642,40.75828095184058],[-73.75583713323265,40.7577420617845],[-73.75625606290241,40.75843046955818],[-73.756820621964,40.75973480633186],[-73.75800131701065,40.760379867479095],[-73.75848075066634,40.76199473714894],[-73.75811451999319,40.762053897189695],[-73.75802364180413,40.76211096135724],[-73.75784418114992,40.762367940583175],[-73.75784858716695,40.76256679954024],[-73.75844568810335,40.76368153062583],[-73.75844672113189,40.764115146067084],[-73.758593205358,40.76408822955912],[-73.75886431399071,40.76327454125905],[-73.75921689768923,40.764324855548146],[-73.75567226855465,40.76469114912981],[-73.75467572405663,40.764939759645515],[-73.75377036530634,40.76530463148434],[-73.7538044137912,40.76506822784313],[-73.75340994726432,40.76469265965651],[-73.75311540991825,40.76443316353327],[-73.75264732366156,40.76420259939471],[-73.75269254351429,40.76413431654132],[-73.75219261536522,40.76383041851506],[-73.75204563252282,40.76362496379762],[-73.75178042777566,40.76289650166452],[-73.75150345413996,40.76236250230593],[-73.75105245896148,40.761902850669685],[-73.7510743225256,40.761763671336205],[-73.75090170424889,40.761662508758064],[-73.75072728692216,40.76174242158538],[-73.75057468280833,40.76167881586077],[-73.75041128338701,40.761512172656495],[-73.74998548097008,40.761336644703235],[-73.74914665740415,40.76119279008411],[-73.74861225072561,40.76092780307597],[-73.7484570766571,40.76083194207546],[-73.74822812598745,40.760501369264325],[-73.74778567833143,40.76014217625907],[-73.7475351340896,40.75985719618585],[-73.7471698249883,40.75962235740203],[-73.74655981867951,40.75933914768844],[-73.74628904491374,40.75905924481751],[-73.74634096546997,40.75869890793625],[-73.74630325887233,40.75857155662327],[-73.7464148651357,40.7584667419003],[-73.74638144233172,40.758394065644126],[-73.74642482955997,40.75820966527977],[-73.7463715759145,40.75803530060424],[-73.7462349617885,40.75792310637381],[-73.74626136313682,40.75777454144909],[-73.74618193670112,40.75768895185466],[-73.7461033431899,40.75767938225992],[-73.74577582220611,40.75784863663213],[-73.74546131211125,40.75755240656646],[-73.74527295907758,40.757458888645495],[-73.74494264524725,40.757183975304066],[-73.74486461151737,40.75702834615558],[-73.74477145951205,40.75700764074337],[-73.74463599057209,40.7568911758671],[-73.74468877720251,40.75660002751648],[-73.74465748646872,40.7565581049773],[-73.74455864030777,40.75655788583252],[-73.74458195245155,40.75692265929617],[-73.74486618404752,40.75720430488041],[-73.74509033710213,40.75733548612526],[-73.74527946383124,40.75752040037946],[-73.74536924923652,40.75754024472283],[-73.7457598495421,40.757913517108626],[-73.74584183531488,40.757917113553454],[-73.7460466817461,40.757809942869265],[-73.74619648775433,40.757997332567165],[-73.74631196705491,40.75805481402274],[-73.74627011032781,40.758427131976966],[-73.74609973249848,40.75862662704577],[-73.74606214942192,40.758761500449225],[-73.74616224371907,40.759024799276915],[-73.74635893095152,40.75929087270263],[-73.74655378098826,40.75945017403581],[-73.74708983971597,40.75968282611381],[-73.74749424153497,40.759976686852134],[-73.74765057016464,40.76022387893505],[-73.74815865904621,40.76072637728019],[-73.74824810096807,40.76083846541836],[-73.74820849783978,40.760914398218915],[-73.74823056733835,40.76131675001058],[-73.74837456439484,40.76155878963077],[-73.74847532850525,40.76164784144273],[-73.74886906351011,40.76179646766475],[-73.74929007210233,40.76186230015204],[-73.74936203349061,40.761844520340276],[-73.74938249132595,40.76178135642709],[-73.74933054315888,40.76155574820737],[-73.74917394462383,40.76137774482792],[-73.75004042130577,40.76157608273961],[-73.75057049365306,40.76191547482154],[-73.75063847963763,40.762059118823124],[-73.75110899242166,40.76240606640944],[-73.75142048789606,40.76276169436673],[-73.7516952352181,40.76365182737013],[-73.7522224303414,40.764167159004614],[-73.75225350042959,40.764270578403135],[-73.75240147997192,40.76435374973261],[-73.7525109275029,40.76452737641609],[-73.75274102673856,40.764579974040586],[-73.75304571156106,40.764817227436524],[-73.75314599997922,40.765037811955274],[-73.75338853072759,40.76533394558621],[-73.74940846573391,40.767551978944304],[-73.74687521766978,40.76451862891899],[-73.75021253221281,40.763749382154685]]],[[[-73.92334041480186,40.77512891205526],[-73.92398142938171,40.774615112688885],[-73.92737641808694,40.77646661157505],[-73.92827730832717,40.7768989753244],[-73.92631833403905,40.77824177518491],[-73.9256507617824,40.77843081233557],[-73.92481615546198,40.77875769162326],[-73.92423363007516,40.77910119376546],[-73.92318694397957,40.78024839362787],[-73.92295652690137,40.7804410081222],[-73.92263013830896,40.7805647852254],[-73.92209965433324,40.78085187463645],[-73.91996458792964,40.782635069039],[-73.91796581435896,40.78125629196752],[-73.92375761330429,40.77654701151638],[-73.92302571547225,40.7753843098893],[-73.92334041480186,40.77512891205526]]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI01",NTAName:"Annadale-Huguenot-Prince's Bay-Eltingville",Shape_Leng:71278.132089,Shape_Area:140848924.195},geometry:{type:"Polygon",coordinates:[[[-74.16982582316331,40.56109042060551],[-74.16977469869263,40.56038818775358],[-74.16707279112153,40.548163067336596],[-74.16683255386236,40.54777899581468],[-74.1662332730118,40.54734247915807],[-74.16574238458435,40.54539770524347],[-74.16540080744943,40.544432723040146],[-74.1652605524717,40.544239608788594],[-74.16423141002863,40.54330115924618],[-74.16359221522823,40.542642145951454],[-74.15786625465513,40.536558095178556],[-74.15704288111976,40.5359670717434],[-74.15397419819314,40.53426814806849],[-74.15668876980254,40.53142883571354],[-74.15690813828121,40.53126202829749],[-74.1613496173999,40.52937342427455],[-74.15988277050924,40.527369358046286],[-74.1600555468368,40.52734493811428],[-74.16023231922257,40.5275302094011],[-74.16034097376044,40.52754982762853],[-74.16158217423522,40.52701347777668],[-74.16227196108645,40.527194261805704],[-74.16312608537129,40.52676093369089],[-74.1637200159474,40.52635003249342],[-74.16393757258867,40.52633604180655],[-74.1647465706861,40.52608034550147],[-74.16530607238334,40.525649183608735],[-74.16613400493422,40.52531507961545],[-74.16884431819767,40.5235906811514],[-74.16999711227332,40.52304577245137],[-74.17022498733142,40.52300897256717],[-74.1704885981002,40.523084171644676],[-74.17089812897068,40.52346034310134],[-74.17110263696169,40.52354970667362],[-74.17134981850697,40.5235533922096],[-74.17206320175475,40.52332056936471],[-74.17342635928968,40.522569159917424],[-74.17601245544931,40.52087596282802],[-74.17761992136639,40.51932993503618],[-74.17755017864145,40.51927157993707],[-74.17758295522106,40.51923086686599],[-74.17778718929556,40.51936351039978],[-74.17831876692587,40.519945785599276],[-74.17886114180934,40.52004366571363],[-74.17924381384132,40.519984216653825],[-74.1793913755067,40.520278278802444],[-74.1798101688307,40.520552337707066],[-74.18104081208887,40.520705036287126],[-74.18192155369601,40.52041825301167],[-74.18204081284075,40.52043420132775],[-74.18233555621087,40.52035223806129],[-74.18263745466268,40.52022874570942],[-74.18314810962127,40.51987083226617],[-74.18342370583267,40.5198897240654],[-74.1838130349663,40.519751736010974],[-74.18403696242665,40.51961870464545],[-74.1842854831687,40.51957835337172],[-74.18483116545617,40.519341358599746],[-74.18588730164088,40.51863619949138],[-74.18656733191348,40.51811585040487],[-74.18849353678839,40.516340024577765],[-74.18926875557327,40.51534497687234],[-74.18884297856617,40.51508716657347],[-74.18945073911362,40.515348736525596],[-74.18971218498399,40.51532037853429],[-74.19158090301472,40.51334072190166],[-74.19178922663819,40.51305164412673],[-74.19220869835799,40.51279353416952],[-74.19344318364091,40.51156730961198],[-74.19380455890636,40.51111855442544],[-74.19409643802221,40.51064124236111],[-74.19521340064921,40.509977652954525],[-74.1959348567551,40.50985620307486],[-74.19649936993744,40.50992353053762],[-74.19691918299482,40.51013291847973],[-74.19797892353994,40.51087143723739],[-74.19860831707454,40.51119702310975],[-74.19908132420905,40.51134763348497],[-74.19967205362128,40.51142685044997],[-74.20003712312854,40.512677598824574],[-74.19990247991804,40.51272186470108],[-74.19892572793869,40.51277730599836],[-74.19910610019313,40.512927637520484],[-74.1993612740815,40.51301019441217],[-74.19959271674614,40.513010354943354],[-74.19995659988176,40.512930218415285],[-74.2004551636335,40.51302985881776],[-74.20082898254242,40.513030703958414],[-74.20268081168192,40.51273866175341],[-74.20479737883136,40.51229356963559],[-74.20535868990989,40.51231661021616],[-74.20759701728458,40.51183515564918],[-74.208221922658,40.51162104609066],[-74.20899671527685,40.51125255046767],[-74.2096878939744,40.510797369342384],[-74.20927776652042,40.51048337984571],[-74.2092212248351,40.510523530353225],[-74.2091899682504,40.510499056955176],[-74.209322004642,40.510398628895395],[-74.20935837735618,40.51042236182026],[-74.20930183391931,40.51046171056826],[-74.20971374205723,40.51077770274035],[-74.21013466033575,40.510416750330336],[-74.21074115188337,40.50969101716182],[-74.21110649787089,40.50904044606149],[-74.21130869279989,40.50891433297311],[-74.21180347990952,40.50829641620652],[-74.21179183197994,40.50817327349497],[-74.21189272424047,40.5081750684551],[-74.21198682472037,40.508103591576216],[-74.21222981865519,40.50781483561807],[-74.2122714755504,40.50766750297001],[-74.21241247810394,40.507628532492085],[-74.21263191373983,40.50735860953739],[-74.21338169932677,40.506766288192054],[-74.21353206333342,40.50659164909497],[-74.21353130803669,40.50639747722785],[-74.21385533822834,40.50660702452661],[-74.21434250129722,40.506518911287245],[-74.2149651863965,40.50616104898113],[-74.2156583741237,40.50561657744745],[-74.21602863090419,40.50524220639472],[-74.21641634948897,40.50469162936133],[-74.21735453442749,40.503642896458096],[-74.21754755095681,40.50336004949064],[-74.21764473746188,40.50333089950543],[-74.21794570255219,40.50336009018537],[-74.21828692033937,40.503182073268974],[-74.21977016413618,40.50274268832435],[-74.22003885010376,40.50271698904244],[-74.22063842809904,40.50274870239646],[-74.22127110405401,40.50265059469711],[-74.22160407531258,40.50254619926974],[-74.22184144452805,40.50253841685233],[-74.22321582470954,40.508658610811246],[-74.22290251396113,40.50893653963344],[-74.2266340717513,40.51725100976976],[-74.2269099338937,40.519171398172226],[-74.22632671857019,40.51897916020679],[-74.22567982883278,40.51856183041333],[-74.22549932144021,40.518505188157796],[-74.224756710358,40.518322597121056],[-74.22379595925344,40.518196345926256],[-74.22336473669887,40.51827896022576],[-74.22281985011756,40.51845646639962],[-74.22013810237408,40.51962188313862],[-74.21760570129,40.520871687602046],[-74.21735501212113,40.52093004864693],[-74.21354593513611,40.52123571536508],[-74.21409806769029,40.52409719506798],[-74.21229294528406,40.524276853080295],[-74.21142518383878,40.524414101550455],[-74.21028201852559,40.524721067197156],[-74.20983404366756,40.524990767691605],[-74.20961205809617,40.52522663513917],[-74.2091966020294,40.525376579771965],[-74.2088276965507,40.52537989901121],[-74.20806338753552,40.52523893851992],[-74.20755306474628,40.52524734900318],[-74.20276973338426,40.5259072180798],[-74.20152661625093,40.526265206398065],[-74.20103324175668,40.52691941535216],[-74.20071057528436,40.52722595238272],[-74.19984360510149,40.52785744105145],[-74.19909783767159,40.52829964529554],[-74.19608390164515,40.52991174723517],[-74.1939845692255,40.53087104713313],[-74.19313383033797,40.531194915641734],[-74.19174368836767,40.53191669720956],[-74.19237403412298,40.53304061056431],[-74.19377169258516,40.5358338471448],[-74.19135323760605,40.536664859266565],[-74.19030442484748,40.53724645372145],[-74.18951022648119,40.537788579614514],[-74.18903145189904,40.53815934243013],[-74.18826921091124,40.538866142234454],[-74.18128532982465,40.54695757341559],[-74.18018524747937,40.54837960880832],[-74.17579913103677,40.55651243800515],[-74.17475740459965,40.558167981571614],[-74.1735878523292,40.559698427801415],[-74.17185166522755,40.561520923020225],[-74.17106256026902,40.561276947425],[-74.16982582316331,40.56109042060551]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI11",NTAName:"Charleston-Richmond Valley-Tottenville",Shape_Leng:85007.9894072,Shape_Area:145819134.835},geometry:{type:"Polygon",coordinates:[[[-74.20699885281918,40.557567489102745],[-74.2105078944707,40.55706418186715],[-74.2122003409283,40.55644343036042],[-74.21350175561112,40.55566761810389],[-74.21473803016869,40.55557613295464],[-74.21509339688767,40.55549893255675],[-74.21721338161525,40.5547148589435],[-74.21784397860512,40.554432717640516],[-74.21789204427934,40.553835854855315],[-74.21777232653842,40.553244885044165],[-74.21778377707878,40.553049188028666],[-74.21911576457275,40.55223231413673],[-74.22114869825641,40.55048965840333],[-74.22131562715371,40.550253073856474],[-74.21844432487109,40.54296409475553],[-74.21776941644573,40.54112662992638],[-74.21767785777907,40.5401315469949],[-74.21770976122995,40.53831199324509],[-74.21791053490651,40.53702886088401],[-74.21831515237022,40.535312078801915],[-74.21800676455497,40.53229859022725],[-74.21728324509621,40.529873283052076],[-74.21684517077536,40.52864208718379],[-74.21574341097,40.52646400559],[-74.2156078363909,40.525494739255706],[-74.21559699290884,40.52406106962403],[-74.21567230421208,40.52395762836103],[-74.21409806769029,40.52409719506798],[-74.21354593513611,40.52123571536508],[-74.21735501212113,40.52093004864693],[-74.21760570129,40.520871687602046],[-74.22013810237408,40.51962188313862],[-74.22281985011756,40.51845646639962],[-74.22336473669887,40.51827896022576],[-74.22379595925344,40.518196345926256],[-74.224756710358,40.518322597121056],[-74.22549932144021,40.518505188157796],[-74.22567982883278,40.51856183041333],[-74.22632671857019,40.51897916020679],[-74.2269099338937,40.519171398172226],[-74.2266340717513,40.51725100976976],[-74.22290251396113,40.50893653963344],[-74.22321582470954,40.508658610811246],[-74.22184144452805,40.50253841685233],[-74.22211262723819,40.50260205035658],[-74.22247162669339,40.50250169046007],[-74.22272104051216,40.502527227449434],[-74.2230465785064,40.50247817866118],[-74.22336089144193,40.50231253805172],[-74.22391804800407,40.50224773412719],[-74.22444440868648,40.50196274325463],[-74.22507057836884,40.501764645171825],[-74.22570064661868,40.50190476429566],[-74.22661574231938,40.50221907070777],[-74.22729413514163,40.5022974990647],[-74.2279487800047,40.50224374446127],[-74.2284385657472,40.50225668530873],[-74.22971584237067,40.502085687587616],[-74.2303304000331,40.5018632620844],[-74.23033892500186,40.501804178371934],[-74.23040176854842,40.50190545442031],[-74.23053804549733,40.50194609131127],[-74.2311449502442,40.501851215880635],[-74.23214587623549,40.50150088263919],[-74.23304744169116,40.501101772830424],[-74.23321049636218,40.50109564717318],[-74.23359904185577,40.50091253159987],[-74.23526495991722,40.50060602851456],[-74.2359539106508,40.500344041463045],[-74.23642784022636,40.50007741203188],[-74.23647257054573,40.50011303934292],[-74.23678845651474,40.500000835334234],[-74.23740362061707,40.49950043781104],[-74.2376886264099,40.499172755248495],[-74.23766770425593,40.49912325493238],[-74.23774805247372,40.49910084537647],[-74.23777146075818,40.49918035138675],[-74.23798737384536,40.49916598062633],[-74.23851321635345,40.49889607536363],[-74.2396684497546,40.4977029249432],[-74.23984851236696,40.497583013139256],[-74.2399810675128,40.497569033017264],[-74.24025112795618,40.49763963674877],[-74.24063614044796,40.49760942996959],[-74.24095895431346,40.49764327900128],[-74.24162411809243,40.49760799146704],[-74.24217095515368,40.49749856104619],[-74.24250563440881,40.497606791330846],[-74.24278408299864,40.49763670712514],[-74.24432798250547,40.497546740152565],[-74.24466079893416,40.497449987266016],[-74.24548938937944,40.497044773848025],[-74.24590703235587,40.49678525694413],[-74.24630542124805,40.496437758464204],[-74.24676102774194,40.496133987611785],[-74.24730648798848,40.49611650369374],[-74.24784925733508,40.49616136327283],[-74.24837717836857,40.49626756154662],[-74.24887842614017,40.49643271978927],[-74.24917156868959,40.49656729705334],[-74.24955978366341,40.496856854372865],[-74.25085489422247,40.49800616359514],[-74.25097711721212,40.49829070170696],[-74.25102797801179,40.49872511079774],[-74.25116773245414,40.498993090151856],[-74.25147052928996,40.49919119512829],[-74.25259982739794,40.49964307538365],[-74.2529980360322,40.49994897488498],[-74.25329771508551,40.50031455040643],[-74.25384590662065,40.501635669317125],[-74.25405791555026,40.501947881717555],[-74.2542740765672,40.50216118050962],[-74.25530969808024,40.504136410744536],[-74.25536873039192,40.504553162568506],[-74.2553071037762,40.50653645411898],[-74.25538521007638,40.50701137317611],[-74.2555913638106,40.507712950727594],[-74.25545273003755,40.50803277630407],[-74.25524817753173,40.50824323071299],[-74.25504293650123,40.508397407379285],[-74.2548988814118,40.50843368580383],[-74.25462856709908,40.508674825727006],[-74.2549813000949,40.50877117277574],[-74.25497290370771,40.50880566163064],[-74.25461850728023,40.50868390879983],[-74.25448711664838,40.50880437483029],[-74.25434543215407,40.5087916521513],[-74.2541200077029,40.508991167104426],[-74.25403791904155,40.50894894473293],[-74.25399753078935,40.50897031497407],[-74.25397681140787,40.509020206962845],[-74.25411121318568,40.50916704718071],[-74.25403804567854,40.50925267164567],[-74.25430713078306,40.50937626384447],[-74.25434874440127,40.50932901714467],[-74.25438877802868,40.509344184133134],[-74.2543145416931,40.509413694648956],[-74.25402069505338,40.50927297578744],[-74.25389169939274,40.50942393251996],[-74.25373355115248,40.5093768927458],[-74.2536891188106,40.509425596439115],[-74.25369339837306,40.50947698787123],[-74.25456815512881,40.50988011029748],[-74.2546465126291,40.509826245924366],[-74.25452621732236,40.50997301488095],[-74.25455333637109,40.509895972678905],[-74.25364812518255,40.50947053043627],[-74.2533157980513,40.50986150454093],[-74.25314984308983,40.51038849654025],[-74.25306394553085,40.511055257369726],[-74.2532580688567,40.51108868938078],[-74.25306274811025,40.511067653457765],[-74.25300847277553,40.51119398970536],[-74.25308195034367,40.511392839392975],[-74.25343350448232,40.511636687843385],[-74.25348602963635,40.51159519786604],[-74.25348740701016,40.51164944524404],[-74.2535319502287,40.51162272147421],[-74.2535268507671,40.51167776603183],[-74.25350211318047,40.511700917850376],[-74.25309286898391,40.51141076593681],[-74.25303635381555,40.511433160458736],[-74.25299713911343,40.511859145448156],[-74.2530998457785,40.51203714394123],[-74.25308950878426,40.512121961414024],[-74.25216570186912,40.51278281261463],[-74.25195197554136,40.51299700204319],[-74.2519293126887,40.51320944449023],[-74.25214378894998,40.51355347081543],[-74.2521259139706,40.513710379799946],[-74.25148978164333,40.51421263308285],[-74.25135331412916,40.51439289753803],[-74.25110334107248,40.51445497638785],[-74.2505450049688,40.51471683971185],[-74.25004587756581,40.51510851049425],[-74.2500401150324,40.51518249067768],[-74.25055526413556,40.51571634242884],[-74.25045509923825,40.51577200710901],[-74.25019601571452,40.51550993109381],[-74.25027518309642,40.51546306675975],[-74.2501562658262,40.51536118819797],[-74.24988824874998,40.51552154519293],[-74.25047627306118,40.51611729929937],[-74.25056007337675,40.51610674052837],[-74.250415359212,40.51618833452326],[-74.25045139325618,40.516129459382356],[-74.249356609239,40.51500592819369],[-74.24927734323776,40.51505009569782],[-74.24933775243692,40.515140814379315],[-74.24925615097742,40.5150611950843],[-74.24921528741955,40.51508486129782],[-74.24963220175094,40.515545377949586],[-74.24950047189397,40.51564648806287],[-74.24951393678678,40.51569398097643],[-74.24994158808042,40.51613748819097],[-74.24989861969591,40.51616006240294],[-74.2494309689909,40.51568788559747],[-74.24864764632106,40.51611262849677],[-74.24884323664611,40.5163058895621],[-74.24868189274346,40.51618172785626],[-74.24862466940202,40.516215750550366],[-74.24875958315144,40.51635622113422],[-74.24854589291675,40.51616991714841],[-74.24851245535254,40.51622571740005],[-74.2486008082305,40.516313331917836],[-74.2482842208389,40.516486949553666],[-74.24894624599757,40.5171945397881],[-74.24937814038093,40.516951496322214],[-74.24940770788909,40.51698083041846],[-74.24851449121891,40.51747562626358],[-74.24848720326514,40.51744974517844],[-74.24891910653055,40.517208433692424],[-74.24751811835532,40.5157358647786],[-74.24693048008477,40.51606645441774],[-74.24687147835454,40.51603688177647],[-74.24664175789384,40.516121936076615],[-74.24644039650953,40.515965027503306],[-74.24612857679287,40.516137392573704],[-74.24630085106857,40.51614061103393],[-74.24652992417046,40.516377700140346],[-74.24659873502989,40.51635820232541],[-74.24674997194066,40.51649561324043],[-74.24651040267678,40.51666985530594],[-74.24699556996595,40.51718208519553],[-74.24647899705329,40.51668732721079],[-74.24637736501296,40.51673909335749],[-74.24653682900119,40.516959960378045],[-74.24634969801771,40.51675337193489],[-74.24520861528354,40.5172897436241],[-74.24566989067239,40.51778970804985],[-74.24559938749199,40.51785729450047],[-74.24571276760075,40.51798442162008],[-74.24563473169945,40.51807558074573],[-74.2453056843134,40.518029374764915],[-74.2450880446054,40.51806683940418],[-74.2448608805258,40.51815532456245],[-74.24451292617275,40.51841704403636],[-74.24429835217606,40.51851500310772],[-74.243652285116,40.51829461462312],[-74.24282337422676,40.51830818329575],[-74.24263711877006,40.51824276883577],[-74.24232477833276,40.51832652502174],[-74.24209123122776,40.51848531749819],[-74.24186964584047,40.518742121386786],[-74.24125968675033,40.51918046932035],[-74.24109075987454,40.51934560382751],[-74.24103122918542,40.519542512687885],[-74.24086961979954,40.51949407965851],[-74.24075928637671,40.51931965712861],[-74.24049069621664,40.51919162846878],[-74.240244337913,40.51951749846852],[-74.24009650833138,40.519868230531756],[-74.23991612395618,40.520010463667234],[-74.2398497768467,40.52000168481935],[-74.23982258316776,40.52009071144376],[-74.23991820780924,40.52011367795605],[-74.24003142061717,40.52031311901846],[-74.24055584241658,40.52044752890144],[-74.24073284614617,40.52056915165241],[-74.24093977907687,40.52075367277947],[-74.24097377890217,40.52088739946692],[-74.24117293552203,40.521060131431966],[-74.24133219575523,40.520894517580196],[-74.24189065727211,40.52097754949164],[-74.2429323510237,40.521227161131364],[-74.24290434001858,40.52142442573996],[-74.24259440562304,40.52205564138235],[-74.24258375705308,40.522198648999165],[-74.24276246783721,40.52272678912752],[-74.24262345605543,40.52294713519628],[-74.24261397838434,40.523080937524476],[-74.2427395761292,40.5232674855284],[-74.24280157009574,40.52400729628665],[-74.243357926855,40.52481891281519],[-74.24396500824538,40.524905365833824],[-74.2439683583908,40.52499893358656],[-74.2433388394972,40.52585380517854],[-74.2430738944787,40.52669417721811],[-74.24303493818124,40.52706783923181],[-74.24282860789435,40.52741888017246],[-74.24294799832866,40.52772601705553],[-74.2428422664617,40.52800297456172],[-74.24288671315344,40.528200130827386],[-74.2426126793844,40.52841757123473],[-74.24251028931505,40.528445934764704],[-74.2425333222046,40.528528441107156],[-74.24242002903709,40.52873443622613],[-74.24245541025242,40.52895469954589],[-74.2421880176231,40.52943755166021],[-74.24216769875879,40.52970480817035],[-74.24224528071456,40.52982277950633],[-74.24202464913056,40.53006221866065],[-74.24171160461853,40.53053729256418],[-74.24150733322897,40.53104134279514],[-74.24153092331824,40.5314700732923],[-74.24171924066687,40.531609727653425],[-74.24166784279087,40.53192331944611],[-74.24181061621533,40.532562675421495],[-74.24217799597363,40.53257613847797],[-74.24228200338155,40.53338749651772],[-74.24207044355147,40.533479400837244],[-74.24196458936146,40.53363371792918],[-74.24204570286008,40.534346377050404],[-74.24219707950314,40.534592351962814],[-74.24236610267303,40.53473423256193],[-74.24258024253024,40.534767541105666],[-74.24257216771841,40.53490224668307],[-74.24278130109542,40.53513203928222],[-74.2428577623827,40.535353440320286],[-74.24299170999926,40.53541524480202],[-74.24314182828353,40.53558090588527],[-74.24325746299473,40.535612967569456],[-74.24335015493176,40.53579576914934],[-74.24366348090848,40.53607471926709],[-74.24386744479497,40.53617716315559],[-74.2441249598849,40.53619629572897],[-74.24397655106574,40.536460498559144],[-74.24414782604573,40.53688140991559],[-74.24425651926263,40.5369333298733],[-74.24458753910724,40.5369329270728],[-74.24472875618333,40.536875809447686],[-74.24480094418038,40.53675345545998],[-74.24493693048409,40.536663876415915],[-74.24521393085175,40.53676640751346],[-74.24533651176057,40.53690599443461],[-74.24535957048444,40.537013350617144],[-74.24526133912966,40.53715221261038],[-74.24496024612198,40.53725932535772],[-74.2448006959933,40.537409145437984],[-74.24449326969717,40.53784030182936],[-74.24444259737659,40.538066765991516],[-74.24449238967794,40.5382118682189],[-74.24471697231905,40.53839332928803],[-74.24472652022695,40.53855474638212],[-74.24514012678463,40.53897886632846],[-74.24527100703384,40.539241870191226],[-74.24542947243062,40.53977561925751],[-74.24545378788116,40.54051850790416],[-74.24560205632446,40.5409495945787],[-74.24582363727694,40.541053945185666],[-74.24599284790561,40.5412789321578],[-74.24626027017554,40.541930611778184],[-74.2464861481579,40.5422133926556],[-74.24676193546937,40.542366799683634],[-74.24686253198098,40.54251010144222],[-74.2476777810549,40.54312540330139],[-74.24792244709684,40.543049119271316],[-74.24803463735694,40.54309324044139],[-74.24770573967557,40.54352432645974],[-74.24761962158418,40.54350936140232],[-74.24618422383519,40.54563362484913],[-74.24363807144756,40.54766619523531],[-74.24360202725677,40.54763781110732],[-74.24336648769973,40.54780850751903],[-74.24340208563801,40.54783551137687],[-74.24336346618655,40.54786513523442],[-74.2432987874351,40.5478283445303],[-74.24358447651171,40.547623990375946],[-74.2429358592902,40.547113219245205],[-74.24266546139638,40.54701079971011],[-74.24220318463072,40.54694867729494],[-74.24179850544297,40.54700162778551],[-74.24039182810057,40.547663310173725],[-74.23939195750437,40.5483602848392],[-74.23928907288618,40.54851495372096],[-74.23915003219378,40.548558370418064],[-74.23876882860985,40.54894167524378],[-74.23852526781748,40.54902441728353],[-74.23837191370117,40.54914156681292],[-74.2376196353322,40.5501234685772],[-74.23746496349148,40.55020427318947],[-74.23722616193443,40.55020769601559],[-74.23713313596448,40.55026289226501],[-74.23688278048293,40.55029792275986],[-74.23650170138419,40.550430484345256],[-74.2364162344897,40.55050862684334],[-74.23629187216666,40.550693890746565],[-74.23617462444656,40.55142706190513],[-74.2363044381411,40.55174769589586],[-74.2365211028649,40.55202081590952],[-74.23652575547592,40.55216150265137],[-74.2364155979428,40.55232806630726],[-74.23489865866698,40.553005216669895],[-74.23452035973155,40.55293635428168],[-74.2341502629073,40.552779088041795],[-74.23377755077479,40.55251419951232],[-74.23353549801203,40.55246600479626],[-74.23334188482502,40.55249971061372],[-74.23291523611297,40.55282259888441],[-74.2326961153234,40.55292810594843],[-74.23229112933166,40.55336369797566],[-74.23196648230739,40.553964192022654],[-74.23193331444944,40.55414983011713],[-74.231144562155,40.55494580096933],[-74.23075511311575,40.55553665753897],[-74.23055514386452,40.555563741384155],[-74.23024952087621,40.55538674616394],[-74.22978862412494,40.55551649796359],[-74.22931954185714,40.55549158696271],[-74.22924779457301,40.555610136157725],[-74.22935110839593,40.555737426266816],[-74.22931328062643,40.555817472404385],[-74.22922255521071,40.55588118491013],[-74.22914086769367,40.55587278757248],[-74.22905162187637,40.55610708210506],[-74.22872429974608,40.55629701663659],[-74.22846525096297,40.556311707499084],[-74.22833214372005,40.55639035431139],[-74.22816154992309,40.556376516926655],[-74.22801360696913,40.556272581217236],[-74.22770173052118,40.55618397816187],[-74.22743682730533,40.55603853351639],[-74.22676949189993,40.5561109851842],[-74.22640494542951,40.556255712845854],[-74.22633201675357,40.55621570978143],[-74.2261142055849,40.55625236709264],[-74.22606854510714,40.556211879283744],[-74.22390334134494,40.555897065544464],[-74.22386421498086,40.55609769408284],[-74.22344265040417,40.556046569904765],[-74.22347210933363,40.55594586956391],[-74.22375741210323,40.55598102566948],[-74.22378606708791,40.55588026700453],[-74.22316129008635,40.55578714269046],[-74.22297219632863,40.55550337362261],[-74.22257486867268,40.55540620977834],[-74.22237077164426,40.55548715357038],[-74.22201112709662,40.55540271596949],[-74.22179863887051,40.555417070759034],[-74.22157006613199,40.55564898295767],[-74.221452608851,40.555529074495105],[-74.221431953254,40.5553787794529],[-74.2212986460446,40.55536622468555],[-74.22121375057478,40.55543130541426],[-74.22118322823303,40.55568334341748],[-74.22103998642697,40.55571436939274],[-74.22097904527038,40.55591180005437],[-74.22086715093401,40.555940202277704],[-74.22062175948963,40.55589882050253],[-74.22052870386389,40.55586739479368],[-74.22041823822735,40.555649793620695],[-74.22029711874843,40.55559792106146],[-74.22018456182457,40.55542559489567],[-74.22014474318152,40.55500592293352],[-74.22005143156746,40.55484190727366],[-74.2198651840271,40.55465078550182],[-74.21974356930723,40.55461267207244],[-74.2195298716999,40.55471864699888],[-74.21917586382973,40.554758794138934],[-74.21908060899345,40.55484700219793],[-74.21925824504439,40.5551561951188],[-74.21919554653131,40.55539464782619],[-74.21920978196951,40.55545558360679],[-74.21931015500942,40.5555121822515],[-74.21933701278985,40.55569136698103],[-74.21928639639636,40.55579538237186],[-74.21921716370933,40.555796969878585],[-74.21917849469095,40.555528105387225],[-74.21907546885761,40.55550714053314],[-74.21895832633062,40.554857582913186],[-74.218780774855,40.554672289283175],[-74.21859325782808,40.55467421024774],[-74.21853272399848,40.554738884108154],[-74.21853638146906,40.55493288147885],[-74.21881905965178,40.55587471898613],[-74.21875399989636,40.55589346978675],[-74.21880202584767,40.55595546554371],[-74.21870767559835,40.556041015195966],[-74.21867044393743,40.55605041133226],[-74.2184151987481,40.55572762565146],[-74.21826999261646,40.55569054914901],[-74.21817360193396,40.55560052324847],[-74.21807146448954,40.555292928823924],[-74.21791498891787,40.555095043475454],[-74.21775342325844,40.55500528477739],[-74.21604246060636,40.55554411878298],[-74.21474053198818,40.55624238913209],[-74.21501817201808,40.55675563837985],[-74.21462340478125,40.55691336171829],[-74.21447533305549,40.55668886410038],[-74.21434447631303,40.55672657135447],[-74.21422698788354,40.5565573179182],[-74.21395537449561,40.55665715429433],[-74.21376467317589,40.55639694332528],[-74.21362904527314,40.55651181975182],[-74.21339560620767,40.556559903707445],[-74.21324031474563,40.55667262373701],[-74.20569605157344,40.55851600560037],[-74.20699885281918,40.557567489102745]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK26",NTAName:"Gravesend",Shape_Leng:39925.9414877,Shape_Area:31337012.124},geometry:{type:"Polygon",coordinates:[[[-73.96514385192494,40.59110191611804],[-73.96661531461977,40.584571036935834],[-73.96781584964693,40.58453905067623],[-73.96899979294861,40.58406350393265],[-73.97045373474081,40.58389227978702],[-73.97461091878922,40.5831298756257],[-73.97742525335677,40.582906593171586],[-73.98006567975152,40.58331786374598],[-73.98044790936065,40.58341064288145],[-73.9817545207617,40.583583763728086],[-73.98482192835374,40.58416852327664],[-73.98492731036222,40.584595952702195],[-73.98548158019865,40.584519677417425],[-73.98627573612436,40.58447998143249],[-73.98710120319453,40.58464459176255],[-73.98654457042264,40.58365859131644],[-73.98829948294924,40.58346674665815],[-73.98928725016698,40.58195758291012],[-73.98971762454215,40.58083822657235],[-73.98995504921764,40.58066167003396],[-73.99119440862668,40.58102830769944],[-73.99163007472377,40.58107988438183],[-73.99174273417002,40.58120016258745],[-73.99168261881195,40.58138342707711],[-73.99173078194426,40.58148650454527],[-73.99182532449974,40.58150370686697],[-73.99185535722562,40.5816239785461],[-73.99033762504457,40.58421825488585],[-73.99034179385866,40.584453111765974],[-73.99026244714372,40.5846191482053],[-73.99097612298843,40.58435003081003],[-73.99267391340958,40.58358844336947],[-73.992886016348,40.58342415706709],[-73.99370236147232,40.5829808282855],[-73.99419222119964,40.58276884332337],[-73.99468833671095,40.582620681284],[-73.99490532895925,40.582473841107095],[-73.99515295655152,40.5824238676243],[-73.99533293309999,40.58226301780498],[-73.99547188534245,40.582210054324825],[-73.99605528886438,40.582128903854134],[-73.99622429875534,40.58220193058146],[-73.99672570402994,40.58225349057936],[-73.99739612012658,40.5824296169995],[-73.9978130171092,40.582610031083014],[-74.00017922859408,40.58307394974241],[-74.0003088081067,40.58317703751463],[-74.00041739503706,40.58354592150325],[-74.00043685423967,40.5840489694865],[-74.00035951856404,40.584186445880384],[-73.99985809444584,40.584542960952774],[-73.99963273407124,40.58463316229418],[-73.99933976375858,40.584860814817176],[-73.99878762307114,40.58515289393326],[-73.9984608454577,40.58528604638732],[-73.99808523776014,40.585364721581485],[-73.99808899254317,40.58547074076329],[-73.99928905009473,40.58555236605287],[-73.99946933967432,40.585689819009325],[-73.99970597099512,40.585689819858544],[-73.99970033691994,40.58575424962768],[-73.99952567990363,40.58575854465989],[-73.99963423823505,40.58606974743335],[-73.99956511570319,40.586243920095654],[-73.99935665157747,40.586381369415655],[-73.99877633119148,40.586484453386575],[-73.99814530449004,40.58653169390712],[-73.99417305638376,40.58838285782074],[-73.99423502922511,40.58843870064825],[-73.99559857410351,40.58784170755413],[-73.99566054578194,40.58793620734382],[-73.9940790462178,40.58869344199053],[-73.99421554608305,40.58886853048276],[-73.99533140797436,40.58833006678158],[-73.99555247167986,40.58826483929653],[-73.9951335133543,40.58848091554352],[-73.99515490404112,40.58851489373944],[-73.99505684996113,40.58856109783556],[-73.99509949490815,40.58859250504379],[-73.99795639739288,40.58726950636562],[-73.99797893506641,40.58731246396778],[-73.99555029453963,40.58842069392083],[-73.99487677695369,40.58877174667512],[-73.99534737661217,40.58933138043995],[-74.00011449538403,40.586951640399995],[-74.00010886019504,40.586560729096725],[-74.00031734303268,40.58645333502325],[-74.0004327749314,40.586544594921556],[-74.00048912001927,40.58704285562656],[-74.00038207049796,40.587133057349455],[-73.99788311251037,40.58834343842537],[-73.99801867088891,40.58842540004122],[-73.99375761854479,40.59033184450569],[-73.99330854901021,40.589583898580386],[-73.99153934444448,40.59039090308128],[-73.99036425045065,40.59143193167627],[-73.9896215009892,40.59098199324491],[-73.98601936824284,40.59444604946164],[-73.98467793992161,40.59365864984088],[-73.98463965435977,40.59355217604251],[-73.97995443451735,40.59407381160399],[-73.98035785473868,40.596191541243776],[-73.97148350788788,40.59717158495779],[-73.97132951000971,40.5963524307182],[-73.97153324450748,40.59636870874829],[-73.97189684823076,40.59435251069313],[-73.97115101831308,40.590442444533224],[-73.96514385192494,40.59110191611804]]]}},{type:"Feature",properties:{BoroCode:3,BoroName:"Brooklyn",CountyFIPS:"047",NTACode:"BK29",NTAName:"Bensonhurst East",Shape_Leng:33924.613271,Shape_Area:35777419.3527},geometry:{type:"Polygon",coordinates:[[[-73.97477657974535,40.61263847492684],[-73.97403097769332,40.60870231015881],[-73.97299434004842,40.60881414180237],[-73.97239735475934,40.60565189064674],[-73.97217742800864,40.604194711537346],[-73.97235152087217,40.60334811886102],[-73.97291116841225,40.599315804203165],[-73.97191080477076,40.59942305913215],[-73.97148350788788,40.59717158495779],[-73.98035785473868,40.596191541243776],[-73.97995443451735,40.59407381160399],[-73.98463965435977,40.59355217604251],[-73.98467793992161,40.59365864984088],[-73.98601936824284,40.59444604946164],[-73.9896215009892,40.59098199324491],[-73.99036425045065,40.59143193167627],[-73.99153934444448,40.59039090308128],[-73.99330854901021,40.589583898580386],[-73.99375761854479,40.59033184450569],[-73.99801867088891,40.58842540004122],[-73.99867293309633,40.58919554993963],[-73.99923690396959,40.58893532826905],[-73.99946446811073,40.5892332693807],[-73.99837834882109,40.58977044508854],[-73.99842061695264,40.58981405455963],[-73.99883618014573,40.589625489542264],[-73.9988658617369,40.58966697528808],[-73.9984438707949,40.58986039917749],[-73.99877991358237,40.5902323318472],[-73.99877800655514,40.59031435534187],[-73.99868809619373,40.590325655709115],[-73.99853303406093,40.5902089981609],[-73.99844325936868,40.590240104991835],[-73.9977597276729,40.59095246961376],[-73.99711168571537,40.59127797744374],[-73.99710730375631,40.59139075565936],[-73.99722828062735,40.59165447086505],[-73.99806438267683,40.59120946473148],[-73.99812869395336,40.59128866425794],[-73.99728269769717,40.59171481436548],[-73.99754851058404,40.5919175781704],[-73.99856404800663,40.59149232530955],[-73.9991676186208,40.59114913481047],[-73.9995732919939,40.591092566583306],[-73.9998621981231,40.591128033409156],[-74.00004314987638,40.59120428675743],[-74.00020046915094,40.591375598737095],[-74.00023253344592,40.59153130855931],[-74.00005812170897,40.59171484748449],[-73.99900651191153,40.592347779404236],[-73.99903216072165,40.59242228869666],[-73.99930029653088,40.59255912266498],[-73.99948304938304,40.59296919989759],[-73.99897464320541,40.59330636936843],[-73.99736802518491,40.5939743108586],[-73.99633951293978,40.593622475320636],[-73.99619345512309,40.59399219822053],[-73.99530829609841,40.59442758719634],[-73.99674706860172,40.59564312556851],[-73.9892234382791,40.6028656757259],[-73.98869008707028,40.60342530715608],[-73.9868476264828,40.605097236127754],[-73.98913191482256,40.60645613670459],[-73.97963821772844,40.61556454722804],[-73.97477657974535,40.61263847492684]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN33",NTAName:"East Harlem South",Shape_Leng:18640.3315164,Shape_Area:16651054.6253},geometry:{type:"Polygon",coordinates:[[[-73.93505300005576,40.791687202908996],[-73.93526809844528,40.791528025800744],[-73.93519039230048,40.79147116012868],[-73.93546762154531,40.79126365205786],[-73.93553896695938,40.79131869365974],[-73.93583106788907,40.791094704870204],[-73.93708104382301,40.78936639570995],[-73.93614073314123,40.788949073410464],[-73.93621859869953,40.78880049757426],[-73.93714965461103,40.78916844905944],[-73.93781722692914,40.78768846868085],[-73.9381157015585,40.78718476275671],[-73.93982619696506,40.78525655191289],[-73.94246970444773,40.783896460947005],[-73.9431614191054,40.783411829992176],[-73.94354420712477,40.7828805243252],[-73.9436320172787,40.78296232318279],[-73.94376005274468,40.78282893221969],[-73.95577735912323,40.78791392447104],[-73.94831125454381,40.79812921756678],[-73.94187604660893,40.795405868547874],[-73.94327251190568,40.793488102935555],[-73.93864883300408,40.79155775480609],[-73.93773612057375,40.79281580410158],[-73.93555312839224,40.79184222557423],[-73.93542842732296,40.79199688011592],[-73.93505300005576,40.791687202908996]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX27",NTAName:"Hunts Point",Shape_Leng:44778.6200776,Shape_Area:49734670.6881},geometry:{type:"Polygon",coordinates:[[[-73.88438994861654,40.822967396448554],[-73.88429488145051,40.82271820526731],[-73.8837878612648,40.821933413771255],[-73.88244779619045,40.81926832251218],[-73.87806283262127,40.81618263244407],[-73.87663459963707,40.815711508099156],[-73.8767318557306,40.81538649598469],[-73.87446381927738,40.81464523186162],[-73.87250110885972,40.81388812823404],[-73.8723943796624,40.81397433560655],[-73.87232977031849,40.81392182334055],[-73.87243667235077,40.81385093400157],[-73.87218961012046,40.81367367076714],[-73.87209717027152,40.81373802152173],[-73.87203687539933,40.81368551337265],[-73.87212931147361,40.81362116869257],[-73.871804636402,40.8133148905392],[-73.87165777683398,40.81325426197598],[-73.87095753684099,40.812146180609446],[-73.87056806927933,40.81208731762239],[-73.87047093231463,40.81145829499239],[-73.87055342125585,40.8112433802196],[-73.86811219140078,40.806751832831814],[-73.86846346959145,40.80593654893902],[-73.87151855030295,40.801874148888125],[-73.87161142592569,40.80191439620697],[-73.87169881930807,40.80180527192042],[-73.8716033619253,40.80175181144644],[-73.87174509307782,40.801547366115415],[-73.87238060453697,40.8012901146327],[-73.8724694933706,40.80078919284297],[-73.8722365732689,40.800761622650334],[-73.8723468499885,40.800174763010446],[-73.8729786294465,40.80025068902645],[-73.87287711063706,40.800840089046126],[-73.87262705877912,40.800791861502255],[-73.87258547108691,40.80106099335625],[-73.872705037586,40.80116717681057],[-73.87355096572506,40.800853302771834],[-73.87467716314154,40.8009794223616],[-73.87473060452697,40.80125663762858],[-73.87526517037321,40.80139815254842],[-73.87585788581329,40.80145598758637],[-73.875929980717,40.80108422258855],[-73.87814218819923,40.801319290306445],[-73.87807685486544,40.80166664403502],[-73.87798629509399,40.80165671550689],[-73.87796880375467,40.80171111462558],[-73.8780629485342,40.80219431934498],[-73.8779064649521,40.802271801020126],[-73.87811438894295,40.80236808487923],[-73.878234649218,40.802646805768184],[-73.8784329544731,40.80270273469417],[-73.87921348407687,40.80279532683507],[-73.87962764902669,40.80274331872012],[-73.88005462984879,40.8027601514076],[-73.88092030611399,40.80255854342799],[-73.88244775081947,40.802351212093406],[-73.88243021774039,40.802265572389985],[-73.88251894912051,40.80225218128438],[-73.88254113402199,40.80233568156286],[-73.88369542422475,40.80216212360287],[-73.88383850059336,40.80210718399592],[-73.883964625197,40.80196514835963],[-73.88369036996542,40.80194525580513],[-73.88372326665922,40.80186284394103],[-73.88378458024032,40.80191968382461],[-73.88396774707945,40.80195744485258],[-73.8839894532272,40.801903879158615],[-73.88505172336708,40.802130906798],[-73.88514576973422,40.8022595889847],[-73.88536544665006,40.802260639745306],[-73.88539676408837,40.80230215307005],[-73.88533116952092,40.802352902670776],[-73.8851551712676,40.802272453041276],[-73.88525553670252,40.80240978102542],[-73.88559978112269,40.80256549733337],[-73.88591424738753,40.80279851699362],[-73.88616377056563,40.80317568497681],[-73.88727097413258,40.803947002337296],[-73.88738095624217,40.80411068128387],[-73.8872473845842,40.80418614011421],[-73.88740234683179,40.80437434258936],[-73.88752886022138,40.80440172674036],[-73.88771124600449,40.80461478122011],[-73.88763129537647,40.80467132537589],[-73.88795897290095,40.804997925921285],[-73.88859217706487,40.804789274595215],[-73.88882576006077,40.80485322537332],[-73.88927892652842,40.805181828760674],[-73.88944105902294,40.80544009355644],[-73.88940685507227,40.805582020781934],[-73.88922416091154,40.80584535119198],[-73.88999598170768,40.804886286752726],[-73.89015098501605,40.80495818226259],[-73.88937439253695,40.80592527311526],[-73.88954478026055,40.80580707619276],[-73.88981398415925,40.80587739185073],[-73.88996089003868,40.80571476991681],[-73.89005932758651,40.80570432417933],[-73.89058213013655,40.805867522343874],[-73.8914990373016,40.805931237737916],[-73.89144104343431,40.80566189856539],[-73.89178618135604,40.805622892086156],[-73.89197929600414,40.80638470897681],[-73.89270681132653,40.8063439480935],[-73.89253177139423,40.80565655156831],[-73.89227315843532,40.805702433124786],[-73.89216364547642,40.805302592565404],[-73.89126710622972,40.80501048892154],[-73.89128402413922,40.80497628189915],[-73.89169561834656,40.80511584342214],[-73.89173241061837,40.80504936291833],[-73.89186610809391,40.80509048742663],[-73.89182888997553,40.805166472094065],[-73.89219739671562,40.80528468791936],[-73.89230020261438,40.80566060566954],[-73.89256667738411,40.80562071000463],[-73.89274814037404,40.80634026130198],[-73.89315654170535,40.80631240992107],[-73.89330516555374,40.80634399783595],[-73.89337655119155,40.806297864564264],[-73.8937195431355,40.806253933628824],[-73.89463252417235,40.80623233192267],[-73.89457393913416,40.806045773007185],[-73.8947260190962,40.806026246583485],[-73.89477679721124,40.806213633240034],[-73.89485360535876,40.80621490815868],[-73.89472970460618,40.805741100958464],[-73.89484295983632,40.80572399701212],[-73.89509836553539,40.806863639174125],[-73.89528550564226,40.80684271107136],[-73.89550633968567,40.80659530530364],[-73.89527962807867,40.805766184067295],[-73.8954054906103,40.80596049374917],[-73.89559109157966,40.806581343348064],[-73.89572273778764,40.80655965730821],[-73.89567025138757,40.806290130456915],[-73.89574790965,40.806280368010746],[-73.89583838073179,40.80654060706932],[-73.8959779468775,40.806517615839574],[-73.89579066958083,40.80583055920906],[-73.8958748166546,40.80580851158298],[-73.89610824584022,40.80649615095181],[-73.89622424119064,40.806477041842236],[-73.8962304080316,40.80621047190274],[-73.89708748373822,40.806123837657296],[-73.89717387408179,40.806045253647525],[-73.89726014999147,40.806040959847245],[-73.89738639505421,40.80622461663471],[-73.89749681953897,40.806214400202485],[-73.89741472698572,40.80580005947806],[-73.89748591807061,40.80578783251721],[-73.89763818741152,40.80620132083878],[-73.89776126714891,40.80618993350209],[-73.8977282725107,40.80596749413726],[-73.89779945195386,40.805962640911474],[-73.89787360901275,40.80617953899038],[-73.89801340896237,40.80616660385922],[-73.89787127924515,40.805534981759],[-73.89793600362394,40.80552029002938],[-73.89816110752699,40.80613807009988],[-73.89829494887951,40.80609757069832],[-73.89827462411778,40.805859509753915],[-73.89811666753744,40.805755506565895],[-73.89812536132743,40.80565076037303],[-73.8982085961973,40.8055529144279],[-73.89852656450464,40.80543430909733],[-73.89954297563128,40.80525322295387],[-73.89973595864144,40.80517226673618],[-73.90097298881534,40.804876097891125],[-73.90125734119643,40.80488188184769],[-73.90204952277891,40.8047841410241],[-73.90218021957048,40.80495382832072],[-73.90222284699469,40.80494811318953],[-73.90308946530325,40.80985639970225],[-73.89759123779672,40.813776873348985],[-73.8954285877251,40.815844672428106],[-73.89704466722095,40.81680185968668],[-73.892901561986,40.82081122319063],[-73.89283653079514,40.82097405461585],[-73.89588135872873,40.8209925747051],[-73.89586019567822,40.82263104589931],[-73.89320005033731,40.82400818250613],[-73.89487088534919,40.82393727215577],[-73.89483522924053,40.8262468412122],[-73.89293226101063,40.826787036532345],[-73.88997942487836,40.826809992740756],[-73.88789510901421,40.82674318529653],[-73.88609624167161,40.827655777357926],[-73.88647552823451,40.82528542413242],[-73.88710697213956,40.82330587093799],[-73.88706248971093,40.82319027511782],[-73.8875342950517,40.82250933946978],[-73.88719405084723,40.822593528522326],[-73.88438994861654,40.822967396448554]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX75",NTAName:"Crotona Park East",Shape_Leng:24754.9301235,Shape_Area:16315992.9},geometry:{type:"Polygon",coordinates:[[[-73.87359713633923,40.83979855543337],[-73.8727720465853,40.839751282336],[-73.87314714674842,40.838263898973096],[-73.87353901837407,40.83766841756837],[-73.8737959022252,40.83744513333405],[-73.8741976863909,40.83725079532199],[-73.8745433220594,40.83726133765947],[-73.87490851072131,40.837359609695056],[-73.8747274004063,40.837233973680654],[-73.87470145087771,40.837162311231594],[-73.8747145202419,40.83700225374522],[-73.87482228091986,40.836859480491476],[-73.8749877232997,40.836772978158656],[-73.87565111791633,40.836659549140194],[-73.87628029489369,40.836461531583446],[-73.87756524629323,40.83581875153157],[-73.87838370405677,40.83525903217003],[-73.87925239497817,40.834424789995346],[-73.88005188503385,40.83470205869834],[-73.8839009478877,40.82980281640784],[-73.8835741170671,40.82947864610113],[-73.88352018758039,40.82926018198952],[-73.88378414134571,40.82827429246237],[-73.88438705287568,40.82681728353216],[-73.88461335944243,40.82527650331888],[-73.88464602649707,40.823823537474574],[-73.88438994861654,40.822967396448554],[-73.88719405084723,40.822593528522326],[-73.8875342950517,40.82250933946978],[-73.88706248971093,40.82319027511782],[-73.88710697213956,40.82330587093799],[-73.88647552823451,40.82528542413242],[-73.88601262712382,40.828238531426095],[-73.88761307869298,40.82933741954033],[-73.88991106473179,40.830124192291144],[-73.89336041819084,40.83015253058825],[-73.89469205144239,40.8306190943945],[-73.8971722103537,40.83036883289549],[-73.8969001787522,40.83103333642682],[-73.8964729620909,40.83304756810601],[-73.89630199965588,40.8335432179973],[-73.89696589084858,40.83434214589525],[-73.8963751983027,40.834578150022004],[-73.89583107702725,40.834878551220264],[-73.895350912651,40.83523446050888],[-73.89469434268513,40.8359135740249],[-73.89430314021551,40.83618364442289],[-73.89385624321906,40.83639510172943],[-73.89337676251424,40.8365400089472],[-73.89110124772928,40.83672748163841],[-73.89057363264938,40.83690104803077],[-73.88874067915337,40.83796845937465],[-73.88841187161508,40.8385533910625],[-73.88730373141802,40.838127190700604],[-73.88659802345121,40.83927905010847],[-73.88618432100422,40.84010504497344],[-73.88464898130619,40.839174632601036],[-73.88412724483933,40.83935591930621],[-73.8827476985781,40.83859234176601],[-73.8828536509753,40.83849533547246],[-73.88246404796882,40.83824724090294],[-73.8822583123035,40.83803121818355],[-73.88200384080815,40.83744378232715],[-73.88154924659426,40.838182756683956],[-73.8811355024852,40.838622141501126],[-73.8808089531387,40.838887035925204],[-73.8805473543658,40.83919811117515],[-73.88036583763088,40.8395405069232],[-73.8802715262752,40.8398962395394],[-73.88006199559798,40.84016223473301],[-73.87841924979887,40.83999459045812],[-73.87359713633923,40.83979855543337]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN72",NTAName:"Steinway",Shape_Leng:42991.2269684,Shape_Area:57769160.1868},geometry:{type:"Polygon",coordinates:[[[-73.89183244904514,40.774880199888734],[-73.89034196030849,40.77323760502988],[-73.88997672805007,40.77372361014864],[-73.88985169959676,40.773753297363925],[-73.88975035178017,40.773717395850234],[-73.88945486903654,40.773532951629726],[-73.88942374351166,40.7730459285143],[-73.8887255133874,40.76891623912016],[-73.88842375730802,40.76880764372363],[-73.88822109389272,40.76859228956968],[-73.88770661820021,40.76683859805149],[-73.8883547111141,40.76669771380003],[-73.88918520529235,40.7662976919292],[-73.89089043694102,40.765858198110394],[-73.89183535796347,40.76622708004935],[-73.89325108788067,40.76627144523109],[-73.89349605945462,40.76595093000075],[-73.89432372021544,40.76614647123281],[-73.89595958528912,40.766431034160526],[-73.90226637229974,40.7674569444451],[-73.90275780081615,40.767503546616865],[-73.90413637780108,40.76752031781234],[-73.90446527108453,40.76758377886934],[-73.90577352969937,40.76802858875871],[-73.9175912045887,40.76990087063197],[-73.91811686452763,40.7700284866905],[-73.91770217216155,40.77039311158785],[-73.92216697479289,40.773546878028355],[-73.9227926445179,40.77396229484174],[-73.92398142938171,40.774615112688885],[-73.92302571547225,40.7753843098893],[-73.92375761330429,40.77654701151638],[-73.91796581435896,40.78125629196752],[-73.91996458792964,40.782635069039],[-73.91909034674543,40.78336764600395],[-73.91818862939189,40.78393296611367],[-73.91773807374241,40.784075951409946],[-73.91724516427522,40.78414200119836],[-73.91717118646493,40.78419348386883],[-73.9171820067962,40.784552063681936],[-73.91683276950303,40.78519139248686],[-73.91575172894562,40.78610757857808],[-73.91541718691299,40.78606392941049],[-73.915260139361,40.7861922166415],[-73.91558710139766,40.786429631165824],[-73.91423947898443,40.78785620956287],[-73.91259985845431,40.78937632913078],[-73.91222952426361,40.78917927996614],[-73.91195110905574,40.78940179722098],[-73.91207975024419,40.789521814989534],[-73.91177445569407,40.789722510408495],[-73.9116183122591,40.789586154932046],[-73.91124959039149,40.789743936302635],[-73.91113056873596,40.790114076095286],[-73.90985862991904,40.79094549378239],[-73.90677991420844,40.79037510815057],[-73.90649492923362,40.790180990344616],[-73.90251173767135,40.78947208402364],[-73.90239936084141,40.7895516201833],[-73.9020632788683,40.78949440549521],[-73.90203428533837,40.789414686426646],[-73.90077375891737,40.78914381825157],[-73.9003262974382,40.78900766282568],[-73.89961638007912,40.78840049623697],[-73.89725536717148,40.78675095694452],[-73.89693993562564,40.78662466896969],[-73.89651204913613,40.786068659025986],[-73.89635251388536,40.78617930970129],[-73.89630366030404,40.78611920156197],[-73.8965025483398,40.78605746784404],[-73.89637855982308,40.78590898059185],[-73.89621803522918,40.78601602287126],[-73.89604376668132,40.78579998748044],[-73.89624259793261,40.78574043299192],[-73.89614015089816,40.785607167288276],[-73.89598001322784,40.78571167576892],[-73.89592962975524,40.785648944313785],[-73.8961263269879,40.78559316830687],[-73.89582914377058,40.78522152738347],[-73.89683173824393,40.78442766370343],[-73.89672052239949,40.78435064397996],[-73.89678844985491,40.78432054842664],[-73.89685938880389,40.7844041204827],[-73.89708339167622,40.78425125951731],[-73.89697315561348,40.784160497966916],[-73.89874897638398,40.78278115576602],[-73.90114577552113,40.78271110609057],[-73.90172373164525,40.78212925463786],[-73.90191949285612,40.782045621351635],[-73.90217815316002,40.78178056186345],[-73.90251248041866,40.78110825085802],[-73.90267723582107,40.780594131742376],[-73.90267677081148,40.7803525715441],[-73.90257929606307,40.780289120332434],[-73.90234303882679,40.780187244804544],[-73.90218303706733,40.7803593661469],[-73.90214967411914,40.78078049395426],[-73.90203565790115,40.78120310196291],[-73.90129127618926,40.78185841927033],[-73.90121754094692,40.78181911242196],[-73.90034572668014,40.78206605451125],[-73.90034960780264,40.782164410529965],[-73.89947947752694,40.782169885937286],[-73.89865437844037,40.781995420320776],[-73.89718604699881,40.782807209962925],[-73.89711384250623,40.7827230742386],[-73.89467693139903,40.784091439283266],[-73.89455221956014,40.78407765918985],[-73.89444200402878,40.78413478596382],[-73.89444864490142,40.784198853079246],[-73.89437777934135,40.78424320348419],[-73.89427445571474,40.78420552676891],[-73.89429482356759,40.784117567826975],[-73.89443190733392,40.784123672630855],[-73.89454100171983,40.78406569129871],[-73.89455687894137,40.783973458982764],[-73.89606377738431,40.783157201805174],[-73.89477429119654,40.782253592494826],[-73.89542197971666,40.78171777101625],[-73.89535750567514,40.78165765713341],[-73.8946009177459,40.78225315898132],[-73.89524343173173,40.781692015318065],[-73.8953485046746,40.781649264981766],[-73.89534447842293,40.78158556631125],[-73.89528467911305,40.781541249254765],[-73.89513792619402,40.78172148049956],[-73.8941646912098,40.78247204677099],[-73.89381672930156,40.78238280444904],[-73.89332863295289,40.78199907250704],[-73.89306090692064,40.78184828970711],[-73.89230750203645,40.782466041573706],[-73.89229702028403,40.78253434998534],[-73.8928149448821,40.78291321498323],[-73.89274917876413,40.78296570668473],[-73.89165459189842,40.7821947815313],[-73.89171690105486,40.78214228602728],[-73.89214162714597,40.78243172650314],[-73.89224191097449,40.78241079906109],[-73.89300986246309,40.78179802356279],[-73.89227864531561,40.78130032167955],[-73.89211148854682,40.78139517920906],[-73.89208480450479,40.78137365032206],[-73.89224627026236,40.781254752297876],[-73.89192856809154,40.78104807787559],[-73.89187669335851,40.780894656769014],[-73.89174360943542,40.780905604240765],[-73.89166585639796,40.780843263748956],[-73.89159164167809,40.780581120541555],[-73.89177027864056,40.78038327582665],[-73.89253484498786,40.77977051958784],[-73.89249619293014,40.77970211219438],[-73.89254018211666,40.77955183427206],[-73.89247748773289,40.77951465264361],[-73.89236260982301,40.77955409754325],[-73.8921013766045,40.77952791573686],[-73.8918179184095,40.77958857362858],[-73.8916685976904,40.77949253890789],[-73.89150718848597,40.77909786616564],[-73.8912965852538,40.77891576446897],[-73.89119589704401,40.77856328788707],[-73.89252259927002,40.77740462898966],[-73.89213229037036,40.77709093638001],[-73.89177229718676,40.77659352115393],[-73.89153058423848,40.77647676928531],[-73.89141605902313,40.776338956736836],[-73.89140128178528,40.77604486488087],[-73.8915298715754,40.775605631198],[-73.89176577778693,40.7753571874026],[-73.89183244904514,40.774880199888734]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN05",NTAName:"Rosedale",Shape_Leng:63234.34224,Shape_Area:61526518.3603},geometry:{type:"Polygon",coordinates:[[[-73.72586264182358,40.68324108094787],[-73.72590660060678,40.68265660462404],[-73.725630051199,40.679587950781354],[-73.72619806195746,40.677380889729726],[-73.72755616356449,40.674161588191524],[-73.72753500302508,40.67393028429237],[-73.72799445680081,40.669426693583226],[-73.72826385203372,40.66807287563195],[-73.72822217040842,40.66731363905462],[-73.72827272254972,40.66642959208358],[-73.7281135139642,40.665345314939394],[-73.72787486760183,40.66469513221641],[-73.7278139239344,40.663223969478025],[-73.72808466941203,40.663071188580304],[-73.7283307187596,40.663043943731125],[-73.72793124411697,40.661748834602264],[-73.7264443867445,40.65916161492117],[-73.72592687741198,40.65773131935284],[-73.72575924933537,40.65699795878635],[-73.72555284204793,40.655039958093504],[-73.72505569119355,40.653507894144454],[-73.72509934582095,40.65234574831175],[-73.72522608107016,40.65200100014744],[-73.72649790113567,40.65166351439861],[-73.73028652972181,40.650368522674384],[-73.73207263097099,40.65008747422017],[-73.73513501472307,40.6497320404668],[-73.73904482131434,40.6482011803444],[-73.74143705976363,40.646889178319945],[-73.74166141251749,40.642198061678336],[-73.7420508488679,40.64147420452419],[-73.74142279314962,40.64050339075329],[-73.74227387226114,40.640123380948864],[-73.74125900067578,40.63889749943498],[-73.73947121560818,40.63570643182787],[-73.73995957504604,40.6351438093718],[-73.74001376732646,40.63534558672484],[-73.74020461124273,40.63526447119589],[-73.74077349047406,40.63516320006477],[-73.74076026693618,40.63512664736527],[-73.74053168178274,40.635203975421994],[-73.74052856928519,40.63517070043744],[-73.74041969158273,40.63517860666839],[-73.74042047354318,40.635144298440466],[-73.74097436060481,40.635048288238636],[-73.74098927253284,40.63510119942599],[-73.74077422547454,40.63512253533365],[-73.74078781266086,40.635161034871246],[-73.74133506687883,40.63511399839408],[-73.74164858697317,40.63505389381686],[-73.74163556420453,40.635013759726625],[-73.74169596768496,40.635001690425796],[-73.74163098371221,40.63494709088192],[-73.74144240592274,40.63496402067872],[-73.74176930792613,40.6349264577755],[-73.74170635665384,40.63495563735351],[-73.74178775322278,40.63502171947897],[-73.74200012051098,40.63498325953498],[-73.74231218319338,40.63504370812125],[-73.74246642681229,40.63511922825357],[-73.74255152661942,40.63529150158566],[-73.7424397276233,40.635371073474516],[-73.74236547732194,40.635554222996674],[-73.74241586799461,40.6355691171635],[-73.74239123952636,40.6356303001268],[-73.74243665568179,40.63564138156579],[-73.74258539843592,40.63545335666113],[-73.74243638020496,40.63571275510745],[-73.74238343507987,40.63564126234083],[-73.74236603847686,40.63569612604728],[-73.7423134040823,40.63568798395528],[-73.74208096432956,40.63609706192343],[-73.74144182667786,40.63670159032878],[-73.74124295440814,40.63693385749196],[-73.74113327509302,40.63715533874021],[-73.7409648775234,40.637304775031545],[-73.74109421928732,40.637646355176024],[-73.74137195611463,40.63794167378455],[-73.74148518992928,40.63794534516715],[-73.74189040305801,40.63812221303763],[-73.7427296623739,40.638270155980194],[-73.74334449456121,40.63817244662435],[-73.74397128496234,40.637880012614836],[-73.74403815450621,40.63798607662254],[-73.74352226304161,40.63888948637623],[-73.74373421570606,40.63902211766542],[-73.74384645782001,40.638955394109715],[-73.74402997541293,40.638652996627755],[-73.74395663263603,40.63862033552933],[-73.74403572318427,40.63844127582327],[-73.74409080312086,40.638435057939404],[-73.74422124352299,40.63801970389227],[-73.74450503170384,40.63758053347022],[-73.7446027348112,40.63754060566321],[-73.74473117199707,40.63738030809246],[-73.74467432936689,40.637285114764985],[-73.74479558082531,40.637075029074644],[-73.74483896213269,40.63708698507471],[-73.74471275577673,40.637307046895664],[-73.74489231636285,40.637169687312586],[-73.74519496900828,40.63719171231051],[-73.74592203058513,40.63676880130043],[-73.74629219000666,40.63643726798243],[-73.74661229878846,40.63658213120216],[-73.74679074640235,40.63677813554154],[-73.74676973632697,40.63689418553682],[-73.74645394367894,40.63725982088264],[-73.74527138642927,40.63791590124533],[-73.74516219973708,40.638112187973036],[-73.74532770333593,40.63837221196979],[-73.74537980558794,40.63829246099821],[-73.74567316004254,40.63812465742793],[-73.74551058317726,40.63794388103479],[-73.74643950902008,40.63742955057031],[-73.74691427132785,40.636915721550324],[-73.7469951837302,40.63689083416341],[-73.74703384087518,40.636920001522334],[-73.74699980656585,40.63735439191097],[-73.7469063289885,40.637698383041766],[-73.74677741523458,40.63784612926015],[-73.74686656900913,40.638036174461384],[-73.74674621529643,40.638247921494276],[-73.74659721918418,40.63835484859442],[-73.74649507369553,40.63897335087872],[-73.74632367979432,40.639327794588844],[-73.74637066409088,40.63942622113342],[-73.74634658498647,40.639879572055484],[-73.74617061944974,40.640396648761616],[-73.74635491427827,40.64067879398598],[-73.74627759978065,40.64091689807502],[-73.7463650672507,40.64119352254291],[-73.74631467867947,40.64139431318155],[-73.74637170390697,40.6415227543234],[-73.74654320059805,40.64169085878572],[-73.74675343234273,40.64230856137146],[-73.74688246646035,40.64240770451071],[-73.74690499727313,40.64256327743851],[-73.74702218204605,40.64263142119662],[-73.74718790372692,40.6428786916844],[-73.74729153902229,40.64318668649323],[-73.74749378765176,40.64334184951597],[-73.74763920522182,40.64356703811743],[-73.74782855595113,40.64370855739113],[-73.7479020624701,40.64385498463429],[-73.74807387886878,40.64393947855577],[-73.74813560715076,40.644070010506425],[-73.74875121261609,40.64447110335031],[-73.74869290127468,40.644903822836696],[-73.74878103332433,40.64511888049479],[-73.74886955099848,40.64514228765404],[-73.74885047914476,40.64516927011324],[-73.74900248721625,40.645168209441586],[-73.74931018247027,40.64493990464813],[-73.74946263809886,40.64493620557315],[-73.74956702594572,40.64508589678848],[-73.74977243087552,40.6451764384011],[-73.75006840047644,40.645441896643],[-73.75052794843315,40.645668596241514],[-73.75135952673871,40.64625738980275],[-73.75166631398729,40.64642309604224],[-73.75171302466914,40.64650059076871],[-73.75196717187804,40.64659775264269],[-73.75357659858086,40.64748868453928],[-73.7538896443693,40.64754260355677],[-73.75406190437579,40.647756903524126],[-73.75427809856585,40.647886422581436],[-73.75450369535285,40.647935479555414],[-73.75475592551948,40.64781219889334],[-73.75487971586813,40.64768720793928],[-73.7549276864291,40.647572721038436],[-73.75461208438024,40.64720045895546],[-73.75522386945849,40.64744446893774],[-73.7548367796809,40.64807090295891],[-73.75411086674627,40.64869766515837],[-73.76406290141571,40.65435626683103],[-73.76319000548969,40.65589805418101],[-73.76279952245356,40.65597330762487],[-73.76242965087343,40.65611060286676],[-73.76210493871439,40.656303066245634],[-73.76184429751837,40.65653695018646],[-73.76172307612265,40.65721442140605],[-73.76165732789806,40.65823808605872],[-73.76003600709586,40.65807344171397],[-73.75922652168921,40.657902236666494],[-73.75680959509802,40.657093283574106],[-73.75606608303166,40.65648646055356],[-73.75371894559217,40.65536538148456],[-73.75294892859951,40.65488504065377],[-73.75208885254426,40.65451770446507],[-73.75109427961604,40.654212441314705],[-73.74937142802769,40.65303483496704],[-73.74867194654914,40.65267808839532],[-73.74654918044816,40.65255348165744],[-73.74332546796677,40.65253780400485],[-73.74328714093889,40.65613473208685],[-73.7448742032556,40.65614455817344],[-73.74506037798072,40.65740715011941],[-73.74853177125411,40.65757569652888],[-73.74733230877439,40.659124521257944],[-73.74679260083369,40.658907622393706],[-73.7468475051505,40.66079554094166],[-73.74450922556183,40.66382127828155],[-73.74405313926896,40.66365807099304],[-73.74374970895556,40.66409039316683],[-73.7434097385489,40.66440416963765],[-73.74281884589821,40.66530554895855],[-73.73954958290831,40.66525602209151],[-73.73856469467763,40.666396898109404],[-73.74117817298486,40.66640295437327],[-73.73775794390919,40.67005754690128],[-73.7371842445494,40.67090981324917],[-73.7359343859039,40.67243297135646],[-73.73624941770629,40.67263060172311],[-73.73597469371673,40.672567421782375],[-73.73505915346198,40.67398974996725],[-73.73303223411338,40.676495026141055],[-73.73106142472689,40.67830662072249],[-73.73047301194771,40.6793479372616],[-73.72950555795234,40.680055725643854],[-73.72924739897154,40.6804309856405],[-73.72851656796784,40.68121047255993],[-73.72810238799391,40.6817656370748],[-73.72718272494006,40.68359733001875],[-73.72586264182358,40.68324108094787]]]}},{type:"Feature",properties:{BoroCode:4,BoroName:"Queens",CountyFIPS:"081",NTACode:"QN98",NTAName:"Airport",Shape_Leng:134834.90473,Shape_Area:227676231.047},geometry:{type:"MultiPolygon",coordinates:[[[[-73.74712154262471,40.63716227570791],[-73.74699985138288,40.63712702776031],[-73.74712053523142,40.63715124102519],[-73.74715781548981,40.63706052302171],[-73.74713019919567,40.63721686034209],[-73.74712154262471,40.63716227570791]]],[[[-73.74693969946729,40.63755423471126],[-73.746943206382,40.637529202176964],[-73.7470491323669,40.63754513389839],[-73.74704316342152,40.63756642645918],[-73.74693969946729,40.63755423471126]]],[[[-73.74661040472857,40.638724973885445],[-73.7465413254415,40.63869678798332],[-73.74664302817507,40.63866224930446],[-73.74666935864047,40.63870604063592],[-73.74661040472857,40.638724973885445]]],[[[-73.75327090558763,40.647333762017944],[-73.7534036542211,40.64716237460881],[-73.75323328269441,40.647052114686126],[-73.75354191901864,40.64719631232064],[-73.75342238771589,40.64717065904415],[-73.75327090558763,40.647333762017944]]],[[[-73.82503467502444,40.663580134304866],[-73.82305210566459,40.663553878135765],[-73.81791759590796,40.66295601625082],[-73.81496922485854,40.662472668234564],[-73.8133501122802,40.66264007870777],[-73.81176694941615,40.66293453537538],[-73.81116608779804,40.66317747360086],[-73.81006837021376,40.66379225210476],[-73.8084501611464,40.664461300761154],[-73.80614395972852,40.66491273021],[-73.80432050570943,40.665120733367026],[-73.80299527141307,40.66521661078048],[-73.80072889170243,40.66526937651631],[-73.79702409479808,40.66506588350798],[-73.79582296459151,40.664953255152966],[-73.78751177994283,40.66382524347271],[-73.78502513806315,40.6634210723974],[-73.78481455539668,40.663498582266875],[-73.78321833476903,40.663166283843644],[-73.78075528568306,40.66240660275569],[-73.77849144883018,40.661506302717456],[-73.77670850722292,40.6607062306817],[-73.77484922708848,40.66014868669163],[-73.77418923633385,40.65986052466045],[-73.77305501066171,40.65919975114686],[-73.76976145189289,40.65748223619175],[-73.76475455397448,40.65474689660442],[-73.75411086674627,40.64869766515837],[-73.7548367796809,40.64807090295891],[-73.75522386945849,40.64744446893774],[-73.75461208438024,40.64720045895546],[-73.75379289435507,40.64670560418428],[-73.75366003749185,40.64687113919087],[-73.75376706809158,40.646930780708125],[-73.75373770826349,40.64696042357778],[-73.75340189507159,40.64680746120924],[-73.75343611543514,40.64678154246031],[-73.75361134170434,40.64685618225785],[-73.75376146361371,40.646686322658034],[-73.75057032811957,40.64472855667385],[-73.75032661245747,40.64446083625661],[-73.7490763129122,40.64363287005161],[-73.74870701496526,40.643343492337415],[-73.74824424117854,40.6426157315801],[-73.74776524849358,40.64209484328356],[-73.74740683872068,40.6413841642013],[-73.74741303424733,40.641260614750436],[-73.74754412791826,40.64113216799398],[-73.74743443985334,40.64023892813354],[-73.74755000296491,40.639475947579086],[-73.74752877852661,40.6393244346909],[-73.74761811100983,40.6389404032066],[-73.74774229930887,40.63870113112882],[-73.74772609744191,40.63855285020453],[-73.74812488519005,40.6368727311407],[-73.74826747018606,40.6368074448122],[-73.74839815536171,40.63665363731986],[-73.7484507265556,40.635636137586175],[-73.74855478395101,40.63541155907306],[-73.74868913649006,40.63536763295428],[-73.7487963517556,40.635201031758],[-73.74935446966121,40.63494725633968],[-73.75006533878673,40.63474994402494],[-73.75048430774063,40.634709353786015],[-73.75069607040113,40.63462797576701],[-73.7510955479173,40.63435769802063],[-73.75149345255467,40.6341687266312],[-73.75157375622311,40.63404816922145],[-73.7520238550451,40.633919653282824],[-73.75243758572952,40.63367677974071],[-73.75264023618979,40.6336121151969],[-73.75294391540935,40.633622889378564],[-73.75348397724744,40.63351429107906],[-73.75352689765077,40.63345012189685],[-73.7537468078235,40.6333843644272],[-73.75375740052216,40.633330835559164],[-73.7541434201449,40.63315982554348],[-73.75457634100886,40.633058402459085],[-73.7547910030492,40.63288248836318],[-73.7551063246332,40.63282245919184],[-73.75523195109295,40.63272881131593],[-73.7553850898911,40.632778958562525],[-73.75550013749213,40.6327609734033],[-73.75568021913053,40.63258502867264],[-73.75628805722022,40.63246645049142],[-73.75635686119816,40.63241207526218],[-73.75670413872166,40.63233255273266],[-73.75679224560012,40.632264335944576],[-73.75697515731522,40.63225000458709],[-73.75738810055988,40.63210776063078],[-73.75754899435957,40.63192562533605],[-73.75773557620171,40.63182381105048],[-73.75822055766007,40.63176848947887],[-73.75843513534315,40.631677136826625],[-73.7585468924455,40.63155057003653],[-73.75900955400884,40.63148929637987],[-73.75931103945281,40.63134708962132],[-73.75945207878203,40.631152556828724],[-73.75983306493073,40.63097589642449],[-73.7600120155399,40.6309715715569],[-73.7605315977569,40.6306633166856],[-73.76077841089939,40.630672675849176],[-73.76113067890032,40.63051344412664],[-73.761287857233,40.630523348211966],[-73.76167829367836,40.630442030982174],[-73.76180640391955,40.630345122464995],[-73.76198412013521,40.63032269094309],[-73.76204439165346,40.6302514108847],[-73.76219407813964,40.63025943245389],[-73.76229401059575,40.630149153236715],[-73.7626496260419,40.62996751842521],[-73.76308789670843,40.62965889850197],[-73.76320774336028,40.629674200070475],[-73.76340728450933,40.629589148829425],[-73.76360181048362,40.62958091718033],[-73.76362880148571,40.62950508929885],[-73.76453002637288,40.629221136356946],[-73.7648748470461,40.62940425206401],[-73.7650089133915,40.62941218257571],[-73.76501893622961,40.62933633510083],[-73.76474775126266,40.62916324904615],[-73.76537023175827,40.62891167787087],[-73.7663986309527,40.62835013406254],[-73.76673277824314,40.62791322559744],[-73.76686894027348,40.62757535017434],[-73.76700006181876,40.62752778955925],[-73.76702439426931,40.62731700430014],[-73.767482561084,40.626503937260075],[-73.76772115376568,40.62619061594018],[-73.76777702988433,40.62591846391569],[-73.7682767506316,40.625335218516554],[-73.76831111967057,40.62512260030087],[-73.768604087208,40.6247327184122],[-73.76863549892575,40.62449292974459],[-73.7687823631517,40.62432279613478],[-73.76884228438178,40.62393482175409],[-73.76866759925491,40.62358869224317],[-73.7685530892061,40.62318720926891],[-73.76869442937245,40.62266565879528],[-73.76879703335723,40.62252545985768],[-73.76933924400531,40.622140155174634],[-73.76945017648235,40.622013510239604],[-73.76952135023453,40.62211848845962],[-73.76958815697641,40.621883313341854],[-73.76971463945466,40.6217766825507],[-73.76980405608228,40.62158140279659],[-73.76975585630288,40.62110662039271],[-73.77008467056805,40.62091292733552],[-73.77023670570321,40.620482894773794],[-73.7704615502413,40.62019777924461],[-73.77077016754352,40.62003118231001],[-73.77109809439831,40.620005381342935],[-73.77138995367937,40.620153017049496],[-73.77160377183132,40.62034324779969],[-73.77171003015211,40.62066926342383],[-73.77171699447132,40.62096167930056],[-73.77147609310902,40.621598272727574],[-73.77130563315403,40.621776107572664],[-73.77091499946101,40.62240388865289],[-73.77095099748469,40.62265230602201],[-73.77081128948626,40.622949747295905],[-73.77091145707946,40.62307807923107],[-73.77082069707966,40.623282997944855],[-73.77092465891758,40.62336690128194],[-73.77098537777654,40.623323774058896],[-73.77109204859092,40.62332852420286],[-73.77108337125242,40.62325564021779],[-73.77114623129718,40.623224668409385],[-73.77125194995399,40.62328477807899],[-73.77143883664012,40.623284616704936],[-73.77155510465147,40.62336221819658],[-73.77186033018587,40.62376460648487],[-73.77266148875843,40.62457090356138],[-73.77323537240514,40.624994162476916],[-73.77336936292537,40.625066194383514],[-73.77343972976126,40.625027550718116],[-73.77348668404986,40.62505922820277],[-73.7734946154863,40.6251425693696],[-73.7736434144031,40.62520859103372],[-73.77368363657929,40.62533150217383],[-73.7743598209954,40.62610454093025],[-73.77519764152214,40.62683144738579],[-73.77577816593806,40.62720810489892],[-73.77640884480091,40.62753461532189],[-73.77704080068744,40.62766646951516],[-73.77785859365459,40.62768568227273],[-73.77834251728285,40.6276188301208],[-73.77880666432452,40.6274949231464],[-73.77923952344827,40.62731703440735],[-73.7799942075571,40.626689298026015],[-73.78077688193544,40.625808503627134],[-73.78136195891634,40.624842746114815],[-73.78419483297871,40.62089266991025],[-73.78949653118146,40.62274664236032],[-73.7892582428097,40.622886051659414],[-73.78896262685669,40.623286355395116],[-73.78822856145638,40.62376512855221],[-73.78487888740891,40.626631470707885],[-73.78346558375073,40.62811814125977],[-73.7828433517429,40.62940570617631],[-73.78264543435772,40.63024796858621],[-73.7837772860904,40.63063411564776],[-73.78434764242147,40.63137332043349],[-73.78570293740455,40.63209498948074],[-73.78593974666339,40.63207190666877],[-73.78649505516204,40.63222977134527],[-73.78690666684496,40.632261900728906],[-73.78743060087142,40.63257653657211],[-73.78779972378287,40.633024190291486],[-73.78832339440352,40.63342507956285],[-73.78935406456395,40.63401030889802],[-73.78943039003697,40.63411012107755],[-73.78942717261496,40.634263035462574],[-73.78949663072326,40.6342697792021],[-73.78957614244553,40.6341495463719],[-73.78971600035342,40.63406724975945],[-73.7904246552062,40.633962592787455],[-73.79080991010974,40.63385768788399],[-73.79083876178277,40.63389933431269],[-73.79067369276746,40.634185914982666],[-73.79081111250504,40.63431035551071],[-73.79108132838627,40.63423263436698],[-73.7913087778823,40.6344013006548],[-73.79122898509738,40.63485706406985],[-73.7917470793118,40.63549302075521],[-73.79197460312479,40.63563997507452],[-73.79222317971656,40.63589008827877],[-73.79308475913263,40.63606494058697],[-73.79343369262095,40.63608669084851],[-73.79425964333726,40.6365642035497],[-73.7944305450301,40.63660220121533],[-73.79459434028972,40.636575097579644],[-73.79474387499094,40.63662936739566],[-73.79515683957266,40.63694949408203],[-73.7954345375665,40.63710142925951],[-73.79558408549565,40.637101447603165],[-73.79579770842192,40.63718284801836],[-73.79591162027056,40.63732391143808],[-73.79668777304548,40.63770917659725],[-73.79690853064227,40.637736325098935],[-73.79695123594934,40.637855680444616],[-73.79725742867073,40.63800761375768],[-73.797649100452,40.63804020586156],[-73.7982330126522,40.63830608960031],[-73.79852499122629,40.63830611856408],[-73.79863891856661,40.63840377907105],[-73.79890240949844,40.63843092836589],[-73.79908757675106,40.638371270661374],[-73.79923711983862,40.63842010970356],[-73.7997355768646,40.63872395306646],[-73.80015572081226,40.638892163654084],[-73.8004476694881,40.63913631161922],[-73.8017722018545,40.63976028395153],[-73.80297570292014,40.64027030968699],[-73.80465930175463,40.64090520949549],[-73.80565939586654,40.64160198312514],[-73.80580359615628,40.64156966415366],[-73.80608411148701,40.64160369974756],[-73.80670200675765,40.641776184672835],[-73.80864568650718,40.642814927376676],[-73.81002443101524,40.64331398271647],[-73.81075749444098,40.643492391255826],[-73.81114482981684,40.64369683260668],[-73.81147397559808,40.64398877771597],[-73.81203333683295,40.64430357504574],[-73.81278138104243,40.644505807322346],[-73.81350685093176,40.644636653826815],[-73.81391626478415,40.644861977077994],[-73.81589171154268,40.64568147708893],[-73.81617034784688,40.64588581966857],[-73.81643071613503,40.645998005629565],[-73.81673394902697,40.646066712211955],[-73.81715496119853,40.64607263116147],[-73.81761254064673,40.646140286699925],[-73.81830607821485,40.64638698285013],[-73.81865099212709,40.646598299331124],[-73.81895364817237,40.646864599410975],[-73.81952530016402,40.647596691086015],[-73.82015435122129,40.64826502638541],[-73.82113619052484,40.64902273277812],[-73.82182513638024,40.64989979559475],[-73.82195737350676,40.650220719737256],[-73.82204199276566,40.65072759338717],[-73.8222453563314,40.65113750047071],[-73.8222530706624,40.65146190149237],[-73.82253086689823,40.65213544094244],[-73.82262723689976,40.65288518865033],[-73.82314918373604,40.65402277106659],[-73.82348381110747,40.655369912718655],[-73.82340406982632,40.656080242093545],[-73.82285416151377,40.65769698749802],[-73.82246765596561,40.65915986639884],[-73.82227996087614,40.6594250079227],[-73.8216112551027,40.659935285095614],[-73.82169139439556,40.66003508624045],[-73.8216072624332,40.66006973770641],[-73.82156893575575,40.65995869387321],[-73.81970074186691,40.66072408680972],[-73.81979109615271,40.66081263078934],[-73.81971419909225,40.66087372617585],[-73.81965725287017,40.66074191904536],[-73.8186953155869,40.66110505105516],[-73.81764402333802,40.660949032430004],[-73.81763843488952,40.66099288686259],[-73.81769505282611,40.66099993255472],[-73.81767296498698,40.661059722777054],[-73.81750491431544,40.66104832620148],[-73.81756727119144,40.66093673426202],[-73.81656759308063,40.66074251661722],[-73.81613954700381,40.66071525433433],[-73.81616082290756,40.660844450234016],[-73.81598180388724,40.66083581654856],[-73.81605203034849,40.66071157370254],[-73.81546134614428,40.660663585279835],[-73.81468148791379,40.660515214761716],[-73.81467603763764,40.66065007155569],[-73.81457011758393,40.66063459713648],[-73.81462533969845,40.660506673653096],[-73.81309228037954,40.66019403855637],[-73.81262125583669,40.660157049899404],[-73.81143833778027,40.66025421077242],[-73.81129490998154,40.66037443873637],[-73.81124435357249,40.66054463906517],[-73.81145557702781,40.66073655223418],[-73.81200903755592,40.66088150891189],[-73.81286081255999,40.66100217955226],[-73.8150934515766,40.66145525142801],[-73.81707579746808,40.66178609721855],[-73.81721150566524,40.66177877634484],[-73.8176935460118,40.661910297893535],[-73.8183025971644,40.66197075873732],[-73.81849714952305,40.662051399590155],[-73.81850747271784,40.66210512530923],[-73.81867184374161,40.662132776928665],[-73.81873310883167,40.6620483457032],[-73.81886428149618,40.66204979220373],[-73.81932891077146,40.661895950386025],[-73.81992114485725,40.66166433755418],[-73.82018690070662,40.661506226570076],[-73.8203509641076,40.66150975431483],[-73.82076957625313,40.66134340553498],[-73.82151344406482,40.66097138028064],[-73.82210002328183,40.660762988343194],[-73.82238417322309,40.66059905011336],[-73.82295042258727,40.660461745096754],[-73.82338324285337,40.660205747024456],[-73.82352151896058,40.66007539025698],[-73.82408006469774,40.65848834681209],[-73.8240950964505,40.65831652422911],[-73.82387951519948,40.658257808338846],[-73.82408625349456,40.658289354849266],[-73.82410171868712,40.65809888719911],[-73.82426410867657,40.65777909268654],[-73.82404130457023,40.657755669661704],[-73.82405929133716,40.657695954020156],[-73.82426775974368,40.65774651163746],[-73.82433776322995,40.65738390179912],[-73.82444909603727,40.65719640951266],[-73.82496862375532,40.65565882975496],[-73.82498070378547,40.65543197118367],[-73.82458015110265,40.653933874995005],[-73.82443795697898,40.65371732682848],[-73.8244205047361,40.65345073379007],[-73.82426256527206,40.653169228205506],[-73.82421953050077,40.65270219830969],[-73.8239733269571,40.652111628747384],[-73.82387491897124,40.65148929582514],[-73.82370605015798,40.6511067189109],[-73.82374093220358,40.65084161894997],[-73.82353436781874,40.65038046491321],[-73.82354044904312,40.64995018145667],[-73.82339285237016,40.649354073094806],[-73.82330678473662,40.64913906765262],[-73.82318105938892,40.6491574880275],[-73.82290717766891,40.64809344600572],[-73.82303229555956,40.64801480712117],[-73.82319444111556,40.648011161680266],[-73.82349305442018,40.64844855629891],[-73.82390364725666,40.64886672013945],[-73.8239274991257,40.64916554807167],[-73.82445462973537,40.64950688365174],[-73.82466230025206,40.649723997503536],[-73.82476550004561,40.6497317130296],[-73.82482762132004,40.6496684742821],[-73.82472624668999,40.64950478119111],[-73.82474388078992,40.64943427558304],[-73.82499846516198,40.64937693088287],[-73.82521766270581,40.64954347617531],[-73.82536184791353,40.64991356569239],[-73.82548770880986,40.649892156439876],[-73.82560089732424,40.64952848695424],[-73.82572053851774,40.649469340139554],[-73.82585962102281,40.6494756015367],[-73.82595977246082,40.649536424937935],[-73.826061445654,40.64970739422563],[-73.82614483059663,40.65008184094256],[-73.8263001481182,40.650022985779664],[-73.82612305544212,40.649736041308735],[-73.82617204592007,40.649526935744824],[-73.82621814865476,40.64946864459457],[-73.82637153404082,40.64942234560773],[-73.82643931968335,40.649238243911284],[-73.82627259971969,40.64840502585514],[-73.8263924284449,40.64832434861558],[-73.82807181096602,40.65526770219994],[-73.82859942404696,40.65719697301599],[-73.82931420152828,40.65889865674548],[-73.82991335753407,40.65966566818297],[-73.83270533904124,40.66540577261344],[-73.83225430936324,40.66530100017863],[-73.82910033473578,40.66425073808711],[-73.82789758779745,40.66390630752802],[-73.82687353924473,40.66370410749188],[-73.82571228011939,40.66359314004248],[-73.82503467502444,40.663580134304866]]],[[[-73.89008921733482,40.77362643552545],[-73.89034196030849,40.77323760502988],[-73.89183244904514,40.774880199888734],[-73.89172547780649,40.77505203213401],[-73.89168935121101,40.77525473784352],[-73.89144361941385,40.77562269471024],[-73.89135801404696,40.776049407930124],[-73.8913676627334,40.77634299857852],[-73.891451857786,40.77651276927148],[-73.89126414650902,40.77685585537518],[-73.8911042266552,40.777023206974704],[-73.89112044339561,40.777124699233404],[-73.89094860701826,40.777283845173244],[-73.89056250595358,40.777403920964275],[-73.89045915776718,40.77755049725343],[-73.89046537395127,40.77770321928707],[-73.89035193082613,40.777800320274814],[-73.89017369574685,40.77785081277843],[-73.89008729416965,40.7777841926017],[-73.89002369161324,40.77724712640694],[-73.88947151209312,40.77573805652399],[-73.88958935734045,40.774958709689926],[-73.88978900756065,40.77423686116982],[-73.8898867162959,40.774017349074235],[-73.89006760152736,40.77396248325081],[-73.8901917158678,40.7736468762256],[-73.89008921733482,40.77362643552545]]],[[[-73.87287195903876,40.785975027804746],[-73.87277405940551,40.7859419214588],[-73.87280920016205,40.78590310859737],[-73.8728535000943,40.785925650610515],[-73.87287195903876,40.785975027804746]]],[[[-73.87124856242515,40.78603815125498],[-73.86978081192642,40.78533793332581],[-73.86923491765765,40.785969915418924],[-73.86918113437791,40.785943489569966],[-73.86987007434341,40.78508590706816],[-73.86943751723214,40.78363839981445],[-73.86871414242118,40.78371808605287],[-73.86860716012924,40.78380014101577],[-73.86851294930129,40.783774956105006],[-73.8684798180297,40.783690828728666],[-73.86857516888502,40.783621359116964],[-73.86871328643616,40.783696940852764],[-73.8694234479542,40.783591314917714],[-73.87048029832846,40.78230611231443],[-73.87146292358183,40.782126400740765],[-73.87255732739848,40.780821121543305],[-73.87238637036786,40.78074052747694],[-73.87218014326739,40.78052591567084],[-73.87118588705202,40.7800015988522],[-73.87019485020035,40.779546803980914],[-73.86825520270831,40.778512644075725],[-73.86615198692076,40.777590680987515],[-73.86471066497091,40.77673318625356],[-73.85921147027797,40.77408846731241],[-73.85901031945144,40.77413418740603],[-73.85892842217471,40.774095135594365],[-73.85893795943058,40.773956124872015],[-73.85773563959262,40.77338481475745],[-73.8559380688681,40.77263674156512],[-73.85505106271819,40.77219538998909],[-73.8550863591045,40.77183138777478],[-73.85518065402913,40.77178358138744],[-73.85565872554635,40.77115074024038],[-73.85645807349373,40.770320861198734],[-73.85671858865086,40.77029173826869],[-73.85738091328325,40.770570807156396],[-73.85745955790418,40.77052876067489],[-73.85752974609161,40.77038630696542],[-73.85789051085527,40.77044210670594],[-73.85820511050316,40.77032345597458],[-73.85745009449606,40.7698087055269],[-73.85669054828544,40.76938550770836],[-73.85621267610183,40.769195797757774],[-73.85614973512351,40.76898684694397],[-73.85624565746174,40.76888571419897],[-73.85663565957334,40.768940329753576],[-73.85704790328332,40.76913955594963],[-73.85767800266245,40.76827626539144],[-73.8580526194653,40.768090656371264],[-73.8585953901755,40.76748501377069],[-73.85877376553061,40.76734999560099],[-73.85937510429778,40.76707532894268],[-73.85983028214702,40.767031804699315],[-73.85998650669517,40.76695793648119],[-73.86016778943647,40.76694222727402],[-73.86069743030855,40.76701133385537],[-73.86085535944585,40.76693211808921],[-73.86092884231323,40.766941950620435],[-73.86098883676625,40.76701427074398],[-73.86103345678853,40.76725679418053],[-73.8611027721838,40.76727194253058],[-73.86118998497477,40.76720716686961],[-73.86121194395182,40.767031089935585],[-73.86131386166112,40.76694063174372],[-73.86212976522569,40.766911335364654],[-73.86222539270136,40.766894601510195],[-73.86220059780592,40.766839893247074],[-73.86226565137723,40.76680316777272],[-73.86243485599893,40.766888917529535],[-73.86268864176635,40.766875910504815],[-73.86275490196975,40.76676452492578],[-73.86272021479729,40.76667064229219],[-73.86215785661712,40.7661917579295],[-73.86216751063283,40.76604799421438],[-73.86153844305356,40.765342532217204],[-73.86043337819706,40.76386888237301],[-73.86109724401754,40.763664477590254],[-73.86340214931711,40.76645551226366],[-73.86509294082956,40.768015314737255],[-73.86606875955076,40.76879618165259],[-73.86728193815232,40.76965000278882],[-73.86889382724557,40.770649021897334],[-73.86943719763977,40.77092448203004],[-73.87016128312375,40.77120898537657],[-73.87143357341982,40.771576467221315],[-73.87272561654662,40.77173664268973],[-73.87426330490005,40.771753387500155],[-73.87517573347569,40.77167671112634],[-73.87601656518724,40.7715510440502],[-73.877045371829,40.7713165290767],[-73.87781416319974,40.77107045683774],[-73.8785491567377,40.77077199556588],[-73.87961158784404,40.77023244796596],[-73.88159926405389,40.76912585191345],[-73.88356593628768,40.768180445161946],[-73.88506266082882,40.767598942589416],[-73.88602554198903,40.767282958202564],[-73.88770661820021,40.76683859805149],[-73.88822109389272,40.76859228956968],[-73.88842375730802,40.76880764372363],[-73.8887255133874,40.76891623912016],[-73.88942374351166,40.7730459285143],[-73.88945486903654,40.773532951629726],[-73.88779843805138,40.77371129742459],[-73.88767940155553,40.773818791723215],[-73.88580762220548,40.7740222244747],[-73.88583361627498,40.77410924044051],[-73.88566947657928,40.774126056083816],[-73.88571221642918,40.77432177112156],[-73.88565054964832,40.77432545748957],[-73.8856700766504,40.77443307121685],[-73.88562650739915,40.77443763928946],[-73.88560236103582,40.77430456393903],[-73.88566773133996,40.7743055879047],[-73.88563231035376,40.77409707478858],[-73.88578804109305,40.77408756570368],[-73.88578473697667,40.7740247121645],[-73.88431556689008,40.77418436398407],[-73.88408262529133,40.774104480144004],[-73.88391627963809,40.774132606591536],[-73.88393168218266,40.77418464435182],[-73.88410836235337,40.77416708239301],[-73.88455150598264,40.7743606223328],[-73.88465982594323,40.77448010120947],[-73.88483742391051,40.77495298074563],[-73.88485536014247,40.7751022120742],[-73.8847736197344,40.77533228058715],[-73.88445519420905,40.77546480385047],[-73.88428737712128,40.77547205616598],[-73.88440957187987,40.77554936087727],[-73.88475744404437,40.77725413868521],[-73.88505522658453,40.77840531274413],[-73.88525027052705,40.778612901743095],[-73.88521875876134,40.778661362804364],[-73.88508345876629,40.77867131316195],[-73.88505291740952,40.778775435672046],[-73.88512416435387,40.77906120928298],[-73.88493466315248,40.77993691180114],[-73.88478225021102,40.780038480497865],[-73.88445032543243,40.78015460132551],[-73.8838520321957,40.780264319754494],[-73.88325271375172,40.78026542290144],[-73.88324038254832,40.78032572327378],[-73.88290491186557,40.78034869723974],[-73.88287851751461,40.78023631960674],[-73.88274449717308,40.780223423067],[-73.88264030510992,40.780285856953746],[-73.88215899790468,40.780367867563776],[-73.88202629453599,40.78048504252266],[-73.88168407749826,40.7805000626395],[-73.88139075919443,40.78060160840733],[-73.88075025782261,40.78057432574292],[-73.87973466843023,40.78065481804983],[-73.87958646834805,40.7806981098549],[-73.8796069243287,40.78085031306524],[-73.87947468643911,40.780856951075066],[-73.87947341303457,40.780702688914154],[-73.87935806102325,40.78065668012802],[-73.87930409174356,40.78075940788081],[-73.87920483851629,40.78076738933482],[-73.87913370828673,40.78067822837706],[-73.87892488684261,40.78067355215147],[-73.87870562518967,40.78058590944748],[-73.879051157593,40.781730532358885],[-73.87930868295156,40.78185365833229],[-73.87885837419476,40.78239817868048],[-73.87974777853675,40.782836563704464],[-73.87970163672254,40.78288281807227],[-73.87970469012969,40.782837648358694],[-73.87945679621485,40.78271542259357],[-73.87942106533065,40.78275604079165],[-73.87943006869378,40.78270635948333],[-73.87914654749963,40.78256828505003],[-73.8790602451592,40.78264047102354],[-73.87912427592002,40.78256035616554],[-73.87883146781745,40.782430714494346],[-73.87833923298064,40.78302592074942],[-73.87515754893558,40.7815094486481],[-73.87484527331483,40.781684924075265],[-73.87124856242515,40.78603815125498]]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI54",NTAName:"Great Kills",Shape_Leng:66121.3966987,Shape_Area:89595418.6078},geometry:{type:"Polygon",coordinates:[[[-74.14438745026591,40.56970610066721],[-74.14131233629854,40.568433347748844],[-74.13651149229386,40.566166621597596],[-74.13591592627503,40.56581796040066],[-74.13527417288597,40.565517760618285],[-74.13459671279753,40.56527093390659],[-74.13240280430779,40.564760999845035],[-74.13170009026001,40.564535749607444],[-74.13264384036233,40.563503334911445],[-74.13310979289086,40.56286769186494],[-74.13340740082342,40.562129805701275],[-74.13367116316103,40.561840934449805],[-74.13480973431129,40.56082861823106],[-74.1353036351682,40.559425089388924],[-74.13561300319121,40.55898002628034],[-74.13574932448064,40.558850045426375],[-74.13660029409272,40.55838893918369],[-74.13818001022909,40.55759386549125],[-74.13885092749412,40.556951178864324],[-74.13316825933344,40.552356179160014],[-74.13455868225847,40.55125507820348],[-74.13607343371179,40.55043330027401],[-74.1376973159297,40.54938354642941],[-74.13861798547457,40.54849238427013],[-74.13744805322531,40.54730532896806],[-74.13700629754594,40.546967771005534],[-74.13585712566037,40.54645169570962],[-74.1364115311903,40.54625235004183],[-74.1364906305002,40.546073224452414],[-74.136459122478,40.54597500747591],[-74.13651613439173,40.54591474713252],[-74.13697129151102,40.54597498790271],[-74.13706446125549,40.545957496482096],[-74.13702342911233,40.54588496435267],[-74.13709627808751,40.54595221765438],[-74.13713259013673,40.54593097435955],[-74.13706316638003,40.54586400799227],[-74.13717987195754,40.545792864659795],[-74.13626085280933,40.54496329743594],[-74.13611540658175,40.545019845680606],[-74.13638379801961,40.54485467150625],[-74.13628433306943,40.54494704058852],[-74.13719287519716,40.545784294700034],[-74.13750833508851,40.545577557238666],[-74.13673370227262,40.54480374202303],[-74.1365890713694,40.54484548609513],[-74.13687348630866,40.544682593910004],[-74.13674888822909,40.54478258447971],[-74.1374243468369,40.54546624754624],[-74.13750289960264,40.54542009226411],[-74.13752994376456,40.54544842357092],[-74.13744723484227,40.545494369742755],[-74.13794966050548,40.54600033657545],[-74.13841060951412,40.54560641420968],[-74.13868599039287,40.54543627732879],[-74.13886951274534,40.545130197608046],[-74.13869488246426,40.54499107030503],[-74.13872158659859,40.54492928692835],[-74.13810404127018,40.54449899058026],[-74.13804143984669,40.54454775280432],[-74.13762430745139,40.544253566418256],[-74.13775620755669,40.54414492877815],[-74.13767918244183,40.54425862571877],[-74.13802791690088,40.54450591616898],[-74.13810064050064,40.54445865189582],[-74.1387553470346,40.544933958426824],[-74.13901965079312,40.5447155610299],[-74.13798990098438,40.54399004328751],[-74.13786798524539,40.54405254413092],[-74.13804346897702,40.543904561961156],[-74.13801001828881,40.543971226914486],[-74.13903307178522,40.544704909797424],[-74.13953937981628,40.54429514087133],[-74.13943253002648,40.54421721751614],[-74.13910838810352,40.544472957984915],[-74.13914541346126,40.5445095801199],[-74.13903265990318,40.54442809733308],[-74.13909334860314,40.54446068887004],[-74.13942069337882,40.54420594353718],[-74.1392876729529,40.54411658940458],[-74.13897454226765,40.54437610181967],[-74.13890743048371,40.54432897553265],[-74.1389719325266,40.54434889623383],[-74.13915675876315,40.544198110506585],[-74.13924591987258,40.544121518691014],[-74.13922032859708,40.54406669966862],[-74.13908266920896,40.54396822488312],[-74.1388390042488,40.544173520083206],[-74.1388757038836,40.544243557934806],[-74.1387281244596,40.54413002253503],[-74.13882839412128,40.544159240744065],[-74.13907750658645,40.54396015316563],[-74.13883460585514,40.54379135838786],[-74.13853753444741,40.544041488612976],[-74.13858581224991,40.544104638489486],[-74.13841535772727,40.54397842681448],[-74.1385117440292,40.54402358193406],[-74.1388232546166,40.54378405489583],[-74.13853996334105,40.54358792768674],[-74.13846184017433,40.54371528689629],[-74.13835645886172,40.54365220578565],[-74.13820667332853,40.54377367785666],[-74.13827964521946,40.54386669456972],[-74.13815068621103,40.54377203675711],[-74.13836531286421,40.54360179918778],[-74.13843929396374,40.54364185561124],[-74.13852649810464,40.54357854230525],[-74.13844148726758,40.543619644662286],[-74.13841121199927,40.543598327594495],[-74.13848274781854,40.54353930304901],[-74.13844671628989,40.54351555168257],[-74.13837491744675,40.54357651886772],[-74.13834151288614,40.54355182780882],[-74.13852282835141,40.54340155074927],[-74.13855597756981,40.543424155475236],[-74.13845972033755,40.543506285990695],[-74.13849280865536,40.54353074955567],[-74.13859005306274,40.54345034036659],[-74.1386203296549,40.54347251212493],[-74.13853314542554,40.54354436734084],[-74.13956971698569,40.5442722748305],[-74.139836977861,40.544052462340794],[-74.138946327733,40.543407398682625],[-74.13891041452025,40.54343226458058],[-74.1387063239728,40.54329141083438],[-74.13890636539453,40.5431317776023],[-74.13877140226839,40.54329133220292],[-74.13886061144125,40.5433656938725],[-74.13903671922965,40.54322699394061],[-74.13894447378168,40.54333946290858],[-74.13898355608603,40.54338441137289],[-74.13967640480689,40.543888995858616],[-74.1398889740626,40.543752471884915],[-74.13970350694184,40.543908777186225],[-74.13986527264345,40.544026844009466],[-74.1400411597063,40.543883999623795],[-74.14001283835925,40.54383042684477],[-74.14031078079755,40.544050402054864],[-74.14038573073623,40.54403318500783],[-74.1404605472215,40.54393201735577],[-74.14032848694389,40.54380208676849],[-74.14023491245446,40.543826108315805],[-74.14028458104868,40.543771625127505],[-74.13934994841908,40.543096085094135],[-74.13921993485886,40.54316608513784],[-74.13940810077389,40.54301658408264],[-74.13938508033546,40.54308878186185],[-74.14022641531267,40.54369606282557],[-74.14029571947168,40.5436404571555],[-74.14012638219604,40.543513393416866],[-74.14028734604997,40.543385071118294],[-74.13945753506572,40.54278560209764],[-74.13936132804032,40.542825863998644],[-74.1395368154802,40.54268215086976],[-74.13947877271562,40.54276849257687],[-74.14030634258137,40.54336711011436],[-74.14062715566953,40.543113029692485],[-74.13975584890447,40.54248115565517],[-74.13965860486509,40.54256071110168],[-74.13963169074167,40.54254109756618],[-74.13985859891679,40.54235717512913],[-74.13977484776484,40.5424640477987],[-74.14064614869822,40.5430942149021],[-74.14084520369617,40.54293884447564],[-74.14104442710018,40.54308698562552],[-74.14109069897195,40.543052055355815],[-74.1409842195068,40.542948997587295],[-74.14125673409744,40.54315014688867],[-74.14132426794245,40.543094133830195],[-74.1403850065582,40.5424207708631],[-74.14043778311081,40.54238217504696],[-74.14040685334776,40.54236085545042],[-74.14028673435253,40.54245578801547],[-74.14016510037462,40.542366218433486],[-74.14033528229646,40.54222820875692],[-74.14020723606579,40.54236522429833],[-74.14028630244326,40.542422126530155],[-74.14040656234813,40.54232708255287],[-74.14048119210136,40.54238203751121],[-74.1404271920767,40.54242466294005],[-74.14129718766438,40.54306128818112],[-74.14133387500648,40.54308616532598],[-74.14141073560407,40.543022415080344],[-74.14107892184941,40.54279117185076],[-74.14116147902939,40.54271867371481],[-74.14108436804699,40.54263891370385],[-74.14129511846846,40.54276877075364],[-74.14132653105817,40.54274704748731],[-74.14114311299072,40.542587658851346],[-74.14124949366257,40.542660340856315],[-74.14133547192978,40.542588792470205],[-74.14121958022263,40.54255555315848],[-74.14125011203609,40.54253149847265],[-74.14056897693312,40.542052568688916],[-74.14046378256691,40.5421274425359],[-74.14026290400702,40.54196151152259],[-74.1402951165258,40.5419342304149],[-74.14049581011312,40.54206085532392],[-74.14067998093047,40.541908592971026],[-74.14059472343253,40.542016506610146],[-74.14061919911957,40.54205602164382],[-74.1413490144548,40.542577523130745],[-74.14146151585442,40.54248390222387],[-74.14129442123694,40.542335875885676],[-74.14148097474451,40.54246770907045],[-74.1415310943973,40.54242600080051],[-74.14134854694551,40.54229046487087],[-74.14154957905978,40.54241061750453],[-74.14179720022932,40.542200415381544],[-74.14089451024635,40.54157111018832],[-74.14084633142176,40.54155550672842],[-74.14063984238012,40.54169454203644],[-74.14095816832892,40.541432077964956],[-74.14089477583406,40.54153709486049],[-74.14181267772769,40.54218676935905],[-74.14187307971929,40.54216665812938],[-74.14167226243084,40.5423354640952],[-74.1418620810768,40.542356664700094],[-74.1421346774549,40.54224093497721],[-74.14223354913703,40.54230689450631],[-74.14229632246163,40.5422578491555],[-74.14218344286573,40.54201786054908],[-74.14235183775378,40.54168143281408],[-74.14233794435441,40.541512647751155],[-74.14247662235955,40.5413337097748],[-74.14220447599386,40.54096226739732],[-74.14226793903994,40.54080754429886],[-74.14204152478361,40.54064981042439],[-74.14207489936223,40.540513452790236],[-74.14190836281283,40.540364093765334],[-74.14190488174208,40.54021670143936],[-74.1417766138326,40.54008845633471],[-74.14188655355451,40.539987209324885],[-74.1418406347504,40.539745922649495],[-74.14198428949601,40.53966199035749],[-74.14200459282478,40.53956795916433],[-74.14172892651297,40.53933948409702],[-74.14188783643361,40.53920974740553],[-74.14221934639856,40.53913924946781],[-74.14230351275852,40.53906997528963],[-74.14223700269807,40.53903065424876],[-74.1423383157749,40.53894919040833],[-74.14176587859643,40.538542040998934],[-74.14226513073875,40.53814035366387],[-74.14186762291462,40.53844409071919],[-74.14183789388265,40.53842162042675],[-74.14222992294656,40.53811445287462],[-74.14207893578237,40.538003964285885],[-74.14216718019145,40.53793276106813],[-74.14121865335552,40.53725399843246],[-74.14104157916339,40.53734688446206],[-74.14129825471825,40.537138177948336],[-74.14124113117467,40.53723469173325],[-74.14218574907545,40.53791777728546],[-74.142389636896,40.53775326000219],[-74.14158287690893,40.53708757795238],[-74.14173410572278,40.53703951087473],[-74.14305162613799,40.53723987385643],[-74.14354145739513,40.53724231719252],[-74.14374951247932,40.53719106132789],[-74.14418283420292,40.53679403138618],[-74.14455507323936,40.53594693127205],[-74.14474069813582,40.535801044211155],[-74.14536324652654,40.53585635639384],[-74.14602008284659,40.53555352772028],[-74.14594981064472,40.5354323197582],[-74.14599669549219,40.53539039281268],[-74.14625512927715,40.535538684733424],[-74.14701525183808,40.53532447244461],[-74.14794320046134,40.53492301699291],[-74.1492173326397,40.53424158776087],[-74.14977717489235,40.533887868801514],[-74.14971830290303,40.53349191002238],[-74.14975846488983,40.5334243027518],[-74.15030045370445,40.53292272186505],[-74.15021506172349,40.53289734521889],[-74.15026788636533,40.53285690093626],[-74.150315444394,40.53290835175503],[-74.15069553618278,40.532545838937075],[-74.15112025690524,40.532741382506636],[-74.15175798831618,40.53240179402802],[-74.15168241267865,40.53227642286037],[-74.15185337744485,40.5321640210233],[-74.15210198469319,40.532175024136265],[-74.1524566093669,40.53206794400087],[-74.15413110791103,40.53072291125634],[-74.15404749949808,40.53059456484163],[-74.1542146776864,40.53066536709027],[-74.15438294847289,40.53052909886334],[-74.1543450727082,40.53048064990348],[-74.1545354540469,40.530304909365526],[-74.15464111999786,40.53033463792171],[-74.15469794965067,40.53024888010287],[-74.1544965236643,40.530102166861084],[-74.15454357374342,40.53006213580102],[-74.15492894849399,40.53022548357562],[-74.15526769333619,40.529998215995356],[-74.15564782405185,40.52964298409474],[-74.1554708552025,40.52947750547081],[-74.1555035725126,40.52943802633767],[-74.15573153434924,40.52960090402981],[-74.15622373888647,40.52921970835751],[-74.15644868150018,40.528931841701315],[-74.15613437499995,40.52864936881949],[-74.15618731918201,40.52861137109075],[-74.15667105208162,40.52899331160718],[-74.1567691791298,40.52902316325276],[-74.15701861946272,40.52897765580954],[-74.15826103107301,40.52830049916292],[-74.15797239457906,40.528067085844384],[-74.15832645126989,40.528278426783096],[-74.1589018071457,40.527935908562704],[-74.15939460542255,40.52742775214438],[-74.15970134520087,40.527295992328916],[-74.15988277050924,40.527369358046286],[-74.1613496173999,40.52937342427455],[-74.15690813828121,40.53126202829749],[-74.15668876980254,40.53142883571354],[-74.15397419819314,40.53426814806849],[-74.15704288111976,40.5359670717434],[-74.15786625465513,40.536558095178556],[-74.16359221522823,40.542642145951454],[-74.16423141002863,40.54330115924618],[-74.1652605524717,40.544239608788594],[-74.16540080744943,40.544432723040146],[-74.16574238458435,40.54539770524347],[-74.1662332730118,40.54734247915807],[-74.16683255386236,40.54777899581468],[-74.16707279112153,40.548163067336596],[-74.16977469869263,40.56038818775358],[-74.16982582316331,40.56109042060551],[-74.16494149359352,40.56011179663258],[-74.16377941590187,40.56031697962191],[-74.16153130149277,40.561269354478966],[-74.16096801899046,40.56146020155332],[-74.15825784169212,40.56220197681923],[-74.15725974217555,40.562553319372135],[-74.15698100830672,40.562699720803465],[-74.15585090436464,40.563774444719186],[-74.15502927887161,40.56509341371702],[-74.15466447730829,40.56551344268438],[-74.15357985597261,40.566253186135604],[-74.15171497230571,40.56788728420442],[-74.15077469870542,40.56856871762297],[-74.1479014223684,40.57088958110743],[-74.14720574363396,40.57053278108678],[-74.14692022290576,40.57050644498346],[-74.14659317318248,40.570554156842974],[-74.14634725367158,40.57051823376788],[-74.14438745026591,40.56970610066721]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI24",NTAName:"Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill",Shape_Leng:75920.5160306,Shape_Area:184851561.199},geometry:{type:"Polygon",coordinates:[[[-74.09776968697935,40.610623592940705],[-74.0955582976852,40.6106247780369],[-74.09446404943486,40.61048521881021],[-74.0930568561993,40.61011993573729],[-74.09045495931399,40.60909452637655],[-74.09140973749905,40.60822629838744],[-74.09172937265147,40.607721192126775],[-74.09239912857237,40.60707228919449],[-74.09264555623331,40.606662839304796],[-74.09271908066323,40.60636222204792],[-74.0924414525224,40.60411958645066],[-74.09290036432493,40.60135887234328],[-74.09283746578745,40.60108923400574],[-74.09227904334888,40.60034541023416],[-74.09197184913326,40.5998242633135],[-74.0917989246505,40.599318210144716],[-74.09172051497967,40.59922085701051],[-74.09178257454676,40.59871923931009],[-74.09272305203629,40.597464263626975],[-74.09375453841174,40.59674489030654],[-74.09427668467899,40.59644927099703],[-74.09490220867417,40.59629562262137],[-74.095861927425,40.59595088889728],[-74.09722072934925,40.595365155347224],[-74.09979588970076,40.593871365521196],[-74.10041498984674,40.59334309266038],[-74.10081739424686,40.59266873468457],[-74.10097579686264,40.59183223435309],[-74.1008825166254,40.59017921564113],[-74.10149482279654,40.589344261004356],[-74.10207990052137,40.58874175118822],[-74.10454864613253,40.5865006485479],[-74.10790851648575,40.58368563778321],[-74.10924835608031,40.58267841303536],[-74.11127706512289,40.581790728791844],[-74.11306954465174,40.58076852241678],[-74.11367299833222,40.580312936685786],[-74.11481941463228,40.57917687460009],[-74.11562578100781,40.57847975281134],[-74.11588397217112,40.578383694537585],[-74.1166329406589,40.57830047602642],[-74.1170207849174,40.57819692643235],[-74.11757610185813,40.57770348391098],[-74.11844855636876,40.57665868096623],[-74.1191095486319,40.576157251726386],[-74.11978567494381,40.5758155559876],[-74.12153728906142,40.57515325257939],[-74.12175740004838,40.575111793629375],[-74.12209602127048,40.575132587375165],[-74.12289127729672,40.575640545849055],[-74.12333955263699,40.57578698613066],[-74.1251333390426,40.57587998803136],[-74.12563664107307,40.5759734444813],[-74.12665688938009,40.57628493291613],[-74.12708721366043,40.57637160863517],[-74.12729942595539,40.57578271488865],[-74.12765358202358,40.575234942563476],[-74.13261022991023,40.57353016327037],[-74.13378794114931,40.57329697458555],[-74.14418588207405,40.57203740950227],[-74.14387453553128,40.570606594189805],[-74.14438745026591,40.56970610066721],[-74.14634725367158,40.57051823376788],[-74.14659317318248,40.570554156842974],[-74.14692022290576,40.57050644498346],[-74.14720574363396,40.57053278108678],[-74.1479014223684,40.57088958110743],[-74.15077469870542,40.56856871762297],[-74.15171497230571,40.56788728420442],[-74.15357985597261,40.566253186135604],[-74.15466447730829,40.56551344268438],[-74.15502927887161,40.56509341371702],[-74.15585090436464,40.563774444719186],[-74.15685884115275,40.562789094072286],[-74.15725974217555,40.562553319372135],[-74.15825784169212,40.56220197681923],[-74.16096801899046,40.56146020155332],[-74.16153130149277,40.561269354478966],[-74.16377941590187,40.56031697962191],[-74.16494149359352,40.56011179663258],[-74.16982582316331,40.56109042060551],[-74.16962643418672,40.56829840962703],[-74.1696855881454,40.56959152118392],[-74.16994243590669,40.57190862076039],[-74.16995465642665,40.57345803830359],[-74.16962345008565,40.57842904391853],[-74.168429162774,40.58649792324047],[-74.16796294073042,40.588304028666],[-74.16770593043519,40.588820819784694],[-74.16578641259233,40.5907078038004],[-74.16323016948155,40.59257129408526],[-74.16261028361865,40.59315453244862],[-74.16219305322508,40.59384151639109],[-74.16200420840285,40.59432634264854],[-74.16188841107332,40.594837457613465],[-74.16189940578211,40.59529877113198],[-74.16025756093406,40.59534393813316],[-74.15989227948343,40.59517014157221],[-74.15610300430006,40.593047475550506],[-74.15537259655407,40.592597338963515],[-74.14972777163992,40.58949250358195],[-74.14846882501762,40.5886985419927],[-74.14819807748574,40.588599680504984],[-74.14790576542231,40.58855634617002],[-74.14636402137597,40.58855786922573],[-74.14387326730917,40.588615299377],[-74.14168277456251,40.58874118495153],[-74.13864458593694,40.589060804809776],[-74.13849744236346,40.58931370523234],[-74.13659957140696,40.59166794779334],[-74.13639761390274,40.59197345705154],[-74.1351017678228,40.594535032674735],[-74.13378749564957,40.596330532161616],[-74.13281306469479,40.59724097358987],[-74.13205430801169,40.597818705713486],[-74.13123935852082,40.59830974875968],[-74.13099847667208,40.5986215420735],[-74.13091909425592,40.598855048153986],[-74.12798105653137,40.59842483609134],[-74.12545223411504,40.59813734974918],[-74.12506115510087,40.59818005633407],[-74.12470164773828,40.59830492609312],[-74.12322499734954,40.59909695322756],[-74.1231857906992,40.59919511584047],[-74.12264348705796,40.59941858473046],[-74.1222942505616,40.599687177518796],[-74.12070424315331,40.60070598094703],[-74.12059578084879,40.60086693733128],[-74.1205557676572,40.60104529194858],[-74.12059546276707,40.601809758239554],[-74.11684368719311,40.601894807453775],[-74.11500031023066,40.602074285992515],[-74.11487058414056,40.60213665954404],[-74.1151134259586,40.60253381737307],[-74.1158771640141,40.607257470533895],[-74.11615857789457,40.60748094796884],[-74.11649318843428,40.60765675164923],[-74.11706965273336,40.60820624975493],[-74.1174246645393,40.60928900941378],[-74.11834442054459,40.60914412673404],[-74.1211687988175,40.60883437596133],[-74.12135179626337,40.60976526866158],[-74.11687458182021,40.61097182592981],[-74.11566833840763,40.611175384412796],[-74.11508745369106,40.611209431934924],[-74.11392707095423,40.611176682543764],[-74.11327407950706,40.611097937548465],[-74.11047956436134,40.610418656145356],[-74.11000934118235,40.610336205547085],[-74.10890146158111,40.61025158549936],[-74.10722963838855,40.6102524453156],[-74.09776968697935,40.610623592940705]]]}},{type:"Feature",properties:{BoroCode:5,BoroName:"Staten Island",CountyFIPS:"085",NTACode:"SI36",NTAName:"Old Town-Dongan Hills-South Beach",Shape_Leng:41963.8998374,Shape_Area:67010738.4673},geometry:{type:"Polygon",coordinates:[[[-74.06503332356229,40.58899099836786],[-74.06503309568006,40.58890931419595],[-74.06436003721247,40.58826789117477],[-74.06440881600243,40.58823892431611],[-74.06458752315086,40.58840315741567],[-74.06477832967069,40.588488310726035],[-74.06593797099981,40.587606097795565],[-74.06722276816888,40.58673444925749],[-74.06980790960714,40.58430404171477],[-74.07021154289359,40.58398135670634],[-74.07096310116125,40.583181990403],[-74.07144837661535,40.58243406796408],[-74.07149180521229,40.58216878265244],[-74.070595337333,40.58169054342507],[-74.07065781603734,40.58162562503731],[-74.07146670932954,40.58202724339551],[-74.07177638431078,40.581876534158816],[-74.07335389590737,40.580678938636325],[-74.07499413073513,40.5792365574163],[-74.0748231878456,40.579098932964285],[-74.07458930110093,40.57902382475474],[-74.0744099388447,40.57887798179732],[-74.07415036416725,40.57879154657361],[-74.07397209101522,40.57864660956757],[-74.07370920047453,40.57855878565611],[-74.07350591302134,40.57840175125001],[-74.07345235029632,40.57838146400724],[-74.07337751844594,40.57845929629345],[-74.07332032562418,40.57845733300801],[-74.07336118472104,40.57827548828914],[-74.07355146657478,40.57819839300048],[-74.07357532163513,40.57823564333185],[-74.07349669675462,40.57832795971443],[-74.07508288126705,40.57916015875599],[-74.07579819606627,40.578309250650186],[-74.07523453617961,40.57799880325316],[-74.07534622582348,40.57788796906914],[-74.07601597043818,40.5782449122898],[-74.07639928332603,40.57799485505294],[-74.07629741084355,40.577898625092914],[-74.07649283077296,40.57796084612531],[-74.07688226472023,40.57763678890631],[-74.07691552896398,40.57757950001259],[-74.07673747616742,40.57737250932542],[-74.07693881528643,40.577534344586134],[-74.07737472522427,40.57728215840299],[-74.07877412894703,40.57601082224551],[-74.07926321256907,40.57567129220568],[-74.07867933938915,40.57508182522332],[-74.078751853163,40.575042125637175],[-74.07933640538258,40.57562720401687],[-74.08017867442048,40.57518041825944],[-74.0809068321709,40.574689804249424],[-74.08300620740233,40.57278557004957],[-74.08359916126932,40.572371475370055],[-74.0846907599143,40.57147791393974],[-74.08597647495837,40.572236970889335],[-74.08765791371692,40.573012664632145],[-74.0877504173701,40.57311057975258],[-74.09032842535407,40.57451533615703],[-74.10039083428772,40.57968866610738],[-74.09844000868472,40.58124170600675],[-74.10525775474657,40.5859214357348],[-74.10454864613253,40.5865006485479],[-74.10207990052137,40.58874175118822],[-74.10149482279654,40.589344261004356],[-74.1008825166254,40.59017921564113],[-74.10097579686264,40.59183223435309],[-74.10083052326377,40.592632305798816],[-74.10064730218204,40.59301670171994],[-74.10041498984674,40.59334309266038],[-74.09979588970076,40.593871365521196],[-74.09722072934925,40.595365155347224],[-74.095861927425,40.59595088889728],[-74.09490220867417,40.59629562262137],[-74.09427668467899,40.59644927099703],[-74.09375453841174,40.59674489030654],[-74.09272305203629,40.597464263626975],[-74.09178257454676,40.59871923931009],[-74.09172051497967,40.59922085701051],[-74.09161330405925,40.599261561666225],[-74.0903607391626,40.60040036362649],[-74.08983655911115,40.600774094667116],[-74.08947630573043,40.600904321586455],[-74.08830670400332,40.6011077802754],[-74.08647535888487,40.601268961871625],[-74.08520894220315,40.60160095805182],[-74.08457153399381,40.60182247994871],[-74.08383802510475,40.601925767381],[-74.08281516077977,40.60197418227431],[-74.08218729319182,40.60194100804497],[-74.08184498190191,40.601535197279674],[-74.08125785872099,40.60067884767457],[-74.08116420928465,40.60020655437918],[-74.08130343818564,40.599387655601085],[-74.08149422089154,40.59908199089587],[-74.08248303376423,40.59832980778123],[-74.08469129658782,40.597507132383335],[-74.08497132861909,40.59732510951603],[-74.0854741404528,40.59683381658678],[-74.08587511934059,40.59589012125579],[-74.08406968690541,40.59549627040922],[-74.08376862327286,40.595520957415616],[-74.08304163562967,40.59422972077425],[-74.08173343020637,40.59215628569231],[-74.07846693758701,40.59330001196937],[-74.07888191676804,40.59394279178397],[-74.07043976119891,40.59673474668101],[-74.06795227254425,40.59208368336296],[-74.06728410703693,40.590986202943164],[-74.06662559502345,40.590342019703954],[-74.06651182892097,40.59034492205105],[-74.06577682854278,40.590021391139935],[-74.06571835045285,40.589908102724785],[-74.06580036064389,40.58974660993641],[-74.06503332356229,40.58899099836786]]]}},{type:"Feature",properties:{BoroCode:2,BoroName:"Bronx",CountyFIPS:"005",NTACode:"BX29",NTAName:"Spuyten Duyvil-Kingsbridge",Shape_Leng:27988.7385483,Shape_Area:23223450.4216},geometry:{type:"Polygon",coordinates:[[[-73.89787887465393,40.89027610124152],[-73.8993642685055,40.887249090202886],[-73.89978252141954,40.886529123507984],[-73.89661546555914,40.88595525550792],[-73.89855059942444,40.8843747270919],[-73.9015065841932,40.880954906321385],[-73.90333605372308,40.87897514559692],[-73.90369454788232,40.878501618269176],[-73.9038983378116,40.87812110805264],[-73.90480365002759,40.87571153747315],[-73.90607917977971,40.87324242069396],[-73.9074648979431,40.873547354236386],[-73.9066653094113,40.875715608995364],[-73.90681873007055,40.876619587786436],[-73.90703748870499,40.876895160707534],[-73.90765281705261,40.877428022859384],[-73.90906236038339,40.87848678281206],[-73.9094983211747,40.8787767321817],[-73.91033193566423,40.87903804730721],[-73.91148913190445,40.879018858809516],[-73.91205829964026,40.87811932004812],[-73.91487449173466,40.87664214631953],[-73.9157860927398,40.8757171829603],[-73.91726028337294,40.87580900358055],[-73.91775669395919,40.875663627860675],[-73.91799187160976,40.87580442889597],[-73.91832983767522,40.87583697633147],[-73.9190832635702,40.87606488182628],[-73.91978381299002,40.876421436608936],[-73.9197837166925,40.87650125542546],[-73.9199689387989,40.87654889581077],[-73.92006899608671,40.8766268836581],[-73.92025638965015,40.876951990277064],[-73.92206723651887,40.87857241480294],[-73.92248829893144,40.87870664479068],[-73.92273788287527,40.878905445427876],[-73.92295065367482,40.87895499881197],[-73.92309319848665,40.87890555593467],[-73.92318603906142,40.87893615245191],[-73.92330375396061,40.87890772274109],[-73.92451795851093,40.87905865905932],[-73.92458061680503,40.87900358708453],[-73.92465572020939,40.87901503923794],[-73.92477853460608,40.87890489364027],[-73.92490327473082,40.87888836785314],[-73.92380525605554,40.880324901133484],[-73.92058641943568,40.8871826776151],[-73.91869590496049,40.886885203605324],[-73.91865495670355,40.88622532555911],[-73.91876151390892,40.8855696847806],[-73.91630438639294,40.884909511477765],[-73.91586527704142,40.88485810708777],[-73.91489276976344,40.884624770698544],[-73.91347365478012,40.88577197119451],[-73.91281277474994,40.88639518723734],[-73.91210920633289,40.887382505038914],[-73.91173089063594,40.88821871345007],[-73.91115061781205,40.888277105622386],[-73.90981767073008,40.88899656952535],[-73.90975930240093,40.88925002861984],[-73.90929422475324,40.88928229677402],[-73.90900535981952,40.889500141299095],[-73.90855714247373,40.88928966665628],[-73.90853308083753,40.889167389275265],[-73.90831585152183,40.889115897968814],[-73.90796339997496,40.888859753371264],[-73.90738830231192,40.88781969168144],[-73.90413642428666,40.88708070903208],[-73.90337314450537,40.88813234503343],[-73.9028594906229,40.88916474400575],[-73.9024629734398,40.8891051479207],[-73.90180553797828,40.88914342069188],[-73.90126187897803,40.888920968331675],[-73.900903013963,40.88891054881104],[-73.90069963632783,40.88898822100777],[-73.90024058943051,40.88935606934913],[-73.8998757067239,40.88954945802508],[-73.89959425889398,40.88981699887929],[-73.89853911925564,40.89038907404312],[-73.89828904251877,40.89044298126529],[-73.89787887465393,40.89027610124152]]]}},{type:"Feature",properties:{BoroCode:1,BoroName:"Manhattan",CountyFIPS:"061",NTACode:"MN99",NTAName:"park-cemetery-etc-Manhattan",Shape_Leng:155139.938652,Shape_Area:91547234.7674},geometry:{type:"MultiPolygon",coordinates:[[[[-74.0109284126803,40.68449147254293],[-74.01193259977079,40.68388774915489],[-74.01217596614636,40.68409518562846],[-74.00835446532167,40.68640019974809],[-74.00816414527887,40.68617471716151],[-74.0109284126803,40.68449147254293]]],[[[-74.00500373315072,40.687605984898255],[-74.005629863304,40.686784206043605],[-74.00783293766683,40.68738505516269],[-74.00742012154096,40.68820629043589],[-74.00500373315072,40.687605984898255]]],[[[-74.00382038853705,40.68892964419673],[-74.00459270521768,40.68821522248398],[-74.00678438505835,40.688826879958214],[-74.00636461225267,40.68966966863695],[-74.00382038853705,40.68892964419673]]],[[[-74.00297565370539,40.69042657592069],[-74.00340921558495,40.68961326116012],[-74.0057590067034,40.690236399513594],[-74.00534209624915,40.69109160297784],[-74.00297565370539,40.69042657592069]]],[[[-74.04387761639912,40.69018767537122],[-74.04350596078567,40.68968735963609],[-74.0427353382695,40.69005019091786],[-74.04278433313979,40.69012097669139],[-74.04270428360738,40.69015520464454],[-74.04255372037339,40.68996275979217],[-74.04263929305164,40.68992817641358],[-74.04269380753186,40.689997259610024],[-74.04346752310296,40.689636990606026],[-74.04351637245824,40.689191033239766],[-74.04364078627412,40.68876655957014],[-74.04397458556186,40.6885824070559],[-74.04438521711255,40.688516178402935],[-74.04478399040363,40.688595660115865],[-74.04627538871581,40.689327425394666],[-74.04680284832548,40.68995325626627],[-74.0474765152837,40.68961136999801],[-74.04772962631012,40.68991531846654],[-74.04758571924822,40.689982507328715],[-74.04743126057448,40.68980388996858],[-74.04689205434565,40.69005909832288],[-74.04720029366216,40.690424815121155],[-74.04711050566554,40.69047041285062],[-74.04711581910307,40.69065580611871],[-74.04723192720957,40.690849788023186],[-74.04717029423362,40.69099132874273],[-74.04703534821462,40.69104582643261],[-74.0461470720863,40.691122645530584],[-74.04592592739425,40.69108260346309],[-74.0446061648289,40.6905734844482],[-74.04387761639912,40.69018767537122]]],[[[-74.00133197595125,40.691225364266636],[-74.00069905775851,40.690611858419054],[-74.00479415294552,40.69176162037439],[-74.00440941326005,40.69252880038926],[-74.00196938592107,40.691843208317465],[-74.00133197595125,40.691225364266636]]],[[[-74.01674756096057,40.693343367715016],[-74.01540359141647,40.693066497309104],[-74.01535466389981,40.69322485341716],[-74.01540916599917,40.693238673173155],[-74.01538919768244,40.6932981346655],[-74.01517482136595,40.69325668033552],[-74.0151893420933,40.693198603040365],[-74.01525474322263,40.69320689118389],[-74.01530915985033,40.69304704289153],[-74.01525951035646,40.69303681423185],[-74.0151203067574,40.69318755063271],[-74.01516209441299,40.69320828569581],[-74.01512395634913,40.693258069299645],[-74.01493136696467,40.693155771231396],[-74.01497859115634,40.69311566557107],[-74.01502946389674,40.69314607973489],[-74.0151561222552,40.69301551489154],[-74.01422123084885,40.69282290533887],[-74.01343563364561,40.69211544194417],[-74.01250258675178,40.69230358046292],[-74.01240098937303,40.69250535801469],[-74.01229731492545,40.69256825433249],[-74.01210359185659,40.69260946499932],[-74.01184920038541,40.69251819724784],[-74.01175033086638,40.692316411412214],[-74.01190309722551,40.69209058300526],[-74.0122011411637,40.69204490509607],[-74.01240858613579,40.69213424052946],[-74.01246140165125,40.69221262441585],[-74.0133350530327,40.69201209904999],[-74.01325528699337,40.69191681649378],[-74.01318656537045,40.69195792841263],[-74.01291228751684,40.691690730833784],[-74.01285987108882,40.69160298986041],[-74.01289688430353,40.691576895500255],[-74.01260856925413,40.691364103624494],[-74.01253228594767,40.69142898661772],[-74.01251950752712,40.691396831454185],[-74.01203417616576,40.691503076685656],[-74.01201746659353,40.69145820704877],[-74.01259753218585,40.69133433504182],[-74.01252783209975,40.69114633733793],[-74.01218355071056,40.69113621594061],[-74.01218682075256,40.69107802427062],[-74.01182575354973,40.69106481621613],[-74.01182847957556,40.69101135776437],[-74.01219500090085,40.691028847568795],[-74.01221017410677,40.69079169680124],[-74.01208414462414,40.690780622300444],[-74.01205325498759,40.69073914340046],[-74.01197151318823,40.69077095550949],[-74.01198056761248,40.69060640727175],[-74.01204959850608,40.690610548044056],[-74.01214221600915,40.690454287807185],[-74.01223131146898,40.69046133077509],[-74.01230688304491,40.68928018293756],[-74.01316926402743,40.68815477019799],[-74.0148809797501,40.68725457048851],[-74.01604730605547,40.687338006297615],[-74.01704986609202,40.686875986913826],[-74.01671582738003,40.686445593709486],[-74.01664664084744,40.68641634673072],[-74.01515161740342,40.68652480204165],[-74.01514391021995,40.68643703404299],[-74.01667351596016,40.68630516855338],[-74.01753032434095,40.68536298793244],[-74.0176225750659,40.68540978372068],[-74.01678113957146,40.686349037919165],[-74.0167734652923,40.68639877444445],[-74.01712099167082,40.68684333713386],[-74.02054367293066,40.68527206742337],[-74.020206867105,40.68483383207188],[-74.01945957455446,40.68515495792228],[-74.01939842391928,40.685087404047174],[-74.02095254944275,40.68438443164728],[-74.021008778993,40.6844535390843],[-74.02027819846475,40.68480913467189],[-74.02061267235811,40.68524039019802],[-74.02259359581042,40.68435969594992],[-74.02213250252869,40.68376767137992],[-74.02305574749593,40.682916945445115],[-74.02319462834662,40.68300049806213],[-74.02236823557669,40.68377991679395],[-74.0227589909598,40.6842844483321],[-74.02354160370123,40.68400298359253],[-74.02421537269676,40.68394424346432],[-74.02484185637277,40.6840129411424],[-74.02567183824233,40.68423645620488],[-74.02604653184774,40.68451415115493],[-74.02633404308432,40.684801697723984],[-74.02657640943092,40.68524166303808],[-74.02660890959801,40.68576279806948],[-74.02642577177181,40.686175339829745],[-74.02020527500305,40.692033923854076],[-74.01973308199771,40.6931141070806],[-74.01959782651753,40.6931885897569],[-74.01934366754382,40.693228988566965],[-74.01879710616208,40.6932176591374],[-74.01674756096057,40.693343367715016]]],[[[-74.00154172920257,40.69278596325271],[-74.0017436211104,40.692406749705455],[-74.00400795971096,40.693208199632345],[-74.00346218092524,40.69405701507472],[-74.0012701496867,40.693296061673706],[-74.00154172920257,40.69278596325271]]],[[[-74.0135771275654,40.70064368197868],[-74.01355283163467,40.70050335716454],[-74.01357712888603,40.70064368147593],[-74.0135771275654,40.70064368197868]]],[[[-74.03995040788483,40.700890630140115],[-74.03945262913307,40.70053315982372],[-74.03938278118818,40.70057769405871],[-74.03771124796636,40.699344040347725],[-74.03809786214745,40.69903950474161],[-74.03822954379328,40.69836859119531],[-74.03900043878028,40.69836989039099],[-74.03934037604085,40.69811551433359],[-74.04124261766184,40.69953674143509],[-74.04174768868015,40.69914786356663],[-74.03991248872623,40.697702040398376],[-74.0416605191481,40.696452971137155],[-74.04367371164744,40.69802040433033],[-74.0427039581069,40.69880060008409],[-74.04296505161479,40.698999361822395],[-74.04109861171034,40.70049294338988],[-74.0408008064624,40.700268549926484],[-74.04031250907461,40.700625748689845],[-74.04053637732183,40.70078209427242],[-74.04048062485312,40.70082061416745],[-74.04028808671914,40.70064361413769],[-74.03995040788483,40.700890630140115]]],[[[-74.01565756640277,40.70483308805305],[-74.0153975861608,40.704800149762136],[-74.01527219703543,40.70483003672364],[-74.0149612508353,40.704759797746654],[-74.01489542019323,40.70469751835284],[-74.01428922948978,40.7045490753525],[-74.01425861373379,40.70448944317065],[-74.01442983236635,40.70315064778879],[-74.01426249467326,40.70279900096926],[-74.01383441071602,40.702405701540556],[-74.01381169631975,40.702120929976154],[-74.01401128884143,40.70197612433056],[-74.01397912677248,40.70153107060745],[-74.01372314441102,40.701133021903864],[-74.01411459711305,40.70117801727409],[-74.01433920985532,40.701132680099086],[-74.01395152690485,40.7009909829626],[-74.01422063261519,40.700111490863044],[-74.01430981652192,40.700134101515516],[-74.01415238853336,40.70057786578343],[-74.01428920741134,40.70064414476502],[-74.01463294333448,40.70019742940722],[-74.01467120058032,40.700210400694424],[-74.01432384363017,40.700661304127095],[-74.01464323168875,40.70081730432518],[-74.01506818269304,40.70031825755492],[-74.01509832270125,40.700334265523416],[-74.01467365628476,40.70083460852581],[-74.01502113661678,40.70099250401337],[-74.015142318121,40.70084289235424],[-74.0161389063599,40.7016460166001],[-74.01725182133951,40.70283555726374],[-74.01749381096704,40.703154842455014],[-74.01764797572895,40.70349459987939],[-74.01765461989739,40.704009682569755],[-74.01757035573978,40.70418388098665],[-74.01713123915583,40.70428253590342],[-74.01675906633922,40.70474228384452],[-74.01668714611358,40.70474394225795],[-74.01668613062364,40.704799338940084],[-74.01587396195748,40.704882112873165],[-74.01565582157109,40.70488263460934],[-74.01565756640277,40.70483308805305]]],[[[-73.97255352295763,40.76489773172334],[-73.97301487176121,40.76427887944519],[-73.98151276215215,40.76789016803162],[-73.98143686015847,40.768042154545725],[-73.98144332732245,40.768164459086364],[-73.98151200039115,40.768278512190605],[-73.98167943639396,40.76839013093614],[-73.95817297037708,40.800582541457096],[-73.95786499295254,40.800515272439014],[-73.94923186006861,40.7968730719463],[-73.97255352295763,40.76489773172334]]],[[[-73.91639852914038,40.79768484203898],[-73.91545470966417,40.797063466030956],[-73.91443827233313,40.79566551786384],[-73.91380428342944,40.794511846456366],[-73.91378385436724,40.79383628548256],[-73.91514134426238,40.79201248198971],[-73.91535698844237,40.79184304950721],[-73.91552117846284,40.79178325024935],[-73.91630577010042,40.79111736944951],[-73.9161709256582,40.791014190212024],[-73.9168654058495,40.790362062961584],[-73.91710622312948,40.790468616736746],[-73.91812330805,40.790040239933724],[-73.91856299774986,40.78969533382589],[-73.91859001366855,40.78947410340603],[-73.91850876959093,40.789425089769374],[-73.92188898370826,40.78570119716276],[-73.92199195097119,40.785753949919595],[-73.92218831157648,40.785509278139244],[-73.92285203346272,40.783555693418094],[-73.92306473205504,40.78334288477471],[-73.92401145782706,40.782660689322434],[-73.92412113996792,40.782523074010804],[-73.92424754901673,40.782494339126515],[-73.92448052280425,40.7823204906458],[-73.92467329671872,40.782244860001],[-73.92488394771706,40.78222258277357],[-73.92538939088001,40.78227414439884],[-73.92571808678534,40.78217655794454],[-73.9273242264098,40.78109062932468],[-73.92810118987337,40.78092032004211],[-73.9284926956131,40.78100835398342],[-73.93063819691118,40.782261413551524],[-73.93105352807888,40.78239659356656],[-73.93267080610443,40.78269363962477],[-73.93502345134462,40.783006382531354],[-73.93540566284273,40.78339449926805],[-73.93581299732594,40.783710080531996],[-73.93598226006591,40.78394236810638],[-73.93607064617002,40.784217215620224],[-73.93605332741521,40.7845123681535],[-73.93591823840066,40.7848068799634],[-73.93571265931575,40.78568048949216],[-73.93270707337987,40.78916719236426],[-73.93240673527919,40.7897185025905],[-73.93224324511242,40.78969251541113],[-73.93147595329806,40.790479159257906],[-73.93084178739228,40.79099143050412],[-73.9307294050381,40.79095511443081],[-73.92972400781915,40.791366178343004],[-73.92871948992907,40.79094353251282],[-73.92859459781863,40.79096692430345],[-73.92807273575659,40.790823391283006],[-73.92692258257135,40.790788693004075],[-73.92641834042986,40.79069337638709],[-73.9261041025288,40.79073160661517],[-73.92604831269658,40.79126549186457],[-73.92616023355895,40.79171607351932],[-73.92656887903637,40.79185873663636],[-73.92651433038257,40.7918975388817],[-73.9261464604949,40.79184811033512],[-73.92592839975038,40.791876450843944],[-73.9255877909544,40.79182186049898],[-73.92560814696064,40.79189695755739],[-73.92617025007682,40.79189990825843],[-73.92642909621779,40.79195703516021],[-73.92673913872257,40.791928752207184],[-73.92670177053287,40.791832930219506],[-73.92650765426329,40.7917732569581],[-73.92636810194224,40.79166183438377],[-73.92633080253482,40.79150387373016],[-73.9263447148623,40.791247557119455],[-73.92656584815929,40.79097950221576],[-73.92711487726517,40.79101502446057],[-73.92743856820026,40.790960857748196],[-73.92786889241192,40.79095483762924],[-73.92789374498595,40.791091111420904],[-73.92713563728078,40.7919293066031],[-73.9278014140627,40.79199747926191],[-73.92826720296155,40.79232852394816],[-73.92834212752601,40.7929796900644],[-73.9282652085515,40.79321287506579],[-73.92735332146681,40.794461894609896],[-73.92693614726169,40.79549706231745],[-73.92688967828025,40.79625201085759],[-73.9269519228988,40.79670843228391],[-73.92721689257203,40.7974154334977],[-73.92727720202771,40.797407453148146],[-73.92743922185264,40.79771053871855],[-73.92747588537362,40.79812289966447],[-73.9272629329122,40.79891864562456],[-73.92688261754358,40.799940768503205],[-73.92650250275469,40.80037491780948],[-73.9266847062109,40.80045475775836],[-73.92569826178756,40.801810870848],[-73.92549293493052,40.801956168650655],[-73.9252752102018,40.801998522240744],[-73.92436044107566,40.80198555341893],[-73.92263378661035,40.80186873814148],[-73.9219109222963,40.80150266575094],[-73.92133752419399,40.800852106497004],[-73.92103317645143,40.80026528185803],[-73.9203146552123,40.799375459289976],[-73.91899496843487,40.798771842701875],[-73.91662985247802,40.79785813943707],[-73.91639852914038,40.79768484203898]]],[[[-73.92295449494758,40.85885076288433],[-73.92282846103095,40.85685140959511],[-73.92204492149719,40.85685415958372],[-73.92207464948136,40.85677949124103],[-73.92215747202226,40.85676624797896],[-73.9221097526086,40.856720271163226],[-73.92216714728865,40.85666348247118],[-73.92237695676162,40.85658356962438],[-73.92234459374129,40.85568233581484],[-73.92227873064483,40.855654988843746],[-73.92444065139948,40.85284047270437],[-73.92971850477643,40.8452317772586],[-73.93015203635488,40.844449305440314],[-73.93089465201425,40.84253834014189],[-73.93390943845894,40.83713272357709],[-73.93436121516059,40.836200619229956],[-73.93467393002159,40.836064903238736],[-73.93479886344015,40.8361101157592],[-73.93496274110738,40.83575993424727],[-73.93838508900461,40.83311350252125],[-73.9389083447814,40.8324803571376],[-73.93941083473098,40.83149499458998],[-73.93987057339177,40.83099188616358],[-73.94007905795213,40.83046395774134],[-73.94017089788652,40.83038439112869],[-73.94034643247525,40.83045784284946],[-73.9403683082882,40.83146049251433],[-73.94024600816319,40.831842121109716],[-73.93947814413798,40.833013489359374],[-73.93832027810943,40.833978818280706],[-73.93804235780865,40.834288545650956],[-73.9363831692527,40.83785012505351],[-73.93595950279861,40.838369898475335],[-73.93533061470691,40.8388749129977],[-73.9350550875888,40.839333236162794],[-73.93500575406057,40.83985191078214],[-73.93510666614674,40.84018372666801],[-73.93543637028216,40.840751331105956],[-73.93562826736833,40.84127936215273],[-73.93563666176574,40.841500139839674],[-73.93556697174425,40.84171252755789],[-73.93062107886071,40.84848097676885],[-73.92970731493037,40.84812261221643],[-73.92886675421994,40.84939231334598],[-73.92858519996861,40.84963880218394],[-73.92824918846772,40.849839854581795],[-73.92747680551746,40.85069436979465],[-73.92707982343958,40.85143234338458],[-73.92703315736694,40.852200775102766],[-73.92769565804304,40.85248778210612],[-73.92469199899043,40.856641997249234],[-73.92466977966374,40.856982611234784],[-73.92472918878461,40.85732628669623],[-73.92486929942363,40.85765619133568],[-73.92508143618909,40.857956788312634],[-73.92518925048225,40.858027536675635],[-73.92563075907685,40.85817795177663],[-73.9261752693033,40.85815409637818],[-73.9266355398666,40.857931924269046],[-73.92682273562903,40.85772223817702],[-73.92691117491182,40.85750876085586],[-73.92712222071785,40.85810961121079],[-73.92709951577093,40.858275520784666],[-73.92698078628499,40.85860624131131],[-73.92676563193636,40.85891478444852],[-73.92646803520698,40.859178124296264],[-73.92573839867413,40.85963768044929],[-73.92528662662241,40.86012579668752],[-73.92502162130454,40.86069531087311],[-73.92496310640051,40.86108928317822],[-73.92499818374048,40.86146373803843],[-73.9247415340757,40.861593638252025],[-73.92295449494758,40.85885076288433]]],[[[-73.92640556921114,40.87762147653733],[-73.92629680992586,40.87756502787567],[-73.92629548790872,40.877488468170654],[-73.92645784901072,40.87725818800361],[-73.92634124634962,40.87711854979804],[-73.92619292246228,40.87706441930424],[-73.92555292248038,40.8771025889791],[-73.92517576034096,40.87725516263563],[-73.92508215701336,40.87739761061556],[-73.92502681080505,40.87737196229731],[-73.92457036964774,40.877428912600195],[-73.92381973565635,40.87726181178256],[-73.92354823367552,40.87730137973703],[-73.92329476733983,40.8772644349572],[-73.92292375203768,40.87703438615695],[-73.92280311153732,40.8770133728903],[-73.92281246559956,40.8769790825586],[-73.9225959688097,40.87692123368953],[-73.92259148720407,40.87686583243158],[-73.92239768169316,40.87678022314118],[-73.92244468218563,40.87569183555945],[-73.92266803986965,40.874981990957934],[-73.9226623408225,40.874635500009056],[-73.92257636819402,40.87429518241923],[-73.92234186353025,40.87386933316754],[-73.92198270527287,40.873496897494405],[-73.92151879937623,40.87319851529147],[-73.92111741577973,40.87303345518622],[-73.9206038943971,40.87299108511295],[-73.92029230572714,40.87309841662257],[-73.91999041526302,40.87335399345218],[-73.91994462466592,40.8735780380382],[-73.91979301672416,40.873606512157814],[-73.91979277715282,40.873646311056035],[-73.91995774860993,40.87367916324122],[-73.91998543966982,40.873844433308435],[-73.920213821777,40.87394395590919],[-73.92062699165687,40.874234811128744],[-73.92080255630356,40.87419405886666],[-73.92066084429324,40.87427874246633],[-73.92070010665194,40.87439193360985],[-73.92091551002889,40.8747981752427],[-73.92118186442765,40.87513784085018],[-73.9211049103776,40.875285396760525],[-73.92090325581637,40.87546616638299],[-73.92066483796214,40.87539434872167],[-73.92052514699834,40.8754090952896],[-73.92048053388152,40.87533909197646],[-73.91886187406784,40.87464258579291],[-73.91885545321529,40.87459289024086],[-73.91906366186578,40.874399919781666],[-73.91919288777844,40.874195168794735],[-73.91929467786811,40.873649890353896],[-73.91916029132962,40.87361268838718],[-73.91909567931508,40.873466004065975],[-73.91892142416866,40.87340587534304],[-73.9189285129671,40.87331651021618],[-73.91877587467677,40.873344332455886],[-73.91869757440793,40.87327838590057],[-73.91872032178871,40.873246429020504]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment