Skip to content

Instantly share code, notes, and snippets.

@serdaradali
Last active March 29, 2018 09:43
Show Gist options
  • Save serdaradali/11276011 to your computer and use it in GitHub Desktop.
Save serdaradali/11276011 to your computer and use it in GitHub Desktop.
Choropleth map zoom
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.background {
fill: none;
pointer-events: all;
}
.choropleth {
margin: 20px 20px;
}
.cities {
stroke: #fff;
stroke-width: 1px;
stroke-linejoin: round;
}
.districts {
stroke: #fff;
stroke-width: 0.5px;
stroke-linejoin: round;
}
.choro_outline {
opacity: 1;
stroke: #000;
stroke-width: 1.5px;
}
.tooltip {
width: 60px;
height:20px;
position: absolute;
opacity: 0;
padding: 6px 8px;
font: 8px/10px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.zoomout {
width: 50px;
height: 50px;
background: url("left-arrow-icon.jpg");
background-size: contain;
position: absolute;
top: 10px;
left: 30px;
z-index: 5;
}
#switch{
position:absolute;
left:650px;
top:130px;
width: 120px;
height: 30px;
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
}
</style>
<body>
<link type="text/css" rel="stylesheet" href="jquery.switchButton.css"/>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<script src="jquery.switchButton.js"></script>
<div id="map"></div>
<div id="switch"><input type="checkbox" id = "levelSwitch" value="1" checked></div>
<script>
function randomData(n)
{
var data = [];
for(var i=0; i<n;i++)
{
data[i] = Math.floor((Math.random())*100);
}
return data;
}
var width=960,height=600,centered;
var div = document.createElement("div");
var cityMapJSON = {}, districtMapJSON={};
var selectedCity,selectedCityDistricts, selectedNeighborCity, selectedNeighborCityDistricts, districtVotes,turkeyTotal = [0.44,0.28,0.15,0.09,0.03,0.01];
var cityScale = d3.scale.quantile(),districtScale = d3.scale.quantile(), barScale = d3.scale.linear().domain([0,100]).range([0,200]);
var colors7 = ["rgb(254,229,217)", "rgb(252,187,161)", "rgb(252,146,114)", "rgb(251,106,74)", "rgb(239,59,44)", "rgb(203,24,29)", "rgb(153,0,13)"];
var projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var zoomedIn = false;
var path = d3.geo.path()
.projection(projection);
var svg,citiG,barSvg,districtGregCenters = [];
var cityPath,districtPath;
var country,cityFeatures,districtFeatures;
var mapMode = 1; // variable holding detail type: 1=city level, -1=district level
queue()
.defer(d3.json, "turkeyCitiesTopoSimplified.json")
.defer(d3.json, "turkeyDistrictsTopoSimplified.json")
.await(readMapData);
function readMapData(error,cityJSON,districtJSON) {
var cityData = randomData(cityJSON.objects.turkeyCities.geometries.length),districtData=randomData(districtJSON.objects.turkeyDistricts.geometries.length);
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height)
.attr("class", "choropleth");
var div = d3.select("#statDetails").html("<p align=\"center\">Turkiye Geneli</p>");
svg.append("rect")
.attr("class", "background")
.attr("width", width)
.attr("height", height)
.on("click", clickedCity);
cityScale.domain(cityData)
.range(d3.range(6));
country = topojson.mesh(cityJSON, cityJSON.objects.turkeyCities),
cityFeatures = topojson.feature(cityJSON, cityJSON.objects.turkeyCities).features,
districtFeatures = topojson.feature(districtJSON, districtJSON.objects.turkeyDistricts).features;
var b = path.bounds(country),
s = .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);
g = svg.append("g");
// draw city geometry and fill colors according to city election data
cityPath = g.selectAll("path.cities")
.data(cityFeatures)
.enter().append("path")
.attr("class","cities")
.attr("fill", function(d,i){
return colors7[cityScale(cityData[i])];})
.attr("d", path)
.on("click", clickedCity)
.on("mouseover", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_1 + "</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#000'});
})
.on("mouseout", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">Turkiye Geneli</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#FFF'})
});
districtScale.domain(districtData)
.range(d3.range(6));
// draw district geometry and fill colors according to district election data. Hidden in the beginning
districtPath = g.selectAll("path.districts")
.data(districtFeatures)
.enter().append("path")
.attr("class","districts")
.attr("fill", function(m,i){
return colors7[districtScale(districtData[i])];})
.attr("d", path)
.on("mouseover", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_2 + "," + d.properties.NAME_1 +"</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#000'});
})
.on("mouseout", function(d,i) {
d3.select("#statDetails").html("<p align=\"center\">" + d.properties.NAME_1 + "</p>");
d3.select(this.parentNode.appendChild(this)).transition().duration(300)
.style({'stroke-opacity':1,'stroke':'#FFF'});
})
.style("display","none");
$("#levelSwitch").change(function(){
mapMode *= -1;
if(mapMode == 1)
{
d3.selectAll("path.districts").style("display","none");
d3.selectAll("path.cities").style("display","inline");
}
else if(mapMode == -1)
{
d3.selectAll("path.cities").style("display","none");
d3.selectAll("path.districts").style("display","inline");
}
});
}
function clickedCity(d,i) {
var x, y, k;
// if not already zoomed, zoom in. If clicked on a neighbor, change focus
if (d && centered !== d) {
d3.select("#switch").style("display","none");
// fade out all cities except the clicked one
g.selectAll("path.cities")
.filter(function(m){
return m.properties.ID_1 != d.properties.ID_1})
.style("fill-opacity", 0.1);
// store selected city & its districts for later use
selectedCity = d3.selectAll("path.cities").filter(function(m){ return m == d});
selectedCityDistricts = g.selectAll("path.districts")
.filter(function(m){return m.properties.ID_1 == d.properties.ID_1});
// set translate&scale parameters for zooming into city
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
// if zoomed into a city from country level
if(!zoomedIn)
{
// create(or show) zoom out div
d3.select("#map").append("div")
.attr("class","zoomout")
.on("click",clickedCity);
}
else //already zoomed in, clicked to a neighbor city
{
// display previously hidden cities
d3.selectAll("path.cities").style("display","inline");
}
// hide all districts
g.selectAll("path.districts")
.style("display","none")
.style("fill-opacity",0.1);
// Only display selected city districts
selectedCityDistricts.style("display","inline");
// zoomed into district level
zoomedIn = true;
}
else { // zoom out
d3.select("#switch").style("display","inline");
zoomedIn = false;
x = width / 2;
y = height / 2;
k = 1;
centered = null;
// hide all visible districts
selectedCityDistricts.style("display","none");
g.selectAll("path.districts")
.style("fill-opacity",1);
// set display for hidden city
selectedCity.style("display","inline");
// restore all city opacities
g.selectAll("path.cities")
.transition()
.duration(750)
.style("fill-opacity", 1);
// remove zoom out div
d3.select("div.zoomout").remove();
}
g.selectAll("path")
.classed("active", centered && function(d) { return d === centered; });
g.transition()
.duration(750)
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")scale(" + k + ")translate(" + -x + "," + -y + ")")
.each("end",function(d)
{
if(zoomedIn)
{
// show all districts of selected city
selectedCityDistricts
.style("display","inline")
.style("fill-opacity", 1);
// slowly make zoomed city disappear so that disctrict can be seen. At the end, disable city for allowing mouse operations on districts
selectedCity.style("display","none")
.style("fill-opacity", 0.1)
.style("stroke-width", 1.5 / k + "px");
}
});
}
$("#levelSwitch").switchButton({
on_label: 'District',
off_label: 'City',
checked: false
});
d3.select(self.frameElement).style("height", height + "px");
</script>
</body>
.switch-button-label {
float: left;
font-size: 10pt;
cursor: pointer;
}
.switch-button-label.off {
color: #adadad;
}
.switch-button-label.on {
color: #0088CC;
}
.switch-button-background {
float: left;
position: relative;
background: #ccc;
border: 1px solid #aaa;
margin: 1px 10px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
}
.switch-button-button {
position: absolute;
left: -1px;
top : -1px;
background: #FAFAFA;
border: 1px solid #aaa;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/**
* jquery.switchButton.js v1.0
* jQuery iPhone-like switch button
* @author Olivier Lance <olivier.lance@sylights.com>
*
* Copyright (c) Olivier Lance - released under MIT License {{{
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
* }}}
*/
/*
* Meant to be used on a <input type="checkbox">, this widget will replace the receiver element with an iPhone-style
* switch button with two states: "on" and "off".
* Labels of the states are customizable, as are their presence and position. The receiver element's "checked" attribute
* is updated according to the state of the switch, so that it can be used in a <form>.
*
*/
(function($) {
$.widget("sylightsUI.switchButton", {
options: {
checked: undefined, // State of the switch
show_labels: true, // Should we show the on and off labels?
labels_placement: "both", // Position of the labels: "both", "left" or "right"
on_label: "ON", // Text to be displayed when checked
off_label: "OFF", // Text to be displayed when unchecked
width: 25, // Width of the button in pixels
height: 11, // Height of the button in pixels
button_width: 12, // Width of the sliding part in pixels
clear: true, // Should we insert a div with style="clear: both;" after the switch button?
clear_after: null, // Override the element after which the clearing div should be inserted (null > right after the button)
on_callback: undefined, //callback function that will be executed after going to on state
off_callback: undefined //callback function that will be executed after going to off state
},
_create: function() {
// Init the switch from the checkbox if no state was specified on creation
if (this.options.checked === undefined) {
this.options.checked = this.element.prop("checked");
}
this._initLayout();
this._initEvents();
},
_initLayout: function() {
// Hide the receiver element
this.element.hide();
// Create our objects: two labels and the button
this.off_label = $("<span>").addClass("switch-button-label");
this.on_label = $("<span>").addClass("switch-button-label");
this.button_bg = $("<div>").addClass("switch-button-background");
this.button = $("<div>").addClass("switch-button-button");
// Insert the objects into the DOM
this.off_label.insertAfter(this.element);
this.button_bg.insertAfter(this.off_label);
this.on_label.insertAfter(this.button_bg);
this.button_bg.append(this.button);
// Insert a clearing element after the specified element if needed
if(this.options.clear)
{
if (this.options.clear_after === null) {
this.options.clear_after = this.on_label;
}
$("<div>").css({
clear: "left"
}).insertAfter(this.options.clear_after);
}
// Call refresh to update labels text and visibility
this._refresh();
// Init labels and switch state
// This will animate all checked switches to the ON position when
// loading... this is intentional!
this.options.checked = !this.options.checked;
this._toggleSwitch();
},
_refresh: function() {
// Refresh labels display
if (this.options.show_labels) {
this.off_label.show();
this.on_label.show();
}
else {
this.off_label.hide();
this.on_label.hide();
}
// Move labels around depending on labels_placement option
switch(this.options.labels_placement) {
case "both":
{
// Don't move anything if labels are already in place
if(this.button_bg.prev() !== this.off_label || this.button_bg.next() !== this.on_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertBefore(this.button_bg);
this.on_label.insertAfter(this.button_bg);
// Update label classes
this.on_label.addClass(this.options.checked ? "on" : "off").removeClass(this.options.checked ? "off" : "on");
this.off_label.addClass(this.options.checked ? "off" : "on").removeClass(this.options.checked ? "on" : "off");
}
break;
}
case "left":
{
// Don't move anything if labels are already in place
if(this.button_bg.prev() !== this.on_label || this.on_label.prev() !== this.off_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertBefore(this.button_bg);
this.on_label.insertBefore(this.button_bg);
// update label classes
this.on_label.addClass("on").removeClass("off");
this.off_label.addClass("off").removeClass("on");
}
break;
}
case "right":
{
// Don't move anything if labels are already in place
if(this.button_bg.next() !== this.off_label || this.off_label.next() !== this.on_label)
{
// Detach labels form DOM and place them correctly
this.off_label.detach();
this.on_label.detach();
this.off_label.insertAfter(this.button_bg);
this.on_label.insertAfter(this.off_label);
// update label classes
this.on_label.addClass("on").removeClass("off");
this.off_label.addClass("off").removeClass("on");
}
break;
}
}
// Refresh labels texts
this.on_label.html(this.options.on_label);
this.off_label.html(this.options.off_label);
// Refresh button's dimensions
this.button_bg.width(this.options.width);
this.button_bg.height(this.options.height);
this.button.width(this.options.button_width);
this.button.height(this.options.height);
},
_initEvents: function() {
var self = this;
// Toggle switch when the switch is clicked
this.button_bg.click(function(e) {
e.preventDefault();
e.stopPropagation();
self._toggleSwitch();
return false;
});
this.button.click(function(e) {
e.preventDefault();
e.stopPropagation();
self._toggleSwitch();
return false;
});
// Set switch value when clicking labels
this.on_label.click(function(e) {
if (self.options.checked && self.options.labels_placement === "both") {
return false;
}
self._toggleSwitch();
return false;
});
this.off_label.click(function(e) {
if (!self.options.checked && self.options.labels_placement === "both") {
return false;
}
self._toggleSwitch();
return false;
});
},
_setOption: function(key, value) {
if (key === "checked") {
this._setChecked(value);
return;
}
this.options[key] = value;
this._refresh();
},
_setChecked: function(value) {
if (value === this.options.checked) {
return;
}
this.options.checked = !value;
this._toggleSwitch();
},
_toggleSwitch: function() {
this.options.checked = !this.options.checked;
var newLeft = "";
if (this.options.checked) {
// Update the underlying checkbox state
this.element.prop("checked", true);
this.element.change();
var dLeft = this.options.width - this.options.button_width;
newLeft = "+=" + dLeft;
// Update labels states
if(this.options.labels_placement == "both")
{
this.off_label.removeClass("on").addClass("off");
this.on_label.removeClass("off").addClass("on");
}
else
{
this.off_label.hide();
this.on_label.show();
}
this.button_bg.addClass("checked");
//execute on state callback if its supplied
if(typeof this.options.on_callback === 'function') this.options.on_callback.call(this);
}
else {
// Update the underlying checkbox state
this.element.prop("checked", false);
this.element.change();
newLeft = "-1px";
// Update labels states
if(this.options.labels_placement == "both")
{
this.off_label.removeClass("off").addClass("on");
this.on_label.removeClass("on").addClass("off");
}
else
{
this.off_label.show();
this.on_label.hide();
}
this.button_bg.removeClass("checked");
//execute off state callback if its supplied
if(typeof this.options.off_callback === 'function') this.options.off_callback.call(this);
}
// Animate the switch
this.button.animate({ left: newLeft }, 250, "easeInOutCubic");
}
});
})(jQuery);
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0007738679044875734,0.0005005445038214559],"translate":[25.66705351412827,35.816684244489686]},"objects":{"turkeyCities":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0,1,2]],[[3,4,5,6,7,8,9,10,11,12,13,14]]],"properties":{"ID_1":1,"NAME_1":"Adana"}},{"type":"Polygon","arcs":[[15,16,17,18,19]],"properties":{"ID_1":2,"NAME_1":"Adiyaman"}},{"type":"Polygon","arcs":[[20,21,22,23,24,25,26]],"properties":{"ID_1":3,"NAME_1":"Afyonkarahisar"}},{"type":"Polygon","arcs":[[27,28,29,30,31,32,33]],"properties":{"ID_1":4,"NAME_1":"Agri"}},{"type":"Polygon","arcs":[[34,35,36,37,38]],"properties":{"ID_1":5,"NAME_1":"Aksaray"}},{"type":"Polygon","arcs":[[39,40,41,42]],"properties":{"ID_1":6,"NAME_1":"Amasya"}},{"type":"Polygon","arcs":[[43,44,-38,45,46,47,48]],"properties":{"ID_1":7,"NAME_1":"Ankara"}},{"type":"MultiPolygon","arcs":[[[52]],[[53,54,55,56]],[[57,58,-56,59]],[[60]],[[65,66,67,-64,68,69,70,71,72,73,74,75]]],"properties":{"ID_1":8,"NAME_1":"Antalya"}},{"type":"Polygon","arcs":[[76,77,78,79]],"properties":{"ID_1":9,"NAME_1":"Ardahan"}},{"type":"Polygon","arcs":[[-79,80,81,82]],"properties":{"ID_1":10,"NAME_1":"Artvin"}},{"type":"Polygon","arcs":[[83,84,85,86,87,88,89]],"properties":{"ID_1":11,"NAME_1":"Aydin"}},{"type":"MultiPolygon","arcs":[[[-93,94,95,96]],[[97]],[[98,99,100,101,102,103,104]],[[105]],[[106]]],"properties":{"ID_1":12,"NAME_1":"Balikesir"}},{"type":"Polygon","arcs":[[107,108,109,110]],"properties":{"ID_1":13,"NAME_1":"Bartin"}},{"type":"Polygon","arcs":[[111,112,113,114,115]],"properties":{"ID_1":14,"NAME_1":"Batman"}},{"type":"Polygon","arcs":[[116,117,118,119,120]],"properties":{"ID_1":15,"NAME_1":"Bayburt"}},{"type":"Polygon","arcs":[[121,122,123,124,125]],"properties":{"ID_1":16,"NAME_1":"Bilecik"}},{"type":"Polygon","arcs":[[126,127,128,129,130,131]],"properties":{"ID_1":17,"NAME_1":"Bingöl"}},{"type":"Polygon","arcs":[[132,-116,133,-30,134]],"properties":{"ID_1":18,"NAME_1":"Bitlis"}},{"type":"Polygon","arcs":[[135,136,-48,137,-122,138,139,140]],"properties":{"ID_1":19,"NAME_1":"Bolu"}},{"type":"Polygon","arcs":[[-74,141,142,-23,143]],"properties":{"ID_1":20,"NAME_1":"Burdur"}},{"type":"MultiPolygon","arcs":[[[144]],[[-125,145,-99,146,147,148,149]]],"properties":{"ID_1":21,"NAME_1":"Bursa"}},{"type":"MultiPolygon","arcs":[[[150]],[[151]],[[-104,152]],[[153,154,155]]],"properties":{"ID_1":22,"NAME_1":"Canakkale"}},{"type":"Polygon","arcs":[[156,157,-49,-137,158,159]],"properties":{"ID_1":23,"NAME_1":"Cankiri"}},{"type":"Polygon","arcs":[[160,-42,161,162,-157,163,164]],"properties":{"ID_1":24,"NAME_1":"Corum"}},{"type":"Polygon","arcs":[[-143,165,-90,166,167,-24]],"properties":{"ID_1":25,"NAME_1":"Denizli"}},{"type":"Polygon","arcs":[[-114,168,169,-16,170,171,-128,172]],"properties":{"ID_1":26,"NAME_1":"Diyarbakir"}},{"type":"Polygon","arcs":[[-140,173,174,175]],"properties":{"ID_1":27,"NAME_1":"Duzce"}},{"type":"Polygon","arcs":[[176,-155,177,178]],"properties":{"ID_1":28,"NAME_1":"Edirne"}},{"type":"Polygon","arcs":[[-172,179,180,181,-129]],"properties":{"ID_1":29,"NAME_1":"Elazig"}},{"type":"Polygon","arcs":[[-131,182,-181,183,184,185,186,-117,187]],"properties":{"ID_1":30,"NAME_1":"Erzincan"}},{"type":"Polygon","arcs":[[-78,188,-32,189,-132,-188,-121,190,-81]],"properties":{"ID_1":31,"NAME_1":"Erzurum"}},{"type":"Polygon","arcs":[[191,-27,192,-123,-138,-47]],"properties":{"ID_1":32,"NAME_1":"Eskisehir"}},{"type":"Polygon","arcs":[[193,194,195,196,197,198,199,-18]],"properties":{"ID_1":33,"NAME_1":"Gaziantep"}},{"type":"Polygon","arcs":[[200,201,-186,202,203,204]],"properties":{"ID_1":34,"NAME_1":"Giresun"}},{"type":"Polygon","arcs":[[-118,-187,-202,205]],"properties":{"ID_1":35,"NAME_1":"Gumushane"}},{"type":"Polygon","arcs":[[206,207,208]],"properties":{"ID_1":36,"NAME_1":"Hakkari"}},{"type":"Polygon","arcs":[[-198,209,-5,210]],"properties":{"ID_1":37,"NAME_1":"Hatay"}},{"type":"Polygon","arcs":[[-34,211,212]],"properties":{"ID_1":38,"NAME_1":"Igdir"}},{"type":"Polygon","arcs":[[-75,-144,-22,213]],"properties":{"ID_1":39,"NAME_1":"Isparta"}},{"type":"MultiPolygon","arcs":[[[214]],[[215,216]],[[217,218]]],"properties":{"ID_1":40,"NAME_1":"Istanbul"}},{"type":"MultiPolygon","arcs":[[[228]],[[229]],[[-88,230,-220,231,232,233,234,-102,235]]],"properties":{"ID_1":41,"NAME_1":"Izmir"}},{"type":"Polygon","arcs":[[236,-19,-200,237,-15,238,239]],"properties":{"ID_1":42,"NAME_1":"K. Maras"}},{"type":"Polygon","arcs":[[-159,-136,240,-108,241]],"properties":{"ID_1":43,"NAME_1":"Karabuk"}},{"type":"Polygon","arcs":[[242,-66,243]],"properties":{"ID_1":44,"NAME_1":"Karaman"}},{"type":"Polygon","arcs":[[-212,-33,-189,-77,244]],"properties":{"ID_1":45,"NAME_1":"Kars"}},{"type":"Polygon","arcs":[[245,-164,-160,-242,-111,246]],"properties":{"ID_1":46,"NAME_1":"Kastamonu"}},{"type":"Polygon","arcs":[[-239,-14,247,248,249,250]],"properties":{"ID_1":47,"NAME_1":"Kayseri"}},{"type":"Polygon","arcs":[[251,-196]],"properties":{"ID_1":48,"NAME_1":"Kilis"}},{"type":"Polygon","arcs":[[-163,252,253,-44,-158]],"properties":{"ID_1":49,"NAME_1":"Kinkkale"}},{"type":"Polygon","arcs":[[254,-179,255]],"properties":{"ID_1":50,"NAME_1":"Kirklareli"}},{"type":"Polygon","arcs":[[256,-39,-45,-254,257]],"properties":{"ID_1":51,"NAME_1":"Kirsehir"}},{"type":"Polygon","arcs":[[258,259,-149,260,261,262,-216,263]],"properties":{"ID_1":52,"NAME_1":"Kocaeli"}},{"type":"Polygon","arcs":[[-37,264,265,-244,-76,-214,-21,-192,-46]],"properties":{"ID_1":53,"NAME_1":"Konya"}},{"type":"Polygon","arcs":[[-124,-193,-26,266,267,-100,-146]],"properties":{"ID_1":54,"NAME_1":"Kutahya"}},{"type":"Polygon","arcs":[[-180,-171,-20,-237,268,-184]],"properties":{"ID_1":55,"NAME_1":"Malatya"}},{"type":"Polygon","arcs":[[-268,269,-167,-89,-236,-101]],"properties":{"ID_1":56,"NAME_1":"Manisa"}},{"type":"Polygon","arcs":[[-113,270,271,272,273,-169]],"properties":{"ID_1":57,"NAME_1":"Mardin"}},{"type":"Polygon","arcs":[[274,-67,-243,-266,275,-12]],"properties":{"ID_1":58,"NAME_1":"Mersin"}},{"type":"MultiPolygon","arcs":[[[287]],[[288]],[[-166,-142,-73,289,-277,290,291,-286,292,293,294,-84]]],"properties":{"ID_1":59,"NAME_1":"Mugla"}},{"type":"Polygon","arcs":[[-134,-115,-173,-127,-190,-31]],"properties":{"ID_1":60,"NAME_1":"Mus"}},{"type":"Polygon","arcs":[[-249,295,-35,-257,296]],"properties":{"ID_1":61,"NAME_1":"Nevsehir"}},{"type":"Polygon","arcs":[[-248,-13,-276,-265,-36,-296]],"properties":{"ID_1":62,"NAME_1":"Nigde"}},{"type":"Polygon","arcs":[[-204,297,298,299,300]],"properties":{"ID_1":63,"NAME_1":"Ordu"}},{"type":"Polygon","arcs":[[-199,-211,-4,-238]],"properties":{"ID_1":64,"NAME_1":"Osmaniye"}},{"type":"Polygon","arcs":[[-191,-120,301,302,-82]],"properties":{"ID_1":65,"NAME_1":"Rize"}},{"type":"Polygon","arcs":[[303,-174,-139,-126,-150,-260]],"properties":{"ID_1":66,"NAME_1":"Sakarya"}},{"type":"MultiPolygon","arcs":[[[306,307,308,309,310,311]],[[312,-311,313,314,315,316,-306,317,-300,318,-43,-161,319,320]]],"properties":{"ID_1":67,"NAME_1":"Samsun"}},{"type":"Polygon","arcs":[[-274,321,-194,-17,-170]],"properties":{"ID_1":68,"NAME_1":"Sanliurfa"}},{"type":"Polygon","arcs":[[322,323,-271,-112,-133]],"properties":{"ID_1":69,"NAME_1":"Siirt"}},{"type":"Polygon","arcs":[[-320,-165,-246,324]],"properties":{"ID_1":70,"NAME_1":"Sinop"}},{"type":"Polygon","arcs":[[325,-208,326,-272,-324]],"properties":{"ID_1":71,"NAME_1":"Sirnak"}},{"type":"Polygon","arcs":[[-185,-269,-240,-251,327,328,-298,-203]],"properties":{"ID_1":72,"NAME_1":"Sivas"}},{"type":"Polygon","arcs":[[329,-218,330,-156,-177,-255]],"properties":{"ID_1":73,"NAME_1":"Tekirdag"}},{"type":"Polygon","arcs":[[-299,-329,331,-40,-319]],"properties":{"ID_1":74,"NAME_1":"Tokat"}},{"type":"Polygon","arcs":[[-302,-119,-206,-201,332]],"properties":{"ID_1":75,"NAME_1":"Trabzon"}},{"type":"Polygon","arcs":[[-130,-182,-183]],"properties":{"ID_1":76,"NAME_1":"Tunceli"}},{"type":"Polygon","arcs":[[-25,-168,-270,-267]],"properties":{"ID_1":77,"NAME_1":"Usak"}},{"type":"Polygon","arcs":[[333,-209,-326,-323,-135,-29]],"properties":{"ID_1":78,"NAME_1":"Van"}},{"type":"Polygon","arcs":[[261,-262,-261,-148,334]],"properties":{"ID_1":79,"NAME_1":"Yalova"}},{"type":"Polygon","arcs":[[-332,-328,-250,-297,-258,-253,-162,-41]],"properties":{"ID_1":80,"NAME_1":"Yozgat"}},{"type":"Polygon","arcs":[[-109,-241,-141,-176,335]],"properties":{"ID_1":81,"NAME_1":"Zinguldak"}}],"bbox":[25.66705351412827,35.816684244489686,44.83498764038097,42.10602593500628]}},"arcs":[[[12845,1776],[3,-4]],[[12848,1772],[-5,-6]],[[12843,1766],[2,10]],[[13742,3665],[-129,-3],[-67,-28],[-158,-138],[-119,-279],[-20,-28],[-49,-123],[0,-219],[29,-67],[-29,-51],[-40,-103],[20,-23],[173,108],[42,-29],[35,-70],[-3,-84],[-14,-39],[-8,-74]],[[13405,2415],[-59,-62],[-67,-84],[-37,-88],[24,-57]],[[13266,2124],[-19,-13],[-25,-68],[-17,-4],[-53,-81],[-64,-45],[-2,-15],[-62,5],[-55,-19],[-47,15],[-52,-42],[-40,-72],[-34,-8],[-3,-30],[30,-19],[20,38]],[[12843,1766],[5,6]],[[12848,1772],[-3,4]],[[12845,1776],[127,18],[-3,17]],[[12969,1811],[18,-35],[-82,-58],[-23,-47],[3,-44],[-22,-56],[-52,-25],[-18,-50],[-77,38],[-116,11],[-15,-35],[-87,-67],[-14,30],[12,108],[-72,62]],[[12424,1643],[-37,77],[-45,1],[-34,26],[-37,-34],[39,-45],[30,-9],[87,-108],[47,-38],[0,-25],[-137,102],[-66,43],[-181,138],[-85,42],[-54,1]],[[11951,1814],[45,59],[34,20],[75,14],[42,93],[2,70],[-20,107],[3,128],[-37,61],[-25,66],[-35,42],[-52,34],[-20,35],[-32,173],[-30,70],[-24,101],[-90,219],[-7,49]],[[11780,3155],[2,109],[25,62],[62,52],[13,108],[-25,109],[-35,84],[8,44],[52,57],[64,2],[50,-22],[121,6],[49,34],[48,56],[19,42],[104,128],[-9,78],[0,84],[37,77],[39,15]],[[12404,4280],[196,-74],[50,-5],[193,59],[44,59],[33,126],[19,36],[238,122],[30,33],[72,49],[92,48],[101,242],[25,84],[37,93],[37,44],[72,31],[59,39],[65,27],[74,0],[32,-14],[40,-71],[12,-81],[62,-133]],[[13987,4994],[-37,-38],[-39,-69],[-45,-196],[-7,-65],[-70,-260],[-7,-146],[-23,-87],[5,-106],[47,-103],[10,-55],[-79,-204]],[[17374,4731],[35,-24],[37,4],[47,33],[44,-25],[10,-69],[-24,-131],[-23,-52],[-39,-44]],[[17461,4423],[-127,-69],[-44,-49],[-67,-105],[-25,-69],[3,-178],[-40,-99],[-151,-106],[10,-84],[-28,-25],[-104,-29],[-156,-92],[-49,-70],[-25,-14],[-59,-68],[-60,-29],[-139,2],[-37,-7],[-77,-46],[-42,-44],[-89,-64],[-101,25],[-50,35]],[[16004,3238],[-27,50],[-50,58],[-126,54],[-65,17],[-54,32],[-47,3],[-104,-62],[-82,-2]],[[15449,3388],[-64,76],[-52,32],[-55,10],[-67,46],[-30,43],[-2,138],[10,37],[77,70],[59,68],[40,72]],[[15365,3980],[47,32],[121,24],[65,-6],[10,30],[39,40],[62,25],[82,2],[97,-44],[24,1],[99,60],[159,56],[-59,340],[39,10],[77,47],[35,33],[143,85],[47,45],[104,40],[87,22],[114,-62],[-12,-60],[-77,-72],[7,-34],[75,-41],[34,-8],[263,2],[188,50],[102,66],[37,68]],[[7791,6545],[-2,-98],[20,-74],[0,-93],[-25,-94],[-55,-135],[-27,-41],[-15,-79],[-29,-93],[-5,-55],[27,-72],[89,-86],[-82,-67],[-64,-39],[-84,-72],[-107,-62],[-34,-41],[-75,-47],[-42,-46],[-67,-37]],[[7214,5214],[-62,38],[-20,45],[-86,96],[-57,-24],[-174,-212],[-62,-51],[-59,-69],[-32,-58],[-42,-48],[-80,-45],[-106,-29],[-47,-28],[-55,-62],[-57,-27],[-32,-31],[-161,-194],[-173,-161],[-40,-78],[-7,-65],[-28,-47],[28,-94],[-48,-80],[-106,-78],[-94,-5]],[[5614,3907],[-67,22],[-30,-15],[-87,-8],[-32,-22]],[[5398,3884],[-32,67],[-5,49],[-114,64],[-82,4],[3,271],[72,35],[37,36],[74,45],[104,97],[47,17],[8,28],[69,58],[47,59],[27,90],[-7,61],[-62,147],[-25,36],[-44,113],[-37,44],[-50,3],[-89,26],[-57,35]],[[5282,5269],[22,103],[25,31],[106,246],[8,65],[20,66]],[[5463,5780],[104,65],[20,26],[101,61],[60,70],[71,164],[15,65],[72,177],[5,56],[52,87],[82,48],[52,13],[57,68],[32,91]],[[6186,6771],[67,-33],[30,-90],[94,-120],[49,-14],[65,34],[10,25],[44,12],[45,32],[17,50],[35,47],[62,49],[57,27],[82,-98],[34,-15],[198,120],[114,128],[97,-19],[5,-50],[67,-157],[25,-90],[19,-25],[100,-51],[106,24],[146,0],[37,-12]],[[24331,7751],[-13,-42],[5,-90],[-69,-137],[22,-130],[-27,-59],[12,-63],[-25,-51],[-34,-7],[-122,-70],[-101,78],[-99,-31],[-72,23],[-27,-2],[-3,-38],[-25,-14],[0,-37]],[[23753,7081],[-20,22],[-57,-27],[-71,-4],[-60,19],[-220,9],[-57,-61],[-35,-75],[-59,-28],[-33,1],[-111,83],[-50,80],[-39,41],[-80,-8],[-42,33],[-42,-1],[-64,-58],[-40,-70],[-40,-29],[-104,-4],[-29,-30],[12,-54],[87,-62],[17,-35],[0,-114],[-22,-67],[-37,-29],[-87,-29],[-42,-34]],[[22428,6550],[-154,-55],[-89,-3],[-111,-59]],[[22074,6433],[-20,126],[-8,128],[-72,171],[-56,47],[-55,71],[-37,68],[-52,66],[-15,56],[-47,111],[-8,54]],[[21704,7331],[33,39],[44,114],[3,56],[-20,90],[0,160],[-22,74],[-57,44],[-75,10],[-143,74],[-30,67],[0,37],[42,28],[55,-4],[47,-20],[42,1],[215,151]],[[21838,8252],[80,-54],[116,-2],[69,34],[75,11],[69,25],[62,35],[129,33],[101,41],[119,-29],[193,-62]],[[22851,8284],[33,-8],[24,-67],[0,-262],[80,-54],[27,-2],[27,29],[47,81],[124,0],[79,-43],[62,-1],[38,-40],[96,-58],[30,-28],[129,-80],[52,-22],[54,18],[119,1],[47,-7],[57,-36],[119,-3],[72,37],[164,12]],[[11106,5947],[-22,-91],[-50,-114],[18,-72],[64,-60],[27,-59],[75,-244],[49,-41],[10,-27]],[[11277,5239],[-35,-154],[-5,-142],[43,-114],[0,-124],[-8,-20],[-72,-47],[-42,-89],[-49,-79],[-67,33],[-27,1],[-62,-47],[-23,-68]],[[10930,4389],[-77,-5],[-57,-34],[-106,-30],[-59,-2],[-149,-44],[-92,0],[-69,-20],[-127,-4],[-42,-18],[-89,2],[-54,30],[-55,86],[-104,247],[-12,53],[-45,105],[-5,117],[55,107],[22,77],[0,61],[25,113],[57,205],[20,51],[49,46],[60,102]],[[10076,5634],[218,123],[62,25],[158,3],[52,25],[77,93],[27,19],[27,51],[-10,57],[-64,255],[50,91]],[[10673,6376],[96,-112],[52,-42],[55,-60],[72,-8],[59,-45],[47,-118],[52,-44]],[[13930,10095],[-37,-77],[3,-35],[47,-87],[20,-125],[-20,-103],[-30,-66],[-84,-99],[-57,-99],[-102,-71],[-57,-59],[-37,-22],[-82,-3],[-99,33],[-57,58],[-34,20],[-134,5],[-37,-27],[-60,-152],[-86,-177],[-53,-37],[-113,-54],[-77,-90],[-23,-92]],[[12721,8736],[-173,5],[-59,74]],[[12489,8815],[5,106],[14,45],[-5,107],[28,20],[84,143],[30,77],[0,94],[17,91],[-50,89],[-104,52],[-54,10],[-62,39],[-109,2],[-99,53],[-18,38],[-49,187],[-25,74],[27,19],[3,185],[25,94],[32,79],[2,117]],[[12181,10536],[55,-24],[101,-14],[90,-52],[183,-57],[77,-9],[114,-89],[99,-89],[20,-57],[49,-35],[74,6],[50,-26],[55,-6],[66,21],[80,1],[39,-12],[72,-51],[70,21],[106,93],[17,45],[0,69],[18,44],[67,0],[71,-39],[80,-16],[-5,-58],[12,-35],[89,-72]],[[10417,8913],[-54,-93],[-45,-59],[-59,-146],[-40,-172],[3,-27],[49,-116],[5,-88],[-37,-92],[-97,-59],[-19,-31],[-95,-51],[-89,-113],[-27,-76],[-7,-83],[-18,-71],[-2,-144],[-32,-126],[-5,-67],[-25,-96],[-45,-82],[8,-29],[59,-72],[60,-6],[49,-20],[25,-74],[-32,-100],[17,-51],[50,-88],[17,0],[37,65],[89,122]],[[10157,6868],[40,-100],[45,-59],[66,-42],[45,-40],[114,-55],[225,-137],[-19,-59]],[[10076,5634],[-77,197],[-52,97],[-5,33],[5,148],[15,45],[2,240],[-5,42],[-54,134],[-77,107],[-45,112],[-49,69],[-15,54],[-94,-112],[-62,8],[-23,-19],[-29,-98],[-23,-31],[-71,-49],[-80,57],[-62,2],[-24,-15],[-109,-131],[-50,-98],[-25,-1],[-81,37],[-85,-2],[-39,-42],[-15,-36],[-62,-33],[-82,48],[-32,41],[-107,58],[-128,-38],[-85,-37],[-57,21],[-72,81],[-74,45],[-72,110],[-44,29]],[[8032,6707],[32,31],[94,54],[17,22],[5,77],[18,63],[0,187],[-20,92],[-3,134],[-47,108],[-59,101],[-60,168],[-24,102],[2,49],[50,76],[-40,139],[-77,14],[-25,26],[-66,107],[-38,77],[-101,56],[-94,6],[-37,16],[-161,7],[-50,21],[-287,1],[-124,-42],[-119,3],[-35,38],[-2,115],[-52,83]],[[6729,8638],[29,76],[102,115],[74,47],[23,36],[-18,69],[0,128],[30,80],[101,-30],[82,-48],[80,-61],[79,-23],[99,-7],[40,-17],[79,-7],[42,-18],[84,-3],[62,40],[72,27],[54,1],[50,-21],[59,1],[107,25],[171,68],[87,49],[54,41],[131,0],[70,-22],[94,3],[32,34],[102,195],[-32,118],[-28,126],[57,74],[35,30]],[[8832,9764],[183,0],[166,-89],[27,-9],[147,-84],[71,-34],[48,-79],[153,-181],[40,-26],[44,-58],[28,-95],[34,-62],[65,-33],[69,16],[25,79],[27,29],[47,-3],[87,-43],[69,-45],[60,-12],[195,-122]],[[5118,690],[0,-2]],[[5118,688],[0,2]],[[5118,690],[0,-2]],[[5074,699],[15,-50],[-55,-39],[10,57],[30,32]],[[5388,709],[3,-9],[-8,4]],[[5383,704],[3,2]],[[5386,706],[0,2]],[[5386,708],[2,1]],[[5383,704],[-2,4],[7,1]],[[5388,709],[-2,-1]],[[5386,706],[-3,-2]],[[5490,760],[-42,-55],[-20,29],[62,26]],[[5468,771],[0,6]],[[5468,777],[0,-6]],[[5463,784],[0,2]],[[5463,786],[0,-2]],[[8792,1867],[-20,-76],[0,-78],[35,-114],[25,-107],[37,-44],[30,-67],[27,-18],[109,-106]],[[9035,1257],[-30,-112],[0,-147],[15,-65],[-17,-98],[-60,-233],[-27,-36]],[[8916,566],[-64,-7],[-40,27],[-32,48],[-89,61],[-62,97],[-65,43],[-24,109],[-85,106],[-22,73],[-35,77],[-42,39],[-12,41],[-67,101],[-55,61],[-57,7],[-19,27],[-42,6],[-87,50],[-84,27],[-62,51],[-15,32],[-109,25],[-32,41],[-72,63],[-144,84],[-104,41],[-30,59],[-89,42],[-139,26],[-24,-2],[-223,59],[-129,-7],[-119,-17],[-60,-1],[-39,23],[-37,55],[-52,-16],[-52,-57],[-60,-102],[-5,-104],[-10,-46],[13,-23],[-3,-73],[-22,-57],[5,-61],[39,-74],[-59,-108],[2,-27],[-39,-81],[-5,-60],[-27,-5],[-15,-83],[42,-98],[25,-25],[-82,-41],[5,-32],[25,5],[-3,-42],[-67,-75],[0,-20],[-42,-44],[10,130],[-62,-1],[-49,51],[-60,32],[-104,0],[-62,-28],[5,-54],[-40,-25],[-7,-29],[-42,5],[-17,21],[-67,-49],[-65,-34],[-34,4],[-15,25],[-32,-14],[-15,-32]],[[5463,784],[5,-7]],[[5468,777],[0,-6]],[[5468,771],[-107,-53],[-5,-47],[-44,-30],[-28,8]],[[5284,649],[-7,36],[-37,8],[-45,-61],[-42,46],[-12,81],[-95,12],[-5,13],[-94,0],[-52,33],[-57,-2],[-19,77],[-30,-3],[-18,-62],[-54,33],[-69,85],[-3,23]],[[4645,968],[47,35],[40,175],[-10,59],[97,119],[59,48],[77,92],[52,39],[42,60],[17,53],[0,163],[25,122],[45,83],[42,98],[12,88]],[[5190,2202],[62,12],[45,44],[54,88],[25,57],[5,107],[22,97],[37,79],[55,54],[166,100],[27,2],[62,37],[92,32],[67,39],[71,27],[52,1],[35,-15],[40,-113],[67,-39],[294,2],[72,22],[80,1],[19,-23],[18,25],[37,116],[27,112],[62,43]],[[6783,3109],[35,-2],[64,-59],[62,34],[179,61],[52,51],[34,14],[99,4]],[[7308,3212],[35,-32],[32,-76],[97,-53],[101,-8],[55,-21],[146,0],[67,-6],[82,-27],[69,-56],[193,-229],[87,-69],[32,-82],[72,-79],[45,-32],[72,-90],[27,-102],[2,-54],[23,-104],[14,-25],[50,-22],[84,-6],[42,-33],[57,-139]],[[22760,10721],[-22,-55],[0,-131],[-48,-118],[-66,-56],[-80,-37],[-54,4],[-37,-32],[-72,-21],[-70,-42],[-32,-35],[-47,-150],[0,-139],[-25,-88],[-22,-38],[-52,-29],[-116,-35],[-122,-83],[-82,1]],[[21813,9637],[-32,87],[-47,87],[-30,36],[-76,134],[-25,26],[-65,187],[-4,127]],[[21534,10321],[74,152],[12,53],[129,150],[67,40],[27,35],[15,57],[-69,158],[-40,122],[-32,146]],[[21717,11234],[64,7],[-17,51],[35,51],[42,33],[-5,29],[17,73],[35,47],[94,23],[79,-6],[57,-32],[13,22],[47,-3],[12,-34],[-25,-20],[0,-49],[-34,-39],[22,-48],[47,-40],[25,53],[37,10],[12,-46],[84,-58],[25,-78],[47,-69],[99,-47],[35,-74],[92,-28],[-32,-58],[-65,-41],[37,-18],[50,14],[54,-129],[60,-9]],[[21534,10321],[-60,-31],[-49,-5],[-191,-1],[-67,-27],[-45,-40],[-49,-138],[-5,-71],[-35,-120],[-22,-105],[-5,-71],[-18,-63],[-44,-35],[-69,-21],[-80,61],[-59,24],[-94,-2],[-159,-130],[-69,-30],[-47,-33],[-85,31],[-29,93],[5,78],[69,160],[-20,63],[-25,7],[-195,-1],[-28,5],[-89,54]],[[19970,9973],[0,23],[45,74],[52,66],[40,70],[59,69],[17,41],[87,126],[60,34],[32,66],[-20,47],[-45,3],[-42,23],[-54,63],[-62,115],[-3,62],[-49,106]],[[20087,10961],[39,29],[38,54],[49,18],[42,39],[79,17],[33,43],[57,114],[64,44],[35,87],[39,-11],[97,-73],[69,27],[10,-45],[50,-2],[44,-24],[45,-54],[37,40],[35,13],[37,78],[89,50],[20,-38],[72,-24],[52,35],[42,-12],[82,17],[25,-37],[111,-4],[57,-45],[97,-9],[49,-53],[35,-1]],[[3795,3318],[-81,32],[-99,5],[-48,29],[-79,93],[-69,56],[-25,4],[-74,-30],[-65,-101],[-12,-47],[-35,-47],[-116,-12],[-70,-18],[-156,-5],[-54,25],[-74,10],[-119,49],[-99,52],[-149,98],[-35,-43],[-39,-94],[-8,-89],[-30,-90]],[[2259,3195],[-62,-34],[-24,-60],[-35,4],[15,-53],[-74,19],[-18,-34],[-62,18],[-15,30],[23,102],[10,118],[-33,35],[-2,56],[-15,3],[-7,84]],[[1960,3483],[44,62],[-34,35],[-77,29],[-42,29],[-55,6],[-54,24]],[[1742,3668],[-15,9],[15,56],[111,-9],[69,34],[70,22],[44,44],[28,83],[7,79],[-42,54],[7,40],[25,10],[8,58]],[[2069,4148],[126,0],[99,47],[62,49],[22,64],[52,22],[223,3],[32,-23],[166,23],[65,19],[20,46],[20,-22],[52,2],[99,43],[121,1],[99,-24],[104,44],[164,54],[143,83]],[[3738,4579],[159,12],[47,-31]],[[3944,4560],[-20,-23],[50,-44],[67,-29],[84,-97],[12,-39],[-32,-29],[-99,-206],[-5,-44],[20,-20],[27,-76],[64,-64],[40,-133],[-32,-50],[-42,-31],[-107,-113],[-94,0],[-79,20],[-72,-77],[10,-63],[59,-124]],[[1221,7038],[3,-6]],[[1224,7032],[-3,6]],[[1315,7046],[0,1]],[[1315,7047],[0,-1]],[[1315,7046],[-4,-22],[-72,-14],[-15,22]],[[1224,7032],[-3,6]],[[1221,7038],[15,58],[40,-10],[12,-48],[27,9]],[[2524,9378],[3,-26],[37,-7],[-22,-38],[5,-30],[-75,6],[3,39],[32,-5],[-7,55],[24,6]],[[3292,9153],[-54,-96],[-32,-41],[-13,-45],[0,-88],[-17,-63],[-2,-235],[19,-70],[95,-96],[81,-246],[37,-77],[45,-10],[47,-50],[82,-60],[64,-64],[45,-22],[74,-6],[42,-19],[75,5],[24,-70],[38,-46],[76,-134],[52,-33],[45,18],[74,0],[50,-35],[20,-33]],[[4259,7537],[-33,-67],[3,-71],[-25,-51],[-2,-79],[-25,-130],[-20,-47],[-62,-98],[-54,-68],[-171,-99],[0,-140]],[[3870,6687],[-45,34],[-35,-4],[-151,-90],[-116,-48],[-62,-36],[-206,-78],[-24,-20],[-62,30],[-52,136],[-28,93],[-79,96],[-42,22],[-60,-5],[-29,15],[-18,66],[47,119],[-27,56],[-20,-22],[-136,22],[-20,-22],[-17,22],[-97,-17],[-86,28],[-114,102],[-30,0],[-112,-64]],[[2249,7122],[-118,25],[-62,37],[-119,17],[-23,-37],[-52,-39],[-190,-229],[-85,-58],[-156,-136],[-27,4]],[[1417,6706],[-35,58],[-5,73],[-47,55],[-79,1],[-35,12],[23,79],[81,1],[18,43],[44,44],[67,43],[25,34],[-10,80],[47,-9],[27,25],[0,68],[57,-1],[40,18],[10,108],[12,47],[-34,41],[-62,1],[-10,-38],[-42,-15],[-20,20],[-119,-1],[-45,-24],[-29,5]],[[1296,7474],[-5,186],[29,94],[65,42],[89,-3],[50,-15],[74,81],[156,93],[87,26],[77,3],[146,-81],[37,14],[156,92],[77,127],[24,93],[-4,60],[-50,50],[59,224],[10,76],[-44,110],[49,72],[80,69],[19,53],[-10,40]],[[2467,8980],[48,29],[29,0],[40,-33],[54,13],[65,-20],[30,12],[54,69],[64,41],[8,24],[-82,40],[-27,-30],[-17,54],[-45,35],[10,35],[-50,19],[-37,35],[-5,59],[50,40],[195,-15],[60,-14],[62,-30],[84,-25],[-10,-55],[-59,-45],[-70,-38],[-37,-42],[45,-59],[47,-16],[52,35],[67,23],[200,32]],[[2391,9433],[27,-32],[-20,-46],[10,-28],[-64,1],[22,72],[25,33]],[[2544,9693],[10,-19],[87,-18],[32,-17],[5,-30],[-49,-33],[-50,-14],[-5,-26],[-54,-23],[-53,-5],[-61,41],[5,101],[32,-9],[27,25],[74,27]],[[9379,11463],[-131,-82],[-20,28],[-37,-18],[-37,-64],[-69,-44],[-23,-50],[-34,-132],[-65,-73],[-99,-58],[-129,-94],[-94,-44]],[[8641,10832],[-52,118],[-87,103],[-47,84],[-218,264],[-27,79]],[[8210,11480],[10,23],[119,43],[45,30],[34,45],[-5,19],[67,55],[3,37],[81,69],[62,1],[55,53],[42,-19],[10,34],[35,31],[42,13],[37,53],[77,8],[7,32],[131,15]],[[9062,12022],[30,-45],[30,-76],[49,-91],[-2,-34],[67,-196],[27,-48],[116,-69]],[[20686,4751],[-32,-135],[-5,-49],[-52,-129],[-72,-35],[-89,2],[-5,-80],[-59,-50],[-28,-60],[18,-51],[34,-35],[87,-50],[37,-4],[216,3],[27,-9],[5,-55],[-50,-96],[67,-68],[20,-2],[92,42],[39,-10],[5,-37]],[[20941,3843],[-109,-49],[-121,-71],[-114,-129],[-42,-76],[-193,-47],[-253,1],[-52,5],[-82,178],[-49,61],[-47,84],[2,41]],[[19881,3841],[62,61],[15,70],[-72,35],[-30,53],[10,50],[32,21],[52,64],[40,93],[30,98],[44,107],[25,91],[20,106],[-20,128],[0,190],[22,124],[33,97],[124,76],[74,3],[22,14],[8,47],[-20,36]],[[20352,5405],[47,37],[89,2]],[[20488,5444],[92,-2],[47,-56],[22,-75],[25,-175],[17,-58],[0,-270],[-5,-57]],[[18890,8436],[-89,15],[-121,46],[-30,-1],[-104,-62],[-181,-60],[-74,-110],[-47,-44]],[[18244,8220],[-85,51],[-39,93],[19,67],[40,70],[89,97],[23,75],[0,171],[24,117],[25,61],[30,30],[136,42],[70,93],[39,93],[27,101]],[[18642,9381],[60,-1],[64,-23],[47,1],[77,27],[79,1],[38,16],[99,7],[39,19]],[[19145,9428],[20,0]],[[19165,9428],[32,-91],[25,-140],[0,-75],[22,-152],[38,-31],[2,-44],[62,-47],[87,-25],[81,0],[40,-48],[-45,-110],[-76,-36],[-132,-90],[-32,-43],[-87,-65],[-54,-27],[-121,2],[-117,30]],[[6404,9027],[82,-203],[44,-88],[8,-35]],[[6538,8701],[-82,-9],[-119,-41],[-54,-188],[-8,-93],[-27,-56],[-47,-54],[-37,-22],[-104,-6],[-102,-128],[-37,-37],[-57,5],[-42,19],[-62,3],[-67,-30],[-69,-83],[-23,-52],[-2,-102],[47,-50],[10,-33]],[[5656,7744],[-94,-23],[-107,26],[-213,93],[-27,70],[-22,111],[10,97],[-20,51]],[[5183,8169],[86,-7],[35,9],[25,72],[-3,49],[-44,21],[-40,47],[-47,112],[35,157],[5,68],[27,61],[69,64],[33,60],[19,72],[-34,94],[5,165],[37,89],[77,90],[57,28]],[[5525,9420],[27,-94],[79,-103],[35,-23],[79,-94],[97,-10],[69,21],[79,45],[82,2],[60,-21],[69,-8],[134,-82],[69,-26]],[[20097,7069],[-38,-35],[-24,-97],[39,-194],[3,-57],[44,-19],[47,-87],[0,-162],[-151,-226],[-2,-34],[20,-69],[42,-103],[67,-111],[15,-64]],[[20159,5811],[-48,-17],[-86,-67],[-226,-133],[-111,-51],[-166,-1],[-122,45],[-180,3],[-57,-49],[-10,-94],[-30,-101],[-35,-33],[-190,-2]],[[18898,5311],[9,36],[0,95],[-19,71],[-57,64],[0,64],[42,139],[25,36],[79,-14],[44,171],[-37,103],[-49,24],[-13,69],[-27,70],[-7,51],[0,135],[7,52],[97,118],[44,76],[-32,126],[-25,15],[-96,-47],[-25,-27],[-79,-36],[-134,-83],[-15,-26],[-97,-54]],[[18533,6539],[45,111],[-17,108],[44,137],[45,93],[99,-48],[32,-3],[22,34],[50,22],[99,69],[74,63],[0,22],[-74,47],[8,26],[91,54],[22,23],[107,64],[40,50],[2,43]],[[19222,7454],[102,-39]],[[19324,7415],[57,-33],[27,0],[220,107],[47,-17],[40,-34],[40,-69],[99,-80],[104,-2],[32,-18],[27,-69],[80,-131]],[[22185,4493],[-94,-87],[-42,-20],[-97,80],[-79,34],[-124,82],[-62,25],[-59,9],[-97,69],[-40,53],[-44,30],[-82,29],[-124,-27],[-54,-52],[-47,-97],[-57,51],[-72,-15],[-119,27],[-159,65],[-47,2]],[[20488,5444],[62,87],[67,29],[188,5],[84,-24],[40,1],[92,49],[69,77],[32,19],[57,63],[5,37],[-39,96],[-33,40],[-10,58],[25,24],[132,-2],[37,26],[-10,71],[220,131],[40,8],[92,-4],[27,-15],[74,-7],[92,33],[49,-26],[109,-7],[114,31],[3,18],[-32,135],[0,36]],[[22428,6550],[-22,-105],[-5,-86],[17,-46],[146,-86],[89,-107],[0,-104],[-20,-52],[-79,-79],[-47,-34],[-37,-44],[-104,-172],[-17,-44],[-20,-2],[-10,-48],[-47,-106],[-47,-55],[-184,-108],[-44,-55],[0,-76],[27,-59],[27,-100],[10,-75],[-30,-128],[60,-73],[47,-7],[-27,-44],[0,-44],[74,-118]],[[8302,10392],[79,1],[72,-21],[99,0],[-5,-134],[42,-14],[42,-36],[84,-47],[33,-6],[84,-45],[22,-55]],[[8854,10035],[27,-85],[-17,-59],[-2,-60],[-30,-67]],[[6729,8638],[-67,33],[-52,4],[-72,26]],[[6404,9027],[32,59],[-10,61],[-62,86],[57,95],[52,66],[213,6],[90,34],[42,50],[7,49],[0,162],[8,25]],[[6833,9720],[94,-45],[47,20],[72,4],[72,23],[34,-7],[45,-47],[52,-18],[109,29],[30,36],[52,34],[7,38],[3,179],[47,132],[47,-7],[136,30],[104,64],[69,82],[20,74],[-7,61],[-23,39]],[[7843,10441],[100,-22],[74,-5],[42,-19],[243,-3]],[[5190,2202],[-32,81],[-45,76],[-79,52],[-49,9],[-30,-22],[-23,-46],[-49,-59],[-45,-30],[-24,15],[19,84],[0,63],[-24,92]],[[4809,2517],[5,124],[24,102],[50,112],[87,123],[49,113],[32,93],[0,50],[-49,29],[-18,57],[3,166],[-5,60],[104,67],[206,192],[101,79]],[[5614,3907],[-10,-35],[40,-71],[52,-34],[52,28],[138,118],[77,83],[62,47],[55,-21],[44,-99],[62,-74],[64,-53],[72,-30],[119,-3],[45,-23],[35,-46],[7,-88],[42,-149],[22,-52],[75,-114],[74,-63],[32,-68],[10,-51]],[[3711,9490],[5,-103],[-35,8],[30,95]],[[5183,8169],[-50,-24],[-119,-3],[-114,64],[-62,-28],[-27,-53],[-37,-135],[-35,-85],[-67,-110],[-19,-52],[-25,-134],[-3,-95],[-29,-45],[-117,-26],[-52,2],[-124,47],[-44,45]],[[3292,9153],[65,7],[35,-10],[54,10],[99,-17],[129,4],[131,-58],[65,-12],[22,31],[42,1],[72,36],[45,0],[61,-27],[38,4],[59,-53],[84,2],[85,12],[44,109],[84,13],[-79,99],[-79,9]],[[4348,9313],[-27,38],[34,71],[10,53],[32,-7],[256,0],[96,30],[27,19],[38,-5],[49,-35]],[[4863,9477],[30,-11],[144,0],[76,29],[164,85],[72,-2],[64,-39],[89,-27]],[[5502,9512],[23,-92]],[[500,8052],[23,-12],[12,-88],[-40,-20],[-71,69],[-33,6],[-9,30],[118,15]],[[359,8839],[8,-35],[32,-16],[-13,-132],[30,-10],[-32,-42],[-27,11],[-109,-40],[-25,-19],[-104,0],[-27,-17],[-40,50],[-52,15],[5,62],[64,56],[87,58],[74,1],[65,47],[64,11]],[[1296,7474],[-55,-7],[-99,-46],[-40,2],[-96,-28],[-37,-33],[-52,-10],[-10,-29],[-137,2],[-24,-38],[-15,19],[-35,-24],[-96,-18],[-80,39],[0,64],[18,10],[29,155],[42,40],[33,103],[-8,127],[-22,76],[22,27],[3,107],[-28,24],[28,121],[-13,15],[35,166],[27,39],[94,-18],[62,31],[47,80],[18,94],[34,1],[18,25],[-15,51],[12,105],[77,5],[72,40],[47,78],[17,48],[45,3],[59,95],[52,45],[13,36],[49,56],[60,15],[39,-17],[90,0],[37,17],[49,-42],[104,11],[72,104],[87,18],[45,-37],[24,22],[99,49],[38,-44],[12,-73],[-27,-15],[5,-35],[39,-42],[117,-77],[84,-36],[50,-11],[56,21]],[[1761,9538],[-44,-72],[-109,-30],[-72,-59],[-104,-51],[-45,-14],[-62,-57],[8,-60],[-27,-31],[-50,-5],[-17,-33],[7,-47],[-82,-108],[-71,-34],[-55,-86],[-59,-53],[-82,-32],[0,-47],[27,-75],[-47,-36],[-45,-64],[-106,-83],[-72,-18],[-10,23],[52,87],[37,114],[23,24],[34,95],[0,81],[-47,55],[5,53],[-25,26],[47,49],[43,10],[14,28],[33,-4],[39,54],[65,41],[54,61],[50,12],[74,66],[94,54],[104,5],[15,49],[107,42],[52,56],[-25,126],[-35,20]],[[1454,9670],[-37,49],[-5,47],[32,83]],[[1444,9849],[87,-5],[59,51],[85,55],[59,7],[25,-28],[17,-95],[-17,-80],[2,-216]],[[10814,10057],[25,-64],[2,-60],[-20,-81],[0,-98],[45,-227],[52,-184],[20,0],[37,-123],[0,-55],[-74,-164],[-72,-44],[-107,-79]],[[10722,8878],[-74,6],[-32,16],[-147,26],[-52,-13]],[[8854,10035],[102,118],[37,24],[84,94],[60,24],[94,7],[181,63],[99,23],[64,144]],[[9575,10532],[102,-6],[173,-116],[50,-54],[27,-51],[47,-28],[82,3],[5,16],[72,44],[49,4],[10,20],[69,45],[90,32],[195,109],[42,-50],[-5,-54],[-71,-77],[-20,-49],[7,-77],[50,-55],[158,-94],[107,-37]],[[11921,10862],[45,-57],[39,-127],[3,-95],[35,-72],[59,-1],[79,26]],[[12489,8815],[-82,-32],[-129,1],[-3,-92],[15,-50],[5,-93],[-161,-132],[-89,34],[-89,9],[-72,-32],[-59,-68],[-52,-19],[-479,3],[-27,-6],[-72,-79],[-99,-32],[-114,0],[-114,-35],[-29,-24]],[[10839,8168],[5,80],[29,46],[104,98],[45,32],[-10,39],[-45,33],[-64,123],[-32,188],[-25,17],[-109,34],[-15,20]],[[10814,10057],[104,35],[203,111],[12,33],[-5,73],[-69,64],[-20,63],[72,164],[32,90],[15,12],[119,208],[40,49],[67,3]],[[11384,10962],[57,-54],[119,-30],[22,-19],[94,-32],[69,-41],[114,-40],[50,68],[12,48]],[[4809,2517],[-55,-53],[-17,-46],[0,-119],[-79,-157],[-28,-24],[-77,20],[-24,42],[-82,99],[-35,68],[-5,102],[-27,64],[10,60],[-40,79],[-29,14],[-50,57],[-35,19],[-22,35],[-126,60],[-47,6],[-40,78],[0,79],[-20,65],[-25,27],[-59,23],[-77,14],[-15,40],[3,129],[-13,20]],[[3944,4560],[74,52],[23,48],[2,125],[12,22],[149,85]],[[4204,4892],[42,-9],[70,-39],[136,-51],[69,-4],[72,-36],[52,34],[114,34],[42,36],[57,28],[102,-81],[57,-56],[34,-3],[18,54],[2,96],[20,53],[55,101],[22,119],[25,59],[89,42]],[[19881,3841],[-82,-2],[-52,-18],[-69,-1],[-47,-20],[-89,-1],[-50,24],[-54,66],[-97,15],[-42,34],[-62,-71],[-20,-53],[-5,-107],[-25,-44],[-101,-4],[-67,-30],[-77,-65],[-39,-47],[-43,-21],[-71,1],[-30,21],[-129,19],[-67,-53],[-35,-11],[-161,3]],[[18367,3476],[-24,81],[0,286],[-15,45],[-114,141],[-114,5],[-109,94],[-50,58],[-62,51],[-54,68],[-62,47],[-32,7],[-159,-1],[-111,65]],[[17374,4731],[15,25],[25,151],[-3,49],[-27,82]],[[17384,5038],[114,38],[96,19],[82,-61],[99,2],[67,39],[55,-3],[81,30],[174,-1],[40,9],[86,100],[32,105],[20,36],[89,6],[48,-19],[126,-27],[305,0]],[[20159,5811],[14,-40],[57,-50],[65,-75],[25,-55],[2,-43],[-17,-47],[2,-51],[45,-45]],[[6833,9720],[42,75],[-67,84],[-50,27],[-29,77],[0,55],[42,112],[67,51],[64,78],[35,89],[-10,41],[-32,23],[-35,69]],[[6860,10501],[121,10],[50,24],[104,9],[79,19],[62,26],[52,39]],[[7328,10628],[131,-160],[117,-3],[121,-26],[146,2]],[[1590,11040],[-2,-98],[52,-102],[5,-95],[-62,-113],[-37,-5],[-117,-69],[-37,-82],[0,-52],[25,-10],[25,-69],[-47,-109],[-23,-92],[3,-184],[69,-111]],[[1454,9670],[-62,-26],[-67,-14],[-99,0],[-34,-13],[-67,-76],[-42,8],[-55,41],[-62,-34],[-44,16],[-85,-33],[-138,14],[-75,-19],[-62,23],[-52,69],[3,84],[-15,69],[-20,34],[10,28],[72,1],[42,38],[2,39],[30,67],[77,44],[-20,30],[13,34],[54,50],[3,29],[44,-18],[15,20],[-17,51],[81,29],[-37,68],[37,35],[10,52],[-37,29],[-20,92],[13,34],[-20,25],[27,58],[-30,57],[25,84],[-5,35],[25,58],[45,-18],[44,9],[62,54],[18,37],[71,85],[47,-2],[38,-36],[57,56],[5,69],[-10,75],[-15,14],[-15,138],[-17,68],[9,28],[-12,64],[3,62],[-80,23],[-49,85],[-70,51],[-39,-5],[-57,43],[-35,68],[7,70],[48,106],[185,0],[30,17],[40,67],[5,54],[-15,62],[59,55],[5,26],[52,-22],[112,-23],[34,43],[80,-13],[27,33],[77,14],[69,26]],[[1687,12365],[0,-66],[15,-26],[2,-130],[-14,-47],[-5,-117],[-20,-76],[-5,-86],[-55,-103],[23,-54],[84,-50],[12,-23],[-5,-138],[-47,-83],[-54,-72],[-20,-78],[-27,-50],[-5,-65],[24,-61]],[[17384,5038],[-87,-10],[-84,-28],[-25,-21],[-42,45],[-87,68],[-24,52],[-38,26],[-175,15],[-48,34],[-59,6],[-99,59],[-124,27],[-64,74],[-20,47],[-23,101],[40,100],[114,192],[37,24],[159,-1],[20,23],[0,229],[-25,95],[-32,80],[-3,43],[25,59],[59,6],[40,-14]],[[16819,6369],[40,45],[52,16]],[[16911,6430],[34,-72],[3,-113],[-17,-56],[12,-54],[54,-27],[57,-3],[99,43],[112,4],[139,-51],[69,-40],[134,-56],[30,-28],[123,-77],[102,-41],[77,53],[32,7],[72,44],[114,0],[79,33],[87,109],[57,134],[0,121],[-27,63],[5,42],[71,76],[104,-2]],[[19222,7454],[-49,-4],[-300,0],[-109,24],[-84,-5],[-176,-73],[-129,62],[-112,-39],[-39,-24],[-55,-63],[-54,-87],[-85,-1],[-22,87],[-37,4],[-50,-22],[-91,3],[-27,14],[-100,7],[-57,21],[-106,-26],[-35,-16],[-77,-5],[-84,-38],[-54,-63],[-42,-30],[-47,-57],[-132,-83],[-62,-30],[-47,-91],[45,-41],[129,-19],[-15,-51],[-114,-72],[-57,-6],[-50,-83],[-22,-72],[32,-106],[3,-39]],[[16819,6369],[-35,92],[-37,48],[-134,80],[-138,5],[-80,45]],[[16395,6639],[50,114],[0,397],[5,31],[-27,131],[-35,108],[0,84],[17,56],[3,154],[69,144],[27,13],[5,49],[28,20],[64,6],[52,56],[-12,37],[-30,16],[-154,-45],[-37,10],[-12,27],[20,91],[54,126],[32,32],[87,-11],[69,-19],[171,0],[60,24],[30,113],[4,52]],[[16935,8455],[117,-2],[84,29]],[[17136,8482],[47,-11],[151,-79],[45,-9],[0,-24],[57,-28],[37,-35],[136,-94],[124,-73],[77,-26],[102,24],[116,1],[47,20],[102,25],[67,47]],[[18890,8436],[-30,-71],[-24,-140],[27,-53],[280,0],[30,-14],[44,-101],[-12,-106],[49,-100],[90,-66],[64,-26],[7,-41],[-94,-200],[3,-103]],[[21813,9637],[23,-41],[7,-59],[-15,-45],[-10,-136],[-14,-99],[-33,-80],[-240,-144],[-87,-48],[-42,-6],[-104,-43],[-15,-69],[40,-92],[54,-90],[204,-64],[57,-67],[47,-34],[67,-80],[86,-188]],[[21704,7331],[-175,-53],[-114,-67],[-50,-54],[27,-139],[-29,-60],[-97,-82],[-50,-58],[-81,-41],[-124,-31],[-114,-63],[-72,-1],[-82,24],[-82,60],[-39,71],[-97,121],[-34,60],[-97,69],[-82,39],[-67,-4],[-32,-15],[-84,-14],[-32,-24]],[[19165,9428],[119,64],[40,12],[267,160],[154,128],[64,37],[72,59],[89,85]],[[8032,6707],[-28,-12],[-22,-108],[-12,-22],[-79,-50],[-50,3],[-50,27]],[[6186,6771],[-30,111],[-29,65],[-95,102],[-27,63],[0,214],[-87,105],[-27,51],[-29,19],[-67,76],[-18,50],[50,77],[15,48],[-35,14],[-67,-1],[-84,-21]],[[16004,3238],[-64,6],[-35,-14],[-60,-71],[-37,-89],[-67,-82],[-2,-79],[-22,-58],[5,-82],[39,-216],[32,-93],[107,-130],[49,-94],[5,-39],[-5,-182]],[[15949,2015],[-42,-14],[-89,-65],[-121,-53],[-30,-21],[-74,2],[-102,-36],[-156,-111],[-32,-41]],[[15303,1676],[-13,50],[-34,60],[-47,141],[-72,62],[-57,27],[-119,73],[-17,29],[-23,124],[-44,104],[-45,32],[-42,8],[-129,-1],[-67,-47],[-22,-90],[-50,-86],[-66,-40],[-80,-71],[-10,-74]],[[14366,1977],[-59,35],[-92,26]],[[14215,2038],[-47,3],[-146,125],[-97,104]],[[13925,2270],[20,34],[32,126],[25,43],[37,106],[171,205],[28,54],[57,77]],[[14295,2915],[39,18],[102,94],[86,70],[30,-35],[25,-147],[22,-85],[60,-32],[42,29],[44,85],[100,93],[39,24],[55,10],[109,39],[67,8],[57,20],[66,-9],[62,28],[62,4],[50,29],[32,55],[8,40],[-3,135]],[[17461,10504],[-40,-75],[-40,-172],[-2,-159],[30,-164],[15,-28]],[[17424,9906],[-82,-36],[-80,1],[-126,-132],[-101,-241],[-5,-182],[24,-49],[50,-23],[37,8],[67,-39],[104,-97],[10,-58],[-30,-35],[-114,-69],[-59,-70],[-13,-36],[3,-202],[57,-95],[-30,-69]],[[16935,8455],[-81,62],[-109,32],[-70,40],[-44,6],[-102,-45],[-91,55],[-85,62],[-94,87],[-5,81],[-20,91],[-2,73],[-35,149],[-27,150],[-32,75]],[[16138,9373],[-50,207],[-101,178],[-40,94],[25,75],[82,202],[42,136]],[[16096,10265],[128,-33],[80,14],[62,-58],[47,-14],[37,15],[37,-10],[141,13],[45,31],[67,77],[34,-3],[50,-46],[42,9],[119,115],[30,-10],[49,13],[60,56],[138,-13],[117,36],[54,49],[28,-2]],[[17424,9906],[69,-62],[22,-43],[60,-35],[52,-72],[151,-78],[86,-30],[70,-43],[67,-25],[69,-41],[42,0],[60,47],[47,181],[52,85],[44,-49],[-5,-85],[-14,-50],[19,-16],[70,-7],[34,-73],[40,-28],[37,5],[20,61],[-30,61],[3,26],[39,38],[45,-41],[72,-124],[15,-10],[-18,-117]],[[24432,3897],[30,-7],[49,-75],[-2,-47],[-55,-71],[-14,-42],[42,-57],[29,-18],[5,-65],[-29,-47],[-5,-82],[12,-68],[-25,-66],[67,-28],[45,-90],[67,-24],[19,-50],[87,-81],[15,-43],[-22,-56],[-52,-68],[15,-91],[-45,-31],[-57,24],[-42,0],[-52,24],[-79,-69],[-30,-59],[-20,-4],[-35,-56],[-69,-46],[-67,-29],[-45,3],[-29,-27],[17,-46],[-49,-75],[-25,-16],[-45,16],[-35,87],[8,39],[-55,82],[-5,35],[52,104],[35,-3],[27,40],[-14,58],[5,45],[-20,50],[-40,54],[-89,44],[-35,29],[-37,-6],[-107,25],[-27,-46],[-39,-19],[-35,-73],[-72,-42],[-64,-11],[-142,10],[-52,-8],[-89,12],[-44,16],[-20,28],[-27,-12],[-72,32]],[[23045,2900],[-84,144],[0,345],[34,128],[5,118],[35,91],[2,92]],[[23037,3818],[47,-18],[13,18],[94,-7],[54,-17],[107,1],[69,19],[60,-35],[72,-16],[99,53],[47,-19],[79,3],[169,100],[39,-38],[22,-81],[-5,-62],[-29,-80],[42,-21],[99,57],[87,-22],[34,2],[75,58],[49,58],[72,126]],[[14215,2038],[15,-37],[-12,-36],[-47,-68],[-13,-38],[20,-72],[-62,-121],[-5,-41],[23,-102],[-28,-113],[-39,-42],[19,-67],[0,-45],[33,-102],[39,-13],[-5,-26],[25,-78],[40,-19],[2,-48],[37,-22],[-9,-29],[17,-43],[-40,-51],[-44,0],[-43,-24],[-32,29],[-34,-8],[-18,20],[-67,-11],[-12,-54],[-72,17],[-30,24],[-5,-73],[-29,-40],[20,-54],[-15,-48],[22,-70],[-12,-30],[10,-45],[-38,-104],[-29,-3],[-35,24],[-30,-48],[15,-39],[-35,-13],[-32,19],[-32,-7],[-30,-33],[-32,-84],[10,-34],[-7,-98],[-18,-38],[-20,8],[-15,51],[-34,39],[-84,26],[-43,4],[8,87],[-40,30],[-74,-41],[-22,61],[79,110],[0,30],[-62,168],[-69,150],[-82,159],[-32,44],[-13,85],[65,86],[29,5],[10,57],[25,39],[20,-5],[7,49],[70,55],[37,17],[67,116],[62,37],[101,88],[42,-1],[5,74],[18,17],[0,73],[-23,49],[-2,108],[17,60],[-77,145],[-109,111],[-57,34],[-44,-24],[-65,-77]],[[13405,2415],[179,-10],[32,-17],[67,-7],[44,-28],[27,-51],[62,-32],[109,0]],[[22851,8284],[-2,61],[-74,155],[22,79],[77,-10],[32,41],[-15,77],[40,34],[195,5],[82,33],[47,35]],[[23255,8794],[37,-43],[28,-61],[-65,-20],[-20,-73],[18,-28],[74,-53],[65,0],[47,-41],[128,-81],[82,2],[45,23],[94,9],[67,-15],[124,18],[77,24],[47,-19],[79,-68],[49,-10],[60,-61],[25,-5],[49,-81],[45,-46],[10,-52],[42,-54],[0,-33],[32,-38],[69,-55],[30,13],[3,-53],[22,1],[12,-44],[25,-19],[37,-68],[47,-51],[3,-76],[-47,44],[-72,93],[-70,32],[-22,29],[-25,76],[-32,-5],[-62,-76],[-81,-78]],[[7214,5214],[-7,-93],[15,-26],[91,-107],[65,-57],[131,-156],[25,-13],[69,-77],[47,-33],[40,-63],[-3,-55],[-22,-43],[-114,-69],[-40,-12],[-52,-65],[-22,-62],[0,-82],[13,-77],[27,-56],[-3,-150],[-37,-126],[-22,-113],[-52,-216],[-10,-137],[-20,-74],[-25,-40]],[[4474,10108],[-5,-76],[-17,0],[2,66],[20,10]],[[5423,10639],[22,-59],[-7,-65],[-35,-22],[-72,-8],[-57,-23],[-123,-85],[-62,-2],[-55,42],[-87,10],[-10,-57],[-34,-46],[-37,-20],[-15,-43],[5,-53],[-15,-20],[-84,-50],[-25,-59],[-55,-24]],[[4677,10055],[-34,11],[-15,34],[-35,9],[-106,55],[-38,73],[-52,43],[-64,35],[-17,89],[57,47],[17,107],[42,32],[-32,48],[20,75],[34,10],[5,33],[60,48],[64,-8],[47,27],[134,-42],[47,0],[72,-30],[183,-56],[47,20],[42,-28],[100,-21],[47,10],[62,-33],[59,-4]],[[3174,10475],[-85,182],[45,128],[77,54],[29,140],[35,127],[0,88],[17,55],[5,69],[18,34],[-72,70],[30,28]],[[3273,11450],[79,-92],[191,-125],[208,-119],[86,-62],[129,-41],[99,-46],[33,-37],[71,-31],[38,2],[57,-37],[81,-17],[23,23],[89,-44],[-13,-58],[-19,-9],[-23,-52],[-47,-42],[45,-66],[-22,-39],[2,-41],[-37,-69],[-62,-48],[0,-42],[-57,0],[-15,-28],[-62,-38],[-35,12],[-24,-38],[-28,1],[-52,49],[-37,-19],[-69,-1],[-12,-19],[-77,2],[-28,20],[3,79],[-40,14],[-29,-66],[-45,24],[-50,49],[-79,45],[-77,24],[-116,13],[-50,29],[-10,-13],[-64,4],[-54,-26]],[[1538,4454],[0,-2]],[[1538,4452],[0,2]],[[1013,4764],[3,-1]],[[1016,4763],[-3,1]],[[1033,5154],[0,1]],[[1033,5155],[0,2]],[[1033,5157],[0,-3]],[[1033,5157],[0,-2]],[[1033,5154],[0,3]],[[894,5273],[-5,-60],[-37,2],[3,36],[39,22]],[[1333,5455],[39,-32],[3,-72],[25,-26],[-32,-22],[-40,14],[5,138]],[[2069,4148],[-10,42],[22,20],[-2,41],[-35,73],[-82,19],[-22,-19],[-62,26],[-22,39],[-33,4],[-37,68],[-47,13],[-40,37],[-54,0],[-107,-59]],[[1538,4454],[-9,106],[-35,121],[-37,28],[-23,-17],[-5,78],[-19,36],[-95,-33],[-34,7],[-32,-21],[0,-68],[-23,-105],[-17,-18],[-94,48],[-13,61],[-42,68],[-44,18]],[[1016,4763],[-3,1]],[[1013,4764],[-25,-5]],[[988,4759],[-54,52],[-72,2],[-37,31],[-5,32],[-37,24],[-55,-6],[20,40],[40,11],[2,57],[18,2],[-13,55],[42,32],[3,-66],[59,-49],[28,11],[0,71],[32,-33],[54,31],[84,168],[-27,34],[-69,55],[-27,0],[-8,-34],[-30,13],[28,58],[-47,58],[5,42],[-25,42],[-10,156],[20,41],[141,19],[72,-94],[20,-48],[17,0],[7,-83],[45,-53],[27,-9],[23,-125],[-57,-2],[17,-90],[25,-80],[19,-16],[0,-69],[43,-56],[32,9],[-15,60],[-20,5],[0,64],[15,75],[64,23],[-2,-30],[25,-28],[15,-66],[42,-23],[54,33],[124,25],[64,29],[43,34],[49,-2],[40,-31],[37,20],[32,63],[37,24],[-12,26],[-32,-2],[-30,-32],[-42,35],[-57,0],[-67,-35],[-59,-5],[-70,111],[-5,56],[-44,28],[-8,87],[-32,4],[-17,40],[-57,16],[-30,54],[20,59],[-25,32],[-5,73],[20,30],[37,-13],[20,23],[59,24],[82,-49],[15,64],[30,27],[-35,55],[27,44],[42,-53],[28,14],[12,75],[27,36],[32,-18],[38,23],[0,38],[-33,13],[25,39],[-5,41],[-22,13],[-67,-42],[-40,41],[-44,1],[-67,-51],[-25,41],[-40,5],[-24,32],[2,161],[112,67],[-25,88],[-72,92],[-62,31]],[[2249,7122],[45,-92],[25,-104],[0,-88],[17,-56],[-5,-78],[40,-91],[5,-38],[0,-176],[-65,-54],[-27,-51],[-62,-30],[-22,-51],[-104,-42],[-62,-4],[-94,-24],[-30,-88],[-27,-136],[35,-9],[86,-49],[23,-69],[52,-227],[4,-61],[77,33],[20,-21],[57,0],[82,-30],[134,-153],[94,-45],[69,-7],[77,-34],[45,-78],[27,-71],[44,-60],[52,-5],[62,63],[92,64],[161,5],[30,-25],[12,-52],[139,-83],[74,-23],[82,-6],[62,-25],[37,-42],[20,-48],[27,-136],[37,-93],[42,-53]],[[15018,5552],[2,-22],[-34,-78],[-65,-57],[-29,-58],[14,-59],[38,11],[168,3],[107,-24],[59,-26],[270,-165],[87,-75],[12,-38],[0,-137],[-57,-172],[-27,-157],[-50,-139],[-44,-153],[-60,-146],[-44,-80]],[[14295,2915],[-102,108],[-47,109],[-40,42],[-44,-10],[-20,-33],[-57,-30],[-52,5],[-92,-45],[-109,4],[-64,45],[-20,103],[-3,73],[-19,94],[22,74],[47,63],[22,53],[25,95]],[[13987,4994],[52,47],[62,98],[35,83],[94,147],[20,59],[5,78],[45,36]],[[14300,5542],[131,49],[134,27],[111,-51],[47,-50],[82,29],[213,6]],[[8302,10392],[-3,80],[25,133],[22,52],[114,107],[122,69],[59,-1]],[[9379,11463],[45,-31],[84,-201],[25,-44],[-42,-90],[-79,-76],[-47,-115],[2,-97],[15,-64],[62,-32],[74,-86],[57,-95]],[[11024,2720],[-29,-38],[-50,-32],[-77,-28],[-114,-5],[-74,-43],[-54,-68],[-70,-41],[-119,-48],[-99,43],[-59,-4],[-75,-64],[-44,-23],[-159,-2],[-101,-50],[-137,-117],[-123,-118],[-152,-82],[-62,-18],[10,-55],[77,-186],[87,-108],[84,-38],[67,-55],[22,-52],[-22,-78],[-27,-2],[-169,-101],[-131,-40],[-35,5],[-133,-44],[-75,5],[-59,19],[-87,5]],[[8792,1867],[40,31],[67,6],[67,27],[119,108],[64,28],[82,119],[-164,59],[-79,11],[-74,85],[2,59],[50,59],[54,91],[50,129],[0,101],[34,26],[72,26],[94,-44],[77,3],[-27,44],[-22,69],[5,47],[39,117],[35,41],[59,26],[109,2],[23,23],[54,104],[45,12],[69,-7],[104,-134],[37,-24],[52,1],[50,46],[22,114],[57,117],[45,58],[198,120],[114,12],[25,-52],[27,-112],[30,-74],[42,-156],[5,-49],[44,-81],[62,-58],[28,-86],[151,-50],[59,-11],[47,-28],[89,-102]],[[22760,10721],[121,38],[82,-46],[45,-99],[-30,-74],[25,-57],[5,-71],[111,-68],[55,-18],[99,-115],[0,-166],[47,-66],[44,-152],[-15,-55],[18,-55],[-30,-32],[-27,-88],[-40,-81],[-42,-42],[7,-54],[-22,-3],[-111,-106],[81,-87],[18,-69],[-32,-66],[-3,-57],[50,-85],[10,-37],[52,-36],[2,-57],[-25,-23]],[[11062,12263],[-5,-130],[7,-48],[52,-133],[0,-120],[92,4],[84,-23],[104,-6],[92,-53],[54,-63],[0,-45],[-47,-114],[-59,-59],[-67,-37],[-3,-198],[20,-78],[-2,-198]],[[9062,12022],[45,28],[67,2],[10,19],[59,-5],[99,25],[84,37],[25,40],[60,40],[129,45],[49,9],[60,50],[71,22],[67,51],[161,-9],[97,-16],[87,-30],[252,-30],[213,1],[28,13],[173,-3],[164,-48]],[[12404,4280],[55,128],[5,36],[0,243],[-50,132],[-59,56],[-146,8],[-67,43],[-20,37],[-30,120],[-35,112],[-17,23],[-79,7]],[[11961,5225],[-17,49],[0,112],[34,66],[97,34],[27,25],[50,76],[5,222],[-5,42],[-33,42],[-64,14],[-54,50],[0,80],[37,190],[5,66],[19,93],[48,50]],[[12110,6436],[69,-3],[67,-35],[86,-29],[40,1],[302,180],[18,20],[-28,76],[-5,65],[23,27],[47,-4],[42,31],[149,-5],[54,29],[107,123],[29,46]],[[13110,6958],[38,-31],[57,-15],[24,-63],[72,-114],[67,-79],[72,-37],[282,-1],[47,8],[67,40],[80,-39],[44,-4],[50,20],[111,66],[25,3],[211,-2],[131,-76],[54,-69],[33,-91],[-38,-132],[-29,-75],[-47,-182],[-30,-74],[-50,-186],[-49,-116],[-5,-65],[-27,-102]],[[15303,1676],[-47,-36],[-129,32],[-139,22],[-52,-2],[-37,-19],[-59,19],[-33,-4],[-29,-69],[-30,5],[-62,57],[2,41],[30,68],[-7,29],[-55,31],[-12,25],[-72,52],[-54,-8],[-127,43],[-25,15]],[[10839,8168],[19,-96],[-2,-98]],[[10856,7974],[-40,-45],[-96,-75],[-67,-84],[-92,-335],[-49,-48],[-30,-93],[-25,-46],[-72,4],[-44,-14],[-60,-73],[-49,-44],[-18,-72],[-52,-149],[-5,-32]],[[3208,11515],[-109,-41],[-114,-33],[-134,-81],[-54,-8],[-87,18],[-44,-27],[-72,-73],[10,-34],[-32,-137],[-38,-93],[-99,-182],[-62,-30],[-39,14],[-47,47],[-70,114],[-96,57],[-85,26],[-175,-5],[-50,-21],[-97,0],[-37,-17],[-54,4],[-33,27]],[[1687,12365],[12,54],[43,27],[17,69],[67,26],[57,-14],[32,-30],[55,3],[49,55],[55,10],[74,-44],[12,-44],[50,-25],[22,-72],[60,-87],[29,-3],[23,-32],[32,2],[59,-107],[23,63],[44,10],[60,41],[57,16],[109,-21],[7,-26],[42,0],[-7,59],[12,30],[47,20],[82,-36],[139,8],[17,-32],[7,-118],[15,-48],[-59,24],[-45,-61],[0,-54],[20,-73],[64,-94],[-2,-45],[30,-55],[54,-67],[-22,-18],[15,-68],[57,-59],[7,-34]],[[11617,7332],[-5,-51],[-57,-173],[0,-95],[69,-19],[74,80],[35,8],[10,-25],[-17,-43],[-48,-60],[-22,-51],[13,-81],[-40,-67],[-42,-26],[-15,-52],[22,-107],[-12,-29],[-67,-12],[-15,-25],[15,-46],[-5,-49],[-64,-59],[-33,-98],[-32,-56],[-2,-63],[-77,-18],[-47,18],[-47,-1],[-42,-69],[0,-51],[-18,-35],[-42,-30]],[[10856,7974],[42,-10],[173,-133],[48,3],[47,20],[99,-4],[54,-25],[55,-122],[94,-91],[7,-26],[-32,-103],[69,-84],[57,-47],[48,-20]],[[6075,10713],[2,0]],[[6077,10713],[12,-50],[-12,-45],[-42,-30],[-37,-68],[-25,-141],[67,-109],[27,-14],[5,-115],[15,-47],[-25,-46],[-82,-37],[-9,-78],[14,-50],[-74,-254],[-25,-20],[-69,-4],[-109,-48],[-64,-38],[-142,-7]],[[4863,9477],[0,226],[15,36]],[[4878,9739],[0,2]],[[4878,9741],[25,6],[25,45],[27,15],[42,-25],[27,-53],[203,50],[102,21],[22,16],[32,-16],[45,10],[10,-22],[54,-3],[30,21],[0,61],[-79,8],[-62,-26],[-65,-9],[-49,53],[-37,13],[-104,0],[-32,14],[-53,-31],[-66,0],[-15,24],[-119,-28],[-27,-24],[-52,12],[-8,94],[-42,12],[-64,59],[29,17]],[[5423,10639],[67,3],[161,-14],[94,10],[57,-5],[87,55],[7,35],[25,3],[17,44],[114,-30],[23,-27]],[[10930,4389],[23,-7],[74,-76],[30,-60],[57,-54],[29,-60],[47,-57],[99,-186],[28,-41],[39,-108],[-2,-82],[-69,-174],[-28,-144],[8,-69],[57,-25],[62,-78],[42,-106]],[[11426,3062],[7,-33],[-37,-52],[-109,-66],[-89,-64],[-18,-40],[-42,-6],[-37,-36],[-77,-45]],[[5463,5780],[-8,178],[-30,68],[-4,44],[-55,5],[-104,44],[-5,14],[-87,7],[-91,-26],[-47,-39],[-82,-48],[-94,-32],[-87,-54],[-59,-13],[-67,-45],[-38,-57],[-34,10],[-146,3],[-72,-23]],[[4353,5816],[2,86],[-5,161],[-29,44],[-5,67],[-25,110],[-74,158],[-57,68],[-57,26],[-72,4],[-102,48],[-32,34],[-27,65]],[[15018,5552],[57,32],[89,99],[109,89],[52,84],[62,57],[22,73],[5,59],[-22,82],[-30,69],[-5,83],[10,42],[45,62],[69,-21],[186,3],[191,112],[62,5],[52,18],[173,0],[30,8],[74,51],[30,44],[47,30],[69,6]],[[4353,5816],[-25,-10],[-50,-67],[-54,-32],[-74,-72],[-38,-113],[3,-58],[-12,-39],[-3,-84],[20,-78],[2,-94],[-14,-62],[-28,-35],[55,-68],[15,-36],[54,-76]],[[20941,3843],[20,-23]],[[20961,3820],[87,-173],[-27,-96],[20,-137],[-57,-52],[-95,-11],[-81,-25],[-38,-26],[-4,-222],[7,-67],[22,-62],[32,-6],[75,35],[20,-11],[37,-155],[2,-54],[-25,-116]],[[20936,2642],[-143,-44],[-92,-5],[-79,-19],[-87,-40],[-74,-11],[-297,0],[-43,-29],[-34,4],[-10,25],[-45,25],[-72,6],[-247,64],[-47,-6],[-45,-35],[-37,26],[-52,2],[-37,-29],[-60,-17],[-42,-39],[-94,-47],[-25,-27],[-64,-35],[-92,-18],[-54,-30],[-65,-64],[-57,-31],[-91,-72]],[[18851,2196],[-90,54],[-72,172],[0,126],[-22,88],[-49,114],[-10,52],[-109,255],[-55,135],[-44,177],[-30,53],[-3,54]],[[11951,1814],[-17,1],[-18,60],[-72,71],[-74,34],[-161,-7],[-40,-40],[-79,-32],[-25,-59],[-86,-60],[-55,-90],[-89,-55],[-55,-66],[-76,-63],[-33,-75],[-66,-75],[-20,-61],[-62,-36],[-18,-51],[-37,-30],[3,-152],[-47,-73],[-57,22],[-27,-54],[-18,-91],[-20,9],[0,60],[-15,43],[-44,49],[-45,5],[-27,-48],[-42,-37],[10,-14],[-25,-62],[-72,-59],[-67,-69],[3,-65],[-20,-12],[-10,53],[-20,-1],[-12,69],[-62,-23],[-35,-50],[-15,-59],[-34,-1],[0,29],[-85,36],[-86,-46],[-62,8],[-3,25],[-37,-12],[-25,-30],[-146,-8],[-39,20],[-38,-5],[-54,-99],[-84,19],[-3,-10],[-86,26],[-45,-35],[-72,-30],[-37,-57],[-42,-32],[-134,20],[-52,19],[-52,50],[-42,20],[-30,38]],[[11426,3062],[126,8],[117,81],[111,4]],[[4184,1667],[-2,0]],[[4182,1667],[2,0]],[[4217,1755],[0,2]],[[4217,1757],[0,-2]],[[4217,1757],[0,-2]],[[4217,1755],[0,2]],[[4221,1781],[0,-1]],[[4221,1780],[0,1]],[[4221,1780],[0,1]],[[3218,2255],[0,-1]],[[3218,2254],[0,1]],[[2277,2359],[74,-41],[3,-30],[-57,17],[-20,54]],[[2411,2694],[-5,-48],[-33,26],[38,22]],[[4645,968],[-15,33],[-111,46],[-35,40],[-45,88],[35,18],[5,28],[-40,96],[23,48],[7,88],[-37,3],[-17,26],[-50,13],[-27,31],[20,79],[49,5],[15,44],[35,-39],[7,47],[-37,60],[-52,6],[-27,47],[-52,11],[-82,89],[-35,-115],[-47,-1],[18,-98],[32,6]],[[4184,1667],[-47,-67],[-22,-49],[-30,24],[13,47],[-62,115],[-77,39],[-69,-26],[-15,48],[-62,-27],[7,48],[-15,16],[25,79],[-12,41],[-47,44],[-72,-18],[15,-43],[-55,10],[3,51],[-52,-10],[-13,50],[22,58],[-29,-2],[-84,-35],[9,-25],[50,5],[0,-33],[-25,-67],[-32,0],[-35,37],[-54,24],[-55,68],[-34,-41],[-15,-56],[29,-27],[-7,-37],[22,-12],[18,-62],[-37,-14],[-43,-74],[-76,-23],[-18,-74],[-39,-85],[-38,-33],[-27,24],[-37,-63],[-74,6],[-20,81],[30,7],[59,-16],[47,21],[35,66],[-37,55],[-55,-11],[-79,15],[25,40],[59,19],[72,75],[10,42],[37,9],[10,61],[-27,10],[-35,-16],[-2,-42],[-147,-45]],[[2970,1869],[-19,15],[-33,-34],[-17,25],[-50,3],[-47,-24],[-27,37],[-39,-13],[-45,18],[-40,-12],[-42,-65],[-20,-135],[-71,29],[-3,13],[-82,2],[-49,-8],[-28,-39],[-71,10],[-42,32],[-43,14],[0,38],[47,-3],[18,19],[7,71],[35,-3],[12,30],[45,-24],[30,3],[74,33],[42,-8],[22,33],[-2,40],[25,14],[47,-17],[15,-27],[104,6],[10,26],[42,22],[49,-17],[77,6],[7,-19],[85,3],[64,-17],[35,19],[7,47],[-62,8],[-5,50],[45,25],[-17,63],[5,42],[57,46],[113,-35],[-17,43]],[[3218,2255],[62,13],[10,86],[25,-6],[54,53],[72,21],[-5,42],[-64,-2],[-40,-16],[-64,-2],[-33,-20],[-91,8],[-27,-25],[-97,4],[-37,16],[-42,-29],[-18,27],[-44,-4],[-94,-33],[-47,-35],[-43,8],[-138,-3],[0,-36],[-37,3],[-40,29],[-50,-13],[-42,13],[-7,-18],[-60,23],[-29,65],[-28,-17],[-49,11],[-70,-31],[-9,-68],[-30,-22],[-42,-4],[-20,137],[-25,12],[10,83],[22,28],[50,24],[-8,26],[-39,23]],[[2054,2626],[27,15],[27,-44],[40,68],[62,1],[10,-23]],[[2220,2643],[64,-28],[13,-52],[39,-35],[104,108],[-20,44],[8,54],[47,65],[37,78],[0,43],[-30,15],[-7,-29],[-35,10],[-17,-50],[-27,-8],[-3,58],[-64,-14],[37,92],[-27,24],[-42,-49],[-43,4],[-34,45],[0,53],[59,98],[-20,26]],[[11961,5225],[-8,-78],[-44,-52],[-67,-28],[-52,-1],[-55,34],[-44,49],[-40,25],[-39,1],[-57,-35],[-90,-28],[-106,48],[-82,79]],[[11617,7332],[37,-33],[136,-79],[15,-25],[-5,-63],[158,-102],[-29,-226],[121,-154],[10,-86],[22,-80],[28,-48]],[[16138,9373],[-37,-33],[-124,-149],[-171,-46],[-102,-107],[-52,-22],[-42,2],[-52,42],[-77,198]],[[15481,9258],[-22,77],[-25,124],[-39,19],[-124,0],[-67,30],[-119,107],[-37,-3],[2,39],[-25,39],[-47,33],[-91,41],[-119,-30],[-146,24],[-33,25],[-32,52],[-114,25],[-186,111],[-19,27],[14,50]],[[14252,10048],[50,33],[121,40],[97,83],[69,156],[62,103],[156,95],[35,26],[-2,67]],[[14840,10651],[52,-8],[116,5],[12,-43],[33,-19],[106,-25],[27,-45],[62,-23],[50,-81],[47,-13],[59,27],[28,26],[7,39],[87,131],[30,-39],[57,11],[49,-5],[-20,-94],[47,-90],[75,-18],[12,-56],[22,-7],[144,-8],[52,-24],[69,-10],[33,-17]],[[19145,9428],[-5,186],[45,134],[0,73],[-57,235],[-7,53],[-55,131],[-35,25],[-19,45],[-57,35]],[[18955,10345],[66,63],[50,-1],[107,29],[42,-27],[42,38],[39,4],[55,41],[99,39],[52,92],[50,56],[44,23],[82,21],[49,-13],[30,24],[55,13],[79,44],[82,78],[29,49],[80,43]],[[6077,10713],[62,-31],[92,-31],[119,-27],[94,-11],[131,-86],[67,-3],[121,-23],[97,0]],[[14679,10756],[0,-1]],[[14679,10755],[0,1]],[[14200,11112],[5,2]],[[14205,11114],[3,-10]],[[14208,11104],[-5,0]],[[14203,11104],[-3,4]],[[14200,11108],[0,1]],[[14200,11109],[0,3]],[[14200,11112],[0,-3]],[[14200,11108],[3,-4]],[[14203,11104],[5,0]],[[14208,11104],[-3,10]],[[14205,11114],[50,-30],[47,-1],[166,-47],[188,-128],[20,-39],[3,-113]],[[14679,10755],[7,-25],[57,-44],[97,-35]],[[14252,10048],[5,70],[-44,32],[-87,0],[-144,-66],[-52,11]],[[11921,10862],[57,108],[216,132],[37,-5],[62,-120],[64,-95],[80,-24],[76,1],[72,47],[45,100],[15,91],[-45,197],[45,97],[5,49],[37,88],[0,50],[17,59]],[[12704,11637],[87,-21],[89,13],[173,64],[90,42],[148,87],[129,-88],[37,-48],[45,-80],[20,-182],[-15,-103],[15,-43],[84,-126],[44,-51],[10,-36],[65,-46],[59,-19],[3,-55],[52,-48],[12,-31],[69,-22],[85,22],[81,65],[15,45],[37,49],[15,64],[47,23]],[[18851,2196],[-60,-57],[-159,-54],[-44,-49],[-47,-24],[-67,-51],[-94,-43],[-62,-43],[-156,-22],[-75,-37],[-86,-12],[-67,-24],[-136,-25],[-124,-12],[-151,-49],[-184,65],[-84,12],[-64,-9],[-159,-3],[-92,5],[-69,21],[-35,36],[-123,155],[-48,67],[-200,112],[-84,10],[-102,26],[-45,-15],[-39,5],[-35,-28],[-126,-68],[-45,-64],[-40,-6]],[[22185,4493],[60,-18],[94,-10],[27,-25],[35,-103],[47,-101],[-28,-53],[-37,-112],[-5,-90]],[[22378,3981],[-166,46],[-124,5],[-104,86],[-109,-1],[-116,-69],[-57,-68],[-52,-103],[-59,-71],[-72,-54],[-191,-4],[-17,-22],[-72,22],[-107,-21],[-111,47],[-60,46]],[[11062,12263],[79,-26],[79,7],[114,42],[79,-8],[65,-27],[57,2],[32,-16],[94,10],[45,-5],[94,21],[49,36],[92,101],[52,98],[-5,51],[94,-14],[45,-62],[-10,-37],[49,-32],[60,-4],[54,36],[30,-3],[10,-49],[-79,15],[-20,-15],[-37,-96],[-8,-94],[20,-54],[27,-28],[0,-33],[67,-92],[33,-22],[-13,-29],[20,-50],[74,-56],[15,-47],[146,-58],[85,-68],[54,-20]],[[22378,3981],[10,-30],[60,-52],[42,-12],[124,-7],[62,-36],[64,-4],[102,-22],[195,0]],[[23045,2900],[-139,80],[-42,44],[-35,-24],[-10,-30],[-49,27],[-47,55],[-90,26],[-19,33],[-166,-36],[-25,-46],[-77,-30],[-151,67],[-15,40],[-37,14],[-37,-44],[-57,-23],[17,-54],[-57,-25],[5,-28],[-52,-64],[-12,-55],[-35,-35],[-32,-69],[-13,-64],[-71,2],[-33,-29],[-52,5],[-86,-49],[-37,11],[-38,71],[-15,65],[28,49],[-8,53],[-29,16],[-43,72],[-24,-19],[-72,13],[17,73],[-22,2],[-30,-66],[-52,-44],[-40,-49],[-19,-46],[-65,-47],[-106,-60],[-137,-40]],[[13110,6958],[20,56],[127,133],[94,88],[37,66],[49,63],[8,77],[69,140],[22,108],[18,23],[-45,32],[8,88],[-13,33],[-57,50],[-27,95],[-2,44],[-107,95],[-7,29],[29,72]],[[13333,8250],[156,-3],[104,29],[52,37],[102,-42],[149,-1],[24,-13],[72,34],[144,53],[74,48],[62,141],[-15,108],[20,46],[47,62],[28,55],[19,-23],[109,-3],[85,-25],[39,-32],[127,82],[32,-5],[91,-57],[102,-14],[32,-15],[80,-6],[27,-15],[111,-26],[23,113],[24,55],[75,62],[39,15],[-7,65],[10,44],[29,44],[0,87],[15,44],[67,64]],[[3208,11515],[42,-18],[23,-47]],[[3174,10475],[-67,-7],[-52,-30],[-60,-56],[-10,-62],[-34,-36],[-35,12],[-77,-1],[-30,45],[-99,43],[-79,-22],[-248,-56],[-17,-28],[-47,-134],[-5,-92],[-87,-84],[-72,-97],[-5,-47],[-27,-62],[-57,-51],[-99,-71],[-12,-28],[-42,-25],[-107,-19],[-45,-29]],[[13333,8250],[-24,65],[-8,140],[-42,70],[-54,1],[-70,-22],[-87,24],[-146,-2],[-39,18],[-92,110],[-50,82]],[[17461,10504],[47,-8],[12,-30],[35,-17],[99,31],[62,41],[47,47],[97,-29],[123,-147],[72,-37],[60,0],[49,23],[28,-22],[42,5],[119,-96],[81,0],[80,19],[64,-13],[42,-65],[57,-27],[84,6],[87,47],[74,65],[33,48]],[[23753,7081],[55,-78],[-5,-49],[32,-22],[-17,-56],[19,-39],[-9,-49],[27,-49],[64,-35],[52,-67],[20,-59],[-59,14],[-42,-56],[59,-39],[25,-80],[-10,-29],[-32,-4],[-3,-49],[18,-19],[-8,-40],[22,-16],[-10,-38],[25,-70],[32,-38],[20,-49],[37,5],[30,-30],[8,-79],[-25,-38],[-3,-59],[-27,-72],[32,-88],[-17,-55],[57,-30],[2,-92],[-10,-49],[18,-112],[-30,-122],[0,-112],[50,-24],[27,7],[30,-24],[62,41],[42,-55],[27,-9],[10,-64],[-62,-68],[-45,-19],[-24,-54],[12,-81],[-15,-111],[-15,-36],[-39,-19],[19,-59],[-34,3],[-40,-66],[-5,-61],[-47,-65],[-2,-33],[-30,-54],[12,-42],[-32,-70],[-2,-32],[49,-42],[47,-6],[32,21],[102,-40],[-8,-59],[35,-48],[40,0],[-13,-60],[23,-10],[72,21],[54,-17]],[[4348,9313],[-79,-35],[-65,10],[-49,26],[-35,54],[-97,24],[0,38],[47,58],[92,31],[84,64],[23,46],[32,18],[79,6],[64,-11],[67,26],[129,3],[107,29],[47,57],[84,-18]],[[7328,10628],[10,38],[47,46],[35,66],[-8,21],[10,131],[-24,8],[4,44],[52,28],[43,4],[27,43],[146,51],[74,58],[35,11],[116,86],[70,75],[69,49],[141,59],[35,34]]],"bbox":[25.66705351412827,35.816684244489686,44.83498764038097,42.10602593500628]}
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