Skip to content

Instantly share code, notes, and snippets.

@samuelleach
Last active December 20, 2018 09:31
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 samuelleach/5130413 to your computer and use it in GitHub Desktop.
Save samuelleach/5130413 to your computer and use it in GitHub Desktop.
UK map
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.subunit.SCT { fill: #ddc; }
.subunit.WLS { fill: #cdd; }
.subunit.NIR { fill: #cdc; }
.subunit.ENG { fill: #dcd; }
.subunit.IRL,
.subunit-label.IRL {
display: none;
}
.subunit-boundary {
fill: none;
stroke: #777;
stroke-dasharray: 2,2;
stroke-linejoin: round;
}
.subunit-boundary.IRL {
stroke: #aaa;
}
.subunit-label {
fill: #777;
fill-opacity: .5;
font-size: 20px;
font-weight: 300;
text-anchor: middle;
}
.place,
.place-label {
fill: #444;
}
text {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 10px;
pointer-events: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script>
var width = 960,
height = 1160;
var projection = d3.geo.albers()
.center([0, 55.4])
.rotate([4.4, 0])
.parallels([50, 60])
.scale(1200 * 5)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection)
.pointRadius(2);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("uk.json", function(error, uk) {
var subunits = topojson.object(uk, uk.objects.subunits),
places = topojson.object(uk, uk.objects.places);
svg.selectAll(".subunit")
.data(subunits.geometries)
.enter().append("path")
.attr("class", function(d) { return "subunit " + d.id; })
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(uk, uk.objects.subunits, function(a, b) { return a !== b && a.id !== "IRL"; }))
.attr("d", path)
.attr("class", "subunit-boundary");
svg.append("path")
.datum(topojson.mesh(uk, uk.objects.subunits, function(a, b) { return a === b && a.id === "IRL"; }))
.attr("d", path)
.attr("class", "subunit-boundary IRL");
svg.selectAll(".subunit-label")
.data(subunits.geometries)
.enter().append("text")
.attr("class", function(d) { return "subunit-label " + d.id; })
.attr("transform", function(d) { return "translate(" + path.centroid(d) + ")"; })
.attr("dy", ".35em")
.text(function(d) { return d.properties.name; });
svg.append("path")
.datum(places)
.attr("d", path)
.attr("class", "place");
svg.selectAll(".place-label")
.data(places.geometries)
.enter().append("text")
.attr("class", "place-label")
.attr("transform", function(d) { return "translate(" + projection(d.coordinates) + ")"; })
.attr("x", function(d) { return d.coordinates[0] > -1 ? 6 : -6; })
.attr("dy", ".35em")
.style("text-anchor", function(d) { return d.coordinates[0] > -1 ? "start" : "end"; })
.text(function(d) { return d.properties.name; });
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.001546403012701271,0.0010939367048704803],"translate":[-13.69131425699993,49.90961334800009]},"objects":{"subunits":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6,7,8,9]]],"id":"ENG","properties":{"name":"England"}},{"type":"MultiPolygon","arcs":[[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16,17]]],"id":"IRL","properties":{"name":"Ireland"}},{"type":"MultiPolygon","arcs":[[[-17,18]],[[19]]],"id":"NIR","properties":{"name":"N. Ireland"}},{"type":"MultiPolygon","arcs":[[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[-9,49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]]],"id":"SCT","properties":{"name":"Scotland"}},{"type":"MultiPolygon","arcs":[[[67]],[[-7,68]],[[69]]],"id":"WLS","properties":{"name":"Wales"}}]},"places":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[5868,5065],"properties":{"name":"Ayr"}},{"type":"Point","coordinates":[7509,6637],"properties":{"name":"Aberdeen"}},{"type":"Point","coordinates":[6610,5933],"properties":{"name":"Perth"}},{"type":"Point","coordinates":[6914,5997],"properties":{"name":"Dundee"}},{"type":"Point","coordinates":[8058,4270],"properties":{"name":"Middlesbrough"}},{"type":"Point","coordinates":[7884,2295],"properties":{"name":"Coventry"}},{"type":"Point","coordinates":[7334,1348],"properties":{"name":"Bath"}},{"type":"Point","coordinates":[6571,723],"properties":{"name":"Exeter"}},{"type":"Point","coordinates":[8929,2094],"properties":{"name":"Cambridge"}},{"type":"Point","coordinates":[8640,3511],"properties":{"name":"Kingston upon Hull"}},{"type":"Point","coordinates":[4111,4654],"properties":{"name":"Londonderry"}},{"type":"Point","coordinates":[4540,4215],"properties":{"name":"Lisburn"}},{"type":"Point","coordinates":[5265,205],"properties":{"name":"Penzance"}},{"type":"Point","coordinates":[8155,3712],"properties":{"name":"York"}},{"type":"Point","coordinates":[6881,3584],"properties":{"name":"Blackpool"}},{"type":"Point","coordinates":[6558,4715],"properties":{"name":"Dumfries"}},{"type":"Point","coordinates":[8576,3995],"properties":{"name":"Scarborough"}},{"type":"Point","coordinates":[6164,435],"properties":{"name":"Plymouth"}},{"type":"Point","coordinates":[9610,1975],"properties":{"name":"Ipswich"}},{"type":"Point","coordinates":[9694,2487],"properties":{"name":"Norwich"}},{"type":"Point","coordinates":[8744,842],"properties":{"name":"Brighton"}},{"type":"Point","coordinates":[6946,8280],"properties":{"name":"Kirkwall"}},{"type":"Point","coordinates":[6116,6909],"properties":{"name":"Inverness"}},{"type":"Point","coordinates":[8045,1701],"properties":{"name":"Oxford"}},{"type":"Point","coordinates":[8582,1802],"properties":{"name":"Luton"}},{"type":"Point","coordinates":[8155,814],"properties":{"name":"Portsmouth"}},{"type":"Point","coordinates":[8692,2441],"properties":{"name":"Peterborough"}},{"type":"Point","coordinates":[8097,2798],"properties":{"name":"Nottingham"}},{"type":"Point","coordinates":[7444,2825],"properties":{"name":"Stoke"}},{"type":"Point","coordinates":[9694,1119],"properties":{"name":"Dover"}},{"type":"Point","coordinates":[6772,5520],"properties":{"name":"Edinburgh"}},{"type":"Point","coordinates":[7818,4655],"properties":{"name":"Newcastle"}},{"type":"Point","coordinates":[6965,3207],"properties":{"name":"Liverpool"}},{"type":"Point","coordinates":[6768,1454],"properties":{"name":"Cardiff"}},{"type":"Point","coordinates":[6860,7792],"properties":{"name":"Wick"}},{"type":"Point","coordinates":[7831,3586],"properties":{"name":"Leeds"}},{"type":"Point","coordinates":[8110,9361],"properties":{"name":"Lerwick"}},{"type":"Point","coordinates":[7399,3284],"properties":{"name":"Manchester"}},{"type":"Point","coordinates":[7611,2347],"properties":{"name":"Birmingham"}},{"type":"Point","coordinates":[5000,4288],"properties":{"name":"Belfast"}},{"type":"Point","coordinates":[6104,5454],"properties":{"name":"Glasgow"}},{"type":"Point","coordinates":[8777,1456],"properties":{"name":"London"}}]}},"arcs":[[[4788,4],[-7,-4],[-7,4],[1,12],[5,8],[5,-3],[5,-9],[-2,-8]],[[4763,36],[-4,-7],[-6,3],[-4,11],[-1,7],[5,-1],[3,-2],[2,-1],[4,-3],[1,-7]],[[8016,789],[98,-36],[16,1],[6,-1],[8,-6],[1,-2],[-1,-8],[0,-2],[2,-1],[6,1],[1,0],[14,-19],[0,-7],[-3,0],[-2,-2],[-1,-2],[-3,-2],[-24,-7],[-10,-4],[-18,-14],[-4,-5],[-2,-4],[1,-20],[-1,-10],[-2,-5],[-72,-19],[-23,6],[-84,54],[-5,6],[-21,13],[-8,3],[-24,-2],[-11,-4],[-11,-7],[15,26],[26,20],[56,23],[-1,-3],[-2,-6],[-1,-3],[16,2],[15,11],[22,24],[16,10],[15,1]],[[8247,803],[0,-6],[-53,6],[0,6],[14,6],[17,26],[8,0],[6,-5],[2,-6],[-3,-5],[-5,-4],[0,-5],[3,-3],[6,-7],[5,-3]],[[5838,1147],[-5,-4],[-5,6],[-1,13],[3,11],[3,2],[3,-7],[1,-3],[1,-6],[0,-12]],[[9459,1336],[-16,-6],[-75,5],[-13,5],[-11,10],[-10,12],[-6,12],[9,25],[4,5],[9,2],[80,-24],[6,-4],[7,-4],[14,-14],[6,-13],[-4,-11]],[[7130,1561],[-5,19],[0,8],[-3,7],[-4,4],[0,3],[2,2],[10,4],[2,3],[0,3],[-1,5],[-2,5],[-5,16],[-5,12],[-1,5],[0,3],[4,6],[3,4],[2,7],[0,5],[-4,8],[-3,6],[0,7],[1,5],[2,8],[14,19],[5,13],[-1,0],[-7,-4],[-12,7],[-12,10],[-4,2],[-5,1],[-12,-1],[-4,2],[-3,2],[-2,2],[-2,5],[-2,3],[-9,9],[-1,3],[-7,8],[-64,49],[-7,-1],[-6,-2],[-19,-13],[-7,-2],[-5,-1],[-7,0],[-5,3],[-14,10],[-4,5],[-2,4],[-1,6],[-1,3],[-1,3],[-2,1],[-19,15],[-14,18],[0,1],[-19,30],[-1,5],[-1,7],[1,5],[-1,7],[-1,5],[-2,3],[-11,11],[-6,5],[-5,2],[-1,2],[0,2],[4,16],[2,8],[3,3],[2,3],[3,2],[0,1],[0,1],[-10,6],[-4,5],[-1,4],[2,3],[5,2],[17,6],[4,2],[2,4],[2,5],[-2,2],[-3,1],[-3,0],[-4,0],[-4,1],[-5,6],[-1,4],[1,4],[26,33],[4,6],[3,10],[2,3],[2,3],[2,2],[9,4],[3,2],[2,2],[4,7],[2,1],[3,2],[6,2],[22,1],[4,1],[4,4],[0,3],[-2,3],[-3,1],[-16,4],[-3,3],[-2,4],[-2,10],[0,2],[2,6],[3,6],[5,4],[13,8],[4,5],[2,3],[-1,9],[-1,0],[-73,5],[-4,3],[-17,16],[-24,15],[-16,13],[-22,13],[-2,2],[-3,3],[-1,3],[-2,4],[-1,4],[-1,8],[0,3],[0,4],[1,3],[7,11],[5,5],[3,1],[29,11],[17,10],[7,2],[50,3],[4,3],[6,12],[17,13],[5,5],[3,5],[1,3],[-1,4],[-3,3],[-16,17],[-3,0],[-3,0],[-3,-1],[-13,-11],[-18,-9],[-2,-1],[-3,-3],[-3,-6],[-2,-2],[-2,-2],[-4,-2],[-5,-1],[-7,1],[-3,1],[0,3],[4,5],[1,3],[0,4],[-1,3],[-2,3],[-5,7],[-3,7],[0,4],[0,5],[1,4],[2,3],[2,2],[18,9],[6,4],[4,5],[1,3],[1,5],[2,12],[1,5],[2,4],[2,2],[13,6],[3,3],[2,4],[2,9],[-1,11],[1,6],[1,4],[4,8],[3,8],[2,3],[2,3],[3,1],[4,1],[13,1],[4,2],[4,3],[4,7],[1,3],[-1,3],[-11,4],[-4,3],[-3,3],[-6,10],[-1,1],[-4,2],[-15,4],[-19,2],[-3,2],[-3,3],[-5,8],[-1,2],[-3,1],[-20,1],[-11,5],[-7,6],[-8,21],[0,4],[0,5],[1,4],[4,5],[3,2],[8,8],[4,4],[1,4],[-1,3],[-2,4],[-1,5],[-1,7],[1,5],[2,3],[7,2],[4,2],[4,4],[6,10],[3,5],[4,4],[8,5],[3,1],[3,1],[2,1],[33,21],[7,3],[12,1],[8,-2],[3,-1],[10,-12],[3,-2],[3,-1],[5,-1],[5,1],[26,6],[8,0],[8,-2],[3,-1],[34,-31],[4,-1],[6,-2],[5,2],[14,8],[6,3],[9,1],[4,2],[2,3],[1,4],[0,15],[0,3],[-2,3],[-4,9],[-1,7],[-27,14],[-24,3],[-5,2],[-3,2],[-5,10],[-16,16],[-3,5],[-1,5],[0,3],[0,4],[-4,16],[-5,12],[-17,32],[-3,5],[-32,29],[-3,4],[0,1],[-1,3],[1,3],[2,2],[24,13],[2,3],[1,4],[-1,8],[-3,5],[-3,4],[-22,20],[-41,29],[-6,2],[-24,4],[-12,4]],[[6859,3061],[0,16],[-7,10],[-10,15],[-16,28],[-23,26],[-9,14],[-1,14],[7,9],[12,6],[28,3],[13,5],[23,15],[15,0],[15,-16],[38,-85],[12,-13],[16,-12],[18,-7],[20,0],[1,2],[1,4],[2,4],[5,3],[6,-1],[9,-4],[5,-1],[11,1],[9,2],[18,9],[-4,12],[2,8],[5,6],[5,6],[6,-2],[5,0],[6,3],[6,6],[-9,0],[-33,-6],[-7,-4],[-5,-14],[-11,-5],[-7,1],[-21,2],[-28,9],[-25,15],[-20,19],[-16,20],[-75,139],[-3,12],[1,13],[8,14],[43,60],[34,37],[5,4],[6,9],[26,16],[8,9],[-56,1],[-23,9],[-18,21],[-5,31],[8,69],[-8,25],[10,16],[15,8],[60,19],[10,1],[9,-6],[5,-1],[2,4],[2,5],[5,5],[6,4],[5,2],[-8,10],[23,19],[3,15],[-12,-7],[-11,-4],[-20,-2],[-3,3],[-10,19],[-1,8],[4,5],[7,4],[5,5],[13,20],[9,8],[21,7],[7,9],[13,25],[-11,13],[-16,25],[-9,16],[-2,9],[14,4],[14,12],[10,16],[0,18],[-5,0],[-2,-14],[-9,-11],[-20,-13],[-23,-10],[-12,-8],[-5,-10],[-5,-14],[-12,-6],[-29,-2],[-9,6],[-9,13],[-4,15],[6,9],[-4,11],[-6,9],[-7,4],[-9,-4],[3,-12],[-2,-13],[-4,-12],[-2,-10],[-3,-8],[-19,-20],[-11,-19],[-7,-9],[-17,-8],[-2,-11],[2,-12],[0,-11],[-23,27],[-6,5],[-10,0],[-9,2],[-8,4],[-6,7],[2,14],[3,15],[0,14],[-10,7],[0,6],[22,6],[5,26],[-2,31],[2,19],[-11,-5],[-5,-10],[-6,-23],[6,-18],[-10,-4],[-15,1],[-10,-2],[-14,-4],[-14,11],[-23,35],[-19,20],[-9,12],[-3,15],[1,7],[3,7],[1,8],[-4,13],[-2,10],[-2,1],[-15,7],[-22,38],[-15,11],[-61,71],[-11,4],[-3,4],[-7,13],[-6,6],[4,7],[7,6],[3,3],[14,31],[17,72],[22,41],[9,23],[4,8],[6,4],[14,4],[7,4],[8,9],[10,15],[6,18],[-6,15],[21,54],[13,25],[15,15],[13,2],[7,-5],[7,-6],[10,-4],[7,1],[27,12],[-8,5],[-33,13],[17,15],[10,7],[41,10],[8,-2],[4,-4],[4,-3],[5,-4],[24,-6],[13,-1],[54,13],[12,7],[-45,0],[0,6],[12,2],[10,5],[10,3],[13,-4],[0,7],[-16,6],[-3,-1]],[[6881,4636],[3,17],[8,14],[1,4],[1,24],[3,5],[3,1],[4,-1],[25,-10],[4,-1],[11,2],[3,2],[3,3],[10,20],[4,3],[21,8],[4,3],[5,4],[2,4],[14,17],[18,22],[10,6],[11,2],[29,11],[17,10],[14,11],[8,11],[16,20],[11,7],[8,2],[4,4],[2,4],[2,7],[0,3],[0,3],[-1,2],[-2,3],[-1,4],[0,6],[1,4],[3,3],[9,6],[35,35],[57,42],[7,2],[16,3],[9,-2],[4,-1],[6,-4],[2,-2],[4,-1],[6,0],[13,7],[5,4],[3,5],[3,8],[2,5],[5,7],[4,3],[19,7],[7,6],[8,6],[19,3],[7,3],[14,7],[8,8],[6,7],[3,4],[1,4],[0,4],[-1,3],[-2,3],[-2,2],[-14,17],[-2,3],[0,3],[0,3],[0,1],[0,2],[0,2],[-1,3],[-7,11],[-8,11],[-11,16],[-10,23],[-2,6],[-1,4],[-1,3],[-2,2],[-7,7],[-2,2],[-2,3],[0,4],[-1,3],[-3,2],[-10,5],[-3,2],[-1,3],[-1,3],[0,4],[0,5],[3,2],[3,2],[8,2],[25,0],[10,2],[6,2],[5,5],[35,43],[4,5],[2,8],[3,3],[3,3],[6,4],[7,6],[3,2],[11,4],[3,2],[16,13],[3,5],[2,5],[1,14],[3,7],[3,3],[3,2],[30,9]],[[7546,5390],[8,-14],[85,-88],[10,-21],[6,-11],[14,-8],[4,-6],[3,-7],[3,-3],[6,1],[4,5],[3,4],[2,2],[8,-1],[8,-3],[8,-8],[6,-13],[-14,0],[0,-5],[8,-4],[23,5],[14,-1],[44,-26],[0,-6],[-4,-6],[2,-7],[4,-6],[7,-7],[-9,-5],[0,-7],[6,-3],[12,-9],[0,-6],[-5,-8],[3,-5],[6,-3],[5,-4],[3,-11],[2,-61],[-1,-9],[-3,-15],[-1,-5],[0,-8],[4,-19],[16,-24],[2,-16],[-1,-4],[-1,-5],[-2,-4],[-3,-3],[-3,-7],[2,-6],[2,-6],[2,-6],[3,-11],[8,-10],[15,-13],[-5,-12],[3,-6],[6,-5],[5,-9],[-2,-9],[-5,-8],[-3,-8],[3,-9],[11,-14],[3,-7],[2,-19],[6,-20],[3,-6],[2,-1],[8,-3],[3,-2],[1,-2],[2,-8],[11,-23],[5,-8],[4,-8],[3,-12],[4,-10],[7,-5],[3,-2],[18,-16],[4,-10],[1,-5],[-1,-5],[0,-5],[0,-20],[2,-9],[5,-3],[-2,-8],[38,-114],[14,-29],[22,-24],[10,-6],[35,-13],[0,-7],[-14,0],[1,-4],[1,-3],[3,-5],[2,-8],[2,-6],[4,-6],[5,-5],[-5,-8],[-6,-5],[-15,-5],[1,-7],[3,-4],[5,-1],[6,-1],[2,2],[1,3],[1,2],[3,0],[1,-3],[3,-4],[2,-5],[-2,-2],[8,2],[4,5],[6,25],[11,-12],[11,-8],[13,-4],[27,-3],[31,-17],[133,-34],[146,-76],[18,-15],[8,-13],[0,-8],[-1,-8],[2,-9],[7,-8],[21,-13],[9,-7],[10,-15],[11,-22],[8,-23],[0,-18],[3,-6],[3,-6],[5,-5],[7,-2],[-3,-9],[-1,-4],[5,-4],[12,-15],[5,-5],[26,-6],[7,-4],[8,-6],[14,-7],[5,-9],[5,-24],[1,-4],[17,-15],[80,-27],[23,-17],[-57,-27],[-20,-19],[-16,-36],[14,-26],[19,-59],[11,-28],[68,-90],[116,-145],[10,-30],[-8,-29],[-4,-4],[-13,-9],[14,28],[3,15],[-11,7],[-13,4],[-28,17],[-14,5],[-13,-3],[-25,-13],[-13,-3],[-16,1],[-15,4],[-13,6],[-11,8],[-62,67],[-23,14],[-23,3],[-6,1],[-81,-23],[-12,0],[-39,0],[-22,-4],[-5,1],[-16,13],[-2,2],[-37,4],[-14,-4],[-44,-25],[6,-1],[5,-3],[6,-4],[5,-4],[10,14],[17,8],[20,1],[15,-4],[26,-16],[7,-6],[10,-5],[10,3],[18,12],[116,18],[18,-7],[12,-18],[47,-61],[29,-12],[19,-21],[12,-6],[22,-3],[10,-4],[30,-32],[62,-43],[12,-4],[12,-3],[12,-4],[10,-10],[2,-7],[2,-10],[1,-8],[4,-3],[6,-2],[19,-12],[-5,-6],[11,-7],[10,-13],[7,-14],[3,-13],[53,-123],[9,-35],[0,-39],[-13,-48],[-4,-6],[-7,-2],[-13,-3],[-11,-6],[-58,-50],[-12,-4],[-8,-6],[-51,-64],[-14,-13],[-15,-5],[-10,-6],[-9,-13],[1,-11],[20,-1],[33,7],[9,-3],[18,-13],[9,-3],[15,-9],[33,-44],[16,-17],[12,8],[13,1],[26,-2],[11,-5],[18,-22],[9,-5],[0,7],[-3,14],[13,17],[17,16],[8,12],[4,23],[8,24],[10,23],[9,15],[22,20],[32,13],[35,6],[31,-1],[-5,6],[13,5],[15,-3],[14,-6],[14,-2],[55,0],[26,-6],[29,-12],[31,-7],[29,12],[-6,4],[-8,2],[-8,1],[-9,-1],[0,7],[200,-42],[78,-34],[161,-106],[19,-18],[15,-23],[12,-43],[12,-27],[9,-27],[-5,-19],[4,-14],[1,-18],[0,-33],[15,-43],[-3,-8],[-8,-9],[-16,-47],[0,-9],[-1,-9],[-29,-65],[-20,-33],[-7,-7],[-7,-10],[-1,-23],[1,-41],[-3,-18],[-12,-32],[-2,-16],[-10,-25],[-1,-13],[-3,-5],[-51,-18],[-11,-11],[-9,6],[-4,-7],[-2,-12],[-5,-6],[-4,-3],[-16,-21],[-45,-44],[-8,-10],[-7,-3],[-44,50],[-19,5],[-32,23],[-18,3],[0,-6],[23,-19],[14,-9],[30,-6],[6,-3],[3,-4],[0,-15],[-2,-4],[-14,3],[-7,-1],[-14,-4],[-8,-1],[-8,2],[-18,11],[-14,-1],[-32,-9],[-16,-3],[17,-7],[108,-6],[13,7],[-3,-17],[-51,-46],[9,-5],[10,-4],[23,-3],[7,5],[5,10],[3,1],[1,-20],[-8,-14],[-37,-30],[-33,-20],[-21,-8],[-45,-6],[-13,2],[-6,5],[-10,18],[-21,26],[-6,12],[-2,-17],[-9,-10],[-24,-11],[-20,-16],[-5,-2],[0,-5],[-2,-11],[-3,-11],[-3,-5],[-8,-2],[-10,-8],[-7,-3],[-8,1],[-14,5],[-6,1],[-16,-1],[-30,-11],[-15,-7],[11,-4],[11,-2],[11,-5],[8,-14],[18,16],[41,8],[20,7],[19,14],[11,1],[10,-9],[1,-7],[-2,-9],[-2,-7],[-2,-2],[2,-7],[2,-7],[5,-11],[-6,-5],[-3,-8],[0,-21],[-2,-5],[-5,-4],[-10,-7],[18,1],[6,-3],[2,-4],[-18,-26],[-33,-27],[-29,-16],[-8,-4],[-29,-8],[-51,7],[-18,-1],[-9,1],[-2,-1],[-2,0],[-1,-2],[-12,-10],[-10,-3],[-8,0],[-9,-2],[-8,-8],[-11,9],[-3,0],[-15,-1],[-44,-10],[-4,-7],[-2,-9],[-4,-10],[-8,-9],[-10,-5],[-9,-3],[-10,-5],[42,6],[5,3],[3,7],[2,6],[3,3],[43,10],[103,-13],[9,-6],[8,-13],[1,-9],[-6,-5],[-14,-1],[-23,4],[-10,0],[-20,-18],[-24,-5],[-12,-6],[5,-6],[5,-6],[4,-5],[7,-3],[55,0],[27,-6],[-5,11],[-3,12],[3,9],[13,0],[2,-12],[7,-17],[9,-15],[7,-6],[138,-14],[80,22],[208,17],[16,-8],[-6,-30],[-2,-6],[-3,-5],[-4,-5],[-4,-3],[-23,0],[-3,-3],[1,-20],[5,-15],[11,-24],[5,-37],[-5,-34],[-13,-30],[-18,-18],[-43,-14],[-18,-12],[-7,-1],[-14,2],[-8,-3],[-6,-6],[-6,-6],[-4,-5],[-13,-5],[-43,0],[-12,-4],[-13,-7],[-26,-21],[-33,-43],[-6,-11],[1,-24],[7,-35],[-22,-8],[-49,14],[-44,13],[-25,-7],[-64,-56],[-26,-10],[-140,-27],[-24,-10],[-3,0],[-7,-8],[-7,-10],[-1,-4],[-22,-12],[-24,-31],[-24,-1],[-13,2],[-30,10],[-7,1],[-22,0],[-6,3],[-12,10],[-12,4],[-27,2],[-11,3],[-123,40],[-22,2],[-1,-1],[-16,-7],[-24,9],[-82,-27],[-111,0],[-106,-32],[-6,2],[-5,4],[-6,3],[-6,-2],[-3,-8],[4,-17],[-3,-10],[-12,-6],[-15,4],[-59,34],[-5,6],[4,9],[9,6],[18,7],[0,5],[-6,5],[-13,11],[-7,4],[-4,-3],[-7,-4],[-5,1],[6,12],[-7,3],[-6,3],[-20,4],[-16,0],[-4,0],[-12,-3],[-9,-16],[-6,-22],[-8,-18],[-18,-1],[-13,13],[6,16],[12,15],[4,13],[-11,5],[-1,0],[-40,-2],[-10,-3],[23,-17],[4,-6],[2,-18],[-3,-9],[-8,-7],[-9,0],[-12,4],[-10,6],[-5,6],[-4,8],[-21,10],[-15,12],[-21,7],[-9,4],[-11,12],[-13,14],[-72,36],[-11,6],[0,-6],[7,-3],[12,-6],[8,-2],[16,-17],[50,-51],[6,-12],[-2,-11],[-15,-5],[-41,-3],[-10,-3],[5,-3],[4,-3],[0,-6],[-29,-5],[-17,-6],[-7,-5],[-3,0],[-21,3],[-21,-34],[-2,-4],[-1,0],[-13,3],[-13,9],[-45,7],[-1,0],[-13,0],[-14,-4],[-25,-12],[-12,-2],[-17,3],[-24,4],[-14,-1],[-13,-4],[-13,-6],[-11,-8],[-10,-10],[-7,-5],[-3,6],[-1,10],[-2,5],[-25,6],[-17,-1],[-5,1],[-2,3],[-1,1],[-5,11],[-3,3],[-6,-5],[-22,-32],[8,1],[8,2],[7,4],[7,6],[14,-23],[8,-7],[12,-2],[10,0],[10,-2],[4,-7],[-4,-16],[9,-5],[4,-1],[-23,-25],[2,-14],[-12,-5],[-53,-1],[-11,2],[-48,21],[-120,12],[-23,13],[-13,-2],[-25,-8],[-7,-8],[-8,-20],[-4,-19],[6,-9],[16,-5],[2,-12],[-7,-14],[-9,-13],[-4,0],[0,35],[-15,22],[-136,94],[-111,37],[-14,1],[-38,-8],[-11,-2],[-23,-14],[-15,-2],[-25,7],[-7,-2],[-15,-11],[-4,-2],[-10,-8],[-6,-3],[-7,1],[-13,5],[-7,1],[-12,-2],[-22,-9],[-26,-6],[-8,-9],[-6,-12],[-9,-13],[-47,-18],[-15,0],[-11,4],[-9,7],[-8,14],[-8,22],[-3,3],[-1,1],[-2,2],[-2,2],[-4,1],[-2,-2],[-1,-4],[1,-5],[8,-8],[9,-31],[5,-13],[-11,-9],[-11,-13],[-9,-16],[-8,-18],[-8,-25],[1,-18],[11,-38],[-14,-1],[-14,-4],[-12,-7],[-4,-13],[4,-15],[12,-5],[28,1],[0,-6],[-6,-16],[-1,-4],[-5,0],[-5,-3],[-4,-5],[-4,-23],[-8,-5],[-10,3],[-10,8],[-5,-20],[-14,-8],[-14,-3],[-7,-9],[-3,-15],[-7,-19],[-4,-22],[5,-23],[-10,-4],[-26,-7],[-11,-1],[-14,3],[-12,5],[-10,1],[-10,-9],[-24,20],[-37,42],[-43,35],[-7,3],[-6,-1],[-16,-9],[-7,-2],[-3,-2],[-9,-9],[-5,-2],[-7,2],[-7,3],[-10,8],[1,4],[3,8],[-15,4],[-14,9],[-7,14],[9,17],[-24,-1],[-7,1],[-8,6],[-4,6],[-3,7],[-5,9],[-5,15],[5,13],[9,13],[7,13],[-13,-6],[-7,0],[-7,6],[-2,-8],[0,-2],[-5,-7],[-7,-3],[-8,0],[0,-5],[10,-6],[2,-9],[-2,-10],[-6,-7],[-8,-3],[-31,3],[10,-14],[37,5],[15,-10],[-23,-6],[0,-6],[6,2],[12,-2],[-4,-7],[18,0],[0,-5],[-8,-3],[-4,-5],[-1,-6],[4,-6],[0,-6],[-14,1],[-7,11],[-6,13],[-11,6],[-55,13],[-30,-2],[-47,-27],[-25,-9],[-107,-6],[0,-1],[-2,-3],[-3,-2],[-3,0],[-9,25],[-5,1],[-4,-3],[-3,-3],[-4,-1],[-13,-1],[-13,-4],[-8,-8],[5,-12],[0,-7],[-4,-3],[-6,-6],[-5,-6],[-3,-6],[1,-6],[4,-6],[0,-4],[-8,-17],[-1,-5],[-6,-7],[-32,5],[-13,-5],[-12,-13],[-11,-6],[-28,-8],[-8,-8],[-27,-43],[-8,12],[-4,32],[-8,7],[-13,-3],[0,-9],[1,-10],[-8,-10],[0,-6],[4,-2],[9,-11],[-5,1],[-4,-2],[-8,-5],[-7,-4],[0,-7],[0,-7],[-3,-7],[-5,-4],[-21,-8],[7,0],[6,-1],[9,-6],[3,0],[8,1],[3,-1],[1,-4],[2,-12],[3,-2],[3,-8],[-9,-17],[-18,-25],[-6,-1],[-13,2],[-8,-1],[-4,-4],[-20,-20],[-7,-22],[-2,-5],[-6,2],[-7,5],[-19,20],[-3,4],[-3,7],[-2,11],[0,8],[0,6],[-5,9],[-18,28],[-10,11],[-13,8],[-39,17],[-26,5],[-22,12],[-11,4],[-13,-1],[-17,-5],[-12,-10],[0,-12],[4,-16],[-7,-12],[-12,-9],[-10,-4],[-26,-8],[-31,-3],[-25,8],[-6,28],[6,1],[4,2],[3,3],[0,6],[-1,5],[-3,2],[-1,0],[-3,17],[-1,10],[2,4],[1,3],[13,19],[5,3],[19,7],[41,22],[22,7],[25,14],[14,1],[20,-18],[13,-6],[13,8],[10,13],[4,9],[2,9],[4,3],[23,0],[24,12],[74,71],[24,15],[8,3],[3,4],[0,11],[-1,11],[-4,19],[7,4],[10,1],[5,0],[45,22],[1,5],[6,12],[6,36],[1,18],[2,16],[6,12],[13,10],[13,0],[5,3],[9,9],[4,1],[4,-5],[3,-11],[2,-12],[0,-11],[5,3],[1,1],[3,3],[11,-7],[27,-1],[11,-4],[-7,12],[-12,6],[-21,7],[-10,12],[1,8],[3,8],[-3,10],[0,5],[16,-3],[48,3],[19,6],[10,13],[7,17],[10,15],[-4,13],[3,10],[6,5],[9,-3],[46,36],[8,11],[5,16],[12,13],[27,18],[17,32],[-3,80],[7,38],[5,8],[9,23],[-3,7],[-2,13],[-1,13],[4,5],[57,0],[7,-2],[14,-9],[6,-2],[38,-3],[13,3],[10,7],[43,43],[4,6],[3,5],[4,5],[7,4],[-5,8],[-7,25],[-2,7],[-2,6],[-11,14],[-4,8],[21,-1],[5,1],[4,10],[-1,10],[-4,8],[-8,4],[0,6],[49,17],[119,10],[24,8],[12,2],[47,0],[14,3],[21,9],[11,1],[84,-19],[52,1],[81,-16],[19,-17],[13,-5],[74,3],[46,13],[23,3],[43,-2],[25,3],[19,11],[5,-6],[-9,-13],[9,-6],[11,19],[2,6],[1,12],[-1,6],[-3,5],[-2,8],[1,35],[-2,17],[-7,11],[12,-4],[7,3],[2,8],[1,15],[5,8],[9,8],[4,9],[-10,9],[14,13],[21,-4],[24,21],[43,52],[12,8],[11,6],[13,3],[15,1],[14,5],[13,12],[57,87],[6,4],[6,2],[6,4],[2,8],[2,8],[3,8],[5,8],[4,5],[37,35],[22,26],[11,6],[27,8],[11,9],[5,10],[-2,11],[-9,8],[-3,-17],[-12,-10],[-14,-4],[-13,-1],[-12,-4],[-9,-10],[-8,-12],[-9,-12],[-39,-22],[-6,-6],[-6,-9],[-42,-44]],[[2501,1581],[4,0],[7,1],[5,-3],[-5,-7],[-4,-2],[-51,-14],[-7,2],[-10,5],[2,9],[9,7],[13,4],[15,1],[22,-3]],[[2176,1847],[5,-5],[4,1],[7,-1],[3,-6],[-5,-7],[-12,-7],[-25,-10],[-22,-2],[-6,-5],[-13,-2],[-2,7],[11,13],[33,20],[6,5],[12,-1],[4,0]],[[2547,2949],[8,0],[16,2],[12,-1],[17,-6],[5,-6],[-6,-7],[0,-6],[15,-7],[3,1],[2,-1],[-1,-7],[-11,-3],[-77,30],[-21,13],[7,8],[15,0],[16,-10]],[[2608,3038],[-22,-6],[-12,11],[-2,13],[-3,7],[-1,5],[6,9],[8,5],[9,1],[8,-1],[6,-5],[16,-22],[-13,-17]],[[2415,3754],[13,-25],[-13,0],[2,-7],[-1,-7],[-2,-6],[-3,-5],[0,-7],[7,4],[7,2],[7,-1],[5,-5],[0,-6],[-5,-7],[-4,-15],[-2,-16],[2,-12],[-14,-11],[-12,6],[-12,13],[-15,11],[-8,0],[-9,-1],[-7,1],[-3,9],[2,14],[2,10],[-1,8],[-7,9],[-13,3],[-49,-9],[-18,2],[-32,10],[-17,0],[0,7],[17,0],[14,3],[11,10],[7,18],[5,-6],[6,-1],[5,2],[6,5],[14,-15],[17,4],[16,11],[13,6],[57,-2],[12,-4]],[[3367,4631],[-28,-7],[-14,0],[-11,7],[0,6],[2,4],[0,1],[-2,7],[10,6],[4,1],[-2,2],[-2,3],[-1,1],[6,5],[5,1],[3,-2],[4,-4],[10,-4],[8,-4],[6,-8],[2,-15]],[[4167,4717],[-12,-4],[-6,-6],[-5,-6],[-5,-5],[-42,-5],[-7,-5],[-7,-6],[-18,-23],[3,-8],[-2,-2],[-4,-1],[-2,-6],[4,-24],[-1,-7],[-5,-7],[-1,-1],[-13,-4],[-5,-6],[-2,-11],[2,-23],[0,-9],[-6,-20],[-10,-16],[-47,-48],[-4,-12],[-2,-23],[2,-7],[4,-3],[0,-2],[-9,-3],[-6,0],[-13,6],[-19,-5],[-22,5],[-12,-6],[-22,-18],[-22,-10],[-22,-1],[-22,9],[-18,13],[-9,0],[-22,-18],[-32,-13],[10,-7],[4,-2],[-5,-14],[6,-9],[10,-6],[12,-3],[5,-3],[7,-11],[5,-5],[5,0],[10,6],[5,2],[9,-5],[21,-15],[10,-3],[11,4],[10,6],[7,-1],[1,-18],[0,-1],[-27,-7],[-64,-50],[-25,-8],[-25,0],[-49,10],[-14,-13],[-13,-16],[-8,-13],[-3,-4],[-7,-6],[-16,-7],[-35,-9],[-12,-5],[-3,-2],[8,-6],[2,-7],[1,-8],[7,-7],[15,-14],[28,-32],[15,-13],[16,-8],[19,0],[14,-28],[8,-13],[11,-11],[6,-2],[5,-1],[25,-3],[10,-6],[4,-15],[3,-40],[8,-15],[13,-6],[35,-4],[39,2],[11,-2],[47,-29],[4,-6],[1,-8],[3,-7],[7,-5],[69,-13],[14,2],[27,17],[16,-1],[-7,-8],[2,-1],[6,1],[6,-1],[5,-8],[1,-4],[3,-1],[9,2],[32,-9],[6,1],[4,0],[-14,26],[0,6],[4,4],[20,10],[2,-2],[-2,-7],[-1,-8],[0,-10],[0,-9],[2,-3],[9,3],[6,6],[5,8],[1,9],[-3,9],[13,6],[-1,5],[-6,4],[-3,3],[4,10],[4,6],[5,4],[8,5],[35,8],[14,7],[-4,15],[9,11],[-23,16],[4,12],[-22,9],[-2,10],[3,1],[5,-1],[4,3],[1,0],[5,9],[-1,0],[-1,2],[-3,4],[-1,6],[1,4],[1,1],[3,1],[11,-2],[6,1],[21,13],[31,41],[19,15],[20,2],[22,-9],[40,-28],[5,-6],[6,-16],[5,-2],[8,-1],[4,-4],[6,-14],[8,-17],[1,-13],[-5,-9],[-12,-5],[23,-10],[6,-6],[3,-7],[2,-9],[4,-9],[11,-15],[12,-12],[14,-10],[14,-7],[8,-1],[5,5],[5,6],[7,3],[7,-1],[7,-3],[14,-10],[9,-9],[6,-5],[3,-17],[-6,-16],[-14,-16],[7,-10],[-1,-11],[-10,-21],[10,-7],[17,-18],[9,-4],[4,2],[3,5],[3,4],[4,3],[5,1],[10,-4],[5,0],[55,17],[18,1],[1,-2],[2,-4],[4,-4],[4,-2],[5,0],[16,5],[16,2],[4,3],[2,8],[0,7],[-1,7],[1,6],[8,12],[6,0],[4,-7],[8,-4],[9,1],[9,4],[10,1],[9,-6]],[[4799,3829],[41,-33],[10,-5],[4,-3],[10,-13],[4,-3],[14,-1],[5,-1],[5,-3],[12,-15],[-2,-12],[-21,-21],[-11,-3],[-16,5],[-16,8],[-8,6],[-10,-1],[-45,16],[-34,4],[0,-7],[8,-5],[-4,-8],[-8,-12],[-4,-15],[-4,-27],[0,-17],[4,-16],[14,-16],[22,-10],[47,-5],[0,-7],[-7,-16],[0,-16],[6,-14],[15,-10],[-14,-13],[-3,-24],[2,-24],[3,-40],[3,-14],[4,-13],[5,-9],[6,-5],[10,-6],[7,-4],[11,-22],[18,-11],[19,-8],[13,-7],[5,-9],[5,-12],[1,-14],[-4,-12],[-11,-15],[-3,-6],[-2,-7],[-4,-8],[-8,-17],[-6,-6],[-4,9],[-12,1],[-13,-4],[-10,-6],[41,-17],[3,-10],[3,-11],[6,-7],[-3,-3],[-4,-6],[-2,-3],[10,-5],[27,-1],[12,-7],[-7,-16],[-9,-1],[-8,7],[-10,4],[-2,2],[-8,9],[-3,2],[-6,-1],[-11,-5],[-5,-1],[-38,-25],[-1,-10],[4,-7],[15,-14],[13,-16],[8,-6],[18,-4],[7,-5],[5,-1],[8,-3],[0,-7],[-3,-8],[-3,-4],[0,-20],[1,-12],[4,-14],[6,-9],[0,-1],[8,-8],[4,-10],[-5,-16],[9,-11],[22,-39],[-1,-4],[0,-1],[-1,1],[-2,-2],[3,-15],[-1,-22],[-4,-22],[-5,-14],[-3,-15],[9,-14],[27,-26],[2,-7],[-8,-3],[-4,-4],[-6,-17],[-4,-4],[-7,-6],[-22,-44],[5,-7],[-28,-22],[-7,-9],[-7,-13],[-16,-44],[4,-20],[-2,-4],[-11,-23],[-31,-46],[-3,-17],[1,-14],[6,-26],[2,-14],[-2,-39],[-8,-16],[-39,-56],[-12,-12],[-11,-6],[-10,-12],[-15,-23],[-6,-14],[0,-17],[1,-16],[-1,-12],[-5,7],[-5,4],[-6,2],[-37,-3],[-14,4],[4,16],[-6,-1],[-5,-3],[-5,-4],[-5,-4],[0,-6],[9,-3],[9,-7],[8,-10],[5,-12],[-5,-10],[21,-4],[6,-7],[3,-10],[8,8],[16,23],[0,-6],[-11,-19],[13,-21],[33,-29],[-19,-40],[-8,-10],[-6,-6],[-5,-1],[-6,1],[-9,5],[2,5],[4,4],[6,12],[-1,4],[-7,0],[-4,-1],[-6,-7],[-7,-6],[-2,-2],[-2,-1],[-28,0],[0,6],[14,0],[-9,6],[-7,0],[-11,-6],[-31,-6],[-27,-14],[-11,1],[-17,16],[-12,5],[-48,13],[-46,-6],[-12,2],[0,7],[10,4],[9,8],[6,12],[2,14],[-8,-10],[-11,-9],[-13,-5],[-13,5],[-4,-6],[1,-7],[1,-3],[0,-3],[-2,-7],[7,5],[2,2],[4,0],[-2,-13],[-2,-5],[-5,-6],[5,-1],[4,1],[0,-7],[-2,0],[-4,0],[-3,0],[5,-6],[-46,-25],[-7,-6],[-7,-12],[-9,-7],[-11,6],[6,11],[8,6],[8,4],[7,7],[0,9],[-11,37],[-4,7],[-6,8],[-8,8],[-6,3],[-8,6],[-9,29],[-8,9],[2,-10],[1,-10],[1,-5],[1,-9],[2,-4],[9,-16],[2,-9],[-9,-22],[2,-9],[16,0],[0,-6],[-10,-8],[-19,-22],[-11,-8],[-14,-3],[-30,0],[-14,-3],[4,10],[19,21],[-15,6],[-8,1],[-9,-1],[0,-6],[4,-2],[2,-3],[1,-3],[2,-4],[-6,1],[-9,4],[-5,1],[-8,-2],[-4,-6],[-3,-6],[-4,-5],[-13,-5],[-12,0],[-25,5],[-124,-11],[-44,-21],[-24,-5],[-3,-2],[-3,-5],[-3,-5],[-7,-1],[-4,4],[-3,6],[-2,6],[-2,3],[-11,-3],[-12,-8],[-8,-12],[2,-15],[7,7],[10,1],[11,-2],[20,-8],[4,-1],[1,-4],[-3,-11],[-21,-13],[-2,-28],[-2,-6],[-6,-2],[-6,-1],[-6,-4],[-12,-6],[-34,3],[-14,-6],[-5,-13],[0,-9],[-4,-5],[-68,8],[-2,4],[-1,8],[-3,9],[-8,4],[-1,-3],[-1,-2],[0,-22],[-2,-7],[-8,-13],[-10,-9],[-11,-6],[-13,-1],[19,-15],[8,-3],[-7,-9],[-15,-6],[-27,-5],[-34,-13],[-10,-11],[13,-13],[-11,-5],[-49,-9],[-24,-9],[-41,-3],[-18,1],[-7,0],[-7,1],[-3,3],[2,6],[4,5],[6,3],[6,2],[-1,3],[-3,9],[9,1],[9,3],[9,6],[8,8],[-4,2],[-3,3],[-5,1],[-6,1],[5,11],[3,4],[6,3],[-4,8],[-4,2],[-5,-3],[-6,-7],[-8,5],[-13,3],[-27,-1],[0,6],[-5,4],[-11,-2],[-12,-5],[-12,-3],[-27,1],[-13,-1],[-13,-7],[21,-7],[27,-3],[16,-11],[-11,-29],[24,2],[7,-2],[0,-5],[-4,0],[0,-7],[6,-4],[2,-2],[-9,-2],[-4,-2],[-4,-3],[22,0],[-11,-15],[-2,-3],[1,-5],[3,-5],[1,-5],[-3,-7],[-21,-21],[-7,-10],[-18,-8],[-24,-5],[-8,-6],[-8,-10],[-4,10],[-9,8],[-11,4],[-8,-3],[10,-6],[3,-11],[-3,-10],[-10,-5],[-4,18],[-14,7],[-30,0],[0,-5],[7,-4],[13,-1],[7,-2],[6,6],[4,1],[3,-7],[-2,-5],[-4,-4],[-6,-3],[-4,-1],[-10,-22],[-1,-6],[0,-10],[3,-13],[2,-11],[-9,7],[-9,18],[-9,6],[-11,1],[-31,-8],[-78,7],[10,-9],[11,-3],[23,0],[0,-7],[-4,-3],[-4,-3],[13,-6],[-7,-5],[-4,-7],[-1,-9],[3,-10],[-24,3],[-6,-4],[-5,3],[-4,6],[-5,4],[-24,0],[-7,2],[-5,2],[-4,1],[-5,-5],[-13,6],[-9,-11],[-7,-16],[-6,-10],[-23,-7],[-3,-2],[-3,-10],[-6,2],[-5,7],[-2,4],[-4,2],[-13,8],[-8,2],[-7,0],[-10,-5],[-35,-7],[-9,3],[-14,7],[-8,2],[0,-6],[2,-2],[6,-4],[-5,-11],[-8,-7],[-10,-5],[-10,-2],[-17,4],[-5,-2],[2,-9],[0,-6],[-9,0],[-5,-6],[-3,-7],[-5,-6],[-7,-1],[-6,3],[-6,2],[-8,-4],[0,6],[-1,5],[-2,4],[-1,4],[-18,-9],[-1,-8],[-4,-2],[-5,0],[-6,-3],[-7,-6],[-9,-3],[-21,0],[7,4],[6,5],[5,6],[5,10],[-10,-6],[-7,-3],[-3,3],[6,12],[7,9],[16,9],[8,7],[-2,2],[-1,1],[-1,1],[-1,3],[-5,-5],[-21,-11],[-3,-5],[-6,-7],[-13,-10],[-8,9],[1,9],[4,10],[3,13],[-5,6],[-10,4],[-12,2],[-9,-3],[6,-11],[-18,-8],[-46,-9],[-3,-4],[-1,-9],[-2,-3],[-11,1],[-5,-1],[-12,-10],[-8,-3],[-11,0],[0,10],[-8,10],[-9,4],[-5,-8],[-35,-28],[4,-4],[2,-1],[3,-1],[-44,-19],[1,10],[-5,-2],[-19,-15],[-4,7],[-5,-7],[1,12],[1,4],[3,4],[0,6],[-6,1],[-3,2],[-5,9],[15,4],[11,8],[23,20],[12,7],[23,5],[14,7],[11,8],[29,29],[12,8],[23,9],[14,8],[-30,3],[-125,-56],[-40,-3],[27,16],[6,2],[6,4],[5,9],[6,8],[25,8],[80,38],[8,12],[21,2],[24,12],[24,4],[19,8],[1,15],[4,4],[2,6],[3,2],[0,6],[-9,4],[-10,-5],[-11,-4],[-15,10],[-6,0],[-2,1],[-1,4],[2,11],[-1,4],[-4,4],[-6,4],[-6,3],[-7,2],[3,-12],[-1,-8],[1,-8],[7,-10],[-13,-3],[-9,-6],[-18,-16],[-13,-7],[-13,-4],[-43,-4],[-22,-8],[-82,-10],[-26,-11],[-10,-7],[-1,-2],[0,-3],[-1,-4],[-2,-3],[-3,-2],[-41,-12],[-16,-11],[-7,1],[-13,5],[-6,1],[-30,-4],[-15,-5],[-11,-10],[-4,6],[5,4],[1,5],[0,5],[3,5],[3,3],[44,10],[10,6],[0,4],[0,1],[-2,0],[-2,0],[3,12],[-6,6],[-9,3],[-10,-1],[8,12],[14,2],[26,-2],[15,6],[30,25],[0,7],[-27,0],[12,17],[20,14],[22,9],[17,4],[-2,-4],[-3,-10],[-4,-5],[12,2],[10,5],[8,9],[1,15],[9,-5],[11,-1],[25,0],[0,6],[-5,1],[-13,6],[0,5],[8,5],[17,17],[13,6],[7,13],[4,4],[5,1],[17,-1],[21,5],[38,19],[20,6],[0,7],[-47,-5],[-68,-23],[-12,-7],[-5,-5],[-4,-6],[-22,0],[-10,-3],[4,-7],[-19,-11],[-7,-2],[1,5],[2,10],[1,5],[-9,0],[-5,-4],[-4,-5],[-4,-4],[-7,-2],[-16,-2],[-8,-3],[-28,-19],[-15,-6],[-14,7],[-13,-13],[-17,-11],[-17,-9],[-16,-5],[4,12],[-61,26],[25,7],[6,22],[-12,23],[-26,11],[-7,-5],[-16,-22],[-8,-5],[-8,-4],[-20,-16],[-10,-6],[-3,12],[8,27],[-5,12],[-9,2],[-13,-1],[-8,1],[4,10],[0,5],[-2,1],[-1,0],[-1,1],[1,3],[1,2],[1,3],[1,4],[-2,0],[-5,0],[-2,0],[0,6],[22,3],[53,17],[11,0],[6,2],[2,7],[-1,6],[-2,3],[-9,5],[-6,10],[-6,9],[-12,1],[0,6],[7,4],[16,5],[8,4],[-5,13],[13,6],[18,4],[17,10],[41,17],[62,11],[26,14],[14,31],[5,0],[-1,-16],[7,-7],[9,-2],[9,0],[-2,9],[13,54],[20,-11],[21,-1],[48,6],[-5,3],[-6,7],[-3,2],[22,13],[-128,-6],[8,-19],[-4,-11],[-3,-4],[-3,15],[-7,6],[-8,4],[-10,2],[-19,2],[-87,-20],[-15,-8],[-7,5],[-7,9],[-7,6],[-6,-3],[-5,-5],[-4,-3],[-17,15],[-7,1],[-18,-5],[0,-6],[6,0],[5,-1],[11,-5],[0,-6],[-16,2],[-31,10],[-15,0],[0,-6],[2,-3],[7,-3],[-14,0],[-26,-11],[-13,-2],[-16,5],[-4,11],[-1,16],[-6,18],[5,3],[12,9],[0,6],[-6,7],[7,9],[14,6],[12,4],[-4,-13],[14,-10],[8,-3],[6,3],[2,8],[-2,6],[0,7],[7,8],[-6,4],[-3,1],[6,15],[8,3],[9,0],[13,2],[7,7],[14,20],[8,4],[67,17],[10,-7],[-8,-35],[2,-6],[42,6],[19,10],[17,16],[6,19],[-16,18],[23,0],[7,-3],[-3,-9],[3,-14],[1,-14],[2,-12],[10,-4],[10,-2],[20,-8],[22,-4],[27,0],[9,4],[13,15],[8,4],[8,-3],[-5,-3],[-4,-3],[11,-6],[47,6],[-11,9],[-9,2],[-20,1],[-21,10],[-10,2],[-10,-6],[-4,5],[-4,5],[-3,7],[-1,9],[8,-7],[6,-4],[7,0],[9,4],[-8,5],[-4,1],[-6,1],[0,6],[7,0],[16,6],[-7,15],[2,45],[-11,9],[-34,6],[-18,7],[-12,12],[10,8],[12,4],[44,3],[64,25],[9,7],[10,12],[11,6],[17,0],[16,-4],[11,-5],[-2,12],[-8,6],[-10,2],[-11,-1],[4,5],[1,4],[-1,5],[-4,5],[0,6],[5,6],[1,5],[-1,11],[2,6],[15,16],[4,-3],[4,3],[5,4],[7,3],[27,-7],[51,0],[5,-2],[6,-4],[7,-2],[6,5],[5,6],[4,3],[5,0],[49,-1],[3,0],[5,-2],[10,4],[41,0],[23,4],[10,3],[9,8],[9,6],[79,21],[12,7],[5,-10],[12,-2],[13,2],[9,4],[4,5],[4,9],[5,8],[8,3],[113,13],[22,6],[-12,0],[-42,15],[-22,4],[-42,-6],[-11,2],[-7,4],[-1,6],[8,6],[0,6],[-2,8],[1,11],[-2,10],[-10,3],[6,7],[7,12],[5,6],[-17,-4],[-20,-10],[-16,-12],[-1,-12],[-21,-34],[-57,-67],[-12,-6],[-58,-5],[-3,-3],[-11,-12],[-6,-4],[-8,-1],[-8,1],[-8,2],[-7,4],[11,8],[14,8],[10,10],[0,12],[-20,-11],[-47,-13],[-33,-1],[-14,3],[-13,4],[-5,8],[-5,6],[-22,2],[-8,8],[3,14],[-7,5],[-24,0],[0,-7],[6,-1],[5,-4],[5,-6],[2,-7],[-49,-20],[-28,-5],[-14,-6],[-6,-10],[-2,-13],[-5,-1],[-6,3],[-5,2],[-17,-11],[-116,-14],[0,5],[12,5],[27,17],[34,8],[131,108],[-2,4],[-3,9],[7,3],[10,6],[6,3],[8,2],[20,-2],[8,1],[12,5],[7,1],[6,4],[3,8],[2,11],[5,8],[-4,4],[0,1],[2,1],[2,6],[-5,7],[7,3],[7,6],[7,8],[5,8],[4,8],[2,7],[3,6],[5,4],[0,6],[1,12],[40,34],[8,17],[-12,4],[-51,-3],[-17,5],[18,16],[8,9],[19,27],[6,7],[7,4],[-5,6],[35,56],[14,13],[11,16],[8,19],[12,16],[13,5],[16,-8],[30,-24],[14,-5],[12,4],[14,7],[14,3],[16,-8],[1,15],[-9,8],[-28,8],[0,7],[38,6],[10,-4],[20,-13],[12,-2],[0,6],[-27,13],[0,7],[15,-6],[8,-1],[8,7],[7,3],[5,-1],[-3,-9],[6,-8],[7,-5],[8,-4],[10,-2],[-6,19],[-3,7],[-4,5],[8,14],[10,10],[22,14],[-7,0],[-12,-5],[-6,-1],[-64,2],[-9,4],[12,6],[29,6],[13,1],[0,6],[-19,0],[0,6],[6,5],[17,4],[9,3],[0,7],[-52,6],[-13,-2],[-22,-9],[-210,-14],[-20,-9],[-10,-6],[-14,-3],[-27,0],[-14,5],[-7,9],[-6,9],[-9,7],[13,16],[-5,11],[-11,0],[-6,-17],[-3,-20],[-7,-12],[-10,-1],[-11,11],[0,7],[13,19],[-5,41],[12,8],[3,-1],[6,-4],[5,-1],[2,2],[4,9],[2,2],[2,3],[-26,22],[7,6],[24,12],[-23,1],[-12,-1],[-9,-6],[8,-11],[1,-16],[-5,-13],[-13,-4],[-11,10],[3,17],[6,16],[0,7],[-4,2],[-3,3],[-2,2],[-4,-3],[-9,-10],[-8,-3],[-5,-7],[-7,-14],[-16,-24],[-10,-11],[-30,-11],[-11,0],[-11,10],[-12,10],[-29,-6],[-10,6],[3,4],[3,11],[2,11],[2,6],[4,4],[6,1],[9,1],[11,2],[26,15],[10,8],[0,6],[-23,0],[0,7],[14,5],[0,6],[-10,0],[-7,-2],[-14,-9],[0,-7],[-9,-5],[-9,1],[-4,11],[3,8],[13,7],[6,10],[-9,-2],[-5,-4],[-4,-5],[-6,-3],[-6,2],[-6,4],[-6,0],[-7,-6],[-2,-8],[2,-11],[0,-8],[-7,-4],[-7,-1],[-11,-4],[-26,0],[-8,2],[-8,3],[-6,8],[-4,8],[-5,7],[-9,2],[-26,-4],[-15,2],[-10,8],[-5,-4],[-5,-2],[-12,0],[6,15],[7,10],[9,5],[14,2],[24,-4],[10,1],[10,9],[0,7],[-8,0],[-6,4],[-5,6],[-3,8],[14,-2],[16,-6],[13,-2],[5,10],[-13,-1],[-24,4],[-24,9],[-14,13],[0,6],[-4,11],[-6,10],[-6,5],[-18,-5],[-8,0],[-6,5],[14,11],[16,0],[15,-5],[16,0],[-1,4],[-2,10],[-1,4],[28,0],[29,-6],[4,-4],[10,-14],[6,2],[9,12],[7,4],[-40,22],[-9,11],[24,5],[51,-5],[18,5],[22,11],[9,1],[7,-2],[14,-9],[30,-4],[51,-3],[0,6],[-11,4],[-45,-3],[-28,9],[-53,28],[-9,40],[4,20],[7,15],[4,14],[-6,17],[6,3],[25,4],[17,6],[16,1],[7,2],[6,6],[4,1],[13,-8],[7,-2],[120,18],[0,7],[-9,1],[-26,11],[3,2],[3,2],[3,2],[4,0],[0,7],[-3,7],[7,8],[22,16],[-5,0],[-12,6],[5,4],[4,5],[3,8],[1,8],[-4,-1],[-3,-1],[-2,-1],[-4,-3],[-18,6],[-93,0],[-63,-30],[-35,-7],[-22,19],[8,5],[4,26],[11,6],[-2,9],[0,4],[2,6],[0,6],[-5,0],[0,6],[31,7],[6,-3],[14,-8],[9,-2],[8,-5],[2,-22],[8,-4],[5,2],[0,8],[-1,10],[3,11],[-6,5],[-6,7],[-6,5],[-9,2],[0,-6],[4,-7],[-7,2],[-5,7],[-7,23],[0,4],[0,4],[-3,4],[-4,1],[-11,-1],[-2,3],[-2,6],[-5,5],[-5,7],[-2,14],[3,14],[7,4],[9,2],[7,8],[-9,4],[0,5],[6,5],[8,4],[-5,7],[18,13],[-6,4],[-7,0],[-17,-4],[2,-8],[-1,-3],[-4,-1],[-6,-1],[0,-7],[4,0],[-19,-19],[-18,-3],[-16,11],[-13,24],[12,-1],[30,8],[11,5],[-19,12],[-8,9],[-4,11],[4,-2],[9,-3],[4,-2],[-8,11],[-22,21],[8,-5],[8,0],[6,4],[4,7],[-33,24],[-15,5],[-10,-10],[10,-10],[-4,-7],[-11,-4],[-12,2],[6,-9],[3,-3],[0,-6],[-10,1],[-8,-2],[-13,-6],[0,-6],[8,-3],[3,-5],[2,-17],[-6,-1],[-12,-6],[8,-5],[8,-8],[2,-8],[-11,-4],[-12,1],[-10,4],[-6,9],[-1,18],[4,10],[15,26],[3,11],[2,16],[6,8],[7,6],[7,11],[-20,1],[-8,3],[-7,8],[12,0],[6,8],[3,13],[6,10],[7,6],[28,13],[3,4],[1,5],[3,4],[6,0],[4,-3],[2,-5],[1,-6],[2,-5],[8,-5],[11,-5],[12,-1],[9,5],[5,-7],[5,-4],[6,0],[6,4],[1,-3],[0,-1],[1,-1],[3,0],[-14,-23],[-16,-11],[-16,2],[-16,13],[-4,-18],[10,-5],[15,-1],[12,-5],[10,-6],[9,7],[9,10],[9,5],[-8,11],[4,15],[10,12],[10,6],[14,-3],[23,-14],[14,-2],[-4,8],[-5,5],[-13,6],[0,6],[6,2],[6,1],[14,-3],[-12,6],[-34,7],[-7,9],[-3,13],[1,7],[38,8],[13,-3],[25,-13],[13,-3],[110,-6],[8,1],[12,4],[7,1],[6,-1],[9,-8],[5,-3],[51,-6],[6,1],[8,4],[8,5],[4,5],[7,4],[7,-1],[29,-11],[6,-1],[5,-4],[5,-17],[4,-4],[11,2],[7,2],[1,2],[4,-7],[1,-7],[-1,-7],[-4,-4],[0,-6],[14,-6],[0,-7],[-12,-7],[3,-9],[31,-23],[8,-11],[5,-14],[0,-18],[4,0],[1,17],[2,14],[1,13],[-4,13],[15,5],[14,12],[11,19],[5,24],[10,15],[21,2],[40,-8],[4,2],[4,3],[3,1],[8,-5],[11,-6],[10,-3],[15,-8],[9,-2],[32,0],[14,3],[14,9],[17,-11],[40,6],[18,-7],[4,-9],[2,-11],[4,-8],[18,-7],[8,-6],[13,-17],[9,6],[10,2],[21,-1],[0,6],[-9,4],[-12,3],[-10,5],[-5,10],[-4,8],[-9,5],[-12,3],[-10,0],[0,7],[4,4],[8,11],[5,3],[15,-5],[8,-2],[4,4],[8,4],[45,-7],[-10,11],[-12,8],[-12,4],[-12,2],[-13,-1],[-5,3],[-2,7],[4,9],[8,-2],[15,-10],[12,6],[-4,9],[-14,7],[-14,3],[-64,0],[-4,3],[-1,10],[3,7],[7,6],[7,4],[19,4],[75,44],[11,3],[4,3],[2,7],[0,19],[3,15],[4,-3],[5,-9],[2,-6],[3,-1],[1,-6],[19,11],[19,8],[2,0],[52,9],[9,1],[29,17],[20,4],[0,7],[-21,1],[-9,3],[-9,9],[35,24],[-1,18],[30,23],[-2,22],[7,-3],[4,-4],[5,-4],[8,-1],[8,29],[3,8],[-2,2],[-1,1],[-1,3],[-13,-10],[-12,-5],[-45,-7],[-23,-15],[-14,-6],[0,5],[7,8],[1,9],[-4,6],[-10,3],[-9,-4],[-17,-18],[-17,-6],[-30,-28],[-8,-6],[-9,-5],[-10,-2],[0,6],[16,15],[10,7],[12,3],[9,7],[-2,13],[-8,8],[-10,-9],[-4,0],[2,20],[-9,0],[-11,-12],[-5,-17],[-3,-6],[-7,5],[-6,7],[-3,7],[1,4],[-1,3],[-5,2],[-4,-1],[-7,-4],[-4,-1],[-16,-1],[-8,-3],[-6,-12],[-9,2],[-13,7],[-49,0],[-11,7],[5,8],[-6,5],[-53,17],[-12,0],[3,4],[1,3],[2,3],[3,3],[0,6],[-8,4],[-5,7],[2,6],[9,2],[9,1],[8,3],[5,7],[2,11],[7,7],[46,27],[17,6],[65,-2],[34,-9],[17,0],[0,5],[-45,10],[-12,10],[10,4],[29,1],[7,-3],[8,-11],[11,-10],[11,-6],[12,5],[-34,29],[-24,7],[-24,14],[-15,1],[3,9],[5,2],[6,0],[8,1],[6,4],[9,10],[7,5],[13,-11],[14,-1],[30,5],[36,-12],[14,0],[0,6],[-12,2],[-14,5],[-10,10],[0,15],[9,8],[26,-4],[9,2],[-8,6],[-8,16],[-8,4],[-12,0],[-4,0],[-2,-5],[-1,-6],[0,-6],[-1,-3],[-18,1],[-15,13],[-12,19],[-8,17],[8,5],[6,-2],[6,-6],[9,-3],[9,1],[8,3],[16,9],[-19,6],[-14,12],[-25,25],[0,7],[6,4],[6,2],[8,-1],[7,-5],[7,9],[1,3],[-4,0],[4,13],[5,3],[6,-1],[7,4],[13,22],[5,3],[6,-5],[2,-22],[6,-4],[3,4],[5,16],[5,5],[-7,27],[-3,16],[3,7],[8,6],[10,29],[6,9],[10,1],[37,-13],[12,1],[19,9],[11,2],[-4,-8],[-4,-6],[-4,-6],[-1,-8],[3,-5],[8,5],[19,23],[39,20],[13,4],[9,7],[6,15],[8,13],[14,2],[18,-11],[-6,-10],[-29,-16],[0,-7],[27,12],[4,-2],[4,-4],[10,0],[10,4],[6,4],[9,-14],[0,-5],[-2,-11],[5,2],[10,6],[10,3],[-3,-9],[-5,-6],[-7,-3],[-8,-1],[0,-7],[12,1],[8,-2],[5,0],[7,8],[7,16],[-2,10],[-14,17],[-4,19],[10,11],[17,10],[17,16],[1,-4],[1,0],[2,-2],[-14,-43],[-1,-7],[1,-1],[2,-4],[3,-4],[5,-3],[5,0],[7,6],[6,1],[8,-4],[14,-7],[12,-9],[5,-9],[2,-3],[5,-12],[2,-7],[0,-7],[-3,-16],[-1,-8],[5,8],[10,24],[5,5],[2,7],[-4,14],[-6,14],[-3,6],[-1,9],[-3,12],[-6,10],[-8,3],[-5,-7],[1,-13],[4,-14],[4,-10],[-9,2],[-6,5],[-5,7],[-6,5],[-19,5],[-8,6],[2,11],[18,29],[0,5],[23,-3],[10,3],[23,17],[9,2],[11,-3],[6,-9],[6,-9],[5,-4],[4,-7],[-2,-14],[-2,-14],[-2,-5],[4,-9],[8,-6],[19,-7],[0,-11],[5,-12],[8,-10],[7,-5],[9,-7],[1,-15],[-4,-15],[-6,-6],[-10,-3],[-7,-5],[-12,-12],[-36,-18],[0,-7],[39,6],[13,-5],[-7,-19],[-8,-7],[-32,-19],[-22,-25],[-9,-6],[0,-6],[13,3],[12,7],[61,48],[7,1],[6,10],[13,5],[15,3],[11,4],[8,12],[4,14],[-3,13],[-12,6],[-3,3],[3,9],[7,13],[0,21],[-5,2],[-26,33],[-15,10],[-5,5],[-3,6],[-2,10],[0,9],[14,11],[7,16],[2,18],[-7,15],[11,-1],[9,-4],[10,-1],[10,6],[-2,3],[-1,2],[0,2],[-1,5],[13,-9],[13,-7],[15,1],[24,21],[13,4],[13,-6],[10,-16],[-13,-1],[-5,1],[13,-8],[14,-5],[14,-1],[13,8],[-41,27],[-20,20],[-1,21],[-17,8],[-8,6],[-6,6],[10,5],[12,-2],[22,-10],[45,-13],[10,-1],[25,-11],[9,-6],[33,-41],[10,-7],[32,-12],[24,-4],[29,-10],[14,-8],[14,5],[9,-14],[-2,-19],[-19,-9],[-18,-3],[-22,-8],[-20,-11],[-22,-17],[-22,-10],[-17,-4],[-9,-7],[-28,-32],[-10,-15],[-8,-17],[-2,-3]],[[4167,4717],[-6,-17],[10,-1],[30,7],[11,-1],[28,-12],[23,-2],[22,2],[7,5],[14,15],[10,5],[0,12],[5,17],[7,15],[8,6],[7,9],[4,41],[4,13],[10,1],[28,-15],[13,-5],[84,4],[74,28],[44,2],[11,7],[10,11],[13,9],[14,6],[14,2],[23,-12],[16,-4],[24,13],[16,-3],[63,-29],[11,-2],[14,2],[25,8],[12,2],[26,-4],[12,-5],[6,-6],[5,-3],[24,-22],[7,-9],[-3,-51],[-4,-15],[-9,-20],[5,-8],[12,-2],[12,1],[8,-1],[10,-3],[8,-6],[5,-9],[-1,-16],[-12,-34],[2,-6],[18,-3],[18,-7],[15,-12],[13,-16],[3,-6],[4,-15],[4,-7],[4,-4],[11,-7],[5,-5],[6,-7],[5,-9],[5,-11],[2,-13],[7,-26],[16,-8],[19,-6],[16,-19],[4,0],[-12,19],[-41,36],[10,16],[19,-5],[20,-14],[12,-15],[8,-29],[-2,-25],[-9,-21],[-14,-13],[-19,-8],[-39,-9],[-17,-8],[-17,-13],[-13,-13],[-15,-24],[-8,-12],[8,-5],[2,-8],[1,-8],[2,-4],[8,-1],[5,5],[3,5],[7,6],[14,19],[7,6],[23,9],[22,14],[14,5],[10,-3],[10,-7],[14,-1],[78,11],[3,-3],[8,-13],[7,-3],[6,-2],[2,-5],[1,-8],[2,-9],[10,-32],[7,-13],[11,-6],[5,-7],[4,-36],[2,-13],[21,-26],[4,-2],[-5,-9],[1,-5],[2,-4],[0,-4],[-3,-6],[-13,-16],[-4,-11],[5,-15],[-3,-15],[-6,-8],[-9,-6],[-3,-7],[9,-10],[-9,-5],[-8,-12],[-9,-2],[-8,7],[-6,13],[-6,18],[-8,3],[-7,8],[-5,10],[-1,10],[5,11],[15,16],[3,14],[-3,28],[-7,21],[-11,16],[-45,35],[-17,8],[-20,1],[0,-6],[5,-9],[-2,-9],[-5,-8],[-6,-5],[9,-1],[7,-3],[6,-5],[4,-3],[24,-2],[8,-5],[-11,-3],[-14,-2],[-4,-5],[20,-9],[-4,-11],[1,-10],[3,-8],[9,-2],[-1,-4],[-1,-3],[-3,-6],[5,-6],[-18,-47],[-5,-9],[-24,-16],[-7,-9],[26,8],[30,14],[27,7],[19,-17],[7,-35],[-8,-26],[-17,-21],[-22,-18],[-3,-1],[-7,2],[-3,-1],[-4,-19],[-5,-3],[-6,-2],[-5,1],[-2,7],[-8,7],[-37,3],[-28,-2],[-28,-9],[-12,-2],[-13,-4],[-4,-11],[1,-32],[0,-3],[-1,-17],[-4,-19],[-6,-18],[-7,-15],[-11,-12],[-27,-12],[-20,-18],[-28,-17],[-9,-4],[-25,-1],[-10,1],[-11,7],[0,6],[13,5],[5,1],[-50,16],[-8,0],[-8,17],[-17,5],[-19,1],[-14,5],[-4,-6]],[[4861,4931],[2,-10],[-4,-11],[-7,-11],[-4,-5],[1,7],[0,4],[1,4],[2,4],[-15,10],[-16,1],[-16,-1],[-15,2],[7,5],[8,4],[7,3],[9,1],[33,-4],[7,-3]],[[5544,5055],[-29,-4],[-35,3],[-30,8],[-27,14],[-26,18],[0,7],[-1,6],[-5,24],[-3,7],[0,6],[3,3],[2,2],[1,3],[3,4],[-16,19],[-12,18],[-6,22],[3,29],[9,20],[16,20],[20,14],[21,3],[-1,3],[-2,7],[-1,3],[17,1],[5,-1],[42,-17],[12,-9],[13,-17],[9,-19],[13,-45],[-8,-13],[28,-23],[2,-20],[-6,-3],[-10,-1],[-6,-3],[4,-12],[5,-3],[27,-10],[-15,-8],[1,-12],[7,-15],[2,-15],[-9,-8],[-17,-6]],[[5614,5320],[-4,-6],[-8,0],[-7,8],[-7,16],[-42,32],[-7,16],[-8,25],[-1,12],[-22,12],[-4,7],[-6,14],[-8,16],[1,14],[21,9],[20,-14],[20,-17],[6,-3],[6,-1],[4,-3],[4,-20],[4,-5],[6,-2],[6,-4],[8,-12],[6,-12],[4,-12],[7,-29],[-1,-5],[-4,-5],[-7,-13],[7,-3],[5,-7],[1,-8]],[[4907,5413],[3,-27],[3,-9],[10,-9],[9,-8],[6,-3],[3,-3],[-1,-8],[-3,-8],[-1,-6],[3,-5],[5,-3],[10,-4],[-2,-11],[1,-10],[2,-9],[3,-8],[0,-5],[-7,-4],[-7,-3],[-5,-6],[-3,-7],[-4,7],[-12,-15],[-15,-10],[-17,-8],[-18,-5],[-27,4],[-9,-4],[-4,-19],[-3,-4],[-6,-5],[-17,-11],[-16,-5],[-16,4],[-9,21],[4,21],[14,13],[35,16],[-14,32],[-8,8],[-25,10],[-6,0],[3,17],[17,17],[29,22],[-14,6],[-19,3],[-18,-3],[-13,-9],[-15,-31],[-9,-15],[-21,-12],[-21,-25],[-8,-7],[-18,-3],[-8,9],[1,15],[8,16],[-3,2],[-3,3],[-3,2],[7,15],[29,34],[-22,13],[8,6],[6,6],[2,8],[1,14],[2,12],[5,7],[23,14],[35,12],[8,7],[7,5],[9,-3],[-5,-6],[-8,-26],[0,-6],[5,-16],[5,-7],[8,-2],[0,7],[-5,18],[14,20],[20,17],[24,11],[16,17],[8,4],[9,2],[10,5],[8,6],[6,6],[7,-2],[4,-4],[2,-5],[3,-39],[8,-51]],[[4887,5670],[-20,-28],[-8,-18],[2,-17],[-13,-7],[-18,-4],[-17,0],[-14,6],[10,6],[5,11],[3,12],[6,11],[14,14],[4,5],[4,4],[11,-4],[5,4],[-2,3],[-1,3],[-2,6],[11,1],[10,4],[7,-1],[3,-11]],[[5116,5586],[-55,-86],[-14,-36],[-7,2],[-16,-16],[-10,-5],[-5,-7],[-6,-35],[-5,-14],[-16,-9],[-26,1],[-23,12],[-10,23],[-6,44],[2,16],[6,15],[10,6],[11,5],[10,9],[19,12],[51,8],[21,15],[-15,0],[-24,-5],[-22,-1],[-9,15],[8,20],[18,24],[20,20],[13,8],[19,5],[50,38],[33,27],[19,10],[14,-5],[3,-9],[1,-12],[0,-11],[-11,-8],[-9,-14],[-13,-11],[-26,-51]],[[5151,5716],[-15,-1],[7,15],[10,8],[22,14],[5,-7],[5,-14],[-14,-9],[-20,-6]],[[5224,5808],[2,-13],[-5,-13],[-7,-13],[-6,-29],[-6,6],[-13,25],[7,8],[7,22],[8,7],[3,-3],[4,-2],[3,0],[3,5]],[[5242,5865],[-3,-11],[-7,-7],[-3,-8],[4,-12],[-15,-7],[-12,6],[-4,15],[9,18],[8,5],[15,-2],[8,3]],[[5295,5952],[-10,-15],[-11,-11],[-14,-5],[-18,0],[3,9],[4,6],[11,10],[20,-1],[9,2],[6,5]],[[4870,5997],[-34,-2],[-16,2],[-17,12],[7,9],[7,6],[8,4],[9,0],[10,-8],[19,-13],[7,-10]],[[4404,5974],[-14,-1],[-40,15],[-6,10],[-4,15],[-6,15],[14,6],[43,6],[15,4],[24,12],[14,3],[34,10],[16,-1],[8,-16],[-9,-11],[-39,-4],[-1,-15],[-13,-9],[-15,-2],[-13,-5],[-12,-16],[4,-16]],[[4952,6133],[16,-18],[26,-50],[2,-6],[0,-6],[2,-5],[7,-1],[64,0],[5,-4],[5,-5],[5,-4],[10,6],[6,1],[7,-1],[4,-3],[15,-18],[5,-4],[6,-1],[12,1],[5,0],[7,-4],[9,-9],[7,-10],[3,-12],[5,-2],[9,2],[7,-3],[-3,-18],[-6,3],[-5,1],[-12,2],[6,-6],[9,-13],[5,-13],[-8,-6],[-21,0],[-10,4],[2,9],[-4,4],[-4,2],[-5,1],[-5,-1],[2,-12],[-7,-11],[-22,-14],[0,-7],[11,6],[11,4],[25,3],[10,-4],[-4,-10],[-11,-11],[-58,-31],[-25,-5],[-21,11],[4,3],[7,6],[6,8],[1,8],[-5,5],[-8,-1],[-16,-4],[-3,-3],[-4,-6],[-4,-7],[-6,-3],[-22,-4],[-52,-21],[-11,-9],[-7,-5],[-8,1],[-8,5],[-8,2],[-6,-2],[-15,-8],[-7,-3],[-60,0],[-4,-3],[-3,-6],[-4,-7],[-7,-3],[-8,1],[-13,3],[-18,9],[-12,10],[-9,14],[-4,17],[6,13],[14,7],[16,3],[13,-2],[10,-9],[9,-14],[9,-8],[12,7],[0,6],[-5,1],[-3,1],[-2,2],[-4,2],[12,4],[29,-5],[10,4],[11,9],[45,7],[29,17],[12,10],[-4,4],[-13,-3],[-38,-16],[-31,-6],[-16,0],[-13,9],[-3,10],[3,9],[6,7],[8,3],[8,1],[5,5],[9,19],[2,6],[3,7],[6,5],[6,2],[23,-2],[39,15],[7,5],[4,9],[1,9],[-3,7],[-6,6],[-42,-17],[-14,-2],[-4,-2],[-6,-4],[-6,-2],[-6,5],[-10,19],[-6,8],[-8,7],[-13,6],[-61,8],[-12,5],[-11,6],[-9,7],[31,18],[-5,9],[-14,11],[-4,11],[24,2],[11,4],[10,7],[6,-7],[5,-3],[6,0],[5,4],[1,17],[19,12],[26,6],[21,2],[9,-5],[30,-7],[-1,-4],[-2,-10],[-1,-5],[20,-1]],[[4609,6115],[-34,-22],[-11,-3],[-15,6],[-8,0],[-3,-9],[-3,-9],[-5,5],[-7,11],[-3,9],[18,2],[17,13],[29,38],[7,7],[21,13],[15,5],[20,13],[10,3],[18,2],[6,-2],[-4,-10],[-6,-9],[-9,-18],[-5,-7],[-5,-6],[-5,-4],[-6,-2],[-8,-1],[-24,-25]],[[4080,6470],[5,-4],[-18,0],[-6,-3],[-5,-6],[-5,-4],[-5,-3],[-5,-2],[4,-9],[-6,-6],[-10,-3],[-10,-2],[-42,7],[-10,4],[0,8],[8,9],[11,4],[7,4],[3,10],[-1,10],[-7,7],[16,9],[15,3],[12,7],[6,25],[2,0],[3,-1],[4,-5],[4,-1],[4,-1],[2,-2],[3,-2],[-9,-16],[-4,-4],[21,-8],[5,-4],[3,-6],[2,-8],[3,-7]],[[4799,6498],[0,-7],[17,0],[-8,-33],[-13,-19],[-18,-9],[-24,-2],[-12,5],[-11,22],[-9,5],[-9,4],[-21,16],[-12,5],[39,35],[20,12],[25,3],[34,-17],[14,-12],[-12,-8]],[[4640,6528],[-21,-3],[-21,1],[-16,3],[10,6],[22,11],[12,2],[8,-5],[15,-3],[8,-5],[-17,-7]],[[5022,6748],[-22,-6],[-17,5],[-14,12],[-4,13],[15,7],[22,-3],[17,-14],[3,-14]],[[4099,6855],[58,-32],[-6,-3],[-4,0],[-13,3],[0,-6],[14,-2],[21,-15],[14,-2],[0,-6],[-18,-7],[-14,5],[-12,9],[-26,12],[-13,15],[-13,10],[-15,-6],[4,-3],[5,-4],[3,-5],[1,-4],[2,-8],[5,-2],[6,1],[5,-1],[16,-6],[2,-2],[9,-11],[9,-3],[20,-1],[10,-2],[8,-6],[6,-8],[7,-5],[11,1],[-4,-13],[-6,-6],[-7,-3],[-8,-7],[-4,-8],[-6,-19],[-5,-7],[-13,-5],[-49,11],[0,-6],[41,-10],[12,-9],[5,-14],[3,-19],[-1,-18],[-7,-11],[-12,5],[-12,2],[-25,-1],[0,-6],[12,-2],[23,3],[10,-1],[11,-7],[7,-10],[8,-8],[13,-1],[0,-5],[-15,-13],[-53,9],[-20,-9],[-19,17],[-6,10],[-16,48],[-3,14],[4,11],[0,6],[-11,12],[-7,5],[-8,2],[8,7],[5,7],[8,17],[3,10],[2,8],[3,5],[8,2],[5,13],[-8,27],[-17,42],[13,7],[29,11],[7,1]],[[4138,6925],[5,-2],[6,-1],[8,1],[-2,-4],[0,-1],[-1,1],[-2,-2],[5,-4],[6,1],[5,2],[6,1],[5,-2],[17,-11],[-4,-5],[-9,4],[-14,-10],[-12,-1],[3,-9],[6,-4],[15,0],[9,-2],[5,-7],[-1,-6],[-56,-12],[-17,3],[-50,23],[-8,11],[4,17],[8,14],[13,9],[15,0],[8,-4],[8,-2],[8,1],[7,5],[4,-4]],[[4985,6936],[-3,-14],[-10,-27],[-10,-31],[1,-28],[5,-7],[9,-15],[3,-15],[-10,-7],[-11,-3],[-10,-6],[-11,-3],[-11,5],[2,7],[1,3],[2,3],[-7,8],[-1,15],[5,59],[5,15],[10,8],[19,1],[0,7],[-5,4],[-3,5],[-5,9],[7,6],[6,1],[14,-7],[0,7],[-10,13],[6,-2],[5,-2],[4,-4],[3,-5]],[[4994,6970],[0,-15],[-10,4],[-4,10],[2,12],[7,11],[-2,3],[-1,1],[-1,3],[4,6],[5,4],[4,0],[5,-4],[-9,-35]],[[2,7027],[-1,0],[-1,0],[1,1],[1,0],[0,-1]],[[4205,7080],[10,-5],[20,8],[8,-5],[10,0],[14,0],[12,-6],[6,-11],[-7,-5],[-11,-15],[-4,-4],[-9,1],[-7,6],[-5,7],[-4,4],[-7,2],[-15,11],[-29,0],[0,-7],[8,0],[4,-2],[1,-4],[-4,-6],[0,-7],[19,1],[6,-4],[2,-12],[4,-9],[11,0],[20,6],[-12,-20],[-16,-9],[-38,-3],[-4,-1],[-10,-5],[-4,0],[-4,4],[-6,12],[-3,3],[-9,-2],[-27,-17],[0,-7],[47,0],[38,9],[13,-2],[11,-3],[4,-3],[2,-6],[-2,-6],[-13,-19],[-27,1],[-13,-2],[-11,-6],[-10,6],[-23,-1],[-11,2],[-6,3],[-3,2],[-7,11],[-3,5],[-3,5],[-5,4],[6,1],[12,6],[-21,2],[-39,19],[-20,4],[-4,-6],[-5,-4],[-4,-2],[-5,1],[-8,4],[-11,3],[-29,17],[0,6],[14,8],[10,15],[9,19],[11,15],[14,-6],[44,6],[0,-7],[-5,0],[-13,-6],[12,-12],[19,15],[20,23],[15,11],[0,-6],[-4,-3],[-3,-4],[-6,-11],[35,-12],[14,-1],[0,6],[-4,1],[-9,6],[13,4],[31,18],[18,2],[8,-9],[2,-8],[-4,-8],[-11,-6]],[[4773,7124],[5,-10],[6,-5],[15,-10],[6,-6],[16,-21],[2,-4],[29,-19],[12,-12],[7,-9],[3,-8],[6,-63],[6,-27],[1,-13],[-1,-14],[-6,-21],[-1,-12],[-4,-7],[-17,-13],[-6,-8],[8,6],[11,6],[11,3],[10,-2],[5,-10],[-3,-9],[-7,-7],[-4,-6],[3,-15],[10,-9],[9,-7],[5,-7],[-5,-8],[-22,-10],[-9,-6],[56,6],[14,-4],[3,-7],[-8,-8],[-16,-6],[0,-7],[18,2],[14,5],[13,2],[15,-12],[6,-3],[8,-1],[17,1],[9,-3],[6,-9],[5,-8],[4,-5],[9,-1],[6,4],[4,6],[3,4],[27,-1],[19,14],[18,5],[19,0],[11,-12],[48,0],[-11,-22],[0,-6],[3,-10],[-2,-9],[-5,-7],[-13,-14],[-24,-16],[-10,-3],[-25,-2],[-5,-7],[-1,-20],[-6,-12],[-14,-9],[-14,-6],[-6,-4],[-5,-7],[-38,-42],[-10,-8],[-12,-6],[-35,-6],[-9,4],[-6,12],[2,15],[18,20],[-2,8],[0,7],[4,2],[1,2],[3,9],[2,4],[5,4],[11,17],[6,7],[7,5],[63,24],[0,7],[-18,-8],[-18,-4],[-55,-1],[-4,3],[-1,5],[0,6],[-1,5],[-16,20],[-8,9],[-8,3],[3,-10],[3,-7],[7,-15],[-6,-13],[-5,-6],[-6,-5],[4,-7],[-8,-8],[-5,-10],[-6,-9],[-10,-4],[-8,7],[-4,16],[-2,19],[-1,14],[-6,5],[-3,1],[-4,-2],[-5,-4],[-5,5],[-5,4],[-6,3],[-6,0],[0,-6],[9,-7],[-11,-6],[-91,-18],[0,7],[7,4],[20,20],[0,6],[-12,1],[-12,-3],[-11,-4],[-10,-6],[-12,15],[-10,16],[7,3],[6,3],[5,5],[4,8],[-29,-3],[-11,3],[-31,31],[-1,3],[-4,9],[-2,4],[-3,4],[-3,2],[-2,3],[-2,7],[30,16],[12,4],[15,-2],[11,-7],[12,-11],[13,-10],[18,-3],[-9,12],[-40,26],[-9,8],[-4,3],[-7,1],[-8,-1],[-14,-5],[-8,0],[10,6],[0,7],[-6,1],[-12,5],[5,1],[1,2],[2,3],[-6,3],[-4,5],[-1,7],[3,10],[-10,-2],[-13,-12],[-8,-4],[3,8],[1,8],[-2,8],[-6,7],[-6,-12],[-7,-4],[-8,-2],[-6,-7],[-1,-11],[7,-16],[-1,-11],[-11,-7],[-59,16],[-15,8],[-13,11],[-4,13],[-6,24],[-27,15],[-7,21],[40,0],[-9,8],[-6,10],[-1,11],[4,11],[9,10],[7,3],[6,-3],[34,-39],[4,-8],[6,-6],[12,-7],[8,-2],[-3,12],[0,5],[2,2],[3,3],[3,2],[-11,10],[-2,2],[-2,3],[-6,7],[-1,3],[2,4],[6,2],[1,3],[5,5],[12,-1],[19,-7],[-6,16],[-17,15],[-20,10],[-16,3],[9,9],[7,14],[1,13],[-7,8],[0,7],[13,0],[9,-7],[7,-9],[15,-7],[2,-7],[1,-9],[2,-6],[6,-5],[4,-3],[31,-13],[7,-5],[7,-8],[9,-8],[9,1],[9,3],[11,1],[-15,-27],[6,-2],[14,14],[8,18],[8,-4],[50,-50],[0,7],[-4,3],[-3,6],[-3,3],[1,13],[-9,11],[-22,20],[-11,20],[2,9],[9,9],[8,19],[-8,-1],[-7,1],[-7,2],[-4,4],[3,12],[-4,8],[-5,5],[-3,6],[-1,11],[1,3],[5,1],[26,13],[4,3],[6,11],[3,11],[5,7],[8,-3],[5,1],[2,2],[3,3]],[[4217,7135],[-19,-6],[-15,1],[28,23],[12,2],[6,-10],[-12,-10]],[[3312,7220],[-14,-3],[-13,7],[-6,19],[10,-6],[23,-3],[11,-4],[-11,-10]],[[4329,7318],[0,-20],[-8,-3],[-23,11],[-2,-10],[-5,-6],[-6,-3],[-9,-1],[1,8],[0,2],[-1,3],[27,20],[14,5],[12,-6]],[[4417,7627],[21,-18],[6,4],[6,-5],[5,-6],[4,-6],[3,-8],[-53,0],[0,6],[7,0],[2,0],[0,6],[-8,3],[-7,9],[-2,10],[4,9],[12,-4]],[[4847,7721],[9,-2],[9,0],[0,-7],[-13,-5],[-29,-16],[-11,-9],[3,-8],[-1,-6],[-4,-4],[-9,-2],[-8,-2],[-6,-13],[-19,-6],[-1,-7],[2,-8],[-1,-7],[-6,-4],[-7,-2],[-18,0],[12,-15],[24,-6],[25,2],[18,6],[32,25],[9,4],[12,3],[7,0],[-6,-7],[0,-6],[4,0],[-3,-4],[-3,-6],[-3,-3],[2,-3],[3,-9],[-17,-6],[-6,-4],[-4,-4],[-6,-9],[-3,-2],[-11,-5],[-9,1],[-19,10],[-11,3],[-29,-3],[-11,3],[-19,9],[-10,1],[15,-34],[7,-10],[-5,-4],[-3,-4],[1,-4],[3,-7],[-12,-7],[-33,-6],[-21,-20],[-10,-5],[-6,0],[-10,6],[-6,0],[-18,-12],[-33,-7],[-11,1],[0,-7],[25,0],[84,15],[20,9],[8,1],[9,-4],[6,-9],[4,-12],[-1,-12],[3,-2],[6,-5],[-5,-5],[-5,-4],[-6,-2],[-6,-1],[7,-4],[7,-2],[9,-1],[8,1],[-12,-10],[-9,-11],[-11,-8],[-15,-3],[-60,8],[-14,4],[-4,1],[-3,-7],[5,-4],[14,-5],[10,-7],[23,-5],[9,-10],[0,-6],[-6,-4],[-10,-14],[-6,-6],[-12,-7],[-8,1],[-8,3],[-12,3],[0,-7],[3,-2],[3,-3],[3,-1],[0,-7],[-14,-6],[-12,2],[-10,7],[-8,10],[-6,12],[-4,5],[-6,2],[-3,-5],[4,-10],[6,-11],[5,-6],[-5,-6],[-20,8],[-7,5],[-3,4],[-4,11],[-18,28],[-5,12],[-1,13],[9,24],[19,13],[24,6],[24,1],[0,6],[-62,0],[0,-6],[-3,-10],[-15,-15],[-19,-13],[-12,-6],[8,-10],[14,-27],[7,-6],[9,-3],[7,-8],[7,-8],[6,-6],[-4,-2],[-2,-3],[-4,-2],[-4,0],[4,-6],[6,-3],[5,-1],[3,-2],[2,-6],[2,-20],[-53,10],[-22,10],[-6,-3],[-4,-4],[-3,-6],[-5,-7],[7,-4],[14,-4],[6,-3],[15,-21],[2,-5],[-3,-7],[-9,-5],[-12,-2],[-11,1],[0,-6],[5,0],[0,-6],[-15,2],[-30,17],[-4,-7],[3,-2],[6,-6],[4,-4],[-7,-8],[-7,-7],[-17,-10],[3,-2],[3,-3],[3,-1],[-13,-11],[-40,-20],[-12,-10],[-5,1],[-32,30],[-7,3],[-39,37],[-7,4],[-3,7],[-5,7],[0,6],[10,2],[8,-1],[6,-5],[3,-7],[3,-12],[53,38],[8,10],[14,4],[32,-1],[-32,18],[0,6],[33,15],[20,3],[19,-3],[12,-8],[-6,5],[-6,4],[-5,3],[-2,3],[-2,3],[12,6],[5,1],[0,6],[-37,0],[-9,3],[-17,13],[-10,3],[-37,-1],[-17,5],[-6,14],[-8,-5],[-6,0],[-30,18],[11,6],[7,8],[9,6],[12,-1],[0,6],[-1,2],[-1,1],[0,1],[-2,2],[20,3],[21,6],[39,16],[-61,-12],[-19,0],[3,8],[5,5],[7,1],[7,-2],[0,6],[-18,0],[6,3],[5,4],[4,6],[3,6],[-28,-15],[-5,0],[-19,29],[-5,5],[3,11],[-3,4],[-6,2],[-3,5],[2,12],[8,8],[-1,9],[6,1],[2,2],[2,4],[3,5],[-5,1],[-4,4],[-4,1],[0,6],[49,2],[13,5],[-17,6],[-7,5],[-3,11],[2,11],[4,6],[12,11],[10,-5],[25,-10],[5,-1],[5,3],[35,-12],[0,-6],[-19,1],[4,-13],[13,-16],[9,-7],[-1,-14],[6,-19],[10,-17],[9,-10],[-1,9],[-1,5],[2,12],[-5,6],[-9,16],[-4,9],[6,3],[3,7],[0,6],[2,3],[29,5],[7,4],[10,3],[17,-7],[16,-11],[7,-13],[18,19],[-16,7],[-6,5],[-2,6],[-4,14],[-3,5],[-4,1],[-9,-2],[-4,1],[-1,3],[-3,8],[-1,2],[-7,9],[-4,4],[-2,6],[3,1],[3,3],[3,1],[4,1],[-3,6],[-3,5],[-5,2],[-7,-1],[53,36],[14,14],[8,-3],[5,2],[4,5],[5,2],[22,0],[17,4],[41,17],[6,3],[16,17],[115,66],[32,31],[19,14],[15,-1],[13,-11],[12,-16],[8,-18],[3,-15],[12,-14],[2,-10],[-12,-4],[-5,-5],[-15,-38],[6,-6],[7,-5]],[[6881,4636],[-55,-12],[-206,13],[-11,2],[-10,5],[-9,2],[-10,-3],[2,-1],[1,-1],[0,-1],[1,-3],[-10,-5],[-11,4],[-18,13],[-9,-25],[5,-10],[4,-18],[1,-20],[-1,-14],[-7,-15],[-11,-5],[-61,5],[-16,-3],[-14,-19],[-46,6],[1,-5],[1,0],[2,-2],[-6,-3],[-4,1],[-5,3],[-3,6],[7,11],[4,-1],[3,-4],[-1,7],[-1,2],[-3,3],[-7,-10],[-10,-8],[3,-9],[1,-4],[-4,-1],[-9,-6],[22,-18],[-6,-4],[-34,-13],[-51,-31],[-31,-4],[-20,2],[0,6],[-2,1],[-2,1],[-2,1],[-2,2],[2,3],[2,3],[0,1],[-1,9],[2,12],[-1,10],[-9,3],[0,4],[-10,-7],[-7,-13],[-2,-15],[6,-15],[-26,-3],[-32,17],[-23,31],[5,37],[-9,-5],[-16,-16],[-10,-5],[-10,1],[-48,19],[-8,5],[-5,7],[-7,13],[-3,10],[-4,6],[-11,3],[-3,-4],[-6,-10],[-4,-11],[-2,-10],[6,-22],[5,-13],[4,-6],[11,0],[9,-3],[8,-4],[8,-9],[2,-12],[-5,-10],[-4,-11],[10,-13],[-9,-14],[3,-19],[3,-17],[-4,-8],[-4,-2],[-3,-4],[-4,-4],[-7,-2],[-15,2],[-14,5],[-16,10],[-6,2],[-23,0],[-6,3],[-37,48],[-22,17],[-76,39],[-29,7],[-14,7],[-12,25],[-14,5],[-25,0],[-15,-6],[-15,-9],[-13,-11],[-10,-12],[-5,-8],[-3,-5],[0,-5],[0,-7],[1,-8],[3,-10],[5,-10],[7,-4],[4,-10],[7,-21],[11,-22],[18,-13],[0,-8],[-3,-16],[0,-9],[0,-4],[8,-15],[-13,3],[-28,12],[-13,3],[-7,6],[-4,15],[1,15],[7,8],[-4,6],[-3,6],[0,6],[3,7],[-12,1],[-6,2],[-4,3],[-3,9],[-3,12],[-4,12],[-6,5],[-13,5],[-62,61],[-18,28],[-12,32],[-3,37],[1,33],[5,16],[9,7],[14,0],[7,1],[3,2],[3,11],[6,-5],[7,-10],[2,-5],[10,-13],[4,-8],[4,-10],[0,-10],[-1,-22],[3,-9],[9,-10],[10,-8],[12,-1],[11,9],[2,4],[3,3],[0,6],[-23,39],[-4,8],[-2,8],[0,1],[-9,18],[-2,11],[0,20],[2,6],[2,8],[12,22],[4,13],[2,18],[5,17],[13,11],[26,14],[42,46],[4,2],[6,2],[1,3],[0,9],[1,5],[15,31],[2,8],[1,9],[-2,20],[1,8],[4,6],[21,22],[12,8],[5,5],[4,9],[5,21],[6,11],[21,15],[43,16],[16,18],[6,25],[-6,22],[-16,16],[-23,7],[13,16],[0,1],[-3,20],[-14,19],[-19,12],[-35,13],[-21,0],[-6,4],[5,8],[0,7],[-38,20],[-21,15],[-12,15],[28,24],[10,20],[-3,31],[-4,11],[-4,8],[-3,9],[-4,40],[-2,25],[4,25],[9,16],[15,10],[20,7],[12,2],[9,-1],[41,-15],[11,-2],[7,3],[14,-7],[108,-14],[16,9],[-71,12],[-25,4],[-28,15],[-34,33],[-26,8],[-12,10],[-10,12],[-7,11],[-9,28],[0,4],[-10,2],[-3,-7],[0,-9],[4,-11],[31,-37],[7,-17],[-4,-7],[-12,-2],[-15,0],[-16,5],[-7,13],[-2,17],[-1,35],[1,7],[26,53],[45,59],[3,13],[-3,3],[-7,-4],[-8,-10],[-37,-61],[-10,-11],[-14,0],[-4,7],[1,28],[-3,12],[-7,10],[-9,2],[-8,-8],[7,-17],[9,-32],[6,-31],[-2,-14],[-8,-3],[-2,-7],[3,-18],[0,-18],[1,-13],[4,-10],[-9,-4],[-10,3],[-10,5],[-11,2],[0,-6],[8,-3],[8,-5],[7,-7],[3,-10],[-2,-14],[-7,-9],[-7,-7],[-6,-8],[-3,-11],[-2,-9],[-2,-8],[-7,-9],[-9,-8],[-7,-2],[-21,4],[-10,10],[-9,23],[-7,26],[-2,19],[-26,27],[-4,12],[-5,7],[-10,-6],[10,-15],[25,-50],[5,-19],[-6,-9],[-12,4],[-43,27],[-5,12],[0,19],[-7,-7],[-6,-12],[-4,-12],[-1,-9],[-3,-7],[-19,-23],[15,-25],[7,-14],[4,-17],[-12,0],[-28,13],[-22,7],[-6,7],[-4,23],[-4,3],[-5,2],[-5,5],[-2,6],[-1,9],[1,17],[1,7],[6,10],[2,8],[-1,7],[-8,27],[16,15],[70,98],[38,12],[27,17],[6,5],[23,42],[10,12],[20,10],[25,9],[22,13],[13,24],[-12,-6],[-24,-21],[-10,-4],[-27,-2],[-11,-4],[-9,-7],[-7,-11],[-16,-32],[-6,-7],[-77,-41],[-54,-66],[-6,-2],[-11,-1],[-5,-3],[0,-4],[-3,-13],[-4,-12],[-2,1],[-6,-10],[-14,-3],[-16,1],[-12,3],[-1,4],[0,8],[-1,6],[-5,-2],[-2,-5],[-1,-6],[1,-6],[-5,-49],[2,-2],[10,-4],[4,-1],[6,-18],[3,-11],[0,-8],[3,-7],[7,-7],[0,-5],[-4,0],[0,-6],[3,-1],[6,-5],[-3,-2],[-3,-3],[-3,-2],[36,-31],[16,-22],[6,-23],[-5,-13],[-9,-6],[-21,-5],[-10,-6],[-30,-27],[-7,-8],[-6,-10],[-5,-12],[-1,-7],[-2,-16],[-2,-8],[-14,-8],[2,-4],[2,-5],[1,-2],[-1,-21],[6,-6],[8,-1],[5,-10],[-4,-12],[-10,-3],[-8,-6],[4,-17],[-13,-21],[-4,-9],[-1,-5],[1,-17],[-1,-8],[-2,0],[-3,1],[-3,-3],[-14,-30],[-11,-13],[-15,-7],[0,-6],[8,1],[7,-2],[6,-5],[6,-7],[10,-20],[1,-4],[7,-6],[-6,-14],[-21,-24],[-11,-9],[-13,-8],[-14,-6],[-15,-3],[-7,1],[-12,5],[-8,1],[-7,-3],[-14,-8],[-8,-2],[-19,0],[-11,4],[-7,11],[-8,39],[-1,21],[4,18],[18,12],[24,23],[7,10],[0,19],[-3,21],[-1,20],[9,27],[-3,7],[-5,6],[-1,6],[2,11],[15,27],[14,32],[2,18],[-7,13],[35,24],[5,10],[4,13],[9,15],[11,14],[9,6],[19,6],[22,17],[20,24],[12,27],[-62,-56],[-24,-15],[-7,-3],[-9,0],[5,11],[-18,6],[-9,4],[-9,9],[-5,13],[0,24],[-4,7],[28,33],[4,8],[4,12],[10,9],[11,9],[10,11],[-14,-6],[-22,-21],[-17,-7],[-12,-10],[-6,0],[-5,6],[-4,11],[-1,10],[71,87],[5,12],[-2,4],[3,3],[4,5],[-8,3],[-8,-4],[-9,-6],[-10,-5],[-4,-17],[-28,-26],[0,-20],[-10,-17],[-3,-2],[-6,2],[-2,5],[1,6],[2,6],[4,24],[24,38],[48,56],[2,3],[1,4],[2,4],[4,2],[4,-1],[5,-2],[4,-2],[0,-1],[2,-2],[5,-3],[6,-1],[1,6],[-3,5],[-5,4],[-4,2],[-2,2],[-4,14],[-1,8],[3,6],[20,26],[5,8],[4,13],[-20,-5],[-14,-14],[-13,-16],[-15,-10],[4,19],[8,19],[11,17],[12,15],[-5,12],[7,10],[14,6],[13,3],[7,3],[2,6],[-5,7],[-8,3],[-27,-7],[-6,-3],[-6,-6],[-6,-4],[-7,1],[-3,8],[1,10],[7,19],[8,34],[6,12],[13,11],[12,-6],[17,2],[33,10],[0,6],[-16,-1],[-28,-7],[-14,2],[13,30],[5,8],[7,3],[8,3],[5,5],[-3,7],[17,18],[21,9],[66,4],[52,-11],[21,4],[18,12],[41,44],[21,37],[14,15],[-15,-6],[-8,-14],[-7,-16],[-10,-14],[-27,-19],[-15,-19],[-7,-6],[-27,-3],[-69,13],[-18,-13],[-11,6],[-10,35],[-9,-3],[-8,-9],[-12,-19],[-9,5],[23,44],[4,13],[15,-12],[16,-5],[15,0],[12,5],[30,18],[17,6],[8,5],[7,8],[-22,-11],[-7,-1],[-13,1],[-3,-1],[-11,-7],[-7,-2],[-14,-9],[-7,-2],[-8,3],[-11,9],[-8,1],[2,7],[2,3],[3,2],[4,4],[2,4],[3,8],[1,4],[17,25],[6,6],[26,19],[4,6],[4,5],[-12,7],[0,7],[5,3],[15,9],[16,-1],[9,1],[19,13],[14,0],[28,-7],[14,3],[25,13],[52,10],[11,6],[-106,-18],[-51,18],[0,6],[7,13],[4,4],[43,38],[12,15],[11,18],[-38,-27],[-6,-8],[-3,-5],[-6,-6],[-8,-3],[-7,-1],[-6,-3],[-2,-7],[-1,-8],[-2,-7],[-9,-14],[-8,-8],[-10,-3],[-11,-1],[-6,-2],[-6,-8],[-14,-4],[-5,-5],[-7,-12],[-19,-18],[-10,-5],[-13,-2],[-7,-4],[-9,-17],[-6,-4],[-8,-1],[-8,-5],[-7,-6],[-26,-31],[-42,-40],[-44,-28],[-5,-1],[-5,3],[-8,12],[-7,3],[-10,1],[-13,5],[-11,6],[-8,7],[10,15],[3,7],[1,9],[-5,0],[-24,-26],[-39,7],[-97,62],[-4,7],[1,15],[7,6],[9,3],[33,2],[22,-4],[21,-8],[18,-14],[5,7],[-16,10],[-6,6],[-1,9],[69,36],[16,1],[40,-16],[17,-3],[34,2],[19,4],[14,7],[-60,-6],[-15,2],[-32,16],[-27,6],[-70,-31],[-25,-5],[-6,-1],[-9,3],[-14,8],[-9,2],[-44,-3],[-48,11],[-16,-2],[-13,-10],[-12,-6],[-16,3],[-15,7],[-8,6],[-4,5],[-3,5],[-2,6],[0,6],[1,8],[3,1],[5,-2],[4,2],[15,18],[8,5],[99,9],[8,3],[23,13],[9,3],[11,-2],[7,-5],[6,-7],[10,-5],[34,-12],[5,-4],[0,10],[-4,10],[-6,7],[-12,1],[0,7],[8,1],[8,-1],[8,-2],[7,-5],[9,9],[15,4],[16,-3],[13,-3],[-48,19],[-13,11],[0,10],[9,7],[67,8],[26,9],[21,16],[-8,4],[-12,-1],[-11,-5],[-10,-15],[-13,0],[-26,5],[6,10],[26,22],[-29,4],[-61,-11],[-30,7],[21,4],[23,1],[0,7],[-5,3],[-13,10],[12,11],[7,19],[6,21],[7,18],[11,11],[18,10],[20,6],[17,-3],[6,-5],[13,-18],[7,-8],[9,-5],[10,-4],[22,-3],[35,7],[31,12],[0,6],[-11,-2],[-11,-5],[-9,-3],[-9,4],[-14,-8],[-14,3],[-14,7],[-13,4],[-10,5],[3,12],[1,13],[-15,8],[-5,-1],[-14,-5],[-7,-1],[-6,3],[-11,8],[-7,2],[-7,7],[9,15],[27,27],[8,10],[5,3],[8,1],[19,-2],[6,5],[12,5],[16,-5],[27,-16],[13,-6],[64,0],[3,3],[5,6],[11,1],[10,-3],[5,-1],[4,0],[0,7],[-12,6],[-55,-7],[-15,-5],[-8,-1],[-5,3],[-16,16],[-8,6],[-54,13],[-8,9],[5,16],[22,25],[9,12],[-12,16],[15,17],[27,13],[23,4],[21,-12],[20,-19],[22,-13],[25,7],[0,6],[-27,5],[-6,4],[-9,13],[-7,7],[-6,2],[-6,6],[8,14],[16,13],[15,5],[0,6],[-15,6],[-11,-8],[-8,-11],[-8,-6],[-11,-3],[-23,-12],[-13,-4],[-13,2],[-25,9],[-12,2],[-28,-7],[-14,1],[-5,12],[2,3],[15,28],[6,5],[14,6],[5,5],[6,4],[5,-4],[4,-6],[3,-3],[15,2],[72,27],[29,20],[6,26],[-11,2],[-18,-14],[-29,-32],[-17,-10],[-15,2],[-16,6],[-18,2],[15,8],[6,6],[-2,8],[-5,11],[-1,6],[-3,0],[-10,-7],[-44,-45],[-16,-6],[-34,-4],[-15,6],[-11,36],[2,-1],[3,2],[3,2],[1,3],[-2,3],[-6,7],[-1,3],[0,13],[2,6],[7,6],[-7,3],[-20,4],[-4,2],[-2,10],[-6,16],[-1,12],[2,6],[9,16],[2,6],[1,13],[0,11],[3,7],[10,0],[-2,5],[-2,10],[-1,4],[11,4],[12,-2],[11,-6],[35,-27],[11,-6],[5,3],[11,-13],[6,-3],[19,-11],[8,-1],[-4,5],[-2,5],[-1,4],[-2,4],[46,7],[27,-4],[15,0],[3,7],[-20,12],[-29,5],[-29,-3],[-18,-12],[-22,20],[4,3],[5,9],[-22,3],[-11,14],[-8,18],[-12,15],[-10,3],[-10,1],[-8,4],[-3,11],[4,11],[13,12],[-4,8],[0,7],[24,10],[12,1],[19,-17],[9,1],[6,7],[5,10],[-7,2],[-4,5],[-5,6],[-6,5],[-8,4],[-53,10],[-2,9],[3,24],[-1,11],[1,7],[-5,19],[-1,11],[2,10],[5,9],[7,8],[8,5],[17,5],[17,0],[17,-4],[15,-8],[-2,-12],[2,-18],[4,-19],[5,-13],[7,-10],[8,-7],[10,-3],[11,0],[-5,4],[-3,5],[-5,11],[8,0],[6,-1],[12,-6],[-4,18],[3,13],[1,12],[-9,14],[-25,17],[-8,11],[7,9],[-5,1],[-2,2],[-2,3],[6,9],[15,15],[5,8],[9,-9],[8,-4],[23,0],[-3,-25],[18,-18],[26,-11],[21,-2],[-4,6],[8,8],[8,26],[6,10],[8,0],[29,-10],[9,-6],[19,-16],[21,-10],[47,-14],[-9,12],[-8,6],[-19,7],[-28,22],[-42,14],[-5,4],[-1,5],[-1,2],[-1,3],[3,6],[4,1],[5,-5],[5,0],[4,11],[12,-6],[18,-20],[14,-6],[7,0],[13,5],[7,1],[8,-2],[14,-8],[7,-2],[8,-4],[23,-17],[28,-10],[18,-25],[14,-7],[-4,5],[-5,8],[-3,9],[-2,7],[-3,6],[-65,43],[-16,3],[0,7],[13,-1],[5,7],[-1,11],[-6,11],[-8,5],[-21,4],[-9,6],[-19,4],[-27,25],[-16,3],[1,3],[1,0],[3,3],[-10,10],[-13,3],[-26,-1],[2,4],[1,3],[2,3],[4,3],[0,6],[-22,30],[13,12],[24,-5],[16,-24],[14,9],[14,-4],[14,-1],[15,15],[-4,0],[4,9],[-1,8],[-3,7],[-5,7],[9,0],[0,6],[-13,7],[9,5],[18,3],[9,4],[0,7],[-22,-1],[-10,2],[-9,5],[5,6],[-5,4],[-5,4],[-6,2],[-6,2],[1,4],[2,11],[2,4],[-8,0],[-7,4],[-30,34],[1,16],[10,2],[15,-5],[27,-14],[11,-2],[11,2],[26,13],[14,4],[14,-2],[13,-8],[5,7],[9,6],[9,4],[6,2],[11,-3],[20,-13],[9,-3],[32,2],[10,-2],[44,-25],[-6,9],[-7,6],[-18,10],[8,5],[19,3],[9,5],[-41,6],[-13,0],[-5,-3],[-8,-8],[-7,-2],[-6,2],[-13,9],[-7,2],[-10,5],[-19,21],[-7,5],[-1,3],[-12,14],[-2,2],[-5,12],[-2,7],[-2,6],[13,0],[-6,10],[0,9],[5,9],[6,10],[0,4],[-1,6],[0,6],[3,2],[5,-1],[8,-4],[4,-1],[38,-19],[27,0],[-18,11],[-6,6],[2,8],[-5,7],[-5,-5],[-7,-2],[-7,-1],[-7,1],[0,7],[6,-1],[2,1],[0,6],[-4,1],[-3,1],[-6,5],[36,15],[16,-5],[19,-10],[-71,46],[0,17],[1,8],[5,4],[35,15],[9,8],[8,14],[-4,0],[5,19],[2,19],[4,15],[11,10],[83,-14],[15,-7],[12,-11],[0,-5],[3,-14],[4,-13],[2,1],[0,-10],[-2,-8],[-3,-7],[-4,-7],[12,7],[5,9],[1,9],[0,10],[3,13],[5,6],[4,6],[-3,16],[11,-8],[20,-19],[11,-4],[18,-11],[8,-2],[7,-3],[1,-8],[-3,-8],[-3,-6],[-7,-7],[-23,-17],[-12,-23],[-12,-17],[-6,-13],[12,2],[38,32],[7,2],[4,14],[10,7],[13,4],[12,9],[7,16],[4,17],[7,13],[16,5],[27,-4],[28,-9],[31,-18],[0,-7],[-1,-3],[0,-1],[1,-9],[-15,-13],[-10,-17],[-8,-18],[-11,-20],[11,3],[11,8],[17,20],[1,3],[-1,5],[0,3],[3,2],[3,1],[26,21],[2,2],[25,13],[17,7],[6,0],[13,-3],[20,-14],[14,-3],[-9,7],[7,4],[4,6],[3,5],[4,3],[7,1],[13,-5],[9,-1],[5,3],[5,12],[7,3],[25,0],[14,-4],[5,0],[8,4],[5,6],[8,16],[6,3],[6,1],[1,1],[1,-3],[12,-17],[4,-3],[14,3],[55,-7],[56,7],[28,9],[44,25],[25,9],[40,6],[21,-1],[15,-5],[-7,-5],[-2,-1],[16,-11],[18,1],[37,10],[36,-12],[17,0],[9,18],[-11,4],[-12,6],[-10,10],[-7,12],[14,15],[10,5],[11,-2],[3,-5],[1,-8],[3,-8],[4,-4],[20,0],[43,10],[26,2],[33,-18],[22,0],[42,6],[22,-7],[-4,-17],[-12,-18],[-3,-14],[-7,-8],[-10,-16],[-6,-8],[-17,-12],[-5,-6],[-7,-18],[0,-15],[7,-10],[14,-7],[8,1],[7,3],[6,1],[5,-5],[2,-11],[-3,-8],[-6,-5],[-6,-1],[-6,-33],[-28,-41],[-35,-37],[-24,-21],[-27,-12],[-57,-15],[-22,-10],[-35,-27],[-5,-8],[-5,-15],[-13,-16],[-27,-22],[-142,-88],[-48,-19],[-11,-9],[-6,-10],[-6,-18],[-4,-7],[-6,-4],[-16,-7],[-21,-4],[-41,-22],[-6,-3],[-4,-5],[-3,-8],[0,-9],[-11,4],[-3,3],[5,5],[-9,4],[-17,2],[-19,8],[-3,-4],[2,-7],[6,-8],[9,-6],[21,-1],[10,-3],[4,-4],[14,-18],[-14,-17],[-3,-10],[3,-10],[-10,0],[-19,6],[-10,0],[-6,-4],[-12,-12],[-5,-3],[-18,0],[-37,15],[-18,4],[-52,-11],[-15,8],[-20,22],[-13,8],[-13,4],[34,-39],[21,-13],[25,-4],[26,9],[13,2],[12,-8],[11,-10],[15,-9],[11,0],[-4,16],[41,-22],[23,-5],[37,23],[20,-4],[12,-12],[-9,-12],[21,-4],[24,8],[23,17],[19,20],[9,9],[8,-1],[5,-9],[-2,-15],[-5,-8],[-88,-88],[-15,-9],[-17,-20],[-8,-6],[-13,-2],[-10,3],[-4,9],[9,15],[-18,13],[-22,-7],[-50,-34],[-9,-3],[-16,-1],[-43,-9],[-12,2],[-11,-1],[-4,-10],[-5,-13],[-10,-6],[-9,-3],[-42,-32],[-6,-6],[-5,-9],[-5,-15],[3,0],[9,5],[19,6],[10,7],[9,10],[7,9],[7,8],[30,14],[25,20],[27,11],[6,0],[7,-2],[9,-9],[32,-5],[14,0],[11,6],[8,7],[28,14],[10,1],[3,-12],[-13,-19],[-19,-17],[-19,-12],[-23,-27],[2,-5],[2,-3],[3,-3],[2,-2],[-30,-2],[-12,-6],[-11,-11],[6,-8],[-5,-1],[-14,3],[-36,0],[0,-7],[19,1],[9,-2],[8,-4],[-12,-21],[-8,-10],[-7,-7],[23,-5],[12,0],[14,5],[10,10],[5,6],[0,3],[15,1],[7,3],[12,13],[9,7],[10,5],[10,2],[11,5],[-7,10],[-24,16],[18,-1],[59,8],[62,-5],[20,5],[99,56],[38,7],[-4,-10],[-4,-5],[-5,-4],[9,-5],[8,0],[9,3],[10,2],[-14,24],[24,-6],[13,-1],[12,2],[9,5],[11,10],[6,12],[-4,10],[7,9],[5,1],[7,-3],[8,-1],[8,3],[17,8],[8,2],[81,-3],[48,-24],[85,-23],[28,0],[26,6],[40,22],[11,3],[102,0],[5,-2],[6,-9],[7,-2],[7,2],[5,3],[5,1],[7,-6],[22,8],[56,-15],[20,1],[10,-12],[5,1],[5,7],[8,4],[12,-1],[30,-12],[5,7],[5,-1],[6,-4],[7,-2],[7,3],[11,9],[6,1],[13,-6],[8,-1],[3,4],[2,5],[5,5],[6,4],[5,2],[14,-2],[29,-14],[13,-3],[16,3],[39,22],[10,2],[72,-2],[0,-3],[4,-8],[6,-9],[5,-5],[8,-1],[11,7],[8,0],[4,-4],[8,-12],[55,-47],[5,-15],[3,-17],[3,-16],[10,-15],[0,-5],[-2,-12],[6,-10],[19,-16],[-9,-1],[-5,-6],[1,-8],[6,-4],[8,-3],[-4,-5],[-15,-10],[-27,-28],[-11,-16],[-2,-13],[-67,-49],[-17,-20],[-42,-84],[-15,-48],[-4,-19],[2,-17],[12,-7],[2,-8],[-10,-17],[-59,-73],[-20,-32],[-8,-33],[2,-8],[4,-6],[3,-6],[0,-12],[-3,-5],[-12,-12],[-3,-4],[-4,-17],[-9,-10],[-23,-14],[-17,-19],[-15,-22],[-11,-10],[-36,-18],[-11,-7],[-11,-11],[-7,-10],[-3,-5],[-7,-40],[-8,-11],[-8,-9],[-7,-14],[0,-7],[4,-13],[1,-5],[-4,-6],[-12,-10],[-6,-16],[-10,-10],[-61,-34],[-11,-19],[-13,-8],[-25,-9],[-6,-7],[-12,-24],[-6,-3],[-5,3],[-5,3],[-8,2],[-35,-4],[-153,-17],[-4,-1],[-25,-9],[-22,-13],[-67,-54],[-28,-9],[-28,7],[8,-9],[12,-3],[27,0],[14,3],[27,13],[25,5],[129,51],[7,6],[6,9],[13,7],[16,2],[11,-6],[12,-9],[22,-1],[8,-11],[1,-18],[-4,-16],[-9,-14],[-10,-9],[16,0],[2,-3],[3,-12],[1,-4],[7,-3],[6,0],[5,-2],[4,-7],[59,-3],[15,-6],[22,-16],[5,-3],[23,-16],[0,-6],[-34,-26],[-12,-19],[-15,-5],[-31,-6],[-41,-22],[-15,-3],[-16,2],[-40,16],[-31,1],[-15,-4],[-7,-6],[-5,-9],[-34,-19],[-36,-33],[-11,-5],[-13,-3],[-7,-10],[-9,-31],[-7,-13],[-10,-5],[-45,-2],[-13,-5],[-22,-12],[-26,-10],[-25,-3],[-26,1],[-104,25],[-58,-1],[-24,7],[-23,12],[-1,1],[-23,18],[-14,13],[-9,5],[-13,0],[0,-5],[39,-22],[5,-7],[6,-2],[22,-32],[3,-7],[6,-1],[12,2],[5,-1],[4,-4],[3,-6],[5,-6],[7,-2],[37,6],[14,0],[111,-25],[31,0],[11,4],[7,0],[6,-7],[11,-8],[118,-8],[4,-3],[12,-13],[4,-3],[8,-1],[41,3],[49,17],[15,11],[10,14],[11,11],[17,2],[-4,11],[-2,4],[-3,3],[12,9],[19,18],[13,5],[109,-7],[12,-4],[18,-20],[12,-6],[-6,-15],[-3,-5],[9,-3],[17,3],[9,-6],[3,4],[7,5],[4,4],[9,-8],[27,-15],[24,-6],[41,-28],[28,-12],[104,-16],[6,-3],[4,-7],[1,-9],[1,-6],[5,-3],[14,-5],[12,-11],[38,-58]],[[6988,8145],[-18,-8],[-4,-4],[-1,-8],[3,-7],[1,-5],[-8,-5],[7,-16],[3,-12],[-4,-9],[-14,-7],[-31,24],[0,7],[8,6],[-7,14],[-19,24],[7,-5],[8,-1],[8,1],[8,5],[0,6],[-44,0],[0,6],[25,8],[28,5],[30,-2],[15,-6],[-1,-11]],[[6755,8215],[34,-39],[-9,-6],[0,-6],[7,-1],[6,-3],[9,-9],[0,-6],[-12,-1],[-16,-4],[-13,-8],[-8,-12],[19,1],[38,13],[18,-1],[-15,-18],[-32,-7],[-61,0],[-3,4],[-13,24],[-2,8],[-7,5],[-7,4],[-6,4],[-13,19],[-1,5],[3,4],[1,4],[-3,6],[-5,1],[-7,-5],[-4,1],[-6,4],[-6,-1],[-6,0],[-2,10],[10,17],[1,4],[15,11],[29,7],[8,1],[10,-5],[22,-16],[14,-4],[13,-5]],[[6813,8440],[22,-17],[9,0],[8,3],[7,1],[7,-4],[10,-11],[6,-3],[-9,-6],[-5,-1],[12,-10],[37,-15],[-5,-2],[-2,-1],[-2,-3],[3,-2],[3,-3],[3,-2],[-38,-11],[-6,2],[-5,-15],[-13,-13],[-15,-10],[-12,-3],[10,-6],[13,-4],[24,-2],[10,6],[10,11],[11,7],[24,-17],[9,2],[9,6],[9,3],[10,-5],[7,-8],[7,-5],[11,6],[-1,-4],[-2,-11],[-1,-4],[13,-2],[11,5],[11,7],[12,3],[14,1],[7,-2],[3,-6],[-4,-9],[-27,-14],[-9,-8],[7,-11],[9,-8],[11,-3],[13,3],[-9,19],[-4,6],[11,1],[22,11],[11,1],[9,-3],[4,-8],[1,-10],[-1,-14],[-5,-6],[-12,-5],[-25,-4],[-8,-5],[-15,-21],[-10,-5],[-10,1],[-49,15],[-8,5],[-7,7],[-23,38],[-5,5],[-8,-1],[-9,-9],[-11,-8],[-12,3],[-6,-4],[-6,0],[-7,3],[-8,1],[9,-13],[-20,1],[-8,-3],[-3,-10],[-16,5],[-38,-5],[-17,12],[-7,20],[2,20],[8,17],[11,12],[0,6],[-5,6],[-4,6],[-3,6],[-2,7],[-7,-3],[-4,-4],[-1,-5],[4,-7],[0,-6],[-6,3],[-6,1],[-5,-1],[-6,-3],[6,-4],[3,-5],[-1,-8],[1,-1],[3,-12],[-5,-8],[-15,-12],[0,-6],[-22,7],[-20,23],[-8,31],[10,27],[4,6],[-4,41],[17,27],[29,15],[31,4],[32,-1],[17,-4]],[[7163,8449],[-2,-4],[18,1],[8,-2],[5,-4],[-8,1],[-7,-5],[-2,-8],[8,-8],[8,-2],[8,2],[15,7],[1,-5],[-2,-1],[-1,0],[-2,-1],[-4,-11],[4,-5],[17,-8],[-11,-10],[-28,-3],[-14,-6],[-1,20],[-10,11],[-13,1],[-11,-7],[2,-14],[-14,-4],[-10,7],[13,18],[10,3],[10,1],[8,3],[3,11],[-4,5],[-20,16],[-7,4],[26,6],[9,-1],[0,-5],[-2,-3]],[[6895,8476],[5,0],[26,5],[8,0],[10,-4],[0,-4],[0,-2],[-2,0],[-3,-1],[-11,-11],[2,-14],[0,-13],[-19,-5],[-21,1],[-19,4],[-17,8],[-14,15],[-4,16],[11,13],[19,6],[16,0],[1,-2],[1,-4],[2,-4],[5,-3],[4,-1]],[[7063,8533],[0,-6],[9,2],[7,-2],[7,-4],[4,-8],[-4,-8],[-15,-16],[-3,-5],[0,-14],[2,-12],[5,-8],[10,0],[0,-7],[-19,-5],[-11,-1],[-5,4],[-2,12],[-6,9],[-9,5],[-9,1],[0,20],[8,-5],[6,0],[7,3],[7,2],[1,3],[-4,16],[1,6],[-2,11],[3,10],[7,5],[10,-1],[0,-7],[-5,0]],[[7305,8580],[2,-9],[-31,-1],[-12,-5],[-6,-10],[-7,-5],[-12,-22],[-5,-5],[-7,-3],[-1,20],[-10,-1],[-29,-24],[4,9],[1,3],[0,6],[-12,-5],[-6,0],[-4,5],[-24,-24],[-14,-10],[-11,3],[-2,-13],[-3,-5],[-4,2],[0,10],[3,13],[5,5],[6,2],[8,4],[6,6],[11,14],[5,6],[8,3],[7,0],[4,3],[3,13],[-4,2],[-9,11],[15,0],[26,11],[17,1],[0,-7],[-10,-4],[-10,-6],[-16,-15],[5,-1],[2,-2],[2,-3],[8,5],[21,4],[17,13],[10,2],[10,0],[10,2],[14,16],[9,7],[3,-2],[7,-19]],[[6948,8629],[0,-1],[-2,0],[-2,0],[-7,-7],[0,-5],[2,-8],[-13,0],[-4,0],[0,-6],[50,-12],[9,-3],[13,-24],[3,-5],[7,-4],[7,0],[7,-2],[6,-6],[0,-6],[-13,0],[-8,-4],[-15,-16],[1,8],[1,7],[2,5],[5,6],[-32,23],[-17,7],[-18,2],[0,-7],[3,-3],[6,-10],[-9,7],[-5,-8],[-5,-3],[-5,1],[-7,3],[-4,3],[-3,5],[-10,19],[-1,5],[-2,5],[-6,7],[-6,3],[-6,0],[-4,1],[-2,9],[13,0],[21,-3],[10,3],[18,19],[10,6],[12,-7],[0,-4]],[[7814,8810],[-2,-7],[9,0],[0,-7],[-11,-5],[-11,-9],[-9,-2],[-4,13],[5,16],[12,9],[14,4],[13,0],[0,-5],[-1,-1],[-1,0],[-2,-1],[-9,-2],[-3,-3]],[[7999,9309],[-1,-4],[5,5],[5,0],[2,-7],[-3,-9],[-5,-10],[-6,-14],[-5,-6],[-3,0],[0,7],[3,9],[1,11],[-1,3],[-1,-6],[-2,-6],[-10,-11],[-9,-6],[-1,4],[8,8],[3,10],[3,13],[6,9],[-1,6],[-4,5],[0,4],[12,2],[4,4],[4,-1],[0,-8],[-4,-12]],[[7529,9342],[-9,-10],[-16,5],[-12,8],[-4,5],[1,7],[4,4],[10,5],[15,2],[8,-2],[3,-8],[0,-16]],[[8159,9391],[1,-9],[2,-8],[4,0],[8,5],[0,-6],[-1,-13],[-4,-10],[-5,-8],[-5,-20],[-6,-2],[-19,10],[-6,6],[2,30],[-11,11],[1,10],[12,2],[12,-4],[5,2],[2,7],[5,2],[3,-5]],[[8223,9535],[-26,-6],[-12,6],[3,5],[4,3],[1,5],[3,7],[7,6],[7,3],[8,0],[5,4],[5,4],[23,2],[7,1],[2,2],[3,0],[1,-4],[-4,-5],[-9,-7],[-11,-12],[-17,-14]],[[8330,9780],[6,0],[5,2],[3,3],[2,1],[10,-2],[7,-5],[3,-8],[-4,-10],[-16,-10],[-18,4],[-19,7],[-18,-1],[0,-7],[3,-2],[2,-3],[2,-3],[2,-3],[-18,2],[-14,15],[-21,32],[0,7],[75,0],[7,-3],[1,-6],[-1,-6],[1,-4]],[[8018,9772],[-1,-6],[-3,-3],[-7,-2],[5,-21],[-5,-10],[-10,-7],[-7,-12],[13,0],[-3,-4],[-3,-2],[-7,0],[3,-2],[2,-2],[3,-2],[5,-1],[-13,-30],[6,1],[6,2],[5,4],[5,5],[4,-6],[-9,-14],[-2,-6],[2,-5],[0,-7],[-12,-4],[-16,-32],[-11,-8],[0,-6],[8,-1],[8,1],[7,2],[7,4],[-1,17],[18,9],[41,6],[-31,16],[-9,9],[7,7],[8,5],[7,-3],[1,-15],[6,5],[13,17],[2,6],[6,2],[12,-5],[9,-9],[-5,-10],[8,-3],[7,-5],[5,-7],[3,-10],[-3,-5],[-2,-2],[9,-5],[-8,-5],[-14,5],[-7,-4],[-5,-6],[-6,-5],[-7,-3],[2,-2],[8,1],[15,6],[-2,-3],[-7,-4],[0,-6],[22,9],[8,-4],[1,-18],[5,0],[2,10],[2,0],[4,-1],[5,4],[3,5],[2,7],[3,7],[5,7],[2,-3],[1,-3],[1,-7],[6,15],[10,10],[12,6],[13,0],[-9,-16],[-46,-38],[-4,-7],[1,-8],[4,-1],[5,4],[6,9],[4,3],[8,4],[9,0],[4,-10],[-1,-5],[-1,-9],[-4,-9],[-5,-5],[-51,-3],[-9,-3],[13,-10],[33,-5],[16,-10],[-31,-22],[-7,-3],[-2,-2],[-1,-5],[1,-5],[2,-4],[3,-2],[5,5],[3,0],[5,-3],[9,-1],[4,-2],[-26,-18],[-12,-4],[-11,3],[-6,12],[-5,6],[-7,1],[-4,-5],[1,-6],[3,-5],[5,-3],[0,-6],[-6,0],[-5,-1],[-11,-5],[0,-6],[26,0],[-4,-6],[-3,-6],[-6,-13],[12,12],[6,4],[9,2],[-19,-30],[-4,-14],[11,11],[14,4],[7,-5],[-9,-16],[22,-13],[0,-5],[-18,0],[0,-7],[5,0],[0,-6],[-11,5],[-7,-5],[-6,-6],[-12,0],[9,-7],[-3,-7],[-3,-5],[-5,-1],[-7,0],[0,-6],[5,-1],[13,-5],[-11,-10],[6,-12],[12,-9],[6,0],[-3,-13],[-10,-7],[-12,-2],[-10,3],[3,-12],[14,-26],[-5,-11],[-10,1],[-20,10],[3,-19],[-2,-20],[-5,-17],[-9,-12],[-3,4],[-2,2],[6,-11],[2,-10],[-2,-11],[-6,-12],[7,-6],[2,-8],[-2,-7],[-7,-4],[-2,4],[-11,14],[-5,-9],[-5,1],[-1,7],[7,8],[0,6],[-10,7],[-20,-4],[-10,4],[-8,11],[11,12],[-3,15],[5,7],[6,5],[7,1],[8,-1],[0,5],[-12,10],[-5,3],[0,7],[17,0],[-4,16],[7,14],[10,16],[10,43],[9,18],[7,18],[-3,25],[-4,4],[-3,-1],[-4,0],[-3,9],[1,4],[2,4],[10,19],[-7,0],[-9,-5],[-3,-3],[-7,1],[-2,3],[2,8],[9,24],[6,9],[5,7],[7,5],[0,6],[-13,1],[-9,-10],[-18,-28],[-9,21],[-9,15],[-14,10],[-21,4],[0,-7],[13,-5],[10,-8],[9,-11],[8,-13],[-5,-13],[-12,9],[-6,3],[-8,1],[0,-17],[-5,-12],[-5,-2],[-4,12],[-8,-5],[-2,-10],[-2,-10],[-5,-7],[-7,1],[-25,12],[-1,2],[-14,12],[-2,-1],[-4,8],[0,5],[4,6],[8,5],[19,4],[8,2],[-8,5],[-16,19],[-2,-7],[-4,-12],[-8,-9],[-7,-1],[-4,9],[-4,8],[-9,-2],[-19,-10],[-15,-1],[-6,1],[-4,4],[0,4],[-1,4],[-5,2],[-14,2],[-5,5],[-6,24],[-7,18],[2,5],[10,8],[9,6],[12,5],[12,2],[11,-1],[10,-5],[7,-8],[7,-6],[11,1],[-4,12],[22,-6],[0,6],[-5,0],[0,6],[31,3],[9,-7],[0,-27],[4,1],[7,3],[3,3],[-4,5],[-3,9],[-2,4],[13,0],[-2,4],[-2,9],[15,5],[17,-4],[14,-12],[7,-20],[9,10],[9,8],[-18,13],[13,25],[4,-4],[4,-1],[10,-1],[-8,10],[11,3],[33,-1],[-16,8],[-19,3],[-15,7],[-4,20],[-12,-10],[-7,-4],[-8,1],[-6,7],[-3,9],[2,9],[7,7],[0,6],[-20,0],[-8,2],[-7,5],[2,11],[-1,16],[-5,29],[-9,-18],[-7,-10],[-6,-4],[-10,3],[-3,8],[4,8],[9,7],[-13,-1],[-11,-2],[-10,1],[-11,8],[-6,-11],[-9,-3],[-22,1],[-2,5],[3,10],[6,11],[6,5],[16,-1],[4,1],[3,6],[0,7],[0,7],[1,5],[7,9],[7,7],[9,1],[8,-10],[8,-19],[22,-16],[24,-6],[21,9],[-7,4],[-10,2],[-16,0],[-5,4],[-5,7],[-8,6],[-10,2],[5,6],[9,16],[3,4],[7,1],[20,10],[-7,6],[-2,1],[6,7],[1,4],[-1,4],[-2,4],[16,5],[18,-1],[17,-7],[16,-10],[2,4],[2,3],[-11,9],[1,9],[15,20],[7,-18],[0,-8],[-3,-6],[2,-8]],[[8155,9896],[7,-16],[8,11],[13,3],[28,-2],[0,-12],[-1,-4],[-4,-2],[0,-7],[4,-1],[2,-3],[3,-1],[-7,-11],[1,-9],[11,-18],[-4,-10],[-5,-9],[-21,17],[-11,7],[-12,1],[7,-7],[9,-11],[15,-26],[-9,-4],[-9,-2],[-9,1],[-9,5],[3,-10],[8,-6],[10,-2],[11,-1],[-2,-3],[0,-1],[-3,-2],[11,-9],[0,-11],[-8,-9],[-12,-3],[10,-15],[2,-8],[2,-11],[-2,-11],[-6,-2],[-15,4],[-16,0],[-8,2],[-3,7],[-2,0],[-4,-4],[-1,-5],[7,-6],[0,-6],[-21,3],[-16,12],[-9,20],[-7,86],[5,19],[22,3],[0,-5],[-2,-11],[7,-11],[10,-6],[7,2],[-2,4],[-9,25],[-2,12],[2,6],[6,14],[-2,2],[-3,4],[-1,8],[2,9],[2,7],[7,10],[7,9],[8,0]],[[8352,9948],[-13,-6],[-8,-6],[4,-11],[0,-7],[-13,-1],[5,-1],[4,-2],[4,-2],[0,-7],[-26,-19],[-5,-6],[5,-11],[9,-10],[4,-9],[-9,-8],[-7,0],[-5,2],[-5,3],[-5,2],[-13,1],[-9,-1],[-20,-2],[-10,2],[-10,6],[3,9],[1,8],[-1,8],[-3,7],[11,-7],[4,8],[-2,13],[-4,11],[11,3],[6,12],[0,14],[-8,8],[0,6],[10,4],[12,9],[9,11],[-1,8],[7,9],[7,1],[6,-7],[3,-13],[-3,-10],[-6,-6],[-7,-5],[-7,-7],[2,-3],[8,3],[9,5],[6,4],[14,34],[6,7],[4,-4],[4,-2],[9,0],[8,-3],[8,-4],[5,-8],[2,-11],[-5,0],[-13,-5],[13,-6],[5,-1],[-10,-7]],[[5843,3117],[7,0],[12,1],[5,-3],[10,-8],[8,-10],[6,-11],[3,-12],[3,-5],[5,-6],[4,-7],[-3,-10],[-6,-2],[-6,2],[-14,10],[-13,21],[-6,7],[-6,1],[-19,-1],[-4,2],[-11,16],[0,6],[17,13],[8,-4]],[[7130,1561],[-18,-19],[-13,-9],[-30,-6],[-25,-15],[-12,-7],[-27,-9],[-55,-3],[-8,3],[-5,6],[-4,7],[-3,2],[-6,-4],[-17,-18],[-3,-6],[-38,-22],[-2,0],[-8,-3],[-11,-7],[-17,-15],[-2,-4],[-3,-10],[-3,-5],[-5,-2],[-9,-1],[-4,-3],[8,-19],[-4,-20],[-12,-12],[-12,4],[-10,1],[-45,-17],[-162,13],[-12,6],[-11,14],[-19,23],[-38,28],[-9,1],[-12,-5],[-15,6],[-12,11],[-7,10],[-1,4],[1,1],[2,1],[2,0],[-5,18],[-2,5],[-4,13],[-7,15],[-8,12],[-5,5],[-12,6],[-6,7],[-10,17],[-6,6],[-8,2],[-21,-2],[-49,-5],[-9,-4],[-9,-5],[-5,-6],[-1,-8],[5,-9],[7,-9],[4,-8],[-26,0],[0,-2],[-3,-4],[-4,-2],[-2,5],[-2,4],[-4,2],[-5,2],[-4,1],[-2,-2],[-6,-9],[-3,-1],[-5,1],[-6,4],[-17,4],[-6,0],[-6,-3],[-7,-5],[-9,-10],[-7,-3],[-6,1],[-7,4],[-6,1],[-3,-10],[-8,1],[-38,14],[-11,1],[-3,3],[-1,2],[-1,7],[12,8],[-2,10],[-5,12],[0,14],[22,6],[2,3],[7,11],[4,5],[4,-7],[-4,0],[0,-5],[5,-3],[4,-4],[20,6],[33,2],[31,7],[14,20],[0,6],[-1,5],[0,2],[-3,1],[-7,-8],[-6,-3],[-7,-1],[-26,3],[-35,17],[-9,-6],[-51,-7],[-14,5],[-17,12],[-16,16],[-8,17],[26,-3],[12,1],[6,8],[-12,0],[-11,2],[-10,7],[-6,11],[2,2],[3,6],[3,9],[0,8],[-4,6],[-4,-3],[-5,-10],[-4,-3],[-5,-7],[-4,-2],[-7,1],[-5,5],[-6,6],[-12,-1],[-3,-7],[6,-8],[9,-9],[-22,-11],[-25,0],[-48,5],[-19,-1],[-23,-6],[-4,-1],[-22,-13],[-1,-23],[-6,-1],[-1,-2],[0,-3],[-2,-7],[-12,-26],[-6,2],[-8,6],[-5,-3],[-11,-10],[-58,2],[-9,-2],[-10,-7],[-6,-6],[-5,-8],[-6,-7],[-12,-5],[-6,-9],[-6,-2],[-3,1],[-6,5],[-43,12],[-15,10],[6,9],[-10,18],[-32,7],[-12,13],[4,6],[50,-6],[-2,3],[-1,7],[-2,3],[10,0],[17,-5],[9,-1],[9,2],[21,11],[32,5],[16,10],[6,1],[9,-4],[0,6],[-19,16],[-3,22],[10,19],[25,5],[0,7],[-8,-4],[-18,-7],[-37,-3],[-8,-5],[11,1],[8,-4],[3,-9],[-4,-13],[9,-7],[-2,-11],[-10,-9],[-50,-10],[-14,-1],[-90,11],[-12,-4],[7,-15],[-8,-7],[-9,0],[2,10],[0,5],[-32,22],[-13,3],[14,1],[9,1],[7,5],[8,9],[9,8],[22,4],[11,4],[10,9],[2,9],[-3,23],[-1,14],[-3,14],[-5,11],[-9,8],[-4,-7],[-12,9],[-25,3],[-12,7],[-9,-6],[-36,-6],[-13,0],[5,3],[4,2],[0,7],[-2,4],[-1,3],[1,3],[6,3],[0,6],[-5,11],[7,6],[23,2],[12,4],[19,17],[9,4],[20,3],[26,8],[20,16],[2,24],[10,0],[0,5],[-8,6],[1,6],[7,5],[11,2],[17,-1],[8,-2],[34,-16],[13,0],[18,6],[-4,13],[12,-2],[25,-9],[14,-2],[6,4],[-1,9],[-3,11],[0,8],[5,3],[22,3],[12,8],[9,10],[16,23],[12,11],[9,1],[22,-15],[-2,27],[25,10],[80,-2],[7,2],[4,5],[4,6],[4,6],[19,5],[13,8],[12,10],[20,20],[9,5],[11,3],[13,0],[12,4],[77,57],[37,47],[19,32],[9,20],[5,39],[6,21],[7,19],[7,13],[-3,8],[-1,11],[1,11],[3,8],[6,1],[14,-7],[7,-1],[11,4],[33,21],[0,7],[-17,0],[-34,-11],[-17,-2],[-10,7],[-30,35],[-7,14],[2,23],[10,22],[14,18],[12,7],[2,2],[3,13],[1,3],[3,2],[7,2],[26,18],[9,9],[-18,-2],[-11,-7],[-11,-2],[-49,51],[-12,23],[-3,8],[1,8],[12,3],[7,6],[-1,14],[-6,15],[-2,6],[0,13],[1,6],[4,3],[39,24],[-5,2],[-2,1],[-2,4],[-8,-7],[-7,-4],[-7,1],[-5,10],[-16,-11],[-18,-1],[-37,5],[-46,-12],[-11,-6],[-13,-7],[-45,1],[-13,-6],[-13,-9],[-22,-23],[2,-3],[2,-3],[-11,-6],[-6,-10],[0,-12],[8,-10],[-9,-7],[-4,-4],[-5,-1],[-8,0],[-9,10],[-14,4],[-12,9],[-8,2],[-7,-2],[-5,-4],[-3,-4],[-5,-3],[-14,-3],[-37,3],[-9,-5],[-9,-9],[-9,-4],[-10,6],[6,8],[1,4],[-3,6],[4,4],[10,15],[90,90],[9,4],[13,1],[12,3],[12,6],[52,35],[13,18],[42,24],[6,12],[2,16],[2,38],[2,11],[4,4],[4,-2],[2,-6],[3,-6],[5,7],[5,11],[1,4],[26,26],[7,5],[11,4],[9,10],[13,24],[15,15],[17,10],[19,4],[20,2],[6,-1],[5,-3],[5,-2],[8,5],[14,6],[15,3],[22,16],[71,25],[22,0],[-6,17],[-19,17],[-5,11],[12,-2],[12,-3],[11,-5],[9,-9],[12,6],[14,-4],[14,-11],[10,-13],[10,-6],[74,2],[26,5],[123,52],[27,1],[25,-11],[13,-9],[6,-9],[7,-7],[84,-46],[9,-10],[8,-11],[5,-4],[2,3],[0,18]],[[6136,3098],[8,-2],[8,1],[15,4],[8,1],[4,2],[5,9],[4,2],[5,-1],[8,-5],[3,-1],[18,1],[9,-2],[8,-5],[-13,-13],[-22,-35],[-16,-8],[-16,-2],[-16,-7],[-15,-11],[-13,-12],[-2,-2],[-1,-3],[-1,-3],[0,-7],[-1,-8],[-1,0],[-3,1],[-23,-14],[-10,-11],[-41,-21],[-7,-2],[-8,1],[-17,6],[0,-2],[-4,-3],[-5,-2],[-4,2],[-1,5],[0,9],[2,7],[1,4],[5,4],[8,8],[3,9],[-7,4],[-10,-4],[-14,-18],[-9,-3],[-1,3],[-21,15],[-2,1],[-5,-1],[-2,0],[-1,3],[1,7],[0,3],[0,3],[-1,6],[-2,7],[-13,11],[-22,35],[-11,13],[0,7],[3,9],[2,14],[0,20],[3,30],[-2,13],[-6,14],[11,7],[83,24],[8,0],[45,-6],[12,-1],[25,-11],[6,-5],[3,-11],[2,-11],[2,-5],[-1,-3],[8,-5],[10,-4],[3,-1],[1,-4],[-1,-7],[0,-5],[2,-2],[1,-3],[10,-10],[4,-10],[1,-8],[3,-5]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment