Skip to content

Instantly share code, notes, and snippets.

@sabrinadchan
Last active August 6, 2017 15:37
Show Gist options
  • Save sabrinadchan/f96f7379174fa8c244b05c0ae0156428 to your computer and use it in GitHub Desktop.
Save sabrinadchan/f96f7379174fa8c244b05c0ae0156428 to your computer and use it in GitHub Desktop.
Chicago West Side Homicide Density
license: gpl-3.0
height: 700

The above visualization uses d3-contour to estimate the density of gun homicides on Chicago's West Side. The animation shows how the choice of bandwidth impacts the resulting density contours when performing a kernel density estimation on a set of data. Click "pause" to stop the animation. Click "Step Forward" and "Step Backward" to increment and deincrement the bandwidth by 1.

Gun homicide data was gathered from the Gun Violence Archive. The data was cleansed and refined using numerous Python scripts as part of an ongoing personal project on Chicago Gun Violence. I do not claim that the data is accurate. Due to the nature of the data, homicides that occurred on the same city block are plotted in the same location, even if the incidents took place at different addresses. The data being considered are 2016 gun homicides that occurred on Chicago's West Side in the Austin, East Garfield Park, West Garfield Park, Humboldt Park, North Lawndale, South Lawndale, West Town, Near West Side, and Lowest West Side community areas.

<!DOCTYPE html>
<style>
body {
font: 16px sans-serif;
}
</style>
<body>
<div class="buttons">
<input name="resume" type=button value="Resume" onclick="resume()" />
<input name="pause" type=button value="Pause" onclick="pause()" />
<input name="ff" type=button value="Step Forward" onclick="stepForward()" />
<input name="rw" type=button value="Step Back" onclick="stepBack()" />
</div>
<p>Current bandwith: <span id="text-span"></span></p>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script src="https://d3js.org/d3-contour.v1.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script type="text/javascript">
var margin = {top: 20, right: 20, bottom: 20, left: 20},
outerWidth = 960,
outerHeight = 600,
width = outerWidth - margin.left - margin.right,
height = outerHeight - margin.top - margin.bottom;
var topo;
var bandwidth = 5;
var interval = 1000;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var bottomLayer = svg.append("g")
.attr("class", "bottom-layer");
var color = d3.scaleSequential(d3.interpolateYlGnBu)
.domain([0, 0.00375]);
var projection = d3.geoEquirectangular()
.rotate([88 + 20 / 60, -36 - 40 / 60]);
var path = d3.geoPath()
.projection(projection);
d3.queue()
.defer(d3.json, "west_side.topojson")
.defer(d3.json, "west_side_homicides.topojson")
.await(ready);
function ready(error, community, homicides) {
if (error) throw error;
// start with unit projection
projection
.scale(1)
.translate([0, 0]);
// then translate and scale according to topoJSON's bbox
var b = path.bounds(topojson.feature(community, community.objects.west_side)),
s = 0.95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
projection
.scale(s)
.translate(t);
svg.append("clipPath")
.attr("id", "boundary")
.append("path")
.datum(topojson.feature(community, community.objects.west_side))
.attr("d", path);
svg.append("path")
.datum(topojson.feature(community, community.objects.west_side))
.attr("d", path)
.attr("stroke", "black")
.attr("fill", "none")
.attr("stroke-width", 2);
topo = topojson.feature(homicides, homicides.objects.west_side_homicides).features;
update(bandwidth);
}
function update(bandwidth) {
svg.selectAll(".contours")
.remove();
svg.append("g", "g")
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.selectAll("path")
.data(d3.contourDensity()
.x(d => projection(d.geometry.coordinates)[0])
.y(d => projection(d.geometry.coordinates)[1])
.size([width, height])
.bandwidth(bandwidth)
(topo))
.enter().append("path")
.attr("class", "contours")
.attr("clip-path", "url(#boundary)")
.attr("fill", d => color(d.value))
.attr("opacity", 0.25)
.attr("d", d3.geoPath());
d3.select("#text-span")
.html(bandwidth);
}
var currId;
function Animation(callback, interval) {
var animationId, active;
this.pause = () => {
active = false;
clearInterval(animationId);
}
this.resume = () => {
active = true;
animationId = setInterval(callback, interval);
}
this.active = () => active;
this.resume();
}
function pause() {
if (timer.active()) {
timer.pause();
}
}
function resume() {
if (!timer.active()) {
timer.resume();
}
}
function stepForward() {
pause();
if (bandwidth < 50) {
bandwidth += 1;
}
update(bandwidth);
}
function stepBack() {
pause();
if (bandwidth > 5) {
bandwidth -= 1;
}
update(bandwidth);
}
var timer = new Animation(function () {
if (bandwidth == 50) {
bandwidth = 5;
} else {
bandwidth += 1;
}
update(bandwidth);
}, interval);
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"west_side":{"type":"GeometryCollection","bbox":[-87.80622980135827,41.818706145062364,-87.63450859376373,41.92336824391002],"geometries":[{"type":"Polygon","id":"23","bbox":[-87.74141068667781,41.8878231689323,-87.69157000947973,41.913922444770904],"properties":{},"arcs":[[0,1,2,3,4]]},{"type":"Polygon","id":"24","bbox":[-87.70700477563308,41.88817310614269,-87.63936098293495,41.916182424317164],"properties":{},"arcs":[[5,6,-5,7]]},{"type":"Polygon","id":"25","bbox":[-87.80622980135827,41.865459151460904,-87.73938985879195,41.92336824391002],"properties":{},"arcs":[[-3,8,9,10]]},{"type":"Polygon","id":"26","bbox":[-87.74059567509266,41.868525711761755,-87.72019606122971,41.88806705675735],"properties":{},"arcs":[[11,-9,-2,12]]},{"type":"Polygon","id":"27","bbox":[-87.72098330193283,41.8691330846612,-87.68867151040175,41.888306598951644],"properties":{},"arcs":[[-7,13,14,-13,-1]]},{"type":"Polygon","id":"28","bbox":[-87.69227959522789,41.85766547551493,-87.63450859376373,41.88908028505862],"properties":{},"arcs":[[15,16,-14,-6,17]]},{"type":"Polygon","id":"29","bbox":[-87.73998200626032,41.845592854751835,-87.68796221496133,41.87097682720744],"properties":{},"arcs":[[-15,-17,18,19,20,-10,-12]]},{"type":"Polygon","id":"31","bbox":[-87.73932308973987,41.818706145062364,-87.68739948177172,41.856969765652835],"properties":{},"arcs":[[21,-20,22]]},{"type":"Polygon","id":"32","bbox":[-87.68807300498922,41.83480098281811,-87.6351581593673,41.860018027544825],"properties":{},"arcs":[[23,-23,-19,-16]]}]}},"arcs":[[[-87.69157000947973,41.888195634996485],[-87.69500630480879,41.88815637049089],[-87.6952021216212,41.88815412973772],[-87.69540013130901,41.88818507351827],[-87.69560781292624,41.88821298366987],[-87.6957990294131,41.88823462749158],[-87.69594580431398,41.88824744830251],[-87.6961669202946,41.88826308236476],[-87.69638854046086,41.888274259677054],[-87.69652530139545,41.88827844789566],[-87.69666712656115,41.8882812927297],[-87.69705919481375,41.888279006596115],[-87.69713815771875,41.88827875774054],[-87.69760877365648,41.888271759674055],[-87.69859405095286,41.888260401055426],[-87.69894574047072,41.888256170135655],[-87.70012660747474,41.88824210534784],[-87.70035341631409,41.88823923937097],[-87.70057884763663,41.888236365355944],[-87.70120142384852,41.888228474065],[-87.70141195322417,41.88822620656149],[-87.70141034634575,41.88816395114113],[-87.70141047231297,41.88816395128547],[-87.70177773218171,41.88816406796161],[-87.70386833266838,41.88816422659926],[-87.70387106699188,41.888306598951644],[-87.70422918925227,41.8883017007742],[-87.70484717280671,41.88829410758752],[-87.70508132683194,41.8882912724707],[-87.70546515289388,41.88828685436066],[-87.7060202365411,41.88827994003185],[-87.70624061802108,41.88827702704138],[-87.70633798743152,41.88827549969957],[-87.7064564101307,41.88827408857544],[-87.70653354285555,41.888273137756116],[-87.70685860495009,41.888269080016684],[-87.70723417731965,41.88826358187473],[-87.70748167662877,41.888257384042],[-87.7075615810761,41.88825473221079],[-87.70770853259326,41.88824970136677],[-87.70788030564586,41.88824137522111],[-87.70805069890972,41.88823338433605],[-87.7082160452403,41.88822502296914],[-87.70841719447247,41.88821719895607],[-87.7086343928068,41.88821117704896],[-87.70883686934513,41.888208504978316],[-87.70937588222202,41.888201829787086],[-87.70957376752939,41.88819913119647],[-87.70967477347365,41.88819796517993],[-87.71082717461218,41.88818397850379],[-87.71109071331304,41.88818060490305],[-87.7112206641228,41.888178300174154],[-87.71135149772873,41.888177214956436],[-87.71170224477966,41.88817279331713],[-87.71180832814998,41.88817145587167],[-87.7119848731094,41.888169140370636],[-87.71288222814124,41.8881573672572],[-87.71355346869387,41.88814898584714],[-87.71356390045929,41.88814892304686],[-87.71365789029424,41.88814835644179],[-87.71373847169549,41.888146718786146],[-87.7137582390636,41.888146317203386],[-87.71399226041864,41.88814351341799],[-87.71411360024676,41.88814205963482],[-87.71488079687441,41.888132472406404],[-87.71510576957053,41.88812956740031],[-87.71542348485795,41.88812544586109],[-87.71599785349628,41.88811790072625],[-87.71609105585847,41.88811668711515],[-87.71657147877848,41.888111147300975],[-87.71688304819605,41.8881065337193],[-87.71723288472157,41.88810189380958],[-87.71723290308603,41.888101893633674],[-87.71736696705516,41.88810021131661],[-87.71854049162911,41.88808523253106],[-87.71902461512954,41.88807898464398],[-87.71976176564195,41.88806946696914],[-87.71986001850551,41.88806827673428],[-87.71987249722824,41.88806826326417],[-87.72098330193283,41.88806705675735]],[[-87.72098330193283,41.88806705675735],[-87.72117495367353,41.888051281571094],[-87.72220659594319,41.88803928169211],[-87.7225697625906,41.88803469618498],[-87.72306653500196,41.88802841839623],[-87.72343061964942,41.88802383504469],[-87.72421342574215,41.88801392560276],[-87.72464970767939,41.888044710433235],[-87.72464525429334,41.88783681027196],[-87.72587007905597,41.88783403344495],[-87.72587189697468,41.88789725866754],[-87.72587356205781,41.88799355727086],[-87.72587356201102,41.887993562210255],[-87.72632125446397,41.88798803925308],[-87.72680653324578,41.88798339968246],[-87.72697457666825,41.887980857065315],[-87.72722004960646,41.887994501761455],[-87.72732511231028,41.88800123078545],[-87.72749260273439,41.88800863238051],[-87.72766013458902,41.888011574277094],[-87.72782690033108,41.88800230823172],[-87.72815608073088,41.88798401757884],[-87.72832114432042,41.887974845577844],[-87.72839602309001,41.88797068487272],[-87.72845982735943,41.88796713949991],[-87.72861871261057,41.887958310489886],[-87.72993041565837,41.88794291319167],[-87.7307894411509,41.88793130119416],[-87.73122882452462,41.88792537329741],[-87.73246063629215,41.88791124306863],[-87.73345830675724,41.88789896461214],[-87.73378841380651,41.88789485698573],[-87.73490958877825,41.8878808088806],[-87.73570985197044,41.88786919687485],[-87.73678511463831,41.887855577852314],[-87.73796272569595,41.88784453788378],[-87.7381694968366,41.88787450934236],[-87.73851549233582,41.88783916932722],[-87.73931983240067,41.88783338480013],[-87.74029588318835,41.8878253942255],[-87.74059567509266,41.8878231689323]],[[-87.74059567509266,41.8878231689323],[-87.74060043105892,41.88795423122096],[-87.74061738717022,41.88845411421765],[-87.74062672561303,41.888735104553966],[-87.74065720044877,41.88960999029405],[-87.74066329226636,41.88979525799845],[-87.74068470772347,41.89040870724138],[-87.74069045474552,41.890581624313256],[-87.7406921924029,41.89064200693632],[-87.74069436023096,41.890705478504984],[-87.74070578981703,41.890909297643375],[-87.74073534183877,41.8913378955701],[-87.7407488685513,41.89146385757572],[-87.74058130990275,41.89146264923025],[-87.74065397798853,41.89199472213426],[-87.74071510825739,41.892483855772795],[-87.74072931580255,41.89258580941196],[-87.7407620622255,41.892817866703425],[-87.74081902165759,41.89326169895625],[-87.74086994306542,41.893663306983555],[-87.74091670320446,41.89401858494259],[-87.74096118739789,41.89437179266456],[-87.74102804834607,41.894887025807314],[-87.74104225444073,41.894989322663974],[-87.74107090755072,41.895092200890254],[-87.74106517233581,41.89519217178051],[-87.74108330092128,41.895317128308136],[-87.74111219723306,41.895518979146225],[-87.74113485680456,41.89565047632669],[-87.74115200406536,41.89578228837867],[-87.74116317634474,41.895914755674525],[-87.74116838104523,41.89604719219358],[-87.7411650338684,41.89611132159056],[-87.74115527188557,41.89617404578605],[-87.74114046325637,41.8962364009247],[-87.7410977643982,41.896435138534066],[-87.74102097048888,41.89650955049133],[-87.74102746608308,41.89658982562531],[-87.7410364632636,41.89665473218568],[-87.74107438360764,41.896928295401686],[-87.74108373306878,41.89735747411395],[-87.74109153542497,41.89765595032562],[-87.74109610621566,41.89785699011748],[-87.74109770419531,41.897932464716284],[-87.74110478027049,41.89801139814204],[-87.74110809255104,41.89834861411475],[-87.74111698722317,41.89867796861615],[-87.74111928179538,41.898777441614286],[-87.74121249648921,41.89877608750008],[-87.74122124801829,41.89887300432329],[-87.74123230437094,41.89896842314713],[-87.74124887342234,41.89906352873424],[-87.74126963730416,41.89915179452076],[-87.7412940282056,41.89924522417853],[-87.74131244380709,41.89933930935879],[-87.74132534601235,41.89943370941564],[-87.74133073770537,41.89949616840703],[-87.7413416793477,41.89985263302704],[-87.7413447972047,41.900061897140766],[-87.74133957276128,41.900627526954196],[-87.74116367849331,41.90063142245581],[-87.74117695781236,41.90118205403087],[-87.7412012719734,41.90217833830042],[-87.74120719741865,41.90243152490943],[-87.74120720061966,41.902431655551716],[-87.74123055315367,41.903432263404284],[-87.74127187806435,41.90512224111515],[-87.74129396483683,41.90602792565839],[-87.74134015012605,41.90792171492382],[-87.7413543772737,41.908568742243176],[-87.74141068667781,41.90865726602317],[-87.74136701599333,41.90903978662767],[-87.74137265222936,41.90922505160285],[-87.74137991259573,41.90943330819289],[-87.74138036111837,41.90968350987792],[-87.7413769865351,41.90984938728304],[-87.74137006581778,41.91000199997794],[-87.741347344793,41.91032398719467],[-87.74132384662575,41.9106305343339],[-87.74132555277737,41.91074408613194],[-87.74133056178998,41.91089778911847],[-87.74133954281548,41.911019267543445],[-87.74134272133976,41.911072796785824],[-87.74133105684459,41.91124185012405],[-87.74130814458454,41.91153467878367],[-87.74129119838388,41.9118278817624],[-87.74128885787914,41.911882411630984],[-87.74128477193379,41.91205250730684],[-87.74128698854426,41.91216162345909],[-87.74130062029563,41.9128327561612],[-87.74132408768178,41.91348694088647],[-87.74133439798457,41.913762789530175],[-87.74133544805062,41.91389760542004]],[[-87.74133544805062,41.91389760542004],[-87.74102707258442,41.91382157809551],[-87.74061374953229,41.91377142124149],[-87.74025777067449,41.91372807637428],[-87.73995821303185,41.91369188256118],[-87.73995632962237,41.9136916560341],[-87.7394072657199,41.91362557378798],[-87.73909484499207,41.913589997797104],[-87.73878192719269,41.913558534458595],[-87.73872047160431,41.913553348790536],[-87.73871263445935,41.91355268746131],[-87.73870839101983,41.91355232629973],[-87.73846804666024,41.91353186768882],[-87.7383120070668,41.91352042503559],[-87.73801275286863,41.91350137972937],[-87.73771299351345,41.91348713315738],[-87.73734983947911,41.91347495798951],[-87.73703715250102,41.91346818947151],[-87.73672396803951,41.913465533593126],[-87.73641119810223,41.913467680875186],[-87.73633449447502,41.91346865477587],[-87.73622340822561,41.91347007826762],[-87.73609933061483,41.913471547968214],[-87.7355082008047,41.91347944882109],[-87.73499975202371,41.91348689933435],[-87.73499009467142,41.913487040833964],[-87.73498933224143,41.91348704866127],[-87.7349180805849,41.91348777038742],[-87.73425200822385,41.913494512938605],[-87.73388547948846,41.91349946011717],[-87.73376756531611,41.91350135903385],[-87.73364663915147,41.913502672670866],[-87.73354880662667,41.91350387711717],[-87.73338437454842,41.913506105372065],[-87.73254799125013,41.91351551365226],[-87.73184341751474,41.91352411377487],[-87.7313278779844,41.91353194447248],[-87.73048984743419,41.91354068422843],[-87.73010904800483,41.91354683421816],[-87.72981281859278,41.913550506232305],[-87.72889172762605,41.913561166282605],[-87.7283380109341,41.91356641458748],[-87.72796000119733,41.913571282632326],[-87.72766549574354,41.91357523014829],[-87.72708501823959,41.91358278898915],[-87.72685169067829,41.91358567320919],[-87.72644799288939,41.91359126365752],[-87.72623530527129,41.913593049619266],[-87.72575263305086,41.91359289816129],[-87.72557353672603,41.91359160707046],[-87.72523968721418,41.91358881048799],[-87.72502661487826,41.91358665282711],[-87.72470332769296,41.91358391063961],[-87.7243630262623,41.913583478788325],[-87.72419264631017,41.91358326085674],[-87.72400291142165,41.91362088337554],[-87.72395641662393,41.9136210897137],[-87.72390305590736,41.913621326003614],[-87.72371695271971,41.913621899874805],[-87.72360459161337,41.91362288013045],[-87.72349773537677,41.91362381185032],[-87.72317912432837,41.91362658992226],[-87.72234754851002,41.91363511327093],[-87.72234744378754,41.913635114634666],[-87.72223159439332,41.91363630165923],[-87.72215029781361,41.91363724081678],[-87.72155260514174,41.91366289709359],[-87.72153508464879,41.91366364924367],[-87.72144920674197,41.91366733517023],[-87.72133984441723,41.91367202951235],[-87.72122790471835,41.913659770137855],[-87.72111480641937,41.913654185311195],[-87.72100205920746,41.913648618161936],[-87.7207962981241,41.91365026495845],[-87.72034801576959,41.913655762141524],[-87.72023962137177,41.91365689858891],[-87.71968435799512,41.913659764028246],[-87.7191906078612,41.91366535700113],[-87.71910860627756,41.91366662887251],[-87.71887689872666,41.91366951021634],[-87.71856277275758,41.913669200964954],[-87.71824914994647,41.91366443417173],[-87.71788239409422,41.913642323876466],[-87.71755129356941,41.91364285638497],[-87.71751419205177,41.91364207399073],[-87.71742043325881,41.913640096371076],[-87.71715134559548,41.91363659453749],[-87.71693549434262,41.91363680842711],[-87.7166584643409,41.913638409885316],[-87.71665595985762,41.91354916607336],[-87.71625167994291,41.91355360750213],[-87.71592120479224,41.91355715485701],[-87.71584837604813,41.91355825116388],[-87.71514712525386,41.91356882432057],[-87.71503940611863,41.913569246542544],[-87.71489346184761,41.91356981844744],[-87.71433284329737,41.91357752761931],[-87.71423591108142,41.91357870646667],[-87.71408731691602,41.913580512234205],[-87.7137548461428,41.913585277495656],[-87.71354870282019,41.91358850089606],[-87.71341692303014,41.913589403139284],[-87.71333577964262,41.91358995845302],[-87.71275205444579,41.9135973704871],[-87.71260746420693,41.9135991693594],[-87.71242759954276,41.91360140684152],[-87.71212114776678,41.913605429908],[-87.71195910323267,41.91360754434629],[-87.7117983111896,41.913609542119374],[-87.7116160195195,41.91361180690542],[-87.71111684765158,41.91361763766792],[-87.71098247952041,41.91361864411192],[-87.71080648103506,41.91361996203011],[-87.71028178136086,41.913628916397506],[-87.71017982704791,41.91362974925801],[-87.70999724298649,41.91363124150205],[-87.70954615184404,41.91363455475707],[-87.70935962512426,41.91363805090974],[-87.70916931272399,41.91364161783888],[-87.70869611562061,41.9136474966633],[-87.70854809519292,41.91364917352006],[-87.70837533854895,41.9136511302122],[-87.70806036341398,41.913655068607426],[-87.70772726958508,41.91365963382267],[-87.70753880366104,41.913662216343674],[-87.70702498261927,41.91366471732164],[-87.70685459549391,41.91371601715514],[-87.70685659942917,41.913773110303694],[-87.70668041248622,41.91377614095266],[-87.7059910095449,41.91378266713962],[-87.7058330114572,41.913784204753995],[-87.70516699773465,41.91378996385293],[-87.70502785966315,41.9137924943103],[-87.70383849939157,41.913804867681876],[-87.70333534029102,41.91380997700128],[-87.702464991889,41.91381651819882],[-87.70232540321015,41.913818863707014],[-87.70232710867018,41.913881828217605],[-87.70232820870457,41.913922444770904],[-87.70198050821631,41.91392122040915]],[[-87.70198050821631,41.91392122040915],[-87.70197787605191,41.913838879543945],[-87.7019778712776,41.91383873023151],[-87.7019620793595,41.91331629374877],[-87.70194877106111,41.91286608423771],[-87.70193567482254,41.912427923035224],[-87.70192731885786,41.91214222310438],[-87.70192237470417,41.91197318551427],[-87.70190984970202,41.911588924108756],[-87.70189365933255,41.91106216195992],[-87.70188094200631,41.91065643953241],[-87.70187196179923,41.910371044804265],[-87.70186767557236,41.91022887380205],[-87.70186599250691,41.91017304437499],[-87.7019444468116,41.91017293736904],[-87.70221558766457,41.91017256789216],[-87.7026619234359,41.91017195815969],[-87.7027984735642,41.91017017869468],[-87.70337751589942,41.91016263126606],[-87.70401321562908,41.91015434204947],[-87.70451463250555,41.91014919465539],[-87.70532936400795,41.91012973052348],[-87.7056622511016,41.91012607203941],[-87.70654090079833,41.9101164113459],[-87.70696046604212,41.91011532922255],[-87.70698624422334,41.91006326710636],[-87.70699232042793,41.91001053248159],[-87.70700030993069,41.90985467615318],[-87.70700477563308,41.9095707272134],[-87.70699507197178,41.909300641680716],[-87.70699097458284,41.90919109668308],[-87.70698356740938,41.90899306034973],[-87.70697856081594,41.90885735783603],[-87.70697068807902,41.908645734443134],[-87.7069638671663,41.908373908279756],[-87.70696128689833,41.908287835017184],[-87.70695683055764,41.9081391829758],[-87.7069453516832,41.90777260040267],[-87.70693670763761,41.90751445798293],[-87.7069320862257,41.90738131022119],[-87.70692710558313,41.90723778701455],[-87.7069185790313,41.90691499076081],[-87.70690871682795,41.90662360896872],[-87.70690351433971,41.9064773853025],[-87.70689744900628,41.906306917644145],[-87.70688874792471,41.90596817665122],[-87.70688129203556,41.90569747203061],[-87.70687733074402,41.90557129818493],[-87.70687512927299,41.905501170680246],[-87.70686337032133,41.905174624805575],[-87.70685464656168,41.904864533443806],[-87.70684833637637,41.90466551419159],[-87.70684378046181,41.904521828852026],[-87.70683303493419,41.904211891077786],[-87.70682227504697,41.90389591588768],[-87.70681841667586,41.90375953400294],[-87.70681403034311,41.90360448787703],[-87.70680658698764,41.90338139571611],[-87.70679354618687,41.90301694481166],[-87.70678981333656,41.90285029904824],[-87.7067894016374,41.902831916452065],[-87.70678880774939,41.90280541678113],[-87.70678607892422,41.90268358905626],[-87.70677555934103,41.90237689061165],[-87.70676637487688,41.90215911272134],[-87.70676266888289,41.901995590844365],[-87.70675898329802,41.90187161325995],[-87.70675703916864,41.901801748638555],[-87.70675642070498,41.901779530387834],[-87.70674318788595,41.90137465571046],[-87.70673572081984,41.90115027353865],[-87.70673108830637,41.90100601085131],[-87.7067255271928,41.9008328193752],[-87.70671621313421,41.90054187933216],[-87.70670822034492,41.90025481585962],[-87.7067040248882,41.90013615515984],[-87.70669760214983,41.89995451081729],[-87.70668376912495,41.89950964917689],[-87.70667857196962,41.89931236495132],[-87.70667445661942,41.899195401431214],[-87.70653791299182,41.89919718996707],[-87.7061337549588,41.89920065721362],[-87.70596150307824,41.8992023024401],[-87.70524718615773,41.89920899041212],[-87.70464532013169,41.8992141765797],[-87.70440707694377,41.899216478747114],[-87.70398000586304,41.89922060353294],[-87.70386469428772,41.899221639993975],[-87.70324218073105,41.8992272325164],[-87.7030220629072,41.899229300033504],[-87.70277744263984,41.899231597021036],[-87.70246754477405,41.899233880110096],[-87.70219060808002,41.89923591981813],[-87.70195112884186,41.89923835746149],[-87.70195431711409,41.89891469756109],[-87.70194583117924,41.89860902505622],[-87.70193899706304,41.898363131136975],[-87.70193177366193,41.898104556682995],[-87.70192911195012,41.89802224177503],[-87.70192344005332,41.89784682682672],[-87.70191201322591,41.89746311937414],[-87.70190068983003,41.89709129529471],[-87.70189539708075,41.896920135149664],[-87.70188855041242,41.896683487253455],[-87.70188087481537,41.8964182000205],[-87.70223367988893,41.89655902628743],[-87.70222631265271,41.89631849600233],[-87.70221651074165,41.8960008787034],[-87.70221005849311,41.89580191329078],[-87.70220404706863,41.89559488634439],[-87.70203544742704,41.8955964801805],[-87.70189872918016,41.89559748480772],[-87.70176607804021,41.895599494078496],[-87.70172514096377,41.89560011415056],[-87.7016089611892,41.8956018735483],[-87.70098089837224,41.895615046833036],[-87.70055740198183,41.89562264815074],[-87.69991108717576,41.895628738325826],[-87.6992970108595,41.89563452152675],[-87.69916127872685,41.89563611670403],[-87.69894432675581,41.89563866591449],[-87.69860721811024,41.895642566001875],[-87.69824638345311,41.89564638877064],[-87.69794554234463,41.89564882283039],[-87.69729151476898,41.8956541116206],[-87.69698600386958,41.89565331587104],[-87.69670263372143,41.89565351911631],[-87.69669618065878,41.895452404112184],[-87.69668875635202,41.895197752377],[-87.69668528309322,41.89507956614865],[-87.69666968390112,41.89472226166094],[-87.69666554980235,41.894627535286716],[-87.69667111676374,41.89433327437383],[-87.69646185829761,41.89424953955315],[-87.69595803444263,41.894047539289375],[-87.69559169165363,41.893900719515585],[-87.69507997067205,41.89369562597886],[-87.694165474384,41.89332976303062],[-87.69402806995575,41.89327479062517],[-87.6936779784899,41.8931344764597],[-87.69321243748905,41.892947743801756],[-87.69279608248664,41.89278179544641],[-87.69248594501504,41.89265818103218],[-87.69226437438704,41.892569018847745],[-87.6916677819235,41.89233237968465],[-87.69170143235283,41.892003795004754],[-87.69164800123534,41.891912127765096],[-87.69164529078716,41.89176185717985],[-87.6916235277291,41.890555296459844],[-87.69162081114455,41.89040469237933],[-87.6916064925942,41.889610843635346],[-87.69158683544407,41.8885209851981],[-87.69158412810118,41.88843617817983],[-87.69157000947973,41.888195634996485]],[[-87.63936098293495,41.88908028505862],[-87.63949130697476,41.88907079126144],[-87.63970201845459,41.8890552785039],[-87.63982844587352,41.88904760820941],[-87.63997325240052,41.88904798892919],[-87.64023828808469,41.88904765993779],[-87.64025615862896,41.8890474187272],[-87.64035397414105,41.88904614295516],[-87.64046898008453,41.88904458662624],[-87.64053524311849,41.88904372405583],[-87.64063233979192,41.88904096182065],[-87.64067598852421,41.8890427069947],[-87.6408126763537,41.88907723063455],[-87.6409747019319,41.889074722434664],[-87.64110413644076,41.88906966464148],[-87.64110578980993,41.88906959996464],[-87.64114560586275,41.88906804386289],[-87.64128155314663,41.88906273149243],[-87.64139249009692,41.88905839642149],[-87.64154208166974,41.88905255042201],[-87.64158920448298,41.889050708874585],[-87.64191928163972,41.889055550713664],[-87.64196243880109,41.88905520489607],[-87.64236590050399,41.889052750405575],[-87.64267585527773,41.88905052606586],[-87.64287448568341,41.88904902731883],[-87.64311506059406,41.88904721173552],[-87.6436862181424,41.88904084602935],[-87.64402811077206,41.889036477508064],[-87.64433392525805,41.88903357345533],[-87.64433297239992,41.888995347066114],[-87.64433118185026,41.888923522589316],[-87.64433058438102,41.88889955904774],[-87.64432709723464,41.88875967657475],[-87.64432225746903,41.88858220197143],[-87.64577708230439,41.88857478466906],[-87.64756583721159,41.888567527958564],[-87.64758261746204,41.889049516700254],[-87.64762203545058,41.889049074253144],[-87.64768806977582,41.88904833269856],[-87.64779631286483,41.88904711723596],[-87.64796123062182,41.88904526545507],[-87.64825032804814,41.88904201821236],[-87.6482647748553,41.88904185604372],[-87.64841244840284,41.8890401968445],[-87.64857455001646,41.88903837568479],[-87.64872492087216,41.88903339901366],[-87.64888297383634,41.88902816716431],[-87.64916019499852,41.88902347993873],[-87.6493392300614,41.88902043009804],[-87.64950298396896,41.88901767317603],[-87.64963323769028,41.88901548496245],[-87.64990133499134,41.88901823230377],[-87.64996153371418,41.889018849060044],[-87.65002296813161,41.889019478626],[-87.65020320422383,41.8890174499534],[-87.65044672688411,41.88901469966026],[-87.65057697261686,41.889013223830965],[-87.65072315978264,41.889011595632624],[-87.65090302853328,41.889009536235505],[-87.65107191471644,41.889007650879975],[-87.65114445737773,41.889006855993415],[-87.65127848622852,41.88900534531069],[-87.65144399323205,41.88900352907425],[-87.65170804734674,41.88900065103678],[-87.65197169638076,41.88899777026298],[-87.65223573981832,41.88899399166108],[-87.65248417561455,41.88899043660261],[-87.65279689886327,41.88898680151808],[-87.65332975547314,41.888976511291915],[-87.65339980590656,41.88897716564691],[-87.65383505453612,41.88898123118376],[-87.6541477752461,41.88897789454573],[-87.65456722132767,41.8889780542895],[-87.65485717140906,41.888978163731814],[-87.65507134951864,41.88897539490707],[-87.65541739241107,41.888970906940635],[-87.65573627148723,41.88896420797992],[-87.65599459614398,41.888958780511324],[-87.65638973695472,41.888954688967644],[-87.65675226262552,41.88895089787341],[-87.65697434802493,41.888948374061975],[-87.65734659706287,41.888944142749274],[-87.65772558058084,41.88893983349454],[-87.65805491276583,41.888935349308895],[-87.65825308962897,41.88893151969613],[-87.65826726509472,41.888931277286204],[-87.65854926431498,41.88892645469888],[-87.65866459883289,41.88892499184477],[-87.65883110085173,41.888922814054375],[-87.65885265765314,41.88892294066829],[-87.65887758241858,41.888927587613516],[-87.65889907139126,41.88893416278579],[-87.65892071785636,41.88895020650905],[-87.65901838340321,41.888921169683066],[-87.65930560011313,41.88891928833749],[-87.65949254731541,41.88891813518777],[-87.65988671643582,41.88891567245199],[-87.66008369063664,41.88891443992967],[-87.6603269412864,41.88891303948099],[-87.66038844948551,41.88891265926697],[-87.66038849759929,41.88891265900008],[-87.66048033470646,41.888910994604196],[-87.660676050433,41.888861228106244],[-87.66084490976517,41.88890438618131],[-87.66098445226875,41.88890185666387],[-87.661168852274,41.88889851353036],[-87.66148778558428,41.8888945072042],[-87.66194133799337,41.888887393319465],[-87.66274799636125,41.8888827539739],[-87.66365218296053,41.88887754657308],[-87.66365280991135,41.88887754281977],[-87.66423651264611,41.88886878827163],[-87.66463112151311,41.88886285406704],[-87.66479198095318,41.88886046819967],[-87.66482377876765,41.88885999634074],[-87.66511796430898,41.88885542449965],[-87.66535192000592,41.888857800982024],[-87.66545387306061,41.888857653581645],[-87.6655748860525,41.888857478613524],[-87.66594412952612,41.888853917098984],[-87.66634690668404,41.88885000032206],[-87.66685862190567,41.88884517765089],[-87.66706868914602,41.888851877695465],[-87.66726460291522,41.88885812588955],[-87.6674125118066,41.88885681573733],[-87.66776522286547,41.888853728786806],[-87.66801425006115,41.888851239328105],[-87.66810930696413,41.88885028891239],[-87.66844492921982,41.88884828090446],[-87.66877232421783,41.88884633407416],[-87.66899138112947,41.88884501812275],[-87.66932593148148,41.88883916324267],[-87.66952238765816,41.88883691948965],[-87.66967563619497,41.8888355590768],[-87.66992931177944,41.88883106982238],[-87.6701666043028,41.8888268970347],[-87.6704959841395,41.88882122458347],[-87.67073731888841,41.888827512218896],[-87.6711275403557,41.8888124093371],[-87.67134142166066,41.88880981673874],[-87.67145587424208,41.888808429530336],[-87.67165293320483,41.88880605251038],[-87.67180881751624,41.88880415147282],[-87.67196076779244,41.88879978875921],[-87.67211292451134,41.88879541989811],[-87.67235154679288,41.888790481863715],[-87.67248239256016,41.88878774973053],[-87.67257282784202,41.88878618230446],[-87.67278550868988,41.88878249585885],[-87.67298260738538,41.88877981491874],[-87.67317122148,41.888777222077195],[-87.67336262684744,41.888774617524966],[-87.6736090926149,41.88877120384396],[-87.67383895529656,41.88876807847917],[-87.67402742244526,41.88876548338721],[-87.67424865361568,41.888762444858294],[-87.67440143440548,41.88875993741629],[-87.67465873039434,41.88875571424958],[-87.67489700385174,41.88875252523873],[-87.67529050264889,41.88874720665248],[-87.67538703560858,41.8887454762864],[-87.6757336449548,41.888739262110285],[-87.67616873849464,41.888731873531306],[-87.6762725309072,41.88873011727836],[-87.67645602120704,41.8887270133234],[-87.67684594636304,41.888720433781444],[-87.67783227629253,41.888705748362284],[-87.67874584251908,41.88869108374686],[-87.67928985244902,41.8886878022145],[-87.68173967938513,41.88864103364701],[-87.68205775177061,41.888635675229295],[-87.68248160292255,41.888628610604194],[-87.68267349156622,41.88862538953591],[-87.68294305389585,41.88862089046492],[-87.68302703650782,41.88861948874231],[-87.68337999491804,41.888613583814816],[-87.68366264765406,41.888608871192616],[-87.6839049688537,41.888604808229694],[-87.68408662866064,41.888603420479996],[-87.6841836410956,41.888601808370794],[-87.68450067174719,41.88859653993142],[-87.68481297138374,41.88859086711471],[-87.68511541829909,41.888586235530425],[-87.68530759655597,41.88858336844607],[-87.68541048177656,41.888581753862866],[-87.68555858651195,41.88857899525689],[-87.68568189961071,41.8885766984563],[-87.68586299392388,41.888573109312944],[-87.68599308499942,41.88857227849708],[-87.68628039052538,41.888597772599695],[-87.68662242195055,41.888634936724756],[-87.68662254544674,41.88861413578809],[-87.68662275101444,41.88857951750389],[-87.68662316092531,41.88851051144434],[-87.68662375196509,41.88841087544321],[-87.6867669207391,41.888407784516424],[-87.68723522299697,41.88840287384994],[-87.68738500641173,41.88839033855835],[-87.68745896520157,41.88838560854266],[-87.6875743474488,41.8883701352747],[-87.68771275822402,41.888347244693485],[-87.68785029225307,41.888320232378724],[-87.68798603487713,41.88828874988861],[-87.68805277578124,41.888271287902995],[-87.68820785363216,41.88823442530953],[-87.68836753479837,41.88819621733642],[-87.68846692624273,41.88817310614269],[-87.68867151040175,41.88817459398872]],[[-87.68867151040175,41.88817459398872],[-87.6896792351128,41.88818191760689],[-87.69157000947973,41.888195634996485]],[[-87.70198050821631,41.91392122040915],[-87.70163359402461,41.913919507828304],[-87.70133346701225,41.91392246664283],[-87.7010873895941,41.9139252557687],[-87.70094585351342,41.913926547166476],[-87.70077415017698,41.91392811347982],[-87.70046984493118,41.91393033351937],[-87.7003520231526,41.91393141020805],[-87.70025254306297,41.91393231896718],[-87.69988230890456,41.91393623211332],[-87.69954295797882,41.91393798193479],[-87.6993006019039,41.91393969007857],[-87.69919335737808,41.91394101498024],[-87.69902582415247,41.913943084693365],[-87.69877100235283,41.91394587543425],[-87.69863813218032,41.91394756945027],[-87.69846620283194,41.91394976141264],[-87.69823925698486,41.91395166173745],[-87.69816922928194,41.91396287947835],[-87.69812301345353,41.91397645694561],[-87.69806410156244,41.91398840899903],[-87.69798633460701,41.913996682609955],[-87.69764970630898,41.91400322975969],[-87.69761311085607,41.91400347392067],[-87.69735289804592,41.914005208617695],[-87.69709689877445,41.91400370812061],[-87.69709389176086,41.913906545953836],[-87.69680469806255,41.91390877661785],[-87.69664530632394,41.913910014225536],[-87.69648187210267,41.91391135679828],[-87.6962962816662,41.91391288083127],[-87.69587035816845,41.91391743365042],[-87.69566931512803,41.91391958191339],[-87.69525955323294,41.91392291843132],[-87.6948327415895,41.91392662355437],[-87.694650111378,41.91392846572205],[-87.69445920199958,41.913930391063346],[-87.69403472888867,41.913935301069046],[-87.69401231470927,41.913935560193224],[-87.69362173479497,41.91393859892729],[-87.69342572872173,41.91394015853623],[-87.69318360840488,41.91394208477377],[-87.69281359443868,41.913945942873355],[-87.6924277222024,41.91394851588131],[-87.6922033918288,41.91394989472549],[-87.69199720934928,41.91395116154142],[-87.69158248294053,41.91395499150923],[-87.69129829719758,41.91395858947222],[-87.69116039509063,41.9139601511996],[-87.6910515325777,41.91395657828416],[-87.69103962303382,41.91394981574446],[-87.6910212225062,41.91393818704855],[-87.69101550328448,41.91392597067199],[-87.69101465955873,41.9139241553089],[-87.69101320156142,41.913921018181235],[-87.6909939043311,41.913868888949565],[-87.69099121862065,41.91386163354722],[-87.69095942202951,41.913867981177965],[-87.69094215186155,41.913924078449135],[-87.69094139686663,41.91392502921764],[-87.69092775144385,41.913942219577606],[-87.69090731328114,41.91395426217474],[-87.69087016208526,41.913962259840716],[-87.69077598704406,41.91396321449453],[-87.69062202855787,41.913964822661214],[-87.6903785974214,41.91396749387727],[-87.68998001028139,41.91397028329049],[-87.68975740725023,41.913971961763814],[-87.68952487328175,41.91397371475049],[-87.68904541552521,41.91397700794546],[-87.68872882665703,41.913980362845734],[-87.68868216380041,41.913980879421345],[-87.6885370938368,41.913982485571545],[-87.68835550393993,41.9139844959057],[-87.68790054960404,41.91398797683709],[-87.68761821685435,41.913989957010365],[-87.68750953401462,41.91399044348268],[-87.6873155488048,41.91399480259249],[-87.68713642473904,41.913998827336286],[-87.68662172306477,41.91400671446853],[-87.68603900933941,41.914015148956395],[-87.68551714655163,41.914022688902605],[-87.68494214347572,41.914031572958734],[-87.68468221479863,41.914035070879],[-87.68429575560185,41.91404027020367],[-87.6840383496464,41.91404440139593],[-87.68392274342501,41.91404625668134],[-87.68315485379654,41.91405856926344],[-87.68312066227693,41.914036036524614],[-87.68303391771376,41.913978870353326],[-87.68273210340189,41.91378350062509],[-87.68265346290805,41.91373259548914],[-87.68241950807376,41.913582236672944],[-87.68242660767844,41.913850436792714],[-87.68243036399255,41.91399489515479],[-87.68243122892305,41.914028155736666],[-87.68243327675863,41.914106882293716],[-87.68244142855444,41.91442033274717],[-87.68244686307015,41.91461915556913],[-87.68192433994925,41.914630050013216],[-87.68134793969898,41.914642064546946],[-87.68126846301108,41.91464371642553],[-87.68053215951801,41.91465901627861],[-87.6803585599558,41.91466262277521],[-87.68001388419562,41.91467004527602],[-87.67974261337599,41.9146758856909],[-87.67949085616972,41.91468047379662],[-87.67858947452731,41.91469689571876],[-87.6784264624791,41.91469984177344],[-87.67808085119864,41.914706120591276],[-87.67755510272004,41.91471571851386],[-87.677551726474,41.914457000706435],[-87.6775465614986,41.91423028219123],[-87.67754520615992,41.914170810833],[-87.67632589084299,41.914178808795235],[-87.67571867807344,41.91419797330293],[-87.67570177198795,41.91419850682912],[-87.67522604174812,41.91419995246851],[-87.67511159286691,41.91420493860128],[-87.67496050982393,41.91421152028108],[-87.67448269318866,41.91421934081614],[-87.6743658020968,41.9142212534741],[-87.67389122634962,41.914229666160146],[-87.67361270553481,41.91423460221609],[-87.67320537214002,41.914240970836],[-87.67305570333131,41.91424331062074],[-87.67266732683026,41.914250426016864],[-87.67243555383799,41.91425467153889],[-87.6719565624559,41.91426234170355],[-87.6714472022393,41.91427158975455],[-87.6712337418158,41.914275464753246],[-87.67092782430815,41.91428061584649],[-87.67084406562842,41.91428202724605],[-87.67023144657787,41.914292348083094],[-87.6690116925121,41.914253648510915],[-87.66889042612927,41.914254890326625],[-87.66792950303731,41.91427025009447],[-87.66788223393031,41.91428184111429],[-87.66780074681205,41.91430182267982],[-87.66768550847237,41.91428685698982],[-87.66768481978154,41.91428676765193],[-87.66759832410223,41.91427553461874],[-87.66743699455907,41.914281245400176],[-87.66736536371204,41.914286875239384],[-87.66723257902382,41.914298052586624],[-87.66708818099784,41.914310994719315],[-87.66700689443108,41.91431866188206],[-87.66681142199394,41.914338546001076],[-87.66658166739934,41.91439484093889],[-87.66648773789635,41.91441796473536],[-87.66639887487622,41.914439745218864],[-87.66621424124138,41.914484981539175],[-87.66611936480662,41.91451084348654],[-87.6660267415701,41.91454083479311],[-87.66593637188429,41.91457495546631],[-87.66582841872533,41.91462166591163],[-87.66541873349405,41.91480040297236],[-87.66536014241098,41.91482578901632],[-87.66525480582993,41.91489166364292],[-87.66512300936562,41.91492868999134],[-87.6648540452649,41.91504512631033],[-87.66417628109895,41.915342700951435],[-87.66389764164727,41.91546182286043],[-87.66381368020235,41.91549769408237],[-87.6636205599994,41.91561500657832],[-87.66362045478506,41.915614984285256],[-87.66302887729515,41.91548825810883],[-87.66298260796893,41.91550346544493],[-87.66287399043868,41.915543089112035],[-87.66278863987205,41.915567727852775],[-87.66273297508054,41.91557492195888],[-87.66269079980651,41.91558159109481],[-87.66264862736097,41.91559149842107],[-87.66261038807987,41.91561171956232],[-87.66256082116736,41.91564010720342],[-87.66251544501097,41.91566473227084],[-87.66244891656119,41.915691841027574],[-87.66238185080529,41.91573516444545],[-87.66235807623545,41.915759997998336],[-87.66227636052342,41.91580938309197],[-87.66221580777476,41.915830708597476],[-87.66215115799889,41.91586784431878],[-87.66206618405339,41.91591951536775],[-87.66197621311935,41.91594678839218],[-87.66186408550918,41.91598811943976],[-87.66178104121988,41.916013539298525],[-87.66173397730014,41.916034312264685],[-87.66162234098742,41.91608135394277],[-87.66151276161634,41.91612146437549],[-87.66143738667877,41.91614413001842],[-87.66132892672108,41.9161791156679],[-87.66125963002919,41.91617931354875],[-87.6611722259148,41.916182424317164],[-87.66113153902211,41.916176752566116],[-87.66105709973249,41.91615932999294],[-87.661015312252,41.91615000193394],[-87.66092978289082,41.91611802482039],[-87.66086959243323,41.91607327072795],[-87.66073539839373,41.91596963108989],[-87.66065153182298,41.91592976013206],[-87.6605998500673,41.915903990916604],[-87.66047768506233,41.91582355529214],[-87.66026814792862,41.91571176230175],[-87.66020818751903,41.9156696711103],[-87.66008389799451,41.91558867376497],[-87.66004700724383,41.91556444683543],[-87.66004171464058,41.9155610939136],[-87.65993751096639,41.915495252553086],[-87.65990588074008,41.915473909053475],[-87.65986984529766,41.91545130480543],[-87.6595469819935,41.91530728714369],[-87.65937015569499,41.91520866464884],[-87.65923478593137,41.915147359788364],[-87.6591490066673,41.91508093460026],[-87.658650843238,41.914707735368964],[-87.65830802491777,41.91436256411295],[-87.6580772270633,41.914108058862524],[-87.65786196920337,41.913808640301774],[-87.65771538144753,41.91342524254539],[-87.65759512578254,41.912814530112215],[-87.65753056937375,41.91264893057144],[-87.65746243578715,41.912480841226056],[-87.65741201034352,41.91235643882995],[-87.65729010232285,41.91202984390432],[-87.6571174455624,41.911572214878134],[-87.6570573851183,41.91143574736684],[-87.65701224668065,41.91127436777712],[-87.65693010338143,41.911075585872865],[-87.65686079758392,41.910784510393704],[-87.65685130328065,41.9107446340341],[-87.6569368346801,41.91052155201123],[-87.65800830495903,41.910164591069794],[-87.6589498224007,41.90985076765915],[-87.65918674099206,41.9092003595489],[-87.65922877486447,41.90907019963551],[-87.65748556599961,41.909090319339654],[-87.65749024391833,41.9090781169328],[-87.65750697527862,41.90903447593278],[-87.6575173812608,41.90897786880663],[-87.65757623080154,41.908859801577975],[-87.65768058279237,41.908577869595675],[-87.65769059375188,41.90857765407701],[-87.65773586116634,41.908441093047976],[-87.65775179938521,41.908368464690085],[-87.65776508381293,41.908251364167505],[-87.65778769855613,41.908113434931046],[-87.65794627846037,41.907122699019],[-87.65794752586305,41.90711490752305],[-87.65795869093066,41.90704515087472],[-87.65816987519695,41.905669200062604],[-87.65822805988023,41.90536249517191],[-87.65828901180059,41.905041196206206],[-87.65815726863147,41.90452620753916],[-87.65749659929544,41.903602426567176],[-87.65744029613587,41.903529183362245],[-87.65742450943165,41.90350864672302],[-87.6573915427352,41.90346576117723],[-87.65734027241237,41.903399064278986],[-87.6564743881478,41.902622010677916],[-87.65618471755806,41.90192203249845],[-87.65616612420436,41.901708366536546],[-87.65616058787442,41.901692225232296],[-87.65602297926665,41.90142131320058],[-87.65591657728713,41.90121183476312],[-87.6558877953218,41.90116855331613],[-87.65538096865174,41.900812955186844],[-87.65516171977063,41.900741359296205],[-87.6545073262803,41.90052766247817],[-87.6544549464135,41.90051371397523],[-87.65343196121364,41.90028353991109],[-87.65290715513773,41.90017713840496],[-87.6525764304523,41.90011708278884],[-87.65255325641559,41.90011669842245],[-87.65252594501044,41.90012542782432],[-87.65247720532393,41.900135374844716],[-87.65219490498323,41.90009503441949],[-87.65211561075355,41.90008018425687],[-87.65202654098191,41.90005545167964],[-87.65189956534469,41.90001320541836],[-87.65168366463922,41.899908521243866],[-87.65160100747134,41.89986657010357],[-87.65135543331007,41.899741932263],[-87.65133971763105,41.89973145666309],[-87.65128824852708,41.89969714880298],[-87.65123298151288,41.89966030875719],[-87.65103258068567,41.89951904997286],[-87.65086286616122,41.899412190809905],[-87.64973511574857,41.89855612194983],[-87.64967373242823,41.89851069013303],[-87.64939841218182,41.89830691521854],[-87.64878990112467,41.89808777958379],[-87.64790035797597,41.897968380111244],[-87.64782898071522,41.89796338790525],[-87.64631503892191,41.89785749017041],[-87.64540826421205,41.8977633222961],[-87.6448857860499,41.89769401962534],[-87.64478012676062,41.897541972100846],[-87.64461370483289,41.89739875572135],[-87.64443161889739,41.897242058471505],[-87.64423178153238,41.89663645327958],[-87.64422160387812,41.89645465928547],[-87.64419243978605,41.89593370451756],[-87.64417347717686,41.89547778593541],[-87.64414429936375,41.89477625526052],[-87.64413896535773,41.894675729565286],[-87.64413724697425,41.89464308725583],[-87.64413195020265,41.89454248219861],[-87.6441280696988,41.89446951681373],[-87.64412616437114,41.89443380010985],[-87.64412541022858,41.89441966550693],[-87.64412129712834,41.89434790646306],[-87.64411665253296,41.89427430586374],[-87.64407483890285,41.894139120479835],[-87.64405849746716,41.89411838572988],[-87.64404005474604,41.89409492156967],[-87.64397693365154,41.89402168316754],[-87.64381128744996,41.893919151882706],[-87.64378764455525,41.893894311780464],[-87.64377722154933,41.89388332712827],[-87.64373119746696,41.89381872583025],[-87.64369649893544,41.893759708721014],[-87.6436731997799,41.89371999661798],[-87.64365581379829,41.89369047397662],[-87.64364730191964,41.89367599969221],[-87.64362706733236,41.89364159111171],[-87.64355315303712,41.89353725059539],[-87.64349508118292,41.89350693440989],[-87.64342287664036,41.89347241720643],[-87.64336522317238,41.89344418936362],[-87.64327098089329,41.89340295375555],[-87.6432154401005,41.89337630247384],[-87.64294310922915,41.89321503322908],[-87.6428924713682,41.89317312613838],[-87.642804579243,41.89310503452363],[-87.6427157075291,41.89303583925478],[-87.64257330904354,41.89294403874098],[-87.64245012719753,41.89286862699489],[-87.64228411703206,41.89273565770812],[-87.64213097203645,41.892594944539226],[-87.64207460725277,41.89253929514569],[-87.64203770104434,41.89250285644874],[-87.6419967201942,41.89245487948488],[-87.6419266617645,41.89237285969916],[-87.64190571318869,41.89235362598838],[-87.6418020868419,41.892256520905654],[-87.64173954242307,41.89219154516036],[-87.64157415756708,41.892048506974334],[-87.64150556017096,41.891969334093986],[-87.64145693720813,41.891904222248584],[-87.64139702169767,41.89181692378001],[-87.64133359828237,41.8917246096269],[-87.64126742859817,41.89162810764476],[-87.64119165541362,41.89143456635965],[-87.641178097946,41.8914127530211],[-87.64116075393856,41.89138484660225],[-87.6410920109446,41.89126821373624],[-87.64103723856611,41.89118429432067],[-87.64093914766914,41.89104413068519],[-87.64086337058866,41.89093618194315],[-87.64068444441929,41.890666722362106],[-87.64066876156895,41.89064310360472],[-87.64041394816596,41.89033744980304],[-87.64029904578554,41.890203496185975],[-87.64020324745537,41.89009279169617],[-87.64012224895971,41.88999919074705],[-87.63999929572181,41.889862636082114],[-87.6399898635334,41.88985252424214],[-87.63987549426145,41.88972991809559],[-87.63978968497148,41.889636370183574],[-87.6397171175601,41.88955453776279],[-87.63964050079603,41.889466808162474],[-87.63959663491038,41.8894172566367],[-87.63954065418703,41.88935369116639],[-87.63943528455961,41.889228301401985],[-87.63936098293495,41.88908028505862]],[[-87.74059567509266,41.8878231689323],[-87.74059384598445,41.88777273369806],[-87.74059206480369,41.887717153798405],[-87.74058372640616,41.88747698895814],[-87.74057544476452,41.88723065039526],[-87.74054816378084,41.88645731788633],[-87.74054372433856,41.886341693582956],[-87.74054263280078,41.88630817383667],[-87.74054157895668,41.88627582058957],[-87.74053712368016,41.88616191135478],[-87.74052569012609,41.885859298853795],[-87.74052550081775,41.88585419357746],[-87.74051429787933,41.88555222797116],[-87.74050917371954,41.88541105199716],[-87.7405059321561,41.885315150173014],[-87.7404951128924,41.884995732556234],[-87.74049529782609,41.884995630052806],[-87.7404861964668,41.88472683261733],[-87.74048328650626,41.88465024376221],[-87.7404779385787,41.88450949087047],[-87.74047238690328,41.88436337027271],[-87.74046469389458,41.88416088521679],[-87.74044160018302,41.88345725062341],[-87.74044021110795,41.88341790987116],[-87.74043201984303,41.883185923736214],[-87.74042416890465,41.882963565347964],[-87.74040612435404,41.88245250796446],[-87.74039093749832,41.882045622148574],[-87.74039006994086,41.88202077755375],[-87.74038486097021,41.88187162681288],[-87.74037969181785,41.88172361294143],[-87.7403752809865,41.88159732563211],[-87.74037510395273,41.881592245387814],[-87.74036074089489,41.88118097296297],[-87.74034170120044,41.880660911058094],[-87.74033782959627,41.880555153493816],[-87.74033051466267,41.88035534671541],[-87.74032905236095,41.880313254452716],[-87.74031111291136,41.87979676429918],[-87.74030540173614,41.87963738528102],[-87.74030360934235,41.879587349998175],[-87.74030360372062,41.879587203426205],[-87.74029857619831,41.87944690019448],[-87.74029313221975,41.879294967421615],[-87.74028790435536,41.87913725691887],[-87.74027318085732,41.87869310550775],[-87.74027205789754,41.878659235660734],[-87.74026670888406,41.87851110249665],[-87.74025413750098,41.878162927765956],[-87.74025187504036,41.87809646433068],[-87.74024182265397,41.87780115849698],[-87.74023555423331,41.877617013522105],[-87.7402326536363,41.87753180410071],[-87.74021730176321,41.87705957617614],[-87.7402165907235,41.87703886356255],[-87.74021207554499,41.876907359608595],[-87.7402118629133,41.87690736262681],[-87.73981621692674,41.87691282711956],[-87.7395145297237,41.876909120749],[-87.73950192796754,41.8766243458487],[-87.73949925432308,41.87650064862244],[-87.73949670236956,41.876363807059086],[-87.73949330074751,41.876179924630556],[-87.73948466878153,41.87600411096654],[-87.73947875031405,41.87588355256256],[-87.73947264909273,41.87574136878275],[-87.7394661271938,41.87558120797546],[-87.73945937918066,41.87542167717204],[-87.73945298114089,41.87529573781567],[-87.73944819145383,41.87509490900493],[-87.73944470209238,41.87494860202561],[-87.73943923030981,41.87472678328201],[-87.73943507282326,41.87463186554517],[-87.73942911349887,41.87447088433894],[-87.73941732172746,41.87418016066705],[-87.73941398704295,41.87409794455693],[-87.73940810729755,41.87378913086596],[-87.73940563982039,41.873720209649946],[-87.73940043475102,41.87357481994702],[-87.73939240658946,41.873414788498856],[-87.73938985879195,41.873265629852455],[-87.74008456621938,41.8732517007339],[-87.74008463893341,41.87325169918856],[-87.74008463717456,41.87325165115505],[-87.74008349308333,41.873220480961336],[-87.74008116263063,41.87315699435504],[-87.7400704131614,41.87286415283639],[-87.7400637558786,41.872682798788226],[-87.74005160948498,41.87234485261695],[-87.74005155321431,41.87234327465507],[-87.74005084632606,41.87233181045298],[-87.74003920562976,41.87200244019448],[-87.74002970957464,41.8717389428059],[-87.74002753014297,41.87167684281064],[-87.74002016768807,41.87158943213231],[-87.7400092017925,41.871459238582574],[-87.7400179590665,41.871371838182],[-87.73999462650501,41.87061944904853],[-87.73999235131294,41.87051800390079],[-87.73999004499176,41.87042012392537],[-87.73997714081264,41.869830385618826],[-87.73997368306411,41.869757645011724],[-87.73996885174792,41.8696845542751],[-87.73996138432356,41.86959875774031],[-87.73995551148249,41.8695390401353],[-87.73994046461848,41.8694291919337],[-87.73992602264349,41.8693035676637],[-87.73991341636746,41.86917795314892],[-87.7399017279651,41.869052342824055],[-87.73989425043482,41.86896313017512],[-87.73989424215759,41.86896303271131]],[[-87.73989424215759,41.86896303271131],[-87.73988875915504,41.868866695578646],[-87.73987228541384,41.86846457710098],[-87.73986740848879,41.86834689937246],[-87.7398674081902,41.86834689196143],[-87.73985057375977,41.8679341375917],[-87.73984797095167,41.86786826201364],[-87.73984530078849,41.86780958975704],[-87.73984269444708,41.86774405746555],[-87.73981151874649,41.86699642974393],[-87.73977731736436,41.86617915050738],[-87.7397707219097,41.866048764252575],[-87.73976647132838,41.865962195852745],[-87.73998200626032,41.86595918745525]],[[-87.73998200626032,41.86595918745525],[-87.73998200623748,41.865959189924965],[-87.73998200619688,41.86595919431558],[-87.73998200651324,41.865959199805715],[-87.73998353217722,41.86595917338475],[-87.73998368199155,41.86595917059122],[-87.73998567838842,41.86595913617406],[-87.74006910112001,41.86595797574513],[-87.74016676993102,41.865956614409406],[-87.74027576093583,41.86595509960101],[-87.74039140735952,41.865953492814654],[-87.74212686656367,41.865929124656354],[-87.74216082135263,41.86592862764844],[-87.74230586547202,41.86592650586931],[-87.74257824051581,41.86592249639243],[-87.7426415769255,41.865921564199446],[-87.74317204054383,41.865913616412314],[-87.74475411302981,41.8658969266153],[-87.74507615283981,41.86589352769613],[-87.74573407060983,41.86588287229091],[-87.74597780190966,41.86587942609295],[-87.74633117236327,41.865874455000124],[-87.74693957490496,41.865866640607656],[-87.74719601605247,41.86586235138756],[-87.74751113341303,41.865857098277154],[-87.74818049603515,41.86584744799751],[-87.74841652077171,41.865843711472344],[-87.7486422632858,41.865840140558305],[-87.74930223220662,41.865829969392294],[-87.74963981500969,41.865824907283184],[-87.74997100952369,41.86581994922006],[-87.75061603170101,41.8658103254856],[-87.75065403587912,41.86580973756512],[-87.75086317946581,41.86580650205678],[-87.75104592735585,41.86580366198358],[-87.75109083049053,41.8658029639999],[-87.751723341148,41.86579231067402],[-87.75208225438746,41.8657872945188],[-87.75231977983964,41.86578396783236],[-87.7523514341236,41.865783057981155],[-87.75246375422985,41.86578132094657],[-87.75305392101126,41.865772174726715],[-87.75330642450076,41.86576892222538],[-87.75366294735433,41.865764328138226],[-87.75407025486987,41.86575847948497],[-87.7543230917783,41.86575484223376],[-87.75438348477843,41.86575397215035],[-87.75453329928789,41.86575181369384],[-87.75453330516167,41.86575181372344],[-87.75473895461352,41.86574884251677],[-87.7550192549558,41.86574482067952],[-87.7557336509735,41.86573238960445],[-87.75733531446119,41.865708298654745],[-87.75743566383889,41.8657067980387],[-87.75898371536533,41.86568376021052],[-87.75940908296296,41.86567809298145],[-87.75974684339792,41.865673605509116],[-87.7599919702488,41.86566969470997],[-87.76036653224104,41.86566371815094],[-87.76100827854849,41.86565404576865],[-87.76153084879762,41.86564616703221],[-87.76162705496243,41.86564483093],[-87.76165737643063,41.86564440996148],[-87.76177931407838,41.86564271168767],[-87.7625826952712,41.86563073569875],[-87.76399439722209,41.86561128773692],[-87.7640997555601,41.86560786346814],[-87.76430870911595,41.865601072590465],[-87.76430871132106,41.86560107232696],[-87.76438252620369,41.86559867071681],[-87.76446912298232,41.86559585322377],[-87.76456856518352,41.865592617938205],[-87.76530038404759,41.86558153032239],[-87.76553236267333,41.86557836868641],[-87.76566483761411,41.86557656003821],[-87.76585550988831,41.86557395647711],[-87.76657925983756,41.86556600418031],[-87.76675791795692,41.865563510799696],[-87.76675792640049,41.86556351084135],[-87.7677843544059,41.86554922233349],[-87.76782288480767,41.86554862720574],[-87.76798637492578,41.86554610085938],[-87.76818208451319,41.86554306378245],[-87.76830860955742,41.86554110013712],[-87.76899481457434,41.865531740423926],[-87.76921364842438,41.86552872712367],[-87.76949137534514,41.865524904028554],[-87.7701965221737,41.86551584966759],[-87.77044205678985,41.86551156482535],[-87.77044206413447,41.86551156458691],[-87.7707024995596,41.8655069960138],[-87.77071024703808,41.865506869037894],[-87.77146285866371,41.86549817717577],[-87.77167233270457,41.86549492047731],[-87.7716723444545,41.865494920260346],[-87.77186891762234,41.86549187755563],[-87.77194988065514,41.86549062431147],[-87.77228023801317,41.86548693810766],[-87.77260497189224,41.86548331350947],[-87.77275032380031,41.865481081506545],[-87.77289647210678,41.86547883674038],[-87.77313700885554,41.865475125758174],[-87.77366645941044,41.865465366120326],[-87.77385992373794,41.8654617996396],[-87.77396384443783,41.86546081295804],[-87.77413883377076,41.86545915164774],[-87.77413885176155,41.865459151460904],[-87.77413885173785,41.865460291700124],[-87.77413887370841,41.86570520148882],[-87.77414596245293,41.865915447001356],[-87.774149438115,41.86601798693603],[-87.77414943809349,41.866017989405755],[-87.77416285328566,41.86641652070353],[-87.7741743979844,41.86673480049622],[-87.7741874520688,41.86708206807642],[-87.77419537793801,41.86728905112214],[-87.77420315615971,41.867491916780715],[-87.77421662744237,41.867863005947115],[-87.77422330218005,41.86804075653421],[-87.77422947772534,41.86819372157459],[-87.77422994634011,41.868205334532966],[-87.77423751832312,41.86841486824643],[-87.7742438152881,41.86859393421972],[-87.77425075697187,41.86877898553097],[-87.77425553881672,41.868900194911525],[-87.77426304041093,41.86908879094997],[-87.77426403191365,41.86911371225431],[-87.77426963503532,41.86925435551033],[-87.7742736880936,41.86943393166725],[-87.77427829544982,41.86961309970156],[-87.77428427296671,41.86984145009979],[-87.77428505985823,41.8699322890856],[-87.77428584638345,41.8700231280682],[-87.77427552986678,41.87021273311445],[-87.77427570837911,41.87041135664791],[-87.77427570832411,41.87041136295942],[-87.77427578307277,41.870508125788085],[-87.77427581921529,41.87056718262568],[-87.77427779062155,41.87061052402274],[-87.77427868006082,41.87062988523564],[-87.77428318417304,41.870727913318866],[-87.77428321406144,41.870728570439205],[-87.77428327517289,41.870729900054194],[-87.77428347015358,41.870734153502156],[-87.77430141908997,41.87092430747931],[-87.7743077819887,41.870991637755566],[-87.77431227781223,41.871039215120696],[-87.77431684899364,41.87108758347213],[-87.77433133645307,41.87124108532121],[-87.77433133678436,41.87124108943921],[-87.77434296646668,41.8713642769499],[-87.77434506653373,41.87141401335589],[-87.77435442389773,41.871633790885575],[-87.77436229363288,41.87186835352494],[-87.77437497879679,41.87213178116438],[-87.77438536286775,41.872309549665296],[-87.77438750242428,41.87234633117537],[-87.77438750240754,41.87234633309627],[-87.7743999388232,41.872559354672426],[-87.77440073656969,41.87257302165151],[-87.77440079284943,41.87257397912155],[-87.77440928169642,41.8727712223182],[-87.77441899128112,41.872996930193636],[-87.77442381150347,41.873265478424486],[-87.77443122957659,41.87355618624242],[-87.7744380327958,41.873778394189756],[-87.77444075001117,41.873858457038494],[-87.77444720330647,41.874049104072554],[-87.77445334223196,41.87422100713747],[-87.7744626787153,41.874485406296294],[-87.77446948874828,41.8746942497227],[-87.77447641229728,41.87490262717048],[-87.77448064341554,41.8750303247178],[-87.77448123767826,41.87504826103363],[-87.77448768451072,41.87529033558337],[-87.7744960073153,41.875586783188304],[-87.7744995168789,41.87568970922349],[-87.7745030922313,41.87579351428681],[-87.77451240369369,41.876058719784425],[-87.77451250634361,41.87606164675564],[-87.77451951247482,41.87623528175918],[-87.77452635668914,41.876414862216954],[-87.77452635697743,41.87641487127439],[-87.77453332421413,41.876597151572106],[-87.77454175468766,41.87684329720059],[-87.77454493092746,41.87696768219668],[-87.77455692243753,41.87728558017618],[-87.77456131061568,41.87740569002495],[-87.774561310587,41.877405693317925],[-87.77456651620179,41.8776090913654],[-87.7745719947897,41.877823224602764],[-87.77458268832736,41.878054095701565],[-87.77459392452307,41.878332362941],[-87.774603779002,41.87859212691017],[-87.77461394123404,41.87885880787914],[-87.77461739543267,41.878955394635994],[-87.77462300033926,41.879113024290454],[-87.77463376617337,41.87941143226915],[-87.77463432556671,41.87942735137606],[-87.77463998958942,41.879603285462885],[-87.77464451096291,41.87976302262675],[-87.77465593824303,41.88008681783894],[-87.77465593820479,41.88008682222954],[-87.77466544434272,41.88035711795465],[-87.77467116421577,41.88057737221442],[-87.77467344364564,41.88063608228624],[-87.77468155868205,41.88084413544607],[-87.77468352966129,41.880894667518646],[-87.77469263243667,41.88118604175381],[-87.77470201111088,41.881445748387726],[-87.77470602008687,41.88155894051439],[-87.77470867070332,41.88163398122151],[-87.77471146397338,41.881764401050106],[-87.77471815296587,41.88197430755774],[-87.77472053110294,41.88204892980776],[-87.77472225029673,41.88210286872909],[-87.77472225025849,41.8821028731197],[-87.77472225024415,41.88210287476619],[-87.7747843862298,41.88405480223317],[-87.77478438620349,41.88405480525172],[-87.77483277040355,41.8855748052041],[-87.7748327706895,41.885574814535936],[-87.77485377819826,41.88623445679555],[-87.7748568333367,41.886330384234604],[-87.77485709255035,41.886338529601275],[-87.77488133328364,41.887099681313416],[-87.77488133356246,41.88709969146848],[-87.77488507916435,41.88721755071289],[-87.77488920292262,41.887347315792546],[-87.77489057582358,41.88739027269339],[-87.77489060558784,41.88739119847297],[-87.7748912523868,41.887411431665164],[-87.77489240357058,41.8874475877899],[-87.77490929824482,41.88797821564371],[-87.77491065935355,41.88802096885916],[-87.77491065961325,41.888020981209536],[-87.77494039015704,41.8889549443255],[-87.7749403904502,41.88895495283409],[-87.7749537166498,41.88937345274508],[-87.77497421853303,41.89001729428847],[-87.7749742188023,41.89001730554119],[-87.77497550436247,41.89005756632315],[-87.77498148991941,41.890245003595766],[-87.77500649736503,41.8910005069975],[-87.77500649733635,41.891000510290475],[-87.77501636564116,41.89129880870437],[-87.77501667040245,41.89130801164319],[-87.77503560017878,41.89188020678168],[-87.77503560049587,41.89188021254613],[-87.77506651333297,41.89281367471895],[-87.77506651330907,41.89281367746307],[-87.7750852499172,41.893379164296775],[-87.77508902102835,41.893492983728194],[-87.77509926276757,41.893802080505274],[-87.77509926340413,41.893802091759774],[-87.77511194107858,41.89418496318955],[-87.77512939118475,41.89471191663214],[-87.77512939145885,41.894711927336026],[-87.77513766890564,41.89496204946738],[-87.77515506853806,41.8954877956718],[-87.77515854385321,41.89558574997028],[-87.77515969821731,41.89561827898962],[-87.77515969816235,41.895618285301126],[-87.77515992505091,41.895624708758284],[-87.7751646201998,41.89575754585473],[-87.775169175583,41.895881928076356],[-87.77517464978341,41.896031388368364],[-87.77517613849047,41.8960755502132],[-87.77517613845463,41.89607555432938],[-87.77518623873335,41.89637516095373],[-87.77519172948648,41.89653327418725],[-87.77519172976776,41.89653328406789],[-87.77520313634255,41.8968600957621],[-87.77520752784507,41.896988465371095],[-87.77521548642773,41.897221902222185],[-87.77522385970894,41.89744559901558],[-87.77523595634254,41.89776903886459],[-87.775238188688,41.8978549925442],[-87.77523939545333,41.89790146530325],[-87.77524497309854,41.89811530899938],[-87.77524622419402,41.898163272370006],[-87.77524930732194,41.898357597306784],[-87.775249307608,41.89835760663861],[-87.77525266323332,41.89857134484233],[-87.77525972665089,41.89881051274332],[-87.77526219046007,41.89889452570592],[-87.77527770329755,41.8993909244962],[-87.77529109810591,41.899810145411976],[-87.77529772379899,41.900027850886026],[-87.7753024078677,41.90016906462085],[-87.77530240817528,41.90016907148294],[-87.77531065140694,41.900416251648174],[-87.77532169697491,41.90075925320701],[-87.77533332591585,41.90112808089129],[-87.77534451837674,41.901471110287744],[-87.77535619197575,41.90183483330427],[-87.77536171589935,41.90199778656036],[-87.77536171619977,41.9019977942457],[-87.77536980811739,41.902237041090984],[-87.77537345780497,41.902349462931184],[-87.77540044022648,41.90316128663525],[-87.77540320715195,41.903244524384675],[-87.7754220417193,41.90381119174652],[-87.77542204202452,41.903811198883034],[-87.77544334927912,41.90445274792431],[-87.77548229130788,41.905625241685],[-87.77554257704784,41.907439559588404],[-87.77554257735788,41.90743956617609],[-87.77558975269436,41.90885895254113],[-87.7755905250555,41.90888219093054],[-87.77559798553517,41.909211151770585],[-87.77559930561618,41.90925355610438],[-87.77615024792617,41.90924667009569],[-87.77630572365784,41.9092447265401],[-87.77643742053652,41.90924307991349],[-87.77643742567957,41.90924307993843],[-87.77658272877089,41.909241258461634],[-87.77665684226564,41.90924032935741],[-87.77668972611553,41.90923991247891],[-87.7769078236195,41.90923718246629],[-87.77729441986492,41.90923230375917],[-87.77765162550628,41.90922755649997],[-87.77797899623515,41.909223213237965],[-87.77801375277164,41.90922285992194],[-87.77801376673375,41.90922285971504],[-87.77801887298315,41.90922280811912],[-87.77807992679293,41.90922219144842],[-87.77821035365037,41.90922087391387],[-87.77832615577626,41.90921970590841],[-87.77844024136584,41.90921855501275],[-87.77886831821016,41.90921313077647],[-87.77908241196565,41.90921043191085],[-87.77934368331474,41.90920694516827],[-87.77951533970587,41.909204946897766],[-87.77978689439932,41.9092017831661],[-87.77988034455795,41.90920031484221],[-87.77993121916846,41.90919951530402],[-87.78010783917385,41.909197046106094],[-87.7804242254281,41.90919261468483],[-87.78049560753605,41.90919158131201],[-87.7805679243633,41.909190534556785],[-87.78063118603463,41.90918983495122],[-87.78082029978818,41.909187742574794],[-87.7811440992003,41.909184168658896],[-87.7812877966819,41.90918225255158],[-87.78171330144053,41.90917699771371],[-87.78193602797488,41.909174252944226],[-87.78212113463934,41.90917596465129],[-87.78241743722417,41.909178676391484],[-87.78257009366982,41.909177296447375],[-87.7826454851911,41.90917661494218],[-87.78287305618623,41.90917452276226],[-87.78305286453724,41.90917285959815],[-87.78335508997749,41.90916936760706],[-87.7833550984268,41.909169367647536],[-87.78349301873239,41.90916776139577],[-87.78362893148068,41.90916617912204],[-87.78386922301749,41.90916299300746],[-87.78414265523642,41.90915941604772],[-87.78428609629759,41.90915744007676],[-87.78452882377836,41.90915297498589],[-87.78477102186356,41.909150180289245],[-87.78500237867597,41.90914785499294],[-87.78530971566308,41.909144739564915],[-87.78542967943324,41.90914289709904],[-87.78565796069469,41.90913934834207],[-87.78585400397294,41.909136782919695],[-87.78604687311916,41.9091342588402],[-87.78631798919491,41.90913072136897],[-87.7866139338979,41.90913240548134],[-87.78663282129054,41.9091318642304],[-87.78696581557824,41.909122170304485],[-87.78696581778242,41.909122170314966],[-87.78696582035396,41.9091221703272],[-87.78707409845522,41.90912068190266],[-87.78718302661474,41.90911956090261],[-87.7873458704885,41.90911788524578],[-87.7875424351837,41.909115852625156],[-87.78764038557259,41.90911483982517],[-87.78797546220186,41.90911132740268],[-87.78826314699184,41.909107890920055],[-87.78852592116033,41.90910474716703],[-87.78869640458265,41.90910228997814],[-87.78872007228426,41.90910209021166],[-87.78872448662513,41.90910205297003],[-87.78874431459954,41.90910188603045],[-87.78989645615042,41.90909161988879],[-87.79020776851227,41.90908749452072],[-87.79111745731976,41.90907543765992],[-87.7911174753251,41.9090754371961],[-87.7912793157541,41.90907327646903],[-87.79128145743057,41.90907324788503],[-87.79128275184182,41.90907323066923],[-87.79142263429402,41.90907136262848],[-87.79188413960259,41.909065246573405],[-87.7923419739774,41.90905917750481],[-87.79234198499823,41.909059177556735],[-87.79241022832454,41.90905827045208],[-87.79262860709764,41.90905536837828],[-87.79315385558193,41.909048379679106],[-87.79315923640469,41.9090483081197],[-87.79320119470052,41.909047749726014],[-87.7935655783622,41.90904289972744],[-87.79356559416105,41.909042899527265],[-87.79384148758017,41.90903922898607],[-87.7945747965184,41.90902948689891],[-87.79466816705103,41.909028246011744],[-87.7947984570898,41.90902651437035],[-87.79479845929396,41.909026514380685],[-87.79479846186548,41.90902651439275],[-87.79487383230904,41.909025508622946],[-87.79488985499474,41.90902529478704],[-87.79505256742186,41.90902312322529],[-87.79542690590722,41.90901814850609],[-87.79598841373156,41.909010684413786],[-87.79632005988819,41.90900625974101],[-87.79640241928628,41.90900516078926],[-87.79640571538069,41.90900511692581],[-87.79655192114625,41.90900316572615],[-87.79674891005901,41.90900054578118],[-87.79699506333199,41.90899727122257],[-87.7972038650245,41.908994493266604],[-87.7973724096935,41.90899224136619],[-87.7974549946622,41.90899113804704],[-87.79755900917343,41.908989839651014],[-87.79770292544197,41.908988013789624],[-87.79780668292601,41.90898674196155],[-87.79788178450015,41.90898549970296],[-87.79788188149956,41.90898549823431],[-87.7979266978407,41.90898477086984],[-87.79799998560938,41.908983580724524],[-87.79813288440745,41.90898138545215],[-87.7981425106045,41.90898122669511],[-87.7982478127347,41.908979796738805],[-87.79845044204147,41.90897706322003],[-87.79865953963996,41.908974250240966],[-87.79876344486831,41.90897292252816],[-87.79888439802991,41.90897134503397],[-87.79907501137558,41.90896893922911],[-87.79912384868034,41.90896838048954],[-87.79919607386488,41.908967554286406],[-87.79931132966377,41.908966251432595],[-87.79960128834517,41.90896326363629],[-87.79973810982943,41.908961869042],[-87.79984775531736,41.90895938699903],[-87.79998062350423,41.908956354373736],[-87.80011286671397,41.90895337302849],[-87.80027701997994,41.90895213242257],[-87.80046443059531,41.90895072426304],[-87.80057979843063,41.908949283992726],[-87.80070677633705,41.90894767737119],[-87.80085682784737,41.90894582140371],[-87.80092818239736,41.908944984310864],[-87.80118048067052,41.908942024824604],[-87.80128593656437,41.908940776658476],[-87.80131543087998,41.90894042785636],[-87.80151713616726,41.90893842586331],[-87.80174235506456,41.908936230505404],[-87.80176444429155,41.908936135451874],[-87.80185000095393,41.908935768579155],[-87.8018766242448,41.90893563905597],[-87.8018824532546,41.90893561087447],[-87.80211323558026,41.908934488836685],[-87.80227896517462,41.90893369119034],[-87.80239977499275,41.90893161564136],[-87.80254413748676,41.90892915432555],[-87.80256614191929,41.90893188885959],[-87.80256614485589,41.90893188914759],[-87.8025661576999,41.90893189085348],[-87.80294218079797,41.90892094963372],[-87.80394243864679,41.908891839245335],[-87.80394245518258,41.90889183877272],[-87.8057454130007,41.90883935174281],[-87.80576774665893,41.909334899567185],[-87.80576781207668,41.9093537253476],[-87.80576719694612,41.909412593309284],[-87.80576712051244,41.90941991294125],[-87.80576876670807,41.90959472880128],[-87.80577261330048,41.90966302286343],[-87.80577807736333,41.90977130846469],[-87.80578527854287,41.90991406940905],[-87.80578964222076,41.909999791758494],[-87.80579767384172,41.91014878593343],[-87.8058024442747,41.91023423654701],[-87.80580856548802,41.91034299112691],[-87.80581006119297,41.91036939592663],[-87.805811484972,41.91039454161357],[-87.80582049013513,41.91055457153909],[-87.80582618769097,41.910705909531956],[-87.80582618801316,41.91070591502191],[-87.80584309197486,41.91115604775553],[-87.80584686393368,41.91126457253418],[-87.80585098412537,41.91138435001206],[-87.80585684671563,41.91155586382888],[-87.80586096617233,41.91167577905777],[-87.80586770781383,41.91186993714016],[-87.80587277979446,41.912012496424886],[-87.8058793575776,41.91219523798827],[-87.80588568560205,41.91237270918768],[-87.8058908717558,41.912532557405804],[-87.80589087200798,41.912532571402586],[-87.80589087263202,41.912532584852215],[-87.80589527034634,41.91266829387567],[-87.8058978747757,41.91274867083234],[-87.80590039582957,41.91283083061035],[-87.80590279884156,41.91290912156798],[-87.80590897312754,41.91310969879037],[-87.80591376434816,41.91326411185798],[-87.80591904115317,41.91343532160834],[-87.80592785551612,41.91370352921169],[-87.80593339709804,41.913869361185796],[-87.80593987999718,41.914063710373256],[-87.80594482976782,41.91421222321014],[-87.80594918805147,41.91436109090048],[-87.80594918835787,41.91436109831132],[-87.80595165097738,41.9144458170721],[-87.80595541224932,41.91456018641171],[-87.80596197292446,41.914771879781],[-87.8059665540308,41.91492055583429],[-87.80597169472557,41.915086056896726],[-87.80598023051873,41.91536578893247],[-87.80598525969758,41.915531454123624],[-87.80599152195803,41.91573924899578],[-87.80599215680272,41.91576040997095],[-87.80599662820057,41.91590894828211],[-87.806005051529,41.916189063678466],[-87.80600505220733,41.91618907054218],[-87.80600659944025,41.9162075433359],[-87.80600725878786,41.9162154187531],[-87.80601137844829,41.916322023789164],[-87.80601485402262,41.91643545928659],[-87.80602031407722,41.91661119749465],[-87.80602148452441,41.916647591708056],[-87.80602862362889,41.9168693581747],[-87.80603395212847,41.91703439407006],[-87.80603960024112,41.91720974865532],[-87.80604553034046,41.91739539596087],[-87.80605177770954,41.91759169234942],[-87.80605770244681,41.91777799823392],[-87.80606064934777,41.91787082206902],[-87.80606505337059,41.91802320194304],[-87.80606505362957,41.91802321511657],[-87.80606956822966,41.91817997364649],[-87.80607542798747,41.918365346173],[-87.8060822742246,41.91858255661963],[-87.80608744583681,41.91874882555133],[-87.80609262726433,41.91891386016641],[-87.80610043532735,41.91916167322144],[-87.80610689396023,41.9193679598046],[-87.80611399409293,41.9195946109944],[-87.80611825580465,41.919728548914435],[-87.80612239064986,41.91985562648682],[-87.806122390625,41.919855629505356],[-87.80612930394264,41.92006918680279],[-87.80613467896019,41.92022420553918],[-87.80614065513566,41.92039989220955],[-87.8061475782246,41.92061682795683],[-87.80615187640112,41.92075090323114],[-87.80615388294699,41.92081367526198],[-87.80615649200249,41.920895298003366],[-87.80616233620219,41.921073728005474],[-87.80616932356968,41.92128728888876],[-87.80617352070682,41.92144257715531],[-87.80617705767274,41.92156646808393],[-87.80618210230978,41.92173026680756],[-87.80618821945058,41.92191564039663],[-87.80618821942574,41.92191564341516],[-87.80619227214832,41.92203942336418],[-87.80620080416351,41.92229297532377],[-87.80620444169949,41.92240046112226],[-87.80620514927966,41.92242137048531],[-87.80620938795548,41.92254479727058],[-87.80621620022048,41.922739395742845],[-87.80621903877811,41.922823107321534],[-87.80622657631284,41.92307701088109],[-87.8062256761687,41.92309262143204],[-87.80622929273069,41.923305124229564],[-87.80622944180101,41.92332254996653],[-87.80622980135827,41.92336824391002],[-87.8060563870547,41.92332046645529],[-87.80579830455294,41.923257878288815],[-87.80558697434887,41.92320716824266],[-87.80527669337515,41.92312478687306],[-87.80500721438506,41.92305185446832],[-87.80473270105024,41.92297683925736],[-87.80446420953173,41.922895677700396],[-87.8043861391203,41.922871310719174],[-87.80428919795058,41.92284135867074],[-87.80402348962781,41.92275712136981],[-87.8037871456551,41.92267679137639],[-87.80351736668469,41.92258498749046],[-87.80326545041125,41.922499439680834],[-87.80300120798648,41.92240491535786],[-87.80277085452626,41.92232255331263],[-87.80276449154798,41.92232026842652],[-87.80271956346546,41.922304135487046],[-87.80253089678952,41.922236030057995],[-87.80253089019611,41.9222360275577],[-87.80225980067976,41.922136670210946],[-87.80197956485787,41.92203246557049],[-87.80166223852385,41.92191470927823],[-87.80137831928037,41.921811857955134],[-87.80106875430204,41.92169996802074],[-87.80073171671299,41.92157800198072],[-87.80067630343767,41.921557848975176],[-87.80050870891334,41.92149669882553],[-87.80011122953762,41.921352496063015],[-87.79974351929063,41.921218721961196],[-87.79951501684165,41.921135676194304],[-87.79930803612068,41.92106061918858],[-87.79901633986937,41.92095498106668],[-87.798814323279,41.920885395493414],[-87.79868572224849,41.9208350976117],[-87.79809318030954,41.920620001765585],[-87.79725245366886,41.92031490015055],[-87.79633230686676,41.91998074702977],[-87.796292682061,41.91996635700867],[-87.79612921391177,41.91990659105168],[-87.79538512842818,41.919635887728404],[-87.79511559537008,41.91953824032291],[-87.79511469220124,41.91950946993429],[-87.79511435002787,41.91949819940915],[-87.7951124723038,41.91943634244037],[-87.79387491197242,41.91898768148763],[-87.79258230325226,41.91851748260977],[-87.79152185605011,41.9181317212509],[-87.7894151140512,41.91751009715075],[-87.78926582455266,41.917431565046236],[-87.788956942902,41.91729837811557],[-87.78887864881594,41.917269878229206],[-87.78872984383526,41.91721565971978],[-87.78862774063379,41.917178471827214],[-87.78816117401357,41.91700954508994],[-87.78805310733492,41.91697164149036],[-87.78783420128292,41.91689788008737],[-87.78761342109765,41.91682856764324],[-87.78742191612947,41.91677311623],[-87.78722808086928,41.91672176839435],[-87.78703283267163,41.91667453123328],[-87.78683570933667,41.916631743648196],[-87.78663671448727,41.91659306289185],[-87.78643676695665,41.916558494428486],[-87.7862138327435,41.91652655977934],[-87.78601287776173,41.91650227555999],[-87.7858109674099,41.91648244636377],[-87.78560856236443,41.916466731353715],[-87.78547130110007,41.91645955870107],[-87.7852711216862,41.916452086144794],[-87.78522633401991,41.9164514124327],[-87.78507090489343,41.91644907216796],[-87.7848986816952,41.91644859247936],[-87.78439251029532,41.91645474979477],[-87.78398415993833,41.91646137236357],[-87.78325428123061,41.91647228568839],[-87.78278346461842,41.9164792224508],[-87.78239349499688,41.91648496700718],[-87.78175456921952,41.91649390567635],[-87.78109725576138,41.91650481053511],[-87.78035635416641,41.91651565214965],[-87.78027782650736,41.91651684557522],[-87.77958513270052,41.91652737185787],[-87.77944779270864,41.916529453690664],[-87.77872571711683,41.91654071862056],[-87.77839775279374,41.91654565165225],[-87.7775264051317,41.91655790268337],[-87.77654710263982,41.91657305425283],[-87.77583697581169,41.91658332986495],[-87.77547078075257,41.91658872698148],[-87.77492795916893,41.91659640709487],[-87.77399504902446,41.91661073313227],[-87.77330650986232,41.91662075521875],[-87.77239519911952,41.916633458451855],[-87.7712229774213,41.91665105203366],[-87.77051928217743,41.91666098320984],[-87.77026113294903,41.91666520635864],[-87.76991478874159,41.91667105384056],[-87.76926207946899,41.91668019865962],[-87.76862682777396,41.916688739017026],[-87.76798835473967,41.916697946606654],[-87.76718038064111,41.916710430843786],[-87.76639584685023,41.91672096750395],[-87.76636017646841,41.91672090444352],[-87.76585482948468,41.916720009906676],[-87.76573698190874,41.91671805202588],[-87.76561421127711,41.91671539021162],[-87.76522573643449,41.916707294621155],[-87.76461789423297,41.916680616397535],[-87.7641226208543,41.91664866153619],[-87.76381418832156,41.91662620739505],[-87.76350671686797,41.916598955335175],[-87.76319974573688,41.916567244733635],[-87.76313276121259,41.91655936548133],[-87.76289372934298,41.916531421978796],[-87.76279004780919,41.91651855780684],[-87.76213079017266,41.916438098933114],[-87.7614641854812,41.91635759886138],[-87.76107881527027,41.9163107421326],[-87.76082081351316,41.91628170389234],[-87.76082050555824,41.9162816694261],[-87.7602713775394,41.916212382551755],[-87.75969653888592,41.91614227882834],[-87.7595942333324,41.91612976167437],[-87.75924740672224,41.91608720773015],[-87.75909280550202,41.91605830354409],[-87.75900027995701,41.91604100491895],[-87.75899755756069,41.91604049596802],[-87.75887602107223,41.91601777332526],[-87.75857344486279,41.915961172542204],[-87.7582561297465,41.91590181383545],[-87.7579045071095,41.91583575160497],[-87.75789995260988,41.915834895906066],[-87.75780405359097,41.91581687825974],[-87.75751474297743,41.91576260214973],[-87.75707793267539,41.91566573479475],[-87.75619515209075,41.91546954758128],[-87.75588259711608,41.91540300674379],[-87.75588614422351,41.91549201102221],[-87.75576275848404,41.915494472788914],[-87.75563829384073,41.91549487575946],[-87.75545416140204,41.91549120500366],[-87.7552705257442,41.91548342010314],[-87.75508739199032,41.915470835302145],[-87.75491994113555,41.91545078229258],[-87.75452450083552,41.9154014513652],[-87.75412078089416,41.915353449703275],[-87.75372487912372,41.91530445699847],[-87.7533427514228,41.9152558755319],[-87.7530179461094,41.91521684429467],[-87.75285225365613,41.915197142381544],[-87.75273993107322,41.91518388022855],[-87.75263395527377,41.91517133831649],[-87.75195454865941,41.9150872888361],[-87.75151826782967,41.91503465350788],[-87.75104667956037,41.914976006261625],[-87.75064710242471,41.914927670641944],[-87.75024248253649,41.91487827838856],[-87.749786944662,41.9148224519804],[-87.7493694838042,41.91477127652157],[-87.74908047597256,41.91473550318319],[-87.74873962422387,41.91469397671989],[-87.74861989132239,41.91467930288911],[-87.74845991254617,41.91465968849761],[-87.74840465859816,41.91465291391572],[-87.7483038147178,41.91464064579609],[-87.7480460143363,41.91460743032751],[-87.7477239868054,41.91456668340512],[-87.74752484394567,41.91454748706922],[-87.74735365507301,41.91453495005103],[-87.7471686549886,41.91452611641989],[-87.74701995556882,41.91451506664564],[-87.74665386130172,41.914472033256956],[-87.74630064538536,41.91442700663958],[-87.74616990761983,41.91441055857314],[-87.74600623982677,41.91439016641249],[-87.74600890561744,41.91446908362369],[-87.74585494697052,41.914450797436714],[-87.74563061944096,41.914423579291864],[-87.74502417050726,41.914348437654574],[-87.74453881295281,41.91429003616765],[-87.74399612173941,41.914223791468075],[-87.74356444916728,41.914170806821325],[-87.74348141860057,41.91416043221239],[-87.7427258696817,41.91406873309075],[-87.74217585283382,41.91400038475857],[-87.7416657345073,41.913938412811625],[-87.74133544805062,41.91389760542004]],[[-87.72023936012896,41.86986908525314],[-87.7202328987836,41.86968760045477],[-87.72022606030647,41.869488797672126],[-87.7202182321732,41.86926293125874],[-87.72021151204868,41.86908248814961],[-87.72020983187639,41.868975072657996],[-87.72020804756076,41.86886103582174],[-87.7202025531982,41.86874443058783],[-87.72019981169218,41.86867846522018],[-87.72019606122971,41.86858710874452],[-87.72037886739602,41.86858512323691],[-87.7206305755558,41.86858238896293],[-87.72131575584406,41.86857286993552],[-87.72203763873752,41.86856463988569],[-87.72252893539373,41.8685584722688],[-87.72267835365477,41.86855684504347],[-87.72281112684081,41.86855539889973],[-87.72293538802164,41.86855404539806],[-87.72313845661736,41.86855183305503],[-87.72383685845925,41.868541820380834],[-87.7246740385242,41.86853199018685],[-87.72479080172698,41.86853076316224],[-87.7251466606988,41.868527023053495],[-87.725271389489,41.868525711761755],[-87.72527270753179,41.86856243933132],[-87.72527319514175,41.86858858559937],[-87.72527475222554,41.868672110553646],[-87.72528220040957,41.86893219550499],[-87.72528713642473,41.86908878132831],[-87.72566885038766,41.869085076051384],[-87.72583412995739,41.86908347074107],[-87.72607896742598,41.869080951082715],[-87.72636794253576,41.86907764990404],[-87.72660103644988,41.869074544560746],[-87.72683639122687,41.869073070891424],[-87.72707308373549,41.869069902364],[-87.7273261167949,41.86906646282107],[-87.72745349632699,41.8690647199508],[-87.72771797989209,41.86906128204823],[-87.72794457810127,41.86905833593788],[-87.72823670904422,41.869055265134314],[-87.72849674810176,41.86905246366051],[-87.72882020836798,41.869048101909705],[-87.72908036228536,41.86904483319564],[-87.72936463985495,41.869041334006766],[-87.72959321824524,41.86903819994022],[-87.72982179330323,41.869035339826596],[-87.73007500868216,41.869032004954505],[-87.73016173510051,41.86903131474913],[-87.73039077802109,41.86902949191611],[-87.73061911945973,41.86902808344361],[-87.7307731855042,41.86902689681017],[-87.7312116418895,41.869021833581556],[-87.73138451719976,41.86901939182347],[-87.73169330159581,41.869013929682865],[-87.7319619090233,41.869009655908634],[-87.73213519095458,41.8690069132816],[-87.73257763294318,41.868998937856006],[-87.73258420049832,41.869176607520544],[-87.73259193935658,41.86937744481186],[-87.7325955434211,41.86946530778985],[-87.7326009068625,41.869596071838075],[-87.73260448800131,41.869754735623985],[-87.7326090977009,41.86993859731137],[-87.7326128280058,41.87008741054536],[-87.7326211723878,41.870270688020824],[-87.7326285128438,41.87045527748061],[-87.73263215460916,41.870535319789894],[-87.73263862202562,41.87067747769038],[-87.73265223024272,41.87092203441554],[-87.73267288937839,41.87097682720744],[-87.73283028827605,41.87093520495563],[-87.73306379056585,41.870869520756315],[-87.73334120747404,41.87079171637375],[-87.73358262169086,41.87072398681817],[-87.73394983917106,41.87062307208336],[-87.7341520756827,41.870567243674046],[-87.73452195368041,41.87046431490273],[-87.73478559075592,41.87039134738544],[-87.73511155366718,41.870301575119505],[-87.73534281845502,41.87023788258848],[-87.73570223461604,41.87013827096286],[-87.73580796263417,41.87010876081569],[-87.73594894139758,41.870069411373095],[-87.73609952245445,41.870027540326284],[-87.73622078675312,41.869993821321394],[-87.7364345928537,41.86993288050562],[-87.73652563333602,41.86990693114114],[-87.73670593875428,41.869858088851814],[-87.73683794769548,41.869822329224796],[-87.73693720409506,41.869794942777894],[-87.7370548658585,41.86976247833892],[-87.73716401185067,41.86973210487783],[-87.73725496615623,41.86970679334857],[-87.73735885216564,41.86967808039186],[-87.7375264891903,41.86963173831912],[-87.73754582749531,41.86962634327311],[-87.73771696628265,41.86957859948487],[-87.73775532257325,41.86956789904776],[-87.7378508451464,41.86954125013431],[-87.73820688922024,41.8694401861506],[-87.73827795446833,41.86942043515844],[-87.73847655712697,41.869365238081436],[-87.73868238654254,41.86930736949977],[-87.73869057471592,41.86930506720523],[-87.7389005752265,41.869246530197],[-87.73902932224188,41.86921064221347],[-87.73907593664916,41.869197648432646],[-87.7392549034889,41.86914806001791],[-87.73936026330472,41.869118866587336],[-87.7393627534393,41.86911817666243],[-87.73939732288369,41.86910857739258],[-87.73976655071402,41.86900604846407],[-87.73989424215759,41.86896303271131]],[[-87.72098330193283,41.88806705675735],[-87.7209829488493,41.88805384380614],[-87.72098038076959,41.88795769043772],[-87.72097788508675,41.88786426303759],[-87.72097677924457,41.88782285060305],[-87.72097353279518,41.88771209121197],[-87.7209608519419,41.88727943261453],[-87.72095088842725,41.88694987796806],[-87.72094720557297,41.8868219487828],[-87.72094415979659,41.88671614215826],[-87.72093477487218,41.88633370895296],[-87.7209248657307,41.88598694812027],[-87.72092730611767,41.88555068093844],[-87.7209245982544,41.88535354731211],[-87.72092158699088,41.885245903846034],[-87.72092041573087,41.88520404153593],[-87.72091907733297,41.885156185175184],[-87.72091416732019,41.8849806858565],[-87.72090485965128,41.88464018503064],[-87.72089506770577,41.884281185380146],[-87.7208893879437,41.8840873580457],[-87.72088542927548,41.88395226346876],[-87.72087384680084,41.88354624555125],[-87.72086696792387,41.883270576431066],[-87.72085838323063,41.88300049289636],[-87.72085288478328,41.88282261303049],[-87.72084274535523,41.88244621260764],[-87.72082619637824,41.88208728654775],[-87.72082022885714,41.88189686184135],[-87.72081355948086,41.88168403428624],[-87.72079832014603,41.881489495607006],[-87.72078279274406,41.88136007665963],[-87.7207645890159,41.8811479312495],[-87.7207590962573,41.880930969144266],[-87.72075298345551,41.880789616267265],[-87.72071128174261,41.87982283413931],[-87.72070054038606,41.87951318085757],[-87.72068038924807,41.878932257747124],[-87.72067517133955,41.87878609123914],[-87.72064862626563,41.878042471575725],[-87.72062960545233,41.8771504327047],[-87.72065798157938,41.87711723294973],[-87.72068713907953,41.8770856076157],[-87.72070340289619,41.87705372084668],[-87.72070146194946,41.87699228018363],[-87.72069543418579,41.87681988168688],[-87.72068833057907,41.87659865723594],[-87.72068075583464,41.876353719666355],[-87.72067704297969,41.87624055881153],[-87.72067290631696,41.87611448920969],[-87.72066725300118,41.87595287758731],[-87.72065461993161,41.875799296820375],[-87.72063345313951,41.875678052676655],[-87.72059538986741,41.87552669627587],[-87.72052271888127,41.87533031441259],[-87.72048381889853,41.875225193852714],[-87.72044097390862,41.87502485443737],[-87.7204227208907,41.874798548421175],[-87.72041632139964,41.874626833924566],[-87.72041497655472,41.874590657518276],[-87.72041319502272,41.8745427333865],[-87.72040156050363,41.874441100521544],[-87.72039076036864,41.87434675617285],[-87.72039057689481,41.87428141484718],[-87.72038640107664,41.874144446464776],[-87.72038367135235,41.87405492237674],[-87.72037917846967,41.873916900699385],[-87.72037342439164,41.873783141519134],[-87.72036951420506,41.87369592617524],[-87.72036512606637,41.87351505163885],[-87.72036026796202,41.873314810050836],[-87.72034962558699,41.87306829200023],[-87.72034131760289,41.872842615270116],[-87.7203364182953,41.87271747867467],[-87.72033274398164,41.87260247517923],[-87.7203274885051,41.87243776428788],[-87.72032097110446,41.872266790035326],[-87.72031557922259,41.87211632134937],[-87.72030897181709,41.87190873828037],[-87.72030145910901,41.87169203972751],[-87.72029883215535,41.871616102393546],[-87.72028681094898,41.87131147064971],[-87.72028028544011,41.871133718014434],[-87.7202759437583,41.87100400145433],[-87.72027250984128,41.87089843916171],[-87.72027113156055,41.870784508813216],[-87.7202702533025,41.87071192769242],[-87.72025698858481,41.87038641592273],[-87.72025093330444,41.87020169536488],[-87.72024682181639,41.87007867598961],[-87.72023936012896,41.86986908525314]],[[-87.68867151040175,41.88817459398872],[-87.6889592847057,41.888058210234654],[-87.68903610447323,41.88804286186341],[-87.68929046328184,41.888020628630166],[-87.68939078857156,41.88797972957359],[-87.68948886206307,41.887939748376816],[-87.68969092926106,41.887886339002286],[-87.68989027937002,41.887829141261875],[-87.69011637699576,41.88775974335071],[-87.69022281898988,41.88772020494021],[-87.69032654605137,41.887676535138695],[-87.69042709826826,41.88762907331132],[-87.6905244745086,41.88757782138099],[-87.69061866863721,41.887523463735555],[-87.69071200370665,41.8874632694136],[-87.69080677304497,41.88739725152283],[-87.69089789847685,41.88732846947332],[-87.69098446623786,41.88725623127834],[-87.69106647202281,41.88718122353371],[-87.69115179319618,41.88709594280751],[-87.69121582333163,41.88702803806999],[-87.69127482872835,41.88695770344059],[-87.69132880865057,41.88688494002061],[-87.69137729611916,41.88681042989532],[-87.69143807997155,41.88669997110636],[-87.69149553015974,41.88658565555152],[-87.69156032542351,41.886457102713415],[-87.69160307963986,41.88631326883842],[-87.69161614969902,41.88624576459571],[-87.6916232630044,41.88617719879655],[-87.69168606945266,41.88609385002515],[-87.69161719299697,41.886003933929814],[-87.69161087531728,41.885947200075655],[-87.6915965539251,41.88581858239943],[-87.69162876625253,41.88571894052443],[-87.69158108379916,41.885667219217844],[-87.69158196258458,41.88557940886451],[-87.6915989792628,41.8854962326116],[-87.69161140481697,41.88543550002273],[-87.69160974186923,41.88532640729452],[-87.69161162540861,41.885184060419334],[-87.69161307587171,41.8851308982408],[-87.69159674344846,41.88460699957566],[-87.69159549128133,41.884548677379414],[-87.69159209657832,41.88442970418312],[-87.69161689024087,41.884428837789834],[-87.69172483088327,41.884425066308566],[-87.6919745337224,41.884416340636214],[-87.69227959522789,41.88440445006698],[-87.69226268130272,41.88416495760865],[-87.69225907144063,41.88403373510738],[-87.69225531401754,41.883899054030564],[-87.6922504889749,41.883685291293666],[-87.69224862795609,41.883602810575326],[-87.69224551561106,41.88346491463858],[-87.69224233692324,41.883315582509134],[-87.69223702422642,41.883131468873756],[-87.69223115529333,41.88294121187783],[-87.692224210894,41.882716083231536],[-87.69222080855656,41.882571497378734],[-87.69221516043,41.88229898969063],[-87.69220681824689,41.88202984099953],[-87.6921986120352,41.88176505914992],[-87.69219334048543,41.88153196090004],[-87.69218885464463,41.88133333475987],[-87.69216226986921,41.881105978660415],[-87.69172873398094,41.881110127616154],[-87.69163261029965,41.88111155953578],[-87.6915301100741,41.88111308663929],[-87.69150455508145,41.88111346659705],[-87.69150160304422,41.88099538384019],[-87.69148275842825,41.88030990295238],[-87.6914796712797,41.88020569406056],[-87.69147700495841,41.880105081384386],[-87.691467229696,41.8797517046926],[-87.69145968149387,41.879405201867236],[-87.6914575125323,41.87930101839805],[-87.6914562131674,41.87924324637938],[-87.69145528792323,41.87920210247283],[-87.69145406571594,41.87914069365915],[-87.69143631328008,41.87852965581563],[-87.69143260061654,41.87839671002477],[-87.691454120472,41.87839640357659],[-87.69141681534458,41.877491498894194],[-87.6913866736814,41.876760344202154],[-87.69135677454805,41.876035062635566],[-87.69134379247691,41.87572014514808],[-87.69133029266035,41.87539265608746],[-87.69132466693823,41.875256187711614],[-87.69131158326148,41.87493879182796],[-87.69126627620328,41.873839691377476],[-87.69122884496647,41.872931620555576],[-87.69119133813875,41.87202169075152],[-87.6911538474074,41.87111215029302],[-87.69129652134687,41.871109536072],[-87.69124659524363,41.8710332261027],[-87.69123249546483,41.87101167487864],[-87.69122396736599,41.87062571715388],[-87.69126344823287,41.870303488084716],[-87.69122428275142,41.87019579242723],[-87.69121312217997,41.870104248483216],[-87.69121203477029,41.870048733604925],[-87.69122282838455,41.86979448800234],[-87.69124000583302,41.869389864541006],[-87.69119277233959,41.86929465784451]],[[-87.69119277233959,41.86929465784451],[-87.69130625931443,41.86929411944155],[-87.69145519899163,41.869293412447604],[-87.69154144894418,41.86929300313951],[-87.69186461761758,41.86929244859879],[-87.69228794978325,41.86928764984615],[-87.6925655492405,41.86928403982757],[-87.69304377225932,41.86927531838551],[-87.69335198560927,41.86926863892396],[-87.69350962364233,41.86926185915274],[-87.69361861177157,41.86925717153392],[-87.69393014625204,41.86925251232378],[-87.69416735440804,41.86924931844538],[-87.69438297723248,41.8692459765448],[-87.69462115058782,41.869241785446874],[-87.69480406553997,41.86923786924119],[-87.69492724319652,41.869235674762464],[-87.69528273424523,41.86923226308771],[-87.69535922229512,41.869231088111064],[-87.69552938459653,41.869228473954344],[-87.69573721899047,41.869225539058284],[-87.6959790123305,41.86923250278863],[-87.69630613422407,41.86924192343892],[-87.69665283782739,41.869237561683846],[-87.69697618559324,41.86923372809027],[-87.69713774619883,41.86923212591356],[-87.69724812004958,41.86923117388564],[-87.69739822275923,41.86922986381037],[-87.69755992884313,41.8692283990578],[-87.69775989879045,41.86922621279685],[-87.69799108701676,41.86922293654024],[-87.69826003190053,41.869218249228396],[-87.6984258978343,41.86921762569319],[-87.69870018411375,41.869216593683426],[-87.6988916339516,41.869214632794524],[-87.69910721586085,41.86921156994326],[-87.6992687465544,41.86920930625691],[-87.69946894320579,41.869206459376336],[-87.69966942829733,41.869204107978064],[-87.69986139568414,41.869201819017604],[-87.7000543158699,41.86919967220276],[-87.7002391622325,41.86919717868871],[-87.70047718615788,41.86919319416064],[-87.70060798464509,41.86919108827206],[-87.7008690101115,41.869188535917615],[-87.70118783886107,41.86918541750271],[-87.70125708819303,41.86918486560633],[-87.70145712597852,41.869183222130594],[-87.70171856305168,41.86918032433378],[-87.70186489311946,41.8691780828912],[-87.70208803315523,41.86917554996656],[-87.70228807009852,41.86917398736624],[-87.7025574335549,41.86917148796547],[-87.70273482063871,41.869169608085066],[-87.70287350660246,41.86916811921755],[-87.70304270566427,41.86916630368204],[-87.70331707542312,41.869162762734774],[-87.70359775500592,41.869159139923504],[-87.70374330836798,41.86915746812127],[-87.7038657305728,41.86915588889524],[-87.70411254238483,41.86915427761226],[-87.70431219397835,41.869150815840186],[-87.70455125118492,41.86914625223328],[-87.70476654180933,41.86914293017933],[-87.70495902415864,41.86914047086001],[-87.70517463549473,41.86913813772667],[-87.70539061126415,41.86913608033197],[-87.70575619374618,41.8691330846612],[-87.70576270188255,41.869298763047425],[-87.70576540599625,41.86945772493971],[-87.70577376475939,41.86963164646092],[-87.70577728610105,41.86978213306926],[-87.70578068138259,41.86987043422446],[-87.70578982010883,41.87005290916363],[-87.70583961521346,41.870054396950124],[-87.70603428945583,41.870060212673536],[-87.70614966146637,41.870058894373656],[-87.70634956153884,41.87005658300661],[-87.70641874034906,41.870055825911315],[-87.70689573487988,41.8700492450905],[-87.70721336001694,41.870045269134074],[-87.70760831603012,41.870040396415476],[-87.70782536538132,41.87003773683412],[-87.70802750540483,41.870035379860894],[-87.70821411201862,41.8700331674017],[-87.70849545801703,41.87002983125931],[-87.70876779483416,41.87002766278346],[-87.70913165067678,41.870023054768495],[-87.70948754467967,41.870017853501125],[-87.70972005659016,41.87001461571029],[-87.70994496351236,41.87001188501897],[-87.71022340150577,41.87000911503027],[-87.71065978966097,41.87000410369398],[-87.71084017482632,41.870002031611634],[-87.71129371252506,41.86999493901868],[-87.71137438450052,41.869993995577424],[-87.71161926599576,41.86999113102989],[-87.71211464309738,41.86998566125323],[-87.71239661285875,41.86998217402986],[-87.71264212051004,41.86997901814908],[-87.71293675256925,41.869975945181174],[-87.71309743462378,41.86997419259004],[-87.71327163037134,41.869972292373255],[-87.71344384721517,41.869969892733884],[-87.71360662735678,41.869967624132734],[-87.71405559180381,41.86996260902749],[-87.71437226414574,41.86995836114828],[-87.71473751440696,41.8699537154426],[-87.71508607857888,41.86995087228453],[-87.71529536619373,41.869949693580814],[-87.71553452253387,41.86994284693096],[-87.71577103920626,41.86993529293912],[-87.71603647132753,41.869933371963015],[-87.71626658901157,41.86993087643794],[-87.71796907787272,41.869941465790475],[-87.71797068562527,41.86993461377231],[-87.71797709689045,41.86992457671589],[-87.71798601057446,41.86991776384339],[-87.71799722482068,41.86991225309549],[-87.71800944440278,41.86990910779067],[-87.71804090671284,41.869905544172404],[-87.7183095338086,41.869903525289146],[-87.71864878040442,41.86989979841671],[-87.71897767227225,41.869896179257026],[-87.71904486890101,41.86989542178916],[-87.71929793597856,41.86989256818359],[-87.71964537956559,41.86988890908648],[-87.72023936012896,41.86986908525314]],[[-87.6351581593673,41.857722096062695],[-87.63601568613535,41.857728705659746],[-87.63651035361998,41.857711452125685],[-87.63663110536943,41.857707240374864],[-87.63673670112796,41.8577048844437],[-87.6368729614093,41.857701844170066],[-87.63690381503464,41.85770115530028],[-87.63699229333245,41.85769918134236],[-87.63776666277178,41.85768190000899],[-87.63799691715602,41.85767906922398],[-87.63853190498597,41.85767185136645],[-87.63893572318938,41.85766547551493],[-87.63894923956806,41.85803648213748],[-87.63895624526762,41.85822878445262],[-87.63896081811869,41.85840329175753],[-87.63897440209112,41.858843607333206],[-87.63898544179496,41.85920144185481],[-87.63899894957164,41.859554489654776],[-87.63901366630267,41.860018027544825],[-87.63973669591995,41.86000593140078],[-87.64002246568784,41.86000086073457],[-87.64051154367472,41.85999364879374],[-87.6409474986814,41.85999412828786],[-87.64125181581329,41.85999446196239],[-87.64150478976907,41.8599901960166],[-87.64166780659632,41.85998763752756],[-87.64194022992014,41.859983945220115],[-87.64227572947989,41.859979398279705],[-87.64253443410861,41.859974714215554],[-87.64293777346181,41.85997024735143],[-87.64335562747779,41.85996060553793],[-87.64386011688254,41.85995783555841],[-87.64401002545404,41.85995701202037],[-87.64405388067571,41.85995677083841],[-87.64409797415216,41.85995652859974],[-87.6441064053201,41.85995648232491],[-87.64422226872479,41.85995584552384],[-87.64435282150944,41.85995512795745],[-87.64446845179371,41.859954492253735],[-87.64464548687326,41.859953518567025],[-87.64476399203373,41.859952866873826],[-87.64487231878843,41.859941092781895],[-87.645221818806,41.85993343727586],[-87.64536797873888,41.85993156864278],[-87.6455224729163,41.85992958508132],[-87.64580370900468,41.859925615857065],[-87.64618591366782,41.859919972360814],[-87.6463852807797,41.85991666444095],[-87.6467055607459,41.85991136313473],[-87.647127014076,41.85990438610168],[-87.64737768105495,41.85990291974],[-87.64767323885323,41.85989845518194],[-87.64824217835825,41.859889858024644],[-87.64836200782541,41.859888898770706],[-87.64878856297753,41.859882687838756],[-87.64905327828114,41.85987883172393],[-87.64938646546874,41.85987409270983],[-87.6497970517011,41.85986793331731],[-87.65012025395303,41.859863115732544],[-87.65035982892572,41.859860035154334],[-87.65048064976051,41.85985821981017],[-87.65082217156701,41.859852965533705],[-87.6509408717961,41.85985113929854],[-87.65139974006199,41.85984407771879],[-87.651872357378,41.8598351101448],[-87.6522420456786,41.859829194121076],[-87.65263802297676,41.85982285587996],[-87.65284332598841,41.85982049427228],[-87.6530285105811,41.8598183638437],[-87.65343395877099,41.859811918419304],[-87.65372030340335,41.85980736619117],[-87.65403190615217,41.8598025740609],[-87.65628743342971,41.859767862860075],[-87.65647915506476,41.85976530436828],[-87.65667543074503,41.859762684845975],[-87.65709211404284,41.85975615164372],[-87.65770470835419,41.859746543444174],[-87.65799453906166,41.85974199146012],[-87.65831464080938,41.85973524974584],[-87.65861895477215,41.85972883920066],[-87.65892701630604,41.85972557446331],[-87.65922876312483,41.85972237611715],[-87.65957142982448,41.859716822898626],[-87.65999332626943,41.85970998428272],[-87.66036440152875,41.859704731913006],[-87.66063334918009,41.85969971692416],[-87.6612068065039,41.859690555095014],[-87.66137390031209,41.8596877455061],[-87.66188575322312,41.85967913641455],[-87.66380766126576,41.85964679117942],[-87.66400461315988,41.85964347481219],[-87.66582769542701,41.85961265261129],[-87.66590719322701,41.85961130781012],[-87.66619826527122,41.859607333445524],[-87.66642456054679,41.859604286557754],[-87.66688443547268,41.85959887724238],[-87.66858031234398,41.85957891369803],[-87.6687060467225,41.85957809911621],[-87.66896288418332,41.859576434734066],[-87.66920079425613,41.8595733996176],[-87.669812037729,41.859566085660354],[-87.67061162286768,41.859553226931496],[-87.67100363116177,41.85954692073164],[-87.67114344424452,41.85954172004254],[-87.67134343089305,41.85953428040207],[-87.67204554211294,41.85952600351854],[-87.67237360620902,41.85952196907933],[-87.67307914518251,41.85951328929921],[-87.67351077273122,41.85951670291221],[-87.67359923586312,41.8595172385526],[-87.67418101194286,41.859541988042785],[-87.67427259102358,41.85954588080672],[-87.67445899615127,41.85953260282361],[-87.6745537768642,41.8595258514748],[-87.67464769462991,41.85951916150952],[-87.67501897094604,41.859492698139334],[-87.67604608639212,41.85941948136451],[-87.67785221371622,41.859121389976906],[-87.67857067790138,41.859042474487886],[-87.68106194907473,41.85889695027705],[-87.68116867346738,41.85889071492296],[-87.68120420699891,41.85888863895948],[-87.68131583600005,41.85888211682567],[-87.68151610905528,41.85886640279997],[-87.6848220094617,41.858606960523566],[-87.68581099434908,41.85841523521149],[-87.6858305305097,41.85923766895098],[-87.68583387730081,41.859365899198515],[-87.68742052363582,41.85934176544379],[-87.68790351209385,41.859339294659264],[-87.68807300498922,41.85933842705846]],[[-87.68807300498922,41.85933842705846],[-87.68816891319597,41.859337846204575],[-87.68818900651269,41.85941787566455],[-87.68821493192466,41.8595068100602],[-87.68819538354829,41.86035655603429],[-87.68820114616754,41.86060494328553],[-87.6882040276743,41.86072913677096],[-87.68821229892319,41.86104751716422],[-87.6882145486096,41.86114319427584],[-87.68811623724487,41.861144431261366],[-87.68818200589305,41.86305682781019],[-87.6887827750342,41.86377814273753],[-87.69075383700275,41.86656436062652],[-87.69073116079298,41.86656461218056],[-87.69052782404677,41.86656681951064],[-87.69047478462106,41.86656757889484],[-87.69058454201281,41.866743139349325],[-87.69064909831181,41.86684984098045],[-87.69071411752608,41.86695620130895],[-87.69084220916005,41.86705662683418],[-87.6908621318443,41.86716760775023],[-87.69087163246479,41.867220530575736],[-87.69095013127557,41.86729408645446],[-87.69094843475395,41.86738767354807],[-87.69097798354517,41.86746159089071],[-87.69100523142343,41.867536181419204],[-87.69103018071648,41.86761110184214],[-87.69105237325105,41.86768634987307],[-87.69107272448096,41.86776227366471],[-87.69109032164042,41.867838181501625],[-87.69111166367216,41.867952530634845],[-87.69112794562163,41.86806822304395],[-87.69113998424832,41.86814924635757],[-87.69115060918371,41.86823403401316],[-87.69116175641555,41.86835827431189],[-87.69116977413094,41.86847426380251],[-87.69117310095935,41.86855455150807],[-87.69117550962001,41.86863483407851],[-87.69117608302669,41.86871510720929],[-87.69118539984683,41.869038248332366],[-87.69119005092656,41.86919954524402],[-87.69119277233959,41.86929465784451]],[[-87.63936098293495,41.88908028505862],[-87.63932006401069,41.88896124925584],[-87.63927826837406,41.8888528187392],[-87.63925901357446,41.8887859624612],[-87.63922613205783,41.888637821769336],[-87.63921893307302,41.88854625786787],[-87.63921102361404,41.888500750084944],[-87.6392019926378,41.88844878985211],[-87.63906376812263,41.88813574212035],[-87.63904233663413,41.88805284627847],[-87.6390128606478,41.88793279967108],[-87.6390087383642,41.887916202282675],[-87.6390009101988,41.88788467577652],[-87.63899015817694,41.88785876002696],[-87.63894935046437,41.88773721787851],[-87.63891793277041,41.88763711012426],[-87.63884785954822,41.88737277280852],[-87.63876516586564,41.8871615424819],[-87.63856385462731,41.88687204227687],[-87.63854658837454,41.88685737632591],[-87.63839249552377,41.88672649372163],[-87.6375883858201,41.886234137108836],[-87.63765315591841,41.88606965635187],[-87.63773287739009,41.88572214128731],[-87.63776121869054,41.88558029931536],[-87.6378040097767,41.8852579455294],[-87.6378373357763,41.88499557783312],[-87.63788146645052,41.884712200323904],[-87.6379055394592,41.88445720630547],[-87.63791748646796,41.88429620018772],[-87.63794313605145,41.88414561404859],[-87.63797083932738,41.88399534247611],[-87.63799708548095,41.883854063182845],[-87.63803204591935,41.88366102535736],[-87.63805000808435,41.88356236884741],[-87.63806574265976,41.88347610281963],[-87.63808141628502,41.883381905560235],[-87.6381389100207,41.883190419035245],[-87.63815397985913,41.88301944628736],[-87.63815967019694,41.88291119239111],[-87.63818248496123,41.8827679718352],[-87.63819005876576,41.882645212841055],[-87.63822231349658,41.882264562126345],[-87.63823173674415,41.88211684170623],[-87.63821663001698,41.8818984153088],[-87.63822362245108,41.88176097409509],[-87.63826145294217,41.881550253408],[-87.63826984407561,41.88139267461303],[-87.63827233152549,41.8813088530481],[-87.63828619761138,41.88101974864648],[-87.63828909967422,41.880690017957114],[-87.63828613008182,41.88060404726784],[-87.63827805842135,41.88037041144452],[-87.63823374351848,41.87999363302494],[-87.63819881209928,41.87977432118047],[-87.63811347096224,41.87940865523013],[-87.63811370823407,41.87933489907675],[-87.6381141996489,41.879182204913526],[-87.63809665255341,41.879073316856356],[-87.63797564002641,41.878763472542694],[-87.63795371931093,41.87869985638861],[-87.63786257480088,41.878435344664176],[-87.63777033758333,41.87810997755891],[-87.6377654787857,41.87806748561337],[-87.63775277124685,41.87795635017106],[-87.63771808419834,41.87765299106014],[-87.63765932908754,41.87730798546386],[-87.63751611144328,41.876923280276635],[-87.63746982525034,41.87679851620475],[-87.63742891982797,41.876688256219666],[-87.63733008396783,41.87647061491688],[-87.63720085902085,41.876251746503584],[-87.6370663466328,41.8760329556509],[-87.63682712674871,41.87573861173746],[-87.63677666763635,41.87569018699787],[-87.63664308911368,41.875561994055694],[-87.63656577288775,41.875487793971736],[-87.63634907068959,41.87527742236293],[-87.63629353803138,41.87520106971273],[-87.63623472193109,41.87506533906943],[-87.63612127870333,41.87480037953585],[-87.63606556606163,41.87467311991627],[-87.63600830357404,41.874448294284015],[-87.63593101995892,41.87414485885123],[-87.6358688986233,41.87397131965645],[-87.63575747831729,41.87346323177388],[-87.63572611878168,41.87330874136178],[-87.6357154993418,41.87325641981367],[-87.63553803053665,41.872382119849355],[-87.6354725377986,41.87210501233048],[-87.6354395375024,41.871965383734235],[-87.63525901980934,41.871022325068274],[-87.63517960363015,41.87060743209905],[-87.63507012502086,41.869938871451204],[-87.63505743748442,41.86982561410796],[-87.63497942792402,41.86912923133312],[-87.63497353839027,41.86907665688269],[-87.63496253937339,41.86897847131401],[-87.63481347017084,41.86801812048187],[-87.63473937705217,41.86736395398807],[-87.63473401864785,41.867314658551095],[-87.63472829616963,41.867262014012375],[-87.63468593415253,41.86674615355968],[-87.63469651853832,41.86631015667714],[-87.63468182227324,41.86577836885924],[-87.63467738880097,41.86564184234257],[-87.63465911202738,41.86507905064187],[-87.63463654077586,41.86425906875339],[-87.6346192777851,41.86371792781191],[-87.634570536172,41.8629033910844],[-87.63457775888773,41.86232769106464],[-87.63456500493574,41.861933974430734],[-87.63455643758438,41.86166948976002],[-87.63455676296346,41.861063588321144],[-87.63455676429332,41.86106120714157],[-87.63455679587089,41.86100270755971],[-87.63455680335612,41.86098853326789],[-87.63455182867348,41.86091679486453],[-87.63451703348943,41.86041501696014],[-87.63451472004377,41.86013251583241],[-87.63450859376373,41.859384253352175],[-87.6345641078988,41.859215408201464],[-87.63479710986091,41.858879311281825],[-87.63509305352751,41.85819962357539],[-87.63512739329562,41.85787455759924],[-87.6351581593673,41.857722096062695]],[[-87.68807300498922,41.85933842705846],[-87.68807036945643,41.85923551086817],[-87.6880582681996,41.85875039580622],[-87.68804918962728,41.85837541016953],[-87.6880439142979,41.85816990456907],[-87.68802973279986,41.85743539335128],[-87.68802266927064,41.85708820455656],[-87.68796221496133,41.8569856415488],[-87.68803384627775,41.856969765652835]],[[-87.68803384627775,41.856969765652835],[-87.68817789466569,41.85693779969753],[-87.68836598283922,41.856895977077],[-87.68884516468344,41.85678992581785],[-87.68979574479539,41.85657571520779],[-87.6907104165748,41.85637261641353],[-87.69160302292441,41.85617316011059],[-87.69172580797452,41.856145717462304],[-87.69278950005629,41.855905700646595],[-87.69301207193486,41.85585617297439],[-87.69312858279831,41.85583006679529],[-87.69323786542206,41.855805633727975],[-87.6938784500363,41.85566272757201],[-87.69432595623134,41.85556230638495],[-87.69516238378723,41.855374860861694],[-87.69545440299906,41.85530856324131],[-87.69555891538518,41.8552847847872],[-87.69556073161323,41.85534113038855],[-87.6955687645371,41.85555168927467],[-87.69574437161663,41.85555765004998],[-87.69594004349372,41.855555473220214],[-87.69595336699847,41.855555324602],[-87.69614229461148,41.85555190005565],[-87.69643347247144,41.8555462977333],[-87.69659854352018,41.855542575208766],[-87.69693023830281,41.85553771792902],[-87.69737278552844,41.85553308881824],[-87.69746052753644,41.85553181830932],[-87.69806988064617,41.85552251189734],[-87.69888724095331,41.85550991402016],[-87.69921275795315,41.8555050999949],[-87.69946722623257,41.8555013627746],[-87.70036166838094,41.85548952831382],[-87.70047151455363,41.85548764707596],[-87.70066958070063,41.85548425445941],[-87.70122508698834,41.85547460723112],[-87.70157108640674,41.855470802932636],[-87.70267014322522,41.85545409334776],[-87.7028381703404,41.85545206196301],[-87.70292888405345,41.85545096522625],[-87.7029201209517,41.85511726323228],[-87.70291633022882,41.85499070462845],[-87.70290762609638,41.85470012210804],[-87.70290277248317,41.85454982008989],[-87.7028986472836,41.85442207933116],[-87.70289219085456,41.854183182706585],[-87.70289149980914,41.85415760351039],[-87.7028831727095,41.853950009159625],[-87.7028772640418,41.85380167308037],[-87.7034802094009,41.85366382968073],[-87.70366552191793,41.85362416652838],[-87.70377052410394,41.853610526879976],[-87.70401357332567,41.853615947847054],[-87.70409125500211,41.85361091623374],[-87.70421631792274,41.85360281587588],[-87.70463107663257,41.853593259259966],[-87.70469862503693,41.85359225934097],[-87.70518735971415,41.85358502410638],[-87.70530651749978,41.85358665132355],[-87.70549579413567,41.85358923529263],[-87.70591524258268,41.85358627766638],[-87.70639044832996,41.853582925841735],[-87.70652519053723,41.85358174798128],[-87.70664373852654,41.85358079554365],[-87.7071338407789,41.85357639924757],[-87.70764824322822,41.85357178252718],[-87.70773968166809,41.85357076634117],[-87.70786365594317,41.85356938830011],[-87.70834300415098,41.85356542745885],[-87.70881665072984,41.85356151155083],[-87.70895739822629,41.85356022627759],[-87.70909167465331,41.85355900006317],[-87.7095669069619,41.85355476887539],[-87.71006214853062,41.8535503575322],[-87.71017814089612,41.85354948774273],[-87.71031059111202,41.85354849443375],[-87.71068725376449,41.85354557789251],[-87.71110055808917,41.85354237619365],[-87.71120290436536,41.85355074518387],[-87.71119786356216,41.85342893418255],[-87.71117542331932,41.85272140368114],[-87.71116246682661,41.85231287110269],[-87.71116071289796,41.85217570343064],[-87.71115236365027,41.85207521824229],[-87.711142937823,41.85199113790176],[-87.71151692070877,41.85190806372126],[-87.71175024456292,41.85185584022861],[-87.71216576196512,41.851762835764],[-87.71234621903407,41.85172320641122],[-87.7124215131097,41.85170667151404],[-87.71256225190267,41.85169014343462],[-87.71274116613118,41.851688530706056],[-87.71301842006372,41.85168610418006],[-87.71349411644707,41.85168192152155],[-87.713627011981,41.85167941250179],[-87.71377804177824,41.85167656536315],[-87.71389654648358,41.85167432308092],[-87.71477231231647,41.85166370258603],[-87.71499858333925,41.85166332876418],[-87.71513110583405,41.851663109649294],[-87.71577461438413,41.85165528441413],[-87.71621899177927,41.851649878146276],[-87.71634830202399,41.851648304460454],[-87.71682468722489,41.85164118193196],[-87.71743235787895,41.85163291490802],[-87.71753004661643,41.85163291209945],[-87.7186537843326,41.851623592374295],[-87.71877648855909,41.851622573908884],[-87.71971603777449,41.85160893642992],[-87.71987214453895,41.85160739216623],[-87.72086889271412,41.85159752663767],[-87.72110237824445,41.85159525800328],[-87.7211142496246,41.85159514263222],[-87.72127011159016,41.851593628094435],[-87.72215410858222,41.851583148298445],[-87.72228123657906,41.85158164056811],[-87.72227538078239,41.85144681153317],[-87.7222665255606,41.851159802409725],[-87.72226501391614,41.85111080352241],[-87.72225082646658,41.85062525868725],[-87.72224290817385,41.85035428511682],[-87.72223081798113,41.84965786409883],[-87.72222665291724,41.849360844068705],[-87.72344596010595,41.8490880964001],[-87.72373699174386,41.84902309277657],[-87.72452134775352,41.848847847166375],[-87.72468603365903,41.84881064142616],[-87.72497835536163,41.848745300374816],[-87.7261774182435,41.84847619005252],[-87.72627902534583,41.8484534008911],[-87.72765967950723,41.8481437274382],[-87.72791530342916,41.84808641651386],[-87.7289543454369,41.84785348109587],[-87.72951800624789,41.84772746451249],[-87.7300917566643,41.847599441323894],[-87.73114502382195,41.84736450255961],[-87.7315666032578,41.84727066287521],[-87.73168567783135,41.84724384376601],[-87.73220749093002,41.847126171661316],[-87.73275550633375,41.847002802083836],[-87.7331407712509,41.84691597041013],[-87.73329018306165,41.84688279080659],[-87.73385840786618,41.846756434510844],[-87.73417332098578,41.846686383807786],[-87.73438359065206,41.846639515428485],[-87.73489693263392,41.84652515740971],[-87.7357290475876,41.846338420800805],[-87.73634415756287,41.84620131878375],[-87.73750632862043,41.845942531931485],[-87.73837839904895,41.84574946544879],[-87.73932308973987,41.845592854751835]],[[-87.73932308973987,41.845592854751835],[-87.73932996405668,41.84580990684543],[-87.73933495246453,41.84596889643206],[-87.73933750335212,41.84605017968034],[-87.73936420307486,41.84689698238061],[-87.7393923461203,41.847789537938304],[-87.73943241758559,41.84906036844518],[-87.73944942560253,41.8495997512149],[-87.739469467807,41.84959952553489],[-87.73949770886604,41.851141508076424],[-87.73950453453436,41.85134801102825],[-87.73950453479733,41.851348022281094],[-87.73951203599944,41.85155300290762],[-87.73952369879373,41.85187128739326],[-87.73952527554349,41.8519151488664],[-87.73953657713395,41.85222503484278],[-87.73954319909329,41.852406080646],[-87.73955455240949,41.85271832692774],[-87.73955620210413,41.85276224255874],[-87.7395678483066,41.85308255928884],[-87.73957446931351,41.85326360505875],[-87.73958706766264,41.853607909885866],[-87.73958864484406,41.85365177217057],[-87.73960124456809,41.85399602154626],[-87.73960786536658,41.8541770672848],[-87.73962046400477,41.854521373427986],[-87.739622041242,41.85456523378468],[-87.73963464125002,41.85490948502525],[-87.73963791395911,41.85500006284497],[-87.73964118806323,41.855090530351085],[-87.73970121383819,41.856736847544695],[-87.7397079081568,41.85691789357244],[-87.73975383045237,41.85817626528682],[-87.73975547954748,41.858220072472534],[-87.73976794759864,41.85856300390963],[-87.73977122656983,41.85865297823847],[-87.73977390685249,41.85874410123755],[-87.73978379749767,41.859087733378075],[-87.73978447655858,41.859109691512266],[-87.73978508088524,41.8591315935517],[-87.73979489885657,41.859475115796876],[-87.73979813564137,41.85958879370671],[-87.73980005375584,41.85965615377861],[-87.73980994498966,41.859999786140555],[-87.73981122803906,41.86004364630528],[-87.73981884869806,41.86030857665774],[-87.73982128297453,41.8603932065397],[-87.73982375972949,41.86047884076419],[-87.7398253386256,41.86053433783695],[-87.73987359696766,41.86221522595206],[-87.73987617404015,41.862305744897355],[-87.73987875024385,41.862396318721856],[-87.7398886377324,41.862740389153956],[-87.73988992035868,41.862784304454564],[-87.73989986968954,41.86312963754079],[-87.73990502155847,41.86331089520359],[-87.73990927633233,41.863459585689895],[-87.73991490043514,41.86365611976953],[-87.73991618213209,41.86369997989855],[-87.73992607044893,41.864043995369556],[-87.73992868420622,41.86413456963435],[-87.73993129935657,41.864225033585775],[-87.73994107458816,41.86456537195918],[-87.73994235814952,41.864609232090686],[-87.7399522466778,41.86495324887893],[-87.73995743826141,41.86513428659843],[-87.73996644149551,41.86544684877785],[-87.73996768874113,41.865490708714816],[-87.73997712626084,41.86581995819645],[-87.73998200626032,41.86595918745525]],[[-87.68739948177172,41.83480098281811],[-87.68795936125322,41.83462461757661],[-87.68834432728659,41.83450367375166],[-87.68841861545137,41.834480334855954],[-87.68873585093316,41.8343807313818],[-87.6889151533928,41.8343245022087],[-87.68912280328614,41.83425938279868],[-87.6894069401119,41.834170552428404],[-87.68990552936275,41.83401478269288],[-87.69031858331796,41.833885653851716],[-87.69036388424018,41.83387149153048],[-87.69092871687477,41.83369224044366],[-87.69135494218885,41.8335580412378],[-87.69181157176328,41.83341413089511],[-87.69214587623414,41.83330858688672],[-87.69225756508487,41.83327326039036],[-87.692448796218,41.833212645444846],[-87.6925379876707,41.83318437407335],[-87.6927640039618,41.83311274698465],[-87.69309860710209,41.83300692743189],[-87.69329767308972,41.832944205153126],[-87.69361673842687,41.83284356650041],[-87.6938687964295,41.83276538624891],[-87.69414234953264,41.8326805192746],[-87.69441789036857,41.83259494919324],[-87.69453059179189,41.8325589101311],[-87.69481301475697,41.83246859767924],[-87.69488877699408,41.832444370616],[-87.69497275125744,41.832417517321886],[-87.69518936864478,41.832348247066264],[-87.69526153053225,41.83232576212336],[-87.69556075603012,41.83223252576221],[-87.69598157765239,41.832104755797396],[-87.69635786270999,41.83199450179384],[-87.69661466513139,41.832194522126315],[-87.69683497519249,41.83211042108431],[-87.69704999395603,41.83202942151811],[-87.69729074774803,41.83193964518045],[-87.69729176821761,41.831939234799954],[-87.69761877108492,41.831807716394565],[-87.69781084892472,41.83173099544852],[-87.69816609157806,41.831614408245436],[-87.69854186381569,41.831492142715085],[-87.69904473698642,41.83133295395195],[-87.6993540631472,41.83123592284879],[-87.69961273337827,41.83115559847334],[-87.69964450401669,41.831145771438635],[-87.69996628345693,41.83104624094287],[-87.70018995759882,41.83097681325241],[-87.70038325249884,41.8309168144372],[-87.70076308897151,41.830809492841546],[-87.70080715742081,41.83079826447666],[-87.7017899530072,41.83052400373646],[-87.70192506598497,41.830485558357914],[-87.7020319026782,41.830455228644595],[-87.70207110609468,41.83044409929069],[-87.70225299987808,41.830394631661626],[-87.70228793222769,41.8303857422418],[-87.70230610042977,41.83038111889065],[-87.70241102578235,41.83035441804974],[-87.70255577389774,41.83031742442946],[-87.70271486775997,41.83027677717988],[-87.70288753546973,41.83023260921812],[-87.7030097808558,41.83020034887059],[-87.7031906566765,41.83014977645781],[-87.70332303869802,41.830112768911356],[-87.70345818347279,41.83007467865369],[-87.70361007057696,41.83003163056726],[-87.70374676004354,41.82999313652255],[-87.70388837918482,41.8299532702999],[-87.70407819086351,41.82990055031079],[-87.7041738488757,41.82987418018531],[-87.70428507866269,41.82985009095194],[-87.70460744033224,41.8297981796256],[-87.70460266273798,41.8296551947718],[-87.70459461254968,41.82948098057752],[-87.70459020325875,41.8293855540369],[-87.70458667935553,41.82930928790576],[-87.70458161571277,41.82919970392473],[-87.70457772629851,41.82911553420864],[-87.70487383307528,41.82902275560361],[-87.70504710051429,41.82896846568817],[-87.70530246069474,41.828887314499724],[-87.7056164502085,41.828787712341736],[-87.70602372975353,41.82865963934033],[-87.7063408367358,41.828559942449736],[-87.70673258963183,41.828436008349655],[-87.70682526388761,41.82840670750602],[-87.70689340095453,41.828385134559916],[-87.70709195255247,41.828322269669705],[-87.70748377612259,41.82819827849818],[-87.70773632820888,41.82811850615757],[-87.70810443896397,41.82800286350944],[-87.70851177670231,41.82787533109976],[-87.70885956219061,41.82776679262004],[-87.70924114056669,41.82764674636987],[-87.70927913273303,41.82763479154382],[-87.7094463937882,41.827582159942445],[-87.70945467932734,41.827579552605954],[-87.70963876398297,41.82752162673854],[-87.70999196663493,41.82741026046305],[-87.71085013724684,41.82714421929853],[-87.71120320088662,41.82703537326305],[-87.71146007524911,41.82695539657416],[-87.71179771190573,41.82684873661678],[-87.71187396168857,41.82682464913655],[-87.71230663210903,41.8266862903539],[-87.71269084974729,41.82656520404826],[-87.71352770970105,41.82629990582567],[-87.71420137247617,41.826087235009304],[-87.7143693473594,41.82604056364235],[-87.71437442000348,41.82632111996084],[-87.71522984765724,41.82605122598608],[-87.71573033842834,41.82589377849258],[-87.71576875741874,41.82588169235738],[-87.71587540356938,41.82584814256347],[-87.71602313585832,41.825801628346596],[-87.71643236024046,41.825673217840546],[-87.7167683413234,41.82556868118088],[-87.71683195252783,41.82554849269888],[-87.71710206858542,41.82546276506949],[-87.7174763669198,41.82534379091459],[-87.71764166917593,41.825291247432226],[-87.71775801273604,41.82523715675004],[-87.7185834868793,41.82499187307111],[-87.71922255433702,41.82479351108103],[-87.719334275921,41.824758832878416],[-87.71959377559067,41.824678284457924],[-87.72060304052324,41.824360945959484],[-87.72107338399583,41.8242118602278],[-87.72119731210155,41.82417303171016],[-87.72133794337329,41.82412897008065],[-87.72181792629867,41.82397858164089],[-87.7219523572832,41.823936461302225],[-87.72233852918133,41.82381452973715],[-87.72350700753482,41.82344557864516],[-87.72369533671117,41.82338611152279],[-87.72405680171985,41.823271973435304],[-87.72411774757282,41.82325272890921],[-87.72437055362575,41.82317290035938],[-87.7245298774191,41.82312259051227],[-87.72522301043642,41.822906144037646],[-87.72557571760318,41.8227950810671],[-87.72611472729682,41.82262561835527],[-87.72658223895878,41.82247844345144],[-87.72666919365102,41.822450995368555],[-87.72674071429992,41.82242888017218],[-87.7272506943602,41.82225281167662],[-87.72748330801446,41.82219925647104],[-87.72764589257726,41.82214898171373],[-87.72833685785437,41.82192752381638],[-87.72885729714575,41.82176422379403],[-87.72899141071713,41.82172214181698],[-87.72950026349383,41.82156155923513],[-87.73011143272248,41.821368683615404],[-87.73114022292103,41.821046603297255],[-87.73119134605575,41.82103059801279],[-87.73182302928363,41.82083283251616],[-87.73191847972655,41.82080246276111],[-87.73196595837742,41.820787356284114],[-87.73211598057392,41.820739658459246],[-87.73239945711661,41.82064952962984],[-87.73291017931439,41.8204882023602],[-87.73335939905166,41.820347902066814],[-87.73364839569206,41.82025730006709],[-87.73393567249782,41.820167236121065],[-87.73433128812952,41.82004273375134],[-87.73435864385138,41.82003411502017],[-87.73442202372065,41.82001414634953],[-87.73445554358196,41.820003589617585],[-87.73483460155165,41.81988410353759],[-87.73504087949226,41.819818656839765],[-87.73559923812117,41.819641758638504],[-87.7357278184038,41.819601041203114],[-87.73594922920012,41.81953092674046],[-87.73605016781848,41.81949936005478],[-87.73613783134891,41.81947194496328],[-87.73649891739007,41.81935922062926],[-87.73667282431316,41.81930489439745],[-87.73681224538412,41.81926134068265],[-87.73798757328403,41.81888621906428],[-87.7381755019372,41.81882674552494],[-87.73855658142494,41.818706145062364],[-87.73855675569168,41.81872905959313],[-87.73855731807124,41.81880300132781],[-87.73858204677083,41.81885047887585],[-87.73859662586506,41.81950506447638],[-87.73859914573029,41.819629255836325],[-87.73860364177854,41.81983715845538],[-87.73861691850576,41.82048384767513],[-87.73861878753816,41.820579221002745],[-87.73861975697163,41.8206231341905],[-87.7386200452933,41.820986836439154],[-87.73863191187593,41.82144064877685],[-87.738640376785,41.82176486062263],[-87.73864204429722,41.82182750024599],[-87.73864820393193,41.822058880454414],[-87.73864811220419,41.82205888135167],[-87.7386492510069,41.82211760105358],[-87.73864923926483,41.822117601267195],[-87.73848582774994,41.82211989733529],[-87.73848582771184,41.8221199014515],[-87.73848858203762,41.822250374249485],[-87.73850560812238,41.823064497493526],[-87.73851384619871,41.82345838992406],[-87.73852834344086,41.824151567342106],[-87.73852834721937,41.824151753698],[-87.73853216888573,41.824334479696844],[-87.73854506653309,41.82495117454578],[-87.73856332763118,41.825824272784196],[-87.73856947513818,41.82611820166423],[-87.73858283956588,41.82675718279674],[-87.7385853684721,41.82688024889586],[-87.73858730325989,41.826970185776695],[-87.73858798454282,41.82700186619222],[-87.73858846184717,41.82702403032794],[-87.738588755266,41.82703767857613],[-87.73859145603008,41.827166954480255],[-87.73859615266262,41.82739178043653],[-87.73861255134156,41.82817673903982],[-87.73862052002497,41.82855817510889],[-87.73863430463635,41.82921796193219],[-87.73863826787785,41.829407678440376],[-87.73863828217378,41.829408353880105],[-87.73863864266674,41.82942561914788],[-87.73864514738835,41.82969940151061],[-87.7386591742371,41.83028980352949],[-87.73866273515559,41.83043966778161],[-87.73866273513019,41.83043967052574],[-87.7386724410646,41.830848206075125],[-87.73867296413951,41.83087026615045],[-87.73867734074715,41.83105486365608],[-87.73868035866974,41.83118217044859],[-87.7386853066294,41.8313903557294],[-87.7386854656894,41.83139703638674],[-87.73869948411219,41.83198686298534],[-87.73871229016633,41.83252564747046],[-87.7387183884284,41.832782223189504],[-87.73872235357493,41.832948062776886],[-87.73872289956556,41.83297090068926],[-87.73872494917468,41.83305662862949],[-87.73873125841891,41.833322173696466],[-87.73873139523126,41.833327928593505],[-87.73874329207814,41.833828647120775],[-87.73875811872877,41.83445263449471],[-87.73876292302127,41.834654815269744],[-87.73877921019054,41.83534012480455],[-87.73878531016189,41.83559679727754],[-87.738787247217,41.83567828552063],[-87.73879184286247,41.83587166292438],[-87.7388024339533,41.83631727940083],[-87.73880320652056,41.83634973906056],[-87.73880630215587,41.836479791504026],[-87.73881144189406,41.83669571093557],[-87.73881204933336,41.83672123222372],[-87.73881204930797,41.836721234967854],[-87.73881204984121,41.83672125665036],[-87.73881215667832,41.83672573146125],[-87.73893326620583,41.83672441065888],[-87.73893326679244,41.836724426578684],[-87.7389334424408,41.83672915943253],[-87.73893567121333,41.836803414448056],[-87.73895746678623,41.83752949693296],[-87.73897851067247,41.83823053232924],[-87.73898808413294,41.83854944125906],[-87.73900719197044,41.83854924567208],[-87.7391091963415,41.838548202069184],[-87.73916436052986,41.84038412910405],[-87.73921999302745,41.842236315820074],[-87.73927159834614,41.84395437125134],[-87.73927428312942,41.8440448910509],[-87.7392771164101,41.84413546622796],[-87.73930674823586,41.845074049626156],[-87.7393154923537,41.8453509361348],[-87.73931992865356,41.84549219739121],[-87.73932308973987,41.845592854751835]],[[-87.68803384627775,41.856969765652835],[-87.6880182285915,41.85689093637185],[-87.68800248101631,41.8561752829631],[-87.68799468373533,41.85585553309806],[-87.6879930065681,41.85579412062576],[-87.68797895317017,41.85569222694019],[-87.68797582471714,41.85508429029429],[-87.68797283342025,41.85497107310008],[-87.68796641562888,41.854787857508335],[-87.6879535957597,41.85442005481437],[-87.68795125006608,41.854333940515396],[-87.68792986798414,41.85395065294561],[-87.68793237439765,41.85385750081066],[-87.6879111826441,41.853344753025105],[-87.68789996366539,41.85290903881029],[-87.68788835806568,41.85246611870756],[-87.68788229371957,41.85233829323597],[-87.68786668815609,41.85200935786665],[-87.68787474362856,41.85200933535459],[-87.68783284062083,41.850183538057884],[-87.68783068094291,41.85008942357273],[-87.6878178690451,41.84953116258898],[-87.6878003981831,41.84876988948898],[-87.6877911719409,41.848367862327905],[-87.68776013628064,41.84788765257653],[-87.68769524114609,41.84688351522997],[-87.68768022862865,41.84665121492812],[-87.68767403975902,41.8465554564229],[-87.6876683832575,41.84646792957952],[-87.68762852988907,41.84585125029837],[-87.6875602695139,41.84479497867858],[-87.68755924157625,41.84468205414909],[-87.68755163128287,41.843846769516304],[-87.68754591682747,41.84321956552229],[-87.68753540480583,41.84206566568679],[-87.6875322034519,41.84171428274688],[-87.68752972630456,41.84144237749336],[-87.6875227894861,41.84068094380769],[-87.68751940887428,41.840309873513725],[-87.68751789954513,41.84014416957481],[-87.68751533967722,41.839863195082344],[-87.68750249934727,41.83845368657041],[-87.6875017802295,41.838374764289725],[-87.68750175092414,41.83837158379475],[-87.6875016399435,41.83835937255786],[-87.68750010861544,41.83819126062006],[-87.6875001033459,41.83819068978303],[-87.6874993731225,41.83811057285715],[-87.68749666963151,41.83781377703615],[-87.68749568656209,41.837705849657766],[-87.68748942474076,41.83701851585552],[-87.68751312145143,41.8368121034905],[-87.6875027853293,41.83642579005059],[-87.68748711462099,41.835885767063495],[-87.68745790501109,41.834913102952925],[-87.68739948177172,41.83480098281811]],[[-87.6351581593673,41.857722096062695],[-87.63532120103145,41.857225186110604],[-87.63549373688255,41.85693838071324],[-87.63616109893537,41.85629188408105],[-87.6369788361713,41.85567341789416],[-87.63747871967801,41.85532980765092],[-87.6384403446695,41.854883699366475],[-87.63870709368611,41.8547442160065],[-87.63904440174329,41.85456783478629],[-87.63939398021995,41.85428497192242],[-87.63964786809943,41.85394971630928],[-87.63987238130707,41.8535868415646],[-87.63990973996816,41.85353651792911],[-87.6403416860949,41.852986212271404],[-87.64048978593149,41.85276507924198],[-87.64049054026721,41.8527639528844],[-87.64049058093076,41.85276389220722],[-87.64052176867517,41.852717325346866],[-87.6407536599361,41.852371075191094],[-87.6411475337876,41.851793039049454],[-87.64159395155072,41.85121929741336],[-87.64189335368931,41.850817041853055],[-87.64191934556955,41.85078212067885],[-87.64218185451693,41.85045469163864],[-87.64238025447557,41.850269101594826],[-87.6426400399731,41.85002382777646],[-87.64331567594942,41.84969300706871],[-87.64331690078215,41.84969266206457],[-87.64331690842157,41.849692668422264],[-87.64399883445986,41.84950523931547],[-87.64414539063665,41.84949081465622],[-87.64434224604173,41.849471439599164],[-87.64452979601874,41.84945297986516],[-87.6448892813693,41.84941759624654],[-87.64585034793392,41.84938430218911],[-87.64647378082603,41.8492709465078],[-87.64679998386076,41.84921163319508],[-87.64759270029629,41.8489435072692],[-87.64813685570499,41.8487733778436],[-87.64864374659668,41.84861489590019],[-87.64895526089515,41.84854636038063],[-87.64914152954674,41.848505379253254],[-87.64914161231873,41.84850536135979],[-87.64920449915978,41.84849152536794],[-87.6492634410844,41.84847855745541],[-87.64963716161438,41.848396333374204],[-87.64975088557068,41.848388807150734],[-87.65100295040406,41.848305936568934],[-87.65140675794294,41.848214803334464],[-87.65143621341478,41.84820815571503],[-87.65157843342952,41.84817605818577],[-87.65189015992607,41.84812296585798],[-87.65258344149497,41.84800488455862],[-87.65311725753986,41.84794971614282],[-87.65729114460028,41.84720404670719],[-87.65750460979154,41.84716610259946],[-87.6586046338731,41.8472648461594],[-87.66072032808557,41.84571608657964],[-87.66077326669641,41.845838906166634],[-87.6607786029615,41.84583586740943],[-87.66163820270657,41.845346372536625],[-87.6621306603932,41.845103694132476],[-87.66252443300553,41.844909643533946],[-87.66288401496087,41.844751954620534],[-87.66345070413499,41.84450343783441],[-87.66360685354249,41.8444059941065],[-87.6637776762217,41.84429156639368],[-87.66388768731139,41.84409602036016],[-87.66391878039096,41.84400062195274],[-87.66394639604212,41.843915891072164],[-87.66430961138158,41.84280145831625],[-87.66447319138473,41.842524863426185],[-87.66459405522869,41.84232049529742],[-87.66495177757595,41.84171561458612],[-87.66496896860639,41.841618869570794],[-87.66493764694638,41.841521814804594],[-87.66484348231597,41.841242833813915],[-87.66464718562176,41.84088952969043],[-87.66457355748108,41.84075700971884],[-87.66454220020847,41.840659982067145],[-87.66452844904755,41.84042987780045],[-87.6645574753687,41.840011930752084],[-87.66456364272324,41.839923124679046],[-87.66456524182318,41.83990009342264],[-87.66456648247465,41.83988223438908],[-87.66453755697589,41.83955519665117],[-87.66441081584907,41.83930022993842],[-87.66438442927712,41.83925085733039],[-87.6642851178734,41.83906503224789],[-87.66461627785277,41.838874501116265],[-87.6650898051662,41.83860782516615],[-87.66539165396694,41.83842648357482],[-87.6657643285198,41.838220731797755],[-87.66614347257503,41.83802670530382],[-87.6665063231984,41.83786127507198],[-87.6668336674084,41.83772344639355],[-87.66698374184712,41.83766025666335],[-87.6675355702497,41.83749461446118],[-87.6676272743129,41.837467087261274],[-87.66808184952453,41.837359974279074],[-87.66824256149187,41.83732210464978],[-87.66877889423128,41.837228501121864],[-87.66893497377616,41.83721162205011],[-87.66897548124223,41.837207241326375],[-87.66901699421167,41.83720275141921],[-87.6692640123789,41.83717603740615],[-87.66956900432889,41.83716285288329],[-87.66963037666005,41.83716019982037],[-87.67004371764956,41.83714232991885],[-87.67056112835282,41.837136171722996],[-87.67056172000483,41.837269638662306],[-87.67056206303441,41.837347072569706],[-87.67087735935368,41.83734408217359],[-87.67246950133409,41.83731266625213],[-87.6730333849211,41.83730200162894],[-87.67384122441057,41.83728671815762],[-87.67458465401457,41.83727264826704],[-87.67528024687431,41.83725622346797],[-87.67544191713402,41.8372524055894],[-87.6756296004096,41.83724797298705],[-87.67607932259651,41.83723735012979],[-87.67675801020253,41.83722131580457],[-87.67742937267813,41.83720781716922],[-87.67784071086668,41.83719954453159],[-87.67788144376539,41.83719872510758],[-87.67813361000898,41.83719331634729],[-87.67813361006498,41.83719331085908],[-87.67813363318793,41.837193310442125],[-87.67816732447129,41.83719259317574],[-87.67872931540681,41.83718053658953],[-87.67908245614909,41.83716498509037],[-87.67921770453115,41.83715198385168],[-87.67945249735658,41.83712941352098],[-87.6796614313427,41.83710203496019],[-87.67985338188487,41.83707208049837],[-87.68013230653283,41.83702855298474],[-87.6802658682043,41.83700212666934],[-87.68045208358356,41.83696528232078],[-87.68080120130968,41.83686963320032],[-87.68143775882695,41.83668069333272],[-87.68254732327574,41.8363371333957],[-87.68274844522963,41.83627518892881],[-87.68374052731976,41.83596962714997],[-87.68457795013396,41.83570744341449],[-87.6849949797753,41.83557309932493],[-87.68522097558245,41.835500295182825],[-87.68602946804945,41.83523983496435],[-87.6868462522395,41.83497524990488],[-87.6873994313396,41.83480099872568],[-87.68739948177172,41.83480098281811]]],"bbox":[-87.80622980135827,41.818706145062364,-87.63450859376373,41.92336824391002]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment