Skip to content

Instantly share code, notes, and snippets.

@vigorousnorth
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vigorousnorth/c8b2b5ea695f7bb69be8 to your computer and use it in GitHub Desktop.
Save vigorousnorth/c8b2b5ea695f7bb69be8 to your computer and use it in GitHub Desktop.
Adaptive D3 map and legend.

Adaptive D3 map with legend

Map scale and dimensions are expressed as functions of the bounding div's width, so that maps will be legible on mobile or desktop devices.

// Andr Aroo Cumb Frank Hancock Kenne Knox Linc Oxford Penob Pisca Sagada Somerse Waldo Washing York
var data = [99.6, 87.2, 97.8, 70.7, 80.7, 99.1, 98.0, 99.4, 94.5, 88.7, 46.1, 91.9, 79.8, 86.7, 88.5, 98.8 ];
function pair(array) {
return array.slice(1).map(function(b, i) {
return [array[i], b];
});
}
$(document).ready(function() {
//Define svg width and height in terms of dimensions of the containing element
var width = parseInt($("#boundingbox").width()),
height = width*1.2;
var fill = d3.scale.linear()
.domain([0, 100])
.range(["white", "darkblue"]);
var x1 = d3.scale.linear()
.domain([0, 100])
// legend width is expressed in terms of the bounding box width
.range([0,width/2.5]);
var legendAxis = d3.svg.axis()
.ticks(5)
.scale(x1)
.orient("bottom")
.tickSize(22)
.tickFormat(d3.format(".0f%"));
// Scale is expressed in terms of svg width variable
var scale = width * 12;
var projection = d3.geo.conicConformal()
.parallels([38 + 02 / 60, 39 + 12 / 60])
.rotate([70, 0])
.scale(scale)
.translate([0, 0]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("#boundingbox").append("svg")
.attr("width", width)
.attr("height", height)
d3.json("mainecounties_topo.json", function(error, topo) {
var state = topojson.feature(topo, topo.objects.states),
statebounds = path.bounds(state),
counties = topojson.feature(topo, topo.objects.counties);
projection
.translate([width * .55 - (statebounds[0][0] + statebounds[1][0]) * .55, height / 2 - (statebounds[0][1] + statebounds[1][1]) / 2]);
var g = svg.append("g")
.attr("class", "counties")
.selectAll("path");
var counties = g.data(topojson.feature(topo, topo.objects.counties).features)
.enter().append("path")
.attr("d", path)
.attr("class","county");
counties
.style("fill", function(d,i) { return fill(data[i]); })
.attr("county", function(d) {
return d.properties.name;
})
// Build the legend
var legend = svg.append('g')
.attr("transform", "translate(" + width * .5 + "," + (height * .85) + ")")
.attr('class','key');
legend.selectAll("rect")
.data(pair(x1.ticks(20)))
.enter().append("rect")
.attr("height", 20)
.attr("x", function(d) { return x1(d[0]); })
.attr("width", function(d) { return x1(d[1]) - x1(d[0]); })
.style("fill", function(d) { return fill(d[0]); });
legend.call(legendAxis).append("text")
.attr("class", "caption")
.attr("y", -10)
.text("Percentage");
}); // end of d3.json function
}); // end of document ready function
<!DOCTYPE html>
<meta charset="utf-8">
<script src="http://d3js.org/d3.v3.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="adaptive.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<body>
Resize and refresh your browser to see map and legend scale in proportion to window size.
<div id='boundingbox'>
</div>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type":"Topology",
"objects": {
"states": {
"type":"GeometryCollection",
"geometries": [
{
"type":"Polygon",
"id":"23",
"properties": {"name":"Maine"},
"arcs":[[0]]
}]
},
"counties": {
"type":"GeometryCollection",
"geometries": [
{
"type":"Polygon", "properties":{"name":"Androscoggin"}, "arcs":[[1,2,3,4,5]]
},
{
"type":"Polygon", "properties":{"name":"Aroostook"}, "arcs":[[6,7,8,9,10]]
},
{
"type":"MultiPolygon","properties":{"name":"Cumberland"},"arcs":[[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24,25,-6,26,27]]]
},
{
"type":"Polygon","properties":{"name":"Franklin"},"arcs":[[28,29,30,-3,31]]
},
{
"type":"MultiPolygon","properties":{"name":"Hancock"},"arcs":[[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42,43,44,45]],[[46]],[[47]],[[48]]]
},
{
"type":"Polygon","properties":{"name":"Kennebec"},"arcs":[[49,50,51,-4,-31,52]]
},
{
"type":"MultiPolygon","properties":{"name":"Knox"},"arcs":[[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59,60,61]],[[62]]]
},
{
"type":"MultiPolygon","properties":{"name":"Lincoln"},"arcs":[[[63]],[[64]],[[65,-51,66,-60,67]]]
},
{
"type":"Polygon","properties":{"name":"Oxford"},"arcs":[[-32,-2,-26,68,69]]
},
{
"type":"Polygon","properties":{"name":"Penobscot"},"arcs":[[-44,70,71,72,-8,73]]
},
{
"type":"Polygon","properties":{"name":"Piscataquis"},"arcs":[[74,-9,-73]]
},
{
"type":"Polygon","properties":{"name":"Sagadahoc"},"arcs":[[-27,-5,-52,-66,75]]
},
{
"type":"Polygon","properties":{"name":"Somerset"},"arcs":[[-10,-75,-72,76,-53,-30,77]]
},
{
"type":"MultiPolygon","properties":{"name":"Waldo"},"arcs":[[[-61,-67,-50,-77,-71,-43,78]],[[79]]]
},
{
"type":"MultiPolygon","properties":{"name":"Washington"},"arcs":[[[80]],[[81]],[[82]],[[83]],[[-45,-74,-7,84]]]
},
{
"type":"MultiPolygon","properties":{"name":"York"},"arcs":[[[85]],[[-69,-25,86]]]
}
]
}
},
"arcs":[[[920,178],[-291,159],[39,220],[-384,257],[-159,2931],[-119,1441],[1046,306],[-172,159],[398,342],[410,158],[-79,135],[384,207],[-119,391],[238,587],[371,195],[146,623],[1867,1710],[437,-73],[27,-416],[318,-146],[781,244],[490,0],[345,159],[675,-354],[398,-293],[26,-2504],[-53,-599],[835,-159],[-119,-256],[211,-245],[-172,-219],[345,-342],[450,73],[437,-794],[-503,-354],[-292,134],[-238,-244],[-344,61],[-40,-208],[-451,25],[-715,-477],[-172,330],[-252,24],[120,-354],[-557,-171],[-132,281],[-265,-146],[-623,0],[-13,329],[-371,-73],[66,-232],[-344,-489],[66,-134],[-450,-269],[-450,98],[-265,-281],[-371,-37],[-305,-232],[-371,49],[-106,245],[-543,-391],[146,-245],[-397,-85],[-27,-208],[-450,-256],[-358,-587]],[[1461,2351],[4,6],[-6,12],[-1,8],[3,11],[3,12],[-1,4],[-14,10],[62,58],[20,19],[54,49],[66,60],[24,22],[42,40],[97,88],[22,-5],[26,64],[19,48],[61,142],[39,90],[-28,100],[-5,17],[26,3],[-15,54],[86,40]],[[2045,3303],[35,17],[54,25],[5,2],[3,0],[6,1],[55,6],[2,1],[104,12]],[[2309,3367],[16,-51],[54,-180],[-52,-6],[5,-19],[-30,-3],[2,-9],[7,2],[36,-39],[28,-32],[5,-4],[-1,-3],[4,-31],[59,-46],[1,-19],[-2,-134],[-2,-53],[24,-13],[25,-3],[-9,-11],[-3,-6],[161,-25],[-12,-30],[-28,4],[-8,-25],[-11,1],[-22,-61],[38,-6],[-2,-6],[17,-2]],[[2609,2557],[-48,-164],[-4,-17],[1,-9],[2,-1],[2,-5],[-6,-9],[-4,-5],[-13,-2],[-5,-6],[1,-5],[8,-7],[-3,-2],[-6,-2],[-4,-3],[5,-4],[-2,-3],[3,-4],[4,-8],[-1,-2],[2,-2],[-5,-2],[5,-5],[3,-3],[-7,-2],[4,-3],[-5,-1],[-4,-2],[-5,5],[-5,-1],[-4,2],[-2,-6],[0,-4],[-3,-1],[-2,-5],[-11,-3],[-1,-2],[0,-2],[-2,-3],[12,-6],[1,-5],[24,-16],[6,-7]],[[2540,2225],[-113,-109],[-28,12],[-57,-57],[-6,3],[-101,45],[-89,40],[-5,1],[-11,3],[8,9],[-70,50],[-20,13],[-134,92],[-53,36],[-12,-10],[-16,-15],[-91,-89],[-76,37],[-4,-8],[1,-5],[-6,-7],[2,-4],[-9,-4],[-104,50],[-8,-7],[-4,1],[-71,36],[-4,7],[2,6]],[[7930,6027],[-1,0],[-164,-24],[-11,6],[-16,0],[-5,2],[-6,-3],[-4,4],[-8,3],[-5,1],[-3,2],[-2,4],[-9,5],[13,-33],[-89,-14],[-245,-38],[-32,-5]],[[7343,5937],[-287,-43],[-33,-6],[-193,-30],[7,-14],[-105,-17],[-266,-38],[-9,-1],[-27,8],[-18,4],[0,6],[1,98],[0,4],[0,91],[5,206],[7,0],[3,208],[-3,204],[-10,17],[-1,186],[-11,16],[1,183],[-1,96],[1,34],[-3,54],[1,95],[1,0],[1,294],[-318,1],[-307,0],[0,29],[-301,0]],[[5478,7622],[-6,1],[1,394],[-1353,1],[-823,2]],[[3297,8020],[-731,-1]],[[2566,8019],[9,42],[54,230],[7,7],[107,98],[17,17],[166,151],[135,128],[610,557],[308,279],[519,468],[11,-6],[39,-11],[53,8],[8,2],[34,-12],[20,0],[24,-5],[58,-16],[34,-13],[24,-11],[2,-2],[2,-7],[34,-7],[5,1],[34,13],[13,7],[14,-2],[28,-11],[3,-2],[8,-10],[6,-31],[-6,-9],[-8,-7],[1,-4],[3,-2],[-2,-2],[-4,0],[-5,-12],[3,-6],[3,-3],[8,-4],[1,-3],[-11,-3],[-6,1],[-18,-14],[1,-112],[-3,-26],[13,-21],[-5,-15],[-3,-3],[-1,-9],[1,-3],[4,-1],[2,-2],[1,-15],[-2,-10],[2,-8],[4,-6],[2,-16],[-2,-9],[-3,-2],[-3,-5],[-1,-5],[1,-2],[25,-26],[16,-9],[8,-1],[15,-5],[48,-18],[28,-13],[28,-10],[14,-7],[7,-5],[14,-4],[13,-16],[6,0],[13,3],[2,-2],[2,-7],[3,-1],[3,1],[16,8],[16,-9],[15,-11],[4,-1],[4,2],[4,0],[11,-6],[1,-12],[7,-1],[17,-7],[11,-12],[7,-5],[3,0],[6,6],[7,3],[6,1],[8,-2],[18,3],[11,7],[8,4],[9,2],[20,0],[12,3],[10,6],[12,9],[43,17],[10,5],[35,18],[21,1],[56,13],[26,-1],[12,2],[30,10],[17,10],[24,11],[42,11],[10,0],[7,-1],[6,-4],[8,-1],[18,7],[10,4],[8,2],[6,0],[29,-3],[28,-13],[5,-1],[9,2],[11,5],[14,0],[22,4],[33,2],[1,0],[13,2],[28,10],[8,4],[22,18],[4,4],[0,4],[-3,5],[-8,10],[-1,5],[5,4],[10,6],[2,5],[3,7],[5,4],[13,8],[11,5],[18,-1],[26,-8],[16,-3],[5,0],[12,2],[17,5],[26,16],[13,5],[14,3],[25,1],[8,0],[18,-5],[14,0],[10,1],[19,5],[10,1],[11,-1],[10,-5],[5,-5],[5,-8],[5,-6],[4,-4],[23,-4],[13,2],[26,-4],[9,0],[9,3],[23,11],[6,1],[56,-4],[17,0],[11,2],[4,2],[2,4],[1,4],[-2,5],[-1,3],[-4,4],[-14,9],[-2,3],[1,5],[7,6],[1,3],[-8,30],[1,10],[10,30],[4,6],[10,10],[10,8],[11,6],[10,4],[15,3],[4,1],[40,5],[2,0],[16,1],[2,0],[14,-1],[32,-8],[15,-1],[7,1],[15,6],[5,1],[8,2],[12,0],[14,-4],[14,-8],[7,-2],[11,-3],[42,0],[19,4],[13,2],[17,-5],[7,-5],[1,-2],[0,-7],[3,-5],[13,-8],[7,-3],[9,-1],[16,1],[5,0],[57,-21],[7,-2],[35,-3],[15,-6],[4,-2],[3,-6],[-3,-17],[1,-5],[2,-4],[17,-13],[20,-18],[21,-4],[7,-5],[10,-8],[4,-3],[66,-23],[23,-11],[6,-4],[7,-8],[4,-10],[4,-5],[30,-7],[1,-1],[58,-23],[8,-5],[35,-12],[8,-9],[24,-17],[20,-20],[15,-12],[4,-3],[10,-4],[36,-4],[5,-2],[14,-8],[19,-7],[8,-8],[2,-8],[1,-7],[1,-9],[3,-6],[11,-13],[4,-2],[9,-10],[2,-2],[6,-13],[10,-9],[12,-12],[3,-2],[14,-7],[23,-7],[17,-23],[5,-6],[19,-12],[3,-3],[5,-8],[2,-14],[0,-12],[2,-3],[7,-10],[4,-3],[6,-5],[8,-3],[19,-3],[14,-4],[38,-13],[29,-14],[11,-4],[22,-2],[6,-2],[11,-5],[13,-12],[15,-6],[24,-8],[10,-4],[2,-5],[1,-7],[-1,-28],[0,-21],[2,-33],[-2,-23],[1,-26],[-1,-8],[0,-92],[1,-174],[0,-20],[-1,-172],[1,-66],[0,-16],[1,-153],[1,-196],[0,-4],[5,-198],[3,-100],[2,-64],[2,-144],[3,-209],[2,-207],[1,-115],[0,-86],[1,-129],[0,-76],[0,-8],[-2,-82],[0,-13],[1,-34],[2,-10],[6,-9],[2,-1],[5,2],[3,0],[39,-20],[17,-18],[-4,-6],[-9,-8],[-9,-3],[-10,1],[-3,-2],[-9,-17],[2,-8],[-2,-1],[-26,-6],[-10,0],[-5,1],[-43,-27],[-1,-2],[-2,-20],[2,-10],[8,-9],[9,-12],[17,-18],[16,-12],[12,-6],[15,-5],[7,-5],[10,-12],[2,-9],[3,-3],[19,-11],[-21,-7],[-5,-4],[-3,0],[-14,2],[-12,-1],[-6,-2],[-1,-1],[0,-4],[-52,-28],[-11,-19],[7,-30],[-3,-17],[-1,-9],[-9,-5],[7,-27],[32,-11],[27,-43],[-68,-4],[16,-74],[-35,-6],[30,-30]],[[2365,1785],[-13,5],[-2,1],[-1,0],[2,1],[15,6],[24,9],[16,-7],[-30,-18],[-10,3],[-1,0]],[[2073,1258],[-1,-4],[-2,-4],[-2,1],[-10,0],[-4,1],[-12,0],[-5,1],[-1,0],[-5,0],[-2,1],[1,0],[16,12],[1,1],[5,3],[4,0],[23,0],[-5,-11],[-1,-1]],[[2493,1722],[-19,-18],[0,2],[0,1],[1,39],[11,25],[28,-17],[2,-1],[1,-1],[-5,-12],[-1,-2],[-18,-16]],[[2397,1582],[1,1],[13,7],[-2,-14],[-1,-7],[-18,-21],[-6,4],[-1,0],[-5,4],[11,15],[8,11]],[[2508,1818],[3,7],[31,26],[8,7],[3,-1],[4,-3],[-1,-3],[-2,-2],[-4,-8],[-25,-42],[-4,-2],[-4,-1],[-7,-3],[-5,19],[0,1],[1,1],[2,4]],[[2439,1653],[9,0],[2,-10],[0,-2],[-6,-5],[-4,-3],[-5,-4],[-4,-3],[-23,17],[5,6],[5,4],[3,0],[15,0],[3,0]],[[2394,1593],[-12,7],[-40,-28],[-6,1],[1,7],[5,6],[37,38],[12,7],[6,3],[3,-3],[-13,-19],[13,-6],[11,4],[-15,-18],[-2,1]],[[2300,1762],[-5,-5],[-9,-19],[-2,-4],[0,-1],[-1,-1],[-1,-3],[-5,-4],[-9,-3],[-1,0],[-2,-3],[-5,-3],[-2,-1],[-3,-1],[-1,1],[-1,0],[2,5],[-1,1],[-2,2],[-4,-1],[-3,-1],[-4,0],[-1,1],[-1,1],[0,2],[9,5],[0,1],[1,0],[2,2],[9,5],[1,0],[4,3],[2,3],[2,5],[0,4],[0,1],[1,17],[0,2],[2,2],[3,1],[13,0],[2,0],[8,0],[3,0],[4,0],[2,0],[5,-1],[1,0],[1,-3],[-5,-3],[-7,-6],[-2,-1]],[[2182,1549],[4,-3],[13,-10],[9,-7],[1,-1],[-47,-45],[-38,-21],[-3,0],[-2,4],[-5,11],[-2,4],[24,43],[2,4],[15,12],[8,6],[7,6],[8,2],[3,-3],[3,-2]],[[2341,1755],[-1,-2],[-3,-2],[-5,-5],[-6,-3],[-9,-6],[-4,-2],[-1,-1],[-2,0],[-7,-3],[-5,-1],[-2,-1],[-2,0],[0,7],[3,5],[5,8],[7,4],[29,4],[2,-1],[1,0],[0,-1]],[[2251,1570],[-2,-2],[-33,-13],[-5,0],[-8,19],[5,8],[18,11],[17,5],[8,5],[8,5],[10,6],[1,0],[22,-2],[3,0],[-42,-40],[-2,-2]],[[2163,1582],[9,-10],[-3,-9],[-12,-13],[-36,-23],[-8,-2],[-6,3],[-2,7],[10,22],[19,21],[13,7],[13,1],[3,-3],[0,-1]],[[2315,1705],[0,1],[18,12],[0,1],[8,0],[6,1],[2,0],[19,9],[19,9],[2,-2],[4,-7],[-5,-8],[-1,-2],[-7,-15],[-17,-15],[-1,-2],[-1,-2],[-4,-7],[1,-5],[1,-11],[0,-2],[-25,-21],[-2,-2],[-10,-8],[-4,0],[-8,0],[-22,22],[0,6],[0,1],[-1,9],[0,4],[0,1],[28,33]],[[1768,1244],[-10,5],[-79,36],[-26,12],[-29,13],[-75,36],[-15,7],[-8,4],[4,3],[-97,43],[31,32],[25,23],[26,24],[-38,29],[-41,30],[-77,55],[-18,14],[-21,15],[-5,5],[-15,10],[-8,6],[-7,-7],[-59,-57],[-43,22],[-7,-6],[-18,-15],[-16,-2],[3,13],[-9,13],[-6,1],[-12,1],[-4,5],[-13,6],[-11,-1],[-12,-3],[-7,2],[-13,-6],[-7,-4],[-18,6],[-5,6],[1,7],[-2,8],[2,6],[6,8],[1,7],[6,24],[3,5],[3,7],[12,8],[1,3],[-1,8],[1,6],[4,3],[2,7],[-2,7],[-7,5],[-10,2],[-4,8],[-9,5],[1,4],[14,4],[-5,11],[-2,7],[-6,10],[1,6],[5,6],[0,3],[-9,3],[-3,2],[-12,4],[-11,0],[-2,3],[-3,3],[-5,-3],[2,-5],[-2,-3],[-4,-2],[-4,2],[-3,7],[-3,2],[-9,6],[-1,2],[-7,0],[-12,-2],[-3,3],[-8,2],[3,10],[-5,6],[-4,0],[-6,-3],[-4,-7],[0,-4],[-4,-3],[-12,5],[-4,1],[-9,-1],[-10,-6],[-1,-3],[-8,-3],[-12,0],[-8,-3],[-6,-6],[-5,-2],[-19,-1],[-9,-2],[-16,3],[-9,-1],[-11,3],[-8,2],[-7,2],[-23,19],[-11,5],[-3,5],[-1,10],[1,5],[-4,5]],[[729,1865],[-1,7],[4,12],[0,2],[-9,12],[-4,8],[-6,2],[-7,-1],[-5,3],[-1,2],[1,14],[5,10],[-1,4],[-6,5],[1,5],[-11,3],[-5,5],[4,5],[6,1],[10,-2],[-1,5],[-6,3],[-5,5],[40,23],[3,-12],[34,20],[3,-13],[51,32],[-15,0],[1,4],[-2,1],[-9,1],[-2,0],[-4,25],[-2,3],[1,9],[-2,4],[9,6],[5,6],[0,4],[54,32],[-42,39],[77,35],[-160,156],[-3,-2],[-21,-4],[1,3],[-1,2],[-3,6],[1,8],[-2,4],[2,1],[0,1],[-135,21],[-17,16],[-8,7],[1,1],[-2,9],[2,3],[-5,7],[2,3],[-4,4],[-1,12],[-10,3],[-2,2],[4,5],[5,10],[5,-2],[4,1],[3,5],[0,9],[-2,3],[0,4],[89,-40],[198,94],[12,6],[86,38],[8,-11],[61,30],[113,52],[22,-21],[18,-16],[7,-1],[8,-3],[3,-7],[4,1],[5,-10],[-5,-1],[-1,-4],[2,-1],[6,5],[3,-5],[-4,-2],[4,-6],[-3,-4],[5,-5],[3,-1],[0,-3],[6,-1],[-5,-9],[5,-7],[4,-4],[2,1],[0,-4],[-4,0],[-4,-4],[-2,-5],[-6,-3],[-4,-6],[-8,-5],[-1,-4],[-7,-6],[-1,-7],[-6,-3],[-3,-4],[1,-6],[4,-1],[-2,-5],[-4,-1],[3,-2],[2,-7],[-2,-5],[6,-1],[-7,-11],[1,-3],[-3,-4],[-6,-4],[1,-8],[2,-3],[-9,-8],[7,-2],[0,-4],[-4,-2],[-7,-1],[4,-3],[-2,-5],[-4,-2],[9,-2],[2,-4],[0,-9],[6,-4],[-2,-4],[3,-2],[7,-1],[-1,-4],[5,-12],[-4,-4],[15,-5],[-2,-2],[7,-6],[7,-1],[-7,-7],[9,-6],[2,-4],[6,-4],[17,-8],[-8,-2],[2,-2],[6,-5],[17,-6],[5,2],[21,19],[19,-19],[3,2],[26,-26],[22,21],[22,21],[34,32],[6,6],[10,-4],[6,7],[54,-24]],[[2540,2225],[3,-4],[4,-11],[7,-8],[2,-5],[3,-11],[9,-10],[-1,-3],[4,-7],[2,-7],[4,-2],[15,-3],[8,-2],[4,-3],[6,-7],[4,-8],[3,-3],[2,-1],[13,-1],[7,-3],[6,-4],[12,-13],[7,-11],[6,-5],[8,-3],[5,3],[18,11],[4,-2],[2,-1],[8,6],[9,2],[9,-1],[3,-1],[1,-1],[45,-22],[7,-1],[8,3],[4,5],[12,10],[15,2],[9,3],[16,8],[5,3],[3,6],[4,4],[11,6],[11,8],[4,5],[5,8],[16,7],[8,10],[6,5],[42,-20],[-6,-15],[1,-2],[-4,-2],[0,-7],[-4,-3],[-4,-22],[-3,-9],[-8,-12],[0,-3],[-21,-26],[-11,-20],[-6,-5],[-13,-7],[-7,-10],[-1,-4],[-7,-24],[0,-4],[3,-4],[15,-14],[9,-7],[11,-5],[13,-3],[-3,-19],[0,-13],[2,-8],[5,-16],[7,-18],[1,-3],[-3,-5],[-9,-14],[-12,-23],[-7,-10],[-6,-8],[-5,-5],[0,-22],[0,-2]],[[2895,1782],[-18,-5],[-1,0],[-13,-3],[-6,-2],[-19,3],[-2,1],[-6,1],[-3,1],[-12,5],[-1,0],[-8,3],[-2,1],[-5,2],[-7,-4],[-29,-18],[-3,-2],[-12,-7],[-1,-1],[-10,6],[-2,1],[-11,-2],[-16,-11],[-24,-15],[-19,-12],[-16,-17],[-12,-29],[-1,-4],[4,-3],[1,-1],[-1,-4],[-7,-6],[-5,-3],[-5,-4],[-4,-3],[-1,0],[-1,0],[-3,-1],[-2,0],[-6,-1],[0,1],[0,1],[0,1],[4,21],[10,13],[5,15],[-7,9],[-25,-3],[-9,-2],[-62,-9],[1,3],[0,8],[1,5],[5,11],[10,20],[21,23],[22,18],[15,13],[1,0],[2,1],[10,9],[3,5],[4,5],[1,2],[3,3],[6,9],[-1,3],[-2,12],[-9,15],[-19,-2],[-2,1],[-4,3],[-6,4],[-1,1],[-16,11],[-7,5],[-1,1],[0,5],[0,9],[7,12],[40,22],[9,9],[0,10],[-8,8],[-6,5],[-2,2],[-7,-1],[-16,-1],[-9,-5],[-13,-9],[-9,-5],[-2,-2],[-2,-2],[-1,-1],[-18,-17],[-6,-5],[-2,-2],[-13,-11],[-8,-8],[1,-16],[-10,-6],[-9,-6],[-7,-5],[-2,-1],[-2,7],[-2,6],[0,1],[-1,0],[-34,0],[-1,0],[-36,-13],[-13,-5],[-4,-2],[-2,0],[-8,-3],[-29,-13],[-1,-1],[-1,0],[-22,-10],[-16,-8],[-9,-4],[-8,-3],[-27,-24],[0,-2],[0,-4],[0,-8],[-2,-1],[-2,-1],[-30,-18],[-3,-2],[-7,-4],[-6,-3],[-3,-2],[-3,5],[-2,4],[1,1],[2,3],[10,16],[-2,2],[-5,5],[-6,-2],[-2,0],[-21,-7],[-6,-2],[-3,-3],[-8,-10],[-6,-22],[-1,-7],[1,-3],[1,-3],[6,-11],[-1,-8],[-2,-2],[-2,-1],[-6,-5],[-15,-13],[-32,-28],[0,-1],[-2,-6],[-1,-2],[9,-18],[-3,-7],[-27,-6],[-10,6],[-20,-20],[-12,-12],[-2,-2],[-5,-5],[-8,-8],[-1,-1],[-5,-14],[2,-4],[1,0],[7,-4],[6,-3],[12,-5],[0,-1],[7,-8],[-1,-3],[-4,-2],[-1,-1],[3,-9],[3,-3],[6,-6],[7,-8],[16,-16],[4,-4],[2,-3],[4,-3],[1,-1],[0,-1],[1,0],[10,-11],[13,-13],[2,-2],[3,-2],[-8,-36],[-2,-8],[-3,-15],[-1,-3],[-1,-3],[4,-8],[3,-6],[6,-2],[1,0],[5,-1],[12,-4],[5,-1],[3,-1],[8,-39],[0,-1],[2,-7],[0,-1],[-22,-16],[-9,-1],[-17,-1],[-1,2],[-4,7],[-1,1],[-1,2],[-30,-3],[-22,-15],[-3,-2],[-4,-3],[-43,4],[-18,14],[-4,3],[-4,3],[-11,-5],[-21,-9],[-32,-13],[-16,-11],[-5,-3],[-9,-23],[4,-9],[2,-3],[1,-2],[-7,0],[-4,0],[-8,-1],[-11,0],[0,1],[2,11],[1,3],[-19,15],[-3,3],[-19,-2],[-9,-1],[-3,-1],[-24,-9],[-3,-1],[-1,-1]],[[604,5123],[7,10],[5,17],[0,7],[30,17],[2,1],[10,8],[9,22],[4,24],[-3,7],[-5,5],[-7,0],[-8,6],[-4,5],[-2,5],[-2,11],[1,3],[12,34],[14,14],[2,1],[9,2],[3,2],[0,3],[-8,23],[-4,3],[-11,12],[-24,16],[-5,1],[-2,5],[-2,11],[1,5],[31,24],[25,15],[9,14],[1,5],[8,4],[32,6],[63,-6],[4,-1],[24,-15],[-2,-9],[3,-11],[33,-29],[18,-9],[25,-10],[48,4],[12,2],[7,4],[2,0],[14,-2],[40,-18],[1,-18],[2,0],[22,-2],[12,3],[28,11],[8,73],[-11,26],[-34,33],[-32,9],[-29,13],[-15,13],[-26,29],[-31,18],[-8,3],[-22,16],[-15,44],[0,6],[1,6],[3,5],[12,7],[35,25],[4,4],[31,40],[-1,33],[6,3],[18,12],[46,36],[23,25],[-2,2],[14,18],[23,7],[44,14],[26,22],[12,2],[22,6],[2,1],[65,55],[6,12],[-4,3],[0,2],[13,9],[13,2]],[[1285,5999],[47,-146],[31,-92],[16,-47],[20,-58],[-31,-4],[142,-470],[41,-145],[59,-206],[133,19],[-3,11],[127,16],[1,-4],[8,1],[36,-119],[325,41],[63,-205],[21,-69],[5,-12],[30,-118],[-101,-11],[17,-68],[-19,-3],[9,-31],[15,2],[3,-3],[28,-100],[234,30],[13,-54],[6,-21],[-17,-2],[5,-17],[8,-29],[15,1],[13,-51],[30,3],[5,-32],[-10,-1],[4,-33],[-24,-2],[25,-109],[17,-70],[87,8],[1,-1],[-3,-6],[-7,-3],[-3,-4],[11,-5],[4,-5],[1,-4],[-1,-12],[-4,-6],[-7,0],[-8,6],[-5,-4],[3,-6],[49,-24],[41,-83]],[[2791,3642],[6,-15],[-46,-48],[-16,-17],[-210,31],[7,-11],[-5,-12],[-4,-2],[1,-6],[-1,-8],[-3,0],[-5,-8],[-4,0],[0,-4],[-5,-2],[-2,-6],[-5,-4],[-2,-7],[-6,-3],[-1,-5],[-1,-2],[-8,-2],[-3,-5],[1,-5],[-2,-5],[-8,-5],[-1,-4],[-18,-14],[-2,-13],[74,-33],[2,2],[2,-5],[10,-11],[-4,-9],[0,-7],[-4,-3],[-8,-11],[-7,0],[-3,-9],[10,-5],[0,-7],[-211,5]],[[2045,3303],[-4,17],[-25,83],[-45,-5],[-3,11],[-25,-3],[-22,79],[-43,-5],[55,59],[10,11],[-161,24],[-300,41],[-190,27],[96,37],[-129,192],[-124,184],[-373,-142],[-11,240],[-52,183],[-3,9],[-19,-2],[-47,197],[106,11],[-132,572]],[[6175,3022],[2,2],[0,4],[1,4],[2,11],[1,4],[0,1],[16,26],[1,2],[2,2],[0,1],[0,4],[-2,9],[-1,8],[0,1],[7,25],[1,4],[9,5],[5,3],[2,0],[11,1],[7,-3],[8,-4],[4,-19],[1,-3],[1,-6],[7,-15],[22,-51],[14,-32],[2,-5],[3,-7],[0,-1],[-26,-14],[-4,2],[-6,2],[-4,2],[-48,19],[-15,-4],[-6,-1],[-23,17],[6,6]],[[6878,2863],[9,10],[1,1],[1,-1],[14,-1],[37,-5],[1,-2],[6,-9],[0,-1],[1,-2],[-3,-4],[-3,1],[-18,3],[-7,0],[-17,-2],[-4,-2],[-10,-4],[-8,-4],[-3,-9],[0,-2],[2,-12],[0,-4],[-20,-9],[-4,0],[-39,-3],[-5,2],[-1,0],[-12,5],[-2,2],[-2,3],[-2,3],[1,12],[1,2],[2,22],[1,2],[0,2],[1,0],[6,1],[23,3],[8,-2],[2,-1],[10,-3],[18,0],[13,5],[2,3]],[[6218,2508],[-1,0],[-6,2],[-2,0],[-2,10],[-2,12],[7,10],[8,13],[2,3],[1,1],[2,0],[4,3],[4,1],[6,-2],[3,-1],[9,-3],[2,-2],[4,-4],[3,-3],[2,-2],[5,-6],[1,-3],[2,-9],[1,-3],[-28,-23],[-12,3],[-13,3]],[[6425,2546],[-25,-7],[-1,0],[-2,1],[-1,1],[-1,1],[-4,3],[-6,6],[-1,0],[-10,9],[0,1],[1,0],[1,6],[1,10],[-22,27],[-56,5],[-12,-3],[-9,1],[-18,0],[-2,0],[-13,13],[2,11],[1,6],[13,5],[19,16],[2,2],[1,1],[19,16],[10,8],[28,10],[9,4],[14,4],[5,0],[33,-4],[30,6],[2,0],[5,-2],[14,-6],[18,-22],[2,-2],[35,-30],[5,-3],[6,-6],[5,-4],[5,-5],[-21,-24],[-7,-8],[-4,-2],[-20,-13],[-46,-29],[-5,-3]],[[6593,2559],[6,3],[4,2],[3,1],[8,0],[5,0],[2,0],[18,-18],[0,-1],[1,-1],[2,-1],[18,-18],[-1,-6],[-17,-14],[-2,0],[-64,0],[-7,6],[-15,14],[-2,1],[-3,3],[0,3],[0,1],[3,5],[23,17],[18,3]],[[6358,2854],[-9,-5],[-2,0],[-49,25],[-14,7],[-13,30],[3,-2],[53,-33],[33,-21],[-2,-1]],[[5685,2968],[4,-1],[52,-22],[7,-3],[28,-12],[11,-4],[10,-4],[10,-5],[2,0],[-2,-3],[-1,-1],[-3,-5],[-1,-2],[-6,-8],[-1,-2],[-1,-1],[-7,-1],[-33,-6],[-5,-1],[-4,3],[-25,16],[-2,2],[-18,11],[-10,7],[-19,15],[-7,6],[-4,3],[-6,5],[19,18],[12,-5]],[[5566,2733],[-17,1],[-25,10],[-3,1],[-1,1],[-18,8],[-15,3],[-18,6],[-11,0],[-5,0],[-1,2],[-11,12],[-1,1],[-7,8],[-4,21],[15,10],[14,4],[5,0],[4,-1],[12,-1],[65,-9],[54,-33],[0,-10],[1,-8],[0,-3],[-20,-18],[-6,-5],[-7,0]],[[7121,3122],[-2,-2],[-18,17],[0,2],[0,6],[1,10],[33,33],[-3,18],[-3,4],[-2,2],[-6,7],[-8,10],[1,25],[3,4],[1,1],[2,2],[14,22],[1,2],[7,-3],[4,-2],[8,-4],[0,-1],[1,-4],[0,-3],[1,-1],[8,-45],[4,-19],[1,-6],[-2,-10],[-11,-35],[-2,-6],[-22,-17],[-4,-2],[-7,-5]],[[6414,3004],[-14,-20],[-23,-34],[-2,-1],[-11,-3],[-4,-1],[0,2],[0,4],[-1,16],[0,11],[-1,20],[-3,48],[0,2],[2,2],[14,26],[1,1],[7,12],[25,11],[25,11],[3,1],[6,2],[2,1],[13,-36],[0,-1],[-2,-5],[-29,-57],[-1,-1],[-4,-7],[-1,-1],[-2,-3]],[[5534,3331],[2,14],[2,21],[5,15],[0,2],[0,5],[-4,17],[-9,22],[-13,29],[-1,40],[-4,8],[-2,8],[1,6],[9,12],[9,12],[0,5],[-1,2],[-4,2],[-15,2],[-5,2],[-10,7],[-6,7],[-9,22],[-9,15],[-10,12],[-8,8],[-11,8],[-18,9],[-9,8],[-4,9],[1,15],[3,4],[21,23],[7,13],[4,14],[2,4],[14,16],[9,13],[24,11],[1,4],[-5,10],[-3,9],[-2,9]],[[5486,3805],[44,11],[2,-4],[6,2],[4,-5],[16,2],[3,-18],[10,0],[35,-6],[-13,-25],[34,-6],[4,1],[29,-4],[34,66],[7,14],[15,8],[17,8],[55,41],[106,-41],[55,62],[0,1],[19,21],[150,17],[63,8],[202,24],[-24,86],[-44,154],[-12,41],[-33,122],[-23,82],[303,37],[-51,191],[55,7],[251,31],[-60,201],[-20,70],[297,35],[304,34]],[[7326,5073],[50,-159],[1,-1],[126,-502],[-298,-36],[40,-149],[15,-50],[10,-32],[51,-166],[55,-194],[45,5],[54,-188],[-57,-7],[61,-189],[1,-1],[0,-3],[6,-2],[7,-3],[11,-2],[11,-4],[3,-12],[-2,-3],[9,-5],[-5,-25],[-2,-2],[-13,-4],[-2,-4],[1,-5],[7,-13],[1,-6],[2,-4],[9,-10],[5,-5],[4,-14],[0,-16],[6,-10],[6,-18],[3,-6],[12,-15],[4,-7]],[[7563,3206],[-11,-6],[0,-27],[0,-3],[-9,-6],[-33,-21],[-16,0],[-9,10],[-4,3],[-5,6],[-2,2],[-8,8],[-8,15],[-13,6],[-12,-4],[-1,-2],[-6,-7],[-9,-9],[-3,-4],[-2,-2],[14,-15],[-11,-14],[-19,-26],[-2,-3],[-5,-6],[-9,-13],[-3,-4],[-7,0],[-7,1],[-11,-7],[-1,-15],[4,-17],[-1,-1],[-5,-11],[-3,-5],[-6,-12],[-27,3],[-12,7],[-4,1],[0,1],[-22,27],[-1,16],[0,1],[-3,39],[-20,7],[-6,-6],[-3,-4],[0,-1],[-8,-1],[-2,3],[-24,29],[-20,36],[0,4],[-1,18],[0,8],[0,15],[-5,9],[-2,4],[0,1],[-2,3],[-1,4],[-7,33],[0,7],[0,1],[0,16],[0,1],[1,6],[10,18],[-6,16],[-14,9],[-22,2],[-27,4],[-18,2],[-2,-1],[-15,-5],[-3,-1],[-8,-4],[0,-4],[-1,-6],[-2,-1],[-9,-2],[-2,-1],[-2,-1],[-3,-1],[-1,0],[-11,0],[-3,1],[-26,1],[-13,1],[-4,0],[2,2],[0,1],[10,12],[-1,14],[-5,6],[-50,11],[-3,0],[-24,-12],[-1,-1],[-2,-4],[-5,-11],[4,-21],[2,-11],[1,-3],[-12,-1],[-37,16],[-19,28],[-17,1],[-6,0],[-4,-7],[-10,-19],[-1,-2],[-5,-20],[0,-1],[-1,-5],[-5,-4],[-20,-15],[-42,-4],[-1,-11],[-1,-13],[0,-2],[3,-3],[1,-1],[1,-1],[2,-2],[3,-4],[2,1],[22,6],[40,10],[28,-9],[4,-1],[19,-6],[7,-7],[1,-12],[1,-9],[-12,-5],[-1,-1],[-2,0],[0,-1],[0,-6],[3,-2],[2,-2],[3,-2],[39,-25],[1,-1],[35,-22],[1,0],[2,1],[11,4],[6,0],[2,0],[7,-1],[1,-1],[3,-2],[5,-4],[3,-3],[1,-1],[3,-2],[6,-9],[3,-3],[21,-27],[1,-1],[20,-50],[3,-6],[2,-33],[0,-1],[0,-1],[-35,-38],[-9,-9],[-11,-5],[-15,-6],[-7,-3],[-1,0],[-21,-9],[-20,-8],[-25,-10],[-4,0],[-20,1],[-3,0],[-7,0],[-4,0],[-26,0],[-10,0],[-7,0],[-4,0],[-16,0],[-11,-3],[-11,-4],[-13,-4],[-6,-5],[-7,-6],[-4,-3],[-4,-3],[-1,-22],[2,-7],[1,-1],[2,-1],[3,-1],[0,-1],[3,-8],[2,-5],[3,-8],[2,-8],[1,-2],[-5,-4],[-5,-4],[-1,0],[-13,-11],[-7,-5],[-12,-9],[-5,-4],[-3,-3],[-3,-2],[-11,-8],[-1,0],[-6,-1],[-4,0],[-1,0],[-21,-2],[-20,-2],[-8,15],[-3,0],[-37,13],[-7,3],[-7,2],[-5,6],[-3,3],[-3,3],[-5,3],[-15,7],[-9,0],[-9,-1],[-10,0],[-28,11],[-12,14],[-29,32],[-4,4],[-4,22],[-10,21],[-1,3],[-12,8],[0,1],[0,8],[0,7],[0,9],[0,6],[3,1],[23,11],[6,3],[6,3],[5,2],[2,1],[1,1],[1,1],[6,6],[-1,4],[-1,4],[-17,10],[-10,5],[-1,0],[0,3],[0,1],[11,16],[3,5],[5,7],[3,4],[4,6],[2,3],[1,0],[8,1],[13,9],[8,6],[2,2],[3,12],[-3,6],[-1,4],[-1,1],[-1,2],[0,2],[5,2],[18,8],[1,1],[5,2],[2,1],[11,5],[3,1],[7,3],[21,9],[10,-4],[8,2],[5,6],[-2,23],[-5,7],[-7,10],[-17,26],[-3,4],[-2,1],[-8,7],[-6,6],[-21,2],[-8,-8],[-3,-13],[0,-3],[-1,-4],[0,-1],[-1,-1],[-20,-15],[-4,-3],[-25,-20],[-8,-6],[-13,-3],[-14,1],[-15,10],[3,56],[7,28],[-23,20],[-9,1],[-12,2],[-17,-4],[-12,-9],[-9,-15],[6,-29],[4,-17],[0,-1],[2,-8],[-11,-27],[-2,-4],[0,-13],[0,-3],[7,-11],[0,-1],[0,-4],[0,-12],[-12,-3],[-3,0],[-3,1],[-23,1],[-13,23],[2,4],[4,14],[1,2],[2,2],[5,4],[11,8],[1,1],[-13,44],[-5,20],[-9,2],[-4,2],[-22,-11],[-3,-9],[-9,-24],[0,-1],[-8,-3],[-3,-2],[-3,-1],[-22,4],[-19,-16],[-18,-16],[-7,-2],[-4,-1],[-8,2],[-7,2],[-35,9],[-14,-2],[-7,-5],[-3,-3],[-3,-9],[0,-1],[-1,0],[2,-8],[1,-4],[1,-9],[1,0],[0,-1],[2,-4],[4,-7],[4,-7],[3,-5],[13,-4],[3,-1],[6,-1],[4,-13],[5,-16],[2,-6],[0,-2],[-3,-3],[0,-1],[-5,-5],[-8,-7],[-4,-4],[-19,-25],[-2,-2],[-2,-2],[0,-1],[-2,-7],[-1,-6],[-4,-13],[0,-2],[-2,-6],[2,-9],[0,-1],[3,-6],[0,-1],[1,-2],[1,-2],[5,-4],[5,-5],[9,-7],[43,-2],[1,0],[18,4],[8,-15],[-12,-20],[1,-1],[8,-21],[15,-17],[7,-8],[-1,-7],[0,-4],[-24,-24],[1,-3],[1,-5],[2,-10],[5,-6],[6,-6],[-4,-18],[0,-1],[-21,4],[-2,0],[-1,1],[-26,11],[-12,4],[-1,4],[0,1],[-27,21],[-15,6],[-5,2],[-5,2],[-3,2],[-5,4],[-16,10],[-2,2],[-1,0],[-1,1],[-8,5],[-10,7],[-1,1],[-7,4],[-9,6],[-4,3],[-6,4],[-1,0],[-3,1],[-18,1],[-8,0],[-1,0],[-8,4],[-14,6],[-3,1],[-3,9],[-2,1],[-4,3],[-2,0],[-17,4],[-9,2],[-32,8],[-4,1],[-40,9],[-24,5],[-2,1],[-23,11],[-8,4],[-58,28],[-13,6],[-16,14],[-1,1],[-28,5],[-4,1],[-2,0],[-11,-1],[-26,-2],[-1,-1],[-5,-3],[-4,-2],[-2,-3],[-9,-9],[0,-1],[-1,-1],[-4,-2],[-4,-2],[-44,-22],[-2,-1],[-2,-1],[-1,-1],[-17,2],[-11,2],[-19,2],[-13,2],[-18,2],[-1,2],[-2,8],[0,1],[7,39],[3,9],[1,3],[1,3],[0,3],[5,16],[9,7],[2,6],[2,7],[2,4],[1,4],[-1,1],[-9,27],[-1,15],[-3,30],[-3,27],[0,4],[13,35],[2,6],[1,2],[1,0],[11,5],[21,10],[3,4],[20,34],[6,9],[9,15],[2,12],[3,12],[0,1],[-30,-6]],[[6328,2725],[-35,6],[-5,1],[-2,3],[-5,12],[0,2],[2,4],[0,2],[3,10],[6,20],[0,1],[5,4],[4,-1],[5,0],[16,0],[4,-10],[-1,-1],[-9,-8],[9,-5],[21,-11],[3,-5],[13,-19],[-1,-5],[-7,-3],[-5,-1],[-21,4]],[[6657,2709],[-2,-1],[-5,-14],[-4,-12],[-7,-19],[-9,-3],[-1,0],[-3,-1],[-4,-1],[-3,0],[-6,2],[-54,24],[-16,7],[1,1],[17,17],[1,1],[2,2],[3,1],[11,7],[5,1],[4,1],[13,2],[19,6],[27,9],[7,3],[22,-3],[2,-2],[1,0],[17,-11],[3,-7],[-9,-1],[-1,1],[-5,5],[-3,-2],[-13,-7],[-1,0],[-1,-1],[-8,-5]],[[5839,2616],[-1,-8],[-1,-8],[0,-2],[-2,-9],[-2,-1],[-6,-2],[-11,1],[-6,1],[-1,2],[-10,18],[-14,14],[-6,4],[-7,3],[-8,4],[-7,0],[-11,1],[-3,0],[-8,3],[-1,1],[-7,5],[-6,8],[-1,2],[-1,1],[-2,3],[0,1],[1,11],[2,13],[0,5],[0,1],[1,2],[5,9],[4,7],[2,28],[-5,6],[-2,2],[-2,3],[-2,2],[-6,6],[0,3],[-4,14],[0,8],[8,9],[2,3],[2,0],[2,0],[13,0],[11,5],[10,4],[6,3],[6,13],[10,20],[33,29],[1,4],[6,12],[0,11],[0,2],[0,1],[-5,6],[-3,3],[1,0],[2,0],[1,0],[6,0],[2,1],[1,0],[1,-1],[14,-6],[2,-1],[2,-1],[19,-15],[2,-1],[4,-2],[19,-6],[42,-14],[10,-4],[10,-3],[6,-5],[2,-2],[19,-16],[2,-1],[6,-14],[5,-10],[3,-8],[3,-2],[28,-18],[4,-2],[25,-16],[34,-27],[2,-2],[5,-3],[3,-13],[-11,-14],[-25,-4],[-1,1],[-6,1],[-7,3],[-10,3],[-4,2],[-24,8],[-2,1],[-23,24],[-2,2],[-6,5],[-4,-4],[-6,-4],[-9,-7],[-4,-3],[-6,-5],[-1,-2],[-1,-4],[5,-4],[1,-1],[2,-2],[7,-5],[3,-6],[-1,-7],[0,-1],[0,-4],[-3,-3],[-3,-3],[-23,-20],[-24,-22],[-2,-1],[-4,-4],[-22,-9],[-40,-4],[-3,0],[0,-2]],[[3900,3825],[-13,-1],[0,-5],[2,-15],[2,-15],[79,-9],[-6,-10],[-2,-9],[-5,-5],[-7,3],[-9,-1],[-4,-2],[-1,-7],[-6,-3],[-3,-5],[-1,-3],[3,-6],[-4,-6],[2,-3],[163,-15],[-9,-30],[-1,-4],[-30,-103],[-17,-62],[59,-8],[48,-6],[-26,-91],[-4,-17],[-27,-88],[-120,15],[-76,-139],[-71,-130]],[[3816,3045],[-36,-139],[-10,-6],[-4,-3],[-3,-3],[-15,-7],[-1,-4],[0,-7],[-7,-5],[-9,-3],[-1,-2],[-11,-1],[-2,-3],[-121,20],[-89,16],[-39,5],[-3,-10],[-33,-106],[1,-16],[10,-112],[9,-100],[1,-6],[-24,3],[-222,34]],[[3207,2590],[-1,12],[-3,8],[-9,11],[-115,17],[-56,9],[-50,7],[-27,-13],[-9,-10],[-7,-4],[-5,-1],[-8,-4],[-3,-4],[-11,-15],[-11,-19],[-13,-25],[-1,-3],[1,-12],[-6,-13],[-5,-4],[2,-7],[-261,37]],[[2791,3642],[135,17],[8,1],[43,6],[63,-30],[6,-2],[6,1],[-1,-7],[5,-1],[0,-2],[-4,-4],[13,-8],[-4,-37],[62,-8],[14,37],[26,32],[78,-13],[5,-10],[72,-10],[37,-5],[55,-8],[21,-3],[94,-13],[27,-4],[15,-2],[6,-1],[3,-1],[3,3],[15,6],[10,2],[7,4],[3,7],[2,6],[-2,7],[-5,6],[-2,14],[2,7],[5,7],[20,24],[6,10],[0,8],[-6,7],[-10,5],[-4,4],[-11,12],[-12,7],[-5,4],[-16,15],[-3,2],[-15,4],[-7,4],[-6,7],[-5,10],[-4,5],[-12,11],[-3,4],[-3,10],[-1,17],[-5,10],[-1,4],[-1,18],[0,4],[71,10],[291,34],[31,-4],[-7,-21],[14,-2],[-10,-34]],[[4754,2052],[3,0],[-1,-6],[-2,-15],[-1,-6],[-3,-28],[-3,-2],[-3,-3],[-3,-2],[-5,-5],[-10,-8],[-6,-5],[-4,-3],[-1,-1],[0,1],[1,1],[0,2],[2,6],[2,6],[1,6],[1,3],[4,15],[3,10],[1,0],[8,31],[7,1],[4,1],[5,1]],[[4287,2013],[11,-6],[0,-6],[0,-3],[1,-5],[0,-8],[-10,-19],[-14,-7],[-1,0],[-6,-4],[-2,4],[-1,1],[-5,9],[1,0],[0,1],[9,41],[2,1],[10,3],[5,-2]],[[5882,2297],[-1,-8],[-1,-1],[-1,0],[-8,0],[-1,0],[0,1],[-7,26],[0,1],[0,4],[0,1],[0,1],[0,8],[7,4],[5,12],[1,1],[0,1],[8,17],[0,1],[1,1],[0,1],[0,1],[-3,17],[-2,6],[0,3],[-4,17],[0,1],[-10,21],[-3,7],[-1,3],[-3,5],[1,0],[5,2],[9,3],[67,22],[6,11],[1,0],[1,1],[2,1],[3,1],[1,1],[10,4],[1,0],[17,-4],[2,0],[0,-1],[14,-15],[1,0],[1,-2],[5,-3],[28,-22],[8,0],[4,-9],[1,-2],[-9,-20],[-1,-1],[-1,0],[-1,-2],[-3,-2],[-1,-1],[0,-1],[-2,0],[-1,0],[-22,0],[-22,-64],[-1,-2],[0,-2],[-1,-2],[-1,-4],[0,-2],[1,-14],[0,-1],[0,-9],[-2,-2],[-6,-4],[-4,-2],[0,-1],[0,1],[-1,0],[0,1],[-5,4],[-33,12],[-7,2],[-1,1],[-7,-3],[-10,-3],[-4,-1],[-6,-2],[-1,-1],[-1,0],[-2,-2],[-8,-7],[-1,-1],[-1,-5]],[[5338,1912],[-12,-15],[-1,-1],[-9,-11],[0,-1],[-1,0],[0,-1],[-9,-1],[-16,-1],[0,-1],[-1,0],[-2,0],[-2,2],[12,20],[1,2],[0,1],[0,1],[0,1],[-1,6],[-1,12],[0,6],[-1,2],[-6,9],[-2,2],[-4,-1],[-5,0],[-5,-1],[-9,2],[-1,1],[13,42],[1,0],[22,11],[4,1],[5,3],[1,-1],[1,-1],[6,-7],[2,-2],[3,-5],[2,-1],[2,-3],[6,-7],[-1,0],[-1,-8],[-4,-25],[7,-12],[1,-2],[6,-11],[0,-1],[1,-1],[-2,-3]],[[4244,2161],[-4,-4],[-20,-1],[-1,-3],[-5,-9],[1,-5],[2,-7],[-4,-10],[-1,-3],[0,-1],[-1,-1],[0,-1],[-1,-3],[-2,0],[-17,-6],[-1,0],[-32,6],[-1,0],[-3,1],[-3,0],[-3,1],[-6,12],[7,9],[5,7],[4,6],[3,3],[7,8],[9,10],[1,1],[1,1],[1,0],[2,2],[19,13],[1,0],[1,1],[2,2],[3,2],[1,0],[18,7],[6,2],[21,-19],[1,-1],[0,-12],[-11,-8]],[[4899,2313],[26,-2],[1,0],[1,-2],[5,-10],[0,-1],[2,-4],[0,-1],[1,-1],[-3,-2],[-6,-5],[-6,-8],[-1,-1],[-1,0],[0,-1],[-4,-4],[-5,-4],[-1,-1],[-3,-1],[-19,-3],[-13,-16],[-8,-9],[-1,-1],[-3,-4],[-7,-8],[-2,-2],[-2,1],[-34,10],[-1,1],[-2,0],[-3,2],[-2,1],[-1,1],[2,3],[4,3],[1,1],[7,2],[4,2],[6,2],[12,3],[2,1],[9,3],[1,0],[1,1],[20,11],[15,9],[0,1],[1,1],[7,6],[0,1],[0,1],[0,2],[1,2],[0,2],[0,2],[-9,5],[0,1],[-1,-1],[-5,-1],[-5,-2],[-1,0],[-11,-3],[0,2],[-1,3],[0,6],[0,1],[22,5],[2,0],[8,0]],[[4133,2201],[21,80],[0,2],[7,25],[6,-4],[8,0],[4,1],[5,7],[7,2],[7,6],[7,1],[1,0],[1,-2],[3,-2],[0,-5],[2,-1],[4,-1],[0,-1],[7,-4],[0,-5],[3,0],[6,-10],[3,0],[9,5],[4,-2],[3,3],[-6,2],[4,3],[0,6],[-2,3],[3,3],[0,6],[5,9],[7,2],[-3,2],[3,4],[7,3],[2,11],[-5,4],[4,5],[0,4],[4,3],[8,2],[5,5],[5,7],[10,-1],[6,5],[7,-1],[4,1],[1,3],[-3,4],[5,3],[0,4],[-6,-1],[-2,3],[6,11],[38,-14],[0,2],[0,3],[1,22],[-53,71],[-6,-6],[-2,3],[-10,1],[9,43],[9,40],[-43,89],[-39,82],[-83,-9],[-82,12],[6,18],[-71,17],[-40,80],[21,49],[-25,66],[34,23],[50,-7],[16,15]],[[4050,3011],[12,11],[-10,8],[17,15],[12,-6],[6,6],[116,-78],[188,126],[47,-32],[12,-7],[137,-95],[41,-27],[112,-78],[7,-4],[60,3],[130,6],[31,-22],[4,-2]],[[4972,2835],[-2,0],[0,-1],[-1,-1],[-22,-28],[-3,-4],[-2,-4],[-3,-7],[-1,-1],[-1,-3],[-2,-4],[1,-1],[0,-3],[0,-1],[1,-17],[-11,-22],[-4,-8],[-1,-2],[-3,-7],[-2,-4],[-1,-3],[-1,-7],[-1,-8],[-2,-19],[-1,-8],[-1,-10],[-13,-11],[-3,-2],[-7,0],[-28,-1],[-5,0],[0,-1],[-4,-7],[-1,-1],[-1,-4],[-1,-3],[-1,-3],[0,-2],[2,-17],[1,-9],[1,-1],[1,-5],[3,-11],[2,-4],[2,-7],[0,-1],[1,-2],[-2,-4],[-4,-11],[-4,-10],[-1,-3],[-1,0],[-2,-1],[-4,-2],[-7,-5],[-4,-2],[-29,-17],[-3,-2],[0,-1],[0,-1],[0,-3],[0,-11],[0,-2],[0,-1],[-1,-5],[0,-1],[2,-1],[18,-15],[2,-1],[3,0],[4,-1],[2,0],[12,5],[5,2],[11,4],[1,1],[4,1],[45,9],[13,-1],[1,0],[1,0],[14,-5],[1,-1],[1,0],[13,-13],[0,-1],[4,-3],[0,-1],[4,-4],[6,-6],[0,-1],[1,0],[-36,-32],[-5,-5],[-4,1],[0,5],[-1,5],[0,1],[-13,4],[-7,0],[-2,0],[-7,0],[-3,0],[-1,1],[-1,-1],[-7,-5],[-8,-7],[-6,-5],[-5,-5],[-10,-10],[2,-3],[0,-1],[3,-3],[9,-14],[-1,0],[-1,-1],[-4,-3],[-10,-5],[-1,-1],[-32,-5],[-2,-2],[-2,0],[-5,-3],[-8,-4],[-5,-2],[-1,-1],[-6,-3],[-1,0],[-9,-5],[-7,-3],[-1,-1],[-7,-5],[-10,-6],[-5,-4],[-7,-5],[-1,0],[-1,-1],[0,-1],[-4,-3],[4,-9],[1,-4],[3,-7],[0,-1],[1,-1],[-1,0],[-2,-1],[-7,-2],[-9,-3],[-10,-4],[-29,-9],[-1,-1],[-3,0],[-28,1],[-2,0],[-13,-5],[-3,-1],[-3,-1],[-2,-2],[-5,-3],[-7,-6],[-11,-9],[-13,-10],[-3,-3],[-16,-12],[-9,-18],[4,-8],[3,-5],[2,-4],[-6,-21],[-17,-19],[-1,0],[-16,-9],[-4,-2],[-5,-3],[-9,-2],[-28,-4],[-3,0],[-8,-2],[-8,-1],[-13,-14],[-1,0],[-3,-2],[-40,-20],[-32,-3],[-2,2],[-3,1],[-5,4],[-1,10],[8,11],[2,3],[2,4],[1,3],[5,8],[1,4],[2,3],[1,3],[5,9],[0,1],[-7,6],[-11,11],[-13,14],[-5,1],[-4,1],[-11,-2],[-9,-6],[-16,-11],[-1,-1],[-3,-1],[-15,-11],[-2,-2],[-1,0],[-1,0],[-4,0],[-3,0],[-3,0],[-4,-1],[-13,5],[2,1],[0,1],[8,5],[1,1],[4,3],[2,2],[9,6],[3,3],[1,0],[0,1],[1,0],[4,3],[0,1],[2,11],[-9,4],[-11,4],[-12,5],[-7,3],[-3,2],[-9,3],[-10,4],[-5,2],[-2,0],[-4,0],[-4,0],[-19,1],[-18,0],[-2,0],[-5,-3],[-7,-4],[-5,-3],[-7,-5],[-12,-7],[-7,0],[-14,0]],[[5515,2530],[9,-11],[5,-8],[4,-5],[2,-3],[4,-5],[1,-1],[7,-10],[6,-5],[2,-2],[9,-8],[1,-1],[4,-3],[10,-7],[4,-2],[5,-3],[3,-1],[0,-1],[4,-14],[1,-4],[0,-1],[-22,-26],[0,-1],[-1,0],[-11,-7],[-2,-2],[-1,0],[-12,1],[-9,-10],[-9,-9],[-3,-2],[0,-1],[-14,-14],[-2,-2],[-2,-2],[-1,0],[0,-1],[-1,0],[-26,-8],[-22,0],[-1,0],[-1,0],[-9,-1],[-43,-9],[-25,-4],[-5,-1],[-1,-1],[-28,1],[-2,1],[-35,15],[-1,1],[-4,13],[0,1],[-11,33],[-1,4],[0,1],[-4,10],[-1,3],[-3,11],[-13,23],[-1,1],[0,1],[-4,2],[-15,14],[3,9],[4,12],[2,7],[0,1],[2,6],[1,2],[0,1],[0,1],[1,4],[1,1],[0,1],[-3,10],[-1,0],[-8,0],[-7,0],[-30,0],[-9,0],[-2,0],[-8,-1],[-2,0],[-16,0],[-3,7],[13,23],[1,2],[8,14],[44,40],[18,7],[11,4],[24,9],[7,2],[9,4],[2,0],[13,9],[1,1],[2,1],[6,4],[2,1],[19,9],[15,7],[10,6],[2,0],[24,12],[4,2],[1,0],[11,1],[24,4],[2,0],[9,1],[2,1],[2,0],[2,0],[1,0],[4,-4],[5,-4],[5,-5],[-6,-3],[-1,-1],[-1,-9],[-1,-2],[2,-5],[6,-14],[0,-2],[1,-1],[0,-1],[0,-1],[2,-4],[18,-10],[17,-9],[1,0],[25,-13],[2,-2],[13,-4],[2,0],[5,1],[3,1],[1,1],[1,-1],[1,-1],[1,-2],[1,-1],[-8,-4],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-4,-2],[-10,-5],[-25,2],[-1,0],[-11,-1],[-1,0],[-2,0],[-1,0],[-7,0],[-2,0],[-2,-1],[-9,0],[-2,0],[-1,-1],[-3,-2],[0,-2],[-2,-10],[2,-13],[0,-3],[0,-2],[10,-14],[1,0],[7,0],[1,0],[1,1],[2,0],[9,0],[1,-2],[5,-5],[1,-2]],[[4284,1773],[10,1],[1,1],[1,0],[2,1],[0,1],[1,1],[6,-1],[1,0],[2,0],[2,-2],[4,-4],[0,-4],[0,-1],[-1,-3],[-15,-13],[-1,0],[-1,-1],[-13,-11],[-2,-1],[-3,0],[-12,-2],[-5,0],[-1,2],[-1,2],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,2],[1,3],[3,6],[0,1],[0,1],[7,6],[5,4],[6,6],[2,0]],[[4007,2087],[-26,-9],[-6,0],[-3,15],[1,2],[3,12],[1,2],[5,20],[5,21],[4,13],[1,4],[9,-2],[14,-15],[2,-3],[6,-5],[-1,0],[-6,-9],[-2,-1],[-8,-11],[11,-14],[1,-2],[2,-9],[-1,-1],[-2,-4],[-1,0],[-9,-4]],[[3353,1889],[0,11],[3,11],[4,6],[10,10],[3,4],[2,7],[-1,7],[-3,9],[-1,2],[-3,5],[-6,-1],[-14,-3],[-8,-2],[-17,-6],[-10,-3],[-8,0],[-11,6],[-3,5],[-2,10],[-6,6],[-6,9],[-2,7],[4,12],[-1,3],[-7,6],[-7,10],[-4,7],[-10,8],[-7,6],[12,10],[10,10],[8,12],[12,8],[15,5],[4,3],[14,12],[13,16],[-33,10],[-9,4],[-1,1],[6,14],[1,24],[-2,5],[2,4],[2,10],[2,1],[1,2],[3,4],[-5,5],[1,6],[3,9],[4,5],[6,14],[7,12],[2,0],[0,4],[3,3],[0,3],[3,3],[3,6],[1,5],[12,10],[1,7],[5,6],[-112,16],[-8,1],[0,2],[-132,21],[-23,4],[0,1],[3,7],[13,6],[26,11],[11,7],[4,4],[2,7],[0,6],[8,18],[0,6],[-1,11],[0,2],[6,7],[3,6],[-3,4],[-8,5],[0,6],[4,6],[3,7],[-4,9],[2,4],[11,7],[10,12],[6,4],[3,6],[5,10],[6,9],[4,8],[0,7],[3,7],[10,12],[0,8],[5,16],[2,6]],[[3816,3045],[173,-25],[61,-9]],[[4133,2201],[-31,-1],[-4,3],[-16,11],[-4,2],[-1,1],[-42,12],[-1,0],[0,-1],[-2,-2],[-2,-4],[-1,-1],[-4,-6],[-21,-29],[-3,5],[-4,9],[-11,6],[-1,0],[-12,-6],[-14,-30],[-1,-2],[-4,-9],[-4,-9],[-1,-3],[-3,-12],[-1,-4],[0,-1],[0,-1],[-1,-2],[-1,-5],[0,-1],[0,-1],[0,-1],[-2,-5],[-10,-45],[-1,0],[-1,-5],[-2,-2],[-6,-5],[-29,-27],[-12,-10],[-8,-8],[-1,0],[0,-1],[-2,-6],[0,-4],[-2,-4],[-1,-7],[-1,-2],[-30,-51],[0,-1],[-1,0],[0,-1],[-6,-11],[-2,-2],[-2,-5],[-8,-4],[-2,-1],[-16,-8],[-2,-1],[0,1],[-3,9],[-1,3],[2,3],[4,10],[0,2],[1,2],[1,0],[-4,10],[0,3],[-1,1],[0,2],[-2,4],[0,2],[-2,4],[0,1],[-8,26],[-1,1],[-5,7],[-1,3],[-1,0],[0,1],[-3,4],[-5,2],[-10,2],[-7,2],[-3,1],[-11,3],[-10,3],[-1,0],[-12,-3],[-1,0],[-1,-1],[-2,-4],[0,-12],[3,-5],[1,-2],[2,-4],[1,0],[3,-7],[0,-1],[4,-6],[-1,-1],[-1,-3],[0,-1],[-1,-1],[-4,-11],[-1,-1],[0,-1],[-1,-1],[-4,-10],[-1,-3],[0,-1],[-1,-2],[-3,-6],[0,-1],[-1,-1],[-5,-1],[-2,0],[-6,-1],[-15,5],[-3,1],[-7,3],[-7,-1],[-3,0],[-7,-5],[-7,-42],[-3,-1],[-2,-1],[-6,-3],[-4,-1],[-5,-3],[-4,-2],[-1,0],[-37,-10],[-1,0],[-1,1],[-2,1],[-1,1],[1,0],[0,1],[0,2],[1,12],[1,8],[1,1],[1,0],[11,-1],[2,0],[10,8],[1,1],[4,3],[1,2],[6,39],[1,5],[-1,1],[-4,5],[-1,2],[-1,0],[0,1],[-1,1],[-5,7],[-15,-1],[-9,-1],[-4,-5],[-15,-22],[-2,-2],[0,-3],[0,-14],[-1,-2],[0,-1],[-3,-8],[-1,-2],[-1,-1],[-9,-7],[-4,-3],[-1,1],[-4,5],[-9,8],[-4,4],[-3,3],[-1,2],[1,10],[0,4],[-2,1],[-11,5],[-3,-2],[-8,-5],[-8,-5],[-3,-2],[-7,-4],[-5,-3],[-2,-1],[0,-1],[-1,-8],[-3,-14],[-4,-18],[0,-1],[0,-1],[4,-17],[0,-4],[1,-3],[1,-5],[-1,-3],[-4,-18],[0,-2],[-1,-5],[0,-1],[-28,0],[-13,15],[-13,14],[-3,4],[-6,7],[-6,7],[-8,9],[-1,1],[0,6],[0,3],[-9,5],[-2,1],[-2,1],[-4,2],[-11,1],[-2,0]],[[729,1865],[-8,-2],[-4,2],[-9,-3],[-7,-6],[-8,-2],[-1,-3],[3,-4],[-4,0],[-2,4],[-6,3],[-5,-3],[-4,1],[-3,3],[-8,0],[1,-4],[-4,-1],[-2,7],[-5,2],[-4,0],[-8,-4],[-5,-5],[-9,0],[-7,-1],[-4,4],[-11,2],[-17,0],[-4,-1],[-1,-4],[-6,0],[-11,-2],[-6,-4],[-7,1],[-15,-1],[2,4],[-2,2],[-7,1],[-2,-3],[-12,1],[-7,3],[-7,1],[-6,4],[-4,1],[-6,-2],[-5,-5],[-12,-3],[-10,-5],[-12,-4],[-17,-2],[-5,0],[-11,-2],[-4,-4],[-11,-5],[-6,-2],[-5,-3],[-3,-6],[-6,-3],[-5,-1],[-14,0],[-9,3],[-5,2],[-5,0],[-11,-3],[-12,-9],[-12,-4],[-8,1],[-10,6],[-6,-5],[-12,-2],[-5,3],[-11,12],[-10,4],[-15,-3]],[[230,1816],[0,1],[-2,104],[-5,105],[-1,22],[-1,45],[-4,97],[-5,90],[0,8],[-2,40],[-2,43],[-7,116],[0,1],[-2,38],[-16,301],[0,29],[0,1],[-2,32],[-4,64],[-4,87],[-5,68],[-1,15],[-5,83],[-8,130],[-6,59],[-9,130],[-10,217],[-14,181],[-2,42],[-4,50],[-13,150],[-12,114],[-8,77],[-10,133],[-2,21],[-3,11],[-25,310],[-8,82],[-10,147],[-18,131],[14,2],[12,3],[18,8],[17,6],[40,-2],[11,-3],[18,2],[21,4],[18,5],[13,5],[16,20],[0,1],[-6,7],[-15,7],[-4,19],[0,4],[5,5],[14,-4],[8,-4],[22,-12],[6,-4],[2,-4],[9,-5],[44,0],[40,5],[3,-7],[14,-16],[11,-9],[22,-4],[21,-10],[9,-5],[14,-35],[-4,-7],[-13,-13],[-2,-5],[-5,-12],[1,-1],[15,-10],[18,-12],[22,-24],[5,-12],[-5,-20],[4,-5],[10,-6],[19,-9],[16,-4],[52,-9],[30,12],[14,7],[-6,3],[-17,12],[-2,27],[1,15],[13,5],[5,4],[5,4],[11,13]],[[5486,3805],[-1,5],[-7,3],[-8,1],[-30,7],[-7,7],[4,8],[-3,10],[-60,-10],[-9,-2],[2,-6],[-10,-1],[-4,-1],[-60,-9],[-2,6],[-159,-25],[-90,-14],[-4,-1],[-31,-5],[-114,-17],[-66,-11],[-230,-34],[-52,191],[-149,-17]],[[4396,3890],[-48,192],[13,2],[-16,51],[-4,14],[-10,36],[-15,47],[-7,21],[-7,25],[-61,202],[-17,54],[-39,125],[-4,14]],[[4181,4673],[255,32],[44,6],[296,38],[305,41],[24,3],[283,35],[-59,183],[253,35],[-60,198],[-59,204],[-14,49],[-15,46],[-48,143],[-260,-33],[32,155],[1,96],[1,4],[0,26],[-20,53],[198,31],[121,19],[1,35],[11,1041],[4,107],[3,402]],[[7343,5937],[67,-193],[66,-193],[85,-253],[-22,-3],[3,-9],[6,-15],[7,-20],[50,-144],[-69,-9],[-75,-9],[-8,0],[-75,-8],[-52,-8]],[[4181,4673],[-349,-43],[11,-37],[-56,-7],[7,-21],[-255,-31],[-60,202],[-22,-3],[-67,211],[-11,30],[9,9],[-30,81],[-1,3],[-20,54],[-9,39],[19,2],[-70,193],[-121,363],[-1,2],[16,6],[-5,9],[2,10],[5,2],[6,-2],[14,2],[9,-1],[16,8],[4,0],[9,4],[2,2],[7,1],[3,4],[15,5],[14,5],[8,7],[-1,4],[5,6],[2,9],[7,7],[7,2],[7,5],[6,1],[-1,2],[5,13],[-2,7],[-9,4],[-4,7],[-4,4],[-1,4],[2,3],[0,6],[7,1],[0,5],[0,3],[13,4],[5,-2],[6,9],[6,3],[5,5],[0,12],[3,4],[-9,9],[-4,2],[1,6],[-4,5],[-8,0],[-8,5],[-8,0],[3,13],[2,5],[8,-1],[-1,7],[7,-2],[9,-6],[4,-5],[9,0],[10,-8],[6,-1],[7,9],[-4,3],[-12,7],[-8,6],[-9,1],[-19,7],[-14,1],[-11,3],[-6,-2],[-11,1],[-10,2],[7,-4],[-4,-3],[-6,-9],[-6,0],[-7,3],[-6,0],[-1,3],[11,8],[-4,2],[-1,6],[-7,2],[0,5],[7,6],[6,3],[-2,4],[3,6],[0,7],[5,3],[-4,1],[0,4],[-12,4],[-13,1],[-14,-4],[-6,1],[-7,6],[-12,0],[-20,7],[-4,5],[-4,0],[-7,5],[-7,1],[-7,5],[0,10],[-2,6],[-7,4],[-4,10],[1,9],[-19,10],[-10,0],[-6,4],[-3,3],[0,5],[-8,6],[-4,1],[6,0],[2,-2],[8,-4],[3,1],[-3,3],[4,3],[6,-2],[4,5],[7,-1],[9,3],[1,5],[-8,2],[-13,9],[-20,-1],[-3,1],[-7,6],[6,1],[-4,2],[-17,4],[-13,7],[-4,-3],[0,-2],[-4,-4],[-14,1],[9,1],[5,2],[8,8],[4,1],[2,3],[10,4],[11,0],[0,-3],[7,2],[18,5],[15,-6],[20,2],[-3,2],[2,4],[-6,1],[-2,5],[5,7],[-12,4],[5,0],[1,6],[-2,4],[2,4],[4,2],[-2,2],[4,3],[-2,2],[7,3],[2,-1],[11,2],[-4,6],[6,3],[-6,-1],[-1,6],[-8,-2],[0,4],[-4,3],[6,6],[4,0],[1,6],[-3,1],[-6,-2],[-5,2],[-3,-1],[-1,1],[-2,-2],[-3,0],[-5,3],[-9,-1],[-3,4],[10,-2],[3,1],[1,-3],[6,-1],[2,4],[9,-3],[2,3],[7,0],[7,-7],[-4,-1],[-6,-6],[2,-4],[4,0],[4,3],[2,-6],[5,-8],[5,-3],[1,-6],[14,-10],[7,-1],[-2,-4],[13,-1],[8,3],[5,-2],[8,0],[12,4],[6,-4],[0,-4],[4,2],[5,-2],[6,-9],[10,-2],[6,1],[4,2],[8,10],[7,4],[4,8],[-2,12],[-9,11],[-16,7],[1,2],[-6,5],[1,1],[11,1],[11,-1],[9,2],[4,-1],[1,7],[6,5],[2,6],[1,8],[3,7],[7,8],[6,10],[9,12],[-4,9],[-5,8],[0,8],[-6,7],[-4,7],[-5,2],[1,4],[-4,5],[-11,-1],[-3,2],[4,-1],[11,2],[11,-7],[6,1],[1,3],[9,6],[-1,3],[3,5],[1,6],[6,8],[-8,2],[-1,6],[6,9],[-8,2],[-4,4],[-3,8],[1,2],[-4,1],[-7,5],[-3,5],[-16,0],[-3,3],[4,9],[-3,2],[0,4],[-5,3],[-16,4],[-3,3],[3,2],[-9,2],[-2,7],[4,-3],[-1,-2],[9,-2],[2,-4],[8,3],[8,1],[3,-2],[4,4],[15,4],[9,1],[3,3],[8,2],[6,-1],[10,2],[9,-1],[-1,-12],[-8,-1],[-2,-2],[1,-5],[4,-7],[-2,-2],[5,-5],[0,-4],[6,-3],[-1,-6],[12,1],[-4,-7],[6,-3],[-1,-3],[6,-2],[-2,-8],[9,-3],[1,-3],[5,-2],[4,3],[5,-2],[9,3],[0,-3],[4,4],[2,10],[3,2],[-2,9],[5,-3],[4,-1],[7,3],[4,-1],[7,-3],[8,1],[6,-1],[0,4],[3,-1],[6,5],[14,-2],[1,2],[-89,267],[-109,-15],[-9,930],[31,0],[-4,401]],[[3353,1889],[-14,-3],[-5,-1],[-2,-2],[-2,-4],[-3,-3],[-2,-3],[-3,-3],[-2,-3],[-1,-2],[-7,-8],[0,-1],[-1,-2],[-1,-4],[-5,-14],[0,-3],[0,-2],[0,-1],[1,-3],[0,-8],[1,-2],[0,-1],[-3,-5],[-4,-7],[-3,-3],[-1,-1],[-2,-1],[-18,-17],[-5,-3],[-6,-5],[-4,-4],[-18,-16],[-9,-7],[-4,-4],[-10,-8],[-5,1],[-16,1],[-3,0],[-1,0],[-2,0],[-7,-1],[-10,0],[-12,-1],[-10,-1],[-1,-1],[-4,-3],[0,-6],[2,-2],[4,-3],[3,-4],[0,-5],[-11,-5],[-23,-8],[-28,-11],[-13,-5],[-58,-22],[-4,-1],[0,-1],[-1,0],[-1,-7],[-5,-23],[-1,-2],[0,-3],[-31,-4],[-6,2],[-3,1],[-2,13],[-3,18],[-2,12],[0,1],[5,16],[0,1],[1,1],[-8,18],[-23,4],[-1,1],[5,10],[0,1],[2,3],[0,1],[0,1],[1,2],[1,1],[2,7],[5,10],[-2,3],[-3,6],[0,1],[-2,3],[-9,19],[0,1],[-3,4],[-26,4],[-7,1],[-1,0],[-8,-2]],[[4396,3890],[-147,-17],[-39,79],[-11,-1],[-34,5],[-12,4],[-12,3],[-9,-1],[-16,0],[-12,-2],[-3,-4],[2,-6],[-3,-4],[-4,0],[-9,2],[-8,-2],[-2,-5],[2,-9],[6,-11],[1,-8],[-4,-3],[-7,-2],[-15,-6],[-6,-8],[-16,-11],[1,-6],[-3,-4],[-1,-6],[-4,-8],[3,-11],[-1,-5],[-123,-16],[-10,-2]],[[1285,5999],[1,0],[27,-2],[38,0],[15,7],[0,4],[1,1],[22,16],[32,17],[65,33],[44,6],[12,-1],[19,1],[20,6],[31,12],[6,3],[36,13],[24,20],[17,14],[-12,33],[-19,15],[-13,3],[-12,9],[-22,54],[-5,17],[0,2],[2,2],[22,5],[4,0],[5,-3],[6,-1],[5,1],[9,6],[-1,8],[-5,3],[4,10],[21,24],[18,12],[33,23],[59,39],[31,3],[8,2],[22,4],[27,8],[53,27],[52,35],[9,7],[13,27],[-1,8],[-9,26],[-2,1],[-6,4],[-4,-1],[-1,0],[0,9],[2,3],[24,17],[28,14],[2,4],[0,6],[-31,26],[-30,16],[-22,4],[-16,2],[-21,-5],[-56,-3],[-8,3],[-2,1],[0,1],[12,17],[5,19],[6,6],[15,6],[13,1],[20,13],[7,8],[-1,1],[-19,4],[-24,3],[-2,1],[-34,44],[0,1],[58,50],[34,23],[3,11],[1,6],[-2,2],[-13,5],[-7,-1],[-14,-4],[-33,1],[-6,3],[-4,4],[51,67],[12,10],[29,8],[15,-3],[30,-3],[4,2],[0,12],[-6,5],[0,4],[9,18],[18,24],[10,31],[4,10],[-6,6],[-63,43],[-11,6],[-6,1],[-11,6],[-31,24],[-5,13],[18,12],[32,29],[28,48],[5,9],[8,24],[2,18],[4,9],[11,18],[38,39],[44,24],[21,10],[6,33],[-3,5],[-6,6],[-4,21],[3,6],[39,37],[6,4],[34,19],[7,2],[25,4],[31,-5],[18,9],[19,14],[9,1],[5,5],[0,15],[5,6],[17,7],[19,4],[25,27],[-1,2],[1,13],[10,10],[17,3],[21,-1],[10,-2],[46,12],[2,2],[0,2],[72,314],[8,36]],[[5534,3331],[-32,-5],[-2,-1],[-25,-8],[-12,-3],[-9,-3],[-72,-39],[-5,-3],[-9,-7],[-12,-9],[-26,-18],[-15,5],[0,1],[-3,4],[-1,2],[-1,2],[-1,2],[-4,6],[-5,12],[2,4],[-10,9],[-2,2],[0,1],[-9,3],[-1,0],[-3,0],[-60,-9],[-1,0],[-4,-8],[0,-1],[-5,-9],[-1,-3],[-13,-7],[-11,-7],[-12,-7],[-27,-2],[-28,-2],[-32,-3],[-9,-11],[-11,-14],[16,-40],[0,-1],[3,-5],[10,-18],[1,0],[7,-3],[14,-6],[3,-1],[3,-1],[0,-1],[1,0],[12,-11],[2,-2],[2,-2],[6,-8],[9,-13],[6,-8],[8,-11],[0,-1],[-1,-7],[-2,-6],[0,-2],[-2,-7],[-3,-14],[-1,-8],[-6,-26],[-1,-3],[-5,-9],[0,-1],[-4,-7],[-1,-2],[-4,-4],[-5,-4],[-10,-8],[-4,-4],[-8,-6],[-3,-3],[-7,-5],[-1,-1],[-1,-1],[-3,-2],[-2,-2],[-6,-1],[-31,-2],[-22,-1],[-1,0],[-1,-14],[-2,-27],[0,-4],[0,-1],[-6,-8],[-3,-3],[-20,-27],[-3,-1],[-25,-17]],[[5169,2899],[10,7],[0,1],[5,5],[2,2],[0,1],[2,1],[3,4],[8,9],[12,14],[22,24],[3,4],[0,46],[0,11],[19,66],[8,13],[0,1],[11,16],[6,2],[3,1],[43,13],[8,2],[3,-1],[19,-9],[3,-1],[0,-1],[1,-2],[2,-3],[2,-5],[3,-5],[10,-20],[1,-2],[0,-1],[-9,-20],[0,-1],[-1,-1],[-16,-21],[-1,-1],[-27,-14],[-2,0],[-11,0],[-1,0],[-2,-1],[-3,-3],[-3,-2],[0,-1],[-2,-1],[-5,-15],[-4,-13],[6,-11],[13,-25],[0,-1],[1,-2],[2,-3],[-8,-13],[-1,0],[0,-1],[-19,-28],[-1,-1],[-9,-7],[-2,-2],[-1,0],[-9,-25],[0,-1],[-14,-38],[-1,-1],[-6,-18],[-2,-1],[-1,-1],[0,-1],[-3,-2],[-4,-4],[-11,-11],[-2,-2],[-4,-2],[-36,-21],[-7,-4],[-9,-3],[-1,0],[-4,-1],[-1,0],[1,0],[3,6],[2,3],[5,7],[1,2],[-20,37],[0,1],[-1,1],[-9,7],[-5,1],[-7,3],[-4,1],[-1,1],[-1,3],[0,1],[3,13],[1,2],[0,1],[28,29],[12,9],[4,3]],[[8668,3570],[-27,10],[-15,-7],[-3,-10],[10,-11],[41,-13],[21,-6],[2,-5],[-9,-3],[-12,-5],[-7,-3],[-3,0],[-15,0],[-1,0],[-8,0],[-9,-1],[-2,0],[-5,0],[-2,0],[-3,2],[-2,1],[-2,1],[-2,2],[-26,16],[-1,1],[-3,4],[-1,1],[-2,5],[-2,2],[-12,18],[0,4],[0,13],[0,8],[2,1],[4,1],[1,1],[1,0],[4,-1],[10,-3],[17,-7],[11,4],[6,19],[3,1],[7,3],[4,-2],[46,-18],[9,-6],[5,-3],[15,-10],[-1,-6],[-9,-4],[-1,0],[-22,3],[-8,2],[-3,0],[-1,1]],[[8630,3376],[-41,-37],[-3,-3],[-3,-2],[0,-1],[-4,2],[0,1],[-1,0],[-32,15],[-1,1],[0,1],[0,26],[-9,16],[-21,16],[1,3],[3,6],[2,3],[1,3],[12,2],[7,2],[9,-1],[7,0],[10,-1],[20,-2],[24,-2],[19,-14],[2,-4],[2,-3],[9,-16],[-1,0],[-12,-11]],[[7962,3380],[25,-32],[1,-1],[2,-3],[-1,0],[-5,-3],[-1,0],[0,-1],[-3,-1],[-10,-6],[-15,10],[-2,2],[-22,14],[-61,71],[-3,7],[-3,6],[-2,4],[-4,9],[-3,8],[4,6],[8,10],[3,4],[58,-66],[33,-36],[0,-1],[1,-1]],[[8399,3442],[55,-10],[1,-1],[1,0],[9,-4],[5,-2],[-6,-10],[-5,-7],[-6,-11],[-1,-3],[-2,-8],[0,-1],[0,-2],[-1,-1],[8,-4],[17,-10],[2,-1],[11,-9],[5,-4],[12,-10],[3,-3],[3,-2],[3,-3],[4,-3],[-15,-36],[-1,-1],[-4,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-4,-3],[-8,-1],[-1,0],[-2,0],[-1,0],[-2,0],[0,-1],[-3,0],[-12,-1],[-4,-1],[-1,0],[-9,17],[-1,1],[-1,2],[0,1],[-1,2],[-2,7],[-8,27],[-2,6],[-1,5],[-1,2],[0,1],[-1,1],[-4,15],[-1,2],[-2,7],[0,2],[-6,18],[0,1],[-6,3],[-4,0],[-3,0],[-3,0],[-8,0],[-11,5],[0,9],[-1,12],[0,1],[0,7],[0,1],[0,1],[5,3],[5,2],[10,-2]],[[7930,6027],[5,-5],[84,-1],[35,-22],[57,-10],[25,-1],[1,0],[4,6],[0,6],[-13,5],[-18,18],[-7,13],[-2,11],[12,0],[5,-2],[42,-20],[10,-13],[20,-31],[13,-21],[41,-43],[22,-14],[50,-25],[13,6],[-9,16],[11,3],[19,-7],[62,-33],[55,-9],[53,-17],[11,0],[1,5],[25,2],[27,-6],[39,-16],[1,-1],[46,-2],[21,10],[6,7],[-2,5],[-5,5],[3,5],[32,6],[51,2],[14,-5],[49,-42],[10,-11],[4,-15],[7,-49],[-11,-21],[-7,0],[-2,1],[-4,0],[-4,0],[-5,-12],[-2,-11],[1,-5],[7,-19],[28,-20],[10,-17],[0,-3],[-3,-1],[-8,7],[-4,2],[-4,0],[-2,-4],[-2,-2],[-3,-3],[-1,0],[-1,-1],[-4,1],[-49,7],[-3,1],[-26,7],[-3,0],[-10,-4],[-2,-1],[-6,-2],[-1,-2],[0,-3],[0,-1],[0,-6],[-13,-6],[-1,0],[-9,-3],[-6,-1],[-12,-4],[-4,-1],[-21,-4],[-3,-1],[-9,-3],[-2,-3],[2,-7],[8,-16],[13,-11],[18,-11],[11,-16],[1,-6],[-7,-5],[1,-9],[4,-8],[6,-16],[8,-22],[9,-14],[5,-4],[6,-3],[23,-13],[2,0],[25,-19],[44,-33],[3,-4],[3,-3],[21,-28],[-1,-3],[-6,-4],[-5,-1],[-8,0],[-7,-4],[-3,-2],[-7,-12],[1,-9],[4,-4],[8,-7],[2,-2],[-6,-15],[-1,-2],[-9,-15],[-1,-3],[-17,-12],[-2,-1],[-19,-10],[-7,-3],[-7,-4],[-1,-2],[1,-4],[10,-9],[0,-7],[-3,-5],[-17,-31],[-13,-7],[0,-7],[-1,-1],[-19,-5],[-13,-4],[-7,4],[-4,1],[-4,-1],[-2,-2],[-7,-18],[0,-3],[4,-5],[59,-78],[3,-3],[5,-2],[16,-2],[33,-31],[7,-10],[13,-28],[6,-24],[1,-13],[52,-31],[4,-20],[2,-8],[-2,-5],[0,-4],[2,-7],[30,-11],[4,-2],[17,-4],[64,-45],[9,-6],[19,-6],[11,-3],[1,0],[2,1],[24,13],[28,18],[31,12],[18,4],[5,3],[3,3],[1,9],[-6,4],[-12,4],[-2,9],[8,17],[8,4],[11,2],[-1,7],[-4,3],[-1,5],[4,9],[4,12],[2,2],[15,8],[30,-2],[4,-1],[19,-7],[1,0],[8,-5],[27,-10],[7,-6],[4,-13],[4,-3],[18,-5],[7,-7],[7,-4],[10,0],[47,17],[30,-12],[57,-3],[16,-4],[4,-2],[4,-2],[30,-32],[40,-33],[15,-16],[25,-28],[43,-82],[9,-15],[-34,-6],[-1,0],[-1,-1],[-1,0],[-22,-16],[-6,-4],[8,-5],[15,-9],[14,-8],[7,-4],[31,-26],[10,-7],[1,-1],[1,-1],[17,-23],[0,-1],[2,-10],[0,-1],[1,-3],[2,-8],[0,-1],[2,-4],[8,-10],[0,-1],[1,-1],[15,-14],[13,-14],[4,-4],[1,0],[2,-5],[7,-17],[8,-18],[5,-11],[2,-5],[0,-1],[1,-3],[6,-13],[3,-6],[2,-5],[0,-1],[1,-2],[0,-1],[2,-4],[2,-2],[8,-7],[2,-2],[3,-2],[2,-2],[6,-4],[30,-18],[16,-10],[18,-11],[1,-1],[8,0],[5,-1],[13,-1],[1,0],[10,-7],[1,-1],[4,-3],[0,-1],[1,-3],[0,-2],[1,-7],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-2,-5],[-1,-1],[-2,-6],[-8,-1],[0,-1],[-3,-30],[7,-14],[3,-6],[1,-2],[4,-8],[1,-1],[1,-2],[6,-12],[7,-13],[-4,-1],[-24,-12],[-8,-4],[-9,-10],[1,-2],[2,-4],[8,-18],[4,-7],[2,-5],[0,-1],[8,-17],[27,-11],[1,0],[2,1],[3,1],[1,0],[1,1],[4,1],[9,4],[16,1],[15,1],[4,0],[2,-2],[1,-1],[0,-1],[2,-1],[0,-1],[0,-1],[-2,-5],[-2,-2],[-6,-4],[-2,-1],[-1,0],[-1,-1],[-7,-5],[-4,-2],[-2,-1],[-1,-1],[-4,0],[-2,0],[-9,-2],[-6,-1],[-2,1],[-13,5],[-8,-2],[-2,-2],[-13,-11],[-8,-6],[-9,-10],[-5,-7],[0,-1],[-1,0],[-2,-2],[-4,-2],[-53,-39],[-13,-7],[-1,0],[-1,-1],[-8,-1],[-3,0],[-14,-3],[-4,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-3,-1],[-3,0],[-2,-1],[-18,9],[-11,6],[-17,-5],[0,-3],[-1,-5],[0,-3],[-1,-9],[0,-3],[0,-2],[-1,-1],[-1,-1],[-6,-9],[-11,-17],[-1,-1],[-4,-5],[0,-1],[-1,-1],[-10,-2],[-12,-2],[-1,-1],[-1,0],[-1,0],[-4,2],[-17,4],[-7,-1],[-3,0],[-2,-1],[-1,0],[-2,0],[0,-1],[-4,-14],[-3,-15],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-2,-10],[0,-1],[-1,-3],[-1,-3],[-2,-2],[-9,-7],[-6,-5],[-16,-13],[-3,-3],[-5,-4],[-1,0],[0,-1],[-5,-3],[-1,-1],[-3,-3],[-3,-2],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-2,0],[-4,-1],[-1,0],[-1,0],[-3,-1],[-9,-1],[-1,0],[-4,0],[0,-1],[-17,-17],[-3,-3],[-1,-1],[-6,-12],[-1,0],[-3,-7],[-2,-4],[-2,-3],[-3,-6],[0,-1],[1,-3],[-1,0],[-2,-1],[-1,0],[-2,-1],[-5,-2],[-1,0],[-4,-2],[-3,-1],[-4,-1],[-9,-4],[-2,0],[-2,-1],[-1,0],[-1,0],[-5,0],[-2,1],[-1,0],[-1,0],[-17,2],[-2,0],[-11,-2],[-3,-3],[-2,-2],[-4,-5],[-2,-3],[-3,-3],[1,-8],[0,-5],[1,-4],[5,-5],[-2,-1],[-1,0],[-7,-2],[-1,0],[-1,0],[-10,-3],[-1,0],[-18,-4],[-1,-1],[-6,-1],[-1,0],[-3,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-17,-1],[-19,-2],[-1,0],[-2,0],[-6,-1],[-2,0],[-1,0],[-19,6],[-2,1],[-10,3],[-10,-2],[-18,-11],[-20,-11],[-3,-2],[-8,-5],[-6,-3],[-2,-6],[-5,-13],[3,-5],[2,-4],[1,-1],[3,-6],[-1,0],[-12,-8],[-1,-1],[-11,-5],[-22,-11],[-2,0],[-22,-5],[-8,1],[-7,0],[-11,1],[-2,0],[-2,0],[-19,25],[1,7],[1,0],[5,0],[22,2],[1,1],[15,17],[7,8],[1,1],[18,20],[0,1],[0,3],[2,23],[0,4],[1,0],[-15,13],[-12,5],[-3,2],[-12,4],[-1,0],[-35,-5],[-2,0],[-2,0],[-1,3],[0,4],[-1,5],[-1,10],[0,1],[13,15],[31,-19],[0,7],[0,2],[3,44],[0,2],[0,3],[11,7],[3,2],[5,3],[1,10],[1,7],[0,3],[-4,1],[-2,0],[-16,3],[-3,-1],[-2,0],[-22,-4],[-17,-3],[-50,-10],[-1,0],[-20,-1],[-19,-14],[-12,-10],[-19,-14],[-4,-11],[-2,-3],[-5,-14],[5,-9],[1,0],[4,-2],[2,-1],[5,-2],[2,-2],[8,-12],[7,-10],[0,-4],[4,-15],[2,-10],[2,-9],[2,-8],[-1,0],[-4,-6],[-3,-4],[-5,-6],[-1,0],[-1,-1],[-13,-6],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-3,3],[-2,2],[-3,1],[0,1],[-13,9],[-5,-1],[-4,-6],[-13,-22],[-1,-2],[0,-1],[-3,-10],[-2,-6],[-2,-5],[0,-1],[-3,-4],[-6,-7],[-7,-8],[-1,1],[-1,0],[-13,5],[-1,1],[-1,1],[-6,5],[-3,2],[0,1],[-1,0],[-5,5],[-1,1],[-3,9],[-9,1],[-10,2],[-10,-2],[-27,-6],[-1,0],[-8,-6],[-3,-6],[-3,-1],[-18,-4],[-1,0],[-17,9],[-24,12],[-5,3],[-6,3],[-3,2],[-29,15],[0,4],[-3,21],[-2,1],[-2,1],[-16,10],[-9,5],[-1,0],[-39,-8],[-2,0],[0,-1],[-1,-4],[0,-4],[-1,-1],[0,-2],[-1,-3],[-15,-9],[-1,-1],[-7,-1],[-1,1],[-8,5],[-1,1],[-6,4],[-3,0],[-4,0],[-5,-2],[-12,-7],[-2,-1],[-3,-5],[-8,-19],[-8,-18],[-22,-55],[-1,-2],[-6,-13],[-8,-21],[-2,-4],[12,-8],[1,0],[0,-2],[5,-10],[3,-6],[3,-6],[2,-4],[3,-7],[2,-4],[-1,0],[-13,-18],[0,-1],[-19,-1],[-9,0],[-84,-6],[-2,0],[-2,0],[-1,0],[-3,0],[-65,-5],[-10,0],[-11,1],[-1,2],[0,1],[-1,1],[-1,3],[-6,15],[-7,3],[-2,1],[-3,0],[-30,-1],[-15,0],[-13,0],[-11,-3],[-10,-3],[-4,-2],[-14,-12],[-2,-1],[1,-1],[1,-4],[4,-10],[1,-3],[1,-3],[0,-2],[2,-4],[-4,-8],[-6,-12],[-1,-2],[-1,-2],[-6,-5],[-12,-11],[-7,-5],[0,-1],[-1,1],[-16,5],[-1,0],[-3,2],[-4,-1],[-6,-1],[-17,-3],[-1,0],[-2,0],[-7,1],[-1,0],[-4,0],[-8,1],[0,6],[1,5],[0,6],[0,1],[0,1],[0,1],[2,1],[5,5],[0,2],[-1,2],[0,1],[0,1],[-1,7],[-1,4],[-2,13],[-2,9],[-2,3],[-16,23],[-3,5],[-2,3],[-2,2],[-1,2],[-12,7],[-1,0],[-1,0],[-8,2],[-6,1],[-1,0],[-4,1],[-4,-1],[-4,0],[-8,-1],[-13,-9],[-1,-3],[0,-1],[-3,-10],[-2,-7],[0,-6],[0,-4],[0,-3],[0,-12],[1,-1],[0,-4],[-8,0],[-1,0],[-3,0],[-3,0],[-17,0],[-6,0],[-1,0],[-5,4],[-7,3],[0,1],[-1,2],[-1,0],[-1,2],[-4,9],[0,15],[-8,16],[-12,7],[-14,9],[-6,3],[-3,2],[-4,2],[-10,6],[-2,1],[-24,3],[-12,-5],[-2,-8],[-1,-3],[1,0],[3,-13],[2,-6],[-2,-3],[-13,-17],[-4,-5],[-2,-3],[-5,-7],[-6,-8],[5,-39],[1,-8],[0,-2],[0,-4],[1,-6],[1,0],[1,-4],[4,-7],[-1,-12],[0,-1],[0,-4],[-3,-4],[0,-1],[-6,-8],[0,-1],[-3,0],[-1,0],[-2,-1],[-7,-1],[-6,-5],[-3,-3],[-6,-5],[-2,-7],[-2,-7],[-1,-19],[10,-15],[7,-10],[5,-8],[12,-18],[7,-10],[1,-2],[0,-10],[-1,-1],[-6,-8],[-1,-2],[-9,3],[-18,7],[-6,2],[-2,1],[-22,23],[-6,-1],[-15,-4],[0,-15],[-12,-37],[0,-1],[-6,-12],[-3,-6],[-9,-16],[0,1],[-15,29],[-1,1],[-13,25],[-4,24],[-19,7],[-13,-3],[-10,-7],[7,-16],[-9,-22],[-6,0],[-6,-1],[-26,10],[-21,1],[-3,-2]],[[1129,30],[1,2],[28,31],[4,0],[1,0],[9,0],[5,-5],[-26,-20],[2,-9],[16,-14],[-1,-8],[-12,-6],[-4,-1],[-3,2],[-19,13],[-3,3],[0,2],[2,8],[0,2]],[[1768,1244],[-1,-1],[-18,-13],[-18,-20],[-10,-11],[-13,-15],[-2,-3],[-9,-15],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-2,-2],[0,-2],[-2,-20],[6,-39],[7,-12],[6,-6],[13,-14],[12,-6],[11,6],[13,6],[73,2],[-26,-37],[-28,0],[-30,-7],[-21,-11],[-14,-14],[-5,-19],[-3,-11],[-2,-9],[-43,-38],[0,-1],[-6,5],[-2,11],[0,3],[-7,-1],[-4,0],[-21,-7],[-15,-4],[-1,-1],[-3,-3],[-12,-11],[1,-4],[7,-17],[14,-16],[10,-23],[-17,-11],[-12,-7],[-46,-15],[-33,-11],[-2,-1],[-15,-4],[-2,1],[-9,4],[-5,3],[-7,1],[-23,4],[-73,-4],[-6,-1],[-42,-16],[-4,-3],[-41,-30],[-6,-7],[-16,-18],[-29,-50],[-25,-41],[-2,-5],[-15,-32],[-4,-9],[1,-3],[6,-23],[11,-10],[2,-2],[4,-4],[20,-19],[-2,-10],[-13,-19],[-10,-14],[-4,-7],[-31,-33],[-2,-2],[-2,-2],[-12,-12],[13,-6],[9,-3],[2,-1],[12,-5],[2,-12],[0,-2],[-1,0],[-5,0],[-1,-1],[-3,0],[-7,0],[-49,-1],[-1,0],[0,-2],[-2,-4],[-10,-21],[-2,-4],[0,-1],[-2,-5],[0,-2],[4,-8],[1,-2],[2,-3],[1,-3],[0,-1],[0,-9],[-1,0],[-14,-2],[-6,-1],[-2,0],[-4,-8],[-2,-5],[0,-12],[-9,-18],[-39,-33],[-2,-3],[-1,-1],[-2,-10],[-9,-14],[-2,-3],[-12,-20],[-3,-2],[-13,-10],[-1,-2],[-5,-1],[-10,-3],[-17,-5],[-6,-2],[-37,-12],[-2,25],[-3,5],[-7,4],[-28,-1],[-32,-3],[-10,1],[-7,6],[-3,2],[-26,5],[-9,1],[-3,2],[-13,19],[-8,7],[-4,2],[-27,6],[-11,11],[-25,13],[-12,8],[-23,15],[-28,12],[-16,10],[-3,5],[-3,7],[-2,13],[-7,11],[-2,8],[11,25],[3,19],[-1,6],[5,7],[6,2],[1,3],[-3,11],[0,1],[-9,15],[1,5],[2,1],[8,4],[8,1],[3,3],[0,5],[-3,6],[-1,4],[10,33],[2,3],[7,3],[1,3],[7,14],[0,1],[-3,5],[-2,2],[-5,2],[-4,0],[0,2],[-1,4],[-1,7],[-3,5],[0,1],[-1,0],[-12,5],[-1,1],[-4,1],[-4,1],[-3,1],[-14,2],[-8,-1],[-4,2],[-6,12],[0,3],[4,1],[1,2],[-10,7],[-21,6],[-8,-4],[-7,2],[-4,3],[0,5],[-4,8],[-4,4],[-3,1],[-20,10],[-22,6],[-3,1],[-2,10],[0,1],[-7,10],[-9,4],[-14,2],[-24,14],[-3,5],[8,7],[6,4],[3,6],[-5,8],[-5,1],[-7,-1],[-6,4],[-6,3],[2,4],[-1,22],[-8,0],[-3,1],[-17,10],[-1,0],[-17,11],[-2,3],[-1,8],[-1,5],[-11,1],[-35,-6],[-3,-3],[-9,3],[-3,7],[-6,7],[-9,2],[-8,5],[-18,31],[1,11],[-5,10],[-12,14],[-1,1],[-6,5],[0,1],[-4,7],[0,10],[2,5],[-6,7],[0,4],[0,4],[11,3],[1,7],[0,3],[-8,6],[-2,4],[-1,18],[1,6],[9,11],[12,6],[8,2],[9,6],[6,8],[-2,8],[1,5],[6,2],[13,5],[0,5],[-1,6],[-10,10],[-3,7],[2,7],[5,7],[9,22],[-3,6],[-7,8],[-4,0],[-12,2],[-5,2],[-3,6],[13,6],[2,1],[2,4],[-4,3],[-1,5],[6,12],[12,14],[7,4],[3,19],[7,4],[-1,3],[-4,3],[7,14],[0,9],[-7,3],[-1,2],[1,8],[-3,7],[-10,6],[-2,2],[-1,3],[1,5],[2,5],[16,2],[1,-2],[0,-1],[11,23],[-3,3],[-3,1],[-4,3],[-2,12],[-4,4],[-11,4],[-16,13],[-4,-1],[-6,4],[-6,98],[-1,24],[-10,107],[-5,61],[0,3],[-1,22],[0,7],[-7,84],[0,7],[-10,81]]],
"transform": {
"scale":[0.00041348524852485256,0.00044839033903390334],
"translate":[-71.084334,42.977764]
}
}
<style type="text/css">
body {
font-family: sans-serif;
}
#boundingbox {width: 60%; max-width: 800px; margin-left: auto; margin-right: auto; position: relative; border: 1px solid black}
.county {
fill: none;
stroke: #000;
stroke-width: 0.75px;
stroke-linejoin: round;
stroke-linecap: round;
}
.key {
font: 8px;
position: absolute;
top: 0;
left: 0;
}
.key path {
display: none;
}
.key line {
stroke: #000;
shape-rendering: crispEdges;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment