Minnesota counties colored by population. Hover over to see the county name and population.
Created in D3. Inspired by http://bl.ocks.org/mbostock/5737662.
Minnesota counties colored by population. Hover over to see the county name and population.
Created in D3. Inspired by http://bl.ocks.org/mbostock/5737662.
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.state-border { | |
fill: none; | |
stroke: #333; | |
} | |
.county-border { | |
fill: none; | |
stroke: #000; | |
stroke-width: 1.01px; | |
stroke-linejoin: round; | |
stroke-linecap: round; | |
} | |
svg { | |
font: 10px sans-serif; | |
} | |
.key path { | |
display: none; | |
} | |
.key line { | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
</style> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script> | |
var width=960, height=500; | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height) | |
var color = d3.scale.threshold() | |
.domain([15000,60000,180000,420000]) | |
.range(["#ffffcc","#c2e699","#78c679","#31a354","#006837"]); | |
var x = d3.scale.linear() | |
.domain([0, 500000]) | |
.range([0, 240]); | |
var xAxis = d3.svg.axis() | |
.scale(x) | |
.orient("bottom") | |
.tickSize(13) | |
.tickValues(color.domain()) | |
.tickFormat(function (n) {return (n/1000).toString()}); | |
var g = svg.append("g") | |
.attr("class", "key") | |
.attr("transform", "translate(40,40)") | |
var rects = g.selectAll("rect") | |
.data(color.range().map(function(d,i) { | |
return { | |
x0: i ? x(color.domain()[i-1]) : x.range()[0], | |
x1: i < color.domain().length ? x(color.domain()[i]) : x.range()[1], | |
z: d | |
}; | |
})) | |
.enter().append("rect") | |
.attr("height", 8) | |
.attr("x", function(d){return d.x0;}) | |
.attr("width", function(d){return d.x1-d.x0;}) | |
.style("fill", function(d){return d.z;}); | |
g.call(xAxis).append("text") | |
.attr("class", "caption") | |
.attr("y", -6) | |
.text("Population (thousands)"); | |
var projection = d3.geo.mercator() | |
.scale(1) | |
.translate([0,0]); | |
var path = d3.geo.path() | |
.projection(projection); | |
d3.json("mn_state.json", function(error, mn) { | |
var county_geometries = mn.objects.counties.geometries; | |
var fixed_county_geometries=[]; | |
//removing duplicate features | |
for(var i=0; i<county_geometries.length; i++) { | |
if(!(county_geometries[i].id===27031 && | |
county_geometries[i].arcs[0].length === 1)) { | |
fixed_county_geometries.push(county_geometries[i]); | |
} | |
} | |
mn.objects.states.geometries = [mn.objects.states.geometries[0]]; | |
mn.objects.counties.geometries = fixed_county_geometries; | |
var state = topojson.feature(mn, mn.objects.states); | |
var b = path.bounds(state), | |
s = 0.95/Math.max((b[1][0]-b[0][0])/width, (b[1][1]-b[0][1])/height), | |
t = [(width-s*(b[1][0]+b[0][0]))/2, (height - s * (b[1][1]+b[0][1]))/2]; | |
projection | |
.scale(s) | |
.translate(t); | |
svg.append("path") | |
.attr("transform", "translate(40,0)") | |
.datum(topojson.mesh(mn, mn.objects.counties, | |
function(a,b){return a!==b;})) | |
.attr("class", "county-border") | |
.attr("d", path); | |
//state border | |
svg.append("path") | |
.attr("transform", "translate(40,0)") | |
.datum(topojson.mesh(mn, mn.objects.counties, | |
function(a,b){return a===b;})) | |
.attr("class", "state-border") | |
.attr("d", path); | |
var counties = svg.append("g") | |
.attr("transform", "translate(40,0)") | |
.attr("class", "counties") | |
.selectAll("path") | |
.data(topojson.feature(mn, mn.objects.counties).features) | |
.enter().append("path") | |
.attr("d", path) | |
.attr("fill", function(d) {return color(d.properties.population);}) | |
.append("title") | |
.text(function(d) {return d.properties.name + ": pop. "+d.properties.population;}) | |
}); | |
</script> | |
</body> |
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Kittson County","population":4552},"id":27069,"arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"Roseau County","population":15629},"id":27135,"arcs":[[3,4,5,6,-1,7,8]]},{"type":"Polygon","properties":{"name":"Koochiching County","population":13311},"id":27071,"arcs":[[9,10,11,12,13]]},{"type":"Polygon","properties":{"name":"Saint Louis County","population":200226},"id":27137,"arcs":[[14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,-10,29]]},{"type":"Polygon","properties":{"name":"Marshall County","population":9439},"id":27089,"arcs":[[30,31,32,33,-2,-7]]},{"type":"Polygon","properties":{"name":"Beltrami County","population":44442},"id":27007,"arcs":[[-12,34,35,36,37,38,-31,-6,39]]},{"type":"Polygon","properties":{"name":"Lake County","population":10866},"id":27075,"arcs":[[40,41,-15,42]]},{"type":"Polygon","properties":{"name":"Polk County","population":31600},"id":27119,"arcs":[[43,44,45,46,47,48,49,-33]]},{"type":"Polygon","properties":{"name":"Pennington County","population":13930},"id":27113,"arcs":[[-39,50,-46,51,-44,-32]]},{"type":"Polygon","properties":{"name":"Clearwater County","population":8695},"id":27029,"arcs":[[52,53,54,-47,-51,-38]]},{"type":"Polygon","properties":{"name":"Red Lake County","population":4089},"id":27125,"arcs":[[-45,-52]]},{"type":"Polygon","properties":{"name":"Itasca County","population":45058},"id":27061,"arcs":[[-29,55,56,-35,-11]]},{"type":"Polygon","properties":{"name":"Mahnomen County","population":5413},"id":27087,"arcs":[[57,58,-48,-55]]},{"type":"Polygon","properties":{"name":"Norman County","population":6852},"id":27107,"arcs":[[-49,-59,59,60,61]]},{"type":"Polygon","properties":{"name":"Cass County","population":28567},"id":27021,"arcs":[[62,63,64,65,66,67,-36,-57]]},{"type":"Polygon","properties":{"name":"Hubbard County","population":20428},"id":27057,"arcs":[[-68,68,69,-53,-37]]},{"type":"Polygon","properties":{"name":"Becker County","population":32504},"id":27005,"arcs":[[-70,70,71,72,-60,-58,-54]]},{"type":"Polygon","properties":{"name":"Clay County","population":58999},"id":27027,"arcs":[[-73,73,74,75,-61]]},{"type":"Polygon","properties":{"name":"Aitkin County","population":16202},"id":27001,"arcs":[[-28,76,77,78,79,80,-63,-56]]},{"type":"Polygon","properties":{"name":"Wadena County","population":13843},"id":27159,"arcs":[[-67,81,82,-71,-69]]},{"type":"Polygon","properties":{"name":"Crow Wing County","population":62500},"id":27035,"arcs":[[-81,83,84,-64]]},{"type":"Polygon","properties":{"name":"Carlton County","population":35386},"id":27017,"arcs":[[85,86,-77,-27]]},{"type":"Polygon","properties":{"name":"Otter Tail County","population":57303},"id":27111,"arcs":[[-83,87,88,89,90,91,92,-74,-72]]},{"type":"Polygon","properties":{"name":"Wilkin County","population":6576},"id":27167,"arcs":[[-93,93,94,95,-75]]},{"type":"Polygon","properties":{"name":"Pine County","population":29750},"id":27115,"arcs":[[96,97,98,99,-78,-87]]},{"type":"Polygon","properties":{"name":"Todd County","population":24895},"id":27153,"arcs":[[-66,100,101,102,-88,-82]]},{"type":"Polygon","properties":{"name":"Morrison County","population":33198},"id":27097,"arcs":[[-85,103,104,105,-101,-65]]},{"type":"Polygon","properties":{"name":"Mille Lacs County","population":26097},"id":27095,"arcs":[[106,107,108,109,-104,-84,-80]]},{"type":"Polygon","properties":{"name":"Kanabec County","population":16239},"id":27065,"arcs":[[-100,110,-107,-79]]},{"type":"Polygon","properties":{"name":"Grant County","population":6018},"id":27051,"arcs":[[-92,111,112,113,-94]]},{"type":"Polygon","properties":{"name":"Douglas County","population":36009},"id":27041,"arcs":[[89,-89,-103,114,115,-112,-91]]},{"type":"Polygon","properties":{"name":"Traverse County","population":3558},"id":27155,"arcs":[[-114,116,117,118,-95]]},{"type":"Polygon","properties":{"name":"Benton County","population":38451},"id":27009,"arcs":[[-110,119,120,-105]]},{"type":"Polygon","properties":{"name":"Stearns County","population":150642},"id":27145,"arcs":[[-121,121,122,123,124,125,-115,-102,-106]]},{"type":"Polygon","properties":{"name":"Stevens County","population":9726},"id":27149,"arcs":[[126,127,128,-117,-113]]},{"type":"Polygon","properties":{"name":"Pope County","population":10995},"id":27121,"arcs":[[-126,129,130,-127,-116]]},{"type":"Polygon","properties":{"name":"Isanti County","population":37816},"id":27059,"arcs":[[131,132,133,-108,-111]]},{"type":"Polygon","properties":{"name":"Chisago County","population":53887},"id":27025,"arcs":[[-98,97,134,135,136,137,-132,-99]]},{"type":"Polygon","properties":{"name":"Big Stone County","population":5269},"id":27011,"arcs":[[-118,-129,138,139,140,141,142]]},{"type":"Polygon","properties":{"name":"Sherburne County","population":88499},"id":27141,"arcs":[[-109,-134,143,144,145,-122,-120]]},{"type":"Polygon","properties":{"name":"Wright County","population":124700},"id":27171,"arcs":[[-146,146,147,148,149,-123]]},{"type":"Polygon","properties":{"name":"Anoka County","population":330844},"id":27003,"arcs":[[-138,150,151,152,-144,-133]]},{"type":"Polygon","properties":{"name":"Kandiyohi County","population":42239},"id":27067,"arcs":[[153,154,155,156,-130,-125]]},{"type":"Polygon","properties":{"name":"Swift County","population":9783},"id":27151,"arcs":[[-157,157,158,-139,-128,-131]]},{"type":"Polygon","properties":{"name":"Meeker County","population":23300},"id":27093,"arcs":[[-150,159,160,-154,-124]]},{"type":"Polygon","properties":{"name":"Washington County","population":238136},"id":27163,"arcs":[[-136,135,161,162,163,-151,-137]]},{"type":"Polygon","properties":{"name":"Lac qui Parle County","population":7259},"id":27073,"arcs":[[140,-140,-159,164,165,166,-142]]},{"type":"Polygon","properties":{"name":"Hennepin County","population":1152425},"id":27053,"arcs":[[-145,-153,167,168,169,170,-147]]},{"type":"Polygon","properties":{"name":"Chippewa County","population":12441},"id":27023,"arcs":[[-156,171,172,-165,-158]]},{"type":"Polygon","properties":{"name":"Ramsey County","population":508640},"id":27123,"arcs":[[-164,173,-168,-152]]},{"type":"Polygon","properties":{"name":"McLeod County","population":36651},"id":27085,"arcs":[[-149,174,175,176,-160]]},{"type":"Polygon","properties":{"name":"Carver County","population":91042},"id":27019,"arcs":[[-171,177,178,-175,-148]]},{"type":"Polygon","properties":{"name":"Yellow Medicine County","population":10438},"id":27173,"arcs":[[179,180,181,182,183,-166,-173]]},{"type":"Polygon","properties":{"name":"Dakota County","population":398552},"id":27037,"arcs":[[-163,184,185,186,187,-169,-174]]},{"type":"Polygon","properties":{"name":"Renville County","population":15730},"id":27129,"arcs":[[-161,-177,188,189,190,191,-180,-172,-155]]},{"type":"Polygon","properties":{"name":"Scott County","population":129928},"id":27139,"arcs":[[-188,192,193,194,-178,-170]]},{"type":"Polygon","properties":{"name":"Sibley County","population":15226},"id":27143,"arcs":[[-179,-195,195,196,-189,-176]]},{"type":"Polygon","properties":{"name":"Goodhue County","population":46183},"id":27049,"arcs":[[197,198,199,200,-186,201]]},{"type":"Polygon","properties":{"name":"Redwood County","population":16059},"id":27127,"arcs":[[202,203,204,205,-181,-192]]},{"type":"Polygon","properties":{"name":"Lincoln County","population":5896},"id":27081,"arcs":[[206,207,208,-183]]},{"type":"Polygon","properties":{"name":"Lyon County","population":25857},"id":27083,"arcs":[[-206,209,210,-207,-182]]},{"type":"Polygon","properties":{"name":"Le Sueur County","population":27703},"id":27079,"arcs":[[211,212,213,214,-196,-194]]},{"type":"Polygon","properties":{"name":"Rice County","population":64142},"id":27131,"arcs":[[-187,-201,215,216,217,-212,-193]]},{"type":"Polygon","properties":{"name":"Brown County","population":25893},"id":27015,"arcs":[[218,219,220,221,-203,-191]]},{"type":"Polygon","properties":{"name":"Nicollet County","population":32727},"id":27103,"arcs":[[222,-219,-190,-197,-215]]},{"type":"Polygon","properties":{"name":"Wabasha County","population":21676},"id":27157,"arcs":[[223,224,225,-198]]},{"type":"Polygon","properties":{"name":"Blue Earth County","population":64013},"id":27013,"arcs":[[-214,226,227,228,229,-220,-223]]},{"type":"Polygon","properties":{"name":"Pipestone County","population":9596},"id":27117,"arcs":[[-211,230,231,232,-208]]},{"type":"Polygon","properties":{"name":"Murray County","population":8725},"id":27101,"arcs":[[-205,233,234,235,-231,-210]]},{"type":"Polygon","properties":{"name":"Steele County","population":36576},"id":27147,"arcs":[[236,237,238,239,-217]]},{"type":"Polygon","properties":{"name":"Dodge County","population":20087},"id":27039,"arcs":[[240,241,-237,-216,-200]]},{"type":"Polygon","properties":{"name":"Waseca County","population":19136},"id":27161,"arcs":[[-240,242,243,-227,-213,-218]]},{"type":"Polygon","properties":{"name":"Olmsted County","population":144248},"id":27109,"arcs":[[-226,244,245,246,-241,-199]]},{"type":"Polygon","properties":{"name":"Cottonwood County","population":11687},"id":27033,"arcs":[[-222,247,248,249,-234,-204]]},{"type":"Polygon","properties":{"name":"Winona County","population":51461},"id":27169,"arcs":[[250,251,252,-245,-225]]},{"type":"Polygon","properties":{"name":"Watonwan County","population":11211},"id":27165,"arcs":[[-230,253,254,-248,-221]]},{"type":"Polygon","properties":{"name":"Rock County","population":9687},"id":27133,"arcs":[[-236,255,256,-232]]},{"type":"Polygon","properties":{"name":"Nobles County","population":21378},"id":27105,"arcs":[[-250,257,258,-256,-235]]},{"type":"Polygon","properties":{"name":"Freeborn County","population":31255},"id":27047,"arcs":[[259,260,261,-243,-239]]},{"type":"Polygon","properties":{"name":"Mower County","population":39163},"id":27099,"arcs":[[-247,262,263,-260,-238,-242]]},{"type":"Polygon","properties":{"name":"Houston County","population":19027},"id":27055,"arcs":[[264,265,-252]]},{"type":"Polygon","properties":{"name":"Fillmore County","population":20866},"id":27045,"arcs":[[-253,-266,266,-263,-246]]},{"type":"Polygon","properties":{"name":"Jackson County","population":10266},"id":27063,"arcs":[[-255,267,268,-258,-249]]},{"type":"Polygon","properties":{"name":"Faribault County","population":14553},"id":27043,"arcs":[[-244,-262,269,270,-228]]},{"type":"Polygon","properties":{"name":"Martin County","population":20840},"id":27091,"arcs":[[-229,-271,271,-268,-254]]},{"type":"Polygon","properties":{"name":"Lake of the Woods County","population":4045},"id":27077,"arcs":[[-13,-40,-5,3,-9,272]]},{"type":"Polygon","properties":{"name":"Cook County","population":5176},"id":27031,"arcs":[[273]]},{"type":"Polygon","properties":{"name":"Cook County","population":5176},"id":27031,"arcs":[[274,-275,275,-41,276]]},{"type":"Polygon","properties":{"name":"Cook County","population":5176},"id":27031,"arcs":[[277]]},{"type":"Polygon","properties":{"name":"Cook County","population":5176},"id":27031,"arcs":[[278]]},{"type":"Polygon","properties":{"name":"Cook County","population":5176},"id":27031,"arcs":[[279]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"name":"Minnesota","population":5303925},"id":27,"arcs":[[[277]],[[278]],[[279]],[[273]],[[13,29,42,276,274,-275,275,41,15,16,17,18,19,20,21,22,23,24,25,85,96,97,134,135,161,184,201,223,250,264,266,263,260,269,271,268,258,256,232,208,183,166,142,118,95,75,61,49,33,2,7,272]]]},{"type":"MultiPolygon","properties":{"name":"Minnesota","population":5303925},"id":27,"arcs":[[[-25,280]],[[281,-23]],[[20,-21,-20,282]],[[283,-18]],[[-16,-42,-276,274,284],[-274],[-280],[-279],[-278]]]}]}},"arcs":[[[1075,9346],[0,-10],[0,-24],[0,-1],[0,-6],[0,-19],[0,-23],[0,-2],[0,-12],[0,-12],[0,-11],[0,-14],[0,-23],[0,-23],[0,-3],[0,-5],[0,-25],[0,-6],[0,-2],[1,-7],[0,-22],[0,-4],[0,-3],[0,-2],[0,-12],[0,-60],[0,-3],[0,-43],[0,-4],[0,-1],[0,-24],[-1,-19],[0,-6],[0,-12],[1,-13],[-1,-5],[0,-20],[23,0],[1,-24],[-1,-10],[0,-1],[0,-14],[-1,-48],[0,-2],[1,-7],[0,-15],[0,-2],[0,-2],[-1,-7],[0,-2],[0,-12],[0,-10],[0,-8],[-1,-11],[0,-10],[0,-10],[0,-11],[1,-2],[0,-12],[0,-24],[0,-25],[1,-25]],[[1098,8571],[-4,0],[-22,0],[-3,0],[-19,0],[-9,0],[-28,-1],[-30,0],[-8,0],[-4,0],[-5,0],[-8,0],[-2,0],[-3,0],[-23,0],[-10,0],[-18,0],[-4,0],[-2,0],[-1,0],[-28,0],[-21,0],[-30,0],[-4,0],[-21,0],[-3,0],[-7,0],[-5,0],[-14,0],[-2,0],[-28,0],[-28,0],[-28,0],[-7,0],[-21,0],[-7,0],[-11,0],[-10,0],[-29,0],[-15,0],[-13,0],[-22,0],[-6,0],[-29,0],[-27,0],[-10,0],[-19,0],[-2,0],[-1,0],[-2,0],[-9,0],[-14,0],[-25,0],[-2,0],[-2,0],[-27,1],[-28,0],[-28,0],[-2,0],[-25,0],[-28,0],[-29,0],[-7,0],[-8,0],[-13,0],[-28,0],[-14,0],[-9,0],[-5,0],[-14,0],[-5,0],[-16,0],[-8,-2]],[[99,8569],[-2,3],[-3,7],[0,6],[1,1],[1,2],[1,0],[3,0],[2,-1],[3,-3],[1,0],[2,-1],[19,1],[2,0],[1,2],[0,2],[-1,2],[-2,2],[-2,1],[-7,1],[-11,0],[-3,-1],[-10,0],[-4,2],[-7,3],[0,7],[4,1],[2,1],[3,1],[9,0],[9,2],[2,1],[5,5],[0,4],[1,4],[-4,4],[-8,1],[-3,1],[-2,1],[0,3],[1,0],[1,2],[3,1],[4,0],[6,-3],[4,0],[2,1],[1,1],[1,3],[1,5],[1,8],[-1,2],[-3,2],[-3,0],[-3,-1],[-4,0],[-1,2],[-1,1],[2,4],[1,1],[8,-1],[2,1],[2,3],[3,4],[1,3],[6,4],[0,2],[-1,1],[-1,1],[-4,0],[-5,-2],[-5,0],[-2,1],[-1,1],[-1,1],[-1,2],[0,2],[1,1],[2,2],[1,1],[2,1],[4,0],[3,0],[2,0],[1,0],[1,0],[5,-2],[2,0],[3,0],[2,2],[-1,2],[-1,2],[-7,6],[0,2],[1,1],[1,1],[4,0],[2,-1],[2,-2],[4,-5],[1,-1],[4,0],[1,0],[1,2],[0,3],[-1,2],[-6,7],[-5,3],[-3,2],[0,1],[-1,1],[0,2],[1,1],[0,1],[7,3],[2,0],[2,-1],[2,-2],[2,-1],[3,-2],[1,0],[2,-1],[3,1],[1,0],[1,2],[1,1],[1,1],[0,1],[0,1],[0,1],[0,3],[-1,2],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[-4,3],[-1,2],[0,1],[1,1],[0,1],[1,0],[5,1],[1,1],[1,1],[1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[2,2],[0,1],[2,1],[1,1],[2,2],[1,1],[1,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[-2,0],[-3,0],[-1,-1],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[2,1],[2,0],[3,1],[1,2],[1,0],[1,1],[0,1],[0,1],[-1,13],[0,2],[-1,3],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[2,0],[1,0],[4,-2],[2,0],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,1],[-2,2],[-2,1],[-2,1],[-5,1],[-7,2],[-1,1],[-3,1],[-2,1],[-1,1],[-1,1],[-1,3],[-3,4],[-1,2],[-2,2],[-3,3],[-1,1],[-1,2],[-1,0],[0,2],[1,0],[0,1],[1,0],[1,1],[2,1],[3,0],[2,0],[2,1],[1,0],[1,1],[0,2],[0,1],[-1,1],[-1,1],[-3,1],[-3,1],[-2,1],[-1,0],[-5,9],[-4,7],[-1,1],[-2,2],[-10,5],[-2,2],[0,1],[0,1],[1,2],[4,1],[1,0],[3,1],[2,2],[0,3],[-1,2],[-2,1],[-10,0],[-1,0],[-3,2],[0,1],[0,2],[0,1],[4,3],[2,2],[1,4],[1,3],[-1,5],[-1,2],[-2,2],[-2,1],[-3,0],[-3,-1],[-5,0],[-2,0],[-3,3],[-1,1],[-1,4],[0,4],[1,2],[1,2],[7,2],[1,2],[1,1],[0,3],[0,1],[-2,3],[-1,1],[-2,3],[-3,4],[-1,2],[-5,1],[-3,2],[1,3],[1,1],[9,3],[2,1],[2,2],[0,1],[-3,2],[-7,0],[-5,4],[2,5],[2,4],[-7,2],[-2,1],[-3,0],[-6,0],[-2,0],[-3,3],[0,3],[2,2],[2,0],[3,0],[1,0],[2,-1],[3,0],[1,1],[1,2],[0,3],[0,1],[-2,2],[-2,0],[-1,1],[-4,-1],[-4,-1],[-6,-6],[-3,0],[-1,0],[-2,2],[0,2],[2,2],[2,1],[3,1],[12,5],[8,2],[2,2],[2,1],[0,4],[-2,2],[-2,1],[-3,0],[-6,0],[-2,-1],[-4,1],[-2,0],[-6,5],[-4,1],[-3,0],[-4,-2],[-3,0],[-1,1],[0,2],[3,2],[4,1],[4,2],[3,2],[1,4],[1,3],[0,1],[-2,3],[-4,4],[-3,3],[0,4],[0,1],[2,2],[3,1],[2,0],[4,1],[3,3],[0,3],[-1,6],[-1,3],[-3,2],[-5,0],[-1,1],[0,2],[1,1],[4,0],[4,0],[2,2],[1,1],[0,3],[0,1],[-1,1],[-5,4],[-1,1],[-1,2],[0,1],[0,2],[0,3],[0,3],[-2,2],[-4,1],[-2,-1],[-2,-1],[-3,0],[-1,2],[0,2],[1,2],[2,2],[4,3],[3,3],[5,4],[1,1],[0,3],[-2,2],[-1,0],[-4,0],[-4,-1],[-4,0],[-4,2],[-6,2],[-2,3],[-1,2],[0,3],[3,5],[0,2],[-1,2],[-5,4],[0,1],[1,1],[3,0],[1,0],[3,-2],[3,0],[2,1],[1,1],[1,2],[0,4],[-2,2],[-3,2],[-2,1],[-5,3],[-7,2],[-4,2],[-4,3],[-1,2],[-1,3],[0,4],[2,6],[0,3],[1,1],[-1,2],[-3,2],[-5,2],[-2,1],[-1,3],[0,4],[3,5],[3,5],[1,2],[-2,3],[-8,-1],[-2,1],[-2,2],[-2,3],[-1,6],[1,4],[0,3],[0,3],[-2,2],[-5,0],[-2,0],[-1,1],[0,3],[4,15],[1,2],[3,3],[1,2],[0,2],[-2,1],[-3,1],[-2,0],[-6,2],[-2,2],[0,5],[1,5],[0,2],[0,9],[0,3],[0,4],[1,3],[1,3],[2,3],[3,2],[5,3],[3,3],[0,2],[-1,1],[-2,0],[-3,0],[-2,1],[-2,1],[1,3],[2,2],[4,3],[15,0],[12,-1],[1,0],[1,0],[4,0],[10,0],[28,0],[29,0],[1,0],[27,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[24,0],[1,0],[1,0],[3,0],[28,0],[28,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[29,0],[28,0],[18,0],[11,0],[30,0],[22,0],[5,0],[30,0],[22,0]],[[2488,9257],[-1,1],[1,-1]],[[2488,9257],[2,-1],[1,-1],[-2,1],[-1,0],[-2,-2],[-4,0],[-3,1],[-7,-8],[-1,-3],[-1,-2],[1,-3],[0,-2],[0,-1],[0,-2],[0,-3],[2,-3],[2,-4],[3,-7],[3,-4],[2,-4],[2,-3],[2,-4],[1,-1],[2,-1],[2,-2],[3,-2],[2,-3],[1,-1],[2,-2],[2,0],[1,0],[0,-1],[-1,-1],[-2,-3],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[3,1],[1,-1],[1,-1],[1,0],[2,-2],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[1,0],[1,0],[2,0],[2,0],[2,-1],[3,-2],[1,-1],[2,0],[2,1],[1,-3],[1,-2],[3,-2],[1,-1],[1,0],[4,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[4,-1],[2,-1],[2,-1],[1,-2],[1,0],[0,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,1],[2,-1],[2,-1],[2,0],[5,-1],[1,0],[3,-1],[3,0],[3,0],[3,0],[3,1],[3,0],[1,1],[2,0],[2,1],[1,0],[1,0],[2,1],[2,0],[2,1],[2,0],[5,1],[3,-2],[1,0],[11,2],[3,-1],[3,1],[2,1],[1,0],[11,0],[12,2],[6,3],[9,2],[3,-1],[5,2],[1,2],[3,1],[2,1],[2,0],[2,0],[1,1],[2,1],[5,1],[3,1],[2,1],[1,1],[1,0],[1,0],[1,1],[2,1],[6,3],[2,1],[1,1],[1,0],[2,1],[1,1],[1,1],[3,2],[3,1],[1,1],[0,1],[7,5],[1,2],[1,1],[1,1],[2,2],[1,0],[2,1],[1,1],[1,1],[2,2],[3,2],[1,0],[2,4],[2,2],[4,3],[0,-2],[0,-6],[0,-9],[0,-16],[0,-2],[1,-23],[0,-2],[0,-18],[0,-4],[0,-14],[0,-4],[0,-6],[0,-6],[0,-5],[0,-2],[0,-2],[0,-10],[0,-8],[0,-1],[0,-4],[0,-12],[1,-25],[0,-18],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-8],[0,-9],[0,-1],[0,-26],[0,-7],[0,-2],[0,-9],[0,-3],[0,-2],[0,-11],[1,-1],[-1,-13],[0,-3],[0,-3],[0,-9],[0,-21],[0,-3],[0,-11],[-7,0],[-6,0],[-18,0],[-15,0],[-3,0],[-7,0],[-11,0],[-4,0],[-2,0],[-1,0],[-9,0],[-12,0],[-8,0],[-28,0],[-14,0],[-7,0],[-4,0],[-34,0],[-2,0],[-7,0],[-4,0],[-4,0],[-17,0],[-1,0],[-2,0],[-7,0],[-2,0],[-5,0],[-23,0],[-10,0],[-27,0],[-1,0],[-5,0],[-2,0],[-6,0],[-9,0],[-1,0],[0,-8],[0,-6],[0,-25],[0,-20],[0,-1],[0,-12],[0,-11],[0,-9],[0,-5],[0,-25],[0,-7],[0,-1],[0,-14],[0,-2],[0,-3],[0,-5],[-1,-23],[0,-7],[0,-4],[0,-7],[0,-2],[0,-87],[0,-4],[0,-5]],[[2445,8565],[-22,0],[-5,0],[-4,0],[-11,-1],[-7,0],[-5,0],[-2,0],[-10,0],[-15,0],[-1,0],[-2,0],[-5,0],[-3,0],[-6,0],[-12,0],[-2,0],[-7,0],[-1,0],[-4,0],[-1,0],[-13,0],[-2,0],[-14,0],[-12,0],[-2,0],[-21,-1],[-5,0],[-9,0],[-7,0],[-14,-1],[-6,0],[-2,0],[-18,0],[-7,0],[-17,0],[-4,0],[-2,0],[-18,0],[-3,0],[-8,0],[-6,0],[-10,0],[-8,0],[-2,0]],[[2110,8562],[-3,0],[-3,0],[-6,1],[-8,0],[-7,0],[-2,0],[-14,0],[-11,0],[-9,0],[-5,0],[-14,0],[-10,0],[-5,0],[-12,0],[-2,0],[-28,0],[-3,0],[-4,0],[-21,1],[-23,1],[-29,0],[-4,0],[-1,0],[-13,0],[-10,0],[-4,0],[-9,0],[-20,-1],[-11,0],[-3,1],[-6,0],[-3,-1],[-3,0],[-29,2],[-2,1],[-15,0],[-5,0],[-1,0],[-11,1],[-6,0],[-1,0],[-37,-1],[-5,0],[0,1],[-7,0],[-15,0],[-5,0],[-3,0],[-26,1],[-30,1],[-8,0],[-1,0],[-12,0],[-8,0],[-24,0],[-9,0],[-23,1],[-28,-1],[-2,0],[-18,0],[-7,0],[-30,1],[-1,0],[-9,0],[-2,0],[-3,0],[-17,0],[-2,0],[-8,1],[-7,0],[-7,0],[-2,0],[-2,0],[-5,0],[-14,0],[-7,0],[-28,0],[-6,0],[-15,1],[-7,0],[-19,0],[-9,0],[-14,-1],[-15,0],[-15,0],[-23,0],[-18,0],[-28,0],[-17,-1],[-12,0],[-10,0],[-12,0],[-4,0]],[[1075,9346],[4,0],[31,0],[26,0],[31,0],[26,0],[30,0],[27,0],[30,0],[15,0],[12,0],[13,0],[5,0],[5,0],[7,0],[3,0],[25,0],[29,0],[2,0],[17,0],[9,0],[29,0],[28,0],[28,0],[29,0],[14,0],[14,0],[28,0],[6,0],[27,0],[1,0],[3,0],[38,0],[30,-1],[51,0],[11,0],[16,0],[9,0],[1,0],[47,0],[45,0],[18,0],[4,0],[9,0],[1,0],[14,0],[38,0],[15,0],[53,0],[5,0],[2,0],[26,0],[25,0],[4,0],[42,0],[16,0],[29,0],[43,-1],[15,0],[24,0],[4,0],[7,0],[32,0],[3,0],[15,0],[19,0],[5,0],[32,0],[21,0],[3,0],[1,0],[1,0],[31,0],[14,0],[15,0],[3,0],[5,0],[1,0]],[[2472,9344],[2,-3],[0,-1],[0,-2],[0,-1],[-1,-5],[-2,-5],[-2,-5],[-1,-2],[0,-2],[-1,-1],[0,-3],[-2,-7],[2,-14],[4,-3],[2,-1],[0,-1],[1,-7],[0,-3],[0,-1],[0,-1],[1,-4],[1,-1],[1,-4],[0,-2],[3,-2],[2,-1],[1,-1],[2,0],[-1,2],[0,2],[1,-1],[1,-1],[2,-1],[5,-2],[0,-1],[1,-3],[0,-1],[-1,-2],[-2,0],[1,1],[0,2],[-1,1],[-1,0],[-2,0]],[[5352,8713],[0,-5],[-1,-8],[0,-2],[0,-5],[-1,-19],[0,-6],[0,-4],[0,-2],[0,-3],[0,-1],[0,-14],[0,-20],[0,-4],[-1,-11],[0,-9],[0,-1],[0,-4],[0,-14],[0,-2],[0,-3],[0,-5],[0,-15],[0,-10],[0,-16],[0,-5],[0,-3],[0,-1],[0,-25],[0,-16],[-1,-3],[-1,-91],[0,-19],[0,-16],[-2,0],[0,-9],[0,-11],[0,-6],[0,-4],[0,-13],[0,-4],[-1,-8],[0,-12],[0,-39],[0,-6],[0,-2],[0,-5],[0,-14],[0,-4],[0,-3],[-1,-54],[0,-17],[0,-1],[0,-17],[0,-32],[0,-11],[0,-8],[0,-12],[-3,0],[0,-8],[0,-33],[0,-10],[0,-9],[0,-23],[0,-25],[0,-7],[1,-32],[0,-3],[0,-5],[0,-5],[-1,-10],[0,-24],[0,-6],[1,-17],[0,-4],[0,-2],[0,-3],[0,-7],[0,-28],[0,-21],[0,-15],[10,0],[0,-3],[0,-10],[0,-3],[0,-13],[0,-6],[0,-18],[0,-3],[0,-22],[0,-3],[0,-8],[0,-2],[0,-8],[0,-4],[1,-4],[0,-8],[0,-5],[1,-8],[0,-3],[-1,-8],[0,-1],[0,-12],[10,0],[-1,-15],[0,-13],[0,-11],[0,-5],[0,-17],[0,-6],[0,-2],[0,-4],[0,-2],[0,-7],[0,-16],[0,-4],[0,-20],[0,-10],[0,-8],[0,-3],[0,-4]],[[5361,7463],[-8,0],[-20,1],[-8,0],[-13,0],[-8,1],[-11,0],[-15,-1],[-19,1],[-7,0],[-1,0],[-1,0],[-4,0],[-7,0],[-13,0],[-21,0],[-8,0],[-13,1],[-3,0],[-17,0],[-4,0],[-2,0],[-7,0],[-5,0],[-3,0],[-10,0],[-12,0],[-20,0],[-11,0],[-2,0],[-3,0],[-7,0],[-9,0],[-12,0],[-16,1],[-13,0],[-7,0],[-4,0],[-2,0],[-2,0],[-14,0],[-17,0],[-3,0],[-3,0],[-26,0],[-4,0],[-6,0],[-3,0],[-11,0],[-16,0],[-16,1],[-6,0],[-1,0],[-12,0],[-11,0],[-1,0],[-15,1],[-13,0],[-7,1],[-7,0],[-24,1],[-7,0],[-12,0],[-17,1],[-34,2],[-18,-1],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-5,0],[-21,0],[-11,0],[-29,0],[-37,0],[-7,-1],[-18,1],[-10,0],[-19,-1],[-9,0],[0,3],[-18,0],[-15,0],[-23,0],[-8,0],[-2,0],[0,-2],[0,-1],[0,-24],[0,-5],[0,-5],[0,-3],[0,-10],[0,-1],[0,-6],[0,-15],[0,-1],[0,-1],[0,-2],[0,-4],[0,-9],[-12,0],[-21,0],[-12,0],[-2,0],[-4,0],[-15,0],[-41,0],[-9,0],[-12,1],[-12,0],[-1,0],[-27,0],[-4,0],[-13,0],[-3,0],[-22,0],[-25,0],[-17,0],[-19,1],[-18,0],[-48,-1],[-6,0],[-50,0],[-1,0],[-55,-1],[-1,0],[-35,0],[-14,0],[-3,0],[-14,0],[-5,0],[-24,-1],[-26,0],[-31,0],[-5,0],[-4,0],[-3,0],[-9,0],[-12,0],[-26,0],[-20,0],[-59,0],[-18,1],[-11,-1],[-3,0],[-12,0],[-4,0],[-5,0],[-9,0],[-26,0]],[[3637,7385],[0,15],[0,9],[0,9],[0,8],[0,3],[0,5],[1,55],[0,11],[0,8],[0,25],[0,12],[0,22],[0,11],[0,21],[0,4],[0,3],[0,1],[0,11],[0,11],[0,4],[0,1],[0,1],[0,6],[0,6],[0,7],[0,26],[-8,0],[0,28],[0,58],[0,6],[0,4],[0,4],[1,6],[0,11],[0,5],[0,10],[0,14],[0,3],[0,7],[-1,15],[0,8],[0,16],[1,0],[0,20],[0,1],[0,17],[0,1],[0,3],[0,39],[0,15],[0,2],[0,20],[0,5],[-1,14],[-1,59],[0,50],[-1,49],[0,49],[-1,52],[-3,0]],[[3624,8271],[-1,13],[0,24],[0,12],[0,5],[0,8],[0,8],[0,5],[-1,11],[0,12],[0,6],[0,18],[0,7],[0,2],[0,5],[1,4],[0,5],[0,2],[-1,5],[0,14],[0,6],[0,13],[0,6],[0,24],[0,6],[0,4],[0,9],[-1,12],[1,24],[0,13],[0,11],[0,7],[0,18],[0,9],[0,10],[0,7],[1,9],[0,10],[0,1],[0,10],[0,1],[0,5],[0,4],[0,2],[0,3],[0,3],[0,2],[-1,13],[0,19],[0,4],[0,4],[0,3],[0,3],[0,2],[0,15],[0,3],[0,11],[0,19],[0,10],[0,14],[0,13],[0,3],[0,3],[0,6],[0,2],[0,9],[0,7],[0,6],[0,1],[0,2]],[[3622,8838],[6,6],[1,1],[4,6],[3,2],[4,2],[7,-1],[6,0],[4,0],[18,2],[6,0],[5,-1],[15,-8],[9,-2],[11,-2],[13,-1],[13,1],[1,0],[4,1],[2,0],[8,3],[16,6],[14,-2],[9,-2],[11,-3],[10,-10],[13,-2],[5,-4],[4,-8],[6,-9],[2,-5],[1,-9],[-3,-15],[-2,-9],[0,-4],[5,-8],[5,-5],[3,-1],[5,-1],[9,-1],[12,-5],[8,0],[5,0],[19,3],[14,-1],[9,-2],[15,-2],[3,0],[13,-4],[7,-1],[17,1],[10,-1],[6,-1],[1,-1],[4,0],[1,0],[15,0],[13,3],[12,-4],[8,1],[9,0],[1,0],[7,3],[4,0],[3,1],[2,-5],[6,-1],[3,1],[7,1],[12,-1],[9,-4],[5,0],[3,0],[15,2],[14,2],[8,-1],[15,-4],[7,-1],[8,-3],[13,0],[10,-2],[9,-5],[24,-2],[22,0],[1,0],[2,2],[0,1],[2,1],[3,0],[7,-1],[1,0],[11,-3],[2,-1],[7,0],[6,-1],[1,0],[4,0],[7,0],[7,-1],[25,-1],[3,0],[5,-1],[10,-4],[4,-3],[5,-14],[3,-3],[4,-5],[4,-6],[5,-21],[5,-15],[5,-8],[4,-7],[3,-15],[-1,-10],[-4,-13],[-5,-11],[2,-10],[-1,-6],[-9,-10],[-1,-6],[3,-5],[7,-7],[10,-4],[11,-9],[2,-1],[6,-1],[1,0],[7,0],[4,0],[9,1],[5,0],[3,0],[5,0],[11,-1],[19,5],[10,0],[14,-2],[3,1],[9,1],[6,-1],[17,-5],[3,0],[3,0],[2,0],[10,2],[2,1],[7,0],[17,-1],[15,2],[5,2],[4,4],[1,1],[3,6],[2,5],[6,5],[3,1],[4,0],[6,-9],[1,-1],[4,-3],[1,-1],[5,-2],[9,1],[12,10],[8,3],[3,-2],[3,-1],[5,-3],[7,0],[20,5],[1,0],[15,-1],[7,1],[8,3],[3,1],[9,3],[13,1],[21,11],[7,2],[13,2],[23,5],[6,6],[1,1],[1,3],[2,2],[3,11],[0,2],[0,10],[-2,3],[-1,3],[-3,4],[-3,11],[0,2],[-1,3],[-2,7],[-1,3],[1,2],[1,1],[0,3],[1,0],[3,2],[10,0],[20,1],[6,3],[2,2],[1,1],[3,5],[10,6],[4,0],[5,3],[1,2],[12,6],[2,0],[1,-4],[2,0],[4,-5],[4,-1],[5,1],[1,0],[9,2],[16,0],[5,4],[2,3],[5,7],[4,-2],[3,-1],[2,-2],[0,1],[2,2],[1,1],[-1,2],[1,2],[0,3],[2,6],[1,4],[2,5],[2,0],[21,5],[14,3],[8,2],[31,8],[1,0],[44,10],[10,0],[51,-1],[28,-22],[2,-2],[8,-8],[8,0],[27,2],[54,4],[24,1],[3,0]],[[7015,7992],[0,-1],[0,-6],[0,-12],[0,-23],[0,-1],[0,-26],[0,-5],[0,-15],[0,-2],[0,-2],[0,-3],[-1,-32],[0,-3],[0,-2],[1,-5],[0,-8],[-2,-35],[0,-7],[0,-1],[0,-14],[0,-4],[0,-11],[0,-2],[0,-4],[0,-1],[0,-1],[0,-3],[0,-4],[0,-2],[0,-8],[0,-2],[0,-25],[0,-3],[0,-4],[-1,-12],[0,-3],[0,-4],[0,-1],[1,-8],[0,-19],[0,-6],[0,-5],[0,-10],[0,-1],[0,-2],[0,-12],[1,-21],[0,-4],[0,-14],[1,-10],[0,-2],[0,-2],[0,-5],[0,-3],[0,-2],[0,-2],[0,-2],[0,-5],[0,-1],[1,-6],[0,-7],[0,-2],[0,-4],[0,-8],[0,-5],[0,-9],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[1,-9],[-1,-13],[0,-12],[0,-5],[0,-2],[0,-3],[-1,-5],[0,-2],[0,-3],[0,-3],[0,-2],[0,-2],[0,-5],[0,-5],[0,-1],[0,-5],[0,-5],[-1,-12],[0,-12],[0,-11],[0,-2],[0,-4],[-1,-8],[0,-14],[0,-25],[0,-2],[0,-11],[0,-11],[0,-19],[0,-6],[0,-19],[0,-5],[1,-13],[0,-12],[0,-3],[0,-13],[0,-8],[0,-2],[0,-7],[0,-1],[0,-9],[0,-1],[0,-2],[0,-4],[1,-15],[0,-3],[0,-5],[0,-3],[2,-19],[1,-15],[0,-11],[0,-3],[0,-1],[1,-5],[0,-9],[0,-2],[0,-4],[-1,-12],[1,-3],[0,-5],[1,-6],[0,-1],[0,-4],[0,-13],[1,-11],[0,-5],[1,-6],[0,-3],[0,-6],[0,-9],[0,-6],[1,-8],[0,-2],[1,-20],[1,-19],[0,-8],[0,-2],[1,-4],[1,-8],[0,-12],[0,-1],[0,-8],[0,-6],[0,-10],[1,-18],[0,-26],[-1,-8],[0,-1],[0,-8],[0,-3],[0,-5],[0,-12],[0,-2],[0,-9],[0,-6],[0,-4],[-1,-7],[0,-43],[0,-1],[0,-18],[0,-9],[0,-23],[0,-1],[0,-14],[0,-21],[-1,-3],[0,-11],[0,-13],[0,-4],[0,-16],[0,-15],[0,-9],[0,-4],[-2,0],[0,-7],[0,-17],[0,-2],[0,-14],[0,-5],[0,-10],[0,-8],[0,-13],[0,-19],[0,-5],[0,-9],[0,-1],[0,-14],[0,-8],[0,-17],[0,-14],[0,-2],[0,-18],[0,-15],[0,-11],[0,-11],[0,-3],[0,-2],[0,-1],[0,-10],[0,-6],[0,-54],[0,-14],[-1,-49],[0,-52],[0,-10],[0,-2],[2,-21],[-4,0],[1,-18],[0,-9],[0,-29],[0,-35],[0,-2],[0,-4],[-1,-35],[0,-2],[0,-12],[0,-16],[0,-1],[0,-8],[0,-19],[0,-18],[0,-5],[0,-16],[0,-14],[0,-9],[0,-3],[0,-8],[1,-6],[0,-10],[0,-3],[0,-3],[0,-3],[0,-2]],[[7021,5847],[-1,0],[0,-1],[-2,-4],[-5,-1],[-3,-2],[-3,-1],[-2,-2],[-3,-3],[-3,-3],[-2,-3],[-3,-4],[-4,-4],[-3,1],[-3,1],[-4,2],[-3,1],[-1,0],[-4,0],[-3,0],[-1,-1],[-4,-1],[-1,0],[-3,-1],[-4,-3],[-5,-3],[-3,-3],[-1,-2],[-1,-1],[-1,-1],[-1,-3],[-3,-4],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-3,-2],[-3,-1],[-1,0],[-4,0],[-4,-1],[-2,-1],[-4,0],[-3,-2],[-1,0],[-1,-2],[-2,-1],[-1,0],[-2,-2],[-5,-4],[-2,-1],[0,-1],[-6,-4],[-11,-10],[-11,-13],[-2,-1],[-6,-4],[-20,-11],[-6,-3],[-8,-5],[-7,-4],[-17,-15],[-13,-7],[-12,-8],[-9,-12],[-3,-2],[0,-1],[-3,-2],[-9,-4],[-1,-1],[-3,-2],[-3,-1],[-7,-2],[-6,-3],[-6,-5],[-2,-2],[0,-1],[-3,-3],[-5,-5],[-2,-1],[-1,0],[-2,-2],[-1,0],[-2,-1],[-5,0],[-11,-10],[-5,-5],[-4,-2],[-2,-2],[-6,-9],[-4,-3],[-4,0],[-2,-3],[-3,0],[-3,-3],[-1,0],[-3,-2],[-4,-3],[-1,0],[-3,-2],[-3,-2],[-2,-2],[-1,-1],[-3,-4],[-2,-1],[0,-1],[1,-2],[0,-2],[4,-15],[2,-4],[0,-1],[1,-2],[1,-2],[1,-1],[2,-3],[1,-1],[1,-3],[3,-4],[3,-5],[3,-4],[0,-2],[0,-1],[4,-5],[1,-2],[1,0],[1,-2],[1,-1],[12,-17],[12,-15],[9,-11],[1,-1],[1,-2],[5,-5],[8,-9],[3,-4],[1,-1],[3,-4],[2,-1],[5,0],[4,0],[2,-4]],[[6733,5451],[-1,-1]],[[6732,5450],[-11,5],[-16,13],[-11,11],[1,4],[-1,1],[-1,1],[-2,3],[0,-1],[-1,0],[-1,-1],[-1,-1],[-3,3],[-2,2],[-1,2],[2,1],[1,0],[-4,9],[-2,-1],[-1,0],[-4,4],[1,1],[1,0],[-12,15],[-2,4],[-5,6],[-1,2],[-4,4],[-2,-1],[-2,-1],[-1,-1],[-1,3],[-1,1],[1,2],[0,1],[1,1],[0,2],[-3,2],[-2,3],[0,1],[-2,3],[-1,5],[-1,2],[0,2],[-3,-1],[-1,3],[1,1],[1,2],[0,6],[-2,-1],[-1,2],[-1,2],[-1,-1],[-3,-3],[-1,-1],[-7,-6],[1,-6],[-2,-3],[1,-2],[3,-3],[1,-3],[1,-2],[2,-3],[2,-3],[2,-3],[2,-5],[1,-3],[-2,-2],[-4,-2]],[[6628,5525],[-2,0],[-3,0]],[[6623,5525],[-5,2],[-6,9],[-11,11],[-3,-2],[0,-4],[2,-5],[-9,-3],[7,-8],[-3,-1],[-4,2],[-4,-4],[-6,5],[-4,-3],[9,-8],[-4,-3],[-4,3],[-5,-3],[-4,2],[-5,-5],[2,-2],[5,2],[1,1],[3,-2],[-4,-5],[-2,-1],[-7,6],[-3,-2],[0,-1],[-1,-2],[-1,1],[-2,-2],[-2,-7],[-2,-7],[11,-1],[5,-2],[-8,-4],[4,-2],[1,-6],[-5,4],[1,-5],[-11,8],[2,-6],[-3,-4],[-3,6],[-2,-4],[-3,-1],[-2,-1]],[[6538,5471],[-1,0]],[[6537,5471],[-4,1]],[[6533,5472],[-1,1],[1,4],[-3,3],[-2,4],[-1,-9],[-2,0],[-3,3],[-3,-1],[-1,-6],[-5,1],[-2,-1],[-3,-2],[-5,-3],[-2,-5],[-1,-3],[-2,-6]],[[6498,5452],[-2,-3]],[[6496,5449],[-2,-1],[-5,-2],[-1,-7],[-1,-3],[1,-3],[4,-7],[-2,-8],[3,-3],[-2,-3],[4,-8],[1,-6],[3,-3],[-1,-5],[-5,1],[-2,-6],[-5,-5],[-6,-1],[-1,-5],[2,-3],[4,-3],[6,1],[1,0]],[[6492,5369],[1,1],[1,-5],[0,-4],[-1,-1],[-3,-2],[-1,-1],[-1,0],[-2,-1],[-2,1],[-2,0],[-5,-1],[-3,-2],[-1,0],[-1,0],[-1,1],[-1,1],[-2,1],[-3,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,-2],[-1,-1],[-4,-1],[-1,0],[-1,0],[-3,0],[-2,0],[-2,2],[-4,4],[-4,2],[-2,1],[-8,-1],[-4,-1],[-1,0],[-3,-3],[-2,-1],[-2,-1],[-2,0],[-1,0],[-5,4],[-2,1],[-1,2],[-2,0],[-3,2],[-1,1],[-3,2],[-1,1],[-1,1],[0,2],[-2,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[-1,0],[-1,1],[-3,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[6378,5375],[-1,2],[-5,3],[-3,1],[-2,1],[0,2],[0,1],[0,2],[0,12],[0,7],[0,6],[0,8],[0,6],[0,5],[-1,11],[0,2],[0,1],[0,3],[0,2],[0,1],[0,10],[0,3],[0,9],[0,15],[0,10],[0,10],[0,14],[0,4],[0,3],[0,1],[0,6],[0,11],[-2,0],[-9,0],[-11,1],[-5,0],[-13,1],[-10,-1],[-1,0],[-3,0],[-27,0],[-14,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-19,0],[-10,0],[-3,0],[-3,0],[-11,0],[-10,0],[-4,0],[-1,0],[-13,1],[-3,0],[-6,0],[-5,0],[-1,0],[-3,0],[-9,0],[-4,0],[-4,0],[-6,0],[-8,0],[-13,0],[-5,0],[-1,0],[-1,0],[-1,0],[-2,0],[-7,0],[-16,1],[-13,0],[-2,0],[-1,0],[-12,0],[-8,0],[-4,0],[-4,0],[-5,0],[-5,0],[-8,1],[-1,0],[-12,0],[-27,0],[-5,0],[-7,0],[-4,0],[-14,0],[-13,0],[-4,0],[-9,0],[-4,0],[-22,4],[-4,1],[-5,-1],[-14,0],[-3,0],[-1,0],[-2,0],[-3,0],[-4,0],[-3,0],[-13,0],[-7,0],[-3,-1],[-11,0],[-18,-1],[-7,0],[-2,0],[-22,0],[-6,-1],[-9,0],[-21,-1],[-9,0],[-17,0],[-6,0],[-8,0],[-7,0],[-12,-1],[-16,0],[-8,0],[-8,0],[-2,0],[-6,0],[-5,0],[-21,1],[-10,-1],[-12,0],[-2,0],[-21,0],[-8,0],[-26,0],[-10,0],[-3,0],[-61,1],[-8,1],[-26,-1],[-26,0],[-2,0],[-17,0],[-9,0]],[[5386,5551],[1,12],[0,16],[0,8],[0,1],[0,2],[0,10],[0,17],[1,8],[0,10],[0,44],[1,19],[0,13],[1,15],[0,9],[0,8],[0,3],[0,4],[0,5],[0,5],[0,9],[0,3],[0,19],[1,4],[0,12],[0,11],[0,3],[0,8],[0,13],[0,3],[0,6],[0,9],[0,5],[0,7],[1,20],[0,24],[0,15],[0,6],[1,10],[0,3],[0,6],[0,11],[0,8],[1,17]],[[5394,5992],[0,66],[0,9],[0,11],[-1,12],[0,43],[-13,0],[0,3],[0,10],[0,7],[0,7],[1,6],[0,14],[0,7],[0,9],[0,16],[0,19],[0,5],[0,3],[0,5],[0,3],[0,6],[0,2],[0,6],[0,20],[0,3],[0,45],[0,3],[0,12],[0,6],[0,18],[0,4],[0,3],[0,4],[0,9],[0,3],[0,10],[0,2],[0,4],[0,11],[0,10],[0,6],[-1,6],[1,6],[0,7],[0,6],[0,6],[0,3],[0,4],[0,8],[1,10],[0,12],[0,14],[0,6],[0,5],[0,1],[0,15],[0,11],[0,12],[0,5],[0,8],[-2,0],[-1,4],[0,2],[-1,7],[0,2],[-1,3],[0,6],[-1,10],[0,1],[0,1],[0,9],[0,2],[0,3],[0,7],[0,4],[0,1],[0,7],[0,3],[0,1],[0,4],[0,4],[0,3],[0,13],[1,13],[-1,29],[0,2],[1,5],[2,28],[0,6],[1,18],[1,4],[0,11],[0,1],[1,4],[0,11],[0,9],[0,6],[1,7],[0,1],[0,4],[0,2],[0,9],[0,4],[0,4],[0,3],[0,8],[0,1],[0,3],[0,2],[0,15],[0,2],[0,14],[0,8],[0,12],[2,13],[0,11],[0,6],[0,2],[0,8],[-2,34],[0,13],[1,3],[0,5],[0,6],[0,16],[0,15],[1,4],[0,2],[0,2],[0,1],[0,3],[0,3],[0,2],[0,1],[0,1],[0,1],[0,3],[0,5],[0,4],[0,5],[0,5],[0,1],[0,3],[0,2],[1,22],[0,3],[0,4],[0,7],[0,2],[0,4],[0,2],[1,20],[0,5],[-5,0],[-22,1],[-1,12],[0,13],[0,11],[0,14],[-1,23],[0,11],[0,2],[0,11],[0,4],[0,1],[0,8],[0,4],[0,7],[0,2],[-1,18],[0,4],[0,11],[0,16],[1,17],[0,5],[1,7],[0,17],[0,2],[0,2],[1,21],[1,3],[0,16],[0,6],[0,23]],[[5352,8713],[43,-2],[69,-3],[5,-1],[8,0],[9,0],[5,2],[18,6],[15,5],[5,-2],[1,0],[0,-17],[0,-21],[26,-2],[24,-17],[2,-1],[11,-1],[9,-1],[5,-3],[23,-10],[17,-8],[47,-20],[56,-25],[13,-5],[33,-15],[20,-9],[14,2],[14,2],[42,5],[21,3],[29,-6],[6,-23],[3,-12],[3,-7],[-1,-7],[0,-1],[2,-1],[-4,-4],[-1,0],[-2,-2],[-1,-2],[-1,-2],[3,-2],[4,-4],[-3,-2],[-2,-2],[-3,-1],[-3,-1],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-5,0],[-4,0],[-4,1],[-4,2],[-1,0],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-4,-4],[-3,0],[-17,1],[-11,1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-4,-1],[-1,-1],[-1,-5],[-2,-12],[-10,-20],[0,-1],[0,-3],[-3,-7],[-2,-6],[11,-11],[21,-21],[7,-2],[24,-5],[10,-6],[9,1],[66,4],[28,2],[11,3],[15,3],[24,6],[1,0],[5,1],[23,0],[2,0],[8,0],[13,-16],[1,-1],[3,-4],[4,-6],[2,-2],[0,-1],[1,0],[0,-1],[6,-1],[2,-2],[1,-2],[1,-1],[1,-3],[2,-2],[4,-8],[24,-8],[1,-22],[-11,-20],[-10,-18],[-5,-11],[3,-15],[3,-10],[2,-9],[17,-31],[6,-10],[0,-1],[14,-19],[0,-1],[1,-1],[1,-2],[1,-5],[3,-3],[6,-7],[1,1],[3,0],[4,-2],[6,-8],[1,-1],[6,-7],[9,-19],[3,-8],[6,-13],[6,-11],[2,-3],[2,-4],[1,-2],[0,-2],[2,-3],[1,-3],[0,-2],[0,-2],[0,-1],[1,-1],[3,-1],[2,-1],[0,-1],[-1,-5],[0,-2],[3,-3],[0,-2],[1,-1],[1,-4],[5,-8],[1,-5],[1,-4],[4,-7],[5,-6],[1,0],[1,-1],[1,0],[1,2],[1,0],[0,1],[5,1],[1,0],[8,7],[5,3],[4,2],[8,3],[6,3],[2,0],[3,0],[1,0],[3,1],[7,2],[1,1],[5,2],[7,3],[4,2],[7,1],[14,2],[2,0],[1,0],[1,0],[2,1],[3,0],[5,1],[4,0],[2,1],[2,1],[8,3],[4,2],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-3,9],[-2,1],[-1,0],[-2,2],[-1,1],[-1,1],[-5,3],[-1,0],[-7,5],[-1,1],[-2,3],[-4,7],[1,5],[1,4],[-1,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,3],[0,1],[-1,2],[-2,3],[-2,6],[-1,2],[1,2],[2,8],[1,3],[2,5],[1,3],[0,2],[0,1],[2,6],[-4,5],[-6,7],[-5,5],[2,7],[0,4],[12,2],[3,10],[3,11],[1,7],[2,4],[1,1],[3,2],[25,15],[4,3],[45,-9],[8,-2],[3,-1],[0,-1],[1,-1],[1,-1],[1,-2],[5,0],[8,1],[1,3],[-2,1],[1,0],[2,3],[1,1],[1,2],[10,-2],[1,0],[1,-3],[1,0],[1,0],[13,4],[6,1],[-1,6],[2,3],[20,11],[22,4],[2,-16],[41,-2],[27,-1],[9,-1],[7,7],[8,1],[5,1],[2,0],[15,0],[8,-18],[4,-1],[1,-4],[-4,-4],[1,-15],[12,-2],[9,-13],[21,-4],[3,0],[1,-1],[9,-2],[6,-1],[-1,-2],[-1,-1],[-2,-5],[-3,-7],[0,-2],[-5,-12],[-5,-11],[1,-11],[0,-7],[7,-11],[0,-8],[1,-17],[4,-2],[3,-1],[1,-1],[1,0],[13,-5],[9,-17],[2,-4],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[3,1],[2,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[1,1],[1,0],[3,1],[3,0],[5,-1],[2,0],[3,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-3],[1,-1],[4,-3],[-2,-3],[-1,0],[-5,0],[-5,-1],[1,-9],[-3,-3],[2,-6],[7,0],[2,0],[8,-5],[4,0],[1,1],[1,1],[1,2],[1,1],[1,2],[12,2],[10,2],[2,1],[3,2],[3,1],[2,-1],[3,-1],[1,1],[3,0],[0,-1],[1,0],[1,-1],[5,0],[12,1],[11,-18],[22,-14],[4,-21],[1,0],[4,1],[3,0],[16,2],[9,2],[4,1],[4,-2],[22,5],[2,-6],[2,-2],[4,-2],[14,-5]],[[2110,8562],[1,-6],[0,-3],[1,-2],[0,-15],[0,-3],[0,-19],[0,-3],[0,-12],[0,-3],[0,-3],[0,-9],[0,-5],[0,-1],[0,-6],[0,-4],[0,-3],[-1,-4],[0,-6],[0,-2],[0,-12],[0,-10],[0,-16],[-1,-11],[0,-6],[0,-8],[0,-24],[-1,-24],[0,-14],[0,-10],[0,-2],[1,-16],[0,-10],[1,-6],[0,-3],[0,-1],[0,-11],[0,-1],[1,0],[10,0],[0,-21],[0,-24],[1,-24],[0,-4],[0,-7],[-1,-13],[0,-21],[0,-2],[0,-3],[0,-17],[0,-7],[0,-17],[-1,-7],[1,-2],[0,-3],[-1,-19],[0,-2],[0,-2],[0,-2],[0,-11],[0,-33],[0,-25],[0,-8],[0,-11],[0,-5],[0,-3],[0,-15],[0,-1],[0,-2],[0,-1],[0,-15]],[[2121,7941],[-1,0],[-13,0],[-15,0],[-11,0],[-4,0],[-12,0],[-30,-1],[-2,0],[-7,0],[-13,0],[-2,0],[-1,0],[-7,0],[-22,0],[-13,0],[-4,1],[-9,0],[-28,-1],[-7,0],[-20,0],[-8,0],[-17,0],[-31,-1],[-28,0],[-25,0],[-4,0],[-29,0],[-26,0],[-13,0],[-16,0],[-27,0],[-28,0],[-5,-1],[-22,0],[-18,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-6,0],[-10,1],[-10,0],[-28,0],[-16,0],[-12,0],[-13,0],[-15,0],[-10,0],[-13,0],[-12,0],[-2,0],[-8,1],[-6,1],[-11,0],[-17,1],[-14,0],[-2,0],[-13,0],[-9,-2],[-2,-1],[-1,0],[-5,0],[-5,0],[-5,0],[-1,0],[-3,0],[-5,0],[-2,0],[-5,0],[-15,0],[-8,0],[-3,1],[-1,0],[-3,0],[-3,0],[-9,0],[-6,1],[-4,0],[-2,1],[-1,0],[-2,0],[-6,1],[-4,1],[-2,0],[-1,0],[-24,-1],[-3,0],[-19,0],[-7,0],[-15,0],[-14,0],[-1,0],[-5,0],[-7,0],[-3,0],[-3,0],[-4,0],[-4,0],[-2,0],[-1,0],[-3,0],[-4,0],[-5,0],[-4,1],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[-3,0],[-4,-1],[-2,0],[-8,0],[-4,1],[-2,0],[-8,0],[-11,0],[-11,0],[-9,0],[-11,0],[-7,0],[-2,0],[-2,0],[-3,0],[-4,-1],[-3,0],[-14,0],[-1,0],[-2,0],[-11,-1],[-8,0],[-5,0],[-2,0],[-7,0],[-13,0],[-4,0],[-4,0]],[[952,7942],[-4,0],[-7,0],[-9,0],[-5,0],[-3,0],[-4,0],[-6,0],[-7,0],[-6,0],[-4,0],[-2,0],[-4,0],[-3,0],[-5,0],[-4,0],[-5,0],[-6,0],[-3,0],[-4,0],[-5,0],[-2,0],[-5,0],[-4,0],[-5,0],[-2,0],[-10,0],[-11,0],[-5,0],[-2,0],[-19,0],[-7,0],[-4,0],[-5,0],[-4,0],[-15,0],[-28,0],[-11,-1],[-17,0],[-2,0],[-26,0],[-28,0],[-14,0],[-6,0],[-4,0],[-4,0],[-27,0],[-14,0],[-14,0],[-9,0],[-19,0],[-28,0],[-28,0],[-8,0],[-20,0],[-3,0],[-8,0],[-2,0],[-15,0],[-28,0],[-6,0],[-8,0],[-33,0],[-6,0],[-3,0],[-5,0],[-4,0],[-5,0],[-2,0],[-7,0],[-1,0],[-2,0],[-2,0],[-1,0],[-26,0],[-28,0],[-28,0],[-14,0],[-14,0],[-28,0],[-24,0],[-4,0],[-11,0],[-11,1]],[[120,7942],[4,1],[6,0],[2,2],[1,2],[0,6],[-1,2],[-2,2],[-3,0],[-2,0],[-5,-1],[-2,0],[-3,2],[0,1],[0,2],[1,2],[1,2],[5,4],[2,-1],[1,5],[1,2],[1,2],[1,4],[3,-1],[-4,10],[-1,1],[0,2],[1,2],[2,1],[1,1],[6,1],[3,1],[1,0],[2,2],[0,2],[-2,2],[-1,0],[-6,1],[-3,2],[-2,3],[0,3],[1,1],[1,1],[2,1],[4,0],[2,-1],[1,-1],[4,-4],[3,-7],[0,-2],[3,-2],[1,-1],[4,0],[2,2],[0,1],[0,2],[-1,4],[-1,2],[-1,2],[-4,3],[-5,3],[-14,6],[-4,0],[-3,-1],[-6,-6],[-2,0],[-1,1],[-2,2],[0,3],[4,3],[5,2],[4,2],[6,2],[4,0],[2,0],[3,-1],[6,-4],[2,-1],[3,0],[2,2],[0,2],[-1,2],[-2,2],[-3,1],[-6,2],[-4,0],[-4,0],[-5,1],[-3,1],[-2,2],[-1,1],[0,3],[0,1],[2,2],[1,1],[8,0],[3,2],[0,2],[0,1],[-3,2],[-1,0],[-2,1],[-4,0],[-1,-1],[-3,0],[-1,1],[-2,2],[0,2],[1,2],[2,2],[2,1],[10,5],[2,0],[3,0],[3,0],[3,0],[1,0],[2,2],[0,2],[-1,2],[-3,4],[-4,3],[0,1],[0,2],[1,1],[1,0],[6,1],[2,2],[0,1],[-2,2],[-1,1],[-3,1],[-9,2],[-2,0],[-5,0],[-3,0],[-2,0],[-1,1],[-1,2],[0,2],[1,1],[2,2],[3,1],[6,0],[7,-2],[1,0],[4,0],[2,1],[2,2],[0,2],[-3,5],[0,1],[1,1],[6,0],[1,0],[3,3],[1,1],[-1,5],[-1,4],[-3,5],[-2,5],[-3,2],[-1,1],[-3,0],[-1,-1],[-4,-3],[0,-1],[-3,-3],[-1,0],[-2,0],[-3,1],[0,1],[0,2],[0,2],[1,1],[9,10],[3,3],[4,-1],[2,-1],[2,-4],[3,-2],[2,-1],[4,0],[3,2],[0,1],[0,2],[-1,2],[-1,1],[-6,4],[-4,1],[-3,1],[-2,2],[-1,1],[0,3],[6,5],[0,2],[-2,2],[-2,1],[-3,1],[-2,-1],[-2,-1],[-2,-3],[-3,-1],[-2,0],[-1,1],[-1,1],[-1,1],[0,2],[1,2],[4,9],[2,2],[2,1],[7,-1],[10,3],[1,1],[2,2],[0,3],[-1,1],[-2,2],[-4,2],[-11,1],[-3,0],[-3,0],[-1,-1],[-4,-3],[-2,-1],[-2,1],[-1,1],[0,3],[1,2],[2,2],[2,1],[2,0],[7,1],[2,2],[2,2],[3,9],[0,2],[0,2],[-1,0],[-3,3],[-2,1],[-3,0],[-7,0],[-1,1],[-2,1],[0,3],[3,3],[3,3],[0,3],[-1,1],[-3,1],[-4,1],[-1,0],[-2,2],[0,3],[-2,3],[-2,2],[-2,2],[-5,3],[-3,2],[-1,2],[0,4],[2,4],[2,2],[1,0],[4,0],[5,-1],[1,0],[6,0],[1,1],[2,1],[0,1],[0,1],[0,1],[-3,4],[-2,3],[0,2],[1,1],[1,1],[5,1],[2,1],[1,1],[0,2],[-2,1],[-1,1],[-1,0],[-3,0],[-8,-4],[-3,0],[-1,0],[-4,2],[-4,3],[-4,3],[0,2],[2,3],[0,2],[-2,1],[-5,1],[-2,1],[0,2],[1,2],[2,2],[2,1],[7,1],[3,0],[5,0],[3,1],[3,3],[2,4],[2,2],[3,1],[5,3],[3,3],[0,1],[0,2],[-4,5],[-3,-1],[-1,4],[-2,4],[-2,5],[-1,0],[-2,-1],[-2,-1],[-1,-2],[0,-1],[-4,-4],[-9,1],[1,6],[1,1],[4,2],[5,2],[8,2],[4,0],[4,0],[2,-2],[8,-7],[3,0],[3,6],[-1,2],[-3,2],[-3,2],[-7,4],[-9,2],[-3,0],[-3,3],[-2,3],[0,2],[1,1],[1,1],[2,1],[5,1],[8,-4],[3,-1],[2,0],[2,0],[3,3],[1,1],[0,3],[1,3],[0,3],[-1,4],[-2,2],[-3,3],[-5,0],[-3,-1],[-8,-8],[-2,-1],[-2,0],[-5,0],[-2,1],[-1,1],[-1,1],[0,3],[1,1],[2,3],[8,4],[2,0],[4,2],[2,2],[7,6],[2,3],[0,6],[0,6],[0,2],[-3,2],[-2,1],[-2,0],[-4,-1],[0,-1],[-5,0],[-1,1],[-4,3],[-2,3],[-2,4],[0,3],[2,4],[2,1],[2,1],[3,0],[3,0],[7,-5],[2,-1],[3,1],[2,1],[0,3],[-1,3],[-2,2],[-5,1],[-6,0],[-5,-1],[-3,-1],[-6,-2],[-4,0],[-5,0],[-1,0],[-4,1],[-2,2],[0,1],[0,2],[0,1],[4,3],[3,1],[4,1],[6,1],[3,0],[5,1],[2,1],[2,1],[0,2],[1,2],[-1,3],[-4,4],[0,2],[0,1],[3,-1],[2,-2],[2,-4],[3,-1],[2,0],[1,0],[2,2],[0,1],[0,2],[-1,2],[-1,1],[-3,3],[-3,2],[-4,2],[-5,1],[-4,3],[-1,1],[-1,1],[-1,3],[0,5],[1,5],[-2,7],[1,0],[3,0],[3,-1],[4,0],[3,0],[4,1],[2,1],[7,6],[2,3],[2,2],[0,2],[-1,2],[-1,1],[-3,1],[-2,0],[-3,0],[-3,-1],[-8,-5],[-3,-1],[-3,0],[-3,1],[-3,1],[-2,3],[-1,4],[-1,4],[1,3],[1,2],[2,2],[2,1],[3,1],[6,0],[1,0],[2,2],[0,3],[-1,3],[-4,3],[-6,2],[-9,2],[-4,2],[-3,2]],[[3637,7385],[0,-4],[-1,-61],[0,-8],[0,-10],[0,-8],[0,-4],[0,-9],[0,-26],[0,-2],[0,-16],[0,-15],[0,-21],[0,-13],[0,-26],[0,-22],[0,-24],[0,-7],[1,-12],[0,-8],[1,0],[0,-24],[1,-22],[0,-8],[0,-4],[0,-2],[0,-14],[0,-6],[0,-2],[0,-4],[0,-29],[0,-4],[0,-5],[1,-8],[1,-5],[0,-3],[1,-5],[0,-10],[0,-8],[0,-23],[0,-1],[0,-7],[-1,-13],[0,-12],[0,-6],[1,-31],[0,-3],[0,-6],[0,-16],[0,-4],[0,-6],[0,-1],[-2,0],[0,-17],[0,-1],[0,-1],[0,-9],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-5],[0,-2],[0,-7],[0,-4],[0,-1],[0,-1],[0,-24],[0,-2],[0,-9],[0,-2]],[[3640,6703],[-1,-1],[1,0],[0,-3],[0,-1],[0,-22],[0,-7],[0,-4],[0,-7],[0,-4],[0,-2],[-1,-5],[-3,0],[-20,0],[-3,0],[-28,0],[-27,0],[-1,0],[-13,0],[-13,0],[-41,-1],[-18,0],[-12,0],[-4,0],[-29,0],[-1,0],[-1,0],[-3,0],[-1,0],[-8,-1],[-2,0],[-3,0],[-1,0],[-6,0],[-5,-1],[-4,0],[-3,0],[-4,0],[-2,0],[-6,0],[-4,0],[-3,0],[-3,0],[-28,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-14,0]],[[3312,6644],[-5,0],[-6,0],[-6,0],[-5,0],[-14,0],[-26,-1],[-14,1],[-2,0],[-4,0],[-7,0],[-14,1],[-7,0],[-5,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-5,-1],[-8,0],[-6,0],[-5,0],[-7,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-7,0],[-1,0],[-3,0],[-3,0],[-1,0],[-4,0],[-5,0],[-4,0],[-5,0],[-8,0],[-4,0],[-2,0],[-5,0],[-3,0],[-20,0],[-7,0],[-14,1],[-1,0],[-13,0],[-10,0],[-7,0],[-5,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,1],[-4,0],[-5,0],[-12,1],[-2,0],[-1,0],[-10,0],[-1,0],[-4,0],[-8,0],[-3,0],[-5,0],[-4,0],[-10,0],[-2,0],[-6,-1],[-14,0],[-10,0],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-2,-1],[-4,0],[-17,0],[-7,1],[-6,0],[-15,0],[-2,0],[-4,0],[-4,0],[-2,0],[-2,0],[-4,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-27,0],[-9,0],[-19,1],[-16,0],[-1,0],[-10,0],[-8,1],[-6,0],[-2,0],[-13,0],[-2,0],[-2,0],[-9,0],[-6,0],[-34,0]],[[2651,6649],[0,18],[0,17],[0,7],[0,3],[0,5],[0,19],[0,4],[0,4],[-1,8],[1,12],[0,3],[0,3],[0,7],[0,5],[0,7],[-1,2],[0,10],[1,14],[0,2],[-1,21],[0,7],[0,5],[0,4],[0,1],[0,4],[0,4],[0,2],[0,2],[0,2],[0,6],[0,5],[0,10],[0,2],[0,4],[0,5],[-1,2],[0,8],[0,3],[0,4],[0,18],[0,2],[0,15],[0,4],[0,4],[0,9],[0,2],[0,2],[0,6],[0,6],[0,13],[0,3],[0,9],[0,6],[-1,10],[0,10],[0,5],[1,25],[0,9],[0,5],[0,3],[0,12],[-1,14],[0,-1],[-6,1],[-6,0],[0,13],[0,14],[0,9],[0,5],[0,6],[0,14],[0,16],[0,3],[0,4],[1,7],[0,3],[0,13],[0,18],[0,1],[-1,4],[1,5],[0,7],[0,7],[0,23],[0,4],[-1,4],[0,5],[0,6],[0,8],[0,2],[0,1],[1,5],[0,4],[0,2],[0,7],[0,11],[0,11],[0,33],[0,15],[0,9],[0,10],[0,17],[0,8],[0,4],[-8,1],[-3,1],[-3,1],[-3,0],[-4,0],[-6,1],[-3,1],[-1,0],[-2,1],[-3,1],[-9,2],[-3,1],[0,1],[-1,0],[-3,1],[-5,2],[-2,1],[-3,1],[-5,2],[-2,1],[-1,1],[-3,2],[-2,1],[-2,3],[-3,2],[-3,3],[-1,2],[-1,1],[-4,4],[-1,2],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,3],[-1,2],[0,2],[-2,3],[-1,1],[0,1],[0,1],[-1,1],[0,3],[-1,1],[-1,4],[0,2],[-1,6],[-1,2],[0,3],[0,2],[-1,2],[0,4],[-1,3],[0,1],[1,3],[0,2],[0,2],[0,2],[1,5],[0,4],[0,4],[0,1],[0,1],[1,4],[1,3],[0,4],[1,3],[0,2],[0,3],[1,1],[0,1],[1,2],[0,1],[1,3],[0,1],[1,2],[1,2],[1,1],[1,2],[1,5],[0,1],[1,1],[1,1],[0,2],[1,2],[2,4],[0,1],[1,3],[1,2],[1,2],[0,1],[4,6],[1,3],[0,3],[1,2],[0,1],[2,3],[1,2],[1,1],[1,4],[1,1],[1,3],[0,1],[1,0],[1,2],[0,2],[1,1],[1,2],[1,2],[1,3],[2,2],[1,1],[0,1],[1,2],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[0,1],[1,0],[2,2],[3,2],[0,1],[1,2],[-11,0],[-16,0],[-2,0],[-33,0],[-12,0],[-16,0],[-2,0],[-66,0],[-30,0],[-44,0],[-38,1],[-3,0],[-39,0],[-18,0],[-18,0],[-1,0],[-7,0],[-9,0],[-16,0],[-26,0],[-19,0],[-4,0],[-6,0],[-5,0],[-15,0]],[[2135,7682],[-12,0],[0,28],[0,5],[0,21],[0,11],[0,32],[0,17],[0,11],[-1,15],[0,8],[0,5],[0,19],[0,1],[0,4],[0,42],[0,27],[-1,7],[0,5],[0,1]],[[2445,8565],[28,-1],[8,0],[4,0],[32,0],[16,0],[31,0],[35,0],[15,0],[0,-6],[0,-6],[0,-8],[0,-6],[1,-42],[0,-35],[0,-33],[0,-7],[0,-6],[-1,-17],[0,-12],[0,-9],[0,-11],[1,-24],[0,-25],[0,-25],[0,-7],[0,-17],[5,1],[51,0],[28,0],[7,0],[7,0],[4,0],[10,0],[11,0],[1,0],[17,0],[3,0],[1,0],[2,0],[12,0],[1,0],[9,0],[24,0],[7,0],[21,0],[15,0],[36,1],[8,0],[57,0],[55,0],[41,0],[15,0],[28,0],[28,0],[56,0],[34,0],[22,0],[23,0],[7,0],[26,0],[9,0],[48,1],[26,0],[30,0],[54,0],[1,0],[1,0],[7,0],[53,0],[15,0],[41,0],[52,0]],[[8003,7968],[0,-1],[0,-3],[0,-1],[0,-4],[0,-2],[-1,-5],[1,-5],[0,-4],[0,-4],[0,-3],[0,-3],[0,-2],[0,-8],[0,-17],[0,-2],[0,-10],[0,-10],[0,-17],[0,-8],[0,-4],[0,-10],[0,-1],[0,-5],[0,-3],[0,-2],[0,-3],[0,-15],[0,-3],[0,-7],[0,-35],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-6],[5,0],[4,0],[0,-5],[0,-2],[0,-2],[0,-4],[0,-4],[0,-2],[0,-11],[0,-12],[0,-2],[0,-4],[0,-3],[0,-2],[0,-5],[0,-4],[0,-4],[0,-2],[0,-8],[0,-3],[0,-1],[0,-16],[0,-6],[0,-7],[0,-6],[0,-2],[0,-1],[0,-6],[0,-1],[-1,-3],[0,-10],[0,-13],[0,-2],[-1,-7],[0,-7],[0,-3],[0,-1],[0,-5],[0,-2],[0,-8],[0,-7],[0,-3],[0,-5],[-1,-10],[0,-14],[0,-6],[0,-1],[0,-3],[0,-11],[0,-5],[0,-13],[0,-11],[0,-24],[6,-1],[2,0],[-1,-20],[0,-3],[0,-2],[0,-2],[0,-3],[0,-17],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-14],[0,-29],[0,-7],[0,-5],[-1,-14],[0,-5],[0,-14],[0,-8],[0,-13],[0,-17],[0,-24],[0,-11],[0,-9],[0,-2],[0,-1],[0,-4],[0,-2],[0,-11],[0,-1],[0,-7],[0,-5],[0,-5],[0,-12],[0,-5],[0,-6],[0,-2],[0,-2],[0,-17],[0,-1],[0,-1],[0,-4],[0,-5],[0,-2],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-1],[0,-2],[0,-3],[0,-2],[0,-22],[0,-5],[0,-9],[0,-1],[1,-8],[0,-12],[0,-4],[0,-1],[0,-8],[0,-3],[0,-9],[0,-2],[0,-21],[0,-7],[-1,-18],[0,-13],[0,-8],[0,-6],[0,-14],[0,-12],[0,-15],[0,-25],[0,-16],[0,-3],[0,-9],[0,-8],[0,-7],[0,-20],[0,-4],[0,-21],[0,-6],[0,-3],[0,-50],[-1,-3],[1,-3]],[[8015,6738],[-3,-2],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,-2],[-4,-3],[-5,-3],[-3,-1],[-4,1],[-4,0],[-3,-3],[-1,-3],[-1,-1],[0,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-3],[-3,-3],[-3,-3],[-3,-1],[-2,-1],[-1,-1],[-1,-2],[-2,-3],[0,-1],[-4,-3],[-2,-4],[-2,-3],[-4,-5],[-3,-2],[0,-1],[-6,-4],[-4,-3],[-3,-3],[-3,-3],[0,-1],[-3,-4],[-2,-2],[-1,-1],[-3,-4],[-3,1],[-4,-3],[-4,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-3],[-3,-1],[-1,-2],[-5,-2],[-3,-2],[-4,-4],[-4,-2],[-1,-3],[-2,-4],[-3,-4],[-4,-2],[-4,-4],[-4,-4],[-2,-5],[-5,-6],[-4,-3],[-3,1],[-4,-1],[-2,-5],[0,-3],[-3,0],[-3,-2],[-2,-3],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-3,-3],[-2,-5],[-3,-4],[-2,-2],[0,-2],[-2,-4],[-1,-5],[-1,-2],[-3,-3],[-1,-2],[0,-2],[-2,-1],[-2,-1],[0,-5],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[-3,0],[-1,0],[-3,-2],[-2,-1],[-3,0],[-2,-2],[-1,-2],[-3,-3],[-5,-4],[-3,-4],[-1,-3],[-1,-2],[-2,-4],[-1,-2],[-1,-2],[-2,-3],[-1,-2],[-2,-1],[-5,0],[-2,0],[-4,-4],[-1,-2],[-1,-3],[-3,-1],[-1,0],[-2,-1],[-1,-4],[0,-3],[-1,0],[-3,-2],[-4,-1],[-3,-1],[-2,-4],[-3,-6],[-4,-5],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-3,-2],[0,-1],[0,-4],[0,-3],[0,-8],[-3,0],[0,-1],[-4,0],[-5,-2],[1,2],[1,2],[-2,6],[-3,-4],[-6,-7],[-2,-2],[-1,-1],[-3,-2],[-3,-2],[-1,-2],[-1,-2],[-2,-2],[0,-1],[1,-2],[-1,-3],[-1,-2],[-4,0],[-2,0],[-1,0],[-1,0],[-4,0],[-3,-2],[-1,-2],[-1,-1],[-2,-3],[-1,-2],[0,-3],[1,0],[1,-1],[2,0],[-4,-3],[-1,0],[-1,0],[-2,0],[-5,-2],[-4,-2],[-3,-1],[-1,-1],[0,-2],[-4,-3],[-2,-3],[-4,-4],[-4,-2],[-3,-4],[-3,-3],[-3,-2],[-3,-2],[-1,-4],[-1,-3],[-1,-1],[-1,-2],[0,-1],[-6,-4],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[0,-1],[-2,-2],[-3,-1],[-2,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-3,-1],[-2,-2],[-3,-4],[-1,-4],[-1,-3],[-1,-4],[-2,-5],[-1,0],[-2,-1],[-3,0],[-2,-1],[-3,-2],[-1,-2],[0,-1],[0,-1],[-1,-3],[0,-1],[-5,-1],[-4,-3],[-3,0],[-1,-1],[-2,-3],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[0,-1],[-2,-1],[-2,-1],[-2,-1],[3,-3],[-4,-1],[-5,0],[-1,0],[-6,-2],[-4,-1],[1,-4],[-5,-3],[-1,0],[-5,0],[-1,-2],[-2,-3],[0,-1],[-1,-2],[0,-1],[-4,-3],[-2,-1],[-1,-1],[-5,-3],[-2,-6],[-1,-3],[-1,-1],[-4,-1],[-2,-1],[-1,-1],[-4,-3],[-2,-4],[-5,-2],[-2,-3],[-1,-2],[-3,-3],[-2,-5],[-3,-2],[-3,-3],[-1,-1],[-1,-2],[-5,-1],[-3,-3],[0,-2],[-1,-2],[-1,-4],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-4,-3],[-3,-2],[0,-1],[-4,-1],[-4,-2],[-1,-1],[-3,-2],[-1,-2],[-1,-1],[-5,-3],[-5,0],[-2,0],[-1,0],[-1,-1],[-5,-1],[-1,0],[-2,0],[-2,-1],[-3,-1],[-3,-2],[-4,-2],[-4,-2],[-3,-4],[-1,-1],[-2,-1],[-1,-1],[-2,-3],[-2,-2],[-4,-6],[-2,-4],[-1,-2],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-4,0],[-5,0],[-5,-2],[-1,-3],[0,-1],[-4,0],[-1,0],[-4,-3],[-3,-5],[-2,-1],[-2,-1],[-2,1],[-1,1],[-4,0],[-1,0],[-1,-1],[-6,-2],[-5,-1],[-4,-1],[-1,-2],[-2,-2],[-3,-4],[-1,-3],[-1,-1],[-3,-4],[-1,-1],[-3,-3],[-2,-6],[-1,-5],[-1,-1],[-4,-4],[-2,-3],[-1,-1],[-1,-2],[-2,-2],[-1,-3],[0,-2],[-2,0],[-3,0],[-2,1],[-1,0],[-4,0],[-1,0],[-1,-1],[-1,-1],[-4,-2],[-5,-3],[-2,-3],[0,-1],[-1,0],[-1,-1],[-3,-3],[-3,-5],[-1,0],[-4,-2],[-2,-1],[-1,0],[0,-1],[-3,-3],[-1,0],[-1,-3],[-3,-3],[-3,-5],[-5,-1],[-3,-4],[0,-5],[2,-1],[3,-1],[0,-3],[3,-2],[-1,-5],[-5,-2],[-3,-1],[-3,0],[-3,2],[-2,2],[-1,2],[-2,0],[-4,0],[-4,-2],[-1,-1],[0,-1],[-3,-1],[1,-5],[0,-5],[0,-4],[-1,-5],[-1,-1],[-2,-3],[-1,0],[-3,3],[-4,3],[-1,1],[-7,0],[-3,-3],[0,-1],[-1,-3],[-1,-5],[-4,-3],[-1,-1],[-1,-1],[-2,-1],[-3,-1],[-1,0],[-3,0],[-3,1],[-2,0],[-3,1],[-1,0],[-2,0],[-3,-1],[-3,-3],[-2,-2],[-3,-2],[-1,-2],[-4,-3],[-1,-1],[-2,-2],[-2,-1],[-2,-3],[-5,-4],[-3,-3],[-2,-1],[-4,-4],[-2,-1],[0,-1],[-3,-2],[-3,-3],[-3,-3],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-4,-4],[-4,-3],[-2,-2],[-3,-2],[-1,-2],[-3,-3],[-4,-5],[0,-1],[-1,0],[-1,-2],[-1,-3],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-3,-4],[-3,-1],[-1,-1],[-4,-3],[-6,-5],[-1,-2],[0,-1],[0,-1],[-3,-4],[1,-3],[0,-2],[-2,-1],[-1,-1],[-4,-1],[-2,-1],[-2,-1],[-1,0],[-3,0],[-3,0]],[[7015,7992],[1,-1],[7,0],[1,0],[3,-10],[0,-1],[4,0],[6,7],[1,1],[20,0],[1,0],[1,1],[1,0],[1,3],[1,3],[5,1],[2,1],[3,-9],[2,-1],[4,-3],[1,0],[5,0],[1,1],[2,0],[0,9],[4,0],[1,0],[1,0],[15,-5],[13,-3],[3,-3],[3,-7],[0,-2],[-1,-5],[0,-2],[-1,0],[0,-2],[-12,-12],[-1,-3],[-1,-9],[-2,-5],[2,-2],[3,2],[5,3],[2,0],[8,1],[6,-3],[-1,-12],[0,-2],[0,-5],[-2,-11],[0,-3],[1,-3],[1,-2],[1,-2],[2,-3],[4,-2],[1,-1],[1,-3],[0,-4],[-2,-10],[-1,-5],[-3,-7],[-2,-3],[-4,-4],[-2,-4],[-2,-5],[-1,-2],[1,-1],[1,-1],[1,0],[0,-1],[2,0],[3,0],[5,0],[4,2],[2,0],[0,1],[4,2],[1,1],[1,0],[0,1],[1,0],[1,2],[2,1],[4,2],[2,0],[1,0],[0,-1],[0,-2],[-1,-3],[-2,-6],[0,-2],[0,-2],[1,-2],[1,0],[4,-3],[2,-1],[4,-1],[1,0],[2,0],[5,0],[1,0],[5,1],[3,1],[2,2],[0,1],[1,1],[2,1],[4,2],[3,0],[1,0],[1,-1],[1,-1],[2,-6],[3,-5],[1,-3],[9,-11],[2,0],[10,3],[21,5],[33,1],[17,7],[19,3],[2,0],[1,-1],[5,-5],[3,-3],[-3,-2],[-3,-2],[-7,-6],[-9,-6],[-8,-46],[2,-9],[2,-7],[-2,-8],[-2,-6],[11,-9],[4,2],[29,15],[44,16],[25,9],[21,-2],[9,-1],[7,2],[12,2],[5,-2],[0,-5],[-1,-3],[3,-5],[9,-13],[-1,-2],[1,-1],[-1,0],[0,-1],[1,-1],[1,0],[3,-1],[6,-1],[4,3],[0,-1],[1,1],[2,1],[3,0],[1,1],[10,4],[29,6],[4,3],[4,4],[3,2],[4,5],[1,0],[0,1],[10,6],[8,-4],[13,6],[1,0],[2,1],[2,0],[0,1],[1,0],[0,-1],[2,1],[11,3],[5,-5],[0,-2],[2,0],[2,0],[3,1],[1,1],[1,0],[1,0],[4,3],[1,0],[3,1],[9,0],[5,0],[2,0],[3,0],[1,0],[10,0],[1,1],[2,0],[6,0],[2,1],[1,0],[18,8],[11,0],[22,9],[2,1],[5,5],[4,5],[1,0],[5,6],[2,3],[9,5],[17,6],[5,6],[18,22],[5,5],[4,5],[7,-4],[2,-1],[1,0],[0,1],[1,0],[1,2],[6,3],[1,2],[2,2],[4,4],[8,7],[3,3],[4,4],[4,3],[13,8],[5,4],[6,3],[0,3],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[2,1],[3,1],[11,4],[6,3],[1,0],[2,2],[1,1],[1,1],[1,2],[1,1],[1,1],[3,2],[5,3],[12,4],[5,3],[2,1],[2,1],[2,2],[2,3],[1,1],[1,1],[3,2],[2,1],[2,1],[1,0],[5,-1],[4,0],[3,1],[4,1],[4,2],[1,1],[2,2],[1,0],[0,1],[2,1],[1,1],[1,0],[4,3],[2,1],[3,0],[8,2],[5,1],[3,0],[4,0],[1,0],[1,0],[4,0],[1,-1]],[[952,7942],[0,-12],[0,-24],[0,-25],[0,-18],[0,-4],[0,-3],[0,-12],[0,-13],[0,-20],[0,-3],[0,-16],[0,-36],[0,-23],[0,-26],[0,-23],[1,0],[10,0],[12,0],[0,-1],[0,-2],[0,-20],[0,-1],[0,-13],[0,-28],[0,-4],[0,-2],[0,-3],[0,-1],[0,-2],[0,-22]],[[975,7585],[0,-16],[0,-12],[0,-22],[1,0],[-1,-13],[1,-9],[-1,-2],[0,-25],[0,-6],[1,-19],[0,-7],[0,-17],[0,-3],[0,-8],[0,-14],[0,-12],[0,-13],[15,1],[9,0],[4,0],[6,0],[28,0],[6,0],[16,0],[27,0],[27,-1],[1,0],[28,0],[0,-22],[0,-2],[0,-25],[0,-25],[1,-2],[0,-10],[0,-3],[0,-9],[0,-3],[0,-10],[0,-4],[0,-8],[0,-24],[1,0],[11,-1],[15,0],[24,0],[3,0],[24,0],[4,0],[1,0],[7,0],[8,0],[10,0],[1,0],[1,0],[1,0],[4,0],[16,0],[7,0],[27,0],[13,-1],[15,0],[12,0],[15,0],[24,0],[4,0],[10,0],[9,0],[7,1],[18,0],[7,0],[3,0],[9,0],[1,0],[18,0],[20,0],[8,0],[17,0],[11,0],[27,1],[10,0],[5,0],[1,0],[12,0],[8,0],[2,0],[2,0],[1,0],[24,0],[18,0],[13,0],[3,0],[1,0],[11,0],[15,0],[13,0],[15,1],[13,0],[28,0],[6,0],[3,-1],[3,0],[5,0],[8,0],[1,0],[13,0],[17,0],[0,4],[-1,2],[1,1],[0,14],[0,4],[0,9],[0,11],[0,5],[0,11],[0,13],[0,25],[0,25],[0,3],[0,1],[0,6],[0,3],[0,3],[0,3],[0,6],[1,0],[5,0],[28,0],[20,0],[4,0],[2,0],[8,0],[13,0],[5,0],[2,0],[13,0],[8,0],[3,0],[25,0],[8,0],[9,0],[2,0],[9,0],[0,25],[-1,20],[0,5],[0,24],[0,25],[0,12],[0,13],[0,25]],[[1972,7538],[27,-1],[5,-1],[1,0],[1,0],[3,1],[10,-1],[6,0],[3,0],[5,0],[8,0],[3,0],[1,0],[5,0],[1,0],[2,0],[28,-1],[8,0],[6,0],[7,0],[7,0],[12,0],[15,-1]],[[2136,7534],[0,-7],[0,-5],[0,-1],[0,-3],[1,-9],[0,-5],[0,-3],[0,-16],[0,-49],[1,-2],[0,-22],[0,-25],[0,-6],[0,-23],[1,-45],[0,-12],[0,-12],[0,-13],[0,-3],[0,-3],[0,-8],[0,-16],[0,-4],[0,-2],[0,-4],[1,-11],[0,-3],[0,-6],[0,-1],[0,-4],[0,-1],[0,-6],[0,-4],[0,-4],[0,-6],[0,-12],[0,-5],[1,-7],[0,-22],[0,-3],[0,-20],[0,-1],[0,-3],[0,-25],[3,0],[6,0],[4,0],[6,0],[3,0],[3,0],[7,0],[1,-2],[-1,-3],[0,-7],[0,-7],[0,-11],[0,-14],[0,-5],[0,-10],[0,-5],[0,-2],[0,-4],[0,-4],[0,-9],[0,-9],[0,-4],[0,-2],[0,-25],[0,-3],[0,-21],[0,-6],[0,-6],[0,-13],[0,-24],[0,-31],[0,-19],[0,-3],[0,-8],[0,-5],[0,-11],[0,-9],[-1,-12]],[[2172,6798],[-4,0],[-7,0],[-2,0],[-3,0],[-4,-1],[-4,0],[-2,0],[-8,0],[-3,0],[-4,0],[-6,0],[-5,0],[-2,0],[-3,0],[-1,0],[-8,-1],[-7,0],[-18,0],[-4,0],[-5,0],[-6,0],[-10,0],[-18,0],[-6,0],[-5,0],[-10,0],[-3,0],[-2,0],[-4,0],[-8,0],[-24,0],[-19,0],[-3,0],[-20,0],[-3,0],[-11,0],[-1,0],[-1,0],[-4,0],[-2,0],[-20,0],[-5,0],[-13,0],[-4,0],[-3,-1],[-1,1],[-2,0],[-6,0],[-10,0],[-6,0],[-5,0],[-2,0],[-1,0],[-2,0],[-4,0],[-10,0],[-4,0],[-2,0],[-16,0],[-3,0],[-10,0],[-3,0],[-4,0],[-10,0],[-3,0],[-5,0],[-20,0],[-13,-1],[-12,0],[-23,1],[-6,0],[-8,0],[-6,0],[-17,0],[-4,0],[-21,0],[-8,0],[-1,0],[-14,0],[-4,0],[-3,0],[-1,0],[-3,0],[-4,0],[-3,0],[-7,0],[-6,0],[-1,0],[-7,0],[-3,0],[-3,0],[-6,0],[-5,0],[-4,0],[-13,0],[-13,0],[-2,0],[-6,0]],[[1511,6796],[-8,0],[-2,0],[-18,0],[-18,0],[-11,0],[-2,0],[-6,0],[-2,0],[-8,0],[-8,0],[-3,0],[-17,0],[-2,0],[-5,0],[-11,0],[-17,0],[-3,0],[-10,0],[-5,0],[-9,0],[-10,0],[-2,0],[-16,0],[-1,0],[-11,0],[-1,0],[-6,0],[-2,0],[-2,0],[-4,0],[-7,0],[-9,1],[-12,-1],[-13,0],[-14,0],[-45,0],[-10,0],[-55,0],[-12,0],[-71,0],[-28,0],[-55,-1],[-7,1],[-20,0],[-28,0],[-4,0],[-52,0],[-27,0],[-28,0],[-3,0],[-25,0],[-12,0],[-1,0],[-14,-1],[-20,0],[-9,0],[-26,0],[-2,0],[-26,0],[-26,0],[-1,0],[-28,0],[-28,0],[-27,0],[-2,0],[-2,0],[-20,0],[-3,0],[-18,2]],[[501,6797],[-4,7],[1,5],[1,1],[1,0],[2,-1],[2,-1],[1,0],[2,0],[2,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-2,0],[-3,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[2,0],[3,-2],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-3,-2],[-2,-1],[-2,0],[-1,0],[-3,0],[-2,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,1],[0,4],[0,1],[-3,4],[-6,6],[0,1],[0,2],[1,1],[1,0],[1,0],[2,0],[2,0],[4,1],[1,0],[1,0],[2,2],[7,9],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,2],[0,1],[-1,0],[0,1],[1,2],[2,0],[4,1],[2,1],[2,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,2],[-1,1],[-2,1],[-3,1],[-3,1],[-6,2],[-1,1],[-2,1],[-1,0],[0,1],[1,0],[0,1],[3,1],[4,2],[5,5],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-6,1],[-1,0],[-1,0],[-2,2],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[1,1],[1,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[7,6],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-8,-3],[-2,-1],[-3,-2],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,2],[-1,2],[-1,1],[0,1],[1,1],[1,1],[2,1],[1,0],[7,-3],[1,-1],[2,0],[3,0],[2,1],[1,0],[1,1],[1,1],[0,2],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-3,2],[-1,4],[4,2],[1,2],[1,2],[1,1],[0,1],[0,7],[1,0],[1,2],[2,7],[0,2],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-2,1],[-3,1],[-1,1],[-1,1],[0,1],[1,0],[1,1],[4,-1],[2,0],[1,1],[1,0],[0,1],[0,1],[0,1],[-4,4],[-2,1],[-1,1],[0,1],[0,1],[0,1],[2,3],[0,5],[-2,2],[0,1],[-3,3],[-7,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-2,5],[0,1],[-1,0],[-5,1],[-1,1],[-4,2],[-2,8],[0,1],[1,1],[1,0],[1,0],[2,0],[2,0],[1,1],[0,1],[0,1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-3,2],[-3,4],[-1,1],[0,2],[0,1],[1,0],[2,1],[2,0],[1,1],[1,0],[0,1],[1,1],[0,11],[0,2],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[-1,8],[0,2],[1,1],[2,4],[0,1],[0,2],[0,1],[-1,2],[-1,2],[-3,4],[5,7],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-4,-1],[-1,-1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,10],[-1,6],[-1,2],[0,2],[0,3],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,2],[1,1],[0,1],[2,2],[1,0],[0,1],[0,1],[-1,1],[-2,2],[0,1],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[2,2],[1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,1],[1,2],[1,1],[0,2],[-1,0],[0,1],[-1,0],[-2,0],[-2,0],[-1,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[2,1],[2,0],[3,1],[2,1],[2,2],[2,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[-1,1],[0,2],[0,2],[0,2],[-1,0],[-2,3],[-4,4],[-1,2],[-2,2],[0,1],[-1,2],[0,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,6],[-1,1],[0,2],[-1,2],[-1,0],[-4,2],[-2,1],[-5,2],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,-1],[4,-1],[1,-1],[2,0],[2,0],[1,0],[0,1],[0,1],[-1,1],[-2,1],[-3,1],[-3,1],[-1,1],[-2,2],[0,1],[0,1],[0,2],[0,1],[1,1],[3,5],[0,1],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,3],[-1,1],[-2,1],[-2,5],[-1,0],[-1,1],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-2,7],[-1,2],[-4,3],[-1,0],[-2,0],[-1,0],[0,1],[0,2],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,1],[2,0],[1,1],[0,2],[0,1],[-1,1],[-2,1],[-4,2],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[0,3],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-3,-1],[-2,0],[-1,0],[-1,1],[0,3],[1,2],[-4,5],[-5,1],[0,1],[-3,2],[-1,0],[0,1],[-2,0],[-2,0],[-2,1],[-1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[3,-1],[6,-1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,11],[1,1],[1,0],[3,-1],[1,0],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-2,0],[-1,0],[-4,0],[-3,0],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[2,0],[2,2],[1,1],[2,1],[0,1],[0,1],[0,1],[-5,8],[0,1],[-1,2],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-6,6],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[1,1],[0,2],[0,2],[0,3],[0,2],[0,3],[-1,2],[0,1],[-1,2],[-2,1],[-4,3],[-3,3],[0,1],[1,1],[2,1],[2,2],[0,2],[-3,3],[-4,1],[-6,1],[-6,0],[-1,0],[-5,2],[-2,2],[0,2],[2,2],[2,1],[2,1],[0,3],[-1,1],[-1,1],[-4,3],[-2,2],[-1,1],[-1,1],[1,4],[2,2],[5,2],[1,2],[0,2],[-1,1],[-3,3],[-2,0],[-2,2],[0,4],[1,0],[1,2],[3,1],[2,3],[0,2],[-4,4],[-3,4],[0,3],[1,0],[1,0],[5,-4],[1,0],[3,0],[2,2],[0,4],[-1,4],[-2,2],[-2,2],[-5,1],[-1,1],[0,2],[1,0],[6,4],[0,3],[-4,2],[0,1],[-2,1],[-3,3],[-4,3],[-1,1],[-9,6],[-1,0],[0,4],[-1,5],[1,0],[2,0],[-1,6],[-3,2],[-6,0],[-6,2],[-4,2],[-4,5],[-2,3],[0,2],[0,2],[1,2],[2,3],[0,2],[1,6],[-2,3],[-1,1],[-1,1],[-4,2],[-2,1],[-1,2],[-1,1],[0,2],[1,2],[3,3],[2,3],[0,2],[-3,4],[0,3],[1,3],[2,3],[4,13],[1,4],[0,4],[-1,2],[-2,1],[-7,4],[-4,3],[-1,3],[0,2],[-2,12],[-1,2],[0,3],[5,5],[0,3],[-2,1],[-3,0],[-3,1],[-3,3],[-1,2],[0,3],[1,4],[3,5],[1,2],[0,5],[-2,6],[0,6],[0,10],[-1,2],[-1,3],[-2,6],[-1,3],[-3,3],[-6,3],[-3,2],[-5,4],[-2,3],[-4,6],[-5,6],[-2,4],[0,1],[0,1],[-1,1],[-6,0],[-1,1],[-2,1],[0,2],[5,6],[2,5],[0,3],[0,4],[0,3],[-1,3],[-3,3],[-2,0],[-2,1],[-4,1],[-1,1],[0,1],[1,1],[1,1],[2,1],[2,0],[2,0],[1,1],[1,2],[0,1],[-1,1],[-1,2],[-5,2],[-2,1],[0,2],[0,5],[-1,2],[-2,1],[-1,1],[-4,0],[-2,-1],[-1,0],[-4,0],[-2,1],[-2,1],[0,1],[0,3],[2,3],[2,3],[0,4],[-1,4],[-5,7],[-3,7],[-2,5],[0,8],[-1,1],[-4,4],[-1,2],[1,0],[2,0],[5,-2],[3,0],[1,0],[2,2],[1,1],[-1,3],[-1,1],[-4,2],[-12,3],[-3,0],[-2,-1],[-2,-2],[-2,-1],[-3,0],[-2,2],[0,2],[0,2],[2,2],[5,8],[2,2],[3,1],[5,2],[9,4],[3,2],[4,3],[0,2],[0,3],[-3,2],[-4,0],[-3,0],[-5,-3],[-2,-1],[-3,-1],[-4,0],[-1,0],[-2,1],[-2,3],[-4,13],[-1,2],[0,2],[2,3]],[[2135,7682],[1,-8],[0,-17],[0,-4],[0,-6],[0,-3],[0,-13],[0,-17],[0,-5],[0,-50],[0,-11],[0,-11],[0,-3]],[[1972,7538],[0,8],[0,8],[0,2],[0,1],[0,1],[0,3],[0,13],[0,12],[-6,0],[-7,0],[-10,0],[-5,0],[-14,0],[-10,0],[-5,0],[-7,0],[-20,0],[-14,0],[-14,0],[-24,0],[-4,0],[-20,0],[-6,0],[-9,0],[-19,0],[-20,1],[-8,0],[-26,-1],[-1,0],[-28,0],[-24,0],[-18,0],[-13,0],[-5,0],[-23,0],[-14,-1],[-1,0],[-2,0],[-11,0],[-7,0],[-3,0],[-3,0],[-4,0],[-11,0],[-3,0],[-25,0],[-25,0],[-3,0],[-17,0],[-4,0],[-5,0],[-14,0],[-12,-1],[-12,0],[-4,0],[-22,0],[-3,0],[-6,0],[-19,0],[-20,0],[-3,0],[-10,0],[-2,0],[-13,0],[-14,0],[-9,-1],[-2,0],[-10,0],[-2,0],[-16,0],[-6,0],[-2,0],[-19,0],[-4,0],[-16,0],[-8,1],[-15,0],[-13,0],[-28,0],[-22,0],[-4,1],[-2,0],[-28,-1],[-2,0],[-12,0],[-3,0],[-2,0],[-4,0],[-4,0],[-28,0],[-16,0],[-4,0],[-5,0],[-2,0],[-15,0],[-1,0],[-6,1],[-2,0],[-18,0],[-5,0],[-2,0],[-8,0]],[[2651,6649],[-1,-25],[0,-22],[0,-3],[0,-14],[1,-4],[0,-9],[0,-10],[0,-21],[0,-3],[0,-2],[0,-4],[0,-3],[0,-4],[0,-23],[0,-2],[4,0],[3,0],[10,0],[0,-26],[0,-8],[0,-3],[0,-1],[0,-7],[0,-8],[0,-2],[0,-4],[0,-2],[0,-8],[0,-6],[0,-1],[0,-3],[0,-2],[0,-18],[0,-29],[1,-16],[0,-1],[0,-22],[0,-2],[-1,-50],[1,-6],[0,-8],[0,-5],[0,-5],[0,-15],[0,-3],[0,-4],[0,-7],[0,-21]],[[2669,6207],[-28,0],[-33,-1],[-3,0],[-2,0],[-3,0],[-7,0],[-1,0],[-6,0],[-2,0],[-4,0],[-3,0],[-13,0],[-5,0],[-28,0],[-10,0],[-5,0],[-2,0],[-1,0],[-9,-1],[-14,0],[-6,0],[-8,0],[-16,0],[-5,0],[-5,0],[-4,0],[-2,0],[-2,0],[-21,0],[-3,0],[-15,0],[-4,0],[-3,0],[-9,0],[-16,-1],[-4,0],[-18,1],[-9,0],[-4,0],[-2,0],[-16,0],[-6,0],[-11,0],[-3,0],[-4,0],[-7,1],[-4,0],[-18,-1],[-2,0],[-21,0],[-3,0],[-11,0],[-6,0],[-8,0],[-6,0],[-5,0],[-1,0],[-3,0],[-3,0],[-4,0],[-11,0],[-5,0]],[[2176,6205],[0,19],[0,26],[0,4],[0,31],[0,4],[0,8],[0,2],[0,4],[0,5],[0,8],[-1,5],[0,7],[0,4],[1,9],[0,12],[0,7],[0,12],[0,13],[0,2],[0,33],[0,32],[0,17],[0,3],[0,24],[0,2],[0,2],[0,2],[0,4],[0,19],[0,2],[0,10],[0,11],[0,2],[0,4],[0,6],[0,3],[1,6],[0,16],[0,11],[0,4],[0,3],[0,30],[-1,1],[0,5],[0,3],[0,1],[0,3],[0,7],[0,6],[0,24],[0,65],[0,15],[0,6],[0,1],[0,1],[0,11],[0,16],[-4,0]],[[5394,5992],[-22,0],[-6,0],[-2,0],[-6,0],[-1,0],[-6,0],[-5,0],[-7,1],[-7,-1],[-9,0],[-11,0],[-8,0],[-61,-1],[-8,0],[-8,0],[-3,-1],[-1,0],[-3,0],[-1,0],[-26,1],[-24,1],[-15,0],[-4,0],[-4,0],[-3,0],[-3,0],[-11,1],[-16,0],[-1,0],[-4,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-3,1],[-3,0],[-1,0],[-3,0],[-1,0],[-3,0],[-12,1],[-4,0],[-1,0],[-1,0],[-6,1],[-3,0],[-4,0],[-50,-1],[-21,1],[-6,0],[-3,0],[-52,-1],[-28,1],[-43,1],[-4,0],[-25,0],[-75,1],[-17,-1],[-5,1],[-5,0],[-5,0],[-4,0],[-6,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-15,0],[-16,0],[-36,-1],[-3,0],[-17,0],[-12,0],[-14,1],[-14,0],[-10,0],[-8,0],[-1,0],[-19,1],[-27,0],[-1,0],[-30,0],[-2,0]],[[4466,5999],[0,17],[0,16],[1,18],[0,6],[0,13],[0,7],[0,4],[0,7],[1,32],[-1,15],[0,6],[0,2],[0,10],[0,8],[0,3],[0,37],[0,1],[0,7],[0,11],[0,13],[1,20],[0,6],[0,5],[0,11],[0,4],[0,7],[0,9],[0,5],[0,2],[0,4],[-1,1],[0,1],[0,2],[-2,0],[-2,-1],[0,-3],[1,-2],[-8,0],[1,3],[0,1],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[-2,1],[-2,0],[-3,1],[-2,1],[-1,0],[-2,0],[-2,1],[-2,3],[-1,0],[0,1],[-1,0],[0,3],[1,2],[-4,5],[-1,1],[1,1],[0,1],[1,3],[0,2],[-1,2],[-1,2],[-4,-1],[-2,0],[-2,0],[-2,4],[1,2],[3,0],[0,2],[-1,2],[-3,1],[-2,5],[1,1],[2,-2],[2,-1],[2,1],[3,2],[1,2],[0,2],[-1,3],[-1,3],[0,1],[0,1],[1,1],[0,1],[1,2],[1,1],[2,2],[3,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[1,0],[4,-2],[1,-1],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[3,0],[1,0],[1,2],[-1,7],[0,1],[-2,6],[3,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,1],[-1,0],[-2,2],[-2,2],[0,1],[1,3],[4,2],[5,1],[1,1],[0,2],[-2,3],[0,1],[-6,12],[-6,3],[-1,0],[-1,0],[-1,2],[1,1],[1,0],[0,1],[2,2],[0,1],[-1,1],[-1,2],[1,3],[1,1],[0,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,-1],[0,-1],[6,0],[2,11],[-2,1],[-2,0],[-2,-1],[-2,0],[-2,2],[-2,4],[-2,0],[-1,-1],[-2,-1],[-6,2],[-1,0],[-3,0],[-2,-2],[-2,-1],[-2,0],[-1,2],[-2,0],[-2,-1],[-1,-1],[-2,-2],[-1,-2],[-2,0],[0,3],[0,2],[-2,1],[-4,1],[-3,-1],[-1,-1],[1,-2],[2,-2],[3,-2],[2,-1],[0,-2],[1,-3],[-1,-2],[-2,0],[-4,7],[-5,1],[0,-1],[-1,-1],[-2,-3],[0,-1],[-2,0],[-1,0],[-1,2],[-1,2],[0,1],[-2,2],[-2,2],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[0,1],[0,3],[-1,0],[-3,1],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-2,1],[-2,0],[1,2],[0,1],[0,1],[-1,2],[-2,0],[-2,-1],[-2,1],[0,3],[2,2],[1,3],[1,2],[-2,1],[-2,0],[-2,-1],[0,-3],[-2,-1],[-4,0],[-2,1],[0,2],[1,2],[2,2],[-1,2],[-1,0],[-3,0],[-2,0],[-1,3],[-1,2],[-2,0],[2,-2],[0,-2],[-2,0],[-3,1],[-1,1],[-4,0],[0,-2],[1,-2],[3,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-2],[-1,0],[-2,2],[-1,0],[-3,0],[-3,1],[-1,0],[-4,0],[-2,0],[-1,0],[-3,1],[-2,0],[-1,0],[-3,0],[-1,1],[0,1],[1,1],[1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,2],[1,2],[-1,1],[-2,2],[0,2],[-2,0],[-1,0],[-1,-2],[0,-4],[0,-3],[0,-2],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[-1,-2],[-3,-11],[0,-1],[-1,-1],[-2,0],[-2,-2],[-3,-2],[-1,-1],[-5,-4],[-1,1],[-1,0],[0,1],[-2,0],[-3,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[-1,0],[-2,2],[-7,5],[0,1],[-4,5],[1,1],[-1,1],[-1,1],[-1,0],[-4,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[-1,3],[0,2],[-5,5],[-8,0],[-1,-2],[-3,3],[-3,3],[-1,0],[0,2],[1,0],[1,1],[-1,1],[-3,1],[-1,0],[-1,0],[-1,2],[1,2],[-5,2],[-1,2],[1,2],[-1,0],[-6,0],[-1,0],[-1,1],[0,2],[1,1],[0,1],[0,1],[-1,2],[-1,2],[-1,0],[-1,2],[0,1],[-2,2],[-1,1],[-2,-1],[-1,1],[0,1],[-2,1],[-5,-1],[-1,0],[-1,-1],[-1,-1],[-1,2],[-3,2],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-3,2],[-1,1],[-2,1],[-2,1],[-1,0],[-2,2],[-1,0],[-2,2],[0,2],[-2,1],[-1,0],[0,-2],[-1,-2],[-2,0],[-4,1],[-3,0],[-1,1],[-2,1],[0,1],[-1,1],[-2,1],[-1,0],[-4,1],[-2,1],[-3,0],[-1,1],[1,2],[1,2],[1,2],[0,2],[-1,1],[-5,1],[-3,1],[0,1],[-1,0],[-3,1],[-1,1],[0,3],[1,2],[-1,2],[-2,0],[-2,1],[-1,1],[1,2],[1,2],[0,2],[0,1],[-1,1],[-1,2],[-3,2],[-1,2],[0,2],[0,2],[0,3],[0,1],[1,2],[3,6],[0,1],[0,1],[1,2],[-1,0],[-1,1],[0,1],[-1,5],[0,4],[-1,2],[0,3],[0,3],[0,3],[-1,3],[1,2],[1,1],[1,1],[2,0],[2,0],[2,1],[2,2],[4,2],[2,1],[2,3],[0,2],[-1,2],[0,1],[-1,1],[-2,1],[-2,1],[-3,2],[-2,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[0,1],[0,2],[-1,2],[-2,2],[-2,2],[-1,1],[-1,2],[-1,1],[-1,2],[-2,2],[-1,1],[-13,14],[-16,39],[-8,13],[-19,16],[-12,2],[-6,1],[-12,1],[-9,-4],[-18,-7],[-9,-3],[-23,-10],[-12,-5],[-16,-6],[-83,-34],[-7,-2],[-9,-4],[-13,-5],[-10,-4],[-11,-5],[-12,-5],[-11,-5],[-8,-5],[-4,-2],[-2,-1],[-4,-2],[-3,-1],[-1,0],[-5,0],[-3,1],[-6,2],[-2,1],[-2,1],[-8,4],[-4,3],[-9,3],[-6,0],[-6,1],[-1,0],[-4,0],[0,1],[-3,1],[-2,1],[-3,0],[0,1],[-3,3],[-1,2],[0,1],[-2,2],[-2,-1],[-1,0],[-2,1],[-1,-1],[-1,-1],[-1,-1],[0,-3],[-1,-2],[-10,0],[-2,0],[-2,1],[0,2],[0,3],[-1,1],[-2,1],[-1,2],[-2,1],[-2,0],[-2,0],[-3,0],[-2,0],[-2,1],[-1,1],[0,1],[1,2],[2,1],[2,0],[2,0],[1,1],[0,1],[0,1],[-1,0],[-2,2],[0,2],[-2,1],[0,1],[-1,1],[-1,1],[-3,2],[-1,0],[0,1],[-1,0],[-2,0],[-1,-1],[-1,-1]],[[2176,6205],[-4,0],[-17,0],[-1,0],[-7,0],[-19,0],[-3,0],[-2,0],[-1,0],[-26,0],[-2,0],[-6,0],[-1,0],[-6,0],[-5,0],[-3,0],[-2,0],[-4,-1],[-3,0],[-2,0],[-2,0],[-16,1],[-32,-1],[-6,0],[-7,0],[-52,-1],[-3,0],[-24,0],[-4,0],[-6,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-3,0],[-14,0],[-2,0],[-6,0],[-3,0],[-2,0],[-1,0],[-10,0],[-14,0],[-6,-1],[-14,1],[-20,0],[-28,0],[-5,0],[-4,0],[-14,0],[-7,1],[-17,0],[-13,0],[-2,0],[-4,0],[-9,1],[-8,0],[-7,0],[-8,0],[-7,0],[-5,0],[-3,0],[-18,0],[-2,0],[-2,0],[-16,0],[-14,0],[-4,0],[-1,0],[-6,0],[-17,0],[-49,0],[-14,0]],[[1511,6205],[0,8],[0,18],[0,4],[0,14],[0,5],[0,23],[0,2],[0,14],[0,11],[0,8],[0,2],[0,14],[0,25],[0,11],[1,8],[0,6],[0,20],[0,1],[0,16],[0,6],[0,8],[0,1],[0,6],[0,15],[0,25],[0,12],[0,8],[0,4],[0,4],[0,14],[0,7],[0,5],[0,7],[0,12],[-1,26],[0,10],[0,14],[0,15],[0,10],[0,5],[0,19],[0,6],[0,6],[0,7],[0,4],[0,2],[0,16],[0,9],[0,8],[0,4],[0,5],[0,4],[0,3],[0,6],[0,2],[0,6],[0,7],[0,1],[0,5],[0,2],[0,2],[0,6],[0,5],[0,8],[0,16],[0,3],[0,5]],[[1511,6205],[-9,0],[-8,0],[-8,0],[-2,0],[-4,0],[-24,0],[-8,0],[-12,0],[-7,0],[-28,0],[-8,0],[-6,0],[-13,-1],[-16,0],[-3,0],[-8,0]],[[1347,6204],[-13,0],[-10,0],[-5,0],[-7,0],[-5,0],[-3,0],[-2,0],[-10,0],[-6,0],[-11,0],[-11,1],[-1,0],[-7,0],[-20,0],[-11,0],[-16,0],[-27,0],[-19,0],[-36,0],[-8,0],[-5,0],[-14,0],[-12,0],[-2,0],[-2,-1],[-12,0],[-37,0],[-9,0],[-5,0],[-13,1],[-28,0],[-14,0],[-14,0],[-9,0],[-19,0],[-27,0],[-15,0],[-12,0],[-26,0],[-28,0],[-13,0],[-12,0],[-2,0],[-28,0],[-27,0],[-9,0],[-17,0],[-27,0],[-19,0],[-3,0],[-6,0],[-7,-1],[-16,0],[-4,0],[-19,0],[-2,0],[-7,0],[-10,0],[-2,0],[-15,0],[-3,0],[-4,0],[-20,-1],[-3,0],[-3,0],[-3,0],[-5,0],[-16,1]],[[514,6204],[-1,2],[1,1],[9,5],[1,-1],[2,0],[4,-1],[3,0],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-6,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[6,0],[2,0],[1,1],[2,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,2],[1,1],[0,1],[1,2],[1,2],[1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-2,-1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[4,0],[2,0],[2,0],[0,1],[1,0],[1,1],[0,1],[-1,1],[-3,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,-1],[1,0],[1,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-3,-2],[-3,-1],[-2,-1],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[3,1],[1,0],[3,0],[2,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[-2,1],[-1,0],[-4,2],[-1,1],[-3,2],[-1,0],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,1],[0,2],[1,1],[6,6],[3,4],[4,5],[1,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[1,0],[1,-1],[1,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-6,3],[-1,1],[1,1],[1,1],[3,0],[2,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-2,2],[-3,2],[-2,2],[-1,1],[0,1],[0,1],[1,1],[2,1],[2,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,1],[0,2],[0,1],[1,1],[1,1],[1,1],[2,1],[2,1],[4,1],[3,1],[2,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,1],[0,2],[1,1],[0,1],[2,2],[1,1],[1,0],[2,1],[2,-1],[1,0],[1,-1],[2,-4],[1,-1],[2,1],[1,0],[0,1],[1,1],[0,2],[-1,2],[-1,1],[-2,3],[-6,8],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,2],[1,1],[0,1],[2,1],[2,2],[2,1],[3,0],[2,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[-6,8],[0,1],[-2,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[2,2],[1,0],[1,1],[2,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[4,0],[3,-2],[2,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-5,-1],[-1,-1],[-6,-3],[-1,2],[0,1],[0,2],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[3,-1],[1,0],[2,0],[2,0],[0,1],[1,1],[1,0],[0,2],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,1],[6,2],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[-4,18],[0,1],[0,4],[1,2],[1,1],[15,18],[0,1],[0,2],[-6,7],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[3,4],[-1,1],[0,1],[-2,0],[-1,1],[-2,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,2],[2,0],[1,0],[6,1],[2,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-2,3],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[3,0],[2,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,0],[-1,1],[0,1],[-1,2],[1,1],[0,1],[1,1],[1,1],[1,0],[2,1],[2,0],[3,-1],[3,1],[1,1],[1,1],[1,0],[2,5],[1,3],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-3,-1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[0,2],[0,1],[-1,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[2,3],[2,4],[2,4],[4,0],[4,-1],[-2,3],[-8,0],[-5,0],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[1,1],[0,1],[2,1],[2,2],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-3,0],[-2,-1],[-2,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[4,1],[1,0],[3,-1],[1,0],[1,-1],[2,0],[3,-1],[1,0],[2,0],[6,4],[0,1],[1,1],[1,1],[-1,1],[-1,1],[-1,0],[0,1],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-6,4],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[5,-1],[2,0],[2,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-2,2],[-2,0],[-1,1],[-1,1],[-1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,-1],[2,-2],[1,0],[1,-1],[2,0],[2,1],[1,0],[0,1],[1,1],[0,1],[1,10],[0,1],[-1,1],[0,1],[-2,3],[0,1],[-1,1],[-1,0],[-2,-1],[0,-1],[-1,0],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[2,1],[4,0],[1,1],[2,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-6,6],[-1,0],[-5,1],[-2,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[2,0],[2,0],[2,1],[2,1],[3,3],[1,1],[0,1],[-1,1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-3,-2],[-6,-1],[-1,0],[-2,1],[-1,1],[0,1],[-1,0],[-3,4],[-1,2],[0,1],[0,1],[1,2],[1,1],[-1,0],[-6,2],[0,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[11,4],[7,3],[2,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[3,1],[2,2],[4,3],[1,0],[1,0],[2,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-5,1],[-1,1],[-1,0],[-2,2],[-1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[3,0],[2,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-3,4],[0,1],[-2,4],[0,1],[1,9],[0,1],[1,0],[3,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-4,-1],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,1],[4,1],[1,1],[0,1],[1,0],[0,2],[-1,1],[-1,1],[-2,1],[-1,2],[-1,0],[0,1],[-2,3],[0,1],[-1,3],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[3,0],[1,0],[2,2],[2,2],[1,0],[1,2],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-3,0],[-1,-1],[-2,-1],[-1,-1],[-2,-3],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[7,8],[1,0],[1,0],[1,0],[3,-1],[2,-1],[2,1],[1,0],[1,1],[1,0],[1,2],[0,2],[0,1],[-1,1],[-2,0],[-5,2],[-6,2],[-2,0],[0,1],[0,2],[0,1],[1,1],[0,-1],[1,0],[1,0],[1,0],[2,0],[4,2],[9,7],[1,1],[0,1],[-2,2]],[[4466,5999],[0,-9],[0,-5],[1,-37],[0,-13],[0,-6],[0,-5],[0,-9],[0,-9],[0,-3],[-1,-15],[0,-4],[0,-5],[0,-3],[0,-6],[0,-4],[0,-3],[0,-17],[0,-7],[0,-5],[1,-8],[0,-17],[0,-11],[-1,-22],[0,-16],[0,-4],[0,-8],[0,-2],[0,-3],[0,-8],[0,-7],[0,-8],[0,-9],[0,-7],[0,-8],[0,-2],[0,-2],[0,-6],[0,-10],[-1,-38],[0,-15],[0,-1],[0,-9]],[[4465,5613],[-8,0],[-9,0],[-2,0],[-18,0],[-9,0],[-15,0],[-9,0],[-6,0],[-52,0],[-3,1],[-12,0],[-20,0],[-26,0],[-8,0],[-14,0],[-1,0],[-8,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-17,0],[-4,0],[-1,0],[-8,0],[-1,0],[-3,0],[-22,0],[-11,0],[-5,0],[-1,0],[-6,0],[-4,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-36,0],[-2,0],[-10,0],[-3,0],[-8,0],[-16,0],[-27,1],[-15,0],[-3,0],[-2,0],[-32,2],[-3,0],[-4,0],[-53,0],[-4,0],[-5,0],[-45,1],[-1,-1],[-2,0],[-7,0],[-35,1],[-1,0],[-2,0],[-5,0],[-8,-1],[-3,0],[-1,0],[-6,0],[-4,1],[-1,0],[-16,0],[-2,0],[-21,0],[-14,0],[0,-9],[-1,-5],[0,-2],[0,-3],[0,-10],[0,-2],[0,-3],[0,-3],[0,-12],[-1,-11],[0,-6],[0,-8],[0,-16],[0,-4],[0,-6],[0,-6],[0,-2],[0,-11],[-1,-5],[0,-2],[0,-3],[-1,-10],[0,-7],[0,-2],[0,-8],[0,-2],[-1,-38],[0,-2],[0,-18],[0,-6],[0,-11],[1,-3],[0,-4],[0,-6],[0,-2],[0,-3],[0,-4],[0,-4],[0,-2],[0,-2],[0,-8],[0,-5],[0,-7],[0,-7],[0,-6],[19,0],[0,-11],[0,-3],[-1,-10],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[1,-4],[0,-4],[0,-2],[0,-2],[0,-7],[0,-2],[0,-5],[0,-2],[0,-9],[0,-6],[0,-2],[0,-2],[0,-9],[1,-6],[0,-3],[0,-3],[0,-2],[0,-6],[0,-4],[0,-3],[0,-2],[0,-2],[0,-1],[0,-5],[0,-3],[0,-3],[0,-2],[0,-4],[0,-3],[0,-5],[0,-3],[0,-6],[0,-6],[0,-10],[0,-4],[0,-3],[0,-12],[0,-1],[0,-2],[0,-1],[0,-4],[0,-5],[0,-15],[1,-3],[-1,-2],[0,-3],[0,-2],[1,-10],[0,-20],[0,-10],[1,-23],[0,-3],[1,-32],[0,-2],[0,-3],[0,-12],[0,-5],[0,-9],[0,-11],[0,-5],[0,-2],[0,-2],[0,-3],[0,-1],[0,-3],[-1,-5],[0,-30],[0,-2],[0,-8],[0,-1],[0,-2],[0,-10],[0,-8],[0,-4],[0,-3],[1,-4],[0,-10],[0,-1],[0,-5],[0,-2],[0,-9],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-9],[0,-10],[0,-9],[0,-12],[0,-24],[0,-2],[0,-4],[0,-8],[0,-2],[-1,-2],[-1,-5],[-1,-3],[-1,-2],[-1,-2],[0,-2],[-3,-2],[-2,2],[-1,2],[-1,3],[-1,2],[-3,-1],[-1,-1],[-1,-2],[-1,-3],[0,-2],[1,-3]],[[3736,4720],[-2,-1],[-4,0],[-3,1],[-2,1],[0,4],[1,3],[2,1],[2,2],[2,2],[1,3],[-1,2],[-1,3],[-1,2],[-1,1],[-2,2],[-1,1],[-3,4],[-3,2],[-3,2],[-3,2],[-3,1],[-2,1],[-2,-1],[-3,-1],[-3,-2],[-3,-2],[-1,0],[-2,2],[-1,2],[-1,3],[-1,3],[-3,2],[-1,3],[-2,4],[-2,2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-2,-3],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,1],[0,2],[1,3],[1,1],[2,1],[0,1],[1,1],[0,3],[-3,3],[-2,0],[-1,0],[-1,0],[-4,0],[-2,2],[-2,2],[-1,0],[-1,2],[0,2],[1,2],[-1,2],[-1,1],[0,1],[-1,1],[-3,1],[-4,1],[-1,1],[-2,2],[-1,0],[-2,1],[-1,0],[-1,0],[-3,1],[-1,1],[-1,1],[-3,0],[-1,1],[-3,0],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-3,-1],[-1,0],[-2,-1],[-2,-2],[-2,0],[-4,1],[-2,1],[-3,0],[-3,0],[-2,-1],[-2,0],[-1,-1],[-2,-2],[-1,-2],[-2,0],[-2,1],[-1,2],[-1,2],[-2,1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[-3,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,2],[-2,0],[-1,0],[-1,-2],[0,-4],[-1,-2],[-2,-2],[-1,-1],[-3,-1],[-3,-1],[-1,0],[-3,1],[-3,1],[-3,0],[-2,0],[0,-1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[-2,-3],[-1,-1],[-3,-1],[-1,0],[-1,0],[-3,1],[-3,-1],[-9,-4],[-6,-3],[-1,-1],[-1,0],[-2,-1],[-8,1],[-5,2],[-3,3],[-1,0],[-3,2],[-1,0],[-1,0],[-2,0],[-1,-1],[-3,0],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-1,0],[0,1],[-2,1],[-3,1],[-3,1],[-1,0],[-2,1],[-6,3],[-12,11],[-5,4],[-8,3],[-3,1],[-1,0],[-3,-1],[-1,0],[-4,1],[-1,3],[-2,1],[0,1],[-1,0],[-2,0],[-2,-1],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[-1,0],[-2,0],[0,1],[-1,1],[-1,3],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,1],[0,1],[0,1],[-2,3],[-4,5],[-6,7],[-1,2],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[-3,1],[-3,-1],[-1,0],[-2,1],[-2,2],[-6,6],[-3,3]],[[3334,4841],[-3,2],[-3,3],[-2,1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[-1,5],[0,4],[-1,0],[-1,3],[0,1],[-2,1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-4],[-1,0],[0,-4],[-1,-3],[-1,-2],[-1,0],[-2,-1],[-3,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,1],[-2,0],[-5,-2],[-7,-1],[-1,1],[-1,0],[-4,0],[-1,0],[-1,1],[-5,1],[-2,1],[-4,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,1],[-1,0],[-1,1],[-1,3],[-2,2],[-1,0],[-1,3],[-1,3],[-4,6],[-1,3],[0,5],[0,3]],[[3233,4875],[0,2],[0,5],[1,4],[0,2],[1,2],[0,2],[1,1],[2,2],[-2,2],[-1,1],[-1,1],[-2,2],[-1,0],[-2,0],[-2,-2],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-3,1],[0,3],[0,2],[0,1],[0,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,3],[0,2],[0,1],[-1,2],[0,1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-1,1],[0,1],[0,3],[0,1],[1,2],[-1,1],[0,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[1,2],[1,1],[2,1],[0,3],[-1,2],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,0],[-2,0],[0,-2],[0,-3],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-3,2],[-2,2],[0,12],[-1,6],[0,1],[0,2],[0,2],[1,7],[0,2],[-1,4],[0,1],[1,1],[0,16],[0,12],[0,7],[0,2],[0,4],[0,6],[0,9],[0,10],[0,3],[0,10],[0,2],[0,7],[0,2],[0,3],[0,4],[0,12],[0,8],[0,24],[0,4],[0,2],[0,12],[0,5],[0,8],[0,4],[-1,4],[0,25],[0,6],[0,3],[0,2],[0,6],[0,7],[0,2],[0,8],[0,25],[0,4],[0,20],[0,3],[0,8],[-1,15],[0,3],[0,21],[0,15],[0,9],[-7,0],[0,17],[0,8],[0,11],[0,13],[0,21],[0,4],[0,1],[0,5],[0,12],[0,6],[-1,6],[0,26],[0,18],[0,25],[0,13],[0,2],[0,2],[0,6],[0,1],[0,1],[0,2],[0,4],[0,5],[0,9],[0,3],[0,9],[0,16],[0,3],[0,1],[0,5],[0,5],[0,11],[0,1],[0,5],[0,3],[0,16]],[[3162,5615],[14,0],[5,0],[8,0],[11,0],[9,0],[7,0],[25,0],[3,0],[1,0],[5,0],[4,-1],[8,0],[6,0],[3,0],[6,0],[2,0],[19,0],[5,0],[8,0],[2,0],[11,0],[1,0],[0,12],[1,12],[0,6],[0,7],[0,1],[0,37],[0,2],[0,11],[0,5],[0,5],[0,23],[0,2],[0,25],[0,7],[0,4],[1,13],[0,14],[0,11],[0,24],[0,6],[0,11],[0,6],[0,13],[0,37],[-6,0],[0,7],[-1,33],[0,9],[0,9],[0,7],[0,1],[0,7],[0,4],[0,5],[0,13],[0,3],[0,2],[0,5],[0,10],[0,1],[0,4],[0,3],[0,22],[0,3],[1,42],[0,29],[0,2],[-1,31],[0,13],[0,3],[0,3],[0,6],[0,1],[0,5],[0,2],[0,7],[0,2],[0,12],[0,14],[0,8],[0,10],[1,30],[0,3],[0,15],[0,2],[0,5],[0,7],[0,21],[0,3],[0,18],[0,12],[0,6],[0,6],[0,11],[0,1],[0,13],[0,10],[-1,2],[0,12],[0,6],[0,12],[1,6],[0,3],[0,12],[0,11],[0,8],[0,13],[0,2],[-4,0],[-6,0],[0,5],[0,20],[0,5],[0,2],[0,5],[0,3],[0,5],[0,5],[0,24],[0,15],[0,4],[0,5],[0,2],[0,2],[0,1],[0,2],[1,3],[0,2],[0,10],[0,17],[0,4],[0,7]],[[3162,5615],[-17,0],[-11,0],[-18,0],[-9,0],[-17,0],[-9,0],[-10,0],[-8,0],[-5,1],[-11,1],[-3,-1],[-4,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-3,0],[-7,0],[-1,0],[-1,0],[-5,0],[-2,0],[-10,0],[-7,0],[-1,0],[-19,0],[-16,0],[-2,0],[-9,0],[-44,1],[-11,0],[-5,0],[-15,0],[-6,0],[-3,0],[-2,0],[-4,0],[-9,0],[-4,0],[-2,0],[-3,0],[-27,0],[-6,0],[-4,0],[-1,0],[-2,0],[-7,0],[-17,0],[-17,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-21,0],[-5,0],[-4,0],[-6,0],[-11,-1],[-8,0],[-5,0],[-6,0],[-8,0]],[[2677,5616],[0,5],[0,4],[0,4],[0,3],[0,2],[0,5],[0,14],[0,6],[0,3],[0,3],[1,25],[0,5],[0,6],[-1,14],[0,2],[0,7],[1,11],[0,3],[0,18],[0,1],[0,6],[0,25],[0,9],[0,15],[0,10],[0,7],[0,2],[0,6],[0,6],[0,5],[0,5],[0,9],[0,25],[0,24],[-10,0],[0,5],[0,4],[0,7],[1,3],[0,6],[0,12],[-1,9],[0,15],[0,2],[0,4],[0,7],[1,10],[0,1],[-1,13],[0,8],[0,13],[0,4],[-1,9],[0,4],[0,3],[0,3],[0,2],[0,2],[0,10],[0,20],[0,9],[1,5],[-1,7],[1,12],[0,5],[0,8],[0,9],[0,2],[0,16],[0,2],[1,7],[0,12],[0,1],[0,5],[0,10],[0,10]],[[2677,5616],[0,-7],[0,-5],[0,-13],[0,-12],[0,-10],[0,-4],[-1,-7],[0,-16],[0,-13],[0,-3],[0,-3],[0,-6],[0,-8],[0,-16],[0,-25]],[[2676,5468],[-8,0],[-2,0],[-17,0],[-2,-1],[-12,1],[-4,0],[-3,-1],[-1,0],[-5,0],[-12,0],[-4,0],[-12,0],[-17,-1],[-10,-1],[-3,1],[-10,0],[-13,0],[-17,0],[-8,0],[-1,0],[-3,0],[-3,0],[-4,0],[-6,0],[-2,0],[-3,0],[-5,0],[-5,0],[-4,0],[-4,0],[-3,0],[-3,0],[-4,0],[-4,0],[-2,0],[-5,0],[-3,0],[-4,0],[-5,0],[-7,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,0],[-4,0],[-4,0],[-1,-1],[-3,0],[-4,1],[-1,0],[-11,-1],[-2,0],[-1,0],[-4,0],[-3,0],[-6,0],[-3,0],[-6,0],[-5,0],[-5,0],[-6,0],[-6,0],[-4,0],[-4,0],[-3,0],[-2,0],[-3,1],[-4,0],[-2,0],[-4,1],[-5,0],[-7,0],[-10,0],[-2,0],[-4,0],[-11,0],[-14,1],[-13,-1],[-2,0],[-12,0],[-6,0],[-8,0],[-18,-1],[-3,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-6,0],[-8,0],[-43,-1],[-4,0],[-12,0],[-3,0],[-4,1],[-2,-1],[-3,0],[-2,0],[-11,0],[-7,0],[-5,0],[-6,0],[-3,0],[-3,0],[-4,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-1,0],[-3,0],[-16,0],[-1,0],[-5,0],[-1,0],[-16,0],[-1,0],[-1,0],[-1,0],[-4,0],[-7,1],[-4,0],[-2,0],[-3,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-7,0],[-2,0],[-1,0],[-2,0],[-3,0],[-27,0],[-3,0],[-4,1],[-3,0],[-2,0],[-9,0],[-9,0],[-18,0],[-8,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-5,0],[-2,0],[-5,0],[-9,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-5,0],[-6,0],[-6,0],[-15,0],[-1,0],[-13,0],[-4,0],[-15,0],[-1,0],[-9,0],[-3,0],[-4,0],[-3,0],[-7,0],[-1,0],[-1,0],[-2,0],[-2,0],[-5,1],[-2,0],[-12,0],[-4,0],[-9,0],[-5,0],[-3,0],[-1,0],[-4,0],[-2,-1],[-2,1],[-2,0],[-6,0],[-10,0],[-5,0],[-1,0],[-2,0],[-3,0],[-3,0],[-7,0],[-2,0],[-5,0],[-1,0],[-6,1],[-2,0],[-3,0],[-9,0],[-14,0],[-3,0],[-8,0],[-1,0],[-3,0],[-12,0],[-21,0],[-17,0],[-2,0],[-2,0],[-6,0],[-11,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-14,1],[-8,0],[-5,-1],[-4,0],[-7,1],[-3,0],[-2,0],[-15,0],[-9,0],[-5,0],[-2,0],[-21,-1]],[[1372,5468],[0,8],[0,25],[0,5],[0,3],[0,9],[-1,5],[0,11],[0,8],[0,12],[0,8],[0,2],[0,3],[-1,10],[0,3],[0,6],[0,3],[0,3],[-1,24],[1,14],[0,11],[0,12],[0,4],[0,9],[1,12],[0,6],[0,3],[0,3],[0,2],[0,11],[0,4],[0,8],[1,13],[0,7],[0,4],[1,7],[0,6],[0,7],[0,3],[0,2],[0,11],[0,5],[0,4],[0,14],[0,3],[0,22],[0,1],[0,1],[0,13],[0,12],[0,12],[0,13],[0,12],[0,22],[-3,0],[-12,0],[-4,0],[-6,0],[0,25],[0,14],[0,8],[-1,19],[0,8],[0,19],[0,3],[0,2],[0,3],[0,13],[0,9],[0,25],[0,17],[0,7],[0,13],[0,12],[0,6],[0,5],[0,13],[0,16],[0,10],[0,4],[0,6],[0,6],[0,8],[0,24]],[[1372,5468],[1,-9],[0,-16],[0,-12],[1,-13],[0,-4],[-1,-2],[0,-4],[1,-2],[0,-4],[0,-8],[0,-8],[0,-8],[0,-2],[0,-6],[0,-1],[0,-2],[0,-6],[1,-6],[0,-8],[0,-2],[0,-2],[0,-5],[0,-3],[0,-10],[0,-2],[0,-3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-5,0],[-10,0],[-6,0],[-2,0],[-3,0],[-6,0],[-6,0],[-3,1],[-2,0],[-3,-1],[-2,0],[-7,0],[-11,0],[-9,0],[-13,0],[-12,0],[-1,0],[-24,0],[-1,0],[-2,0]],[[1235,5320],[-9,0],[-11,0],[-3,0],[-10,0],[-23,0],[-5,0],[-3,0],[-3,0],[-20,0],[-6,0],[-5,0],[-6,0],[-4,0],[-1,0],[-12,0],[-38,0],[-5,0],[-5,0],[-10,0],[-3,0],[-4,0],[-25,0],[-8,0],[-42,0],[-16,0],[-6,0],[-5,0],[-7,0],[-20,0],[-5,0],[-1,0],[-14,0],[-7,0],[-7,0],[-17,0],[-10,0],[-21,0],[-6,0],[-7,0],[-3,0],[-17,0],[-14,0],[-2,0],[-5,0],[-6,0],[-2,0],[-3,0],[-9,0],[-5,0],[-3,0],[-4,0],[-13,0],[-10,0],[-4,0],[-10,0],[-3,0],[-10,0],[-4,0],[-23,0],[-4,0],[-6,0],[-1,0],[-16,0],[-5,0],[-9,-1],[-1,0],[-3,1],[-5,-1],[-4,0],[-5,0],[-3,0],[-20,0],[-2,0],[-3,1]],[[588,5320],[-3,1],[-2,-2],[-1,-1],[-1,0],[-11,-1],[-1,0],[-1,1],[0,1],[1,1],[1,2],[1,2],[1,1],[1,0],[2,1],[1,1],[1,1],[0,1],[0,2],[0,1],[1,9],[-1,3],[1,6],[0,1],[-4,5],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[0,5],[0,1],[2,2],[1,1],[2,11],[-1,1],[0,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[9,5],[1,1],[2,0],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,4],[5,2],[1,0],[1,-1],[1,-2],[0,-1],[1,-1],[5,0],[1,1],[0,1],[0,1],[-1,1],[-3,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,2],[0,1],[0,1],[1,0],[2,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[4,5],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[0,2],[1,0],[1,1],[3,1],[1,0],[1,5],[1,0],[0,1],[-1,10],[-4,3],[-2,0],[-1,1],[0,1],[-1,0],[4,8],[3,4],[3,2],[-4,2],[-1,1],[0,1],[2,1],[2,2],[1,0],[2,1],[0,1],[-1,1],[-1,0],[-5,1],[-1,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,2],[1,1],[1,0],[1,0],[3,1],[1,0],[2,1],[2,1],[3,1],[1,2],[1,11],[-4,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[4,7],[0,6],[-6,3],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[3,-1],[1,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[-5,1],[-1,1],[-2,1],[-1,1],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[0,6],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,0],[0,2],[0,2],[-1,0],[-1,1],[-2,0],[-1,1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-2],[2,0],[1,1],[1,0],[0,2],[-1,0],[0,1],[-1,1],[-1,0],[-4,0],[-1,0],[-2,0],[-1,1],[-2,1],[-2,1],[0,1],[0,1],[1,1],[1,0],[3,-1],[6,-1],[3,-1],[2,0],[1,1],[1,1],[0,1],[0,1],[-1,1],[-4,1],[-2,0],[-5,1],[-2,0],[-1,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[-3,0],[-1,0],[-2,-1],[-3,-2],[-1,-1],[-1,0],[-3,-1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[8,8],[3,2],[2,2],[0,1],[-1,1],[0,1],[-3,2],[-3,2],[-1,-1],[-2,0],[-1,1],[0,1],[-1,1],[-1,3],[0,1],[0,1],[3,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-3,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[3,1],[1,1],[1,1],[1,0],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,3],[2,0],[2,0],[2,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[-2,0],[-2,1],[-2,1],[-1,0],[0,1],[0,4],[1,1],[1,1],[1,1],[0,1],[-1,3],[0,2],[0,3],[1,3],[9,10],[1,0],[1,0],[2,0],[5,-2],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[0,1],[0,1],[-1,2],[-2,1],[-2,2],[-2,2],[-2,1],[-5,2],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[2,0],[2,-2],[2,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[1,1],[1,1],[2,0],[2,0],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,2],[-2,2],[-3,2],[0,1],[2,4],[1,2],[1,2],[4,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,-2],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[2,-1],[4,-2],[2,-1],[1,0],[1,1],[0,3],[-1,2],[-1,1],[-6,4],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,2],[1,2],[0,1],[2,6],[1,4],[2,5],[1,5],[2,4],[6,-1],[2,-1],[1,3],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[0,5],[0,1],[0,1],[1,0],[2,1],[2,0],[1,1],[0,1],[0,2],[-1,1],[-1,0],[-1,1],[-3,0],[-1,0],[-1,0],[-1,1],[0,1],[0,2],[4,13],[3,3],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[0,1],[1,0],[2,7],[0,2],[4,8],[1,3],[0,2],[-1,1],[-2,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[2,-1],[1,0],[2,-1],[1,-1],[3,0],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[-2,0],[-2,1],[-3,0],[-2,1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[3,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,2],[-1,1],[-1,1],[-4,6],[-1,1],[-2,-1],[-13,-5],[-7,-6],[-4,-4],[-2,-1],[0,-1],[-2,0],[0,1],[0,2],[0,1],[0,2],[1,2],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[0,2],[1,6],[1,7],[-2,6],[-1,0],[0,2],[1,4],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-2,0],[0,1],[-4,2],[-1,1],[0,1],[0,1],[1,0],[1,1],[3,1],[1,1],[0,1],[0,4],[0,2],[-1,1],[-4,3],[-1,1],[0,1],[0,1],[1,1],[2,0],[2,2],[1,0],[5,9],[0,1],[0,1],[-1,0],[-3,3],[-2,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-9,-5],[-1,0],[-1,1],[-11,5],[-1,1],[-2,3],[-1,1],[-1,1],[0,1],[1,1],[1,1],[2,7],[0,1],[0,3],[0,2],[-1,2],[-2,7],[0,1],[-1,0],[0,1],[-3,1],[-1,1],[0,1],[1,1],[3,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,4],[1,1],[0,1],[1,1],[1,0],[1,0],[0,3],[-2,1],[1,3],[-8,5],[-6,3],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[3,0],[1,1],[1,8],[0,1],[0,1],[3,8],[1,1],[2,2],[3,1],[2,0],[1,1],[2,1],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[-6,7],[-1,2],[-1,0],[0,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[3,-1],[2,0],[1,0],[1,0],[1,1],[1,1],[3,5],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[2,2],[4,9],[1,0],[-1,1],[0,2],[-1,0],[-1,1],[-1,-1],[-2,0],[-2,-1],[-4,-3],[-1,1],[0,1],[0,1],[1,0],[2,1],[2,0],[1,1],[3,2],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,2],[-2,1],[-6,5],[-7,6],[0,1],[1,1],[1,1],[2,0],[2,0],[2,-1],[2,-1],[2,0],[1,1],[1,0],[0,1],[-1,1],[-2,2],[-2,2],[0,1],[0,1],[-1,9],[0,1],[0,1],[1,0],[2,0],[1,1],[1,0],[1,1],[0,1],[0,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[1,1],[2,1],[7,3],[2,0],[1,5],[-1,1],[-1,1],[0,1],[0,2],[0,1],[1,1],[3,2],[1,1],[0,1],[1,0],[-1,1],[0,1],[-4,2],[-2,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[2,0],[4,1],[3,0],[2,1],[1,1],[0,1],[-1,2],[0,2],[0,2],[1,2],[0,1],[-1,1],[-3,1],[-1,1],[0,2],[1,1],[1,2],[1,0],[2,2],[2,0],[0,1],[0,2],[-1,1],[0,2],[0,2],[-4,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[1,2],[0,1],[-1,2],[-2,2],[-1,1],[-1,1],[-3,1],[-1,2],[-1,1],[0,1],[-1,0],[-3,-1],[-3,0],[-1,1],[-3,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,-1],[4,-1],[1,0],[3,0],[1,1],[1,1],[0,1],[0,1],[0,3],[1,1],[1,2],[1,0],[2,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[0,2],[1,0],[0,1],[0,1],[2,0],[2,1],[0,1],[1,1],[0,2],[0,1],[-1,2],[-1,1],[0,1],[0,1],[-4,5],[-2,1],[-1,0],[-1,1],[-1,2],[1,0],[0,1],[2,1],[1,0],[4,0],[0,1],[0,1],[0,1],[-3,4],[-1,1],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,3]],[[5386,5551],[-1,-28],[0,-12],[0,-9],[-1,-11],[-1,-38],[0,-23],[0,-5],[0,-4],[-1,-5],[0,-7],[0,-5],[0,-4],[0,-1],[0,-1],[0,-6],[0,-1],[0,-12],[0,-5],[1,-16],[0,-34],[0,-6],[0,-3],[0,-5],[0,-5],[1,-24],[1,-24],[10,-1],[0,-5],[-1,-19],[0,-12],[0,-4],[0,-4],[0,-30],[0,-3],[0,-15],[0,-7],[0,-6],[0,-2],[0,-5],[1,-34],[0,-8],[0,-4],[0,-9],[0,-1],[-1,-45],[0,-8],[0,-12],[0,-15],[0,-12],[0,-3],[1,-16],[0,-1],[0,-15]],[[5395,4961],[1,-49],[0,-7],[0,-3],[0,-1],[0,-11],[0,-4],[0,-14],[0,-22],[0,-16],[0,-21],[0,-13],[0,-12],[0,-49],[0,-11],[0,-1],[0,-23],[0,-26],[0,-5],[0,-8],[0,-2],[0,-23],[0,-6],[0,-4],[0,-14],[0,-6],[0,-5],[0,-3],[0,-2],[0,-9],[0,-6],[0,-4],[0,-8],[0,-12],[0,-13],[0,-12],[0,-6],[0,-13]],[[5396,4517],[-3,0],[-7,0],[-8,0],[-4,0],[-5,0],[-5,0],[-3,0],[-3,0],[-4,0],[-4,0],[-4,0],[-4,0],[-4,0],[-2,0],[-3,0],[-15,0],[-2,0],[-12,1],[-8,-1],[-6,0],[-2,0],[-3,0],[-4,0],[-14,1],[-1,0],[-6,0],[-17,0],[-8,0],[-4,0],[-23,0],[-16,0],[-10,0],[-14,0],[-3,0],[-11,1],[-6,0],[-5,0],[-15,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-4,0],[-4,0],[-6,0],[-5,0],[-5,-1],[-8,0],[-13,-1],[-5,0],[-32,-2],[-12,0],[-16,-1],[-3,-1],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,-1],[-4,0],[-4,0],[-4,0],[-4,0],[-3,-1],[-2,0],[-2,0],[-2,0],[-6,0],[-9,0],[-7,0],[-7,-1]],[[4909,4510],[0,2],[1,3],[0,2],[0,2],[1,2],[0,3],[0,9],[0,2],[0,3],[0,5],[0,2],[0,4],[1,4],[0,2],[0,2],[0,1],[0,2],[0,2],[0,3],[0,2],[0,2],[0,1],[0,5],[-1,5],[0,2],[0,3],[0,9],[0,4],[0,3],[0,6],[0,3],[0,2],[0,2],[0,1],[0,3],[0,1],[0,4],[0,1],[0,2],[0,2],[0,4],[0,19],[0,3],[0,2],[0,5],[0,6],[-9,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-9,0],[-6,0],[-9,0],[-7,0],[-5,0],[-5,0],[-3,0],[-7,0],[-9,0],[-25,0],[-9,0],[-1,0],[-3,0],[-2,0],[-4,0],[-12,0],[-2,0],[-11,0],[-7,0],[-86,-2],[-5,0],[-3,0],[-3,0],[-2,0],[-1,0],[-4,0],[-2,0],[-7,-1],[-5,0],[-7,0],[-6,0],[-3,0],[-5,0],[-4,0],[-5,0],[-4,0],[-11,-1],[-28,0],[-35,-1],[-21,0],[-4,0],[-3,0],[-3,0],[-4,0],[-6,-1],[-6,0],[-6,0],[-6,0],[-19,0],[-2,0]],[[4439,4662],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,0],[0,1],[-2,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,3],[0,56],[0,39],[0,1],[0,3],[0,3],[0,16],[0,4],[0,2],[0,7],[0,17],[0,2],[1,27],[0,9],[0,20],[0,1],[0,6],[0,14],[0,2],[0,24],[0,2],[0,2],[0,4],[0,2],[0,2],[0,3],[0,2],[0,9],[0,2],[0,4],[0,6],[0,3],[-1,12],[0,2],[0,14],[0,5],[0,8],[0,4],[0,8],[0,2],[-1,27],[0,8],[0,5],[0,2],[0,2],[0,4],[0,16],[-1,3],[0,3],[1,7],[0,3],[0,12],[1,5],[0,13],[0,1],[0,11],[0,1],[0,16],[0,3],[0,9],[0,25],[0,6],[0,4],[-1,14],[0,12],[2,1],[1,1],[2,0],[1,0],[2,0],[2,0],[2,1],[4,0],[1,0],[2,1],[2,1],[4,2],[1,0],[2,1],[2,1],[4,1],[1,0],[2,0],[7,0],[0,5],[0,2],[0,3],[-1,6],[0,16],[0,3],[0,8],[0,9],[0,8],[0,3],[0,4],[0,2],[0,5],[0,3],[0,6],[0,12],[0,3],[0,4],[0,13],[0,10],[0,6],[0,10],[0,4],[0,5],[1,5],[0,3],[0,7],[0,4],[0,7],[0,5],[0,4],[0,10],[0,3],[0,13],[0,5],[0,12],[0,2],[0,3],[1,5],[0,4],[0,2],[0,12],[0,8],[0,7],[-1,2],[0,8],[0,2],[0,3],[0,1],[1,11],[0,1],[0,10],[0,4],[0,5],[1,20],[0,8],[0,17]],[[3233,4875],[-2,0],[-5,0],[-14,0],[-3,0],[-10,0],[-4,0],[-2,0],[-8,0],[-9,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,-1],[-4,0],[-3,0],[-2,1],[-2,-1],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-5,0],[-14,-1],[-11,0],[-3,0],[-5,0],[-31,1],[-5,0],[-5,0],[-16,0],[-11,0],[-2,0],[-18,0],[-7,0],[-7,0],[-4,0],[-3,0],[-5,0],[-1,0],[-7,0],[-7,0],[-3,0],[-4,0],[-2,0],[-2,0],[-5,0],[-3,1],[-1,0],[-6,-1],[-11,0],[-38,0],[-14,0],[-12,0],[-18,0],[-2,0],[-7,0],[-27,0],[-17,0],[-3,0],[-3,0],[-4,0],[-27,0],[-6,0],[-9,0],[-12,0],[-13,0],[-2,0],[-12,0],[-11,0],[-4,0],[-5,0],[-7,0]],[[2686,4875],[0,4],[0,2],[0,5],[0,13],[1,8],[0,5],[0,13],[0,12],[0,18],[0,13],[-1,6],[1,4],[0,3],[0,2],[0,3],[0,10],[0,3],[-1,8],[0,4],[0,1],[1,3],[0,2],[0,3],[0,3],[0,3],[0,3],[0,8],[0,9],[0,6],[0,1],[0,2],[0,2],[0,5],[-1,11],[0,10],[0,14],[1,16],[0,9],[0,9],[0,14],[0,5],[0,3],[0,3],[0,2],[0,3],[0,5],[0,4],[0,1],[0,6],[0,19],[-1,19],[0,5],[0,9],[0,4],[0,3],[0,9],[0,4],[0,8],[0,13],[0,3],[0,4],[0,11],[0,6],[0,6],[0,6],[0,4],[0,2],[0,7],[-5,0],[-5,0],[0,12],[0,9],[0,4],[0,2],[0,1],[0,6],[0,3],[0,5],[0,8],[0,10],[0,14],[0,13],[0,12],[0,5],[0,9],[-1,11],[1,10],[0,3],[0,12]],[[4439,4662],[-1,0],[-3,0],[-5,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-5],[0,-5],[0,-3],[0,-2],[0,-3],[0,-6],[0,-5],[0,-6],[1,-14],[0,-1],[0,-1],[0,-17],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-5],[0,-3],[0,-7],[0,-3],[0,-3],[0,-2]],[[4421,4515],[-23,-1],[-12,0],[-8,0],[-8,0],[-2,0],[-12,0],[-8,1],[-11,0],[-13,0],[-9,0],[-5,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-3,0],[-9,0],[-6,0],[-5,-1],[-3,1],[-3,0],[-3,0],[-3,0],[-2,0],[-12,0],[-4,0],[-2,0],[-2,-1],[-10,1],[-4,0],[-11,-1],[-2,0],[-2,0],[-1,0],[-5,0],[-18,0],[-8,0],[-6,0],[-1,0],[-9,0],[-2,0],[-3,0],[-3,0],[-4,0],[-7,0],[-8,0],[-3,0],[-10,0],[-6,0],[-10,0],[-18,0],[-8,0],[-13,0],[-14,0],[-24,0],[-4,0],[-5,-1],[-2,0],[-4,0],[-3,1],[-5,0],[-2,-1],[-5,0],[-7,1],[-7,0],[-12,0],[-2,1],[-10,0],[-8,0],[-9,0],[-13,0],[-6,0],[-3,0],[-5,0],[-4,0],[-4,0],[-4,0],[-2,0],[-4,0],[-5,0],[-3,0],[-1,0],[-3,0],[-6,0],[-6,1],[-2,0],[-3,0],[-2,0],[-5,0],[-26,-1],[-12,1],[-16,0],[-8,0],[-5,-1],[-6,0],[-8,0],[-5,0],[-10,0],[-5,0],[-5,0],[-2,0],[-10,0],[-2,0],[-8,0],[-8,0],[-2,0],[-3,0],[-11,0],[-8,0],[0,2],[1,3],[0,1],[1,0],[1,3],[1,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,4],[0,2],[0,1],[1,2],[1,1],[2,1],[2,1],[1,1],[0,1],[0,2],[0,1],[-2,3],[0,1],[-1,1],[-4,5],[-1,2],[-2,2],[-2,4],[-1,2],[-2,1],[-3,4],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-2,1],[0,4],[-1,3],[0,1],[-1,3],[-2,2],[-3,2],[-2,3],[-2,2],[0,1],[-1,3],[0,2],[0,2],[1,2],[0,4],[0,3],[0,4],[0,3],[0,2],[0,2],[1,2],[0,3],[1,2],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,2],[0,3],[1,2],[1,1],[0,1],[3,1],[2,0],[1,1],[1,0],[4,0],[5,2],[4,2],[2,2],[0,1],[1,1],[3,4],[3,4],[0,1],[3,3],[3,2],[1,0],[0,1],[2,0],[1,0],[2,1],[1,1],[1,2],[1,2],[0,2],[0,2],[0,2],[-2,1],[0,3],[1,2],[2,2],[3,2],[4,2],[5,1],[3,1],[2,1],[1,2],[1,3],[1,2],[-1,3],[-1,1],[-2,2],[-1,0]],[[6378,5375],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-8],[0,-9],[0,-7],[0,-6],[0,-9],[0,-11],[0,-8],[0,-1],[0,-5],[0,-3],[0,-4],[0,-3],[0,-5],[0,-7],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-3],[0,-13],[0,-1],[0,-10],[0,-6],[0,-2],[0,-4],[0,-8],[0,-6],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-4],[0,-6],[0,-1],[0,-6],[0,-2],[0,-9],[0,-9],[0,-2],[0,-4],[0,-9],[0,-6],[0,-6],[0,-16],[0,-5],[0,-3],[-1,-1],[0,-6],[0,-1],[0,-5],[0,-10],[0,-1],[0,-5],[0,-10],[0,-1],[0,-3],[0,-9],[0,-8],[0,-38],[0,-6],[0,-3],[0,-15],[0,-2],[0,-5],[-1,-4],[0,-6],[0,-2],[0,-4],[0,-2],[0,-1]],[[6377,4957],[-5,1],[-5,0],[-16,0],[-4,0],[-3,0],[-49,0],[-3,0],[-19,0],[-2,0],[-28,0],[-3,0],[-30,0],[-1,0],[-3,0],[-13,1],[-1,0],[-5,0],[-3,0],[-1,0],[-4,-1],[-3,0],[-1,0],[-4,1],[-2,0],[-5,0],[-3,0],[-6,0],[-6,0],[-3,0],[-16,0],[-4,0],[-4,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-4,0],[-2,0],[-21,0],[-7,0],[-11,0],[-16,0],[-2,0],[-15,0],[-13,0],[-22,0],[-4,0],[-16,0],[-16,0],[-5,0],[-2,0],[-2,0],[-4,0],[-15,0],[-21,0],[-7,0],[-13,0],[-7,0],[-19,0],[-8,0],[-9,0],[-3,0],[-5,0],[-16,0],[-8,1],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-5,0],[-3,-1],[-6,0],[-6,0],[-1,0],[-2,0],[-7,0],[-2,0],[-3,0],[-2,0],[-2,0],[-5,1],[-1,0],[-1,0],[-13,0],[-1,0],[-1,-1],[-5,1],[-5,0],[-2,0],[-2,0],[-2,0],[-6,-1],[-2,0],[-10,1],[-1,0],[-1,0],[-10,0],[-2,0],[-2,0],[-2,0],[-21,0],[-3,0],[-24,1],[-3,0],[-11,-1],[-16,1],[-27,0],[-25,0],[-28,0],[-19,0],[-8,0],[-27,0],[-12,0],[-17,0],[-37,0],[-16,0]],[[2686,4875],[0,-6],[1,-18],[0,-2],[0,-10],[0,-2],[0,-10],[0,-1],[0,-4],[0,-5],[0,-15],[0,-25],[0,-11],[1,-13],[0,-9],[0,-16],[11,0],[0,-6],[0,-8],[0,-6],[0,-2],[0,-4],[0,-15],[0,-5],[0,-5],[0,-4],[-1,-10],[0,-5],[0,-6],[1,-24],[0,-4],[0,-8],[-1,-13],[0,-25],[0,-24],[1,-10],[0,-3],[-1,-12],[0,-13],[0,-11],[1,-16],[0,-2],[0,-2],[0,-6],[0,-7],[0,-11],[0,-6],[0,-13],[0,-6],[0,-4],[0,-2]],[[2699,4430],[-9,0],[-7,0],[-11,0],[-4,0],[-5,0],[-18,0],[-4,0],[-6,0]],[[2635,4430],[0,-1],[0,1]],[[2635,4430],[-1,0],[-1,0],[-2,0],[-6,0],[-5,1],[-2,0],[-6,0],[-4,0],[-4,0],[-5,0],[-9,0],[-6,0],[-11,0],[-3,0],[-6,0],[-6,0],[-2,0],[-19,0],[-27,0],[-7,0],[-3,0],[-1,0],[-4,0],[-4,0],[-1,0],[-1,0],[-19,0],[-11,0],[-16,0],[-27,0],[-13,1],[-10,0],[-15,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-11,0],[-6,0],[-5,0],[-23,0],[-3,0],[-5,0],[-8,0],[-15,0],[-24,0],[-6,0],[-4,0],[-19,0],[-7,0],[-7,0],[-10,0],[-2,0],[-6,0],[-8,0],[-4,0],[-7,-1],[-2,0],[-1,0],[-8,1],[-9,0],[-1,0],[-4,0],[-4,0],[-13,0],[-5,0],[-8,0],[-38,-1],[-4,0],[-11,0],[-2,0],[-10,0],[-12,0],[-4,0],[-17,0],[-3,0],[-7,0],[-10,0],[-4,0],[-2,0],[-9,0],[-2,0],[-9,0],[-5,0],[-2,0],[-5,0],[-2,0],[-9,0],[-2,0],[-1,0],[-7,0],[-2,0],[-5,0],[-5,0],[-9,0],[-13,0],[-1,0],[-3,0],[-2,0],[-4,0],[-1,0],[-5,0],[-14,0]],[[1895,4431],[-14,0],[-8,0],[-3,0],[-2,0],[-7,0],[-2,0],[-4,1],[-1,0],[-11,0],[-2,0],[-15,0],[-1,0],[-1,0],[-9,0],[-2,0],[-1,0],[-5,0],[-8,0],[-12,0],[-7,0],[-19,0],[-3,0],[-3,0],[-9,0],[-12,1],[-3,0],[-3,0],[-21,0],[-4,0],[-6,0],[-9,0],[-3,0],[-1,0],[-4,0],[-14,0],[-8,0],[-5,0],[-12,0],[-15,0],[-26,0],[-1,0],[-1,0],[-1,0],[-5,0],[-17,0],[-1,0],[-6,0],[-13,0],[-8,0],[-4,0],[-11,0],[-3,0],[-4,0],[-2,0],[-3,0],[-7,0],[-20,0],[-4,0],[-6,0],[-16,0],[-27,0],[-4,0],[-10,0],[-11,0],[-9,0],[-9,0],[-9,0],[-11,0],[-2,0],[-14,0],[-13,0],[-9,0],[-5,0],[-19,0],[-5,0],[-2,0],[-27,0],[-6,0],[-20,0]],[[1255,4433],[1,12],[0,13],[-1,3],[0,21],[0,25],[1,24],[-1,25],[1,24],[0,12],[0,3],[0,9],[-1,1],[0,21],[0,1],[0,2],[0,12],[0,5],[0,8],[0,10],[1,9],[0,7],[0,5],[0,23],[0,2],[0,2],[0,1],[0,1],[0,2],[0,12],[-8,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[0,3],[0,16],[0,6],[0,11],[-1,4],[0,10],[0,4],[0,3],[0,17],[0,9],[0,16],[0,5],[0,4],[0,3],[0,13],[0,5],[0,1],[0,10],[0,3],[0,3],[0,3],[0,5],[0,4],[0,9],[0,2],[0,4],[0,22],[0,3],[0,6],[0,10],[0,9],[0,19],[0,6],[0,6],[0,4],[0,7],[0,7],[0,8],[0,11],[0,6],[0,3],[0,20],[0,2],[0,2],[0,2],[0,1],[0,4],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,4],[0,14],[0,10],[0,4],[-1,18],[0,3],[0,5],[0,2],[0,8],[0,4],[0,6],[0,6],[0,8],[0,1],[0,8],[0,1],[0,9],[0,8],[0,8],[0,13],[0,12],[0,13],[0,3],[0,4],[0,4],[0,8],[0,14],[0,4],[0,5],[0,6],[0,3],[0,4],[0,2],[0,3],[0,5],[0,6],[0,3],[0,5],[0,3],[0,2]],[[1255,4433],[0,-24],[0,-22],[0,-4],[0,-24],[0,-13],[0,-11],[0,-13],[0,-8],[0,-3],[0,-2],[0,-24]],[[1255,4285],[-28,0],[-25,0],[-12,0],[-15,0],[-6,0],[-1,0],[-1,0],[-4,0],[-15,0],[-18,0],[-9,0],[-7,0],[-9,0],[-10,0],[-26,0],[-27,0],[-27,0],[-10,0],[-17,0],[-26,0],[-1,0],[-4,0],[-5,0],[-17,0],[-27,1],[-13,0],[-3,0],[-10,0],[-23,0],[-5,-1]],[[854,4285],[-1,3],[0,1],[0,2],[-1,3],[1,3],[1,3],[0,1],[2,5],[0,1],[1,3],[4,8],[1,3],[2,5],[1,4],[2,5],[1,2],[1,3],[3,1],[1,0],[1,0],[1,4],[1,4],[1,0],[3,9],[0,2],[0,4],[-1,3],[-1,2],[0,2],[1,9],[1,1],[1,2],[0,1],[0,4],[-1,5],[-1,4],[0,1],[0,4],[0,1],[0,1],[1,0],[0,1],[0,3],[0,6],[-1,3],[-1,6],[-1,4],[-1,1],[-2,1],[-2,3],[-1,0],[0,1],[3,6],[1,3],[0,3],[0,1],[0,1],[-1,1],[-1,3],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,0],[-3,8],[0,1],[0,3],[0,3],[0,1],[1,1],[0,1],[0,2],[0,2],[0,1],[-3,7],[-2,5],[-3,6],[-2,1],[-1,1],[-3,4],[-1,6],[0,1],[2,7],[1,2],[0,1],[2,3],[1,2],[-1,1],[-1,3],[0,1],[-1,2],[1,1],[1,2],[0,1],[1,1],[1,2],[0,1],[-2,9],[-1,1],[-2,3],[-1,1],[-1,0],[-1,0],[-4,-1],[-1,1],[-3,1],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,2],[2,8],[3,10],[0,1],[0,1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,1],[1,1],[1,1],[2,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,5],[-1,5],[-2,10],[-1,1],[-6,10],[-4,5],[-1,0],[0,1],[-3,12],[0,1],[0,2],[-1,22],[0,1],[0,1],[0,1],[4,2],[1,1],[1,1],[1,0],[2,-1],[1,0],[5,3],[2,1],[1,1],[1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-2,1],[-1,0],[-4,5],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,2],[-2,0],[-5,0],[-1,5],[0,5],[-1,4],[3,3],[1,1],[2,9],[0,2],[0,1],[0,2],[-2,3],[-3,2],[-1,1],[0,2],[0,1],[1,1],[1,2],[5,3],[-1,1],[-6,0],[-3,-1],[0,2],[3,0],[4,0],[1,0],[0,5],[0,5],[-3,-1],[-2,0],[-2,0],[-5,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,1],[3,1],[1,1],[3,0],[1,1],[0,1],[1,0],[-1,2],[0,1],[-2,1],[-1,1],[-1,3],[-1,3],[1,2],[1,6],[0,1],[1,1],[1,5],[0,3],[-3,8],[0,2],[0,6],[1,3],[0,1],[0,1],[-1,0],[-3,-1],[-2,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[2,1],[1,1],[2,0],[1,0],[1,2],[-2,2],[-3,0],[-3,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,1],[-7,4],[0,1],[0,1],[1,3],[0,1],[1,1],[1,1],[2,3],[-1,2],[-4,0],[-1,0],[-5,2],[-1,0],[-3,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-2,2],[-2,0],[-2,-1],[-5,-2],[-3,-1],[-1,-1],[-2,-2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-2,7],[0,1],[1,1],[1,1],[4,2],[1,2],[0,1],[-1,0],[0,1],[-3,0],[-2,0],[-1,1],[-2,0],[-2,1],[-3,2],[-1,1],[0,1],[-1,1],[-3,6],[0,5],[-6,2],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[0,2],[1,2],[0,2],[-1,1],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,4],[0,2],[-5,8],[-1,1],[-1,3],[-3,4],[-1,1],[0,2],[-1,4],[-1,1],[0,1],[-2,4],[-1,1],[-1,0],[-1,0],[-1,0],[-5,-3],[-1,0],[-1,0],[-1,1],[0,1],[-1,3],[0,2],[1,1],[1,1],[2,1],[2,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-4,-1],[-4,0],[-2,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,3],[-1,1],[1,1],[0,1],[2,1],[1,0],[2,0],[2,-1],[2,-2],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,7],[-1,1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-9,-5],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[0,1],[2,2],[1,3],[2,5],[0,1],[1,2],[-1,4],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[2,1],[0,1],[2,5],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-1],[-6,-2],[-1,0],[-1,0],[-1,1],[-6,9],[0,1],[0,1],[2,0],[2,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,2],[-3,3],[-2,1],[-4,3],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[3,0],[1,0],[3,0],[1,1],[1,1],[0,1],[0,2],[-1,0],[0,1],[0,4],[2,1],[1,6],[0,1],[-1,1],[-1,1],[-2,0],[-1,5],[2,1],[1,1],[0,1],[0,1],[0,1],[-3,0],[-3,2],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,2],[0,2],[0,1],[1,1],[4,2],[0,1],[1,0],[1,0],[3,-1],[-1,4],[-4,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-4,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,1],[-1,1],[-7,5],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,2],[1,2],[2,0],[2,1],[2,0],[0,1],[0,1],[-1,1],[-2,1],[-3,1],[0,5],[3,8],[0,1],[1,1],[1,4],[0,1],[-1,1],[-2,1],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[1,2],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,0],[3,2],[4,5],[4,0],[0,-1],[1,0],[0,1],[0,2],[0,1],[-1,2],[-1,1],[-4,1],[-1,1],[0,1],[-2,3],[1,1],[1,0],[1,-1],[1,0],[0,1],[1,3],[-1,7],[-3,4],[-1,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[6,2],[1,0],[1,0],[1,0],[1,1],[1,2],[-3,4],[-4,5],[0,2],[-1,3],[0,2],[-1,1],[0,1],[-3,1],[0,1],[1,0],[2,1],[1,0],[1,-1],[4,-1],[1,0],[0,1],[0,7],[-1,1],[-1,0],[-4,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-3,1],[0,1],[0,1],[1,0],[1,1],[3,1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,1],[2,2],[0,1],[0,1],[0,1],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-3,1],[-1,1],[-2,0],[0,1],[1,0],[3,4],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-2,2],[-2,2],[-1,0],[-1,8],[0,1],[0,1],[-1,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-1,1],[0,1],[0,1],[1,1],[2,0],[2,1],[3,0],[1,0],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,1],[1,0],[6,0],[6,1],[0,1],[0,1],[-1,1],[-1,2],[-2,7],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,-1],[-3,-1],[-1,1],[0,2],[0,1],[1,1],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[1,1],[-1,1],[0,1],[-1,0],[-4,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[0,4],[1,2],[9,4],[1,0],[1,0],[0,1],[0,2],[0,1],[-2,1],[-1,1],[-1,0],[-2,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-6,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[2,1],[5,0],[1,0],[3,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,2],[-1,1],[-1,1],[0,1],[0,2],[0,1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[0,1],[1,1],[1,2],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-4,-2],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,3],[0,2],[-1,1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,1],[-1,2],[0,3],[0,4],[2,3],[3,4],[0,1],[0,1],[-1,0],[-3,0],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,1],[-2,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[2,0],[2,1],[2,0],[0,1],[3,9],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[0,1],[0,1],[1,0],[1,0],[3,0],[2,0],[1,1],[1,1],[-1,4],[0,1],[-1,0],[-1,0],[-2,-2],[-1,-1],[-9,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[5,3],[4,0],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-3,1],[-1,0],[0,1],[1,1],[1,0],[4,1],[1,1],[4,6]],[[6377,4957],[0,-22],[0,-9],[0,-5],[0,-8],[0,-15],[0,-14],[0,-6],[0,-2],[0,-3],[0,-5],[0,-2],[0,-10],[0,-9],[0,-11],[0,-10],[0,-6],[0,-8],[0,-1],[0,-10],[0,-1],[0,-5],[0,-4],[0,-2],[0,-1],[0,-5],[0,-2],[0,-1],[0,-3],[0,-7],[0,-4],[0,-2],[0,-5],[0,-3],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-3],[0,-7],[0,-2],[0,-9],[0,-1],[0,-10],[0,-1],[0,-6],[0,-1],[0,-11],[-1,-12],[0,-1],[0,-3],[0,-1],[0,-2],[0,-6],[0,-8],[1,-9],[0,-1],[0,-1],[0,-4],[0,-4],[-1,-8],[0,-3],[0,-1],[0,-13],[0,-16],[0,-16],[0,-15],[0,-10],[0,-11],[0,-13],[0,-1],[0,-14],[0,-1],[0,-23],[0,-1],[0,-31],[0,-4],[1,-15],[-1,-7],[0,-18],[0,-13],[0,-12],[0,-9],[0,-1],[0,-6],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-2,-2],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-3],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-3],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-3,-2],[-1,1],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,1],[-2,2],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,1],[-1,1],[-4,0],[-3,1],[-3,1],[-1,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-3,-2],[-1,0],[-4,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[0,-4],[0,-2],[-1,-1],[-3,-3],[-3,-2],[-4,-2],[-2,-2],[-1,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-2],[-3,-4],[-6,-4],[-2,-1],[-3,0],[-2,0],[-3,1],[-1,0],[-2,0],[-2,1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-7,5],[-3,1],[-2,1],[-1,1],[-4,1],[-6,2],[-4,1],[-2,0],[-1,1],[-2,0],[-3,1],[-3,1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-3,-2],[-1,0],[-1,-1],[-2,-2],[-6,-4],[-4,-4],[-1,-2],[0,-1],[-3,-3],[-3,-3],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-3],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[-1,-4],[0,-2],[-1,-3],[-1,-1],[-1,0],[-2,0],[-5,0],[-2,-1],[-2,0],[-2,0],[-1,-2],[-3,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,1],[-1,0],[-2,-1],[-1,0],[-7,-3],[-4,-2],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[-2,0],[-1,0],[-3,-1],[-3,0],[-4,0],[-3,0],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-3,1],[-2,1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[-2,0],[-2,0],[-2,1],[-2,1],[-1,1],[-2,0],[-2,0],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-5],[0,-1],[0,-1],[1,-2],[-1,-2],[0,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-2,-2],[-3,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-3,-2],[-2,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-3],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-3],[-1,-2],[-2,-1],[0,-3],[-2,-2],[-1,-1],[-1,-2],[-2,-3],[0,-2],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,-2],[0,-1],[-2,-3],[-1,-3],[-1,-2],[-1,-1],[-1,-2],[1,-2],[2,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-5],[0,-2],[-1,-5],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-3,-1],[-4,-3],[-3,-3],[-1,0],[-2,-3],[-2,-3],[0,-2],[0,-3],[1,-4],[0,-1],[1,-3],[1,-2],[1,-4],[1,-2],[1,-2],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[2,-2],[0,-5],[0,-3],[-2,-5],[-3,-4],[-4,-3],[-2,-1],[-3,-2],[-4,-4],[-3,-5],[-3,-4],[-1,-4],[-1,-3],[-2,-4],[1,0],[-1,-2],[-1,-3],[0,-2],[-1,-11],[-1,0],[0,-3],[-1,-3],[0,-3],[-3,-6],[-1,-1],[-3,-3],[-1,0],[-1,-2],[-1,-1],[-4,-4],[-7,-7],[-5,-3],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-3],[-1,-1],[-2,-1],[-1,0],[-1,0],[-3,0],[-2,0],[0,-1],[-1,-1],[-2,0],[-2,-2],[-1,-1]],[[5671,3790],[-1,0]],[[5670,3790],[-1,0],[-8,0],[-2,0],[-2,0],[-1,0],[-13,0],[-4,0],[-12,0],[-5,0],[-4,0],[-17,0],[-4,0],[-11,0],[-3,0],[-2,0],[-11,0],[-1,0],[-1,0],[-1,0],[-4,0],[-3,0],[-2,0],[-5,0],[-10,0],[-26,0],[-2,0],[-2,0],[-3,0],[-7,0],[-7,0],[-6,1],[-2,0],[-11,0],[-1,0],[-4,0],[-7,0],[-1,0],[-3,0],[-21,0],[-3,0],[-17,0],[-9,0],[-12,0],[-3,0],[-5,0],[-6,0],[-8,0],[-1,0],[-1,0],[-5,0],[-5,0],[-4,0],[-3,0],[-22,0],[-5,0],[-26,0],[-2,0],[-12,0],[-8,0]],[[5283,3791],[0,14],[0,9],[0,10],[0,16],[-1,12],[0,4],[0,12],[0,3],[0,8],[0,7],[0,5],[0,2],[0,7],[0,1],[0,11],[0,3],[0,11],[0,12],[0,12],[0,13],[0,4],[0,15],[0,6],[0,10],[0,1],[0,1],[0,6],[0,16],[0,2],[0,12],[0,8],[0,5],[0,4],[0,8],[0,7],[0,5],[0,14],[0,12],[0,8],[0,10],[0,5],[0,4],[0,5],[0,10],[-1,19],[0,25],[0,12],[0,4],[0,10],[0,5],[6,0],[2,0],[14,0],[1,0],[1,0],[3,0],[4,0],[2,1],[8,0],[1,0],[8,0],[2,0],[2,0],[6,0],[13,-1],[14,0],[3,0],[1,0],[4,0],[9,0],[10,1],[0,22],[0,1],[-1,8],[0,10],[0,8],[0,5],[0,9],[0,10],[0,9],[1,5],[0,4],[0,7],[0,7],[0,1],[0,16],[0,12],[0,9],[0,9],[0,21],[0,4],[0,13],[0,10],[0,12],[1,2],[0,12],[0,18],[0,2],[0,29],[0,4],[0,8],[0,13]],[[3334,4841],[0,-10],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-7],[0,-6],[0,-5],[0,-2],[0,-1],[0,-3],[0,-7],[0,-11],[1,-14],[0,-4],[0,-3],[0,-4],[0,-2],[0,-6],[0,-3],[0,-1],[0,-1],[0,-12],[6,0],[0,-6],[0,-7],[0,-11],[0,-12],[0,-14],[0,-2],[0,-4],[0,-12],[0,-3],[0,-5],[0,-5],[0,-13],[0,-6],[0,-5],[0,-1],[0,-1],[0,-4],[0,-2],[0,-5],[0,-3],[0,-3],[0,-3],[0,-4],[0,-16],[0,-2],[0,-4],[0,-9],[0,-3],[0,-3],[0,-2],[0,-2],[0,-2],[0,-4],[0,-3],[0,-4],[0,-4],[0,-8],[0,-4],[0,-6],[0,-2],[0,-3],[0,-2],[0,-3],[0,-31],[0,-9],[0,-11],[0,-5],[0,-24],[0,-13],[0,-12],[0,-6],[0,-8],[0,-2],[0,-11],[0,-8],[0,-2],[0,-8],[0,-4],[0,-3],[0,-5],[0,-5],[0,-12],[0,-6],[0,-8],[0,-11],[0,-5],[0,-5],[0,-4],[0,-4],[0,-3],[0,-4],[-1,-4],[1,-9],[0,-14],[0,-3],[0,-4],[0,-15],[0,-4],[0,-21],[0,-7],[0,-3],[0,-3],[0,-9],[0,-3],[-1,-8],[0,-3],[0,-14],[0,-9],[0,-7],[0,-3],[0,-1],[0,-1],[0,-3],[5,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-12],[0,-2],[0,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-21],[0,-22],[0,-3],[0,-7],[0,-11],[0,-13],[0,-6],[0,-11],[0,-2],[0,-22],[0,-3],[0,-23],[0,-2],[0,-5],[0,-6],[0,-2],[0,-3],[0,-5],[0,-13],[0,-7],[0,-7],[0,-5],[0,-6],[0,-9],[0,-4]],[[3346,3864],[-8,0],[-18,0],[-5,0],[-9,0],[-2,0],[-3,0],[-9,0],[-6,0],[-6,0],[-7,0],[-6,0],[-7,0],[-31,0],[-2,0],[-18,0],[-8,0],[-14,0],[-4,0],[-2,0],[-21,1],[-13,0],[-3,0],[-4,0],[-1,0],[-3,0],[-3,0],[-17,0],[-3,0],[-7,0],[-3,0],[-1,0],[-3,0],[-14,0],[-3,0],[-16,0],[-1,0],[-3,0],[-4,0],[-5,0],[-5,0],[-1,0],[-4,0],[-4,0],[-3,0],[-9,0],[-27,0],[-2,0],[-11,0],[-2,0],[-7,0],[-7,0],[-2,0],[-9,0],[-17,0],[-3,0],[-14,0],[-8,0],[-7,0],[-12,0],[-2,0],[-3,0],[-3,0],[-4,0],[-3,-1],[-2,1],[-2,-1],[-1,1],[-13,0],[-11,0],[-12,0],[-2,-1],[-2,1],[-10,-1],[-5,0],[-2,0],[-1,0],[-5,0],[-4,0],[-1,0],[-4,0],[-27,0],[-7,0],[-9,0],[-5,0],[-15,0],[-11,0],[-2,0],[-6,0],[-5,0],[-11,0],[-2,0]],[[2707,3864],[0,12],[0,18],[0,15],[0,18],[0,22],[-1,10],[0,27],[0,4],[0,3],[0,3],[0,2],[0,4],[0,2],[0,3],[0,4],[0,7],[0,1],[0,1],[0,4],[0,2],[0,2],[0,1],[0,7],[1,23],[0,22],[0,11],[1,3],[0,10],[0,5],[0,9],[0,3],[0,6],[0,6],[-10,0],[0,25],[0,24],[0,22],[0,3],[0,12],[0,13],[0,12],[0,3],[0,34],[0,25],[0,2],[1,22],[0,15],[0,4],[0,5],[0,15],[0,10],[0,8],[0,3],[0,3],[0,7],[0,4],[0,16],[0,9]],[[4421,4515],[0,-3],[0,-5],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-5],[0,-3],[0,-4],[0,-7],[0,-4],[0,-5],[0,-9],[0,-8],[0,-34],[0,-19],[0,-6],[0,-5],[0,-4],[0,-8],[0,-9],[0,-18],[0,-43],[0,-4],[0,-4],[0,-12],[0,-4],[0,-26],[0,-15],[0,-8],[0,-2],[0,-3],[6,0],[19,-1],[9,0],[11,0],[7,0],[1,0],[0,-8],[1,-18],[0,-20],[1,-4],[-1,-11],[0,-13],[0,-26],[0,-18],[0,-5],[0,-2],[0,-14],[1,-6],[0,-5],[1,-21],[0,-8],[0,-4],[0,-3],[1,-12],[0,-4],[1,-31],[1,-15],[0,-10],[1,-15]],[[4481,3946],[-22,0],[-4,0],[-26,0],[-15,0],[-3,0],[-10,0],[-4,0],[-9,1],[-14,0],[-10,0],[-16,0],[-11,1],[-7,0],[-7,0],[-15,0],[-11,1],[-27,0],[-14,0],[-13,1],[-14,0],[-13,0],[-27,0],[-13,0],[-8,0],[-5,-1],[-14,0],[-7,0],[-20,0],[-13,0],[-4,0],[-14,0],[-3,0],[-6,0],[-6,0],[-21,-1],[-39,0],[-1,0],[-6,0],[-7,0],[-34,0],[-20,0],[-28,0],[-13,0],[-3,0],[-1,0],[-1,0],[-9,0],[-27,-1],[-12,0],[-15,0],[-13,0],[-7,0],[-8,0],[-1,0],[-2,0],[-2,0],[-7,0],[-1,0],[-14,0],[-25,0],[-2,0],[-9,-1],[-17,0],[-3,0],[-2,0],[-3,0],[-1,0],[0,-1],[1,-1],[0,-2],[2,-5],[1,-1],[2,-1],[3,-6],[6,-6],[6,-6],[7,-6],[1,-1],[1,-1],[0,-1],[2,-2],[4,-1],[1,0],[1,0],[1,1],[2,1],[2,1],[0,1],[1,2],[1,-1],[4,0],[2,-2],[0,-4],[0,-1],[-1,-1],[0,-3],[1,-3],[0,-1],[0,-2],[5,-6],[1,0],[3,-3],[3,-1],[4,0],[8,-2],[3,-3],[2,-2],[1,-1],[6,0],[4,-1],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[4,-1],[1,-1],[2,-1]],[[3826,3867],[-2,0],[-12,0],[-3,-1],[-6,0],[-1,0],[-19,0],[-14,0],[-13,1],[-6,-1],[-2,0],[-3,1],[-9,0],[-7,0],[-12,0],[-14,0],[-11,0],[-3,0],[-13,0],[-7,0],[-20,0],[-13,0],[-13,0],[-2,0],[-5,0],[-5,0],[-15,0],[-4,0],[-26,0],[-4,0],[-5,-1],[-2,0],[-2,0],[-11,0],[-11,0],[-10,-1],[-7,0],[-8,0],[-8,0],[-4,0],[-6,0],[-5,0],[-4,0],[-3,0],[-1,0],[-7,0],[-4,0],[-5,0],[-11,0],[-7,0],[-2,0],[-1,0],[-5,0],[-3,0],[-5,0],[-1,0],[-1,0],[-2,0],[-6,0],[-9,0],[-10,0],[-8,0],[-13,0],[-5,0],[-6,0],[-8,0],[-10,-1]],[[4909,4510],[0,-8],[0,-4],[0,-4],[0,-3],[0,-1],[0,-4],[0,-6],[0,-2],[0,-9],[-1,-4],[0,-2],[0,-1],[1,-13],[-1,-2],[0,-10],[0,-32],[0,-5],[0,-6],[0,-20],[0,-6],[0,-4],[0,-12],[0,-13],[0,-12],[0,-12],[0,-17],[0,-2],[0,-16],[0,-5],[0,-2],[0,-2],[0,-5],[0,-18],[0,-6],[0,-16],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[-16,0],[-9,1],[-17,0],[-7,0],[-4,0],[-31,0],[-3,0],[-8,0],[-8,0],[-5,0],[-2,0],[-1,-28],[0,-24],[0,-25],[1,-24],[-1,-24],[0,-25],[0,-4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-6],[0,-2],[0,-3],[0,-4],[0,-6],[1,-3],[0,-1],[0,-3],[0,-1],[0,-6],[0,-3],[1,-24],[0,-11],[0,-26],[1,-6],[0,-7],[0,-3],[0,-5],[0,-10],[0,-5],[0,-11],[1,-2],[0,-12],[1,-25],[1,-19],[0,-6],[0,-7],[0,-16],[0,-2],[0,-11],[0,-9],[0,-1],[0,-2],[0,-2]],[[4803,3797],[0,-6],[1,-10],[1,-11],[0,-2],[0,-5],[-1,-7],[1,-11],[0,-23],[0,-2],[0,-7],[0,-11],[0,-1],[0,-3],[0,-22],[0,-3],[0,-12],[0,-4],[0,-1],[0,-2],[0,-8],[0,-9],[0,-16],[0,-10],[0,-5],[0,-8],[0,-10],[0,-5],[0,-2],[1,-7],[0,-4],[0,-3],[0,-18],[0,-12],[0,-13],[1,-11],[0,-5],[0,-3],[0,-3],[0,-3]],[[4807,3499],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-5,0],[-2,0],[-1,0],[-1,0],[-5,0],[-4,0],[-1,0],[-3,0],[-2,0],[-4,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[-3,0],[-4,0],[-3,0],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-4,0],[-3,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-1,1],[-5,0],[-1,0],[-7,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-4,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[-1,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-10,0],[-12,0],[-7,0],[-6,0],[-12,-1],[-29,0],[-13,0],[-14,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0]],[[4486,3500],[0,30],[0,9],[0,11],[0,11],[0,13],[-1,27],[0,6],[0,4],[0,2],[0,7],[0,6],[0,13],[0,3],[0,10],[0,7],[0,2],[0,2],[0,2],[-1,12],[0,2],[0,22],[0,17],[0,8],[-1,24],[0,5],[0,2],[0,16],[0,5],[0,3],[0,3],[0,3],[0,11],[0,25],[0,17],[0,2],[0,6],[0,15],[0,1],[0,1],[0,7],[0,4],[-1,14],[0,7],[0,11],[0,14],[-1,14],[0,10]],[[5283,3791],[-2,0],[-7,0],[-11,0],[-7,0],[-4,0],[-3,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-8,0],[-2,0],[-2,0],[-10,0],[-8,0],[-1,0],[-4,0],[-6,0],[-1,0],[-15,0],[-8,0],[-3,0],[-4,0],[-18,0],[-5,0],[-20,0],[-27,0],[-14,0],[-5,0],[-7,1],[-2,0],[-5,0],[-11,-1],[-9,0],[-3,0],[-5,0],[-12,0],[-4,0],[-2,0],[-3,0],[-11,0],[-2,0],[-3,0],[-8,0],[-6,0],[-2,0],[-5,0],[-3,0],[-2,0],[-8,0],[-8,1],[-12,0],[-3,0],[-11,1],[-1,0],[-15,0],[-6,0],[-5,1],[-6,0],[-10,0],[-9,0],[-8,1],[-4,0],[-7,0],[-3,0],[-11,1],[-1,0],[-16,0],[-7,1],[-18,0]],[[1895,4431],[-1,-12],[1,-1],[0,-10],[-1,-25],[0,-11],[0,-1],[0,-1],[0,-2],[0,-10],[0,-4],[0,-3],[0,-4],[0,-8],[0,-3],[0,-12],[0,-4],[0,-7],[0,-5],[0,-4],[0,-3],[0,-5],[0,-12],[0,-13],[0,-2],[0,-6],[1,-9],[0,-2],[0,-4],[0,-5],[0,-9],[0,-24],[0,-25],[0,-9],[0,-17],[0,-5],[0,-3],[0,-2],[0,-13],[9,0],[1,0],[1,0],[3,0],[0,-12],[0,-4],[0,-8],[0,-13],[0,-12],[0,-3],[0,-9],[0,-6],[0,-7],[0,-6],[0,-16],[0,-4],[0,-23],[0,-16],[0,-2],[0,-7],[0,-8],[0,-3],[0,-13],[0,-13],[0,-12],[0,-13],[0,-4],[0,-7],[0,-12],[0,-13],[0,-25],[0,-12],[0,-1],[0,-11]],[[1909,3841],[-4,0],[-5,0],[-18,0],[-7,0],[-1,0],[-19,0],[-9,0],[-4,0],[-11,0],[-9,0],[-20,0],[-19,-1],[-8,0],[-5,0],[-6,0],[-2,0],[-4,0],[-8,0],[-27,0],[-26,0],[-5,0],[-3,1],[-6,-1],[-13,0],[-27,0],[-13,0],[-13,0],[-19,0],[-1,0],[-7,0],[-8,0],[-20,0],[-25,0],[-2,0],[-3,0],[-19,0],[-10,0],[-8,0],[-1,0],[-1,0],[-5,0],[-5,0],[-27,0],[-20,0],[-1,0],[-1,0],[-4,0],[-25,0],[-6,0],[-3,1],[-20,-1],[-13,0],[-13,1],[-13,0],[-14,0],[-8,0],[-8,0],[-11,0],[-6,0],[-6,-1],[-9,0],[-5,0]],[[1270,3840],[0,25],[0,13],[0,12],[0,16],[0,8],[0,12],[0,13],[0,25],[0,25],[0,7],[0,17],[0,12],[0,2],[0,9],[0,2],[0,9],[0,3],[0,13],[0,26],[0,2],[0,8],[0,13],[0,13],[0,4],[0,3],[0,2],[1,1],[0,3],[-1,0],[-2,0],[-1,0],[-3,0],[-10,0],[0,14],[0,4],[0,2],[0,1],[0,3],[0,25],[0,25],[0,8],[0,16],[0,12],[0,12],[1,9],[0,16]],[[2707,3864],[0,-25]],[[2707,3839],[-19,0],[-8,0],[-11,0],[-2,0],[-7,0],[-7,0],[-26,0],[-5,0],[-3,0],[-6,0],[-3,0],[-7,0],[-3,0],[-12,0],[-1,0],[-6,0],[-8,0],[-10,0],[-14,0],[-1,0],[-15,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-16,0],[-6,0],[-4,0],[-14,0],[-9,0],[-11,0],[-29,0],[-18,0],[-11,0],[-10,0],[-3,1],[-3,0],[-5,0],[-3,0],[-19,0],[-1,0],[-9,0],[-2,0],[-3,0],[-6,0],[-7,0],[-2,0],[-13,0],[-2,0],[-7,0],[-6,0],[-7,0],[-4,0],[-3,0],[-7,0],[-9,0],[-1,0],[-8,-1],[-2,0],[-4,0],[-9,0],[-7,0],[-8,0],[-4,0],[-2,0],[-4,0],[-3,0],[-17,0],[-37,0],[-11,0],[-6,0],[-27,1],[-3,0],[-6,0],[-2,0],[-13,0],[-2,0],[-5,0],[-2,0],[-6,0],[-2,0],[-12,0],[-5,0],[-3,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-8,0],[-11,0],[-15,0],[-10,0],[-11,0],[-6,0],[-2,0],[-8,0],[-4,0],[-13,0],[-6,0],[-10,1],[-5,0],[-5,0],[-4,0],[-12,0],[-4,0],[-7,0]],[[1270,3840],[0,-16],[0,-3],[0,-5],[0,-36],[0,-14],[0,-14],[0,-10],[0,-20],[0,-5],[0,-2],[0,-10],[0,-13],[0,-23],[0,-1],[0,-25],[0,-6],[1,-6],[0,-13],[0,-7],[0,-5],[0,-12],[0,-6],[0,-4],[0,-15],[0,-13],[0,-12]],[[1271,3544],[-8,0],[-2,0],[-16,0],[-8,0],[-3,0],[-3,0],[-9,0],[-2,0],[-13,0],[-3,0],[-12,0],[-12,0],[-3,0],[-9,0],[-3,0],[-6,0],[-6,0],[-14,0],[-19,0],[-6,0],[-12,0],[-1,0],[-7,0],[-20,0],[-17,0],[-9,0],[-1,0],[-27,0],[-7,0],[-3,0],[-1,0],[-3,0],[-13,0],[-3,0],[-2,0],[-4,0],[-5,0],[-17,0],[-9,0],[-14,0],[-4,0],[-14,0],[-7,0],[-6,0],[-18,0],[-3,0],[-2,0],[-15,1],[-2,0],[-8,0],[-2,0],[-5,0],[-10,-1],[-16,0],[-7,0],[-2,0],[-3,0],[-13,0],[-11,0],[-14,1],[-2,0],[-7,0],[-17,0],[-30,0],[-16,0],[-5,0],[-2,0],[-1,0],[-27,0],[-27,0],[-5,0],[-8,0],[-14,0],[-8,0],[-19,0],[-8,0],[-19,0],[-1,0],[-5,0],[-2,0],[-3,0],[-15,0],[-16,0]],[[520,3545],[-2,3],[-11,14],[-3,3],[-1,2],[-5,15],[-1,2],[0,10],[5,13],[0,6],[0,2],[3,4],[0,4],[2,9],[4,8],[3,6],[2,3],[1,2],[5,4],[1,1],[2,0],[4,2],[6,6],[9,5],[12,11],[1,0],[2,0],[5,0],[11,5],[6,5],[4,5],[10,9],[4,1],[4,2],[7,7],[7,5],[1,0],[11,10],[7,7],[7,6],[2,1],[5,1],[4,2],[10,3],[1,1],[6,6],[4,2],[2,1],[2,1],[10,9],[1,0],[8,8],[2,0],[1,1],[7,6],[3,1],[7,7],[3,2],[0,1],[13,4],[3,3],[7,4],[5,5],[5,5],[1,0],[0,1],[2,8],[7,6],[1,1],[5,4],[5,5],[0,9],[-1,0],[0,6],[-1,5],[2,2],[2,2],[2,0],[1,1],[5,8],[0,4],[0,1],[0,2],[1,1],[5,5],[5,1],[10,10],[1,0],[5,7],[4,8],[3,3],[3,3],[1,1],[6,8],[1,2],[1,2],[3,3],[1,0],[2,0],[3,2],[1,0],[5,4],[0,2],[0,3],[1,1],[3,6],[2,5],[1,3],[2,8],[-1,8],[1,1],[1,3],[1,1],[0,3],[1,7],[0,7],[1,10],[0,4],[0,5],[0,1],[2,10],[1,9],[0,1],[0,1],[0,3],[3,21],[0,4],[0,8],[0,2],[0,1],[0,2],[0,3],[1,3],[0,1],[2,3],[2,3],[-3,2],[-3,2],[3,7],[1,1],[1,1],[1,1],[0,1],[0,1],[0,5],[0,2],[0,3],[0,3],[0,2],[1,13],[1,5],[2,6],[0,5],[0,1],[-1,1],[0,2],[-1,2],[-1,4],[-1,1],[-1,3],[-1,0],[0,1],[0,2],[-1,4],[-3,7],[-2,5],[0,2],[0,4],[0,1],[0,2],[0,1],[-1,1],[0,3],[-1,5],[0,4],[0,4],[0,1],[0,3],[0,7],[0,3],[0,1],[-1,8],[0,6],[-1,5],[0,5],[-3,8],[0,1],[1,7],[0,3],[1,0],[0,3],[0,2],[0,2],[-3,6]],[[4486,3500],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-4,0],[-1,0],[-2,0],[-3,0],[-3,0],[-5,1],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-6,0],[-3,0],[-2,0],[-2,0],[-9,0],[-2,0],[-10,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-5,0],[-4,0],[-1,0],[-2,0],[-2,-1],[-2,1],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,-1],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-13,0],[-2,0],[-3,0],[-9,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-2,0],[-1,0],[-5,-1],[-7,0],[-8,1],[-2,0],[-2,0],[-2,0],[-8,0],[-3,0],[-3,0],[-3,0],[-2,0],[-8,0],[-13,0],[-13,0],[-13,0],[-2,0],[-8,0],[-4,0],[-6,0],[-2,0],[-5,0],[-2,0],[-2,0],[-9,0],[-5,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0]],[[3984,3499],[-4,3],[-2,3],[-1,0],[-3,2],[0,1],[-4,2],[0,1],[-3,5],[-4,7],[-1,3],[0,1],[-2,8],[0,8],[0,1],[-1,1],[-1,1],[-10,9],[-7,6],[-2,2],[-2,1],[-1,1],[-1,1],[-1,1],[-3,3],[-2,3],[-1,0],[-4,7],[-3,4],[0,1],[-3,5],[-1,2],[0,1],[-1,0],[0,2],[-1,2],[0,2],[-1,1],[0,1],[-1,2],[1,2],[0,1],[0,1],[0,3],[0,13],[-2,6],[1,18],[1,3],[2,3],[1,0],[0,1],[1,1],[3,3],[1,2],[1,15],[-1,3],[-1,2],[0,3],[1,6],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[2,-1],[7,4],[2,2],[1,1],[1,2],[0,3],[-1,1],[-1,0],[-2,0],[-2,0],[-5,-2],[-1,0],[-3,-3],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,1],[-4,3],[0,1],[-1,3],[-1,3],[-1,10],[-6,21],[-2,2],[0,1],[-1,0],[-3,0],[-1,1],[-1,1],[-7,7],[-2,3],[-1,2],[0,7],[0,1],[0,1],[2,2],[5,1],[3,3],[2,1],[1,1],[0,1],[0,2],[-1,3],[-1,2],[-1,1],[0,1],[-3,0],[-9,0],[-14,5],[-1,0],[-5,4],[-3,1],[-2,2],[-2,1],[-2,1],[0,2],[-2,1],[-1,1],[-2,1],[-6,4],[-4,4],[-1,1],[0,1],[0,1],[-1,2],[1,1],[-1,1],[0,1],[-1,1],[-1,3],[-2,2],[-1,1],[-1,5],[0,3],[1,2],[1,1],[1,3],[0,2],[0,1],[-1,1],[0,1],[-2,2],[-4,2],[-3,3],[-1,1],[0,2],[1,2],[1,2],[0,3],[0,1],[-1,1],[0,2]],[[3984,3499],[3,-5],[1,-3],[0,-4],[-1,-5],[-1,-12],[-1,-1],[1,-4],[1,-3],[0,-1],[-1,-4],[-3,-7],[-1,-1],[1,-1],[0,-1],[0,-3],[1,0],[1,-1],[2,-4],[2,-2],[1,0],[0,-1],[1,-2],[3,-4],[1,-1],[2,-1],[0,-1],[0,-4],[-2,-4],[-1,-1],[-2,-2],[0,-3],[1,-3],[0,-9],[1,-2],[1,-6],[3,-7],[1,-2],[4,-5],[0,-1],[2,-1],[1,-1],[2,-2],[1,0],[2,-2],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[5,-1],[5,-2],[1,0],[3,-2],[3,-3],[1,-1],[0,-1],[4,-5],[7,-6],[1,-1],[1,-2],[1,-1],[0,-8],[0,-3],[-1,-5],[-1,0],[-1,-1],[0,-3],[1,-1],[5,-5],[1,0],[2,-2],[0,-1],[8,-1],[1,0],[6,-3],[1,0],[1,-1],[3,-2],[1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[-3,-4],[0,-1],[1,-1],[2,0],[4,1],[2,0],[3,0],[1,0],[4,-3],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[4,0],[3,2],[1,0],[4,3],[1,0],[2,0],[1,0],[1,-2],[1,-2],[1,-4],[-1,-3],[1,0],[0,-1],[-1,-1],[0,-3],[1,-2],[1,-1],[1,-2]],[[4115,3268],[-2,0],[-5,1],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,-2],[0,-3],[0,-3],[0,-1],[-2,-1],[-1,0],[-2,-2],[-1,-1],[-1,-3],[-1,-1],[-2,-2],[-2,-5],[-1,-1],[-3,-4],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[0,-1],[-1,-1],[0,-2],[-1,-2],[-3,-2],[-1,-2],[-1,-2],[-2,-2],[-3,-3],[-1,-2],[-1,-5],[0,-3],[0,-1],[-1,-1],[-2,-2],[-4,-2],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-9],[1,-2],[3,-6],[0,-1],[1,-1],[1,-2],[0,-2],[-2,0],[-1,0],[-5,-3],[-1,-5],[-1,-3],[-1,-3],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,-5],[0,-1],[0,-2],[1,-1],[2,-6],[-1,-2],[-3,-1],[-5,1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-4,-2],[-1,-1],[-7,-9],[-5,-10],[-1,-1],[-7,-6],[-2,-6],[-4,-4],[-7,0],[-4,0],[-6,-5],[-8,-4],[-5,-4],[0,-1],[0,-1],[-2,-3],[-5,-6],[-1,0],[-1,-1],[-2,0],[-3,0],[0,-1],[-13,-3],[-3,0],[-2,1],[-1,0],[0,1],[0,3],[-1,4],[-1,2],[0,1],[-1,2],[0,1],[-2,4],[-1,0],[0,1],[-2,0],[-4,3],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[-2,0],[-4,0],[-1,1],[-5,-1],[-1,-1],[-2,0],[-1,0],[-6,-1],[-4,-2],[-1,2],[-1,0],[-5,0],[-1,0],[0,-1],[-1,0],[-8,-6],[-1,0],[-2,-2],[-1,0],[-5,-1],[-2,0],[-8,0],[-3,-2],[-2,0],[-1,0],[-1,0],[-3,-2],[-6,0],[-1,0],[-4,0],[-1,0],[-1,-1],[-1,-1],[-3,-3],[0,-2],[0,-1],[0,-1],[2,-3],[0,-2],[-1,-1],[-5,1],[-2,-3],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-14],[0,-5]],[[3840,3032],[-7,0],[-12,-1],[-15,0],[-6,0],[-27,0],[-13,-1],[-26,0],[-5,0],[-22,-1],[-15,1],[-1,0],[-9,0],[0,12],[0,12],[0,3],[0,23],[0,4],[0,15],[0,6],[-1,0],[-2,0],[-2,0],[-1,0],[-8,-1],[-12,0],[-8,0],[-5,0],[-7,0],[-4,0],[-3,-1],[-10,0],[-8,0],[-2,0],[-6,0],[-12,0],[-2,0],[-1,0],[-11,0],[-5,0],[-2,0],[0,1],[-2,0],[-2,-1],[-2,0],[-27,0],[-6,0],[-7,0],[-13,1],[-13,0],[-7,0],[-2,0],[-3,0],[-1,0],[-8,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-7,0],[-4,0],[-5,0],[-3,0],[-3,0],[-1,0],[-10,0],[-4,0],[-8,0],[-2,0],[-5,0],[-9,0],[-4,0],[-3,0],[-6,0],[-1,0],[-8,0],[-12,0],[-5,0],[-2,0],[-12,0],[-12,0],[-4,0],[-8,0],[-10,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-6,0],[-1,0],[-6,0],[-1,0],[-12,0],[-21,1],[-4,0],[-3,0],[-9,0],[-1,0],[-6,0],[-6,-1],[-1,0],[-3,0],[-8,0],[-2,0],[-5,0],[-2,0],[-3,0],[-4,0],[-3,0],[-3,1],[-3,0],[-4,0]],[[3192,3104],[0,4],[0,2],[0,6],[0,16],[0,10],[0,11],[0,12],[0,11],[0,11],[0,4],[0,2],[0,4],[0,4],[0,3],[0,3],[0,1],[0,6],[0,12],[0,4],[0,4],[0,7],[0,4],[0,6],[-13,0],[-13,0],[-14,0],[-4,0],[-9,0],[-10,0],[-13,0],[-3,0],[-11,0],[-2,0],[-14,0],[-7,0],[-8,0],[-8,0],[-2,0],[-2,0],[-1,0],[-6,0],[-4,0],[-1,0],[-2,0],[-9,0],[-3,0],[-13,0],[-39,0],[-7,0],[-4,0],[-21,0],[-8,0],[-10,-1],[-23,0],[-7,0],[-4,0],[-10,0],[-2,0],[-9,0],[-20,0],[-12,0],[-11,0],[-4,0],[-6,0],[-14,0],[-6,0],[-4,0],[-2,0],[-9,0],[-10,0],[-6,0],[-2,0],[-8,0],[-6,0],[-6,0],[-8,0],[-3,0],[-2,0],[-7,0],[-5,0],[-8,0]],[[2717,3250],[0,23],[0,6],[0,8],[0,22],[0,3],[0,11],[1,13],[0,2],[0,5],[0,5],[-1,43],[0,6],[1,3],[0,3],[0,1],[-1,7],[0,5],[0,1],[1,9],[0,5],[0,15],[-1,24],[0,6],[0,2],[1,17],[0,9],[-1,15],[0,14],[0,10],[-5,0],[-5,0],[0,19],[0,1],[0,30],[0,18],[0,6],[0,14],[0,4],[0,15],[0,17],[0,3],[0,21],[0,7],[0,18],[0,2],[0,5],[0,5],[0,12],[0,4],[0,2],[0,7],[0,12],[0,3],[0,4],[0,6],[0,1],[0,13],[0,13],[0,9],[0,10],[0,3],[0,12]],[[1909,3841],[0,-10],[0,-3],[0,-4],[0,-3],[0,-1],[0,-4],[0,-5],[0,-4],[0,-16],[0,-9],[0,-16],[-1,-5],[1,-7],[0,-12],[0,-6],[0,-6],[0,-13],[0,-5],[0,-3],[0,-11],[0,-6],[0,-3],[0,-3],[0,-3],[0,-4],[0,-11],[0,-8],[0,-6],[0,-11],[0,-2],[0,-5],[0,-10],[0,-2],[0,-4],[0,-6],[0,-3],[0,-3],[0,-7],[0,-2],[0,-5],[0,-1],[0,-5],[0,-13],[0,-1],[0,-5],[0,-1],[0,-1],[0,-10],[0,-9],[0,-4],[4,0],[7,0],[3,0],[0,-21],[0,-3],[0,-11],[0,-13],[0,-4],[0,-7],[0,-14],[0,-5],[0,-13],[0,-7],[0,-12],[0,-3],[0,-9],[0,-14],[0,-9],[0,-14],[0,-36],[0,-25],[0,-4],[0,-1],[0,-6],[0,-14],[0,-24],[0,-13],[0,-3],[0,-9]],[[1923,3250],[-3,0],[-9,0],[-3,0],[-11,0],[-10,0],[-4,0],[-13,0],[-26,0],[-19,0],[-8,0],[-26,0],[-14,0],[-3,0],[-8,0],[-2,0],[-6,0],[-3,0],[-3,0],[-15,0],[-6,0],[-7,0],[-6,0],[-5,0],[-2,0],[-27,0],[-10,0],[-15,0],[-9,0],[-19,0],[-2,0],[-5,0],[-2,0],[-17,0],[-2,0],[-5,0],[-1,0],[-18,0],[-21,0],[-1,0],[-5,0],[-12,0],[-2,0],[-12,0],[-27,-1],[-8,0],[-2,0],[-12,0],[-8,0],[-9,0],[-5,0],[-8,0]],[[1447,3249],[-11,0],[-1,0],[-2,0],[-1,0],[-12,0],[-12,0],[-15,0],[-3,0],[-9,0],[-14,1],[-8,0],[-5,0],[-2,0],[-12,0],[-4,0],[-7,0],[-8,0],[-2,0],[-6,0],[-12,0],[-3,0],[-4,0],[-8,1],[0,11],[1,13],[0,24],[0,12],[0,12],[0,37],[0,12],[0,9],[0,4],[0,12],[0,2],[0,8],[0,4],[0,10],[0,15],[0,9],[0,5],[0,6],[0,15],[0,21],[0,13],[0,15],[0,7],[-1,17],[-7,0],[-4,0],[-4,0]],[[2717,3250],[-47,0],[-2,0],[-7,0],[-7,0],[-5,0],[-10,0],[-1,0],[-6,0],[-2,1],[-26,0],[-40,0],[-6,-1]],[[2558,3250],[-40,1],[-2,0],[-5,0],[-16,0],[-9,0],[-1,0],[-2,-1],[-2,0],[-20,0],[-6,0],[-3,0],[-6,0],[-20,0],[-2,0],[-3,0],[-3,0],[-2,0],[-13,1],[-3,0],[-33,-1],[-6,0],[-25,0],[-2,0],[-5,0],[-15,0],[-12,0],[-5,0],[-1,0],[-2,0],[-26,-1],[-27,0],[-12,0],[-14,1],[-12,0],[-14,0],[-12,0],[-1,0],[-14,0],[-8,0],[-4,0],[-9,0],[-7,0],[-4,0],[-8,0],[-13,0],[-4,0],[-23,0],[-1,0],[-25,0],[-27,1],[-1,0],[-7,-1],[-2,0],[-16,0],[-24,0],[-3,0],[-4,0],[-1,0],[-4,0],[-10,0],[-7,0],[-1,0],[-12,0],[-14,0]],[[5283,3791],[0,-5],[0,-3],[0,-17],[0,-12],[0,-12],[0,-6],[0,-19],[0,-3],[0,-10],[0,-8],[0,-1],[0,-2],[0,-28],[0,-9],[0,-2],[0,-7],[0,-2],[0,-13],[0,-8],[0,-4],[0,-5],[0,-5],[0,-2],[0,-8],[0,-5],[0,-2],[0,-5],[0,-6],[0,-6],[0,-3],[0,-2],[0,-22],[0,-6],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-21],[0,-13],[21,0],[6,0],[8,0],[7,0],[7,-1],[3,1],[4,0],[2,0],[3,-1],[15,0],[12,0],[2,0],[11,0],[4,0],[1,0],[7,0],[8,0],[8,0],[6,0],[3,0],[3,-1],[2,0],[7,0],[4,0],[0,-4],[0,-20],[0,-21],[0,-6],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-6],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-10],[0,-10],[0,-2],[0,-5],[1,-13],[0,-3],[0,-3],[0,-3],[0,-5],[0,-4],[0,-4],[0,-8],[0,-4],[0,-4],[0,-11],[0,-2],[0,-6],[0,-6],[1,-10],[0,-7],[0,-5],[0,-6],[0,-2],[0,-3],[0,-2],[1,-3],[0,-5],[0,-14],[1,-10]],[[5441,3249],[-15,0],[-12,0],[-7,1],[-23,0],[-3,0],[-3,0],[-4,0],[-3,1],[-3,0],[-10,0],[-11,1],[-1,0],[-1,0],[-10,0],[-2,0],[-3,0],[-3,0],[-7,0],[-16,0],[-22,0],[-20,1],[-6,0],[-2,0],[-12,0],[-6,0],[-2,0],[-3,0],[-2,0],[-16,0],[-18,0],[-2,0],[-15,-1],[-3,0],[-10,0],[-3,0],[-1,0],[-3,0],[-2,0],[-3,0],[-8,1],[-1,0],[-4,-1],[-3,0],[-1,0],[-7,0],[-3,0],[-1,0],[-1,0],[-7,0],[-1,0],[-6,0],[-6,0],[-1,0],[-6,0],[-11,0],[-1,0],[-8,0],[-2,0],[-31,0],[-13,0],[-1,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-5,0],[-13,0],[-10,0],[-12,0],[-19,0],[-9,0],[-4,0],[-12,0],[-2,0],[-6,0],[-2,1],[-7,-1],[-9,0],[-13,0],[-20,1],[-4,0],[-5,0],[-23,0],[-2,0],[-2,0],[-10,1],[-13,0]],[[4808,3254],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[0,2],[0,3],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,1],[0,4],[0,8],[0,4],[0,8],[0,8],[0,4],[0,2],[0,2],[0,2],[0,2],[0,3],[0,3],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,24],[0,13],[0,13],[0,25],[0,5],[0,1],[0,2],[0,1],[0,3],[0,3],[0,1],[0,8],[0,7],[0,5]],[[5670,3790],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[1,-2],[-1,-2],[-1,-1],[-2,-1],[-1,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-2,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-2],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-4],[2,-4],[0,-2],[2,-3],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-2,-6],[-1,0],[0,-1],[0,-1],[-1,-7],[-1,-3],[0,-6],[1,-2],[2,-5],[1,-2],[0,-2],[-2,-12],[0,-4],[0,-2],[0,-1],[1,-1],[0,-2],[1,-2],[1,0],[1,-2],[2,-1],[1,-1],[3,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[3,-1],[5,1],[2,-1],[3,0],[3,0],[4,-1],[2,0],[4,0],[2,0],[1,0],[3,0],[2,0],[1,-1],[1,0],[2,-1],[9,-4],[2,0],[7,-2],[5,-1],[2,0],[1,-1],[1,0],[1,0],[2,0],[2,1],[6,0],[8,1],[1,1],[2,0],[1,0],[2,1],[2,1],[1,0],[5,3],[1,0],[5,3],[3,0],[2,1],[1,0],[1,0],[1,1],[3,0],[4,0],[3,0],[1,0],[3,0],[1,-1],[2,-1],[1,0],[1,-1],[3,-2],[1,-2],[2,-1],[3,-3],[2,-3],[2,-2],[3,-2],[2,-1],[1,-1],[2,-1],[1,0],[0,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[2,-1],[1,-1],[2,-2],[2,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-2],[2,-1],[2,-2],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[2,-2],[1,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[1,-1],[2,-2],[2,-1],[0,-1],[3,-2],[1,-1],[5,-5],[1,0],[3,-3],[1,-2],[2,-3],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-3],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[2,-3],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[3,-3],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,-3],[1,-2],[0,-2],[1,-2],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[3,-1],[3,-2],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-2],[1,-2],[0,-2],[1,-1],[0,-2],[1,0],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-4],[-1,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,-2],[0,-3],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-3,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-3,-2],[-5,-3],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-1,0],[-3,-2],[-2,-3],[-1,-1],[-2,-2],[-1,-4],[-1,-3],[0,-1],[1,-3],[0,-2],[1,-4],[1,-2],[1,-2],[1,-5],[1,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[-1,-1],[-1,-2],[-1,-2],[-2,-4],[0,-1],[-2,-3],[-1,-1],[0,-1],[-2,-2],[-2,-3],[-1,-1],[-1,-1],[-2,-2],[-4,-3],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,-3],[-1,-1],[-2,-3],[-2,-2],[-3,-4],[-2,-2],[-2,-1],[-2,0],[-3,-2],[0,-1],[-2,-2],[-1,0],[-1,-1],[0,-1]],[[5794,3052],[-2,0]],[[5792,3052],[-1,0],[-2,0],[-2,0],[-1,0],[-22,1],[-7,0],[-11,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-9,0],[-16,-1],[-1,1],[-5,0],[-3,0],[-4,0],[-2,0],[-12,0],[-13,0],[-12,0],[-7,-1],[-5,1],[-3,0],[-13,0],[-4,0],[-9,0],[-10,0],[-2,0],[-6,0],[-1,0],[-7,0],[-6,0],[-20,0],[-10,0],[-2,0],[-2,0],[-2,0],[-4,0],[-6,0],[-4,0],[-8,0],[-5,1],[-6,0],[-4,0],[-3,0],[-3,0],[-1,0],[-1,0],[-3,0],[-3,0],[-5,0],[-1,0],[-2,0],[-1,0],[-1,0],[-8,0],[-7,0],[-1,0],[-4,0],[-2,0],[-4,0],[-11,0],[-1,0],[-3,0]],[[5441,3054],[0,2],[-1,3],[0,6],[0,3],[1,10],[0,4],[0,16],[0,5],[-1,13],[0,2],[0,2],[0,6],[0,4],[0,1],[1,4],[0,13],[1,21],[0,18],[0,4],[0,9],[0,4],[-1,4],[0,6],[0,6],[0,4],[0,3],[0,2],[0,2],[0,3],[0,4],[0,11]],[[1447,3249],[0,-7],[0,-10],[0,-4],[-1,-2],[-1,-10],[0,-12],[0,-1],[0,-9],[0,-7],[0,-9],[0,-8],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,-5],[0,-7],[0,-12],[0,-2],[0,-7],[0,-6],[1,-10],[0,-2],[0,-4],[0,-6],[0,-7],[0,-3],[0,-8],[0,-6],[0,-14],[0,-5],[0,-7],[0,-17],[0,-25],[0,-12],[0,-13],[0,-7],[-1,-16],[0,-1],[2,0],[17,0],[0,-6],[0,-20],[0,-5],[0,-2],[0,-3],[0,-2],[0,-3],[0,-10],[0,-6],[0,-18],[0,-13],[0,-4],[0,-4],[0,-11]],[[1464,2850],[-6,1],[-2,1],[-3,3],[-7,4],[-11,0],[-3,1],[-2,1],[-3,2],[-4,2],[-3,1],[-4,3],[0,1],[-1,4],[-3,4],[-3,1],[-2,0],[-10,0],[-1,0],[-3,3],[-4,3],[-18,0],[-3,1],[-2,3],[-8,-2],[-1,0],[-1,0],[-1,1],[-4,3],[-3,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,4],[-2,0]],[[1335,2899],[0,-1],[0,1]],[[1335,2899],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[-3,2],[-1,2],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-2,2],[-1,1],[0,1],[-1,2],[-1,0],[-2,2],[-1,1],[-3,1],[-2,1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-3,1],[-2,1],[0,-1],[-1,-1],[-1,0],[-5,-1],[-5,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[1,1],[1,1],[-2,2],[-2,1],[-5,3],[-1,0],[-3,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-5,2],[-4,0],[-2,2],[1,2],[-4,7],[-2,5],[-2,2],[-3,6],[-4,0],[-1,1],[0,1],[-1,1],[0,1],[1,4],[1,0],[0,1],[1,0],[1,1],[2,3],[1,1],[0,1],[0,1],[0,1],[-5,2],[-3,2],[-1,-1],[-2,0],[-4,-1],[0,1],[-3,0],[-1,0],[-1,-1],[-5,2],[-1,1],[-4,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-5,5],[-4,-3],[-10,1],[-6,5],[-4,3],[-1,1],[-2,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-4,1],[-2,2],[-2,1],[-9,0],[-2,-2],[-2,-1],[0,1],[-1,0],[-1,3],[-1,1],[-2,1],[-2,0],[-6,0],[-3,-2],[-5,-2],[-3,1],[-6,-1],[-1,0],[-5,0],[-1,-1],[-1,0],[-2,0],[-3,0],[-5,-1],[-2,1],[-2,1],[-2,0],[0,1],[-10,9],[-2,2],[0,1],[-1,3],[-2,0],[-5,1],[-3,0],[-3,0],[-2,2],[-8,0],[-5,0],[-9,0],[-6,-1]],[[1014,3006],[-1,39],[0,4],[0,7],[0,5],[-1,1],[-5,11],[-4,9],[-1,0],[-4,4],[-4,5],[-3,13],[0,1],[-6,12],[-1,1],[-2,4],[0,12],[-1,4],[-1,4],[-2,6],[-3,3],[-2,3],[-12,11],[-9,8],[-4,3],[-6,0],[-3,2],[-1,0],[-4,4],[-5,4],[-2,1],[-2,0],[-5,3],[-7,3],[-7,1],[-3,1],[-5,2],[-3,0],[-4,2],[-5,2],[-1,0],[-6,3],[-5,1],[-3,1],[-4,1],[-7,6],[-4,0],[-1,1],[-9,6],[-2,2],[-1,1],[-5,3],[-4,2],[-5,3],[-10,5],[-1,0],[-6,3],[-5,2],[-7,2],[-1,1],[-11,0],[-3,1],[-2,0],[-6,0],[-1,0],[-2,0],[-5,0],[-5,0],[-2,1],[-7,0],[-6,-1],[-9,0],[-2,0],[-5,2],[-8,0],[-1,1],[-6,0],[-1,1],[0,-1],[-1,1],[-1,1],[-12,11],[-2,3],[-9,11],[-2,3],[-4,6],[-1,1],[-1,4],[-10,14],[-11,15],[-5,7],[-4,3],[-1,2],[-2,3],[-2,5],[-3,9],[1,1],[0,2],[-1,4],[-2,2],[-2,2],[-2,3],[-1,7],[0,4],[-2,4],[-1,3],[-1,5],[-3,5],[-2,6],[-1,2],[-1,2],[-8,17],[-5,9],[1,1],[-2,5],[-1,2],[-6,6],[-4,5],[-2,4],[-1,1],[-1,1],[-7,6],[-1,2],[-1,2],[-1,2],[-1,3],[-5,7],[-6,9],[-5,5],[0,5],[0,1],[-1,2],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-7,5],[-1,1],[-3,5],[-3,4],[-5,7],[1,1],[-2,3],[-1,2],[-1,1],[-2,0],[-2,1],[-4,5],[-1,1],[-13,9]],[[4808,3254],[0,-2],[0,-4],[0,-4],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-6],[0,-7],[0,-2],[0,-1],[0,-2],[0,-7],[0,-4],[0,-2],[0,-4],[0,-3],[0,-5],[0,-6],[0,-4],[0,-5],[0,-3],[0,-3],[0,-3],[0,-7],[0,-4],[0,-3],[0,-3],[0,-1],[0,-4],[0,-3],[0,-6],[0,-6],[-1,-7],[0,-4],[0,-2],[0,-6],[0,-12],[0,-12],[0,-13],[0,-4],[0,-6],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-4],[0,-3],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-7],[0,-4],[0,-3],[0,-1],[0,-9],[-1,-5],[0,-4],[0,-3],[0,-4],[0,-2],[0,-2],[0,-3],[0,-1],[0,-4],[0,-3],[0,-1],[0,-2],[0,-6],[0,-2]],[[4805,2967],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0]],[[4793,2968],[-2,2],[-2,4],[-2,2],[-3,3],[-3,3],[-3,0],[-2,0],[-1,0],[-5,2],[-4,3],[-3,3],[-3,4],[-7,10],[-1,8],[0,5],[-1,0],[0,1],[-1,9],[0,6],[-4,7],[0,1],[-3,4],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,3],[-1,0],[0,2],[0,2],[-1,1],[0,1],[-1,0],[-2,2],[-2,1],[-4,0],[-2,-4],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-5,-4],[-4,-2],[-2,1],[-2,0],[-1,0],[-11,0],[-3,0],[-4,0],[-1,0],[-4,0],[-2,0],[-5,0],[-7,1],[-2,0],[-5,3],[-3,1],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-5,0],[-2,1],[-1,1],[-2,0],[-5,-1],[-3,1],[-5,0],[-1,0],[-2,-1],[-1,0],[-10,-1],[-1,0],[-12,0],[-6,0],[-1,0],[-4,2],[-1,0],[0,1],[-4,3],[-2,1],[0,1],[-2,2],[-1,4],[-2,2],[-1,0],[-3,0],[-2,0],[-2,-2],[-3,-4],[-2,-2],[-2,-1],[-6,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,1],[-2,0],[-6,1],[-6,0],[-2,2],[-1,0],[-4,0],[-1,0],[-7,0],[-1,0],[-6,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-5,-2],[-6,-3],[-3,-2],[-3,-1],[-5,0],[-2,1],[-4,2],[-8,2],[-2,1],[-5,3],[-8,6],[-12,7],[-4,2],[-5,2],[-4,0],[-4,2],[-2,1],[-5,4],[-2,2],[-1,0],[-3,2],[-2,3],[-1,3],[-2,3],[-7,6],[-3,2],[-6,6],[-1,6],[-3,3],[-1,0],[-4,0],[-1,1],[-2,0],[-3,1],[-6,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,2],[-5,1],[-9,1],[-1,-1],[-2,0],[-1,1],[-4,1],[-1,1],[-4,4],[-2,2],[-4,2],[-3,2],[-1,1],[0,1],[-3,3],[-3,4],[-1,2],[-2,5],[-2,4],[0,3],[0,4],[-1,1],[0,2],[-4,2],[-3,2],[-12,6],[-1,0],[-4,3],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[-2,5],[0,2],[1,1],[-1,1],[-2,3],[-1,1],[0,1],[-4,1],[-1,1],[-7,2],[-5,1],[-2,0],[-2,-1],[0,-1],[-2,-1],[-5,0],[-2,0],[-3,0],[-1,0],[-3,2],[-3,0],[-1,-1],[-2,-2],[-2,-5],[-5,-4],[-1,-1],[-1,0],[-3,0],[-1,1],[-1,0],[0,1],[-13,13],[-1,0],[-2,2],[-3,2],[-6,3],[-2,3],[-1,0],[-1,2],[-2,3],[0,2],[-1,0],[0,1],[-1,1],[-3,3],[-1,1],[-1,0],[-7,1],[-2,1],[-6,-1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-6],[0,-2],[-2,-1],[-2,-1],[-2,1],[-2,2],[0,2],[-1,2],[1,3],[1,2],[2,2],[1,1],[1,1],[2,2],[0,3],[0,1],[-2,1],[-3,1],[-2,-1],[-1,0],[-4,-2],[-1,0],[-8,0],[0,1],[-1,0],[-3,1],[-3,4],[-2,2],[-2,5],[-1,1],[-1,1],[-2,3],[-2,0],[-1,1],[-2,1],[-2,1],[-2,1],[-3,4],[-4,5],[-2,3]],[[4793,2968],[0,-1],[-1,-2],[0,-2],[1,0],[0,-1],[2,-1],[3,0],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,0],[-2,-1],[-1,-3],[-1,-3],[0,-2],[-1,-2],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,-3],[1,-2],[0,-1],[0,-3],[-3,-3],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[-1,1],[-1,3],[-1,3],[0,1],[0,4],[-1,1],[-9,2],[-1,0],[-1,-1],[-2,-3],[0,-1],[-1,-2],[-3,-3],[-2,0],[-3,1],[-2,0],[-1,0],[-8,0],[-1,-1],[0,-4],[-2,-2],[-1,-1],[-3,-1],[-1,-1],[-1,-1],[-2,-3],[-3,0],[-2,0],[-3,0],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-3,-3],[-4,-3],[-3,-3],[-1,-1],[-4,-3],[-1,0],[-2,0],[-2,0],[-1,1],[0,4],[-2,3],[-6,-1],[-1,0],[0,-1],[0,-1],[-3,-4],[-1,0],[-1,1],[1,4],[-1,0],[-2,0],[-3,-3],[-1,0],[-2,0],[-2,0],[-3,0],[0,1],[-2,-1],[-1,0],[-2,-1],[0,-2],[4,-4],[0,-2],[-2,-2],[-2,0],[-5,0],[-1,0],[-1,1],[-1,2],[-1,3],[-1,3],[0,1],[-8,-1],[-2,-1],[0,-1],[-4,-5],[-1,-2],[1,-3],[-4,-3],[-1,-1],[-5,0],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-2,-4],[0,-3],[1,-1],[0,-2],[1,-2],[7,-11],[6,-5],[1,-1],[3,-1],[4,-4],[3,-3],[0,-1],[0,-3],[0,-4],[1,-5],[0,-2],[-2,-2],[-2,-2],[-3,-1],[-2,-2],[-1,-1],[-2,-4],[-5,-3],[-6,-3],[-7,-3],[-3,0],[-2,1],[-3,0],[-3,0],[-3,-3],[-1,0],[-6,-3],[-2,0],[-1,1],[-1,0],[-2,0],[-3,-2],[-1,-4],[-1,-2],[-4,-5],[-2,-2],[-1,0],[-3,-2],[-4,-3],[-1,-1],[-2,-2],[-2,-3],[-1,-3],[-8,-15],[-4,-3],[-2,-2],[-3,-4],[-1,-2],[-2,-3],[-4,-5],[-4,-7],[0,-2],[-1,0],[-1,-3],[-2,-8],[0,-5],[-1,-1],[-1,-1],[0,-6],[-1,-2],[0,-5],[0,-2],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,-3],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,0],[-1,0],[-4,0],[-1,0],[-3,-2],[-2,0],[-3,1],[-1,1],[-3,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-3,0],[-1,-1],[-1,0],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-3],[-3,-4],[-3,-3],[0,-1],[0,-1],[1,-1],[2,0],[1,-1],[-1,-3],[-2,-1],[-1,0],[-2,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[-1,1],[0,-5],[0,-7],[0,-4],[0,-1],[0,-5],[0,-4],[0,-2],[0,-1],[0,-6],[0,-3],[0,-4],[0,-4],[0,-3],[0,-2],[0,-2],[0,-4],[0,-10],[0,-7],[0,-17],[0,-12],[1,-12],[0,-14],[-1,-4],[0,-3],[0,-2],[0,-2]],[[4477,2512],[-9,0],[-7,0],[-2,0],[-21,0],[-14,0],[-19,1],[-1,0],[-1,0],[-1,0],[-18,0],[-13,0],[-13,0],[-6,-1],[-8,0],[-7,0],[-17,0],[-13,0],[-41,1],[-15,0],[-12,0],[-21,0],[-5,0],[-8,0],[-5,0],[-24,0],[-9,0],[-6,0]],[[4161,2513],[-27,0],[-27,0],[-12,0],[-13,0],[-6,0],[-14,0],[-7,0],[-26,1],[-11,0],[-3,0],[-3,0],[-9,0],[-6,0],[-11,0],[-15,0],[-8,-1],[-4,0],[-2,0],[-2,0],[-4,1],[-7,0],[-10,0],[-6,0],[-4,0],[-21,0],[-6,0],[-3,0],[-4,0],[-5,0],[-9,0],[-4,0],[-6,1],[-7,0],[-5,0],[-8,0]],[[3846,2515],[0,7],[0,3],[0,8],[1,6],[-1,10],[0,4],[0,7],[0,17],[0,2],[0,9],[0,6],[0,8],[0,6],[0,2],[0,4],[0,2],[0,2],[0,9],[0,17],[0,9],[0,8],[0,1],[0,2],[0,8],[0,9],[0,2],[0,3],[0,1],[0,1],[0,3],[0,2],[0,12],[0,6],[1,24],[0,13],[0,14],[0,7],[0,4],[0,3],[0,7],[0,8],[0,12],[0,6],[0,12],[0,3],[0,9],[0,25],[0,31],[0,5],[0,5],[-1,9],[0,2],[0,3],[0,2],[0,27],[0,5],[-1,9],[-1,0],[-3,0],[0,1],[0,2],[-1,4],[0,11],[0,10],[0,23],[0,9],[0,2],[0,5],[0,9]],[[5441,3054],[0,-3],[0,-6],[0,-9],[0,-6],[0,-17],[0,-8],[0,-2],[0,-11],[0,-4],[0,-1],[0,-11],[0,-32],[0,-12],[0,-11],[-1,-14],[0,-24],[0,-3],[0,-2],[0,-7],[0,-9],[0,-3],[0,-31],[0,-4],[0,-4],[0,-10],[-1,-11],[1,-9],[0,-10],[0,-3],[0,-12],[-1,-1],[0,-3],[0,-1]],[[5439,2760],[-1,0],[-2,0],[-3,0],[-6,0],[-4,0],[-2,0],[-2,0],[-5,0],[-8,0],[-2,0],[-2,0],[-2,0],[-8,0],[-11,0],[-8,0],[-5,0],[-15,0],[-5,0],[-8,0],[-12,0],[-4,0],[-10,0],[-6,0],[-4,0],[-3,0],[-2,0],[-1,0],[-3,0],[-3,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-5,1],[-2,0],[-4,0],[-3,0],[-2,0],[-9,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-6,0],[-7,0],[-4,0],[-1,0],[-1,0],[-2,0],[-7,0],[-4,0],[-2,0],[-8,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-3,0],[0,-10],[0,-4],[0,-2],[0,-7],[0,-2],[0,-5],[0,-5],[0,-3],[0,-3],[0,-3],[0,-3],[0,-6],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-3],[0,-2],[0,-4],[0,-3],[0,-4],[0,-2],[0,-3],[0,-4],[1,-2],[0,-4],[0,-7],[0,-3],[0,-3],[0,-2],[0,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-3],[0,-3],[0,-7],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1]],[[5173,2610],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-7,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-4,0],[-3,0],[-4,0],[-1,0],[2,11],[0,7],[0,2],[0,3],[-1,4],[-2,7],[-1,1],[0,3],[-1,1],[2,5],[0,1],[0,7],[0,1],[1,1],[0,3],[1,3],[3,7],[0,5],[1,6],[0,1],[0,3],[0,4],[-2,3],[0,4],[0,2],[0,1],[1,2],[1,11],[0,4],[0,1],[0,2],[-1,3],[-3,2],[-1,1],[-5,3],[-2,3],[-2,2],[-3,11],[-2,2],[-1,1],[-2,2],[-1,1],[0,3],[0,4],[-1,1],[-2,3],[-1,1],[-2,4],[1,2],[-1,2],[-1,1],[-3,8],[-1,3],[-1,1],[-2,1],[-2,0],[-2,1],[-2,2],[-2,1],[-1,1],[-2,0],[-4,1],[-4,2],[-1,0],[-5,6],[-6,5],[-2,1],[-5,2],[-9,6],[-2,2],[-1,0],[-3,4],[-2,6],[-4,7],[-4,5],[-2,3],[-4,2],[-10,3],[-1,0],[-2,0],[-2,1],[-6,2],[-1,1],[-1,1],[-7,7],[-2,1],[-2,1],[-2,1],[-3,2],[0,1],[-1,2],[-5,4],[-5,2],[-5,3],[-5,2],[-1,1],[-7,5],[-3,3],[-5,10],[-1,4],[-2,2],[-2,4],[-4,5],[-5,3],[-3,1],[-4,0],[-4,-1],[-3,-2],[-3,0],[-2,0],[-8,5],[-1,1],[-7,0],[-5,4],[-5,5],[-3,2],[-6,0],[-2,-1],[-4,-1],[-3,0],[-2,0],[-2,0],[-3,1],[-3,2],[-5,5],[-4,3],[0,1],[-4,4],[-1,5],[-1,2],[-3,4],[-2,2],[-2,1],[-4,1],[-1,1],[-3,1],[-3,2]],[[3192,3104],[0,-4],[0,-3],[0,-6],[0,-1],[0,-6],[0,-6],[0,-11],[0,-5],[0,-7],[0,-14],[0,-2],[0,-9],[0,-6],[0,-4],[0,-3],[0,-6],[0,-6],[0,-6],[0,-19],[0,-6],[0,-4],[0,-2],[0,-2],[0,-10],[6,0],[1,0],[0,-4],[0,-7],[0,-9],[0,-3],[0,-14],[0,-12],[0,-7],[1,-4],[0,-6],[0,-6],[0,-9],[0,-16],[0,-25],[0,-11],[0,-7],[0,-6],[0,-20],[0,-1],[0,-4],[0,-1],[0,-5],[0,-6],[0,-12],[0,-25],[0,-24],[0,-25],[0,-4],[0,-21],[0,-5],[0,-2],[0,-5],[0,-10],[0,-3],[0,-7],[0,-9],[0,-5],[0,-3],[0,-3],[0,-5],[0,-6],[0,-4],[0,-9],[0,-13],[-1,-10],[0,-7],[0,-7],[0,-3],[1,-7],[-1,-25],[0,-17],[0,-7],[0,-11],[0,-9],[0,-17],[0,-13],[0,-15],[0,-3],[0,-2],[0,-4],[0,-13],[0,-12],[0,-25]],[[3199,2366],[-20,0],[-1,0],[-3,0],[-3,0],[-8,0],[-6,0],[-5,0],[-6,0],[-7,0],[-13,0],[-7,0],[-21,0],[-5,0],[-7,0],[-5,0],[-15,0],[-7,0],[-3,0],[-9,0],[-7,0],[-4,0],[-8,1],[-4,0],[-1,0],[-7,0],[-18,-1],[-29,0],[-10,0],[-18,0],[-7,0],[-17,0],[-2,0],[-1,0],[-4,0],[-2,0],[-4,0],[-9,0],[-2,0],[-2,0],[-5,0],[-4,0],[-13,-1],[-4,0],[-3,0],[-6,0],[-12,0],[-6,0],[-8,0],[-3,0],[-5,0],[-10,0],[-6,0],[-3,0],[-16,0],[-10,0],[-13,0],[-4,0],[-4,0],[-5,0],[-11,0],[-6,0],[-10,0],[-8,0],[-9,0],[-9,0],[-7,0],[-10,0],[-10,0],[-13,0],[-3,0],[-2,0],[-5,0],[-4,0],[-11,0],[-4,0],[-10,0],[-3,0],[-9,0],[-2,0],[-3,0],[-3,0],[-3,0],[-4,0],[-13,0],[-2,0],[-11,0]],[[2567,2365],[-1,2],[0,9],[0,3],[0,8],[0,2],[0,5],[0,3],[0,3],[0,2],[0,3],[0,3],[0,6],[0,10],[0,2],[0,5],[0,7],[0,1],[0,4],[0,2],[0,4],[0,4],[0,3],[0,3],[0,4],[0,4],[1,7],[0,6],[0,7],[0,3],[0,9],[0,3],[0,3],[0,8],[0,3],[0,6],[0,15],[0,5],[0,3],[0,3],[0,1],[0,3],[0,6],[0,4],[0,7],[0,3],[0,1],[0,1],[1,5],[0,3],[0,3],[0,2],[0,2],[0,20],[0,2],[0,19],[0,6],[0,7],[0,3],[0,2],[1,3],[0,4],[0,6],[0,6],[0,4],[0,6],[0,5],[0,3],[0,12],[0,3],[0,2],[0,6],[0,3],[0,5],[0,3],[0,3],[0,5],[0,1],[0,6],[0,1],[0,2],[0,8],[0,4],[0,4],[0,6],[0,4],[0,6],[0,9],[0,6],[0,7],[0,5],[0,8],[0,4]],[[2569,2808],[0,10],[0,6],[0,6],[0,1],[0,4],[0,10],[0,3],[0,10],[0,12],[0,12],[0,13],[0,6],[0,6],[0,13],[0,5],[0,6],[0,4],[0,2],[1,3],[0,10],[-1,2],[0,3],[-5,0],[-6,0],[0,15],[0,4],[0,7],[0,23],[0,9],[0,2],[0,7],[0,6],[0,6],[0,7],[0,13],[0,5],[0,15],[0,4],[0,17],[0,2],[0,1],[0,4],[0,7],[0,2],[0,2],[0,3],[0,6],[0,6],[0,13],[0,4],[0,8],[0,25],[0,6],[0,3],[0,13],[0,2],[0,11],[0,4],[0,9],[0,4],[0,7],[0,9],[0,4]],[[2569,2808],[-5,0],[-1,0],[-18,0],[-2,1],[-4,0],[-2,0],[-2,0],[-3,0],[-7,0],[-3,0],[-2,0],[-4,0],[-26,0],[-4,0],[-2,0],[-21,0],[-2,0],[-18,0],[-3,0],[-3,0],[-3,0],[-4,0],[-2,0],[-8,0],[-8,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-4,0],[-5,0],[-4,0],[-7,0],[-19,-1],[-4,0],[-20,0],[-3,0],[-4,0],[-7,0],[-4,0],[-4,0],[-5,0],[-2,0],[-3,0],[-24,0],[-5,-1],[-5,0],[-9,0],[-6,0],[-1,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-6,0],[-3,0],[-4,0],[-4,0],[-5,0],[-5,0],[-2,0],[-3,0],[-4,0],[-6,0],[-5,0],[-5,0],[-3,0],[-3,0],[-4,0],[-8,0],[-18,0],[-25,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-4,0],[-2,0],[-8,1],[-5,0],[-1,0],[-4,0],[-8,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-5,0],[-1,0],[-2,0],[-5,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-4,0],[-1,0],[-2,0],[-3,0],[-7,0],[-1,0],[-4,0],[-3,0],[-3,0],[-2,0],[-7,0],[-6,0],[-2,0],[-17,0],[-5,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-22,0],[-19,-1],[-8,1],[-7,0],[-6,0],[-2,0],[-9,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-8,0],[-2,0],[-8,0],[-2,0],[-6,0],[-3,0],[-3,0],[-4,0],[-4,0],[-5,0],[-2,0],[-4,0],[-5,0],[-7,0],[-6,0],[-2,0],[-2,0],[-2,0],[-2,0],[-6,0],[-6,0],[-9,0],[-2,0],[-7,0],[-1,0],[-4,0],[-5,0],[-3,0],[-2,0],[-3,0],[-1,0],[-3,0],[-4,0],[-17,0],[-25,0],[-2,0],[-6,0],[-3,0],[-6,0],[-3,0],[-2,0],[-5,0],[-2,0],[-4,0],[-1,0],[-21,0],[-1,0],[-4,1],[-1,0],[-1,0],[-3,0],[-1,0],[-6,0],[-2,0],[-3,0],[-2,0],[-2,0],[-25,0],[-1,0],[-5,0],[-21,0],[-19,0],[-2,0]],[[1550,2808],[0,1],[-2,1],[-2,2],[-1,1],[-2,2],[-1,0],[0,1],[-3,1],[-3,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,0],[-5,3],[-1,0],[-4,2],[-2,1],[-1,1],[-1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,1],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-3,2],[-2,1],[-2,1],[-2,1]],[[3846,2515],[-26,0],[-5,0],[-4,0],[-9,0],[-3,0],[-5,-1],[-13,0],[-14,0],[-26,0],[-14,0],[-2,0],[-4,0],[-8,0],[-12,0],[-9,-1],[-4,0],[-3,0],[-10,0],[-13,1],[-9,-1],[-3,0],[-5,0],[-3,1],[-29,0],[-4,0],[-8,0],[-46,0],[-6,1],[-16,0],[-2,0],[-2,0],[0,-12],[0,-13],[0,-10],[0,-5],[0,-9],[0,-10],[0,-3],[0,-9],[0,-3],[0,-13],[0,-9],[0,-1],[0,-2],[0,-17],[0,-8],[0,-2],[0,-5],[0,-4],[0,-4],[0,-1],[0,-9]],[[3529,2366],[-14,0],[-7,0],[-6,0],[-19,0],[-2,0],[-5,0],[-11,0],[-10,0],[-6,0],[-6,0],[-5,0],[-9,0],[-2,0],[-4,0],[-4,0],[-2,0],[-3,0],[-11,0],[-7,0],[-7,0],[-18,0],[-1,0],[-6,-1],[-7,1],[-2,0],[-7,0],[-4,0],[-7,0],[-6,0],[-8,0],[-12,0],[-7,0],[-6,0],[-14,0],[-7,0],[-3,0],[-12,0],[-3,0],[-20,0],[-7,0],[-7,0],[-10,0],[-6,0],[-3,0],[-7,0]],[[5792,3052],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-4],[0,-3],[0,-5],[1,-3],[0,-3],[1,-1],[1,-1],[0,-1],[1,-1],[1,-3],[1,-1],[2,-3],[2,-2],[2,-3],[0,-3],[1,-3],[0,-4],[0,-3],[-2,-4],[-3,-4],[-3,-3],[-2,-3],[-1,-2],[0,-4],[1,-5],[0,-1],[0,-3],[1,-6],[1,-5],[1,-3],[-1,-6],[0,-2],[1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[1,-3],[1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[0,-2],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-3,-3],[-5,-4],[-1,-1],[-1,-2],[-1,-1],[-2,-9],[-1,-3],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-4],[0,-8],[0,-1],[3,-4],[1,-1],[6,-5],[1,-1],[2,-2],[1,-1],[3,-3],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[-2,-3],[0,-5],[-1,-3],[0,-7],[0,-1],[1,-7],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,-3],[1,0],[0,-1],[1,0],[1,-1],[1,-4],[0,-3],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-3,-2],[-1,-1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-2],[-3,-1],[-1,-1],[-1,-1],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-3,-2],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-2],[2,-3],[1,-2],[2,-3],[3,-3],[3,-3],[2,-2],[2,-2],[1,0],[1,-1],[2,-1],[2,-1],[3,-2],[3,-2],[3,-2],[1,-1],[1,-1],[1,-1],[3,-2],[2,-2],[2,-3],[2,-2],[1,-2],[1,0],[1,-2],[1,-2],[2,-3],[0,-2],[0,-2],[1,-2],[-1,-3],[-1,-1],[-1,-4],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-9],[1,-3],[0,-1],[0,-1],[1,-3],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-2],[1,-8],[0,-4],[1,-4],[1,-2],[5,-4],[1,0],[1,0],[2,-2],[2,-5],[2,-4],[4,-6],[0,-1],[0,-2],[1,-1],[0,-2],[1,-4],[0,-1],[1,-2],[1,-5],[1,-5],[0,-3],[0,-2],[0,-2],[0,-2],[-2,-11],[-1,-4],[-3,-17],[-3,-12],[0,-2],[-1,-2],[-1,-2],[-3,-2],[-3,-1],[-3,-2],[-2,-2],[-7,-4],[-1,-2],[-1,-4],[0,-5],[0,-4],[1,-4],[1,-2],[0,-1],[3,-5],[2,-4],[0,-2],[4,-5],[1,-2],[2,-3],[0,-1],[1,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-3],[-2,-4],[-2,-5],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[1,-2],[0,-3],[1,-3],[0,-3],[1,-3],[1,-3],[0,-3],[1,-2],[0,-3],[0,-3],[-1,-3],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-4,-6],[-1,-3],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-3,-5],[-2,-2],[0,-1],[-2,-3],[-1,-1],[-2,-3],[-1,-6],[0,-5],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-7],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[-2,-3],[0,-1],[-1,0],[-1,-2],[-2,-2],[-1,-2],[-1,0],[0,-1],[-2,-1],[-3,-3],[-2,-2],[-1,-3],[-2,-3],[-1,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-3],[-2,-4],[0,-1],[0,-3],[-1,-3],[0,-3],[-1,-3],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-6],[1,-3],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1]],[[5719,2120],[0,-4],[-1,-2],[-5,1],[-4,1],[-3,0],[-4,1],[-5,2],[-11,3],[-2,0],[-8,-2],[-5,-1],[-6,0],[-2,0],[-3,0],[-4,0],[-4,0],[-1,2],[-2,7],[-2,2],[-5,3],[-4,5],[0,2],[-1,2],[-1,1],[-2,3],[-3,3],[-4,0],[-3,-2],[-4,0],[-9,9],[-3,1],[-2,0],[-6,8],[-1,1],[-5,7],[-12,1],[-3,1],[-7,-1],[-4,0],[-6,-5],[-19,-10],[-1,-1],[-9,2],[-8,1],[-9,-2],[-4,0],[-13,4],[-1,0],[-7,3],[-1,0],[-3,1],[-2,0],[-1,1],[-7,0],[-5,-1],[-12,-6],[-1,0],[-1,0],[-1,1],[-3,0],[-11,9],[0,1],[-1,1],[-3,8],[-1,2],[0,2],[-1,4],[0,6],[0,1],[1,5],[4,8],[4,4],[1,3],[8,11],[4,7],[0,2],[-4,12],[0,1],[0,1],[0,4],[-2,7],[-3,12],[3,19],[1,4],[0,1],[0,6],[0,3],[0,6],[0,4],[-2,6],[-4,4],[-2,12],[0,6],[-1,5],[0,2],[-3,11]],[[5442,2362],[8,2],[4,0],[2,0],[1,0],[3,0],[5,0],[1,0],[7,0],[13,0],[0,8],[0,4],[0,5],[0,4],[0,3],[0,1],[0,7],[0,2],[0,1],[0,2],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,4],[0,3],[0,7],[0,3],[0,7],[0,2],[0,4],[0,3],[-1,2],[0,3],[0,3],[0,1],[0,1],[0,6],[0,2],[0,1],[0,2],[0,4],[0,2],[0,4],[0,3],[0,4],[0,2],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,5],[0,7],[0,2],[0,2],[0,1],[0,7],[0,3],[0,3],[0,3],[0,2],[0,2],[0,5],[0,7],[0,3],[0,3],[0,3],[0,3],[0,4],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,3],[0,2],[0,5],[0,3],[0,3],[0,2],[0,1],[0,1],[0,2],[0,3],[0,14],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,4],[0,3],[0,2],[0,3],[0,2],[0,5],[0,3],[0,1],[0,16],[0,19],[1,12],[0,2],[0,3],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,5],[0,2],[0,3],[0,8],[0,2],[0,5],[-1,6],[0,3],[-6,0],[-4,0],[-2,0],[-5,0],[-2,0],[-4,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-8,0],[-1,0]],[[1550,2808],[0,-2],[1,-2],[1,-2],[1,-1],[2,-3],[2,-1],[2,-2],[1,-1],[1,-2],[2,-5],[0,-1],[1,-4],[1,-1],[1,0],[4,-2],[1,-1],[1,-4],[1,-1],[2,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,-3],[2,-3],[1,-1],[1,0],[9,-2],[4,-4],[1,-1],[0,-1],[-1,-2],[-1,-1],[-2,-2],[2,-2],[1,-2],[1,0],[5,-3],[1,0],[3,-3],[2,-2],[14,-19],[13,-11],[9,-9],[2,-2],[10,-10],[5,-4],[11,-11],[14,-13],[9,-8],[5,-5],[10,-9],[9,-9],[2,-2],[11,-11],[2,0],[1,-1],[2,0],[1,-1],[3,0],[0,-1],[5,-2],[2,-1],[0,-1],[1,-2],[1,-3],[0,-1],[0,-1],[2,-2],[1,-2],[1,0],[0,-1],[1,-1],[2,-3],[3,-2],[5,-6],[3,-2],[1,-2],[1,-1],[1,-2],[1,-3],[4,-7],[5,-3],[0,-1],[1,0],[1,0],[3,-2],[2,-1],[1,0],[11,-1],[1,0],[11,-16],[5,-6],[1,-2],[5,-8],[3,-4],[-1,-8],[0,-10],[0,-3],[0,-1],[1,-1],[2,-2],[4,-4],[6,-6],[3,-4],[4,-3],[6,-6],[5,-5],[12,-3],[4,-1],[4,-2],[6,-4],[0,-1],[1,-2],[1,-1],[2,-1],[3,0],[1,0],[2,1],[1,2],[0,3],[0,2],[0,1],[2,1],[8,-10],[1,0],[1,1],[3,2],[5,3],[4,-1],[4,-3],[2,-2],[4,-3],[2,-2],[1,0],[6,-5]],[[1937,2441],[0,-3],[0,-2],[0,-2],[0,-8],[0,-3],[0,-9],[-1,-5],[0,-4],[0,-3],[0,-5],[0,-7],[0,-3],[0,-10],[0,-6],[0,-6],[-4,0],[-2,0],[-2,0],[-1,0],[-3,0],[-4,0],[-8,0],[-8,0],[-2,0],[-3,0],[-2,0],[-16,0],[-3,0],[-4,0],[-2,0],[-15,0],[-5,1],[-6,0],[-2,0],[-20,0],[-5,0],[-6,0],[-7,0],[-12,0],[0,-10],[0,-2],[0,-3],[0,-9],[0,-5],[0,-11],[0,-5],[0,-4],[0,-3],[0,-7],[0,-2],[0,-9],[0,-3],[-1,-13],[0,-12],[0,-4],[0,-2],[0,-19],[0,-12],[0,-1],[0,-11],[-9,0],[-3,0],[-4,0],[-11,-1],[-8,0],[-18,0],[-27,0],[-12,0],[-14,0],[-12,0],[-5,0],[-4,0],[-5,0],[-10,0],[-15,0],[-2,0],[-1,0],[-20,0],[-4,0],[-11,0],[-1,0],[-14,0],[-5,0],[-4,0],[-11,0],[-6,0],[-26,0],[-14,0],[-6,0],[-6,0],[-10,0],[-17,0],[-8,0],[-19,0],[-15,0],[-5,0],[-3,0],[-4,0],[-14,1],[-2,0],[-10,0],[-13,0],[-5,0],[-9,0],[-6,0],[-5,0],[-2,0],[-13,0],[-8,0],[-17,0],[-5,0],[-21,0],[-11,0],[-1,0],[-7,0],[-8,0],[-5,0],[-6,0],[-15,0],[-26,-1],[-7,1],[-7,-1],[-13,0],[-2,0],[-5,0],[-20,0],[-23,0],[-3,0],[-9,0],[-12,0],[-6,0],[-24,0],[-2,0],[-4,1],[-5,0],[-17,0],[-9,0],[-16,0],[-5,0],[-10,1]],[[1016,2220],[0,3],[0,19],[-1,199],[0,15],[0,55],[0,49],[0,82],[-1,21],[0,20],[0,214],[0,109]],[[5173,2610],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,0],[1,0],[2,0],[3,0],[0,-1],[0,-3],[0,-2],[0,-3],[0,-1],[1,-4],[0,-5],[0,-4],[0,-3],[0,-4],[0,-8],[0,-9],[0,-1],[0,-2],[0,-6],[0,-3],[0,-3],[0,-6],[0,-7],[0,-3],[0,-3],[0,-13],[0,-5],[0,-2],[0,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-5],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[3,-2],[1,-1],[2,-2],[2,-4],[1,-2],[0,-6],[0,-16],[0,-2],[0,-4],[1,-4],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-5],[0,-1],[0,-3],[0,-8],[0,-3],[0,-1],[1,0],[2,-3],[1,-1],[2,-2],[1,-1],[0,-1],[1,0],[2,-3],[3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[3,-7],[1,-1],[1,0],[1,0],[0,-1],[3,0],[3,-1],[5,0],[1,0],[0,-2],[-1,-2],[0,-3],[-1,-2]],[[5235,2360],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[3,-5],[-1,-2],[-3,-2],[-2,-2],[-4,-1],[-2,-2],[-2,-2],[-2,-4],[-5,-5],[-5,-4],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-11],[0,-4],[-1,-2],[-6,-15],[-4,-6],[-5,-1],[-3,0],[-3,0],[-2,-1],[-1,-4],[3,-8],[-1,-1],[-1,-1],[-6,-1],[-3,-2],[-3,-2],[-4,-3],[-7,-9],[-5,-5],[-4,-2],[-4,-3],[-2,-4],[-2,-1],[-2,-1],[-5,-1],[-7,-2],[-3,-2],[-6,-2],[-7,0],[-6,-1],[-2,0],[-1,-1],[-2,-1],[-2,-6],[-5,-2],[-4,-2],[-1,0],[-2,-1],[-6,-3],[-3,-2],[-8,-3],[-6,-2],[-11,0],[-1,0],[-4,0],[-3,-1],[-2,-2],[-3,-2]],[[5038,2192],[-3,-3],[-3,-3],[-3,0],[-4,2],[-4,3],[-3,3],[-1,1],[-1,0],[-3,-3],[-3,-3],[-1,-3],[-2,-1],[-2,0],[-3,1],[-4,3],[-4,1],[-2,0],[-4,-2],[-9,-3],[-2,-1],[-2,0],[-1,2],[-3,10],[-1,7],[-1,2],[-1,1],[-2,1],[-4,0],[-5,-2],[-3,-1],[-3,3],[-1,1],[-4,6],[-3,3],[-5,3],[-4,1],[-2,1],[-3,0],[-2,0],[-1,-1],[-2,0],[-16,6],[-7,4],[-1,0],[-2,-1],[-1,-1],[-2,-7],[-2,-3],[-1,-1],[-4,-2],[-4,-1],[-5,0],[-2,0],[-2,1],[-5,4],[-3,0],[-7,-1],[-9,-2],[-2,0],[-4,0],[-1,1],[0,1],[-3,3],[-6,-4],[-5,-1],[-1,1],[-1,4],[-2,2],[-2,2],[-2,0],[-3,-2],[-1,-1],[0,-2],[-1,-3],[-1,-1],[-2,0],[-3,1],[-5,0],[-3,-1],[-6,-3],[-6,-2]],[[4791,2212],[3,12],[0,12],[0,2],[0,5],[0,12],[0,7],[0,1],[0,13],[0,2],[0,1],[0,11],[0,4],[0,5],[0,8],[0,2],[0,3],[0,3],[0,3],[0,2],[0,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,3],[0,1],[0,3],[0,4],[0,2],[0,6],[0,3],[0,3],[-3,1],[-1,0],[-3,-1],[-17,0],[-1,0],[-2,0],[-5,0],[-1,0],[-3,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,1],[-5,0],[-4,0],[-4,0],[-4,0],[-1,0],[-2,0],[-3,0],[-6,0],[-1,0],[-4,0],[-3,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[-3,0],[-7,0],[-2,-1],[-1,1],[-2,0],[-7,-1],[-3,0],[-5,0],[-5,0],[-10,0],[-4,0],[-4,0],[-3,0],[-1,0],[-3,0],[-4,0],[-10,0],[-8,0],[-2,0],[-5,0],[-15,0],[-3,0],[-4,0],[-2,0],[-7,0],[-12,0],[-4,0],[-17,0],[-2,0],[-5,0],[-8,0],[-11,0],[-13,0],[0,24],[0,1],[0,2],[0,10],[0,11],[0,1],[0,17],[0,8],[0,19],[0,5],[0,11],[0,5],[0,28],[0,1],[0,1],[0,4]],[[2567,2365],[-5,0],[-7,0],[-4,0],[-3,0],[-9,0],[-7,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-12,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-7,0],[-2,0],[-6,0],[-18,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-5,0],[-4,0],[-2,0],[-7,-1],[-5,0],[-6,0],[-4,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,0],[-2,0],[-1,0],[-3,0],[-5,0],[-4,0],[-3,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-4,0],[-6,0],[-6,0],[-3,0],[-4,0],[-8,0],[-6,0],[-7,0],[-11,0],[-2,0],[-10,0],[-2,0],[-2,0],[-7,0],[-4,0],[0,-3],[0,-3],[0,-4],[0,-6],[0,-3],[0,-4],[0,-2],[0,-2],[0,-5],[0,-4],[0,-3],[0,-5],[0,-2],[0,-1],[0,-3],[0,-3],[-1,-4],[0,-5],[0,-2],[0,-6],[0,-4],[1,-3],[-1,-3],[0,-8],[1,-1],[-1,-7],[0,-4],[0,-2],[1,-3],[0,-1],[0,-4],[0,-1],[0,-3],[0,-4],[0,-6],[0,-3],[0,-4],[0,-3],[-1,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-4],[0,-2],[0,-4],[0,-2],[0,-2],[1,-1],[0,-3],[0,-2],[0,-5],[0,-13],[0,-6],[0,-7],[0,-12],[0,-2],[0,-3],[0,-4],[0,-6],[0,-8]],[[2264,2130],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,1],[-2,0],[-1,1],[-1,2],[1,1],[0,1],[-1,2],[0,2],[0,3],[0,3],[0,2],[1,2],[2,1],[-1,2],[-1,1],[-2,2],[0,1],[-1,2],[-1,0],[0,2],[-2,1],[-1,1],[-1,0],[-2,0],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,-2],[-1,-1],[-1,-2],[1,-4],[0,-2],[-3,-2],[-2,0],[-3,0],[-1,1],[0,1],[-1,1],[0,3],[1,2],[-2,3],[-1,0],[-2,0],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-2,1],[-2,1],[-2,2],[0,2],[0,2],[1,0],[1,1],[8,1],[0,2],[-1,1],[-2,2],[0,1],[0,1],[-1,4],[1,2],[26,3],[9,5],[-5,8],[-14,9],[-1,1],[-5,4],[-2,1],[-1,0],[-12,2],[-2,0],[-6,1],[-2,0],[-3,0],[-1,3],[1,1],[1,4],[1,4],[0,1],[0,1],[-5,9],[-3,2],[-8,3],[-6,4],[-2,1],[-1,0],[-3,1],[-4,0],[-5,8],[-2,3],[-3,7],[-1,2],[-2,4],[-26,5],[1,6],[-1,0],[-8,4],[-13,6],[-4,2],[-6,7],[-7,9],[0,1],[-7,6],[-2,1],[-3,3],[-3,3],[-2,2],[-2,6],[-1,7],[-5,3],[-4,3],[-3,4],[-4,5],[-4,6],[-1,1],[-7,5],[-9,7],[-7,5],[-2,1],[-6,6],[-2,2],[-3,2],[-8,0],[-32,3],[-4,0],[-4,6],[-4,5],[-1,9],[0,2],[-1,6],[0,1],[-4,4],[-7,7],[-1,2],[-1,0],[-1,2],[-2,2],[-1,1]],[[5442,2362],[-1,2],[-3,4],[-3,2],[-6,4],[-4,3],[-5,1],[-5,7],[0,1],[-5,6],[-1,5],[-3,4],[-3,5],[-4,6],[-4,1],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[0,1],[0,5],[-2,0],[-4,0],[0,-1],[0,-5],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-4,0],[-5,0],[-1,-1],[-2,-3],[-2,-3],[0,-7],[-1,-2],[-5,-6],[-3,-2],[-1,0],[0,-1],[-9,-9],[-3,-3],[-3,-2],[-6,-6],[-2,-1],[-7,-1],[-1,0],[-5,-2],[-1,0],[0,-1],[-1,0],[-2,-3],[-2,-2],[-8,2]],[[4161,2513],[-1,-12],[0,-16],[0,-3],[0,-5],[0,-6],[0,-7],[0,-3],[0,-1],[0,-12],[0,-5],[0,-3],[0,-10],[0,-7],[1,-33],[0,-21],[0,-3],[2,0],[1,0],[0,-7],[0,-1],[0,-6],[0,-1],[-1,-2],[1,-6],[0,-2],[0,-2],[-1,-24],[0,-12],[0,-12],[1,-3],[0,-9],[0,-8],[0,-5],[-1,-12],[0,-5],[1,-8],[0,-2],[0,-4],[-1,-4],[0,-13],[1,-1],[-1,-9],[0,-18],[0,-7],[0,-3],[0,-4],[0,-9],[0,-2],[0,-2],[0,-8],[0,-3],[0,-17],[0,-10],[0,-7],[0,-12],[0,-7],[0,-5],[0,-8],[0,-4],[0,-4],[0,-9]],[[4163,2069],[-9,0],[-5,0],[-3,0],[-9,0],[-27,0],[-8,0],[-4,0],[-13,0],[-1,0],[-10,0],[-5,0],[-12,0],[-13,0],[-9,0],[-4,0],[-11,0],[-3,0],[-2,0],[-2,0],[-7,1],[-27,0],[-19,0],[-7,0],[-19,0],[-1,0],[-2,0],[-4,0],[-11,0],[-2,0],[-20,0],[-10,0],[-2,0],[-5,0],[-6,0],[-15,0],[-2,0],[-5,0],[0,-13],[0,-3],[0,-2],[0,-8],[0,-3],[-1,-21],[0,-25],[0,-12],[0,-3],[0,-12],[0,-10],[0,-12],[0,-2],[0,-4],[0,-1],[0,-5],[0,-2],[0,-7],[0,-4],[-13,0],[-7,0],[-2,0],[-5,0],[-12,0],[-14,0],[-8,0],[-3,0],[-5,0],[-1,0],[-1,0],[-8,0],[-6,1],[-9,0],[-18,0],[-6,0],[-16,0],[-3,0],[-3,0],[-7,-1],[-10,0],[-19,0],[-7,0],[-6,0],[-6,0],[-5,0],[-6,0],[-3,0],[-1,0],[-1,0],[-5,0],[-6,0],[-19,0],[-4,0],[-4,0],[-8,0],[-5,0],[-5,0],[-21,0],[-19,0],[-7,0],[0,5],[1,7],[-1,5],[0,7],[0,13],[0,5],[0,2],[0,1],[0,28],[0,11],[0,1],[0,13],[0,1],[0,15],[0,3],[0,3],[0,4],[0,24]],[[3534,2069],[0,1],[0,1],[0,6],[0,3],[0,2],[0,3],[0,9],[0,15],[0,5],[0,3],[0,8],[0,19],[0,18],[0,19],[0,4],[0,8],[0,14],[0,3],[0,6],[0,2],[0,10],[0,2],[1,11],[-1,3],[0,5],[0,7],[0,12],[0,17],[0,8],[0,3],[0,12],[0,9],[0,4],[0,7],[0,3],[0,6],[0,5],[0,9],[1,7],[0,8],[-4,0],[-2,0]],[[4791,2212],[-5,0],[-3,-1],[-7,-1],[-2,1],[-2,0],[-1,0],[-3,-3],[-4,-1],[-1,0],[-2,-3],[-2,-2],[-1,0],[-7,7],[-12,-5],[-2,-1],[-11,-1],[-5,-1],[-1,-1],[-3,-3],[-1,-3],[0,-5],[0,-10],[-2,-1],[-3,1],[-4,2],[-6,0],[-4,0],[-3,-2],[-2,-1],[-1,-1],[0,-1],[0,-1],[2,-2],[2,-2],[1,-1],[3,-3],[-6,-7],[-3,-3],[-2,-1],[-6,-2],[-8,-1],[-3,-1],[-5,-7],[-2,-3],[1,-2],[1,0],[12,-7],[1,-2],[0,-1],[0,-2],[-1,-3],[-4,-2],[-1,0],[-5,6],[-2,1],[-1,0],[-1,0],[0,-2],[0,-2],[0,-4],[-1,-4],[-3,-3],[-7,-7],[-2,-3],[0,-1],[1,-2],[2,-4],[1,-2],[0,-3],[-5,-7],[0,-1],[0,-4],[1,-1],[4,0],[3,1],[1,0],[1,0],[0,-2],[-3,-5],[0,-5],[1,-2],[1,-3],[2,-3],[7,-7],[0,-2],[-1,-1],[-2,-1],[-3,-1],[-5,-5],[-3,-1],[-1,-1],[0,-5],[-2,-1],[-5,0],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-3,-1],[-3,0],[-1,0],[-4,4],[-2,0],[-1,-1],[-1,-4],[-1,-1],[-2,-2],[-2,-1],[-1,0],[-2,2],[-2,6],[-2,2],[-2,0],[-3,1],[-5,-2],[-4,-3],[-5,-2],[-2,-2],[-1,-1],[-1,-4],[-1,-2],[-6,-7],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-4,-4],[-3,-4],[-2,-3],[-2,-1],[-2,-1],[-2,-1],[-4,0],[-3,0],[-3,0],[-2,0],[-3,-1],[-2,-1],[-7,-5],[-1,-1],[0,-3],[3,-3],[4,-2],[0,-3],[-8,-4],[-5,1],[-1,1],[-3,0],[-2,-5],[-9,-11],[-2,-1],[-5,-1],[-6,0],[-2,0],[-2,-1],[-3,-1],[-2,0],[-2,0],[-3,0],[-2,0],[-1,-2],[1,-3],[1,-2],[2,-2],[1,-1],[2,-1],[-1,-3],[-1,-2],[-2,0],[-2,0],[-2,0],[-1,2],[0,3],[-2,2],[-4,2],[-2,0]],[[4475,1938],[0,5],[0,3],[0,8],[0,7],[1,3],[-1,6],[0,4],[0,21],[-13,0],[-13,-1],[-13,0],[-16,0],[-10,0],[-5,0],[-8,0],[-15,1],[-12,0],[-13,-1],[-4,0],[-9,0],[-2,0],[-5,0],[-6,0],[-5,0],[-6,1],[0,6],[0,5],[0,13],[0,7],[0,2],[0,10],[0,6],[0,7],[0,11],[0,7],[-5,0],[-15,0],[-1,0],[-5,0],[-10,0],[-2,0],[-15,0],[-11,0],[-15,0],[-6,0],[-8,0],[-12,0],[-9,0],[-2,0],[-2,0],[-1,0],[-12,0],[-13,0],[-13,0]],[[2264,2130],[3,2],[2,3],[3,0],[1,0],[3,-2],[2,-2],[0,-1],[7,-5],[2,-2],[1,-1],[1,-3],[2,-4],[0,-1],[1,0],[2,-2],[1,-2],[2,-1],[2,0],[1,1],[2,0],[3,1],[2,0],[1,0],[2,1],[5,2],[2,0],[1,0],[1,-1],[4,-1],[2,-1],[5,-2],[1,0],[3,-2],[2,-2],[1,0],[1,-2],[1,0],[2,-2],[0,-4],[1,-2],[1,-1],[1,-1],[2,0],[1,2],[0,3],[1,1],[2,0],[2,-2],[3,-2],[4,-3],[2,-1],[2,-1],[1,-1],[1,-2],[3,-2],[1,-1],[3,-1],[1,-1],[2,-2],[0,-1],[-1,-1],[-1,-2],[-3,-3],[0,-1],[0,-1],[1,0],[1,-3],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[1,-1],[2,0],[4,-1],[1,0],[3,2],[1,1],[2,-1],[0,-1],[-1,-4],[-1,-1],[-1,-3],[1,-1],[1,0],[0,-1],[3,-2],[1,0],[1,0],[2,-2],[2,-1],[3,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-2],[1,-1],[0,-1],[1,-1],[1,0]],[[2423,2037],[-1,-11],[0,-2],[0,-28],[0,-4],[0,-8],[0,-4],[0,-12],[0,-6],[0,-9],[0,-4],[0,-6],[0,-8],[0,-16],[0,-7],[0,-11],[0,-7],[0,-9],[0,-7],[0,-7],[0,-2],[0,-13],[1,-12],[-1,-6],[0,-8],[0,-10],[0,-3],[0,-11],[0,-11],[0,-15],[0,-5],[0,-1],[0,-3],[-8,0],[-1,0],[-3,0],[-7,0],[-7,0],[-1,0],[-8,0],[-2,0],[-2,0],[-2,0],[-5,0],[-6,0],[-13,0],[-8,0],[-2,-1],[-3,0],[-14,1],[-6,0],[-7,0],[-6,0],[-3,0],[-17,0],[-11,0],[-3,0],[-6,0],[-7,0],[-13,0],[-6,0],[-3,0],[-4,0],[-19,0],[-7,0],[-11,0],[-2,0],[-9,0],[-1,0],[-4,0],[-12,0],[-13,1],[-26,0],[-14,0]],[[2120,1772],[-12,0],[0,19],[0,5],[0,7],[0,6],[0,37],[0,14],[0,9],[0,2],[0,10],[0,8],[0,8],[0,15],[0,9],[-13,0],[-14,0],[-25,1],[-15,-1],[-2,0],[-2,0],[-8,0],[-13,0],[-13,0],[-30,0],[-2,0],[-4,0],[-17,0],[-26,0],[-4,0],[-23,1],[-26,0],[-7,0],[-5,0],[-14,0],[-27,0],[-5,0],[-10,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-10,0],[-16,0],[-8,0],[-9,0],[-10,0],[-13,0],[-13,0],[-27,0],[-3,0],[-4,0],[-19,0],[-5,0],[-8,0],[-9,0],[-4,0],[-11,0],[-15,0],[-6,0],[-4,-1],[-1,0],[-15,0],[-26,0],[-27,0],[-19,0],[-7,0],[-3,0],[-22,1]],[[1478,1922],[-2,0],[-4,0],[-4,0],[-3,0],[-3,0],[-2,0],[-5,0],[-3,0],[-10,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-3,0],[-3,0],[-4,0],[-5,1],[-2,0],[-7,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-3,0],[-3,0],[-1,0],[-4,0],[-4,0],[-1,0],[-4,0],[-2,0],[-1,0],[-3,0],[-4,0],[-4,0],[-2,0],[-1,0],[-9,0],[-6,0],[-2,0],[-3,0],[-3,0],[-9,0],[-2,0],[-1,0],[-10,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-2,0],[-15,0],[-5,-1],[-6,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-12,0],[-1,0],[-6,0],[-6,0],[-1,0],[-7,0],[-1,0],[-6,0],[-2,0],[-3,0],[-6,0],[-3,0],[-2,0],[-2,0],[-7,0],[-8,0],[-25,0],[-9,0],[-13,0],[-5,0],[-2,0],[-4,0],[-13,0],[-1,0],[-4,1],[-2,0],[-12,0],[-14,0],[-8,0],[-2,0],[-4,0],[-3,0],[-4,0],[-5,0],[-11,0],[-2,0],[-3,0]],[[1015,1923],[0,2],[0,49],[0,12],[0,14],[0,71],[0,35],[1,90],[0,24]],[[5719,2120],[2,-2],[0,-1],[2,-1],[2,-2],[4,-4],[4,-3],[15,-7],[4,-2],[2,-1],[4,-2],[1,0],[1,-1],[3,-2],[10,-8],[8,-5],[2,-1],[1,0],[1,-1],[2,0],[1,0],[5,-2],[9,-5],[3,-2],[3,-2],[3,-2]],[[5811,2064],[0,-3],[0,-2],[0,-1],[0,-3],[0,-1],[0,-3],[0,-5],[0,-8],[0,-6],[0,-2],[0,-5],[0,-2],[0,-4],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[-1,-13],[1,-2],[0,-4],[0,-6],[0,-2],[0,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-12],[0,-3],[0,-5],[0,-7],[0,-3],[0,-3],[0,-6],[0,-5],[-14,0],[-2,0],[-5,0],[-2,0],[-3,0],[-2,0],[-7,0],[-4,0],[-8,0],[-5,0],[-13,0],[-2,0],[-5,0],[-6,0],[0,-2],[0,-22],[0,-12],[0,-9],[0,-4],[0,-2],[0,-5],[0,-17],[0,-10],[0,-2],[0,-4],[0,-9],[0,-4],[0,-5],[0,-2],[0,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[0,-5],[0,-1],[0,-4],[0,-3],[0,-3],[0,-3],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-4,0],[-17,0],[-2,0],[-3,0],[-4,0],[-10,0],[-9,0],[-3,0],[-11,0],[-28,0],[-2,0],[-12,0],[-6,0],[-6,0],[-8,0],[-7,0],[-2,1],[-7,-1],[0,-17],[0,-7],[0,-5],[0,-2],[0,-6],[0,-1],[1,-2],[-1,-3],[-3,-1],[-2,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,1],[-1,0],[-6,2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-3],[-1,-1],[-3,0],[-2,2],[0,2],[1,1],[0,1],[-1,5],[-1,2],[-3,1],[-1,0],[-3,1],[-3,-2],[-3,0],[-3,0],[-6,1],[-1,1],[-2,2],[-4,2],[-3,1],[-3,0],[-2,0],[-17,-2],[-2,-2],[-2,-1],[-2,0],[-4,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,1],[-2,0],[-1,0],[-2,1],[-2,0],[-1,1],[-1,2],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-3,0],[-1,1],[-2,0],[-1,0],[-1,1],[0,-2],[-1,-3],[0,-2],[0,-18],[0,-24],[0,-4],[1,-9],[0,-12]],[[5415,1652],[-5,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-10,0],[-3,0],[-2,0],[-3,0],[-5,0],[-2,0],[-2,0],[-9,0],[-2,0],[-3,0],[-2,0],[-6,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-1,0],[-3,0],[-2,0],[-6,0],[-7,0],[-6,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-4,0],[-9,0],[-4,0],[-4,0],[-3,0],[-2,0],[-2,0],[-5,0],[-5,0],[-2,0],[-1,0],[-6,0],[-3,0],[-2,0],[-3,0],[-2,1],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-1,0],[-2,0],[-4,0],[-4,0],[-3,0],[-2,0],[-7,0],[-4,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[1,5],[0,2],[0,2],[0,2],[0,3],[0,9],[0,2],[0,7],[0,2],[0,3],[0,8],[0,2],[0,9],[0,6],[0,6],[0,4],[0,3],[0,5],[0,6],[0,6],[0,6],[0,10],[0,3],[0,4],[0,7],[0,1]],[[5103,1775],[4,0],[0,12],[0,12],[0,6],[0,19],[0,2],[0,15],[0,4],[0,1],[0,2],[0,2],[0,3],[0,8],[0,8],[0,2],[0,5],[0,5],[0,4],[0,12],[0,13],[0,12],[-7,0],[-6,0],[-6,0],[-7,0],[-7,0],[-7,0],[-5,0],[-7,0],[0,12],[0,5],[0,8],[0,5],[0,6],[0,6],[0,8],[0,6],[0,7],[0,11],[0,2],[0,10],[0,11],[0,3],[0,2],[0,4],[0,4],[0,2],[0,3],[0,7],[0,3],[0,2],[0,5],[0,2],[0,5],[0,7],[0,2],[-5,0],[-2,0],[-3,0],[-3,0],[0,19],[0,2],[0,3],[0,4],[0,7],[0,2],[0,4],[0,8],[0,10],[0,2],[0,3],[0,5],[0,5],[0,7],[0,3],[0,1],[0,13],[-1,1],[0,1],[0,3],[0,2],[0,9],[0,4],[-3,4]],[[3534,2069],[-3,0],[-2,0],[-1,0],[-2,0],[-5,0],[-13,0],[-26,0],[-27,-1],[-13,0],[-13,0],[-26,0],[-11,0],[-7,0],[-8,0],[-7,0],[-6,0],[0,-15],[0,-1],[0,-8],[0,-1],[0,-24],[1,-6],[0,-19],[0,-4],[0,-6],[0,-11],[0,-4],[0,-5],[0,-21],[0,-18],[0,-6],[0,-5],[0,-2],[0,-3],[0,-3],[0,-3],[0,-8],[0,-25],[0,-2],[0,-14],[0,-8],[0,-7],[0,-4],[0,-5],[0,-9],[0,-3],[0,-3],[0,-8],[0,-4],[0,-7],[0,-24],[6,0],[0,-22],[0,-1],[0,-4],[0,-4],[0,-17],[0,-7],[1,-18],[-1,-24],[1,-20],[-1,-5],[0,-6],[0,-2],[0,-17]],[[3371,1625],[-1,0],[-8,0],[-2,0],[-8,0],[-7,0],[-8,1],[-3,0],[-17,0],[-3,0],[-21,0],[-9,0],[-17,0],[-2,0],[-14,0],[-10,0],[-3,0],[-8,0],[-2,0],[-10,0],[-2,0],[-7,0],[-12,0],[-4,0],[-1,0],[-4,0],[-19,0]],[[3169,1626],[-1,2],[-4,5],[-15,3],[-8,7],[0,2],[-1,9],[-9,4],[-1,1],[-3,8],[-1,5],[-1,1],[0,1],[-5,0],[-7,3],[-10,5],[-2,0],[-4,2],[-4,3],[-5,6],[-10,-2],[-3,-1],[-3,1],[-12,6]],[[3060,1697],[-4,3],[-2,3],[-4,5],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,3],[-2,3],[-1,2],[0,2],[-2,2],[-1,1],[-1,1],[-3,0],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-1],[-2,0],[-1,0],[-1,1],[0,2],[2,2],[0,1],[-1,3],[-1,1],[-1,1],[0,1],[-2,1],[-2,1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-5,-2],[-6,-2],[-6,1],[-5,1],[-4,0],[-2,1],[-1,2],[-4,6],[-1,1],[-3,2],[-6,3],[-4,1],[-37,19],[0,1],[-3,2],[-1,1],[-1,1],[-17,10],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-4,0],[-22,-1],[-3,0],[-5,2],[-9,3],[0,1],[-1,0],[-2,0],[-7,4],[-2,0],[-3,2],[-1,1],[-3,2],[-8,4],[-4,2],[-11,4],[-4,6],[-5,3],[-2,2],[-4,3],[-4,3],[-1,-1],[-6,-3],[-1,0],[-10,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,1],[-4,-1],[-2,0],[-1,1],[-1,0],[-1,3],[1,2],[2,2],[1,1],[2,0],[2,1],[3,0],[2,1],[1,1],[-1,2],[-2,0],[-4,4],[-2,1],[-6,6],[-7,6],[-7,0],[-5,1],[-5,13],[-16,6],[-1,0],[-15,12],[-3,2],[-4,4],[-3,2],[-3,4],[-1,0],[-5,6],[-3,1],[-1,0],[-3,1],[-2,1],[-4,1],[-14,5],[-6,5],[-2,1],[-10,9],[-11,10],[-36,32],[-16,13],[0,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-3,-2],[-3,-1],[-8,-4],[-5,-2],[-2,-1],[-1,0],[-2,-1],[-2,1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-4,0],[-3,0],[-1,1],[-2,0],[-3,0],[-2,0],[-3,1],[-2,0],[-2,2],[-4,4],[-1,2],[-1,1],[-7,7],[-11,17],[1,8],[1,3],[0,1],[-3,5],[-1,2],[-1,0],[0,1],[-4,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-4,1],[-2,1],[-2,1],[-1,1],[-2,0],[-2,0],[-1,0],[-2,1],[-4,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,-1],[-2,-1],[-1,1],[-3,1],[-2,1],[-1,1]],[[5103,1775],[-3,0],[-6,0],[-13,0],[-3,0],[-1,0],[-10,0],[-5,0],[-1,-1],[-2,0],[-11,0],[-2,0],[-6,1],[-3,0],[-9,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-8,0],[-3,0],[-4,0],[-2,0],[-3,0],[-4,0],[-5,0],[-11,-1],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-11,0],[-2,0],[-4,0],[-2,0],[-2,0],[-5,0],[-11,0],[-2,0],[-1,0],[-2,0],[-7,0],[-3,0],[-2,0],[-7,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-10,0],[-6,0],[-3,0],[-4,0],[-2,0],[-8,0],[-2,0],[-11,0],[-3,0],[-3,0],[-10,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-5,0],[-7,0],[-2,0],[-5,0],[-1,0],[-1,0]],[[4790,1774],[-3,0],[-7,0],[-3,0],[-4,0],[-2,0],[-5,0],[-2,0],[-11,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-6,0],[-2,0],[-9,0],[-3,0],[-4,0],[-3,0],[-1,0],[-2,0],[-15,0],[-27,0],[-2,0],[-24,0],[-13,0],[-15,0],[-12,0],[-7,0],[-1,0],[-3,0],[-8,0],[-8,0],[-13,0],[-9,0],[-16,-1],[-3,0],[-1,0],[-4,0],[-5,0],[-1,0],[-13,0],[-10,0],[-3,0],[-11,0],[-2,0],[-6,0],[-6,0],[-14,0],[-9,0],[-4,0],[-13,0],[-7,0],[-3,0],[-4,0],[-12,0],[-1,0],[-3,0],[-10,0],[-8,0],[-6,0],[-6,0],[-4,0],[-3,0],[-5,0],[-1,0],[-2,0],[-4,0],[-1,0],[-26,0]],[[4291,1773],[0,3],[0,3],[1,3],[1,1],[2,2],[2,2],[2,1],[3,1],[1,0],[3,-2],[1,-2],[0,-3],[-1,-2],[0,-3],[1,-1],[2,0],[2,0],[4,6],[0,8],[-1,1],[-2,1],[-2,0],[-2,0],[-2,0],[-1,2],[0,4],[1,3],[1,2],[1,2],[2,3],[2,1],[2,2],[2,1],[0,2],[-1,1],[-1,2],[-2,1],[-2,0],[-2,-1],[-2,0],[-1,1],[-2,2],[2,3],[1,1],[1,1],[3,1],[2,1],[0,4],[0,2],[0,5],[1,2],[0,1],[0,3],[0,2],[-1,1],[-2,0],[-1,0],[-2,0],[1,1],[4,8],[1,1],[4,6],[0,1],[3,0],[4,1],[2,0],[2,0],[1,1],[0,5],[1,1],[2,2],[1,1],[1,2],[1,1],[0,1],[1,2],[9,-3],[2,-1],[1,0],[7,5],[1,0],[0,2],[0,1],[3,3],[1,2],[1,2],[4,7],[0,2],[0,3],[0,2],[1,2],[2,1],[3,-1],[1,-1],[8,5],[2,-1],[3,-8],[9,3],[8,6],[4,3],[3,2],[3,3],[2,5],[1,1],[2,0],[2,0],[1,-1],[3,0],[5,3],[4,1],[6,-1],[2,-1],[3,-2],[1,-3],[1,-3],[0,-1],[2,0],[4,4],[2,1],[2,0],[4,2],[4,4],[2,4],[4,0],[1,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[1,-3],[5,4],[3,2],[1,0],[2,2],[-1,2],[-2,2],[-1,2],[-2,0],[-4,-1],[-1,1],[0,2],[1,0],[2,1],[2,0]],[[4291,1773],[0,-3],[-1,-3],[-1,-2],[1,-1],[4,0],[2,1],[2,0],[2,0],[2,0],[1,-3],[1,-2],[1,-2],[-2,-2],[0,-3],[0,-2],[1,-1],[1,0],[2,-1],[2,-1],[1,-2],[1,-1],[3,-1],[1,0],[2,1],[2,0],[2,0],[1,-3],[1,-3],[0,-8],[0,-1],[-1,-3],[-1,-2],[-1,-6],[1,-1],[0,-4],[1,-1],[-2,-2],[-1,-1],[-2,-2],[0,-1],[0,-1],[0,-2],[1,-3],[-1,-4],[-2,-1],[-1,-3],[-3,-8],[-2,-2],[-4,-1],[-2,0],[-3,-2],[0,-2],[-3,-5],[0,-4],[0,-2],[0,-1],[0,-6],[-3,-5],[-3,-4],[-3,0],[-4,1],[-3,3],[-2,1],[-3,0],[-2,-2],[-4,-9],[4,0],[2,0],[1,-1],[3,-2],[2,-3],[1,0],[-1,-1],[-1,-2],[-1,-3],[-4,-3],[-4,1],[-3,1],[-1,-2]],[[4268,1630],[-9,-4],[-1,0],[-2,0],[-28,0],[-45,0],[-7,0],[-12,0],[-12,0],[-33,0],[-5,0],[-11,0],[-30,0],[-13,0],[-6,0],[-10,1],[-1,0],[-2,0],[-7,0],[-11,0],[-2,0],[-6,0],[-6,-1],[-10,0],[-4,0],[-12,0],[-21,0],[-6,1],[-17,-1],[-4,0],[-2,0],[-3,0],[-13,0],[-11,0],[-2,0],[-7,0],[-11,0],[-3,0],[-2,0],[-3,0],[-16,0],[-3,0],[-3,0],[-2,0],[-8,0],[-5,1],[-2,-1],[-12,0],[-7,0],[-2,0],[-4,0],[-1,0],[-6,0],[-6,0],[-13,0],[-8,0],[-1,0],[-4,0],[-6,0],[-9,0],[-2,0],[-9,0],[-7,1],[-19,-1],[-1,0],[-12,0],[-4,0],[-9,0],[-3,1],[-2,-1],[-8,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-6,0],[-2,0],[-5,0],[-4,0],[-2,0],[-5,0],[-2,0],[-26,0],[-11,0],[-4,0],[-11,0],[-10,0],[-5,0],[-11,0],[-25,0],[-6,0],[-5,0],[-2,0],[-12,0],[-2,0],[-5,0],[-9,0],[-11,0],[-21,-1],[-6,0],[-5,0],[-21,0],[-6,0],[-19,0],[-7,0],[-7,0],[-2,0],[-3,0],[-11,0],[-11,0]],[[6443,1622],[-1,0],[-10,0],[-2,0],[-2,0],[-3,0],[-19,0],[-5,1],[-1,0],[-1,0],[-2,-1],[-2,1],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-5,0],[-1,0],[-2,0],[-7,0],[-5,0],[-5,0],[-4,0],[-8,0],[-4,0],[-4,0],[-1,0],[-2,0],[-8,0],[-6,0],[-9,0],[-7,0],[-17,0],[-10,0],[-2,1],[-6,0],[-26,0],[-19,0],[-7,0],[-1,-1],[-6,1],[-4,0],[-3,0],[-5,0],[0,-8],[0,-17],[0,-10],[0,-2],[0,-2],[0,-2],[0,-2],[0,-6],[0,-7],[0,-6],[0,-16],[0,-4],[0,-7],[0,-10],[0,-16],[0,-2],[0,-7],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[0,-5],[0,-2],[0,-6],[-13,0],[-13,0],[-12,0],[-14,0],[-7,0],[-3,0],[-3,0],[-13,0],[-12,0],[-1,0],[-7,0],[-1,0],[-5,0],[-5,0],[-2,0],[-19,0],[-25,1],[0,-14],[0,-3],[0,-8],[0,-7],[0,-6],[0,-13],[0,-11],[0,-6],[0,-20],[0,-4],[0,-13],[0,-6],[-1,-20],[0,-5],[0,-3],[0,-3],[0,-3],[0,-5],[0,-4],[0,-7],[1,-4],[0,-2],[0,-1],[0,-6],[0,-7],[0,-5],[0,-4],[0,-7],[0,-3],[0,-3],[0,-7],[0,-6],[0,-6],[0,-5],[0,-3],[0,-2],[0,-2],[0,-12],[0,-2],[0,-13],[0,-10],[0,-5],[0,-8],[0,-11]],[[6045,1182],[-8,0],[-3,0],[-16,0],[-8,0],[-5,0],[-12,0],[-5,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-6,0],[-4,0],[-2,0],[-1,0],[-4,0],[-3,0],[-4,0],[-11,0],[-4,0],[-3,0],[-1,0],[-4,0],[-3,0],[-1,0],[-3,1],[-2,-1],[-2,0],[-3,0],[-6,0],[-3,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-7,1],[-9,0]],[[5880,1183],[-7,0],[-6,0],[-3,0],[-12,0],[-10,0],[-1,0],[-16,0],[-7,0],[-3,0],[-10,0],[-3,0],[-7,0],[-3,0],[-2,0],[-2,0],[-9,1],[-8,-1],[-17,1],[-8,0],[-2,0],[-2,0],[-4,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-5,0],[-11,1],[-1,0],[-1,0],[-5,0],[-3,0],[-6,0],[-10,0],[-10,0],[-2,0],[-7,0],[-4,0],[-3,0],[-10,0],[-3,0],[-7,0],[-5,0],[-2,0],[-11,0],[-4,0],[-3,0],[-7,0],[-6,0],[-4,0],[-16,0],[-10,0],[-5,0],[-1,0],[-1,0],[-19,0],[-2,0],[-5,0],[-19,0],[-6,0],[-2,-1],[-2,1],[-8,0],[-3,0],[-3,0],[-2,0],[-7,0],[-2,0],[-4,0],[-7,0],[-6,0],[-8,0],[-2,0],[-8,0],[-9,0],[-3,0],[-3,0],[-19,0]],[[5413,1185],[0,9],[0,15],[0,25],[0,3],[0,22],[0,10],[0,6],[0,8],[0,2],[0,2],[0,15],[0,4],[0,2],[0,6],[0,12],[0,1],[0,6],[0,24],[0,9],[0,4],[0,12],[0,3],[0,13],[0,3],[0,1],[0,5],[0,1],[1,5],[0,7],[0,5],[0,6],[0,9],[0,16],[0,25],[0,5],[0,1],[0,6],[0,12],[0,6],[0,2],[0,5],[0,2],[0,3],[0,2],[0,5],[0,7],[0,3],[0,2],[0,3],[0,3],[0,13],[0,18],[0,6],[0,4],[0,3],[0,11],[1,3],[0,1],[0,5],[0,3],[0,13],[0,4],[0,6],[0,14]],[[5811,2064],[2,-2],[2,-2],[2,-2],[1,-1],[9,-8],[3,-3],[5,-4],[1,-1],[2,-2],[2,-2],[4,-3],[6,-5],[1,-1],[2,-2],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[2,-2],[5,-5],[5,-5],[4,-5],[5,-6],[4,-6],[6,-6],[5,-5],[3,-3],[1,-1],[5,-5],[6,-4],[12,-6],[4,-3],[5,-1],[10,-6],[2,-2],[2,-3],[2,-2],[1,-2],[2,-3],[4,-5],[0,-1],[1,-2],[1,-3],[0,-2],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[3,0],[1,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[3,-2],[1,-1],[2,-2],[2,-2],[2,-1],[3,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[3,0],[1,1],[2,2],[1,3],[1,1],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-2],[1,-2],[1,-2],[1,-2],[0,-1],[1,-2],[2,-2],[1,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[4,3],[2,1],[1,1],[2,1],[5,3],[2,1],[2,1],[2,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[2,-2],[2,-1],[3,0],[3,-2],[3,-1],[3,-1],[1,0],[2,-1],[1,-1],[3,0],[1,0],[1,0],[1,0],[2,1],[2,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,-2],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[3,0],[2,-1],[3,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[3,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,1],[2,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[2,-2],[2,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[3,0],[3,0],[2,-1],[2,-1],[3,0],[2,0],[1,-1],[2,0],[1,0],[5,-1],[5,0],[3,0],[3,0],[1,0],[4,1],[4,0],[6,1],[7,0],[2,0],[3,0],[6,0],[5,-1],[4,-1],[5,0],[4,-1],[4,-1],[6,-2],[5,-2],[0,-1],[4,-2],[4,-2],[1,-1],[3,-3],[5,-4],[3,-3],[3,-3],[1,-1],[1,-2],[3,-6],[1,-1],[0,-3],[1,-5],[1,-4],[1,-2],[4,-8],[2,-3],[1,0],[3,-4],[0,-2],[0,-1],[1,-1],[0,-2],[0,-5],[-1,-7],[0,-4],[0,-6],[1,-4],[0,-1],[0,-1],[1,0],[0,-1],[2,-4],[2,-4],[1,-2],[3,-5],[1,-2],[3,-4],[1,-2],[1,-1],[4,-5],[2,-2],[2,-3],[3,-3],[3,-3],[2,-2],[2,-2],[4,-3],[3,-2],[1,-2],[4,-3],[3,-2],[4,-2],[3,-3],[4,-2],[3,-1],[3,-2],[2,-1],[2,-1],[1,-1],[1,-1],[3,-2],[3,-3],[1,-2]],[[3060,1697],[0,-25],[0,-3],[0,-19],[0,-25],[0,-5],[0,-3],[0,-16],[0,-16],[0,-3],[0,-6],[0,-9],[0,-5],[0,-11],[0,-9],[0,-10],[0,-5],[0,-4],[0,-4],[0,-5],[0,-10],[0,-2],[-1,-15],[0,-3],[0,-6],[0,-9],[0,-4],[0,-12],[0,-20],[0,-4],[0,-7],[0,-18],[0,-3],[0,-9],[0,-1],[0,-6],[0,-6],[0,-9],[0,-8],[0,-7],[0,-22],[0,-3],[-1,0],[-10,0],[-4,0],[-11,0],[-3,0],[-1,0],[-9,0],[-6,0],[-7,0],[-19,0],[-1,0],[-6,0],[-6,0],[-17,0],[-2,0],[-13,0],[-14,0],[-4,0],[-21,1],[-17,-1],[-6,0],[-3,0],[-3,0],[-9,0],[-1,0],[-13,0],[-9,0],[-17,0],[-18,0],[-8,0],[-24,-1],[-2,0],[-12,0],[-8,0],[-6,0],[0,-6],[0,-18],[0,-17],[0,-7],[0,-6],[0,-19],[-1,-25],[0,-10],[0,-2],[0,-6],[0,-7],[0,-10],[0,-2],[0,-12]],[[2747,1182],[-10,0],[-3,0],[-3,0],[-6,0],[-4,0],[-2,0],[-10,0],[-2,0],[-5,0],[-9,0],[-8,0],[-6,0],[-5,1],[-5,0],[-17,-1],[-4,0],[-5,0],[-3,0],[-3,0],[-1,0],[-6,0],[-1,0],[-2,0],[-10,0],[-15,0],[-11,0],[-8,0],[-7,0],[-5,0],[-7,0],[-3,0],[-1,1],[-4,-1],[-1,0],[-1,0],[-15,0],[-2,0],[-19,1],[-4,0],[-16,0],[-12,0],[-1,0],[-4,0],[-7,0],[-2,0],[-11,0],[-14,0],[-12,0],[-4,0],[-10,0],[-12,0],[-3,0],[-3,0],[-6,0],[-2,0],[-13,0],[-12,0],[-11,0],[-2,0],[-2,1],[-1,0],[-2,0],[-2,-1],[-8,0],[-12,1],[-7,0],[-7,0],[-1,0],[-8,0],[-3,0],[-13,0]],[[2291,1184],[-9,-1],[-4,0],[-11,0],[-3,0],[-5,0],[-5,0],[-1,0],[-11,0],[-16,0],[-3,0],[-3,-1],[-5,1],[-2,0],[-2,0],[-11,0],[-5,0],[-1,0],[-8,0],[-12,0],[-5,0],[-6,0],[-2,0],[-7,0],[-6,0],[-12,0],[-3,0],[-11,0]],[[2122,1183],[0,8],[0,8],[0,5],[0,3],[0,12],[0,4],[0,5],[0,4],[0,3],[0,1],[0,14],[0,7],[0,6],[0,6],[0,6],[0,7],[0,2],[0,18],[0,4],[0,13],[0,12],[0,6],[0,8],[0,3],[0,8],[0,25],[-1,24],[0,10],[0,6],[0,3],[0,6],[0,2],[0,2],[0,4],[0,4],[0,13],[0,13],[0,12],[0,6],[0,1],[0,17],[0,25],[0,25],[0,18],[0,7],[0,13],[0,11],[0,21],[0,2],[0,2],[0,8],[0,6],[0,11],[0,13],[-1,12],[0,2],[1,9],[-1,3],[0,3],[0,5],[0,14],[0,6],[0,6],[0,4],[0,7],[0,3],[1,11],[-1,8],[0,5],[0,8]],[[1478,1922],[0,-5],[0,-2],[0,-3],[0,-3],[0,-4],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[-1,-5],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[0,-4],[0,-8],[1,-16],[0,-3],[0,-1],[0,-21],[0,-15],[0,-2],[0,-2],[0,-4],[0,-3],[0,-3],[0,-6],[0,-2],[0,-10],[0,-2],[13,0],[3,0],[0,-2],[0,-5],[0,-10],[0,-3],[0,-4],[0,-2],[0,-3],[0,-3],[0,-3],[0,-2],[0,-2],[0,-5],[1,-6],[0,-6],[0,-13],[0,-3],[0,-2],[0,-3],[0,-11],[0,-1],[0,-6],[0,-7],[0,-3],[0,-9],[0,-5],[0,-2],[0,-10],[0,-13],[0,-2],[0,-14],[0,-2],[0,-2],[0,-4],[0,-7],[0,-3],[0,-4],[0,-5],[0,-1],[0,-2],[0,-3],[0,-11],[0,-3],[0,-5],[0,-4],[0,-2],[0,-2],[0,-9],[0,-4],[0,-2],[0,-2],[0,-4],[0,-2],[0,-3],[0,-9],[0,-3],[0,-6],[0,-4],[0,-5],[0,-5],[0,-5],[0,-2],[0,-2],[0,-1],[0,-4],[0,-8],[0,-5],[0,-2],[0,-10],[0,-6],[0,-5],[0,-2],[0,-2],[0,-4],[1,-5],[0,-4],[0,-4],[0,-3],[0,-3],[0,-4],[0,-4],[0,-4],[0,-5],[-1,-6],[0,-3],[0,-9],[0,-3],[0,-7],[0,-1],[0,-3],[0,-2],[0,-3],[0,-7],[0,-2],[0,-4],[0,-8],[0,-3],[0,-3],[0,-3],[0,-2],[0,-16],[0,-9],[1,-25],[0,-8],[0,-4],[0,-1],[0,-3],[0,-1],[0,-18],[0,-2],[0,-9],[0,-9],[0,-1],[0,-7],[0,-2],[0,-1],[0,-4],[0,-3],[0,-2],[0,-3],[0,-5],[0,-4],[0,-4],[0,-2],[0,-2],[0,-4]],[[1496,1184],[-4,1],[-3,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-5,0],[-4,0],[-4,0],[-1,0],[-1,0],[-2,0],[-7,0],[-10,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-5,0],[-1,0],[-5,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-8,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-3,0],[-13,0],[-1,0],[-2,1],[-1,0],[-2,0],[-4,0],[-4,0],[-4,0],[-4,0],[-8,0],[-7,0],[-3,0],[-11,0],[-2,0],[-3,0],[-7,0],[-7,0],[-4,0],[-2,0],[-1,0],[-6,0],[-6,0],[-2,0],[-3,0],[-5,0],[-4,0],[-6,0],[-3,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-5,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-6,0],[-3,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-4,0],[-4,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,-1],[-3,0],[-1,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-13,0],[-5,0],[-4,0],[-4,0],[-1,0],[-2,0],[-3,0],[-20,0],[-2,0],[-2,0],[-10,0],[-8,0],[-4,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0]],[[1014,1185],[0,15],[0,45],[0,21],[0,5],[0,36],[1,217],[0,76],[0,86],[0,12],[0,11],[0,59],[0,6],[0,49],[0,100]],[[2122,1183],[-12,0],[-14,-1],[-12,0],[-3,0],[-16,0],[-3,0],[-5,0],[-13,0],[-9,0],[-17,0],[-5,0],[-7,1],[-14,0],[-12,0],[-14,0],[-12,0],[-11,0],[-14,1],[-2,0],[-7,0],[-6,0],[-26,0],[-7,0],[-3,0],[-4,0],[-12,0],[-13,0],[-6,0],[-7,0],[-11,0],[-9,0],[-7,0],[-1,0],[-7,0],[-2,0],[-2,0],[-2,0],[-7,0],[-5,0],[-1,0],[-9,0],[-16,0],[-4,0],[-1,0],[-3,0],[-2,0],[-2,0],[-14,0],[-10,0],[-17,0],[-6,0],[-3,0],[-9,0],[-2,0],[-5,0],[-8,0],[-4,0],[-14,0],[-8,0],[-18,0],[-7,0],[-1,0],[-6,0],[-1,0],[-2,0],[-3,0],[-6,0],[-3,0],[-1,0],[-3,0],[-7,0],[-4,0],[-8,0],[-8,0],[-6,0],[-2,0],[-6,0],[-2,0],[-2,0],[-8,0],[-17,0],[-2,0],[-7,0]],[[1515,1184],[-7,0],[-12,0]],[[4790,1774],[0,-19],[0,-5],[0,-4],[0,-3],[0,-6],[0,-7],[0,-2],[0,-2],[0,-3],[0,-3],[0,-5],[0,-3],[0,-5],[0,-5],[0,-2],[0,-4],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-3],[0,-2],[0,-3],[0,-6],[1,-3],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-4],[0,-2],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-5],[0,-4],[0,-2],[0,-6],[0,-6],[0,-6],[0,-3],[0,-5],[0,-4],[0,-4],[0,-11],[0,-6],[0,-4],[0,-4],[0,-2],[0,-3],[0,-9],[0,-4],[0,-2],[0,-5],[0,-7],[0,-10],[0,-3],[0,-9],[0,-3],[0,-2],[0,-3],[0,-4],[0,-3],[0,-9],[0,-8],[0,-2],[0,-6],[0,-4],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-5],[0,-2],[0,-1],[0,-4],[0,-4],[0,-4],[0,-3],[0,-2],[0,-5],[0,-12],[0,-4],[-1,-2],[0,-2],[0,-3],[0,-3],[0,-2],[0,-6],[0,-3],[0,-3],[0,-2],[1,-2],[-1,-20],[0,-5],[0,-5],[0,-5],[0,-3],[0,-6],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[1,-6],[0,-11],[0,-1],[0,-6],[0,-3],[0,-2],[0,-3],[0,-2],[0,-6],[0,-4],[0,-3],[0,-11],[0,-2],[0,-5],[0,-1],[0,-2],[0,-10],[0,-1],[0,-7],[0,-3],[0,-10],[0,-4],[0,-4],[-1,-8],[0,-1]],[[4788,1183],[-2,0],[-6,0],[-8,0],[-8,0],[-19,0],[-3,0],[-4,0],[-9,0],[-1,0],[-16,0],[-1,0],[-6,0],[-3,0],[-5,0],[-3,0],[-14,0],[-3,0],[-3,0],[-5,0],[-9,0],[-1,0],[-5,0],[-3,0],[-6,0],[-5,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-1,0],[-18,1],[-4,0],[-4,0],[-1,0],[-2,0],[-4,0],[-7,0],[-27,-1],[-1,0],[-18,0],[-6,0],[-3,0],[-6,0],[-9,0],[-8,0],[-4,0],[-23,0]],[[4475,1183],[0,9],[1,8],[0,2],[0,3],[0,9],[0,3],[0,3],[0,5],[0,11],[0,9],[0,6],[0,6],[-2,0],[-11,0],[-8,0],[-4,0],[-3,0],[-11,0],[-3,0],[-10,0],[-11,0],[-3,0],[-4,0],[-2,0],[-6,0],[-6,0],[-3,0],[-17,0],[-6,0],[-4,0],[-4,0],[-4,0],[-2,0],[-9,0],[-1,0],[-2,0],[-3,0],[-9,0],[-8,0],[-3,0],[-10,0],[-13,1],[-13,0],[-4,0],[-3,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-4,0],[-14,-1],[-8,0],[-5,0],[-3,0],[-2,0],[-8,0],[-4,0],[-5,0],[-2,1],[-4,0],[-11,0],[-14,-1],[-2,0],[-4,0],[-9,-1]],[[4161,1256],[0,2],[-1,1],[-4,0],[-3,3],[-2,2],[-1,1],[7,8],[1,1],[2,1],[3,0],[1,2],[-1,3],[-6,6],[-2,2],[-3,0],[-3,-2],[-2,-1],[-2,0],[-1,1],[0,1],[0,1],[1,2],[0,1],[3,3],[3,3],[2,1],[3,1],[2,2],[1,1],[0,2],[1,2],[3,7],[-1,7],[1,1],[3,2],[2,1],[1,0],[1,0],[3,0],[2,0],[1,0],[3,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,3],[2,4],[1,2],[24,19],[1,1],[2,1],[1,2],[1,2],[1,3],[2,1],[1,1],[1,1],[2,1],[2,1],[6,0],[4,8],[1,4],[2,3],[1,2],[2,10],[1,1],[13,20],[3,4],[6,8],[2,3],[-1,2],[-2,4],[-2,3],[-4,4],[-5,5],[-3,0],[-5,1],[-2,0],[-3,2],[-1,1],[-2,3],[-3,6],[-4,7],[0,1],[0,2],[-1,1],[0,1],[1,1],[5,3],[3,2],[0,1],[0,3],[-1,5],[-3,1],[-3,1],[-1,1],[0,1],[-1,1],[-1,3],[1,1],[4,2],[4,0],[3,-3],[1,0],[1,2],[0,3],[-2,3],[-2,3],[-1,1],[-4,0],[-5,-1],[-2,-2],[-1,0],[0,1],[0,2],[0,1],[2,2],[9,2],[4,0],[3,-2],[2,2],[1,4],[0,6],[0,3],[-2,7],[0,3],[-1,1],[-3,1],[-1,1],[0,1],[6,4],[2,2],[4,1],[3,-1],[3,-1],[2,5],[1,8],[2,5],[1,2],[2,6],[1,4],[0,3],[1,5],[1,3],[1,2],[0,1],[0,1],[1,0],[1,5],[2,3],[0,1],[0,3],[-1,2],[-2,3],[-1,0],[-2,1],[-2,2],[0,2],[0,1],[2,2],[5,0],[2,0],[1,0],[0,2],[-1,3],[-2,2],[0,2]],[[5413,1185],[-2,0],[-5,0]],[[5406,1185],[-1,0],[-1,0],[-3,0],[-8,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-6,0],[-6,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-7,0],[-4,0],[-2,0],[-4,0],[-7,0],[-6,0],[-5,0],[-1,-1],[-5,0],[-2,0],[-4,0],[-5,0],[-1,0],[-7,0],[-2,0],[-2,0],[-2,0],[-2,0],[-8,0],[-2,0],[-2,0],[-5,0],[-4,0],[-5,0],[-13,0],[-3,0],[-5,0],[-2,0],[-1,0],[-7,0],[-4,0],[-1,0],[-1,0],[-2,0],[-7,0],[-9,0],[-5,0],[-1,0],[-9,0],[-2,0],[-5,0],[-2,0],[-8,0],[-2,0],[-7,0],[-1,0],[-1,0],[-5,0],[-6,0],[-1,0],[-2,0],[-2,0],[-1,0],[-4,0],[-3,0],[-2,0],[-5,0],[-9,0],[-2,0],[-2,0],[-8,0],[-5,0],[-3,0],[-1,0],[-3,0],[-3,0],[-3,0],[-18,0],[-11,0],[-2,0],[-4,0],[-1,0],[-2,0],[-20,0],[-1,0],[-2,0],[-9,0],[-3,0],[-27,0],[-1,0],[-2,0],[-2,0],[-8,0],[-4,0],[-2,0],[-4,0],[-2,0],[-1,0],[-9,0],[-3,0],[-1,0],[-3,0]],[[4941,1184],[-5,0],[-2,0],[-6,0],[-2,0],[-8,0],[-2,0],[-9,0],[-4,0],[-3,0],[-4,0],[-4,0],[-3,0],[-6,0],[-8,0],[-2,0],[-2,0],[-5,0],[-2,0],[-6,0],[-8,0],[-3,0],[-7,0],[-5,0],[-8,0],[-7,0],[-2,0],[-4,0],[-2,0],[-1,0],[-11,0],[-6,-1],[-2,1],[-1,0],[-3,-1]],[[3169,1626],[-1,-5],[-1,-2],[12,-6],[3,-2],[1,0],[3,-2],[1,0],[20,5],[1,0],[4,0],[3,-3],[1,-1],[1,0],[5,-3],[3,-3],[1,-1],[1,-1],[5,-5],[1,-1],[5,-6],[1,-1],[1,-1],[1,-1],[4,0],[1,0],[5,0],[1,0],[1,0],[2,0],[6,-1],[1,0],[1,0],[2,-1],[4,-1],[4,-1],[-1,-2],[-4,-14],[1,-10],[1,0],[0,1],[12,6],[3,-4],[5,-6],[-8,-3],[-2,-1],[-1,0],[-2,-3],[0,-5],[1,-1],[3,-3],[2,-2],[1,-1],[2,1],[15,11],[3,-7],[0,-9],[3,-1],[6,-4],[5,2],[3,1],[6,5],[4,-3],[2,-1],[0,-1],[8,0],[1,0],[7,0],[2,-5],[2,-2],[10,-3],[2,-3],[0,-2],[2,-7],[1,1],[8,0],[2,1],[2,0],[20,-1],[4,-2],[5,-3],[2,-4],[0,-1],[0,-1],[16,-6],[3,0],[12,2],[1,0],[7,0],[3,-5],[4,0],[1,0],[3,0],[1,0],[17,-14],[3,0],[2,0],[1,0],[5,1],[5,1],[8,2],[1,1],[2,0],[1,0],[1,1],[1,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[-3,-9],[5,0],[7,-1],[5,-1],[1,-2],[2,-2],[1,-1],[2,0],[2,0],[1,0],[1,4],[0,2],[1,2],[1,0],[5,0],[1,0],[1,-1],[1,-10],[1,-5],[2,-2],[1,0],[7,-6],[6,-5],[1,-1],[1,-1],[7,-6],[5,-1],[17,-2],[1,-6],[2,-11],[0,-2],[9,-1],[2,-1],[0,-2],[3,-10],[-7,-4],[-1,2],[-5,4],[-1,-1],[10,-16],[1,-1],[1,0],[2,-1],[0,-2],[0,-1],[5,-6],[7,-10],[5,-4],[-3,0],[-1,0],[0,-1],[3,-5],[1,0],[2,-1],[2,0],[0,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[1,-3],[1,-2],[2,0],[3,-1],[1,-1],[2,-2],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[4,-4],[-1,-3],[1,-1],[0,-2],[-3,-3],[0,-1],[2,-2],[2,-1],[4,-2],[2,-1],[4,-2],[3,-1],[6,-3],[7,-2],[5,0],[2,-1],[1,0],[0,-1],[0,-4],[1,0],[6,-3],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1]],[[3695,1301],[2,-13],[0,-2],[0,-11],[0,-1],[0,-7],[0,-15],[0,-2],[0,-12],[0,-9],[0,-7],[0,-5],[0,-9],[0,-7],[0,-5],[0,-13],[3,0],[0,-13],[1,-5],[0,-6],[0,-16],[0,-3],[0,-5],[0,-3],[0,-10],[0,-4],[0,-3],[0,-5],[0,-1],[0,-9],[0,-4],[0,-7],[0,-15],[-1,-2],[0,-6],[0,-3],[0,-28]],[[3700,1035],[-8,0],[-18,0],[-10,0],[-2,0],[-14,0],[-11,0],[-1,0],[-27,0],[-26,0],[-8,0],[-4,0],[-13,0],[-12,0],[-4,0],[-8,0],[-1,0],[-2,0],[-2,0],[-10,0],[-10,0],[-15,0],[-2,0],[-2,0],[-3,0],[-4,0],[-15,0],[-4,0],[-9,0],[-2,0],[-7,0],[-1,0],[-3,0],[-13,0],[-14,0],[-12,0],[-26,0],[-7,0],[-13,0],[-5,0],[-4,0],[-1,0],[-1,0],[-15,0],[-2,0],[-3,0],[-13,0],[-13,0],[-2,0],[-4,0],[-13,0],[-7,0],[-13,0],[-10,0],[-1,0],[-2,0],[-19,0],[-5,0],[-1,0],[-11,0],[-3,0],[-24,0],[-6,0],[-6,0],[-2,0],[-3,-1],[-12,0],[-1,0],[-9,0],[-6,0],[-21,0],[-11,0],[-14,0],[-16,0],[-10,0]],[[3068,1034],[-4,0],[-5,0],[-11,0],[-6,0],[-5,0],[-2,0],[-12,0],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[-2,-1],[-2,1],[-2,0],[-4,0],[-4,0],[-4,0],[-21,0],[-6,0],[-7,-1],[-8,0],[-7,0],[-3,0],[-14,0],[-12,0],[-19,0],[-6,0],[-13,1],[-13,0],[-19,0],[-3,0],[-2,0],[-2,0],[-5,0],[-21,0],[-8,0],[-15,0],[-3,0],[-4,0],[-5,0],[-3,0],[-2,0],[-11,0],[0,8],[-1,6],[0,3],[0,6],[0,1],[0,3],[0,2],[0,21],[0,3],[0,7],[0,9],[0,5],[0,9],[0,15],[0,25],[0,24],[0,1],[-3,0],[-6,0],[-1,0]],[[4161,1256],[-1,-3],[-1,0],[-1,0],[-1,1],[-3,0],[-2,-2],[-1,-2],[7,-20],[0,-11],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[-1,1],[-2,1],[-2,0],[-3,0],[-1,0],[0,-1],[-1,-7],[1,-2],[0,-4],[0,-3],[1,-2],[3,0],[1,0],[2,-1],[3,-3],[2,-5],[1,-2],[0,-1],[3,-9],[2,-5],[-1,-3],[1,-3],[1,-2],[2,-5],[2,-4],[1,-5],[4,-6],[0,-1],[1,-2],[0,-1],[0,-1],[0,-7],[0,-1],[0,-1],[-2,-4],[0,-1],[-1,0],[0,-1],[-5,-3],[-1,-1],[-4,0],[0,-1],[-3,0],[-3,1],[-5,2],[-8,0],[-8,-2],[-3,0],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[-6,-3],[-3,0],[-6,0],[-5,2],[0,1],[-1,2],[0,4],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-2,-2],[-1,0],[-3,-3],[-2,-1],[-10,3],[-4,2],[-6,2],[-6,3],[-3,1],[0,4],[-1,0],[0,1],[-1,0],[-3,-1],[-6,3],[-3,2],[-8,12],[-1,1],[0,1],[-1,1],[-3,2],[-1,0],[-1,0],[0,-2],[-1,-1],[-1,0],[-7,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,1],[-3,4],[-11,8],[-6,7],[-2,1],[-2,1],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,0],[-2,-1],[-1,1],[-2,0],[-1,1],[-3,2],[-3,0],[-2,1],[-5,0],[-2,0],[-3,0],[-5,2],[-3,1],[-7,2],[-1,0],[-2,0],[-10,0],[0,1],[-2,1],[-3,2],[-1,1],[-4,2],[-1,1],[-2,1],[-3,0],[-5,-1],[-4,-2],[-4,2],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-4,2],[-1,1],[0,1],[1,4],[0,1],[1,0],[0,1],[2,2],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-4,3],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-5,-1],[-1,0],[-1,1],[-3,1],[-2,1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-5,3],[-1,2],[-1,1],[-1,0],[-1,0],[-2,0],[-9,4],[2,1],[1,0],[2,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-4,1],[-2,0],[-1,1],[-1,1],[-1,2],[-1,2],[-1,1],[-1,0],[-6,1],[-1,-1],[-4,-1],[-1,0],[-1,1],[0,1],[-7,-2],[-8,5],[-4,8],[-2,1],[-5,5],[-1,1],[-1,2],[0,1],[-1,1],[0,2],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-2],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[1,1],[0,3],[-1,0],[0,3],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-7,0],[-1,0],[-1,0],[-8,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[2,2],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[-8,7],[0,1],[-1,2],[-1,1],[0,2],[-1,0],[-1,1],[-2,1],[-1,1],[-12,3],[-10,3],[-6,0],[0,-2],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[-1,1],[0,1],[-1,0],[-1,1],[-6,2],[-1,0],[-2,0],[-2,0],[-1,1],[-1,0],[-1,1]],[[6443,1622],[3,-3],[0,-1],[3,-4],[4,-5],[2,-2],[2,-1],[13,-7],[5,-2],[0,-1],[1,0],[2,-1],[1,0],[6,-2],[1,0],[2,-1],[15,-5],[2,0],[4,-1],[2,-1],[9,-2],[3,-1],[4,-1],[5,-1],[3,-1],[5,-2],[4,0],[2,-1],[7,-1],[4,0],[15,-3],[3,0],[2,0],[5,-2],[12,-2],[1,-1],[1,0],[1,-1],[2,-1],[2,-3],[2,-1],[2,-2],[1,-1],[0,-1],[2,-1],[2,-1],[1,-1],[1,0],[2,-1],[3,-1],[2,0],[1,0],[4,-1],[4,-1],[1,-1],[3,0],[2,-1],[2,-1],[3,-1],[3,-1],[3,-1],[2,-2],[2,0],[1,-2],[2,-1],[2,-1],[1,0],[1,0],[3,-1],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,-1],[3,-1],[2,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,-2],[1,-2],[1,-2],[1,-1],[1,0],[1,-2],[1,-2],[2,-1],[3,-2],[1,-1],[1,-2],[1,-1],[3,-2],[2,-1],[2,-1],[0,-1],[4,-1],[0,-1],[4,-2],[5,-2],[3,-2],[4,-2],[3,-1],[3,-1],[3,0],[3,0],[1,-1],[2,0],[2,-1],[2,-1],[2,-2],[2,-2],[2,-2],[7,-5],[1,0],[8,-4],[1,-1],[1,0],[1,0],[2,-1],[4,0],[3,0],[2,0],[2,-1],[3,-1],[3,-2],[1,0],[4,-3],[4,-3],[5,-5],[1,-2],[4,-4],[2,-3],[2,-2],[4,-7],[8,-10],[1,-1],[2,-2],[7,-4],[10,-6],[3,-3],[2,-4],[7,-14],[3,-8],[2,-8],[1,-1],[0,-3],[0,-1],[0,-2],[-1,-2],[-1,-1],[-2,-3],[-1,-2],[-2,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-3],[-1,-3],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[1,-2],[1,-2],[1,-3],[3,-2],[3,-1],[3,-1],[5,-2],[3,-2],[3,-1],[1,-1],[1,-1],[1,-1],[3,-1],[2,-2],[3,-3],[2,-2],[1,-2],[1,-3],[-1,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-2],[1,-2],[1,-2],[1,-1],[2,-1],[0,-1],[3,-3],[2,-4],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[0,-4],[0,-1],[-2,-3],[-2,-6],[-1,-4],[-1,-4],[-1,-2],[0,-7],[2,-4],[2,-4],[6,-9],[6,-8],[4,-6],[1,-6],[0,-2],[0,-1],[0,-3],[1,-5],[0,-1],[1,-2],[4,-3],[6,-3],[2,-1],[2,-1],[6,-4],[2,-2]],[[6938,1178],[-5,0],[-2,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-4,1],[-5,0],[-13,-1],[-11,0],[-19,0],[-14,0],[-4,0],[-3,0],[-17,0],[-11,0],[-1,0],[-2,0],[-2,0],[-3,0],[-4,0],[-6,0],[-5,0],[-3,0],[-28,0],[-9,0],[-12,0],[-18,0],[-13,0],[-7,0],[-14,0],[-7,0],[-10,0],[-3,0],[-8,0],[-1,0],[0,-12],[0,-12],[0,-5],[0,-11],[0,-9],[0,-10],[0,-11],[0,-6],[0,-5],[0,-27],[0,-7],[-1,-13],[0,-18]],[[6652,1032],[-17,0],[-9,0],[-6,0],[-10,0],[-8,0],[-17,0],[-1,0],[-8,0],[-30,0],[-10,0],[-12,0],[-11,0],[-15,0],[-2,0],[-21,1],[-2,-1],[-9,1],[-5,-1],[-2,1],[-12,0],[-5,0],[-4,0],[-27,0],[-1,0],[-2,0],[-37,0],[-25,0],[-1,25],[0,5],[0,17],[0,3],[0,38],[0,11],[0,25],[0,24],[-9,0],[-6,0],[-3,0],[-8,0],[-1,0],[-9,0],[-4,-1],[-1,0],[-4,0],[-5,0],[-11,1],[-11,0],[-4,0],[-22,-1],[-8,0],[-26,1],[-1,0],[-21,-1],[-5,0],[-8,0],[-15,0],[-3,0],[-4,0],[-4,0],[-2,0],[-8,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-6,0],[-6,0],[-4,0],[-1,0],[-1,1],[-2,0],[-7,0],[-1,0],[-4,0],[-2,0],[-6,-1],[-4,0],[-9,0],[-5,0],[-9,0],[-11,0],[-9,2]],[[4475,1183],[0,-3],[0,-5],[0,-2],[0,-14],[0,-2],[0,-7],[0,-4],[0,-3],[0,-3],[0,-6],[1,-7],[0,-5],[0,-6],[0,-7],[0,-12],[0,-7],[0,-5],[0,-4],[0,-2],[0,-2],[0,-1],[-1,-7],[0,-6],[0,-3],[0,-10],[0,-15],[0,-6],[0,-3],[0,-9],[0,-6],[0,-3],[0,-22],[0,-10],[0,-12],[0,-7],[0,-4],[0,-16],[0,-6],[0,-6],[0,-11],[0,-2],[0,-12],[0,-12],[0,-8],[0,-17],[0,-9],[0,-4],[0,-2],[0,-9],[0,-8],[0,-5],[0,-12],[0,-20],[0,-5],[0,-24],[0,-6],[0,-7],[0,-12],[0,-12],[0,-13],[0,-25],[0,-4],[0,-2],[0,-18],[0,-4],[0,-17],[1,-7],[0,-9],[0,-15],[0,-2],[0,-20]],[[4476,592],[-8,0],[-18,0],[-5,0],[-8,0],[-7,0],[-6,0],[-3,0],[-7,0],[-3,0],[-1,0],[-5,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-11,0],[-1,0],[-1,0],[-1,0],[-22,0],[-1,0],[-1,0],[-12,0],[-3,0],[-14,0],[-7,0],[-5,0],[-13,0],[-7,0],[-19,0],[-12,0],[-2,0],[-9,0],[-1,0],[-3,0],[-9,0],[-3,0],[-6,0],[-9,0],[-11,0],[-13,0],[-15,0],[-3,0],[-5,0],[-2,0],[-26,0],[-28,0],[-1,0],[-8,0],[-2,0],[-14,0],[-8,0],[-4,0],[-1,0],[-10,0],[-8,0],[-7,0],[-2,0],[-10,0],[-6,0],[-16,0],[-3,0],[-1,0],[-10,0],[-3,0],[-7,0],[-5,0],[-13,0],[-7,0],[-23,0],[-1,0],[-15,0],[-3,0],[-23,0],[-5,0],[-14,0],[-24,0]],[[3858,592],[-2,0],[-2,0],[-13,0],[-9,0],[-2,0],[-8,0],[-5,0],[-7,0],[-5,0],[-12,0],[-13,0],[-2,0],[-10,0],[-29,0],[-11,0],[-4,0],[-22,0],[-1,0]],[[3701,592],[0,25],[0,14],[0,7],[0,3],[0,25],[-1,4],[1,13],[0,7],[0,7],[0,3],[-1,15],[0,5],[0,4],[0,4],[0,4],[0,8],[0,24],[0,9],[0,4],[0,8],[0,4],[0,7],[0,6],[0,7],[0,5],[0,12],[0,7],[0,5],[0,12],[0,1],[0,12],[0,4],[0,20],[0,14],[0,5],[0,5],[0,2],[0,11],[0,12],[0,20],[0,8],[0,10],[0,3],[0,9],[0,3],[1,9],[0,13],[0,16],[0,2],[0,6],[-1,0]],[[1515,1184],[1,-24],[0,-15],[0,-9],[0,-6],[0,-19],[0,-2],[0,-7],[0,-12],[0,-4],[-1,-23],[0,-16],[0,-10],[0,-9],[0,-13],[0,-2],[0,-25],[0,-25],[0,-25],[0,-4],[0,-9],[0,-12],[0,-7],[0,-3],[0,-7],[0,-7],[0,-14],[0,-2],[0,-9],[0,-14],[0,-8],[0,-2],[0,-25],[0,-25],[0,-24],[0,-14],[0,-11],[0,-12],[0,-2],[0,-19],[0,-3],[0,-4],[0,-2],[0,-3],[0,-4],[0,-11],[0,-1],[0,-2],[0,-4],[0,-8],[0,-3],[0,-2],[0,-6],[0,-12],[0,-5],[0,-7],[0,-3],[0,-5],[0,-11],[0,-6],[-1,-12]],[[1514,594],[-9,0],[-2,0],[-2,0],[-9,0],[-3,0],[-11,0],[-10,0],[-3,0],[-2,0],[-12,0],[-15,-1],[-2,0],[-2,0],[-4,0],[-3,0],[-1,0],[-10,0],[-2,0],[-3,0],[-9,0],[-13,0],[-6,0],[-6,0],[-16,0],[-10,0],[-9,0],[-7,0],[-6,0],[-3,0],[-6,0],[-6,0],[-5,0],[-4,0],[-5,0],[-11,0],[-1,0],[-2,0],[-3,0],[-6,0],[-3,0],[-11,0],[-5,0],[-10,0],[-10,0],[-7,0],[-8,0],[-19,1],[-7,0],[-5,0],[-9,0],[-5,0],[-6,0],[-2,0],[-7,0],[-6,0],[-1,0],[-2,0],[-2,0],[-6,0],[-9,0],[-10,0],[-1,0],[-6,0],[-4,0],[-3,0],[-2,0],[-9,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-2,-1],[-2,0],[-2,0],[-3,1],[-3,0],[-13,0],[-7,0],[-5,0],[-3,0],[-4,0],[-2,0],[-12,0]],[[1013,595],[0,208],[0,47],[0,12],[0,120],[1,203]],[[2291,1184],[0,-13],[0,-5],[0,-7],[0,-3],[0,-2],[0,-2],[-1,-1],[0,-11],[0,-1],[0,-5],[0,-3],[0,-1],[1,-3],[0,-5],[0,-3],[0,-9],[0,-1],[0,-24],[0,-12],[0,-10],[0,-3],[0,-9],[0,-16],[0,-24],[0,-14],[0,-11],[0,-14],[0,-11],[0,-9],[0,-10],[0,-2],[0,-2],[0,-19],[0,-7],[0,-24],[0,-25],[0,-13],[0,-11],[0,-7],[0,-11],[0,-3],[0,-4],[0,-25],[0,-7],[0,-7],[0,-3],[0,-8],[0,-22],[-1,-2],[0,-20],[1,-3],[0,-1],[0,-2],[-1,-5],[0,-2],[0,-4],[0,-13],[0,-14],[0,-6],[0,-4],[0,-7],[0,-5],[0,-1],[0,-6],[0,-9],[0,-5],[0,-7],[0,-10],[0,-8],[0,-4],[0,-5],[1,-7]],[[2291,592],[-4,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-6,0],[-4,0],[-2,0],[-7,0],[-3,0],[-1,0],[-7,0],[-2,0],[-3,0],[-2,0],[-6,0],[-5,0],[-5,0],[-6,0],[-2,0],[-3,0],[-6,0],[-3,0],[-3,0],[-3,0],[-3,0],[-5,0],[-1,0],[-2,0],[-4,0],[-3,0],[-3,0],[-3,0],[-5,0],[-1,0],[-4,0],[-4,0],[-2,0],[-6,0],[-2,0],[-2,0],[-6,0],[-2,0],[-2,0],[-8,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-1,0],[-9,0],[-12,0],[-2,0],[-1,0],[-9,0],[-1,0],[-3,0],[-8,0],[-2,0],[-2,0],[-4,0],[-5,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-5,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-4,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-5,0],[-7,0],[-5,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-13,0],[-3,0],[-3,0],[-4,0],[-3,0],[-6,0],[-2,0],[-3,0],[-3,0],[-2,0],[-6,0],[-3,0],[-8,0],[-4,0],[-2,0],[-3,0],[-3,0],[-4,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-5,0],[-2,0],[-5,0],[-3,0],[-13,1],[-6,0],[-3,-1],[-2,1],[-1,0],[-7,0],[-3,0],[-3,0],[-1,0],[-3,0],[-8,0],[-1,0],[-4,0],[-4,0],[-5,0],[-1,0],[-4,0],[-5,0],[-3,0],[-1,0],[-7,0],[-4,0],[-2,0],[-3,0],[-5,0],[-4,0],[-1,0],[-6,0],[-4,0],[-3,0],[-4,0],[-7,0],[-3,0],[-5,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-10,1],[-3,0],[-2,0],[-7,0],[-2,0],[-3,0],[-1,0],[-3,-1],[-3,0],[-1,0],[-3,0],[-3,0],[-2,0],[-3,0],[-9,0],[-3,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-4,0],[-2,0],[-3,0],[-2,0],[-3,1],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-4,0],[-4,0],[-4,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,0],[-3,0],[-2,0],[-2,0],[-5,0],[-3,0]],[[1530,594],[-13,0],[-3,0]],[[5406,1185],[1,-34],[0,-3],[0,-12],[0,-9],[0,-4],[0,-4],[0,-21],[0,-21],[0,-14],[0,-2],[0,-4],[0,-8],[0,-6],[0,-5],[0,-14],[0,-10],[0,-2],[0,-4],[0,-2],[0,-4],[0,-3],[0,-2],[0,-9],[0,-12],[0,-13],[0,-13],[0,-3],[0,-9],[0,-6],[0,-10],[0,-8],[0,-3],[0,-22],[0,-10],[0,-14],[0,-15],[0,-24],[0,-6],[0,-5],[0,-9],[0,-16],[0,-8],[0,-4],[0,-12],[0,-3],[0,-22],[0,-13],[0,-5],[0,-6],[0,-13],[0,-10],[0,-6],[0,-8],[0,-8],[0,-3],[0,-2],[0,-12],[0,-5],[0,-7],[0,-5],[0,-2],[0,-6],[0,-6],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-3],[0,-3],[0,-4],[0,-9]],[[5407,593],[-5,0]],[[5402,593],[-11,0],[-2,0],[-4,0],[-4,0],[-3,0],[-2,0],[-2,0],[-1,0],[-9,0],[-8,0],[-1,0],[-5,0],[-2,0],[-8,0],[-5,0],[-9,0],[-6,0],[-2,0],[-4,0],[-3,0],[-7,0],[-9,0],[-6,0],[-7,0],[-4,0],[-1,0],[-2,0],[-4,0],[-4,0],[-4,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,0],[-5,0],[-4,0],[-5,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-2,0],[-3,-1],[-6,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-3,0],[-6,0],[-2,0],[-2,0],[-9,0],[-4,0],[-3,0],[-4,0],[-1,0],[-1,0],[-5,0],[-4,0],[-5,0],[-4,0],[-4,0],[-4,0],[-1,0],[-2,0],[-5,0],[-1,0],[-1,0],[-4,0],[-3,0],[-7,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-8,0],[-4,0],[-2,0],[-3,0],[-4,0],[-1,0],[-9,0],[-3,0],[-3,0],[-6,0],[-4,0],[-2,0],[-3,0],[-1,0],[-4,0],[-3,0],[-4,0],[-5,0],[-4,0],[-3,0],[-3,0],[-4,0],[-5,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-3,0],[-1,0],[-4,0],[-3,0],[-4,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-9,0],[-4,0],[-4,0],[-3,0]],[[4941,592],[0,2],[0,1],[0,17],[0,20],[0,6],[0,4],[0,21],[0,10],[0,2],[0,4],[0,4],[0,8],[0,14],[0,11],[0,24],[0,4],[0,6],[0,4],[0,11],[0,14],[0,10],[0,5],[0,11],[1,14],[-1,7],[1,2],[0,4],[0,6],[0,4],[0,8],[0,1],[0,4],[0,3],[0,7],[0,2],[0,5],[0,14],[0,2],[0,10],[0,5],[0,34],[0,19],[0,18],[0,6],[0,18],[0,1],[0,12],[0,15],[0,5],[0,1],[-1,4],[0,15],[1,12],[0,13],[0,4],[0,3],[0,2],[0,9],[-1,5],[0,4],[0,7],[0,14],[0,10],[0,16],[0,4],[0,5],[0,25]],[[5880,1183],[0,-20],[0,-12],[0,-4],[0,-11],[0,-28],[0,-15],[0,-22],[0,-8],[0,-5],[1,-10],[-1,-2],[1,-6],[-1,-6],[0,-3],[1,-10],[0,-12],[0,-12],[0,-5],[0,-7],[0,-8],[0,-1],[0,-15],[0,-12],[0,-9],[0,-2],[0,-14],[0,-6],[0,-13],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-8],[0,-2],[0,-9],[-1,-7],[0,-6],[1,-12],[0,-1],[0,-2],[0,-18],[0,-4],[0,-7],[0,-5],[0,-7],[0,-1],[0,-1],[0,-3],[0,-8],[0,-5],[0,-5],[0,-14],[0,-5],[0,-3],[-1,-13],[0,-9],[0,-24],[0,-4],[0,-4],[0,-3],[0,-13],[0,-25],[0,-25],[0,-4],[0,-20],[0,-13],[0,-12],[-15,0]],[[5865,593],[-11,0],[-10,0],[-4,0],[-11,0],[-7,0],[-6,0],[-2,0],[-2,0],[-7,0],[-2,0],[-5,0],[-10,0],[-5,0],[-6,0],[-15,0],[-6,0],[-5,0],[-14,0],[-4,0],[-5,0],[-2,0],[-2,0],[-9,0],[-4,0],[-12,0],[-13,0],[-6,0],[-13,0],[-7,0],[-14,0],[-2,0],[-5,0],[-1,0],[-4,0],[-7,0],[-4,0],[-3,0],[-13,0],[-11,0],[-5,0],[-9,0],[-3,0],[-15,0],[-2,0],[-6,0],[-6,0],[-11,0],[-3,0],[-6,0],[-6,0],[-3,0],[-9,0],[-8,0],[-6,0],[-15,0],[-7,0],[-5,0],[-3,0],[-3,0],[-5,0],[-1,0],[-7,0],[-22,0],[-3,0],[-6,0],[-4,0],[-10,0]],[[4941,592],[-2,0],[-2,0],[-22,0],[-2,0],[-5,0],[-3,0],[-5,0],[-1,0],[-10,0],[-4,0],[-2,0],[-2,0],[-7,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-6,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-6,0],[-2,0],[-2,0],[-11,0],[-5,0],[-9,0],[-2,0],[-18,0],[-7,0],[-2,0],[-10,0],[-7,0],[-14,0],[-2,0],[-2,0],[-2,0],[-12,0],[-25,0],[-3,0],[-10,0],[-2,0],[-7,0],[-1,0],[-3,0],[-7,0],[-13,0],[-6,0],[-1,0]],[[4630,592],[-2,0],[-10,0],[-1,0],[-2,0],[-7,0],[-4,0],[-7,0],[-18,0],[-6,0],[-1,0],[-12,0],[-2,0],[-5,0],[-6,0],[-7,0],[-13,0],[-10,0],[-4,0],[-12,0],[-3,0],[-12,0],[-7,0],[-3,0]],[[6652,1032],[1,-11],[0,-1],[0,-16],[0,-21],[0,-27],[0,-10],[0,-7],[0,-3],[0,-4],[0,-5],[0,-17],[1,-25],[-1,-25],[0,-10],[0,-27],[0,-5],[0,-3],[0,-3],[0,-6],[0,-2],[0,-2],[0,-3],[0,-2],[0,-23],[0,-2],[1,-3],[-1,-8],[0,-8],[1,-15],[-1,-71],[0,-5],[0,-2],[0,-20],[0,-2],[0,-15],[0,-2],[0,-4],[0,-8],[0,-12],[0,-3],[0,-3]],[[6653,591],[-13,0],[-14,0],[-7,0],[-2,0],[-23,0],[-3,0],[-2,0],[-2,0],[-3,0],[-4,0],[-7,0],[-9,0],[-6,0],[-10,0],[-2,0],[-7,0],[-4,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-8,0],[-2,0],[-4,0],[-2,0],[-3,0],[-6,0],[-5,0],[-2,0],[-4,0],[-3,0],[-5,0],[-4,0],[-4,0],[-4,0],[-2,0],[-6,0],[-10,0],[-20,1],[-8,0],[-5,0],[-6,0],[-13,0],[-19,0],[-6,0],[-14,0],[-12,0],[-14,0],[-4,0],[-4,0],[-8,0],[-9,0],[-1,0],[-8,0],[-11,0],[-6,0],[-7,0],[-29,0],[-3,0],[-25,1],[-9,0],[-5,0],[0,-12],[0,-13]],[[6176,568],[-11,0],[-21,0],[-6,0],[-3,0],[-4,0],[-5,0],[-2,0],[-7,0],[-7,0],[-5,0],[-12,0],[-21,0],[-26,0],[-2,1],[-2,-1],[-1,0],[-6,0],[-2,0],[-1,0],[-5,0],[-3,0],[-3,0],[-4,0],[-4,0],[-5,0],[-2,0],[-5,0],[-6,0],[-2,0],[-9,0],[-8,0],[-7,0],[-4,0],[-12,0],[-4,0],[-6,0],[-18,0],[-32,0],[-2,0],[-6,0],[-7,0],[-2,0],[-10,0],[0,4],[0,3],[0,5],[0,12],[0,1],[-1,0]],[[3068,1034],[0,-15],[0,-10],[0,-17],[0,-3],[0,-16],[0,-13],[0,-12],[0,-13],[0,-19],[0,-5],[0,-10],[0,-15],[0,-6],[0,-18],[0,-12],[1,0],[0,-13],[0,-11],[0,-14],[0,-4],[0,-7],[-1,-13],[0,-4],[1,-22],[0,-1],[0,-3],[0,-16],[0,-4],[-1,-6],[0,-2],[0,-3],[0,-12],[0,-1],[0,-24],[0,-7],[1,-5],[0,-12],[-1,-2],[0,-1],[0,-22],[0,-3],[0,-22],[0,-17],[0,-7]],[[3068,592],[-20,0],[-5,0],[-14,-1],[-6,0],[-6,0],[-3,0],[-12,0],[-5,0],[-2,0],[-3,0],[-1,0],[-13,0],[-7,0],[-6,0],[-20,0],[-6,0],[-6,0],[-14,0],[-5,0],[-17,0],[-4,0],[-3,1],[-3,0],[-2,0],[-18,0],[-5,0],[-15,0],[-2,0],[-2,0],[-8,0],[-10,0],[-2,0],[-8,0],[-8,0],[-1,0],[-3,0],[-2,0],[-4,0],[-4,0],[-4,0],[-8,0],[-16,0],[-1,0],[-7,0],[-2,0],[-5,0],[-13,0],[-2,0],[-3,0],[-2,0],[-5,0],[-13,0],[-7,0],[-17,0],[-2,0],[-25,-1],[-7,0],[-13,1],[-2,0],[-3,0],[-2,0],[-2,0],[-10,0],[-2,0],[-3,0],[-3,0],[-5,0],[-7,0],[-19,0],[-3,0],[-4,0],[-12,0],[-14,0],[-5,0],[-2,0],[-1,0],[-2,0],[-3,0],[-6,0],[-7,0],[-12,0],[-7,0],[-6,0],[-6,0],[-14,0],[-6,0],[-6,0],[-5,0],[-8,0],[-5,0],[-2,0],[-19,0],[-25,0],[-5,0],[-11,0],[-11,0],[-5,0],[-5,0],[-13,0],[-5,0],[-2,0],[-9,0],[-4,0],[-8,0],[-7,0],[-14,0]],[[2304,592],[-4,0],[-5,0],[-1,0],[-2,0],[-1,0]],[[6938,1178],[2,-1],[3,-3],[3,-2],[5,-5],[4,-3],[4,-2],[4,-2],[1,0],[2,-1],[4,-2],[2,-1],[3,-3],[6,-9],[5,-7],[2,-2],[3,-6],[1,-1],[7,-4],[3,-3],[7,-4],[1,-1],[6,-3],[1,0],[1,-1],[4,-2],[4,-1],[2,0],[2,-1],[2,-1],[7,-3],[5,-2],[2,-1],[1,-1],[1,0],[4,-4],[1,-2],[4,-2],[1,-1],[1,-1],[2,-1],[2,-2],[6,-4],[3,-2],[3,-2],[2,0],[2,-1],[10,0],[10,-1],[3,-1],[5,-1],[3,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,-2],[2,-3],[3,-3],[2,-3],[4,-5],[1,-2],[1,-3],[-1,-2],[0,-2],[1,-2],[1,-5],[0,-3],[0,-7],[1,-2],[5,-3],[6,-3],[5,-3],[5,-1],[4,0],[1,0],[2,1],[2,-1],[2,0],[2,-1],[5,-5],[4,-4],[2,-2],[2,-1],[2,-2],[1,-2],[2,-2],[3,-3],[1,-3],[0,-3],[4,-8],[2,-5],[3,-4],[2,-1],[1,-1],[2,-2],[2,-1],[2,-3],[2,-3],[1,-2],[2,-1],[2,-1],[2,0],[2,1],[1,1],[2,0],[2,-1],[1,-1],[1,-1],[4,-3],[1,-1],[1,-2],[3,-3],[1,-2],[1,0],[3,-2],[2,-1],[4,-1],[1,-1],[6,-2],[5,-3],[1,-1],[4,-3],[3,-3],[2,-3],[2,-4],[2,-5],[1,-2],[1,0],[1,-4],[1,0],[2,-3],[5,-3],[5,-3],[6,-3],[1,-1],[2,-1],[1,0],[7,0],[2,0],[3,0],[5,-1],[5,-1],[4,0],[2,-1],[3,-1],[5,-2],[4,-1],[3,-1],[17,-1],[8,0],[2,0],[2,0],[9,-2],[10,-2],[3,0],[2,-1],[5,-3],[1,-1],[1,-1],[1,-1],[2,-1],[2,-2],[2,-1],[5,-3],[9,-3],[4,-2],[2,0],[1,0],[1,0],[8,2],[1,0],[1,0],[3,0],[1,0],[1,0],[3,0],[2,-1],[1,-1],[4,-2],[2,-1],[4,-2],[4,-1],[4,-2],[2,-1],[7,-2],[2,-1],[2,-2],[3,-2],[1,-1],[3,-2],[1,-2],[2,-2],[0,-1],[4,-9],[0,-1],[1,-4],[0,-1],[1,0],[0,-1],[1,-3],[12,-12],[3,-4],[3,-4],[4,-9],[0,-1],[2,-2],[7,-4],[7,-4],[4,-2],[3,-3],[2,-2],[3,-1],[2,-2],[6,-8],[1,-1],[1,-2],[3,-4],[1,0],[4,-4],[6,-7],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[1,-1],[0,-3],[0,-2],[0,-3],[1,-2],[0,-2],[2,-4],[2,-4],[2,-4],[1,-2],[0,-1],[2,-2],[3,-1],[3,-2],[2,-2],[2,-1],[1,-1],[1,-2],[1,-1],[1,-3],[1,-2],[0,-1],[1,-2],[0,-1],[2,-4],[2,-4],[2,-3],[1,-1],[0,-1],[2,-1],[5,-2],[3,-2],[3,-2],[3,-2],[1,-1],[4,-3],[2,-2],[2,-3],[3,-4],[2,-4],[1,-4],[0,-1],[1,-3],[1,-3],[0,-1],[1,-4],[0,-2],[1,-5],[0,-1],[0,-1],[1,0],[2,-2],[2,-2],[1,-1],[1,-1],[1,-1],[2,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[2,-2],[2,-2],[1,-1],[2,-1],[2,0],[2,-1],[1,-2],[2,-1],[1,-1],[0,-1],[1,-1],[2,-2],[2,-2]],[[7678,591],[-4,0],[-4,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-5,0],[-2,0],[-2,0],[-8,0],[-6,0],[-4,0],[-2,0],[-39,0],[-4,0],[-5,0],[-17,-1],[-7,0],[-6,0],[-1,0],[-1,0],[-7,0],[-1,0],[-13,0],[-9,0],[-4,0],[-3,0],[-1,0],[-9,0],[-4,0],[-8,0],[-19,0],[-3,0],[-22,0],[-2,0],[-7,0],[-10,0],[-14,0],[-11,1],[-12,0],[-24,0],[-32,-1],[-23,0],[-4,0],[-3,0],[-30,0],[-10,0],[-7,0],[-16,0],[-6,0],[-4,0],[-4,0],[-12,0],[-17,0],[-28,0],[-5,0],[-9,0],[-9,0],[-3,0],[-12,0],[-1,0],[-11,0],[-5,0],[-9,0]],[[7103,590],[-11,0],[-15,0],[-3,0],[-2,0],[-13,0],[-2,0],[-14,0],[-9,0],[-3,0],[-1,0],[-4,1],[-8,0],[-2,0],[-3,0],[-3,-1],[-34,0],[-7,0],[-7,0],[-5,0],[-3,0],[-5,0],[-7,0],[-2,0],[-17,0],[-7,0],[-6,0],[-4,0],[-9,0],[-13,1],[-10,0],[-10,0],[-2,0],[-3,0],[-7,-1],[-4,0],[-2,0],[-10,1],[-2,0],[-9,0],[-18,0],[-2,0],[-11,0],[-10,0],[-2,0],[-2,0],[-7,0],[-4,0],[-4,0],[-3,0],[-7,0],[-25,0],[-15,0],[-2,0],[-2,0],[-7,0],[-4,0],[-17,0],[-17,0],[-5,0],[-8,0]],[[3701,592],[-9,0],[-16,0],[-2,0],[-15,0],[-9,0],[-1,0],[-6,0],[-14,0],[-5,0],[-2,0],[-11,0],[-12,0],[-2,0],[-13,0],[-1,0],[-6,0],[-1,0],[-8,0],[-3,0],[-1,0],[-7,0],[-1,0],[-3,0],[-7,0],[-5,0],[-1,0],[-9,0],[-1,0],[-10,0],[-13,0],[-13,0],[-4,0],[-22,0],[-4,0],[-7,0],[-17,0],[-2,0],[-22,0],[-4,0],[-8,0],[-7,0],[-3,0],[-3,0],[-4,0],[-3,0],[-6,0],[-8,0],[-12,0],[-6,0],[-20,0],[-6,0],[-19,0],[-7,0],[-13,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-5,0],[-6,0],[-7,0],[-13,0],[-6,0],[-7,0],[-6,0],[-4,0],[-2,0],[-1,0],[-6,0],[-7,0],[-13,0],[-3,0],[-10,0],[-6,0],[-13,0],[-6,0],[-1,0],[-1,0],[-24,0],[-6,0],[-19,0],[-7,0],[-19,0]],[[3075,592],[-4,0],[-3,0]],[[1530,594],[0,-4],[0,-2],[0,-1],[0,-4],[0,-2],[0,-3],[0,-8],[0,-2],[0,-2],[0,-23],[0,-3],[0,-5],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[0,-2],[0,-5],[0,-5],[0,-14],[0,-2],[0,-5],[0,-6],[0,-5],[0,-6],[0,-11],[0,-2],[0,-6],[0,-6],[0,-6],[0,-2],[0,-5],[0,-4],[0,-2],[0,-2],[0,-3],[0,-17],[0,-2],[0,-7],[0,-4],[0,-2],[0,-1],[0,-14],[-1,-3],[0,-5],[0,-2],[0,-3],[0,-2],[0,-3],[0,-6],[0,-4],[0,-5],[0,-20],[0,-12],[0,-8],[0,-4],[0,-4],[0,-3],[0,-3],[0,-5],[0,-10],[0,-7],[0,-8],[0,-3],[0,-6],[0,-3],[0,-3],[0,-6],[0,-2],[0,-4],[0,-7],[0,-4],[0,-5],[0,-10],[0,-2],[0,-3],[0,-3],[0,-7],[0,-2],[0,-11],[0,-2],[0,-2],[0,-12],[0,-6],[0,-4],[-1,-5],[0,-10],[0,-1],[1,-2],[0,-7],[0,-8],[0,-8],[0,-2],[0,-3],[0,-4],[0,-12],[0,-4],[0,-2],[0,-7],[0,-9],[0,-3],[0,-3],[0,-2],[0,-5],[0,-11],[0,-13],[0,-3],[0,-5],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2]],[[1529,1],[-86,0],[-22,0],[-61,0],[-32,0],[-167,0],[-22,0],[-8,0],[-85,1],[-21,0],[-12,0],[0,149],[0,9],[0,5],[0,21],[0,24],[0,161],[0,51],[0,25],[0,7],[0,64],[0,77]],[[2304,592],[0,-8],[0,-17],[0,-24],[0,-25],[0,-3],[-1,-18],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-5],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-4],[0,-6],[0,-15],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-7],[0,-2],[0,-3],[0,-2],[0,-5],[0,-2],[0,-2],[0,-3],[0,-5],[0,-6],[0,-2],[0,-5],[0,-5],[0,-2],[0,-12],[0,-2],[0,-6],[-1,-3],[1,-2],[1,-1],[0,-2],[-1,-2],[0,-3],[0,-4],[0,-1],[0,-25],[0,-5],[0,-4],[0,-3],[0,-3],[0,-2],[0,-5],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-1],[0,-5],[0,-3],[0,-2],[-1,-5],[0,-3],[0,-4],[0,-4],[0,-1],[0,-2],[0,-6],[0,-6],[0,-4],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-4],[0,-2],[0,-2],[0,-2],[0,-3],[0,-3],[0,-12],[0,-2],[0,-3],[0,-2],[0,-5],[0,-2],[0,-3],[0,-8],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[0,-6],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-4],[0,-3],[0,-2],[0,-6],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1],[0,-3],[0,-2],[0,-1],[0,-3],[0,-3],[0,-4],[0,-2],[0,-4],[0,-12],[0,-5],[0,-8],[0,-2],[0,-9],[0,-2],[0,-3],[0,-4],[0,-3],[0,-1],[0,-6],[0,-6],[0,-5],[0,-2],[0,-2],[0,-3]],[[2301,2],[-75,-1],[-147,0],[-29,0],[-58,0],[-4,0],[-25,0],[-128,0],[-43,0],[-8,0],[-7,0],[-46,0],[-133,0],[-24,0],[-45,0]],[[5402,593],[0,-4],[0,-2],[0,-12],[0,-6],[0,-2],[0,-2],[0,-3],[0,-3],[0,-4],[0,-3],[0,-6],[0,-4],[0,-7],[0,-3],[0,-2],[0,-5],[0,-4],[0,-3],[0,-8],[0,-2],[0,-2],[0,-5],[0,-2],[0,-2],[0,-3],[0,-2],[0,-5],[0,-7],[0,-7],[0,-3],[0,-3],[0,-4],[0,-4],[0,-2],[0,-3],[0,-2],[0,-8],[0,-1],[0,-4],[0,-3],[0,-2],[0,-3],[0,-4],[0,-1],[0,-4],[0,-4],[0,-3],[0,-3],[0,-1],[0,-4],[0,-5],[0,-3],[0,-4],[0,-3],[0,-13],[0,-2],[0,-3],[0,-4],[0,-5],[0,-2],[0,-18],[0,-24],[0,-1],[0,-2],[0,-2],[0,-1],[0,-19],[0,-12],[0,-12],[0,-3],[0,-10],[0,-20],[0,-4],[0,-11],[0,-3],[0,-5],[0,-4],[0,-3],[0,-2],[0,-3],[0,-19],[0,-2],[0,-6],[0,-4],[0,-6],[0,-3],[0,-3],[0,-6],[0,-4],[0,-3],[0,-12],[0,-25],[0,-12],[0,-4],[0,-7],[0,-14],[0,-10],[0,-7],[0,-7],[0,-13],[0,-2],[0,-10],[1,-25]],[[5403,0],[-102,0],[-154,0],[-4,0],[-15,0],[-7,0],[-43,0],[-68,0],[-145,0],[-8,0],[-8,0],[-19,0],[-6,0],[-70,0],[-9,0],[-109,0],[-7,0]],[[4629,0],[0,4],[0,3],[0,5],[0,9],[0,4],[0,3],[1,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,5],[0,3],[0,5],[0,2],[0,2],[0,4],[0,11],[0,11],[0,5],[0,4],[0,4],[0,4],[0,4],[0,2],[0,5],[0,3],[0,2],[0,4],[0,2],[0,4],[0,5],[0,5],[0,6],[0,3],[0,5],[0,5],[0,4],[0,5],[0,7],[0,3],[0,2],[0,12],[0,6],[0,2],[0,3],[0,5],[0,3],[0,4],[0,4],[0,6],[0,5],[-1,7],[0,8],[0,3],[0,4],[1,5],[0,3],[0,7],[0,4],[0,3],[0,11],[0,1],[0,12],[0,4],[0,4],[0,3],[0,3],[0,3],[0,4],[0,4],[0,6],[0,7],[0,8],[0,3],[0,1],[0,6],[0,19],[0,1],[0,6],[0,5],[0,10],[0,2],[0,3],[0,3],[0,2],[0,2],[0,3],[0,2],[0,3],[0,2],[0,2],[0,3],[0,4],[0,4],[0,10],[0,4],[0,2],[0,2],[0,3],[0,3],[0,3],[0,2],[0,2],[0,10],[0,3],[0,3],[0,4],[0,3],[0,1],[0,9],[0,4],[0,20],[0,3],[0,4],[0,5],[0,5],[0,4],[0,2],[0,4],[0,3],[0,3],[0,5],[0,2],[0,3],[0,2],[0,5],[0,4],[0,4],[0,6],[0,13]],[[6176,568],[0,-24],[0,-14],[0,-16],[0,-20],[0,-12],[0,-6],[0,-6],[0,-13],[0,-4],[0,-8],[0,-5],[0,-14],[0,-6],[0,-7],[0,-5],[0,-12],[0,-13],[0,-12],[0,-12],[0,-25],[0,-9],[0,-2],[-1,-4],[0,-5],[0,-2],[0,-15],[0,-20],[0,-5],[0,-24],[0,-6],[0,-2],[0,-16],[0,-5],[0,-3],[0,-3],[1,-4],[0,-6],[0,-5],[0,-12],[0,-12],[0,-22],[0,-3],[0,-22],[0,-3],[0,-24],[0,-25],[0,-3],[0,-7],[0,-8],[0,-4],[0,-2],[0,-12],[0,-25],[0,-7],[0,-3],[0,-2]],[[6176,2],[-3,0],[-3,0],[-2,0],[-5,0],[-1,0],[-1,0],[-1,0],[-118,-1],[-6,0],[-146,0],[-101,0],[-31,0],[-220,-1],[-4,0],[-5,0],[-66,0],[-10,0],[-19,0],[-31,0]],[[7678,591],[1,-2],[0,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-5],[0,-6],[1,-3],[1,-3],[0,-1],[1,-2],[1,-4],[1,-6],[1,-2],[2,-6],[1,-2],[1,-1],[1,-2],[1,-5],[3,-7],[2,-8],[0,-2],[1,-3],[2,-3],[1,-2],[2,-2],[7,-9],[4,-6],[8,-8],[0,-3],[-1,-3],[0,-2],[-2,-3],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-5],[-1,-1],[0,-2],[-4,-12],[-1,-5],[-1,-3],[-1,-3],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-5],[0,-3],[1,-3],[0,-3],[-1,-3],[0,-1],[-1,-3],[-1,-2],[-1,-4],[-1,-5],[-4,-6],[-1,-2],[-3,-5],[-2,-3],[-2,-4],[-1,-3],[0,-1],[1,-8],[0,-5],[0,-2],[0,-8],[-1,-5],[0,-3],[-1,-2],[-1,-6],[0,-3],[-1,-5],[-2,-4],[0,-4],[0,-2],[1,-2],[1,-3],[-1,-2],[-1,-3],[-1,-2],[0,-3],[1,-5],[1,-4],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-3],[2,-2],[3,-2],[3,-3],[1,-2],[0,-2],[1,-1],[0,-2],[1,-1],[0,-4],[-1,-6],[-2,-5],[-5,-14],[0,-1],[0,-3],[1,-3],[0,-1],[-1,-5],[0,-5],[0,-2],[0,-1],[5,-8],[4,-7],[4,-4],[7,-6],[4,-3],[3,-3],[3,-4],[2,-2],[2,-1],[4,-5],[3,-3],[1,-1],[2,-3],[2,-3],[1,-3],[1,-5],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-3],[0,-4],[-1,-4],[-2,-4],[0,-1],[-2,-4],[-3,-4],[-3,-4],[-2,-3],[-1,-4],[-1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-5],[1,-2],[0,-2],[1,-3],[1,0],[2,-4],[1,0],[3,-5],[1,-3],[2,-5],[1,-5],[1,-2],[1,-2],[3,-2],[2,-2],[4,-2],[1,-1],[2,-2],[1,0],[5,-6],[1,-3],[0,-3],[0,-2],[-1,-2],[0,-3],[0,-1],[1,-5],[0,-1],[0,-3],[-3,0],[-3,0],[-32,0],[-2,0],[-4,0],[-16,0],[-5,0],[-22,0],[-6,0],[-30,0],[-192,0],[-4,0],[-188,0],[-115,0],[-40,0]],[[7102,2],[1,3],[-1,3],[1,5],[-1,12],[0,7],[0,2],[0,5],[0,2],[0,6],[0,3],[0,2],[0,13],[0,5],[0,2],[0,2],[0,24],[0,3],[0,8],[0,10],[0,1],[0,4],[0,2],[0,1],[0,2],[0,1],[0,9],[0,4],[0,2],[0,4],[0,2],[0,4],[0,3],[0,10],[0,5],[0,9],[0,16],[0,11],[0,4],[0,5],[0,7],[0,17],[0,4],[0,14],[0,32],[0,4],[0,1],[0,1],[0,3],[0,3],[0,28],[0,14],[0,2],[1,10],[0,14],[0,3],[0,9],[0,10],[0,19],[0,8],[0,3],[0,19],[0,7],[0,16],[0,4],[0,3],[0,23],[0,3],[0,5],[0,7],[0,2],[-1,16],[0,14],[0,16],[0,7],[0,6],[1,1],[0,3],[0,3],[0,8],[0,3]],[[7102,2],[-181,0],[-178,0],[-91,0],[-4,0],[-12,0],[-12,0],[-21,0],[-29,0],[-9,0],[-41,0],[-4,0],[-241,0],[-6,0],[-6,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-5,0],[-50,0],[-4,0],[-1,0],[-2,0],[-1,0],[-8,0],[-1,0],[-6,0],[-5,0]],[[3075,592],[0,-3],[0,-2],[0,-13],[0,-6],[0,-25],[0,-6],[0,-18],[0,-8],[0,-4],[0,-5],[-1,-8],[1,-24],[0,-8],[0,-5],[0,-10],[0,-2],[0,-19],[0,-6],[0,-21],[0,-3],[0,-2],[0,-3],[0,-20],[0,-13],[0,-4],[0,-7],[0,-5],[0,-3],[0,-17],[0,-25],[0,-6],[0,-5],[0,-1],[-1,-12],[0,-10],[0,-3],[0,-1],[0,-11],[0,-12],[0,-12],[0,-11],[0,-2],[0,-12],[0,-25],[0,-7],[0,-17],[0,-12],[0,-13],[0,-10],[0,-15],[0,-13],[0,-12],[0,-15],[0,-9],[1,-12],[0,-13],[-2,-24]],[[3073,2],[-26,0],[-35,0],[-15,0],[-34,0],[-50,0],[-19,0],[-141,0],[-3,0],[-9,0],[-14,0],[-15,0],[-4,0],[-55,0],[-31,0],[-96,0],[-139,-1],[-38,0],[-48,1]],[[4629,0],[-16,0],[-49,0],[-107,0],[-30,0],[-118,0],[-95,0],[-141,1],[-11,0],[-23,0],[-57,0],[-122,0],[-3,0]],[[3857,1],[0,5],[0,19],[0,25],[0,22],[0,3],[0,24],[0,25],[0,12],[0,2],[0,6],[0,4],[0,6],[0,13],[0,6],[0,3],[0,7],[0,2],[0,25],[0,3],[0,10],[0,8],[0,28],[0,4],[0,1],[0,7],[0,6],[0,6],[0,2],[0,11],[0,24],[0,11],[0,2],[0,6],[0,24],[0,7],[0,1],[0,6],[0,4],[0,9],[0,4],[0,25],[0,3],[0,1],[0,3],[0,17],[0,3],[0,22],[0,21],[0,4],[0,24],[0,14],[0,11],[0,18],[0,3],[0,3],[1,26]],[[3857,1],[-3,0],[-61,0],[-188,0],[-5,0],[-4,1],[-28,0],[-122,0],[-13,0],[-42,0],[-1,0],[-144,0],[-84,0],[-83,0],[-6,0]],[[2472,9344],[10,0],[24,0],[13,0],[3,0],[10,0],[117,0],[40,0],[0,249],[0,41],[0,10],[0,9],[0,27],[0,28],[0,30],[0,28],[0,1],[0,37],[0,31],[0,33],[0,26],[0,1],[0,9],[0,3],[0,25],[0,4],[0,6],[0,21],[0,8],[0,4],[0,12],[0,5],[0,3],[0,4],[4,-3],[1,-4],[4,0],[2,-3],[4,0],[3,-4],[9,-5],[5,-5],[16,-6],[8,-1],[9,-2],[0,-3],[17,-4],[41,-13],[11,0],[46,5],[12,8],[20,14],[19,-2],[22,4],[7,-3],[55,-31],[3,-3],[4,-3],[33,-23],[31,-15],[23,0],[26,-5],[-11,-21],[-1,-25],[5,-17],[20,-79],[11,-40],[-1,-28],[9,-35],[5,-20],[17,-71],[2,-6],[6,-7],[24,-29],[33,-144],[38,-163],[8,-31],[1,-7],[1,-1],[2,-10],[2,-9],[0,-8],[-1,-12],[-6,-3],[-4,-3],[1,-4],[1,-5],[-3,-17],[0,-1],[5,-13],[1,-2],[3,-7],[-5,-3],[-2,-1],[-2,-1],[-1,0],[-5,-3],[-6,-6],[-3,-13],[12,-26],[-1,-16],[1,-6],[1,-11],[1,-6],[3,-13],[5,-5],[14,-6],[5,-4],[7,-6],[9,-9],[2,-2],[5,-3],[4,-3],[5,-7],[1,-2],[2,-3],[0,-3],[0,-5],[5,-5],[10,-3],[4,-1],[1,0],[3,0],[11,-3],[11,-9],[12,-6],[6,-6],[7,-9],[1,-1],[4,-2],[24,-4],[17,2],[8,-3],[5,-4],[9,-16],[7,-3],[8,1],[3,0],[7,-1],[2,-1],[1,0],[5,0],[5,0],[12,-4],[9,0],[8,-1],[20,-2],[10,-2],[8,-3],[6,-2],[7,1],[10,3],[12,11]],[[9987,7655],[-3,-4],[-4,-1],[-5,-1],[-3,0],[-1,0],[-1,0],[-4,0],[-4,-1],[-1,3],[1,0],[1,4],[4,1],[2,-2],[1,0],[1,1],[1,0],[2,2],[5,0],[3,-1],[2,0],[3,-1]],[[9889,7645],[0,1]],[[9889,7645],[2,1],[2,-1],[1,-1],[3,1],[3,0],[1,0],[1,1],[2,-1],[1,0],[3,0],[2,1],[2,0],[2,1],[2,0],[5,1],[3,0],[3,0],[2,-1],[6,0],[2,-1],[1,0],[4,0],[3,0],[1,1],[2,1],[1,1],[3,0],[3,0],[2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-4,-1],[-1,0],[-5,-2],[-3,0],[-1,0],[-1,-1],[-3,1],[-3,-1],[-3,-1],[-2,-1],[-4,-1],[-5,-1],[-1,1],[-5,0],[-1,0],[-3,0],[-1,-1],[-2,0],[-4,0],[-4,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-3,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[0,-6],[-3,-2],[-3,-1],[-4,-2],[-5,-2],[-4,-1],[-1,0],[-1,-1],[-2,1],[-2,0],[-2,0],[-1,0],[-4,-1],[-1,-1],[-1,-1],[-2,1],[-1,0],[-1,0],[-4,1],[-2,0],[-1,-1],[-2,0],[-1,3],[0,1],[-4,4],[2,2],[4,2],[2,2],[1,3],[0,1],[-3,3],[-2,2],[-3,2],[-4,2],[-5,0],[-4,-2],[-2,-2],[-1,-2],[-2,-1],[-3,-2],[-4,-3],[-4,-1],[-3,-1],[-3,-2],[-1,-1],[-1,-2],[-3,-4],[-2,-2],[-5,-3],[1,-7],[1,-6],[1,-3],[2,-4],[1,-1],[1,-1],[1,-2],[1,-4],[1,-2],[2,-4],[0,-5],[1,-4],[-3,1],[-2,1],[-1,1],[-2,2],[-5,3],[-3,3],[-1,1],[0,5],[-2,1],[-2,2],[-1,0],[-1,1],[-6,0],[-6,0],[-2,0],[-4,-1],[-5,-1],[-4,-1],[-3,-1],[0,-1],[-2,0],[-2,-3],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-2,-1],[-2,-4],[0,-3],[-1,-2],[1,0],[3,-2],[4,-1],[2,-1],[1,-1],[-1,-3],[0,-2],[1,-4],[-4,-2],[-3,-1],[-4,-1],[-2,0],[-2,0],[-7,-3],[-6,-3],[-4,-4],[-8,-4],[-1,-4],[-3,-3],[-2,-1],[-2,0],[-4,-1],[-4,-3],[-4,-3],[-3,-3],[-4,-5],[-4,-4],[-5,-5],[-5,-4],[-4,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-3,-2],[-3,-2],[-4,-2],[0,-4],[-1,-1],[-3,-1],[-6,-2],[-4,0],[-4,-1],[-1,0],[-2,-2],[-4,-3],[-3,-2],[-4,-1],[-3,-2],[-5,-3],[-4,-3],[-4,-2],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-3,-3],[-3,-2],[-3,-1],[-3,0],[-2,-1],[-2,-2],[-3,0],[-1,0],[-3,-2],[-3,0],[-1,0],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[0,1],[-3,0],[-4,0],[-3,-3],[0,-1],[0,-1],[-1,-2],[-2,1],[-3,1],[-1,0],[-2,1],[-2,0],[-2,-1],[0,-1],[0,-1],[1,-2],[-4,-2],[-2,-1],[-2,-1],[-2,0],[-1,1],[-2,0],[-1,-1],[-2,0],[-2,0],[-3,-1],[-2,1],[-2,0],[-4,0],[-5,-2],[-1,-1],[-5,-3],[-3,-3],[-2,-3],[-3,0],[0,-1],[-1,0],[-3,-1],[-2,-3],[-1,1],[-2,2],[-2,1],[-2,2],[-2,0],[-3,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-3,-1],[-3,0],[-3,-1],[-1,-3],[-2,-1],[-1,0],[-3,0],[-2,2],[-4,0],[-3,-2],[-2,-1],[-2,-1],[-5,-5],[1,-2],[0,-1],[1,-3],[2,-6],[-3,-1],[-4,0],[-4,1],[-1,0],[0,-1],[0,-2],[2,-3],[1,0],[-3,-2],[-1,-1],[-2,-1],[-2,0],[-2,-3],[-5,-2],[-7,-2],[-5,-1],[-2,1],[-1,0],[-6,0],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-6,0],[-1,-5],[4,-4],[-3,-2],[-3,-2],[-1,0],[-5,-3],[-2,0],[-3,0],[-3,-1],[-4,-2],[-1,0],[-2,0],[-5,-1],[-3,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-5,-1],[-4,-2],[-3,-1],[-4,-1],[-3,-2],[-1,-1],[-4,-1],[-1,0],[-2,-2],[-2,-2],[-4,-1],[-1,0],[-5,0],[-5,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-2,-1],[-2,1],[-1,0],[-5,-2],[-1,0],[-4,-2],[-1,-1],[-1,-1],[-1,-1],[-3,-1],[-2,0],[-2,-1],[-1,0],[-4,0],[-3,0],[-3,-1],[-4,0],[-3,-1],[-1,-1],[-3,-2],[-2,-3],[-1,-1],[-2,-1],[-2,-4],[0,-1],[-1,-2],[-3,1],[-2,0],[-1,0],[-3,0],[-3,-1],[-4,-1],[-2,-1],[-2,-1],[-3,0],[-1,-1],[-3,-2],[-3,-1],[-5,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-3,0],[-2,1],[-1,0],[-1,0],[-2,0],[-5,0],[-4,0],[-4,-1],[-5,-1],[-7,0],[-6,-1],[-6,-1],[-4,-1],[-1,0],[-4,0],[-3,-2],[-2,0],[-3,-2],[-3,-2],[-3,-1],[-2,-1],[-3,-1],[-4,-2],[-4,-3],[0,-1],[-3,-3],[-2,-4],[-2,-3],[0,-1],[-2,-2],[-4,0],[-3,-1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-9,1],[-3,1],[-1,0],[-4,1],[-4,0],[-4,0],[-5,-1],[-2,0],[-6,-1],[-7,-2],[-5,-1],[-4,-1],[-9,-2],[-5,-1],[-5,-2],[-5,-3],[-1,-1],[-2,-1],[-1,-1],[-14,-4],[-3,-1],[-2,0],[-1,0],[-7,-2],[-5,-3],[-3,-1],[-2,-1],[-2,-1],[-1,0],[-5,-2],[-4,-1],[-4,-2],[-6,0],[-5,0],[-3,-1],[-2,-1],[-1,0],[-3,-3],[-3,0],[-1,0],[-4,-3],[-2,0],[-1,-1],[-3,-3],[-3,-3],[-4,2],[-4,0],[-1,-1],[-3,-4],[-3,-1],[-1,0],[-1,0],[-3,0],[-2,-1],[-3,0],[-1,0],[-4,-2],[-4,0],[-1,0],[-6,-1],[-3,0],[-4,0],[-3,-1],[-2,0],[-3,-1],[-1,0],[-3,0],[-4,-1],[-5,0],[-5,-1],[-3,-4],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-3,0],[-4,0],[-4,-1],[-6,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-4,-2],[-5,-1],[-1,0],[-2,0],[-3,-1],[-5,-1],[-3,-2],[-3,-6],[1,-1],[0,-2],[-2,-2],[-2,-1],[-3,-1],[-1,0],[-2,-1],[-4,0],[-4,0],[-4,-2],[-1,0],[-3,0],[-2,-1],[-5,0],[-4,-1],[-5,-1],[-3,-1],[-5,-2],[-3,-1],[-2,0],[-1,0],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-5,-2],[-3,-1],[-5,-2],[-5,-1],[-2,-1],[-4,-1],[-4,-1],[-5,-2],[-4,0],[-5,-1],[-5,-1],[-5,-2],[-6,-2],[-3,-2],[-1,-1],[-3,-3],[-4,-3],[-2,-3],[0,-1],[-3,-3],[-1,-3],[-1,0],[-3,-4],[-5,-2],[-2,-1],[-2,-1],[-4,-1],[-4,-1],[-3,-1],[-4,-2],[-5,-2],[-2,0],[-2,-1],[-3,-2],[-3,-1],[-4,-2],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-3,-1],[-1,-1],[-1,-1],[-2,-1],[-4,-2],[-2,-1],[-2,-1],[-3,-2],[-5,-2],[-1,0],[-2,-1],[-3,-1],[-4,-3],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,-1],[-3,-2],[-1,0],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-6,-3],[-2,-1],[-1,-1],[-4,-1],[-3,-1],[-1,-1],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-3,-2],[-4,-3],[-3,-1],[-2,-2],[-1,-1],[-2,0],[-3,-1],[-3,-1],[-2,-1],[-1,-1],[-4,-1],[-3,-1],[-3,-1],[-2,-1],[-7,-1],[-3,-1],[-1,-1],[-4,-2],[-1,-1],[-2,-1],[-3,-1],[-3,-1],[-1,0],[-1,-1],[-3,-2],[-2,0],[-2,-1],[-1,-1],[-1,0],[-3,-2],[-2,-1],[0,-1],[-2,-1],[-3,-2],[-4,-2],[-4,-1],[-4,-2],[-6,-2],[-3,-2],[-1,0],[-5,-4],[-4,-4],[-3,-1],[-5,-3],[-4,-2],[-3,-2],[-2,-1],[-4,-4],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[0,-1],[-3,-1],[-8,-3],[-3,-2],[-1,0],[-2,-1],[-2,-2],[-3,-2],[-2,-2],[-2,-1],[-3,-3],[-1,-1],[-3,-4],[-3,-3],[-3,-2],[-4,-3],[-4,-3],[-6,-3],[-2,-2],[-3,-2],[-2,-1],[-3,-2],[-5,-4],[-6,-3],[-2,-1],[-2,-2],[-3,-3],[-5,-2],[-1,0],[0,-1],[-3,-1],[-1,-1],[-1,-1],[-3,-3],[-5,-4],[-4,-4],[-2,-1],[-3,-3],[-3,-1],[-1,0],[-4,-2],[-4,-2],[-5,-2],[-2,-1],[-1,-1],[-3,-1],[-2,-2],[-2,-3],[-1,-3],[-2,-1],[-1,0],[-2,-1],[-4,-4],[-6,-3],[-5,-3],[-2,-3],[-2,0],[-2,-2],[-3,-2],[0,-1],[-3,-2],[-1,-1],[-4,-3],[-4,-3],[0,-1],[-3,-2],[-3,-3],[-2,-2],[-3,-4],[-3,-1],[-2,-1],[-10,-9],[-1,-1],[-3,-3],[-4,-4],[-3,-2],[0,-1],[-6,-2],[-1,-1],[-3,-1],[-6,-3],[-3,-3],[-2,-3],[-2,-1],[-1,-1],[-3,-1],[-2,-1],[-1,-1],[-4,-3],[-2,-1],[-2,-2],[-3,-2],[-4,-5],[-4,-3],[-4,-4],[-3,-2],[-3,-2],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-4,-3],[-1,-4],[-4,-2],[-3,-2],[-1,-1],[-4,-2],[-4,-3],[-2,0],[-2,-1],[-3,-3],[-2,-3],[-2,-2],[-2,-3],[-2,0],[-3,-3],[-2,-2],[-1,-2],[-1,0],[-3,-1],[-4,-2],[-3,-1],[-2,-2],[-1,-1]],[[8003,7968],[1,0],[3,1],[2,0],[3,2],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[3,3],[3,1],[2,2],[1,2],[13,4],[-1,2],[-1,1],[0,1],[1,0],[2,2],[1,0],[1,1],[6,5],[24,20],[44,12],[1,0],[20,5],[11,2],[1,0],[3,0],[2,2],[1,2],[4,3],[3,4],[11,6],[17,9],[0,-2],[5,-8],[8,-4],[11,0],[1,1],[24,10],[5,-1],[1,-5],[5,-2],[1,-5],[1,-4],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[2,-9],[1,-9],[0,-1],[2,-24],[0,-6],[1,-21],[-2,-15],[0,-2],[0,-1],[1,-3],[2,-1],[2,-1],[2,0],[3,2],[3,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[2,1],[1,0],[2,-1],[1,-1],[2,-1],[2,-2],[2,0],[8,-2],[2,-1],[2,-2],[2,-2],[1,-5],[1,-3],[0,-1],[1,-8],[1,-3],[2,-3],[3,-3],[1,-1],[1,0],[8,1],[3,1],[5,3],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[0,-2],[-2,-17],[-1,-3],[-2,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[1,-1],[1,-1],[1,0],[7,-1],[1,0],[3,0],[1,0],[1,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[1,0],[3,-2],[3,-2],[5,-4],[1,-1],[1,-2],[3,-4],[0,-1],[2,-1],[0,-1],[7,-6],[0,-4],[0,-2],[2,-6],[5,-12],[0,-3],[2,-2],[11,-11],[13,6],[49,3],[22,7],[48,5],[5,0],[5,1],[18,14],[7,0],[2,0],[0,-1],[1,0],[2,1],[0,1],[2,-1],[2,1],[2,1],[1,0],[8,4],[19,3],[1,1],[0,2],[1,1],[4,2],[1,1],[0,1],[5,3],[3,0],[4,-4],[1,-1],[6,0],[8,3],[8,-2],[4,-8],[-12,-11],[-6,-6],[3,-8],[0,-1],[3,-3],[1,-1],[2,-2],[8,-3],[51,5],[9,-3],[1,1],[2,2],[2,0],[7,0],[3,0],[7,2],[6,-1],[3,0],[3,1],[2,2],[6,5],[2,1],[9,4],[2,1],[3,0],[2,-1],[15,-4],[6,-3],[5,-4],[6,-4],[36,11],[10,0],[6,-4],[1,-1],[8,-3],[3,-2],[3,-3],[3,-4],[4,-3],[3,-2],[3,0],[2,0],[1,0],[2,2],[2,0],[4,2],[3,0],[7,1],[17,-1],[3,1],[4,1],[2,1],[2,2],[4,4],[3,2],[3,1],[4,2],[10,2],[10,2],[3,0],[5,0],[3,-1],[6,-3],[1,0],[7,-6],[5,0],[19,7],[13,0],[4,-1],[9,-1],[26,9],[11,2],[12,-3],[7,-1],[20,4],[8,-1],[16,8],[16,-5],[17,1],[2,1],[1,0],[7,3],[4,0],[7,-1],[3,-1],[2,-2],[4,-3],[5,-2],[1,-1],[1,-2],[8,-2],[32,0],[22,-5],[10,-5],[12,-4],[9,-6],[1,-1],[2,0],[2,-1],[2,-1],[3,-1],[0,-1],[1,-1],[3,2],[2,-2],[11,-3],[8,-4],[5,-22],[6,-8],[5,1],[1,2],[1,-1],[2,-2],[1,-3],[3,0],[0,-2],[6,-8],[2,-3],[6,-15],[-3,-11],[-1,-4],[0,-2],[0,-4],[1,-4],[1,-5],[2,-4],[7,-5],[6,-2],[1,0],[1,0],[5,-2],[3,-2],[2,-2],[5,-7],[2,-2],[2,-1],[13,-5],[3,-1],[2,0],[1,0],[1,1],[1,1],[1,2],[2,1],[2,1],[5,-1],[6,1],[1,0],[2,-1],[2,-1],[5,-9],[5,-5],[0,-2],[1,-3],[0,-1],[4,-4],[0,-1],[1,-2],[1,-1],[5,-2],[4,-3],[3,-2],[9,-4],[2,-1],[5,-3],[3,-1],[3,-1],[5,-1],[8,-1],[12,-1],[3,1],[3,1],[4,3],[2,1],[4,1],[10,2],[3,1],[1,0],[3,1],[3,1],[1,1],[2,2],[1,2],[0,1],[2,2],[0,2],[0,2],[0,3],[1,1],[2,0],[7,-3],[2,0],[1,0],[2,0],[2,2],[2,4],[1,1],[4,6],[2,3],[1,3],[2,3],[2,2],[2,1],[6,2],[4,0],[2,-1],[3,-1],[1,-1],[3,0],[3,0],[4,1],[4,3],[3,1],[3,0],[7,1],[3,0],[3,2],[4,2],[1,1],[5,0],[7,2],[4,0],[8,1],[10,-1],[4,-1],[4,-1],[2,-1],[2,0],[5,0],[2,0],[1,0],[3,-2],[2,0],[3,0],[5,0],[1,0],[2,-1],[0,-1],[0,-1],[-2,-2],[0,-2],[0,-1],[1,0],[1,0],[3,2],[1,0],[1,-2],[2,-6],[1,-1],[1,-1],[7,-1],[2,-1],[3,-2],[2,-1],[3,0],[2,1],[10,3],[5,1],[7,0],[7,1],[3,0],[3,-1],[1,0],[4,-2],[2,-1],[3,1],[3,1],[1,0],[3,0],[1,0],[2,-1],[2,-3],[3,-3],[2,-1],[2,0],[2,0],[5,1],[2,0],[4,-1],[1,0],[1,1],[2,4],[0,1],[2,1],[4,2],[7,2],[3,0],[4,0],[3,1],[3,2],[5,5],[1,0],[1,1],[1,-1],[1,-2],[0,-3],[1,-5],[0,-1],[1,-3],[2,-2],[6,-2],[10,-3],[7,-3],[2,-1],[1,-1],[1,-1],[2,-2],[2,-2],[1,-1],[1,-1],[3,0],[5,1],[4,2],[3,1]],[[9778,7566],[-5,-3],[-1,1],[-4,1],[-2,1],[3,4],[4,-1],[3,0],[2,-3]],[[9871,7578],[-2,0],[-2,0],[2,6],[6,3],[4,2],[4,1],[4,1],[4,-2],[-5,-4],[-3,0],[-6,-3],[-2,-1],[-1,-1],[-2,-1],[-1,-1]],[[9872,7594],[-5,-1],[-1,4],[5,3],[2,4],[2,6],[5,3],[3,-1],[5,-3],[-1,-1],[-3,-2],[-2,-2],[-2,-5],[-5,-3],[-3,-2]],[[6496,5449],[-3,-3],[-1,-5],[2,-6],[5,-4],[8,0],[7,-1],[5,-2],[4,-2],[1,-1],[1,-3],[0,-5],[-1,-5],[-1,-2],[-5,-4],[-4,-3],[-8,-6],[-8,-8],[-5,-4],[-2,-5],[-1,-6],[2,-5]],[[6533,5472],[-3,0],[-7,-2],[-4,-1],[-4,-2],[-9,-6],[-6,-6],[-1,-2],[-1,-1]],[[6623,5525],[-11,-1],[-12,-5],[-16,-9],[-9,-7],[-1,-1],[-3,-7],[-1,-2],[-1,-6],[0,-1],[0,-4],[-2,-4],[-2,-7],[-4,-4],[-5,-1],[-1,-1],[-4,3],[-5,1],[-8,2]],[[6732,5450],[-4,-2],[-1,0],[-5,1],[-10,6],[-23,23],[-32,30],[-14,12],[-8,4],[-7,1]],[[9889,7646],[1,1],[5,4],[6,1],[91,19],[7,-2],[-11,-22],[-77,-155],[-523,-1050],[-54,2],[-497,10],[-357,8],[-1,0],[-461,-279],[-6,-3],[-182,-110],[-397,-235],[-106,-60],[-19,-10],[-159,-86],[-416,-228]]],"transform":{"scale":[0.0007755894505450559,0.000588555786378626],"translate":[-97.23908448799989,43.499500660000194]}} |