Skip to content

Instantly share code, notes, and snippets.

@plablo09
Last active July 5, 2017 09:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plablo09/cdea0d2b01f2fcd29baf to your computer and use it in GitHub Desktop.
Save plablo09/cdea0d2b01f2fcd29baf to your computer and use it in GitHub Desktop.
Cartograma simple

Cartograma Simple

Aquí puedes ver la implementación más sencilla de un cartograma en d3.js. Lo único que hace el script es crear un mapa base y actualizar los polígonos de acuerdo al valor de una variable escalada

(function(exports) {
/*
* d3.cartogram is a d3-friendly implementation of An Algorithm to Construct
* Continuous Area Cartograms:
*
* <http://chrisman.scg.ulaval.ca/G360/dougenik.pdf>
*
* It requires topojson to decode TopoJSON-encoded topologies:
*
* <http://github.com/mbostock/topojson/>
*
* Usage:
*
* var cartogram = d3.cartogram()
* .projection(d3.geo.albersUsa())
* .value(function(d) {
* return Math.random() * 100;
* });
* d3.json("path/to/topology.json", function(topology) {
* var features = cartogram(topology, topology.objects.OBJECTNAME.geometries);
* d3.select("svg").selectAll("path")
* .data(features)
* .enter()
* .append("path")
* .attr("d", cartogram.path);
* });
*/
d3.cartogram = function() {
function carto(topology, geometries) {
// copy it first
topology = copy(topology);
// objects are projected into screen coordinates
// project the arcs into screen space
var tf = transformer(topology.transform),x,y,len1,i1,out1,len2=topology.arcs.length,i2=0,
projectedArcs = new Array(len2);
while(i2<len2){
x = 0;
y = 0;
len1 = topology.arcs[i2].length;
i1 = 0;
out1 = new Array(len1);
while(i1<len1){
topology.arcs[i2][i1][0] = (x += topology.arcs[i2][i1][0]);
topology.arcs[i2][i1][1] = (y += topology.arcs[i2][i1][1]);
out1[i1] = projection === null ? tf(topology.arcs[i2][i1]) : projection(tf(topology.arcs[i2][i1]));
i1++;
}
projectedArcs[i2++]=out1;
}
// path with identity projection
var path = d3.geo.path()
.projection(null);
var objects = object(projectedArcs, {type: "GeometryCollection", geometries: geometries})
.geometries.map(function(geom) {
return {
type: "Feature",
id: geom.id,
properties: properties.call(null, geom, topology),
geometry: geom
};
});
var values = objects.map(value),
totalValue = d3.sum(values);
// no iterations; just return the features
if (iterations <= 0) {
return objects;
}
var i = 0;
while (i++ < iterations) {
var areas = objects.map(path.area);
var totalArea = d3.sum(areas),
sizeErrorsTot =0,
sizeErrorsNum=0,
meta = objects.map(function(o, j) {
var area = Math.abs(areas[j]), // XXX: why do we have negative areas?
v = +values[j],
desired = totalArea * v / totalValue,
radius = Math.sqrt(area / Math.PI),
mass = Math.sqrt(desired / Math.PI) - radius,
sizeError = Math.max(area, desired) / Math.min(area, desired);
sizeErrorsTot+=sizeError;
sizeErrorsNum++;
// console.log(o.id, "@", j, "area:", area, "value:", v, "->", desired, radius, mass, sizeError);
return {
id: o.id,
area: area,
centroid: path.centroid(o),
value: v,
desired: desired,
radius: radius,
mass: mass,
sizeError: sizeError
};
});
var sizeError = sizeErrorsTot/sizeErrorsNum,
forceReductionFactor = 1 / (1 + sizeError);
// console.log("meta:", meta);
// console.log(" total area:", totalArea);
// console.log(" force reduction factor:", forceReductionFactor, "mean error:", sizeError);
var len1,i1,delta,len2=projectedArcs.length,i2=0,delta,len3,i3,centroid,mass,radius,rSquared,dx,dy,distSquared,dist,Fij;
while(i2<len2){
len1=projectedArcs[i2].length;
i1=0;
while(i1<len1){
// create an array of vectors: [x, y]
delta = [0,0];
len3 = meta.length;
i3=0;
while(i3<len3) {
centroid = meta[i3].centroid;
mass = meta[i3].mass;
radius = meta[i3].radius;
rSquared = (radius*radius);
dx = projectedArcs[i2][i1][0] - centroid[0];
dy = projectedArcs[i2][i1][1] - centroid[1];
distSquared = dx * dx + dy * dy;
dist=Math.sqrt(distSquared);
Fij = (dist > radius)
? mass * radius / dist
: mass *
(distSquared / rSquared) *
(4 - 3 * dist / radius);
delta[0]+=(Fij * cosArctan(dy,dx));
delta[1]+=(Fij * sinArctan(dy,dx));
i3++;
}
projectedArcs[i2][i1][0] += (delta[0]*forceReductionFactor);
projectedArcs[i2][i1][1] += (delta[1]*forceReductionFactor);
i1++;
}
i2++;
}
// break if we hit the target size error
if (sizeError <= 1) break;
}
return {
features: objects,
arcs: projectedArcs
};
}
var iterations = 8,
projection = d3.geo.albers(),
properties = function(id) {
return {};
},
value = function(d) {
return 1;
};
// for convenience
carto.path = d3.geo.path()
.projection(null);
carto.iterations = function(i) {
if (arguments.length) {
iterations = i;
return carto;
} else {
return iterations;
}
};
carto.value = function(v) {
if (arguments.length) {
value = d3.functor(v);
return carto;
} else {
return value;
}
};
carto.projection = function(p) {
if (arguments.length) {
projection = p;
return carto;
} else {
return projection;
}
};
carto.feature = function(topology, geom) {
return {
type: "Feature",
id: geom.id,
properties: properties.call(null, geom, topology),
geometry: {
type: geom.type,
coordinates: topojson.feature(topology, geom).geometry.coordinates
}
};
};
carto.features = function(topo, geometries) {
return geometries.map(function(f) {
return carto.feature(topo, f);
});
};
carto.properties = function(props) {
if (arguments.length) {
properties = d3.functor(props);
return carto;
} else {
return properties;
}
};
return carto;
};
var transformer = d3.cartogram.transformer = function(tf) {
var kx = tf.scale[0],
ky = tf.scale[1],
dx = tf.translate[0],
dy = tf.translate[1];
function transform(c) {
return [c[0] * kx + dx, c[1] * ky + dy];
}
transform.invert = function(c) {
return [(c[0] - dx) / kx, (c[1]- dy) / ky];
};
return transform;
};
function angle(a, b) {
return Math.atan2(b[1] - a[1], b[0] - a[0]);
}
function distance(a, b) {
var dx = b[0] - a[0],
dy = b[1] - a[1];
return Math.sqrt(dx * dx + dy * dy);
}
function projector(proj) {
var types = {
Point: proj,
LineString: function(coords) {
return coords.map(proj);
},
MultiLineString: function(arcs) {
return arcs.map(types.LineString);
},
Polygon: function(rings) {
return rings.map(types.LineString);
},
MultiPolygon: function(rings) {
return rings.map(types.Polygon);
}
};
return function(geom) {
return types[geom.type](geom.coordinates);
};
}
function cosArctan(dx,dy){
if (dy===0) return 0;
var div = dx/dy;
return (dy>0)?
(1/Math.sqrt(1+(div*div))):
(-1/Math.sqrt(1+(div*div)));
}
function sinArctan(dx,dy){
if (dy===0) return 1;
var div = dx/dy;
return (dy>0)?
(div/Math.sqrt(1+(div*div))):
(-div/Math.sqrt(1+(div*div)));
}
function copy(o) {
return (o instanceof Array)
? o.map(copy)
: (typeof o === "string" || typeof o === "number")
? o
: copyObject(o);
}
function copyObject(o) {
var obj = {};
for (var k in o) obj[k] = copy(o[k]);
return obj;
}
function object(arcs, o) {
function arc(i, points) {
if (points.length) points.pop();
for (var a = arcs[i < 0 ? ~i : i], k = 0, n = a.length; k < n; ++k) {
points.push(a[k]);
}
if (i < 0) reverse(points, n);
}
function line(arcs) {
var points = [];
for (var i = 0, n = arcs.length; i < n; ++i) arc(arcs[i], points);
return points;
}
function polygon(arcs) {
return arcs.map(line);
}
function geometry(o) {
o = Object.create(o);
o.coordinates = geometryType[o.type](o.arcs);
return o;
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs) { return arcs.map(polygon); }
};
return o.type === "GeometryCollection"
? (o = Object.create(o), o.geometries = o.geometries.map(geometry), o)
: geometry(o);
}
function reverse(array, n) {
var t, j = array.length, i = j - n; while (i < --j) t = array[i], array[i++] = array[j], array[j] = t;
}
})(this);
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00024849954619621565,0.0002295760460162251],"translate":[-117.12417455726775,14.532098361949187]},"arcs":[[[61419,32655],[-1,-131],[-12,-39],[-106,-58],[-27,-79],[30,-33],[19,-79],[24,49],[30,11],[63,-15],[46,5],[40,-11],[-11,-149],[-170,12],[-562,-208],[-4,-49],[-71,9],[0,-77],[-13,-55],[-54,-29],[-11,-63],[-23,-18],[-34,-66],[-44,20],[-47,-41],[24,-46],[-52,-24],[-2,-28],[-29,-25],[-28,-57],[-19,0],[-18,-46],[-44,-23],[-23,-66],[-51,-23],[-47,10],[-20,20],[-26,-82],[-146,29],[0,-36],[-51,-130],[-43,-21],[-54,14],[-98,-5],[-17,45],[-98,10],[5,-52],[29,-7],[-59,-115],[-44,15],[-19,-34],[-165,89],[-11,34],[-70,14],[-83,25],[-23,32],[-47,21],[-67,8],[-31,33],[-31,74],[-46,-1],[-298,151],[-51,48],[-74,-5],[-92,7],[-2,48],[-32,-17],[-53,20],[-62,51],[-41,-24],[-29,15],[-35,-13],[-47,1],[-30,-41],[-48,-3],[-27,-48],[4,-55],[-71,5],[-36,-47],[-50,-15],[-40,19]],[[57863,31310],[-108,77],[-15,-14],[-66,89],[-55,39],[-44,11],[-13,52],[-50,85],[-43,13],[-41,-8],[24,101],[0,48],[-43,0],[-26,45],[-26,11],[-7,45],[38,32],[11,72],[20,18],[48,183],[26,61],[18,9],[45,71],[3,23],[62,140],[56,86],[30,4],[10,51],[83,77],[31,74],[-10,45],[43,30],[81,42],[26,3],[110,67],[4,75],[27,28],[-12,31],[21,36],[27,11],[20,51],[-26,70],[39,32],[-12,48],[56,-12],[38,57],[0,39],[18,66],[-115,75],[5,201],[570,-4],[82,13],[22,45],[125,22],[13,43],[24,18],[0,37],[-38,23],[19,57],[60,9],[74,23],[179,29],[38,-14],[77,105],[-14,16],[167,-1],[1,130],[36,98],[1,70],[55,12],[33,-173],[64,-24],[41,-67],[55,-51],[-7,-56],[96,1],[19,-14],[46,6],[0,-45],[139,0],[-13,-53],[124,-14],[-14,-247],[188,-22],[5,-20],[64,36],[56,74],[76,-26],[22,-38],[56,33],[29,-58],[3,-72],[30,-108],[78,-12],[11,-34],[-5,-286],[-115,3],[-59,-67],[109,3],[-35,-106],[71,-26],[89,-13],[74,-42],[67,-49],[281,-199],[68,-55],[11,-55]],[[7701,60286],[15,-26],[45,-22],[-7,-112],[19,-52],[30,-46],[39,-29],[-8,-35],[10,-47],[31,-81],[6,-36],[-26,-69],[-17,-125],[35,-66],[34,-36],[12,-114],[-15,-70],[15,-42],[-40,-48],[-32,-24],[-47,-81],[-6,-81],[26,-76],[-30,-40],[0,-35],[30,-49],[-29,-29],[-50,24],[-50,-2],[-63,-42],[-13,21],[-91,14],[10,16],[-21,71],[-32,73],[-45,52],[-47,29],[-63,12],[-101,-41],[-11,-26],[-47,1],[-22,-26],[-28,20],[16,38],[-6,76],[10,49],[55,21],[71,55],[157,180],[25,45],[88,93],[42,65],[7,42],[-11,34],[-47,79],[-4,52],[-16,20],[18,49],[-32,35],[34,37],[27,87],[-13,82],[41,6],[5,73],[40,15],[10,31],[40,34],[27,-23]],[[14526,65423],[7,-44],[76,-38],[60,-3],[36,-50],[70,-12],[60,-49],[61,-60],[20,-79],[83,-62],[41,-1],[10,-48],[31,-24],[8,-52],[34,-34],[47,-134],[38,-25],[0,-21],[-47,-46],[-17,-48],[-35,-32],[-6,-40],[21,-96],[-3,-47],[20,-22],[74,-46],[142,-25],[34,1],[32,-43],[27,-1],[32,34],[28,-15],[59,15],[21,-24],[75,25],[74,-3],[47,-15],[115,10],[50,-36],[-43,-63],[-10,-69],[4,-74],[15,-20],[-9,-48],[4,-81],[19,-30],[-29,-53],[-7,-93],[-2,-111],[10,-40],[37,-70],[37,-53],[-9,-59],[31,-61],[96,-22],[4,-20],[91,-4],[-44,-88],[-12,-54],[5,-49],[-11,-37],[5,-63],[-29,3],[-79,65],[-31,7],[-20,40],[-45,16],[-71,41],[-21,1],[-47,85],[-49,17],[-43,34],[-26,-1],[-57,34],[-20,27],[-4,44],[-41,38],[-22,63],[-34,26],[-54,75],[-44,30],[-10,36],[-45,10],[-31,43],[-92,31],[-45,28],[-39,71],[-26,19],[-61,20],[-78,58],[-69,118],[-31,30],[13,33],[-28,37],[-32,73],[-35,17],[-57,4],[-37,-14],[-81,28],[-27,38],[-24,127],[-78,57],[-24,75],[-31,22],[-26,62],[-48,32],[1,30],[-36,28],[-14,34],[-76,38],[-17,39],[17,42],[-25,52],[9,51],[35,56],[23,19],[13,56],[26,38],[16,92],[-33,48],[18,29],[-17,42],[31,24],[17,-33],[43,-11],[90,33],[6,42],[45,3]],[[9568,75225],[29,-109],[36,-53],[52,-57],[196,-143],[60,-102],[16,-58],[-18,-18],[-56,-7],[-30,26],[-49,20],[-21,-34],[-36,33],[-62,-24],[-50,61],[-44,-1],[-93,47],[-51,43],[-61,67],[-16,38],[-18,102],[4,85],[-10,92],[7,39],[56,26],[66,-8],[58,-31],[35,-34]],[[9298,78239],[-8,-46],[-75,-11],[-17,-22],[-43,-10],[-79,41],[-46,40],[-27,-1],[-53,-36],[-28,-6],[-112,-1],[-17,-33],[13,-91],[17,-54],[-33,-35],[-34,-60],[-50,-37],[2,-40],[26,-20],[-59,-34],[21,-55],[-5,-46],[9,-61],[-14,-48],[-59,-50],[-47,-51],[-6,-27],[-57,-27],[-141,-154],[5,-36],[-46,-72],[30,-18],[17,-38],[199,-169],[66,-68],[-58,-138],[132,-469],[-42,-182],[8,-342],[37,-12]],[[8724,75720],[6,-3]],[[8730,75717],[45,-32]],[[8775,75685],[1,-4]],[[8776,75681],[17,-63],[98,-43],[16,-30]],[[8907,75545],[-2,-8]],[[8905,75537],[18,-27],[32,17],[53,-1]],[[9008,75526],[9,-4]],[[9017,75522],[71,-23]],[[9088,75499],[12,4]],[[9100,75503],[64,-2],[26,-23],[35,-86]],[[9225,75392],[4,-10]],[[9229,75382],[48,-74],[48,-19]],[[9325,75289],[-6,-104],[-35,-128],[-5,-78],[6,-73],[51,-122],[34,-46],[27,-78],[21,-160],[-27,-82],[-41,-33],[-44,12],[-20,-38],[-23,-82],[-42,-25],[-8,-49],[-30,-63],[-63,-225],[0,-77],[11,-18],[0,-119],[-17,-100],[-42,-27],[-10,-103],[-32,-28],[8,-128],[-12,-64],[6,-57],[-10,-147],[12,-29],[-36,-47],[5,-31],[-18,-60],[26,-19],[13,-37],[2,-73],[-17,-87],[7,-20],[-27,-180],[-1,-55],[21,-145],[43,-96],[29,-43],[78,-77],[64,-27],[39,-55],[33,-7],[10,-29],[-49,-25],[-30,-62],[-13,-68],[8,-47],[44,-56],[93,-61],[71,-36],[107,-43],[80,-40],[62,-43],[37,-128],[-4,-62],[24,-58],[4,-66],[-22,-58],[32,-125],[23,-16],[-13,-91],[-4,-105],[7,-53],[19,-21],[8,-49],[-52,-109],[2,-67],[15,-18],[27,-124],[-21,-153],[14,-57],[18,-24],[57,-132],[45,-38],[53,-92],[14,-83],[0,-47],[59,-114],[14,-54],[-5,-53],[-27,-78],[5,-89],[25,-80],[-24,-83],[7,-23],[-25,-44],[-6,-64],[32,-29],[1,-61],[-28,-5],[-9,-104],[-17,-85],[-32,-89],[0,-28],[57,-50],[6,-40],[-41,-60],[1,-83],[-22,-45],[-34,-35],[-17,-38],[21,-59],[47,-46],[7,-34],[59,-103],[7,-67],[34,-41],[86,-43],[27,-84],[51,-63],[3,-97],[23,-32],[7,-52],[42,-28],[5,-70],[48,-32],[73,-151],[117,-54],[45,-12],[46,-42],[38,-120],[42,-26],[95,-9],[20,7],[46,-54],[40,-27],[15,-51],[-4,-49],[-19,-46],[15,-45],[39,-68],[85,-44],[-1,-35],[-53,-16],[-9,-65],[14,-43],[27,-33],[65,-32],[25,10],[36,-15],[34,-41],[14,-54],[92,-25],[76,0],[50,33],[-19,51],[37,38],[51,13],[52,-53],[61,12],[54,-52],[104,-47],[14,-52],[41,-35],[36,-52],[58,-29],[31,-45],[42,13],[63,-74],[4,-22],[55,-38],[31,-43],[39,-15],[43,-34],[73,-29],[36,-30],[16,-50],[55,-92],[59,-9],[34,-54],[55,-21],[55,6],[61,-49],[25,-47],[97,-97],[38,-48],[40,-12],[9,-31],[48,-32],[78,-90],[64,-31],[66,-52],[130,-62],[2,-70],[27,-26],[79,-16],[31,-35],[96,-32],[49,-83],[128,-107],[31,-19],[23,-58],[46,-41],[40,-67],[58,-35],[56,-55],[84,-52],[34,-36],[23,-82],[27,-51],[-39,-34],[-35,-56],[-39,-36],[-15,-44],[11,-37],[60,-32],[-14,-60],[27,-47],[38,4],[15,-55],[59,-20],[17,-58],[45,-59],[37,-13],[49,-46],[18,-38],[-1,-60],[41,-54],[35,-72],[39,-32],[4,-93],[-27,16],[-33,-19],[-32,-54],[-11,-54],[11,-52],[52,-62],[9,-94],[-45,-40],[-5,-26],[41,-63],[10,-47],[21,-23],[18,-48],[35,-29],[5,-33],[51,-14],[66,1],[54,14],[46,89],[-47,33],[-17,33],[27,13],[-3,46],[44,32],[41,-24],[30,24],[82,11],[32,-10],[-18,-62],[55,-52],[46,14],[-5,21],[73,38],[-29,-87],[6,-32],[72,-18],[-19,-36],[1,-41],[29,-21],[16,-37],[26,-6],[-35,-65],[6,-50],[-7,-59],[54,-104],[10,-35],[31,-21],[50,-1],[75,12],[121,76],[0,21],[60,27],[43,37],[27,2],[48,-25],[32,7],[12,-31],[40,-15],[20,-26],[20,-75],[58,-41],[-9,-45],[26,-73],[-8,-88],[72,-178],[29,-52],[1,-30],[40,-110],[32,-35],[68,-44],[25,-57],[-13,-78],[15,-96],[29,-53],[2,-39],[21,-42],[9,-70],[-5,-66],[36,-90],[64,-45],[37,-11],[16,-35],[72,-32],[65,-7],[22,-40],[81,-42],[55,-13],[74,1],[103,19],[84,22],[134,46],[29,-10],[46,-41],[-12,-27],[41,-21],[-19,-59],[52,-28],[32,6],[9,29],[54,-2],[-19,-84],[-37,-71],[44,-96],[-17,-60],[-63,-137],[-25,-115],[14,-67],[-7,-55],[33,-54],[104,-88],[23,-44],[113,-122],[17,-36],[56,-23],[-27,-34],[-17,-79],[-24,-31],[-23,-75],[-9,-139],[26,-66],[10,-70],[53,-44],[7,-32],[-42,-51],[-16,-45],[-8,-73],[9,-37],[27,-41],[56,-36],[69,-10]],[[17542,58664],[-543,0]],[[16999,58664],[-134,0]],[[16865,58664],[-537,0],[-838,0]],[[15490,58664],[-67,0]],[[15423,58664],[-491,0]],[[14932,58664],[-46,0]],[[14886,58664],[-738,0]],[[14148,58664],[-67,0]],[[14081,58664],[-872,0]],[[13209,58664],[-67,0]],[[13142,58664],[-100,0]],[[13042,58664],[-67,0]],[[12975,58664],[-302,0]],[[12673,58664],[-67,0]],[[12606,58664],[-67,0]],[[12539,58664],[-17,0]],[[12522,58664],[-218,0]],[[12304,58664],[-37,0]],[[12267,58664],[-519,0]],[[11748,58664],[93,121],[23,23],[65,100],[73,101],[44,29],[74,143],[-3,19],[82,123],[42,71],[46,98],[40,105],[-24,27],[-20,72],[-26,30],[-52,14],[-11,-20],[-42,-15],[-31,13],[-43,80],[87,180],[80,186],[84,225],[51,185],[12,88],[-17,58],[-81,72],[-1,116],[-68,34],[-19,64],[-23,39],[-80,54],[-86,19],[-46,-15],[-50,46],[22,65],[9,54],[-3,76],[-37,110],[-41,46],[-38,26],[-89,15],[-79,25],[-46,4],[-43,-27],[-55,5],[-36,-8],[2,128],[-25,15],[-33,56],[-48,-8],[-20,15],[-26,55],[-35,30],[-79,20],[-41,0],[14,103],[-33,28],[5,53],[-41,29],[-7,77],[-44,60],[-26,11],[-30,-34],[-52,66],[7,48],[-26,9],[5,56],[-13,68],[-54,78],[-31,12],[-35,-22],[-42,105],[-24,26],[-39,9],[-107,95],[-57,9],[-95,-12],[-16,-44],[-59,53],[6,36],[-27,75],[-49,50],[-44,22],[-31,-8],[-25,-34],[-40,41],[-17,45],[9,56],[-15,81],[-15,145],[-17,52],[-30,9],[-18,78],[-55,65],[-72,-1],[-68,62],[-49,-12],[-54,5],[-27,-39],[-28,45],[-20,5],[-31,84],[-41,18],[-7,97],[-12,57],[-30,50],[-49,3],[-53,60],[-28,-14],[-32,11],[-46,63],[-32,-9],[-33,21],[-2,26],[-38,71],[-50,7],[-41,33],[-22,68],[-27,16],[-23,48],[-40,39],[-25,3],[-29,52],[-96,73],[-37,56],[-66,66],[-58,84],[-75,65],[-48,25],[-73,2],[-49,12],[-75,56],[-55,14],[-92,55],[-55,18],[-59,-7],[-48,21],[-74,-3],[-19,-12],[-43,21],[-52,-9],[-51,32],[-44,14],[-55,-6],[-19,69],[-24,52],[-50,81],[-60,45],[-29,62],[-48,53],[-33,22],[-37,3],[-99,65],[-30,28],[-98,23],[-74,45],[-118,21],[-35,-10],[-57,69],[-57,17],[-32,63],[-52,35],[-66,75],[-76,39],[-73,-3],[-75,-45],[-52,25],[-46,60],[-66,38],[-34,47],[-59,39],[-48,85],[-36,39],[-70,26],[-69,-13],[-23,26],[-115,91],[-102,96],[-40,13],[-39,43],[3,37],[45,186],[7,80],[-3,59],[-31,109],[-17,96],[-19,58],[-24,25],[-61,97],[-75,83],[-48,9],[-138,43],[-64,-5],[-24,16],[21,54],[32,147],[42,214],[4,82],[16,65],[-36,95],[9,19],[-54,70],[-5,83],[11,38],[18,115],[3,115],[-7,167],[-26,121],[-52,124],[-39,40],[-35,95],[-62,80],[-67,58],[-79,47],[-90,68],[-90,30],[-82,-2],[-106,-40],[-58,-55],[12,-37],[36,-36],[-20,-34],[-79,25],[-3,126],[-32,129],[-21,44],[-51,20],[-17,92],[-48,56],[-4,95],[19,40],[18,135],[26,140],[23,309],[-2,135],[-24,148],[-54,79],[4,49],[-24,222],[-23,65],[-55,82],[-60,31],[-43,-11],[-39,19],[-139,134],[-81,41],[-32,-14],[-29,10],[-60,67],[-39,18],[-28,47],[-9,52],[-22,39],[-51,58],[-38,30],[-27,-7],[-35,43],[-59,99],[-69,20],[-68,-41],[-73,-19],[-35,12],[-37,57],[-3,60],[38,128],[72,406],[8,185],[-43,92],[-12,3],[-47,79],[-24,79],[-40,19],[-19,83],[-41,77],[-44,51],[-33,24],[-29,69],[-60,39],[-37,11],[-5,36],[-64,43],[-14,39],[-44,14],[-24,29],[-6,60],[-53,29],[-26,39],[-52,40],[8,22],[-22,63],[-51,104],[-35,25],[-50,77],[-81,46],[-106,78],[-47,6],[-52,-21],[-30,10],[-1,54],[-22,91],[-45,28],[-10,28],[-59,36],[-31,-12],[-59,59],[-29,52],[-9,50],[-80,10],[-9,70],[40,2],[23,28],[87,5],[14,31],[-18,34],[-37,27],[-15,77],[39,64],[32,115],[0,24],[-117,135],[-19,32],[-31,11],[-20,48],[-51,-20],[-61,48],[-70,110],[36,9],[109,-49],[32,-27],[61,-15],[43,-45],[37,-1],[54,39],[27,33],[33,64],[35,98],[27,11],[-3,34],[25,60],[15,76],[-3,83],[-10,36],[-54,84],[-26,-22],[-38,23],[-33,-2],[-77,20],[-32,22],[-38,60],[-50,49],[-36,-1],[-55,35],[-35,-10],[-60,7],[-42,50],[3,105],[-6,46],[-29,79],[-74,53],[-33,-7],[-38,24],[-54,-14],[-67,-1],[-44,33],[-41,7],[-33,30],[-26,49],[-53,48],[-31,75],[-2,63],[23,43],[-20,281],[-12,51],[-45,113],[-27,22],[-40,212],[-23,56],[-55,66],[-81,41],[-63,22],[-122,31],[-29,18],[-63,8],[-22,41],[-32,26],[-9,56],[-33,89],[-69,148],[-17,52],[-77,139],[-34,113],[-12,68],[-36,49],[-39,92],[-15,62],[6,48],[-7,60],[4,108],[652,59],[896,82],[496,46],[865,76],[484,42],[766,66],[838,71],[690,57],[776,63],[534,42],[1146,87],[877,64],[652,47],[-38,-58],[-12,-45],[-56,-83],[-17,-62],[-52,-49],[-21,-46],[-52,-32],[-17,-44],[-82,7],[-13,-31],[8,-61],[24,-64],[-44,-113],[26,-13],[55,3],[-12,-35],[-38,-33],[5,-63],[-27,-27],[8,-59],[-21,-32],[-2,-39]],[[29471,41891],[-18,-53],[-52,25],[-127,22],[-57,-2],[-118,172],[-44,107],[-56,158],[-22,103],[21,52],[-6,48],[-80,133],[18,188],[17,34],[33,-43],[16,-62],[41,-47],[31,-71],[44,-52],[62,-133],[13,-42],[55,-62],[8,-40],[34,-41],[19,-54],[48,-42],[43,-56],[40,-99],[6,-51],[34,-54],[-3,-38]],[[27244,43556],[30,-6],[44,-29],[41,-76],[30,-24],[50,13],[13,-37],[-19,-23],[31,-50],[41,-28],[-23,-59],[-52,-9],[-22,-74],[21,-58],[-40,-22],[-28,-42],[-5,-36],[-51,9],[-37,-16],[-14,18],[25,44],[-36,16],[29,53],[-33,20],[-71,6],[-6,49],[66,93],[-72,4],[-34,16],[-25,98],[32,38],[-45,70],[44,1],[89,50],[27,-9]],[[25830,46054],[45,-52],[16,-81],[36,-57],[52,-41],[93,-13],[102,-34],[76,-14],[48,-30],[-4,-27],[61,-39],[-5,-36],[40,-79],[0,-42],[-19,-98],[11,-32],[64,-109],[9,-49],[72,-113],[24,-20],[-25,-30],[-85,-18],[-54,2],[-22,30],[-5,37],[-105,71],[-43,16],[-15,27],[-61,7],[-41,24],[19,32],[-29,53],[-47,23],[-24,84],[6,13],[-27,60],[-34,46],[0,60],[-31,60],[-63,6],[-31,40],[-33,-3],[-18,104],[19,48],[1,91],[27,83]],[[24404,50262],[-33,-42],[-59,-131],[-7,-75],[14,-67],[38,-16],[-5,-51],[27,-58],[-55,17],[-29,40],[-26,8],[-35,57],[-74,-18],[-8,-67],[-44,-78],[-36,-30],[-53,-97],[-69,-66],[-36,-66],[12,-21],[-26,-58],[11,-67],[-29,-44],[-22,4],[-36,-47],[0,-117],[10,-40],[-109,48],[-19,112],[39,72],[24,2],[10,40],[-8,53],[20,103],[20,19],[-7,66],[43,69],[4,45],[37,30],[3,22],[67,59],[11,50],[-19,49],[15,47],[24,25],[-34,32],[-16,60],[40,2],[73,19],[60,31],[-8,31],[42,2],[73,-36],[59,23],[24,-8],[102,63]],[[15423,58664],[67,0]],[[16865,58664],[134,0]],[[17542,58664],[11,-61],[19,-52],[2,-49],[-17,-24],[-24,-89],[10,-12],[12,-94],[-16,-36],[18,-32],[-26,-29],[-16,-71],[1,-52],[53,-69],[64,-35],[21,-44],[65,-39],[29,-61],[-13,-26],[7,-63],[37,-36],[-7,-51],[25,-56],[72,-76],[31,-55],[49,-28],[11,-26],[74,2],[86,-143],[78,-33],[16,-20],[-8,-35],[19,-27],[91,-35],[50,9],[71,-27],[49,-2],[39,-30],[66,-15],[12,-16],[54,-12],[54,-35],[0,-27],[28,-32],[69,-4],[57,-37],[54,8],[51,-42],[30,-2],[45,-50],[79,-32],[62,-67],[3,-52],[98,-89],[32,-106],[-4,-88],[18,-40],[-4,-87],[18,-69],[43,-30],[31,-77],[-23,-25],[8,-53],[28,-21],[32,-62],[68,-31],[6,-53],[23,-49],[58,-33],[27,-1],[28,-48],[15,-85],[55,-63],[14,-58],[33,-50],[24,-16],[-4,-60],[-59,-105],[8,-43],[42,-12],[48,-33],[19,-27],[79,-71],[3,-27],[37,-18],[83,-8],[67,-38],[31,-48],[95,-40],[72,11],[22,-29],[134,-27],[51,-3],[38,-14],[72,-89],[76,7],[30,-13],[45,8],[1,-53],[24,-24],[0,-35],[-44,-26],[-47,22],[-67,-53],[-76,-105],[-20,-57],[-18,-90],[3,-115],[18,-54],[81,-79],[55,-27],[24,-59],[46,-44],[40,-99],[95,-54],[51,-18],[2,-69],[39,-21],[199,92],[28,33],[53,8],[43,54],[107,-52],[13,-39],[104,-62],[42,-48],[30,-16],[98,-135],[13,-38],[69,-40],[28,-34],[78,-46],[41,6],[1,-33],[30,-34],[44,-80],[44,-16],[52,-51],[56,-16],[13,-38],[90,-31],[75,-64],[19,1],[-2,-64],[-16,-38],[-7,-81],[20,-150],[-17,-63],[-9,-151],[17,-56],[35,-33],[134,-62],[33,-1],[66,-31],[143,13],[31,-45],[36,-7],[-40,-64],[7,-78],[-51,-63],[-12,-41],[11,-105],[-5,-117],[29,-52],[55,-44],[31,-5],[35,-46],[41,-26],[-55,-20],[34,-69],[34,-25],[51,-6],[38,-24],[40,-83],[-10,-27],[25,-68],[-5,-86],[-33,2],[-21,-80],[7,-48],[28,-33],[24,-100],[22,-49],[-4,-90],[28,-47],[28,-19],[40,-191],[20,-21],[21,-58],[37,-31],[44,-18],[-3,-69],[24,-34],[-2,-33],[-37,-42],[-7,-59],[-58,-62],[-3,-34],[23,-41],[6,-109],[-20,-36],[-54,-56],[-6,-55],[20,-60],[-13,-39],[18,-36],[33,-24],[27,-47],[-7,-47],[9,-52],[-24,-34],[33,-63],[10,-47],[-1,-80],[24,-14],[40,26],[53,-52],[12,-31],[-27,-21],[-18,-50],[2,-61],[27,-74],[45,-21],[59,-70],[57,-18],[50,-34],[48,-77],[38,26],[25,-11],[48,-92],[-18,-34],[23,-52],[26,-104],[18,-17],[-6,-70],[27,-61],[5,-48],[76,-90],[38,-87],[82,-43],[1,-39],[25,-42],[46,-33],[44,-52],[70,4],[95,-10],[7,-31],[44,-17],[16,33],[33,-18],[80,2],[55,-12],[-24,-56],[8,-49],[28,-52],[-27,-11],[3,-58],[-27,-16],[5,-64],[29,-36],[19,-64],[35,-22],[15,-75],[1,-49],[23,-56],[37,-35],[14,-35],[9,-73],[132,-123],[11,-34],[-13,-38],[48,-31],[-15,-15],[20,-37],[-46,-37],[-3,-50],[30,-58],[-10,-28],[18,-69],[24,-42],[27,-14],[35,-83],[36,-32],[-18,-20],[-3,-76],[16,-65],[58,-66],[50,-23],[21,-25],[24,-93],[22,-29],[6,-50],[61,-32],[7,-17],[60,-19],[25,-29],[-8,-47],[45,-56],[68,-20],[35,27],[49,-47],[67,-44],[-3,-38],[14,-45],[32,-15],[-4,-44],[7,-72],[79,-106],[32,-31],[5,-36],[30,-30],[32,10],[6,-88],[32,-26],[32,-69],[16,-55],[1,-51],[42,-71],[2,-45],[34,-54],[-1,-26],[31,-18],[-25,-60],[5,-42],[-15,-76],[-67,-89],[-25,-64],[-2,-77],[-19,-47],[-61,-22],[-39,-38],[-42,-83],[-11,-110],[-31,-83],[-3,-164],[26,-102],[-17,-38],[16,-118],[20,-57],[63,-78],[26,-42],[62,-72],[18,-33],[-7,-57],[15,-16],[-30,-57],[10,-81],[-13,-36],[40,-48],[7,-29],[-12,-37],[21,-37],[-8,-64],[118,-156],[44,-24],[-3,-30],[22,-60],[118,-187],[71,-30],[32,-24],[22,-57],[48,-27],[2,-29],[38,-21],[83,-27],[180,-52],[132,-33],[120,-23],[110,-16],[84,-7],[110,9],[52,13],[52,-11],[87,28],[14,84],[-4,65],[-46,19],[19,69],[-32,37],[-47,2],[-28,50],[-15,63],[16,37],[-24,110],[0,44],[22,63],[39,30],[71,13],[27,25],[10,34],[57,4],[57,-21],[140,-19],[-4,-117],[72,-39],[25,-46],[42,-3],[32,-18],[35,-59],[-3,-42],[46,-77],[89,-13],[37,-23],[18,-33],[51,-34],[34,-5],[62,-45],[27,1],[65,-35],[23,-37],[32,-9],[29,-36],[112,-79],[46,-9],[41,-47],[24,-109],[17,-20],[-5,-60],[23,-34],[6,-131],[15,-45],[5,-92],[34,-27],[69,-15],[48,-1],[14,-17],[64,-18],[145,38],[51,5],[145,66],[54,34],[27,-95],[32,-31],[34,-8],[19,-42],[-33,-43],[-10,-53],[-31,-33],[-22,7],[-31,-35],[0,-79],[-17,-75],[10,-74],[31,-72],[35,-34],[72,-44],[16,-34],[101,-63],[93,-101],[12,-27],[52,-29],[7,-31],[101,-121],[36,-27],[-42,-101],[-4,-122],[-10,-32],[7,-55],[37,-59],[9,-62],[18,-32],[2,-44],[-14,-56],[12,-39],[75,-66],[146,-56],[8,-21],[56,-21],[69,-9],[86,-46],[31,-39],[81,-32],[132,-32],[22,-11],[16,-54],[47,-26],[110,-24],[36,-33],[-36,-59],[-12,-38],[6,-57],[60,-98],[11,-33],[46,-31],[41,-78],[41,-18],[16,-34],[-5,-69],[-23,-59],[17,-68],[47,-12],[-4,-37],[16,-25],[-13,-29],[-28,6],[-35,-29],[22,-68],[-7,-44],[16,-58],[-14,-66],[11,-59],[-15,-61],[-43,-92],[4,-103],[9,-19],[-12,-50],[-42,-54],[-37,-112],[-52,-46],[-24,-51],[-28,-21],[-41,-81],[-53,-32],[-38,-69],[-42,-29],[-12,-28],[-61,-45],[-84,-37],[-39,-49],[-39,-10],[-52,3],[-73,-18],[-31,-24],[-176,-54],[-42,-45],[-56,-23],[-83,-63],[-27,-121],[-52,-56],[-104,-22],[-34,-36],[-88,-36],[-37,-32],[-35,-49],[0,-52],[-140,-126],[-9,-30],[-48,-13],[-93,-2],[-49,-11],[-41,-27],[-15,-34],[27,-31],[-104,-12],[-133,9],[-24,-8],[-108,56],[-111,90],[-171,203],[-39,82],[-60,89],[-24,95],[-32,38],[-31,139],[0,52],[-25,132],[-39,106],[-15,65],[-14,15],[-14,105],[-41,134],[-14,80],[-25,77],[-4,117],[-18,32],[-2,99],[-18,89],[-45,93],[-43,44],[-31,79],[-46,52],[-32,92],[-70,59],[-17,103],[-32,67],[-31,45],[-50,99],[-57,60],[-43,87],[-52,85],[-53,72],[-52,56],[-90,77],[-93,71],[-57,35],[-162,85],[-211,95],[-175,68],[-118,58],[-161,102],[-83,63],[-191,169],[-123,129],[-247,280],[-150,179],[-139,153],[-113,111],[-51,41],[-43,16],[-49,80],[-69,61],[-37,47],[-165,159],[-80,60],[-73,64],[-58,32],[-2,31],[-59,67],[-223,161],[-87,53],[-57,43],[-242,128],[-40,34],[-167,107],[-58,41],[-510,291],[-148,78],[-151,69],[-128,48],[-139,65],[-98,35],[-72,19],[-141,25],[-70,-1],[-96,-22],[-63,-22],[-93,-17],[-20,8],[-98,-23],[-44,-114],[-23,-17],[-11,-45],[-123,155],[-175,125],[-90,68],[-202,174],[-68,53],[-47,21],[-113,67],[-19,33],[-23,-6],[-57,68],[-53,31],[-38,10],[-136,58],[-38,35],[-229,117],[-69,16],[-87,57],[12,19],[-19,81],[-55,95],[-79,71],[-41,26],[-37,55],[-5,25],[-57,20],[-12,19],[26,32],[16,51],[55,-25],[35,21],[23,58],[2,96],[-24,104],[-33,53],[-127,120],[-75,46],[-96,36],[-57,2],[-70,-23],[-24,-24],[11,-59],[0,-63],[-43,36],[-14,56],[-71,69],[-48,17],[1,76],[56,21],[55,114],[56,154],[97,247],[71,211],[15,34],[67,200],[180,666],[36,162],[19,131],[12,35],[36,22],[14,62],[-43,48],[-4,36],[37,58],[21,70],[27,140],[21,147],[16,146],[11,52],[8,106],[-19,36],[16,59],[20,2],[-22,111],[14,201],[8,160],[-3,339],[13,41],[-15,31],[-3,153],[-9,130],[-24,115],[-21,58],[-67,86],[-3,32],[-31,123],[-93,198],[-36,116],[-30,127],[-33,73],[-27,81],[-58,66],[-71,100],[-40,47],[-43,21],[-44,42],[-71,27],[-28,21],[-37,-30],[-75,74],[-1,76],[-39,146],[-38,102],[-65,132],[-52,73],[-48,43],[-73,99],[-83,79],[-176,77],[-63,-2],[-39,-30],[4,-48],[-21,-33],[-68,-20],[-105,67],[-68,65],[-93,57],[-53,17],[-64,68],[-100,48],[-28,42],[-42,26],[-75,18],[-30,-24],[-48,0],[-25,-15],[-19,47],[-109,129],[-58,51],[-61,42],[-166,104],[-111,82],[-152,133],[-97,91],[-92,72],[-117,77],[-152,81],[-6,16],[-62,22],[-109,90],[-91,63],[-46,51],[-90,72],[-18,41],[-69,53],[-97,54],[-74,29],[-1,26],[-50,70],[-41,11],[-72,59],[-48,28],[-98,34],[-169,36],[-77,8],[-37,28],[12,27],[-49,142],[-5,34],[-87,62],[-111,71],[-121,54],[-101,27],[-88,15],[-127,8],[-59,-9],[-19,16],[-37,-26],[-53,-7],[-75,-28],[-39,-27],[-50,-165],[-90,-42],[-16,-25],[17,-31],[-7,-36],[-94,-27],[-38,-33],[-119,35],[-115,66],[-78,116],[-63,54],[-27,34],[-45,34],[-100,28],[-25,37],[-45,1],[-15,24],[-17,96],[-62,147],[-21,66],[-68,140],[-73,98],[-126,108],[-92,62],[-83,44],[-114,44],[-82,24],[-106,18],[-70,-5],[-51,-27],[-25,-82],[-74,-5],[-62,50],[-46,75],[-45,53],[-52,38],[2,39],[-43,100],[-71,78],[-43,68],[-42,37],[-109,81],[-55,33],[-132,63],[-98,32],[-176,32],[-65,3],[-106,-25],[-35,-27],[-13,-55],[-67,70],[-52,30],[-25,30],[-119,30],[-47,49],[-51,27],[-37,3],[-8,-26],[-66,-29],[-79,34],[30,51],[-3,39],[-28,52],[-86,47],[-87,-18],[-41,54],[1,62],[13,74],[-14,87],[11,14],[-4,193],[-16,143],[-45,161],[-48,87],[-55,52],[-158,97],[-30,-3],[-52,52],[-42,60],[-31,16],[-96,27],[-61,43],[-89,40],[-87,17],[-97,51],[-106,17],[-54,90],[-26,10],[-19,41],[6,27],[-14,47],[-55,115],[-71,71],[-61,43],[-79,19],[-52,-13],[-28,-36],[-41,30],[-8,48],[-37,19],[2,33],[-171,91],[-30,2],[-47,33],[-7,63],[-25,57],[-24,25],[-67,39],[-111,35],[-57,-50],[-34,79],[-37,17],[-10,55],[-32,68],[-9,67],[-51,91],[-14,68],[-61,68],[-51,38],[14,39],[52,27],[35,5],[52,-16],[62,-46],[40,-62],[29,-13],[98,-15],[63,0],[127,20],[54,18],[88,-3],[84,-24],[63,10],[51,-16],[9,-30],[49,-42],[25,-5],[143,16],[39,13],[66,-17],[16,-20],[91,-9],[27,16],[74,-23],[2,-33],[56,-31],[48,-8],[98,6],[32,-30],[73,1],[12,-19],[113,-6],[24,-10],[87,21],[56,21],[80,-5],[67,17],[49,-29],[73,-31],[60,12],[181,92],[152,96],[62,16],[11,31],[102,96],[111,81],[67,18],[55,-8],[37,-34],[117,106],[-35,40],[-2,88],[39,107],[128,122],[17,33],[98,96]],[[12267,58664],[37,0]],[[12522,58664],[17,0]],[[12606,58664],[67,0]],[[12975,58664],[67,0]],[[13142,58664],[67,0]],[[14081,58664],[67,0]],[[14886,58664],[46,0]],[[111983,21862],[603,-554],[-1,-620],[0,-646],[44,-4],[-45,-598],[-6,-513],[15,-338],[2,-191],[-46,-12],[15,-76],[3,-150],[7,-660],[-3,-430],[100,-1],[17,-283],[-68,-1],[23,-401],[-77,0],[-26,-314],[61,12],[-1,-341],[-230,-5],[-9,-268],[234,-3],[-2,-108],[-74,1],[1,-172],[-176,11],[-2,-207],[5,-84],[217,-2],[0,-59]],[[112564,14845],[1,-542],[-714,-1],[-658,-4],[-700,5],[-431,1],[-299,-3],[-328,-1],[-793,7],[-620,-5],[-321,-11],[-318,8],[-591,6],[-394,-2],[-375,0],[-393,-2],[-453,1]],[[105177,14302],[0,261],[-32,0],[1,116],[31,-3],[-1,267],[-532,3],[27,54],[-69,28],[-10,-105],[-72,20],[25,54],[-105,13],[-57,-22],[-31,23],[-100,-14],[-25,27],[-30,5],[-49,34],[-20,63],[-133,84],[-61,78],[-106,48],[-15,42],[-92,10],[-40,24],[-95,-28],[-26,11],[-28,54],[-106,6],[-62,19],[-28,49],[-84,36],[-82,54],[-70,4],[-7,55],[-44,2],[5,107],[52,-3],[-18,69],[-36,-2],[-75,-103],[-74,53],[-110,-1],[-10,-24],[42,-46],[-92,-85],[23,-61],[-56,-3],[-31,-56],[20,-53],[-12,-53],[-41,-42],[27,-56],[-29,-166],[15,-91],[-16,-55],[-9,-147],[10,-102],[28,-28],[-82,-34],[16,-34],[-39,-101],[-145,97],[-260,169],[-85,98],[-7,-81],[-36,23],[-134,123],[-252,47],[-84,100],[-50,26],[-37,7],[-103,-16],[-20,10],[-107,15],[-11,41],[-37,76],[-48,-18],[-67,49],[-29,12],[-34,53],[-15,48],[-45,7],[8,43],[-23,47],[-44,-18],[-39,18],[-23,-26],[-36,9],[-29,-36],[-33,27],[-64,7],[-77,65],[-4,50],[-83,72],[1,55],[-49,27],[1,144],[-15,41],[62,54],[-122,254],[26,29],[-9,51],[-22,12],[37,214],[-43,161],[19,0],[5,359],[-115,-6],[-76,4],[-212,0],[-129,-3],[-53,45],[-81,-61],[-29,-45],[-49,20],[5,40],[-23,34],[-40,20],[-52,43],[-39,-1],[-65,36],[-48,112],[10,84],[-1,74],[-18,56],[-96,165],[1,16],[-56,56],[3,79],[-15,71]],[[99217,17941],[211,46],[111,20],[157,19],[448,27],[138,12],[27,10],[182,19],[122,6],[190,23],[155,11],[115,14],[73,3],[131,-7],[23,-17],[84,-114],[53,-97],[33,-39],[56,-42],[66,-38],[92,-29],[19,172],[47,60],[59,-1],[147,16],[191,54],[91,37],[74,45],[1,26],[56,27],[102,30],[43,39],[122,59],[279,124],[44,35],[164,58],[63,53],[157,152],[175,216],[118,83],[146,86],[169,86],[236,100],[166,92],[30,28],[51,25],[167,98],[71,48],[8,38],[89,64],[32,37],[189,128],[156,93],[64,50],[169,118],[152,117],[5,15],[144,131],[115,113],[135,111],[89,82],[81,89],[89,126],[57,126],[-14,92],[10,94],[30,62],[21,74],[18,96],[-7,28],[15,49],[0,94],[-23,37],[9,115],[13,72],[-6,32],[-24,14],[41,70],[42,101],[22,91],[-6,52],[-25,46],[-53,19],[10,49],[-12,62],[68,72],[24,48],[54,64],[16,49],[-14,28],[18,68],[17,34],[45,35],[66,66],[40,50],[50,24],[147,108],[87,52],[65,66],[114,68],[62,80],[43,88],[25,31],[19,59],[37,29],[18,59],[30,58],[-16,27],[10,39],[-37,-2],[-47,92],[44,34],[-4,52],[-63,73],[-3,41],[-47,88],[21,36],[-3,84],[27,36],[5,73],[-12,55],[-23,42],[-29,90],[26,59],[35,17],[8,46],[-15,113],[-31,23],[6,33],[-4,120],[-15,94],[12,43],[-2,99],[-9,19],[10,77],[-21,55],[45,160],[-28,110],[-25,140],[20,23],[-14,58],[-22,16],[-6,182],[11,22],[18,85],[38,88],[13,64],[34,48],[64,176],[5,37],[34,72],[7,42],[11,181],[-34,7],[-6,76],[22,55],[52,42],[19,49],[-3,32],[28,7],[51,50],[20,79],[-27,-2],[-9,104],[1,56],[13,53],[31,70],[0,27]],[[107524,27506],[19,-7],[82,14],[-10,-440],[-19,-836],[183,-8],[24,99],[0,-153],[405,18],[21,-8],[-13,-103],[35,-3],[-42,-212],[199,-41],[-6,-105],[104,21],[126,-7],[86,-38],[27,-27],[136,0],[5,38],[36,-5],[7,51],[29,66],[34,37],[78,38],[59,2],[6,42],[303,-394],[366,-477],[-139,2],[-13,-150],[141,-9],[-22,-180],[176,-35],[-2,-160],[36,-125],[25,36],[57,37],[84,102],[17,12],[603,-788],[-24,-261],[35,-4],[-6,-71],[43,-3],[-3,-201],[63,-93],[-23,2],[166,-244],[43,-95],[200,-19],[-13,-133],[-51,7],[59,-136],[35,-48],[82,-8],[143,-213],[467,-428]],[[69541,57662],[-360,-416],[-266,-258],[-69,76],[-694,725],[-393,-297],[-260,-202],[-172,-811],[-98,-456],[-1047,-256],[-628,-608],[14,-529],[63,-12],[29,-23],[-8,-35],[41,-52],[61,57],[57,18],[30,-2],[88,-94],[19,36],[-43,65],[-7,74],[44,15],[52,-29],[26,9],[27,37],[9,45],[59,48],[48,7],[24,-20],[8,-89],[49,0],[36,-47],[458,-123],[15,-96],[-18,-46],[-6,-79],[10,-44],[-22,-30],[16,-60],[-3,-73],[14,-41],[-27,-63],[27,-84],[-13,-75],[4,-34],[-43,-97],[23,-75],[3,-82],[12,-6],[0,-67],[-27,-40],[-42,-35],[-126,-127],[-44,-98],[-53,-224],[-309,-313],[-249,529],[-488,-438],[-124,-113],[-699,-607],[-131,-107],[-270,-230],[-45,-32],[-69,-65],[86,-106],[198,-218],[127,-147],[52,-74],[69,-199],[24,-43],[85,-84],[82,-44],[73,-25],[106,-63],[42,-51],[78,-119],[41,-43],[-1,-16],[106,-49],[48,-292],[-4,-225],[116,-42],[170,-10],[29,-107],[19,-16],[-58,-231],[-40,-26],[-60,-171],[148,-291],[78,-119],[8,-68],[64,-110],[30,-165],[-3,-31],[207,-20],[39,-134],[119,-157],[105,10],[23,-6],[71,20],[32,-6],[85,-87],[-1,-40],[63,10],[45,-7],[102,-34],[87,-14],[35,-76],[-282,25],[-78,-63],[159,-48],[-21,-104],[96,-27],[121,-5],[22,-59],[32,-3],[-21,-64],[84,-7],[131,-48],[61,-37],[9,-23],[-73,-306],[96,-26],[207,-17],[241,44],[32,10],[62,-21],[29,-28],[91,-41],[22,-29],[49,-34],[40,8],[44,-172],[-44,-9],[-34,-50],[113,-81],[-42,-32],[61,-44],[-128,-47],[-176,27],[-82,39],[-26,-157],[-70,26],[-110,31],[-123,42],[-146,62],[-221,62],[-125,12],[-73,15],[-178,50],[-124,-18],[-346,-63],[-380,-310],[-74,-735],[119,-76],[2,-22],[151,-134],[107,-107],[-397,-365],[-5,-47],[57,-139],[65,-181],[-18,-334],[-12,-308],[-4,-31],[22,-175]],[[65691,43663],[-42,-20],[-50,2],[-100,16],[-141,70],[-78,53],[-131,-106],[-97,-73],[-490,211],[-189,140],[-81,133],[-68,121],[-58,223],[-38,72],[-54,70],[-53,42],[-85,12],[-310,103],[-117,52],[-241,-110],[-42,-70],[-198,-154],[-121,31],[-111,11],[-85,-4],[-241,39],[-88,20],[-74,182],[127,-49],[32,200],[-222,110],[-116,-90],[-355,155],[-80,139],[-156,281],[-68,198],[-937,232],[-627,208],[-233,29],[-676,-40],[67,-507],[-897,292]],[[58167,45887],[-315,-547],[-423,-736],[-13,-141],[-54,10],[-17,25],[-37,12],[-11,32],[-38,35],[-49,9],[-65,54],[-56,-11],[-47,8],[-91,56],[-27,30],[-47,-22]],[[56877,44701],[-1,-1]],[[56876,44700],[-9,4]],[[56867,44704],[-2,0]],[[56865,44704],[0,1]],[[56865,44705],[-1,0]],[[56864,44705],[-35,10]],[[56829,44715],[3,-5]],[[56832,44710],[0,-1]],[[56832,44709],[0,-2]],[[56832,44707],[-1,-2]],[[56831,44705],[0,-1]],[[56831,44704],[-8,-8]],[[56823,44696],[-1,0]],[[56822,44696],[0,-1]],[[56822,44695],[-4,1]],[[56818,44696],[-1,0]],[[56817,44696],[-21,12]],[[56796,44708],[-1,0]],[[56795,44708],[-5,5]],[[56790,44713],[0,1]],[[56790,44714],[-3,4]],[[56787,44718],[-1,0]],[[56786,44718],[0,1]],[[56786,44719],[-1,1]],[[56785,44720],[-2,4]],[[56783,44724],[-19,3]],[[56764,44727],[-1,0]],[[56763,44727],[-6,-2]],[[56757,44725],[-7,0]],[[56750,44725],[0,1]],[[56750,44726],[-8,7]],[[56742,44733],[-1,1]],[[56741,44734],[-3,3]],[[56738,44737],[-1,2]],[[56737,44739],[-6,6]],[[56731,44745],[0,1]],[[56731,44746],[-16,9]],[[56715,44755],[-1,1]],[[56714,44756],[-1,0]],[[56713,44756],[0,1]],[[56713,44757],[-10,16]],[[56703,44773],[-18,2]],[[56685,44775],[-1,0]],[[56684,44775],[-21,-8]],[[56663,44767],[-22,3]],[[56641,44770],[-1,-1]],[[56640,44769],[-7,-1]],[[56633,44768],[-1,0]],[[56632,44768],[-8,0]],[[56624,44768],[-1,1]],[[56623,44769],[-16,10]],[[56607,44779],[0,1]],[[56607,44780],[-2,2]],[[56605,44782],[-1,0]],[[56604,44782],[-3,2]],[[56601,44784],[-10,4]],[[56591,44788],[-1,0]],[[56590,44788],[-1,1]],[[56589,44789],[-4,3]],[[56585,44792],[-2,0]],[[56583,44792],[-4,2]],[[56579,44794],[0,1]],[[56579,44795],[-8,6]],[[56571,44801],[-1,0]],[[56570,44801],[-13,6]],[[56557,44807],[-1,0]],[[56556,44807],[-6,1]],[[56550,44808],[-1,0]],[[56549,44808],[-5,0]],[[56544,44808],[-1,1]],[[56543,44809],[-9,4]],[[56534,44813],[-1,0]],[[56533,44813],[-5,0]],[[56528,44813],[-1,0]],[[56527,44813],[-13,-3]],[[56514,44810],[-1,0]],[[56513,44810],[-1,1]],[[56512,44811],[-4,1]],[[56508,44812],[-6,1]],[[56502,44813],[-2,1]],[[56500,44814],[-1,0]],[[56499,44814],[-10,1]],[[56489,44815],[-10,3]],[[56479,44818],[-6,3]],[[56473,44821],[-1,0]],[[56472,44821],[-3,2]],[[56469,44823],[-1,0]],[[56468,44823],[-2,1]],[[56466,44824],[-2,1]],[[56464,44825],[-5,7]],[[56459,44832],[-515,473]],[[55944,45305],[-148,137]],[[55796,45442],[48,73]],[[55844,45515],[5,3]],[[55849,45518],[-10,42]],[[55839,45560],[-2,4]],[[55837,45564],[8,17],[-96,84]],[[55749,45665],[-5,8]],[[55744,45673],[0,37]],[[55744,45710],[1,1]],[[55745,45711],[4,25]],[[55749,45736],[-6,3]],[[55743,45739],[-21,13]],[[55722,45752],[4,5]],[[55726,45757],[9,36]],[[55735,45793],[-1,3]],[[55734,45796],[-1,2]],[[55733,45798],[3,4]],[[55736,45802],[4,3]],[[55740,45805],[15,4]],[[55755,45809],[1,2]],[[55756,45811],[23,20]],[[55779,45831],[6,2]],[[55785,45833],[-5,21],[-58,17]],[[55722,45871],[-1,-1]],[[55721,45870],[-57,36]],[[55664,45906],[-3,5]],[[55661,45911],[-3,28]],[[55658,45939],[-7,6]],[[55651,45945],[-47,15]],[[55604,45960],[-4,2]],[[55600,45962],[-43,22]],[[55557,45984],[-2,3]],[[55555,45987],[-14,20],[-40,9]],[[55501,46016],[-3,2]],[[55498,46018],[-53,61],[-25,-15],[-29,12],[-36,53]],[[55355,46129],[-8,8]],[[55347,46137],[-26,76],[-65,76]],[[55256,46289],[1,1]],[[55257,46290],[-15,29]],[[55242,46319],[0,1]],[[55242,46320],[-8,45]],[[55234,46365],[-2,1]],[[55232,46366],[-35,26]],[[55197,46392],[-4,-1]],[[55193,46391],[-4,2]],[[55189,46393],[0,3]],[[55189,46396],[2,5]],[[55191,46401],[-3,3]],[[55188,46404],[-64,71],[-41,3]],[[55083,46478],[-2,1]],[[55081,46479],[-31,27],[-24,47],[-3,41]],[[55023,46594],[-4,1]],[[55019,46595],[-36,21],[-19,31]],[[54964,46647],[-1,2]],[[54963,46649],[-28,36]],[[54935,46685],[-1,1]],[[54934,46686],[-74,11],[-28,31]],[[54832,46728],[0,1]],[[54832,46729],[0,4]],[[54832,46733],[0,1]],[[54832,46734],[0,9]],[[54832,46743],[0,1]],[[54832,46744],[-14,29]],[[54818,46773],[-1,3]],[[54817,46776],[-34,36]],[[54783,46812],[-1,6]],[[54782,46818],[1,2]],[[54783,46820],[5,5]],[[54788,46825],[-2,35],[29,8]],[[54815,46868],[4,1]],[[54819,46869],[16,13]],[[54835,46882],[1,4]],[[54836,46886],[3,28]],[[54839,46914],[0,2]],[[54839,46916],[1,28],[45,26],[25,42],[-30,25],[66,68],[37,109],[-4,22],[68,33],[46,10],[53,34],[54,21],[44,-15],[21,9],[42,-28],[60,9],[58,-88],[57,-7],[-3,113],[-15,56],[-39,1],[-72,27],[-87,79],[-33,69],[-118,108],[-31,16],[-158,171]],[[54926,47854],[-28,31]],[[54898,47885],[-9,13]],[[54889,47898],[-1,1]],[[54888,47899],[-33,44],[97,36],[56,48],[13,33],[-5,42],[24,28],[46,5],[28,92]],[[55114,48227],[0,2]],[[55114,48229],[0,12]],[[55114,48241],[0,1]],[[55114,48242],[1,1]],[[55115,48243],[0,1]],[[55115,48244],[25,24]],[[55140,48268],[1,0]],[[55141,48268],[-13,45],[35,5]],[[55163,48318],[1,0]],[[55164,48318],[34,4],[17,27],[-22,34],[8,21]],[[55201,48404],[7,4]],[[55208,48408],[24,2]],[[55232,48410],[1,0]],[[55233,48410],[20,-6]],[[55253,48404],[1,0]],[[55254,48404],[5,-4]],[[55259,48400],[1,0]],[[55260,48400],[7,-5]],[[55267,48395],[1,0]],[[55268,48395],[5,-3]],[[55273,48392],[1,-1]],[[55274,48391],[32,2]],[[55306,48393],[0,1]],[[55306,48394],[-12,42]],[[55294,48436],[0,1]],[[55294,48437],[5,17]],[[55299,48454],[1,1]],[[55300,48455],[8,10]],[[55308,48465],[1,0]],[[55309,48465],[4,4]],[[55313,48469],[1,1]],[[55314,48470],[1,0]],[[55315,48470],[1,1]],[[55316,48471],[14,10]],[[55330,48481],[1,1]],[[55331,48482],[46,59]],[[55377,48541],[1,2]],[[55378,48543],[7,34]],[[55385,48577],[0,1]],[[55385,48578],[9,22]],[[55394,48600],[1,1]],[[55395,48601],[1,0]],[[55396,48601],[1,1]],[[55397,48602],[36,15],[-24,28],[60,25],[-51,48],[50,32],[27,64],[29,95],[-1,52],[15,52],[2,73],[14,60],[-16,45],[-35,28],[-22,55],[-21,23],[-16,47],[-6,460],[-11,769],[361,620],[-225,335],[-231,1048],[-458,171],[-599,222],[-28,-10],[-58,127],[-96,10],[-68,16]],[[54025,53112],[-11,24],[-54,18],[-39,162],[-104,164],[-13,86],[-32,17],[-71,12],[-42,41],[-59,41],[-72,89],[-36,22],[-43,48],[-39,20],[-1,40],[65,133],[-65,-5],[271,200],[19,123],[142,60],[-3,82],[-12,45],[-14,108],[-18,24],[-78,36],[-31,4],[-64,146],[4,386],[-44,156],[-42,-27],[-27,115],[-17,32],[-6,94],[-180,58],[53,563],[21,-5],[16,478],[-58,251],[-59,-28],[-55,243],[57,5],[-50,71],[24,171],[-29,119],[63,-6],[-219,254],[140,128],[-174,0],[-64,37],[57,92],[0,141],[10,0],[-47,270],[78,-24],[-25,-76],[197,-60],[61,189],[-197,60],[149,388],[115,212],[-26,14],[400,820],[21,-10],[139,254],[343,679],[-1,80],[-19,10],[94,210],[95,-28],[37,70],[-97,32],[79,180],[58,-47],[37,52],[62,-128],[151,250],[21,-16],[207,399],[-13,12],[140,234],[32,36],[55,85],[22,-49],[17,-5],[24,51],[-38,127],[132,163],[53,59],[195,352],[10,12]],[[55603,63037],[44,11],[40,-28],[17,-48],[-20,-53],[27,-4],[24,26],[30,61],[44,-30],[21,-38],[51,7],[32,31],[35,-23],[27,18],[42,-3],[126,-29],[26,-28],[53,-8],[69,48],[37,-6],[44,11],[-7,68],[36,58],[28,20],[14,34],[-34,56],[21,45],[3,50],[53,30],[42,38],[-13,49],[39,28],[25,-10],[39,41],[39,-24],[45,26],[42,95],[45,24],[16,86],[23,7],[25,45],[-8,60],[33,41],[48,14],[62,-28],[47,-8],[72,70],[60,-16],[20,75],[-8,41],[23,11],[61,-49],[36,8],[70,54],[-13,80],[-66,19],[-34,35],[-27,2],[-14,35],[28,29],[-17,42],[56,44],[6,18],[-20,62],[22,19],[30,130],[-15,22],[28,38],[55,-16],[97,33],[-25,27],[2,41],[45,21],[3,35],[52,71],[-52,33],[24,25],[-21,67],[6,53],[28,33],[-6,26],[44,58],[-1,49],[56,15],[-27,36],[-2,126],[63,42],[11,47],[45,0],[12,34],[-10,40],[16,55],[37,1],[10,28],[-26,65],[27,17],[69,-25],[19,22],[4,121],[-8,44],[62,32],[13,35],[41,33],[34,55],[42,23],[-25,39],[4,51],[38,33],[-8,74],[39,27],[18,58],[32,20],[21,-42],[70,-12],[95,11],[31,45],[47,17],[59,-6],[66,36],[-11,37],[17,25],[31,-16],[59,-102],[52,44],[87,48],[12,25],[-34,40],[10,17],[71,-14],[44,24],[32,-46],[26,0],[31,33],[34,-39],[96,10],[43,-30],[76,-21],[22,20],[55,5],[-20,50],[51,32],[0,46],[31,84],[27,51],[-7,61],[51,33],[10,43],[35,29],[55,-30],[22,68],[83,-2],[57,-29],[42,-36],[28,21],[31,-20],[-1,-42],[29,-4],[20,47],[26,-16],[-1,-50],[42,2],[48,-36],[55,15],[31,-30],[28,10],[23,42],[23,-14],[14,-40],[-4,-46],[45,1],[34,-51],[43,-18],[21,-30],[65,-20],[31,16],[12,-39],[86,-9],[47,16],[43,-37],[78,1],[63,25],[-7,40],[20,11],[59,-10],[24,-19],[55,33],[36,-30],[27,0],[12,72],[32,3],[35,-20],[14,-56],[24,-12],[33,25],[56,-18],[1,-51],[29,-9],[53,62],[96,-2],[58,-13],[97,59],[59,-67],[40,-20],[29,24],[-28,49],[12,27],[40,-3],[36,-26],[-40,-44],[5,-32],[36,-29],[62,-1],[10,35],[60,0],[66,-44],[47,7],[18,-29],[34,-4],[37,20],[46,-62],[80,40],[35,-46],[41,38],[36,9],[37,-55],[36,-20],[31,17],[28,53],[50,-2],[39,19],[128,-21],[0,82],[28,48],[64,23],[20,30],[26,-11],[21,-42],[-15,-56],[-2,-112],[20,-12],[80,33],[45,-7],[69,46],[28,40],[61,27],[40,-15],[-6,-52],[19,-92],[52,-11],[98,77],[40,14],[21,-39],[-70,-53],[10,-29],[69,-43],[-9,-80],[16,-19],[83,-39],[16,-38],[-14,-60],[35,-52],[10,-70],[23,-14],[32,56],[47,-8],[79,2],[63,-39],[5,-57],[-44,-102],[-5,-38],[9,-83],[54,-63],[31,6],[44,67],[6,52],[-15,75],[49,50],[63,-15],[20,-41],[-18,-56],[36,-148],[-60,-119],[-12,-52],[22,-43],[70,12],[126,-10],[86,-15],[42,-33],[76,-119],[35,-37],[72,9],[67,-28],[81,13],[125,-39],[20,-102],[56,-51],[25,-99],[65,-60],[29,-55],[-3,-25],[37,-38],[42,-10],[84,-35],[46,-35],[48,4],[23,-17],[19,-50],[89,-36],[80,-66],[46,-6],[21,-41],[6,-72],[66,-26],[36,-3],[84,-61],[62,13],[42,-50],[54,-46],[-9,-52],[44,-10],[47,-77],[-9,-46],[27,-2],[13,-63],[-35,-43],[9,-29],[37,-36],[83,-32],[23,-20],[-3,-39],[46,-46],[73,-43],[96,-32],[44,-49],[37,-111],[3,-105],[29,-141],[21,-43],[22,-89],[-11,-21],[5,-121],[-18,-41],[33,-36],[15,-39],[35,-18],[-29,-34],[23,-56],[40,28],[42,-41],[40,7],[-8,-59],[55,-23],[-36,-22],[36,-24],[-4,-37],[75,-72],[-16,-49],[25,-46],[36,13],[60,-16],[2,-53],[42,-32],[11,-76],[-19,-37],[33,-50],[-15,-42],[49,-6],[27,-27],[1,-41],[28,-7],[2,-102],[-20,-40],[7,-71],[39,-130],[15,-13],[68,-13],[18,-34],[55,-30],[60,5],[5,-19],[-13,-88],[6,-36],[55,-15],[6,-35],[134,-54],[6,-44],[-55,-98],[30,-83],[38,-28],[22,-52],[205,-60],[15,-21],[-43,-46],[-94,-29],[5,-28],[104,-105],[20,-82],[-25,-72],[-30,-51],[26,-64],[98,-119],[18,-63],[93,-111],[20,-55],[-33,-104],[20,-42],[30,-19],[22,-37],[80,-94],[49,-22],[79,6],[31,-43],[23,-139],[19,-17],[44,-1],[88,-47],[25,-35],[34,-14],[74,1],[83,-53],[120,-33],[28,-21],[15,-46],[47,-81],[46,-41],[-1,-48],[15,-38],[34,-29],[65,-23],[47,-49],[16,-106],[21,-70],[69,-122],[122,-44],[106,-7],[5,-68],[-26,-61],[10,-55],[35,-13],[8,-41],[33,-40],[68,-24],[29,-57],[-2,-28],[-35,-48],[5,-76],[35,-39],[45,-26],[23,-52],[-9,-43],[15,-52],[-14,-63],[34,-31],[75,-1],[30,-105]],[[54872,19309],[-8,-26],[-55,2],[-5,-42],[-57,2],[19,-49],[-31,-48],[-45,-4],[21,-64],[-19,-31],[-25,18],[-72,-11],[-8,-45],[-38,-18],[-1,-38],[-37,-37],[-39,0],[-38,40],[-17,-14],[-53,48],[-22,4],[-44,-40],[-38,-73],[25,-35],[65,-60],[2,-26],[-34,-37],[22,-46],[3,-83],[-70,-77],[-66,-31],[-19,12],[-89,-31],[-19,-65],[-49,-6],[-23,-32],[-2,-42],[-36,-54],[-25,-70],[-27,-12],[-18,-38],[-32,-21],[1,-43]],[[53869,18086],[-22,38],[-129,137],[-113,107],[-122,95],[-173,124],[-285,187],[-68,71],[-76,62],[-154,75],[-146,82],[-205,130],[-109,57],[-100,48],[-158,67],[-336,133],[-105,36],[-105,21],[19,73],[4,54],[46,27],[29,-15],[29,21],[4,36],[-28,79],[-42,45],[-73,38],[-26,-2],[-66,63],[-44,8],[-73,-14],[-32,-32],[35,-57],[-22,-27],[-60,66],[-25,5],[-81,-88],[-22,-9],[-26,48],[-12,59],[-88,35],[-65,35],[-296,85],[-125,20],[-74,21],[-210,80],[-86,23],[-17,-2]],[[50036,20231],[5,32],[75,7],[75,-18],[93,-36],[10,21],[40,0],[-3,-50],[15,-44],[40,-19],[49,-9],[20,54],[-40,7],[-17,65],[31,31],[35,-35],[28,9],[14,64],[24,23],[-12,64],[40,49],[24,48],[70,61],[14,31],[42,10],[37,-54],[32,-13],[16,31],[31,8],[24,-30],[-7,-63],[11,-14],[54,31],[3,-28],[34,0],[8,26],[-17,37],[46,17],[-16,24],[85,39],[2,69],[72,3],[31,25],[46,17],[13,-18],[-22,-58],[66,-1],[51,45],[65,-49],[68,84],[106,-46],[17,45],[66,60],[46,-26],[84,45],[57,19],[86,-43],[78,-10],[10,16],[59,-46],[1,41],[64,52],[19,-28],[60,28],[38,-13],[18,21],[69,21],[-42,142],[53,28],[6,50],[37,42],[78,51],[24,70],[1,29],[52,85],[-38,0],[-25,30],[40,166],[31,18],[29,58],[40,0],[51,-56],[135,-54],[70,-5],[57,15],[5,-36],[32,-53],[137,-38],[126,-48],[6,18],[-43,65],[71,44],[31,-33],[16,-50],[63,12],[36,-71],[57,32],[36,8],[39,-77],[5,-52],[40,18],[73,56],[100,31],[64,46],[70,-7],[74,58],[1,44],[31,12],[38,65],[33,32],[54,18],[49,28],[47,-8],[141,51],[48,-52],[-34,-28],[9,-37],[-11,-46],[50,-49],[66,-106],[30,-18],[7,-80],[38,-48],[35,7],[84,-83],[7,-29],[47,-56],[5,-41],[34,-33],[53,-31],[33,5],[30,-37],[-2,-44],[-36,-39],[23,-17],[-41,-31],[-3,-34],[-23,-32],[4,-164],[-17,-50],[16,-27],[-32,-79],[-5,-32],[17,-52],[30,-21],[21,-38],[2,-50],[-22,-19],[4,-34],[-28,-28],[-20,-82],[12,-22],[-34,-33],[-16,-39],[8,-52],[16,-24],[-20,-26],[-12,-63],[13,-51],[52,-37],[13,-36],[31,-18],[6,-43],[34,-33],[-22,-25],[-11,-46],[24,-68],[4,-65],[-23,-33],[28,-36]],[[103358,11843],[50,-150],[36,-33],[65,-19],[67,7],[54,-15],[26,-28],[44,-24],[28,-52],[-10,-66],[43,-23],[17,14],[17,66],[23,25],[166,-19],[26,4],[55,-52],[1,-45],[-34,-61],[2,-86],[13,-56],[49,-40],[95,-5],[32,-31],[31,-73],[-1,-45],[56,-90],[55,-44],[56,-82],[86,-49],[71,9],[40,-4],[28,-37],[-8,-72],[23,-29],[43,-15],[27,-28],[14,-43],[52,-40],[72,-88],[-38,-58],[56,-53],[60,-13],[145,-43],[48,-28],[20,-24],[9,-46],[33,10],[5,46],[-24,75],[30,34],[51,0],[36,-24],[12,-40],[-13,-39],[-58,-33],[-10,-21],[30,-25],[47,22],[74,-18],[19,-18],[-6,-65],[28,-36],[27,-57],[141,18],[52,-19],[48,-45],[15,-47],[58,-17],[71,13],[87,-3],[-8,-69],[7,-24],[83,-37],[66,-17],[30,-21],[7,-37],[191,-126],[8,-30],[-8,-45],[43,-22],[37,-36],[26,-8],[15,-34],[0,-36],[22,-70],[60,-68],[-12,-57],[24,-71],[11,-78],[-53,-21],[-2,-35],[38,-20],[52,8],[38,58],[38,-70],[-45,-24],[-38,-38],[-8,-79],[23,-41],[-12,-65],[40,-26],[65,37],[37,-25],[18,-49],[-14,-47],[-37,-25],[-60,2],[-6,-24],[37,-28],[37,12],[9,35],[88,4],[-5,-58],[34,-25],[157,55],[12,-16],[-10,-52],[83,-35],[5,37],[39,12],[61,-22],[5,-45],[28,0],[17,26],[36,-5],[-3,-76],[-30,-42],[13,-41],[43,9],[44,-16],[69,13],[81,4],[30,-16],[18,-61],[33,-7],[23,45],[42,-18],[-16,-45],[-43,-17],[21,-55],[42,-32],[45,-10],[20,-34],[-13,-32],[-25,-2],[-37,56],[-49,-6],[-41,-47],[42,-10],[15,-45],[55,-12],[8,-26],[-31,-19],[-34,20],[-59,-65],[14,-37],[-28,-48],[-69,0],[-24,-31],[23,-34],[-30,-16],[7,-41],[30,-13],[36,-54],[-31,-33],[-35,29],[-27,3],[-34,-47],[2,-37],[59,-5],[43,-28],[-93,-42],[-22,-67],[14,-97],[107,-61],[8,-48],[-54,-29],[-37,-7],[-5,-45],[77,-16],[3,-83],[-30,-16],[-62,31],[-21,-54],[0,-33],[32,-54],[60,57],[32,-2],[-4,-41],[-26,5],[-48,-58],[18,-39],[-447,0],[-623,0],[-994,-1],[-620,1],[-497,1],[-606,0],[-454,0],[-953,-2],[-459,-840],[-375,-688],[-247,-455],[-342,-629],[-293,-541],[-210,-387],[52,-75],[374,-507],[170,-234],[-44,-53],[18,-28],[-16,-48],[-23,3],[-2,-55],[-28,-51],[-49,-27],[-6,-21],[-77,25],[-52,-11],[-30,-43],[-3,-37],[-32,-17],[-13,-30],[24,-38],[-14,-115],[21,-43],[5,-96],[-12,-25],[34,-77],[-41,-100],[-78,-44],[-18,3],[-23,-43],[-22,-15],[-13,-84],[30,-50],[1,-71],[66,-118],[-5,-49],[-35,-18],[3,-62],[48,-32],[16,-48],[25,-23],[-5,-63],[24,-58],[-15,-44],[0,-93],[-47,-38],[-2,-43],[-35,-5],[-52,-119],[11,-54],[-16,-45],[-3,-56],[-65,-62],[-28,-4],[-42,-33],[-1,-52],[-19,-37],[-23,-13],[-400,404],[-167,162],[-168,148],[2,30],[-83,83],[-23,39],[-100,91],[-210,217],[-145,166],[-333,370],[-110,132],[-174,195],[-102,110],[-209,235],[-135,146],[-166,176],[-1,26],[-36,29],[-131,141],[-241,245],[-263,270],[-91,84],[-178,179],[-363,357],[-101,97],[-111,100],[-28,31],[-382,350],[-520,449],[-311,256],[-185,146],[-288,216],[-280,201],[-245,161],[-217,128],[-111,61],[-155,73],[-74,23],[-70,-5],[-41,28],[-17,-23],[-174,80]],[[93054,6407],[0,16],[-144,67],[-13,35],[-255,490],[-28,159],[57,28],[151,103],[38,31],[40,61],[14,78],[-34,33],[43,88],[-18,60],[-58,164],[4,10],[-352,573],[-4,2],[377,1016],[207,557],[257,692],[253,676]],[[93589,11346],[-11,43],[31,21],[6,53],[68,21],[20,19],[48,-2],[1,73],[27,27],[5,29],[61,99],[-9,24],[34,51],[38,-36],[63,53],[35,-28],[38,18],[70,17],[78,8],[88,-9],[23,35],[110,4],[-7,130],[105,21],[122,105]],[[94633,12122],[41,58],[296,441],[35,47],[33,113],[-27,87],[46,62],[11,82],[69,140],[56,3],[34,-25],[37,5],[13,145],[16,27],[67,1],[34,23],[37,116],[52,45],[47,20],[1,45],[115,16],[-17,78],[26,67],[-11,25],[13,64],[-3,47],[-63,108],[-50,54],[-33,103],[40,4],[21,-33],[91,-13],[14,14],[25,89],[-62,4],[-24,-41],[-53,10],[0,52],[28,4],[24,39],[50,-33],[45,20],[-33,64],[9,39],[44,93],[-2,49],[-53,51],[-1,63],[22,24],[13,66],[21,8],[-19,81],[17,57],[45,-38],[95,36],[25,22],[-11,29],[19,40],[42,45],[7,65],[35,-5],[64,-79],[42,-10],[20,-45],[42,-8],[95,52],[27,-18],[49,-12],[21,-58],[43,-3],[30,-20],[65,-3],[18,-16],[-6,-47],[40,-10],[15,-31],[40,-16],[70,2],[55,-43],[-1,-45],[-91,-51],[-38,-4],[-4,-37],[-29,-60],[11,-33],[35,-47],[19,-51],[56,103],[31,-20],[142,13],[63,-7],[71,-75],[51,-115],[-29,-80],[-32,-40],[-59,-13],[-17,-86],[-30,-28],[-2,-66],[-10,-15],[14,-54],[38,9],[5,-40],[24,-3],[-20,-74],[5,-70],[-14,-11],[-4,-114],[19,-139],[47,-54],[56,-26],[43,-67],[-7,-87],[69,-25],[6,-44],[21,-30],[-42,-15],[56,-76],[15,27],[31,-5],[47,-126],[35,-28],[36,89],[70,0],[31,-19],[23,31],[42,-8],[38,30],[85,-26],[26,-18],[16,-93],[20,-41],[61,25],[20,19],[12,-103],[22,-16],[10,-85],[-25,-39],[-122,-22],[8,-33],[93,-53],[7,42],[93,8],[61,20],[1,-44],[66,-56],[29,-38],[-14,-100],[48,-10],[11,-59],[17,-4],[90,19],[84,67],[124,72],[-3,77],[9,61],[34,62],[1,106],[33,-24],[20,48],[49,33],[72,11],[75,50],[46,66],[-23,36],[28,25],[3,28],[-19,32],[103,128],[70,-30],[96,32],[41,95],[46,9],[46,-8],[115,21],[45,-16],[53,3],[34,-16],[58,30],[53,15],[29,23],[202,139],[-30,105],[14,54],[22,2],[-3,209],[24,-4],[27,45],[89,-11],[68,-28],[39,-2],[56,-46],[177,226],[146,142],[24,-37],[67,80],[78,-33],[3,-63],[84,7],[-21,56],[36,30],[-50,103],[77,-59],[60,74],[4,64],[21,30],[-29,16],[18,55],[46,-1],[0,26],[90,-34],[41,-9],[39,49],[-13,35],[-30,23],[-31,-5],[-22,19],[171,64],[40,-6],[17,42],[49,-30],[20,37],[29,90],[-35,103],[38,-32],[15,-56],[21,-33],[47,-23],[100,0],[22,-40],[-70,-92],[-2,-35],[19,-29],[45,-9],[54,33],[17,50],[-7,42],[19,27],[34,7],[38,-16],[48,-39],[82,16],[84,-35],[73,27],[62,49],[28,-15],[6,-79],[14,-43],[26,-29],[64,-34],[5,-31],[-39,-51],[-5,-78],[32,-89],[3,-85],[-36,-117],[-26,-29],[-48,31],[-82,-59],[49,-45],[93,-20],[46,-26],[21,-41],[29,11],[15,-30],[56,10],[19,-22],[40,46],[10,-44],[48,-38],[30,3],[108,-41],[49,-52],[21,53],[28,1],[31,-39],[-14,-74],[37,-84],[-14,-54],[38,-21],[-22,-23],[-41,-16],[46,-64],[27,-18],[23,-59],[-10,-95],[25,-33],[-10,-38],[10,-38],[-55,-65],[1,-65],[-15,-41],[-62,-65],[-58,-41],[-30,24],[-13,-36],[41,-17],[71,-7],[-30,-75],[140,-61],[10,28],[59,-21],[11,-24],[34,-3],[8,-37],[194,-72],[4,95],[83,-11],[1,-54],[79,-40],[30,-26],[19,32],[84,-50],[112,-54],[37,32],[32,6],[36,-29],[42,-16],[22,-65],[-12,-52],[82,-40],[48,-77],[5,-44],[-35,-46],[-85,34],[-46,-22],[-8,-101],[-17,-55],[-34,-68]],[[54025,53112],[-653,125],[0,-16],[-80,20],[-78,0],[-110,-10],[-19,6],[-247,-2],[-4,104],[-154,-13],[-34,-108],[-16,-29],[-45,22],[-512,111],[-176,16],[0,9],[-93,127],[-42,96],[-47,51],[-36,-29],[4,-20],[-49,-84],[-64,-28],[-25,-29],[48,-64],[6,-52],[-62,-49],[52,-23],[36,-39],[36,-92],[-42,-32],[-40,-47],[-15,-56],[-80,-165],[-104,-43],[-77,-26],[-41,-36],[-39,-15],[-159,-106],[-21,-35],[-44,-109],[-18,-97],[-70,-164],[-45,-74],[-48,-121],[-29,-8],[7,-67],[18,-26],[3,-75],[-20,-52],[-295,-322],[-78,174],[-106,-51],[-32,41],[-27,11],[-47,49],[-30,-4],[-40,85],[-25,7],[-31,69],[-29,18],[-79,91],[-20,12],[-16,47],[-22,4],[-42,53],[-33,7],[-41,49],[-53,-29],[-64,29],[-57,52],[-73,17],[-246,-18],[-115,25],[-38,-20],[-40,-50],[-56,-28],[-32,-35],[-15,-47],[-77,21],[-26,-33],[54,-13],[-6,-31],[-34,-33],[-31,21],[-52,-4],[-19,18],[-37,-8],[-20,-26],[-59,-18],[-27,-32],[-42,-5],[-61,-26],[-16,-46],[-181,445],[-657,-259],[-24,23],[5,54],[-22,26],[-52,14],[-43,-30],[-21,-39],[-39,-7],[-16,-39],[-66,30],[-20,38],[-56,3],[-18,30],[38,82],[0,32],[-34,56],[-48,41],[-52,-20],[-19,-21],[-61,-30],[-85,16],[-66,30],[-59,-6],[-29,10],[-50,-23],[20,-55],[-12,-12],[-73,43],[-33,53],[4,53],[-213,16],[-191,398],[-92,199],[14,-67],[60,-232],[-34,-5],[-93,26],[-52,-14],[-118,5],[2,78],[-29,57],[-34,37],[-60,-19],[-97,196],[-25,-25],[-45,95],[-58,-7],[-36,-22],[-47,1],[-52,-38],[75,-165],[-156,131],[-205,246],[-37,-38],[-78,10],[-18,100],[-34,-47],[-85,56],[-45,-12],[-227,193],[-79,53],[-129,110],[-71,-75],[-77,-180],[-67,-118],[-55,25],[-44,63],[-33,-2],[-98,-35],[-21,16],[-56,-7],[-8,-48],[34,-54],[-35,-53],[11,-43],[101,-12],[79,-48],[-5,-72],[-58,52],[-51,-30],[-31,16],[-88,-48],[18,-46],[-48,-3],[-43,-25],[-13,-45],[-35,-49],[6,-26],[-29,-66],[8,-33],[-26,-72],[-14,-7],[-13,-95],[24,-57],[-36,-54],[-6,-76],[-157,-56],[43,-21],[-45,-67],[36,-20],[72,0],[-6,-36],[32,-73],[-14,-16],[35,-51],[-93,-186],[3,-78],[-133,-43],[-19,-141],[108,15],[-47,-141],[-50,9],[-51,51],[-84,-126],[-46,-44],[-355,-461],[69,-281],[-173,-119],[-11,-26],[28,-48],[-68,-151],[25,-37],[40,-31],[7,-74],[-43,-44],[-26,-54],[104,-1],[-45,-142],[-144,-20],[-40,-57],[-129,-40],[-55,29],[-52,-173],[17,-962],[118,94],[252,123],[2,-55],[-95,-58],[-83,-33],[-53,-57],[-30,-19],[-29,-60],[-48,-26],[-74,-21],[-8,-28],[-84,-51],[-63,-58],[-66,-81],[-10,-39],[-24,-14],[-2,-72],[-53,-9],[-43,-32],[-39,-63],[-33,17],[-25,71],[-32,26],[-90,56],[105,-102],[-253,27],[-294,-52],[-225,-6],[-102,313],[-31,12],[-62,-2],[-290,70]],[[40764,48481],[110,27],[-9,64],[16,65],[-101,74],[-41,-35],[-39,-65],[-38,1],[-57,26],[-53,10],[-6,47],[-48,17],[-20,46],[20,62],[-17,33],[21,46],[-544,410],[-148,84],[-41,41],[-4,50],[-215,141],[36,127],[27,15],[-9,78],[2,73],[23,43],[-122,204],[7,120],[-89,63],[-78,82],[-280,138],[-60,7],[-76,-22],[-54,-6],[-25,-33],[-54,-35],[-44,-45],[-49,23],[-56,-50],[-33,74],[7,28],[-38,21],[-30,60],[-43,24],[-7,34],[-37,21],[-58,5],[-41,19],[-32,-20],[-95,-13],[-58,-34],[-70,39],[-65,4],[-48,-7],[-62,11],[-5,17],[-64,14],[-16,-34],[-26,-6],[-49,21],[-8,-51],[-38,-12],[-7,-57],[-24,-27],[-102,11],[-35,139],[-61,26],[-23,39],[-55,4],[-54,-10],[-67,62],[-10,128],[-68,106],[-406,602],[5,17],[-111,129],[-49,74],[173,136],[-64,8],[52,66],[62,28],[6,60],[-25,45],[-7,41],[-55,39],[-23,41],[-20,2],[-17,72],[-33,41],[-48,33],[7,38],[-15,22],[-51,22],[-33,47],[-4,43],[-67,45],[-32,-11],[-35,19],[-47,48],[67,22],[73,55],[14,29],[41,5],[30,46],[43,32],[23,70],[9,57],[-8,37],[-40,29],[20,89],[32,47],[-34,52],[-94,-14],[43,125],[-40,50],[-192,223],[-39,40],[-201,-12],[18,121],[-8,48],[-27,5],[-30,-54],[-45,3],[-47,-50],[-10,53],[-36,-3],[-30,29],[-42,9],[21,-61],[-38,-20],[-34,51],[-38,35],[20,71],[-22,113],[-18,26],[12,31],[55,16],[31,68],[65,14],[49,41],[4,44],[-54,98],[2,28],[-61,1],[-66,-22],[-69,65],[-31,-5],[-39,-51],[-51,-30],[-34,-40],[-38,7],[-9,46],[-41,49],[-57,-11],[-34,-59],[16,-51],[-52,-16],[-61,76],[-86,2],[-153,-42],[-22,32],[-113,38],[-47,-11],[-38,57],[-31,-41],[-14,40],[-40,-10],[-6,-35],[11,-53],[-53,-17],[-30,-39],[9,-75]],[[34695,54253],[-21,8],[-177,35],[-83,68],[39,145],[-160,-40],[-15,116],[37,58],[-15,184],[-43,153],[-45,12],[-39,52],[-49,43],[-35,72],[-37,100],[16,41],[-24,51],[68,77],[88,140],[139,126],[-154,282],[6,121],[-23,76],[-114,160],[35,18],[-11,36],[14,261],[-12,29],[-141,67],[-90,31],[-41,95],[-68,52],[-58,160],[1,39],[19,83],[-54,49],[-8,76],[-33,13],[27,41],[-74,39],[0,68],[-57,-32],[-38,66],[-36,-26],[-64,53],[-252,2],[-99,170],[39,110],[24,-6],[74,26],[54,78],[15,33],[-185,64],[-19,74],[-2,87],[-17,43],[-8,173],[-96,59],[-54,81],[-74,33],[-39,-1],[-99,122],[-62,45],[-19,64],[-20,135],[-34,85],[-7,68],[-66,130],[2,64],[-17,29],[6,56],[33,157],[-29,220],[-22,100],[18,6],[48,-30],[-22,72],[69,-35],[21,-31],[52,36],[23,3],[42,-49],[37,-18],[18,-29],[41,28],[4,70],[-32,37],[26,22],[24,-17],[-5,-41],[43,-22],[49,-49],[131,-10],[31,-35],[34,37],[68,2],[66,17],[41,-32],[70,10],[46,-22],[40,47],[156,-50],[-20,59],[184,19],[149,72],[108,67],[43,-2],[58,-33],[71,12],[36,35],[-3,126],[101,1],[30,53],[212,-128],[61,24],[65,48],[-8,132],[64,-18],[17,-22],[88,60],[-38,24],[-107,223],[8,58],[38,65],[-53,5],[-12,18],[28,57],[-1,51],[36,38],[-12,65],[-63,-10],[-34,144],[2,77],[-82,92],[-16,41],[-25,22],[-10,89],[-64,86],[5,108],[-20,38],[1,323],[-92,20],[-57,25],[-18,39],[-73,25],[-9,129],[37,-12],[48,35],[-21,51],[-113,-11],[-32,83],[-62,115],[12,38],[-36,53],[-79,38],[2,84],[33,142],[-39,215],[-26,69],[12,9],[-53,290],[45,2],[15,55],[-8,19],[-64,-7],[-9,47],[86,77],[39,58],[-6,32],[-38,62],[-78,98],[-66,-41],[0,43],[-16,37],[-19,85],[57,3],[18,73],[-30,36],[6,63],[-39,46],[4,25],[78,29],[1,25],[194,-7],[50,174],[-136,440],[-16,135],[-47,89],[6,27],[94,5],[19,73],[102,6],[82,15],[75,54],[-97,38],[-52,151],[96,60],[-85,112],[74,21],[-21,94],[7,75],[-42,95],[148,48],[-108,137],[-56,105],[268,7],[-1,47],[181,39],[28,-5],[23,66],[-25,195],[-243,4],[-68,15],[-44,25],[-21,112],[111,66],[-59,135],[28,28],[0,46],[-17,62],[1,96],[-16,83],[-20,18],[49,49],[35,274],[-32,127],[1,137],[12,57],[-35,853],[138,-53],[84,-71],[59,-14],[33,74],[-95,107],[-23,86],[-34,42],[-169,12],[9,150],[-116,184],[141,82],[39,128],[-230,7],[16,16],[-20,224],[-44,40],[-19,113],[-39,-10],[-161,112],[3,62],[-120,6],[-22,-38],[-277,63],[-71,55],[-105,40],[-13,62],[43,225],[-80,130],[-129,87],[-118,-10],[52,160],[22,380],[-38,203],[387,-9],[164,-6],[-3,439],[480,5],[-2,121],[-274,0],[49,57],[39,21],[-39,28],[-41,51],[-54,11],[-22,65],[-3,66],[-254,100],[-50,44],[43,147],[121,103],[-175,10],[-49,103],[-160,-71],[-24,47],[31,50],[76,61],[251,1],[247,407]],[[33675,73180],[357,4],[243,0],[716,0],[335,-1],[164,2],[388,-1],[2,423],[2,702],[-4,245],[1,592],[280,0],[387,3],[166,-5],[385,-1],[731,1],[254,1],[966,1],[652,0],[1146,0],[659,0],[575,1],[559,-1],[88,-100],[68,-54],[66,9],[35,44],[55,16],[58,-38],[79,-18],[143,-83],[29,-73],[18,-22],[78,-57],[65,-151],[124,-176],[3,-51],[61,-115],[33,-101],[119,-70],[20,-29],[31,-105],[53,-64],[17,-79],[46,-60],[27,-21],[88,-24],[43,-30],[50,-59],[97,-51],[102,-15],[89,-88],[28,-15],[294,-24],[134,-113],[65,-7],[41,-57],[-10,-54],[40,-93],[24,-24],[93,0],[48,-86],[20,-12],[58,6],[28,-8],[138,-185],[74,-75],[92,-118],[43,-18],[14,-64],[27,-72],[43,-15],[90,0],[83,-63],[18,-41],[26,-18],[169,-59],[77,-32],[21,-69],[64,-5],[92,-66],[35,-81],[42,-38],[21,-88],[-5,-39],[16,-31],[34,-22],[-6,-28],[51,-79],[58,-22],[41,-1],[56,-53],[11,-31],[50,11],[37,-45],[-1,-35],[65,-48],[55,-56],[49,-3],[46,-72],[60,-31],[51,-12],[9,-43],[46,3],[0,-56],[28,-1],[-11,-51],[-1,-61],[36,13],[46,-23],[53,9],[37,-35],[54,-8],[9,-27],[39,-14],[47,-47],[-10,-31],[51,-15],[26,67],[40,-1],[3,-25],[39,-15],[15,-37],[40,-2],[38,-54],[33,25],[122,25],[28,-28],[-26,-26],[-4,-36],[27,-15],[65,46],[38,-34],[4,-31],[42,-43],[44,16],[30,-7],[-18,-77],[61,10],[65,-18],[78,-44],[-7,-31],[62,-74],[63,-34],[-1,-35],[50,10],[61,-90],[55,30],[50,-42],[35,25],[44,6],[24,-57],[60,-44],[10,-120],[17,-60],[34,-50],[51,1],[59,-32],[77,9],[26,-32],[-5,-47],[41,-8],[42,-63],[24,-76],[23,-28],[-7,-51],[36,-22],[-5,-35],[20,-49],[19,-1],[-8,-65],[30,-6],[-22,-61],[24,-53],[-16,-44],[20,-26],[-3,-46],[31,-38],[-14,-27],[46,-31],[-26,-41],[9,-41],[-20,-44],[57,-50],[53,-26],[58,12],[-8,-33],[32,-6],[-13,-59],[-22,-25],[41,-27],[-7,-33],[57,-13],[44,-60],[102,-69],[12,-85],[-9,-40],[47,-4],[-5,-42],[102,-35],[49,-71],[26,-14],[-20,-48],[34,-45],[24,-93],[40,-54],[-2,-83],[-11,-47],[18,-18],[-39,-56],[-2,-31],[21,-33],[1,-49],[-16,-20],[32,-87],[-27,-52],[-37,-42],[-18,-42],[46,-55],[-22,-9],[-13,-48],[42,-25],[0,-50],[23,-41],[7,-51],[-28,-49],[52,-3],[-20,-78],[43,1],[-26,-47],[11,-30],[-7,-78],[22,-45],[35,-7],[-3,-29],[29,-19],[5,-34],[47,-30],[2,-23],[56,-45],[12,-70],[53,-24],[25,-30],[-37,-43],[41,-13],[-8,-27],[82,-60],[43,-72],[3,-33],[32,-19],[22,-35],[-16,-81],[47,-26],[-7,-34],[27,-64],[30,-31],[4,-84],[51,-24],[-6,-19],[-44,-17],[35,-47],[42,-29],[-1,-26],[51,-56],[-2,-41],[48,7],[61,-44],[38,-2],[9,-42],[27,-34],[60,-27],[215,-138],[26,-86],[28,6],[3,-51],[46,5],[21,-23],[64,-13],[-3,-31],[37,-1],[43,-36],[65,54],[24,-39],[64,1],[12,-18],[115,-24],[13,-33],[54,-17],[55,-43],[7,-57],[68,26],[23,-22],[-18,-83],[-17,-24],[89,-64],[8,-27],[49,-41],[4,-57],[50,-43],[23,-49],[35,7],[36,-24],[12,-33],[70,5],[9,-37],[48,5],[76,-62],[-1,-27],[33,-30],[41,-2],[69,-41],[6,-30],[66,-43],[146,-63],[28,-3],[74,-35],[33,13],[120,-30],[51,6],[48,-43],[57,14],[40,-36],[41,27],[40,-21],[55,5],[72,-15],[50,-38],[64,16],[13,-52],[34,-10],[59,28],[25,-42],[1,-54],[-19,-13],[-1,-54],[22,-32],[73,53],[5,-53],[57,6],[1,-49],[50,-57],[44,-70],[62,13],[32,-33],[45,-5],[112,-29],[21,-48],[158,30],[47,-31],[28,-34],[35,-3],[104,25],[39,-52],[41,6],[58,-33],[3,-72],[89,-12],[-14,-32],[44,-9],[35,-56],[63,-50],[-16,-58],[46,-20],[8,27],[43,1],[0,-33],[61,-33],[17,-30],[-9,-31],[52,-1],[22,-23],[38,6],[20,-37],[30,17],[19,-46],[44,-2],[70,-22],[34,40],[21,82],[62,-16],[11,-46],[-56,-18],[21,-45],[49,-5],[42,41],[28,-11],[-37,-57],[37,-30]],[[72443,21842],[-2,-3]],[[72441,21839],[-2,-4]],[[72439,21835],[-4,-4]],[[72435,21831],[-16,-76]],[[72419,21755],[0,-5]],[[72419,21750],[55,-62],[26,-3]],[[72500,21685],[1,2]],[[72501,21687],[1,-2]],[[72502,21685],[0,-2]],[[72502,21683],[4,1]],[[72506,21684],[1,0]],[[72507,21684],[23,7]],[[72530,21691],[4,1]],[[72534,21692],[19,-2]],[[72553,21690],[6,-4]],[[72559,21686],[118,-52],[-16,-42],[68,-168],[18,-36],[-37,-88],[-10,-93],[153,-74],[114,-70],[-11,-41],[82,-92],[66,-61],[-38,-75],[-17,-120],[-20,-110],[42,-14],[-10,-77],[114,-39],[-9,-33],[-35,11],[-46,-18],[-17,-22],[-4,-84],[62,-92],[-60,-18],[51,-65],[-48,-25],[36,-93],[-6,-79],[-27,-80],[-53,-50]],[[73019,19786],[-19,19],[-182,28],[-57,-41],[-67,-120],[-264,60],[-40,118],[-368,30],[-209,155]],[[71813,20035],[-36,65],[-32,115],[-29,78],[-18,100],[-36,33],[3,34],[-45,15],[-17,23],[-46,14],[13,116],[-37,27],[-67,16],[60,84],[-27,42],[92,105],[30,100],[75,78],[49,-11],[44,46],[61,47],[15,34],[70,46],[46,17],[55,73],[-18,40],[29,22],[2,40],[19,15],[13,47],[-36,35],[44,157]],[[72089,21688],[0,1]],[[72089,21689],[1,1]],[[72090,21690],[1,1]],[[72091,21691],[18,13]],[[72109,21704],[1,1]],[[72110,21705],[64,-22]],[[72174,21683],[2,0]],[[72176,21683],[58,-9]],[[72234,21674],[2,1]],[[72236,21675],[19,-6]],[[72255,21669],[6,-2]],[[72261,21667],[1,-1]],[[72262,21666],[40,-14]],[[72302,21652],[-2,6]],[[72300,21658],[-21,60],[-37,42]],[[72242,21760],[-2,2]],[[72240,21762],[-4,2]],[[72236,21764],[-3,3]],[[72233,21767],[11,6]],[[72244,21773],[6,-3]],[[72250,21770],[22,-7]],[[72272,21763],[6,-2]],[[72278,21761],[48,74],[-32,18]],[[72294,21853],[-1,0]],[[72293,21853],[5,36]],[[72298,21889],[16,18]],[[72314,21907],[10,0]],[[72324,21907],[10,3]],[[72334,21910],[62,105],[41,28],[23,-9],[24,-95],[15,-17],[-56,-80]],[[55397,48602],[-1,-1]],[[55395,48601],[-1,-1]],[[55385,48578],[0,-1]],[[55378,48543],[-1,-2]],[[55331,48482],[-1,-1]],[[55316,48471],[-1,-1]],[[55314,48470],[-1,-1]],[[55309,48465],[-1,0]],[[55300,48455],[-1,-1]],[[55294,48437],[0,-1]],[[55306,48394],[0,-1]],[[55274,48391],[-1,1]],[[55268,48395],[-1,0]],[[55260,48400],[-1,0]],[[55254,48404],[-1,0]],[[55233,48410],[-1,0]],[[55208,48408],[-7,-4]],[[55164,48318],[-1,0]],[[55141,48268],[-1,0]],[[55115,48244],[0,-1]],[[55114,48242],[0,-1]],[[55114,48229],[0,-2]],[[54888,47899],[1,-1]],[[54898,47885],[28,-31]],[[54839,46916],[0,-2]],[[54836,46886],[-1,-4]],[[54819,46869],[-4,-1]],[[54788,46825],[-5,-5]],[[54782,46818],[1,-6]],[[54817,46776],[1,-3]],[[54832,46744],[0,-1]],[[54832,46734],[0,-1]],[[54832,46729],[0,-1]],[[54934,46686],[1,-1]],[[54963,46649],[1,-2]],[[55019,46595],[4,-1]],[[55081,46479],[2,-1]],[[55188,46404],[3,-3]],[[55189,46396],[0,-3]],[[55193,46391],[4,1]],[[55232,46366],[2,-1]],[[55242,46320],[0,-1]],[[55257,46290],[-1,-1]],[[55347,46137],[8,-8]],[[55498,46018],[3,-2]],[[55555,45987],[2,-3]],[[55600,45962],[4,-2]],[[55651,45945],[7,-6]],[[55661,45911],[3,-5]],[[55721,45870],[1,1]],[[55785,45833],[-6,-2]],[[55756,45811],[-1,-2]],[[55740,45805],[-4,-3]],[[55733,45798],[1,-2]],[[55734,45796],[1,-3]],[[55726,45757],[-4,-5]],[[55743,45739],[6,-3]],[[55745,45711],[-1,-1]],[[55744,45673],[5,-8]],[[55837,45564],[2,-4]],[[55849,45518],[-5,-3]],[[55796,45442],[148,-137]],[[56468,44823],[1,0]],[[56472,44821],[1,0]],[[56499,44814],[1,0]],[[56500,44814],[2,-1]],[[56512,44811],[1,-1]],[[56527,44813],[1,0]],[[56533,44813],[1,0]],[[56543,44809],[1,-1]],[[56549,44808],[1,0]],[[56556,44807],[1,0]],[[56570,44801],[1,0]],[[56579,44795],[0,-1]],[[56583,44792],[2,0]],[[56589,44789],[1,-1]],[[56604,44782],[1,0]],[[56607,44780],[0,-1]],[[56623,44769],[1,-1]],[[56632,44768],[1,0]],[[56640,44769],[1,1]],[[56684,44775],[1,0]],[[56713,44757],[0,-1]],[[56714,44756],[1,-1]],[[56731,44746],[0,-1]],[[56737,44739],[1,-2]],[[56741,44734],[1,-1]],[[56750,44726],[0,-1]],[[56763,44727],[1,0]],[[56785,44720],[1,-1]],[[56786,44718],[1,0]],[[56790,44714],[0,-1]],[[56795,44708],[1,0]],[[56817,44696],[1,0]],[[56822,44695],[0,1]],[[56822,44696],[1,0]],[[56831,44704],[0,1]],[[56832,44709],[0,1]],[[56864,44705],[1,0]],[[56865,44705],[0,-1]],[[56876,44700],[1,1]],[[58167,45887],[70,-95],[13,-74],[24,0],[57,-85],[-56,-129],[-121,0],[-1,-157],[430,-176],[4,-156],[65,-159],[149,-524],[70,-423],[60,-532],[-29,-201],[56,4],[-28,-74],[-84,-15],[-77,-4],[-56,-70],[-292,15],[-3,-25],[-30,-33],[-57,-21],[-63,-7],[-61,-24],[-10,-19],[-68,-7],[-100,-26],[-42,18],[-31,-12],[-64,9],[-55,-7],[-44,25],[-7,24],[-59,37],[-8,31],[-31,15],[-95,-73],[-74,-18],[-61,56],[-32,114],[-27,44],[-64,64],[-62,52],[-10,-10],[-2,-73],[-28,-27],[2,-31],[-266,126],[-65,-106],[-135,77],[-105,68],[-128,-191],[-50,58],[-45,-150],[-116,91],[-49,26],[-73,-3],[-33,33],[-45,-16],[-19,-33],[-81,2],[-62,-16],[-22,-16],[-55,43],[10,38],[-78,50],[-46,-56],[-34,-16],[-98,-3],[-33,17],[-73,-32],[-24,7],[-226,-23],[-32,40],[-72,-22],[-31,14],[-12,-63],[-25,-18],[3,-109],[11,-32],[-46,-139],[-103,-117],[-37,5],[-51,-16],[-7,-78],[-73,-18],[-16,-36],[-68,8],[-23,18],[-28,-14],[-40,4],[-83,-22],[-2,-68],[49,-125],[-26,-61],[-10,-72],[24,-76],[-26,-38],[-54,-30],[-106,-119],[-65,-147],[-56,-31],[-99,170],[-140,-83],[-261,-231],[-202,-162],[-12,-78],[-76,8],[-44,13],[-19,-103],[-99,16],[89,-79],[51,-108],[15,25],[63,-21],[-20,-59],[-30,-190],[-90,-144],[13,-53],[69,-59],[6,-106],[61,-74],[-25,-30],[8,-39],[-52,-31],[-73,-78],[-44,-62],[31,-107],[54,-117],[-13,-69],[-27,-25],[265,-13],[-34,-199],[-71,-75],[-32,13],[-120,102],[-114,-48],[-2,-45],[-19,-115],[-66,51],[-32,-9],[66,-97],[-86,-16],[-1,53],[-39,1],[23,-99],[-59,-57],[-47,-24],[-31,-37],[-26,-1],[-24,-37],[-40,-12],[-208,-142],[-164,-135],[0,-12],[-64,-172],[-21,-99],[-53,-87],[-7,-52],[-41,-67],[-16,-99],[6,-90],[-26,-92],[-9,-138],[-14,-130],[-13,-187],[-173,-235],[-6,-636],[37,-30],[-15,-52],[16,-65],[-5,-30],[47,-23],[-6,-35],[17,-27],[36,-1],[29,-27],[6,-44],[42,-10],[44,-65],[20,-72],[3,-65],[-39,-7],[2,-32],[44,-68],[-23,-41],[16,-41],[47,-58],[-23,-24],[31,-25],[8,-60],[42,-23],[-8,-24],[-53,-23],[-49,41],[-48,-28],[-44,7],[-30,19],[-79,-37],[-99,-6],[-38,54],[-73,40],[-46,-2],[-21,-74],[-44,-55],[-54,-8],[-31,-39],[-32,-11],[-11,-68],[22,-18],[-57,-62],[-8,-29],[22,-47],[-18,-58],[-39,-36],[31,-40],[-11,-36],[57,-44],[-19,-40],[-37,-22],[29,-26],[9,-41],[54,-48],[-4,-39],[-37,12],[-31,-26],[-3,-28],[-40,-69],[0,-34],[-67,21],[-23,-17],[-17,-56],[-29,-35],[13,-67],[21,-46],[46,-66],[27,-83],[-12,-49],[-63,-56],[-22,-81],[-29,-5],[-68,-50],[-18,-34]],[[51410,34314],[-91,52],[-297,-125],[-56,-27],[-141,-46],[25,-32],[-27,-27],[26,-49],[-46,-23],[-31,-1],[-45,64],[-67,16],[-19,32],[-31,20],[-21,53],[-24,22],[-64,6],[-30,24],[-44,79],[-16,80],[-34,39],[12,64],[-144,13],[-68,-6],[6,157],[-11,188],[-39,61],[-15,43],[-64,-32],[-92,-14],[-26,6],[-17,55],[-38,-43],[-33,-3],[-99,52],[-22,47],[-35,16],[13,32],[-29,49],[11,22],[3,97],[-12,55],[-40,21],[-61,4],[6,-28],[-33,-20],[-85,16],[-32,42],[-74,-12],[-16,-180],[-395,-443],[-110,-29],[-79,379],[-261,309],[16,95],[45,42],[662,215],[-81,36],[-11,13],[21,145],[-10,43],[29,35],[-10,34],[-45,57],[-54,29],[-31,-49],[-38,25],[-36,-36],[-78,55],[-46,55],[9,32],[-6,195],[-25,9],[-40,46],[20,23],[-39,55],[23,46],[-3,24],[32,63],[-46,72],[21,37],[-43,3],[-250,-79],[-353,-25],[-364,10],[-175,-9],[-105,-56],[-53,133],[3,106],[-31,73],[-40,32],[12,67],[-21,37],[21,34],[1,38],[-29,10],[-25,54],[-27,-2],[-57,42],[-30,-2]],[[47211,37251],[-28,23],[-9,62],[-26,-3],[-32,61],[-73,16],[-26,-17],[-29,13],[-31,-10],[-188,47],[-69,-16],[-48,-28],[-24,-59],[-50,-7],[-22,-17],[-43,41],[-33,-9],[-32,24],[-63,-12],[-44,32],[6,23],[-67,3],[-25,37],[-62,56],[-4,22],[38,31],[-8,51],[19,39],[-27,39],[26,19],[-4,31],[22,23],[-24,51],[17,42],[5,52],[-42,8],[6,33],[-27,30],[-7,37],[18,70],[-72,34],[-56,-9],[-39,16],[-37,67],[10,18],[-13,71],[-30,45],[-12,73],[-36,4],[7,64],[-48,35],[22,23],[-16,31],[44,38],[13,46],[33,68],[-17,23],[-66,6],[-34,17],[1,44],[-37,19],[56,73],[-14,23],[16,39],[-23,29],[-39,13],[-37,36],[-10,29],[-37,13],[15,54],[-15,85],[-36,30],[6,39],[-21,44],[-68,76],[-14,-2],[-56,55],[-18,89],[-136,-34],[1,-86],[-33,60],[-124,-30],[-34,-165],[-65,155],[-48,295],[-23,123],[40,136],[3,48],[39,57],[-68,36],[13,44],[-38,38],[17,32],[-29,91],[-28,-15],[-89,215],[31,296],[275,-127],[73,-19],[17,14],[1,50],[17,52],[-22,48],[-61,58],[-10,29],[-74,49],[-183,17],[149,155],[-25,70],[-38,-7],[-55,31],[-15,35],[-76,21],[3,24],[-27,34],[-61,45],[-17,-12],[-58,33],[8,28],[-12,45],[-27,37],[29,29],[-8,21],[54,108],[-60,59],[3,110],[-35,63],[-24,13],[-43,70],[7,25],[-28,26],[-5,38],[-38,56],[3,32],[-105,-3],[-6,128],[-13,86],[-39,27],[-18,39],[-256,236],[-71,-22],[-98,79],[-300,100],[-237,-59],[-34,-24],[-40,-47],[-26,-124],[-41,-53],[-47,-19],[-115,-30],[-106,-34],[-162,-32],[-158,58],[-32,-18],[-44,35],[-25,63],[-209,303],[10,49],[-47,83],[-26,23],[131,97],[3,70],[22,25],[12,61],[-53,23],[-56,64],[-36,5],[-18,-46],[-38,63],[-60,11],[-21,27],[30,80],[-39,22],[-53,-4],[-154,303],[-21,110],[-68,181],[-37,29],[-279,302],[-35,11],[-12,41],[-261,283],[-28,26],[-141,18],[-66,-63],[-46,31],[-50,96],[-13,67],[78,36],[-30,60],[-48,37],[-19,-4],[-89,94],[-110,81],[-83,-80],[-16,81],[27,23],[-156,283],[-38,102],[-3,35],[-251,100],[20,582],[-18,12],[-78,153],[53,3],[56,79],[-96,63],[-52,22],[-199,299],[146,-23],[-155,395],[101,86],[106,24],[22,79],[8,69],[48,58],[-2,31],[-32,36],[-75,-8],[-46,49],[23,41],[-5,62],[-14,9],[12,72],[15,13],[126,2],[1,-33],[56,-9],[21,32],[38,12],[305,156],[245,145],[-85,142]],[[69806,30329],[21,-120],[-30,-122],[15,-54],[-18,-53],[30,-59],[-23,-24],[-5,-38],[18,-52],[-77,-77],[10,-59],[58,-3],[-27,-46],[1,-54],[17,-31],[31,-17],[58,-74],[22,-2],[73,42],[-12,50],[119,7],[25,-17],[64,-10],[57,-31],[-27,-54],[-81,-90],[-2,-119],[27,-29],[-15,-26],[-172,33],[-33,-45],[-62,-43],[-54,-46],[-6,-39],[-93,-70],[-20,-8],[-41,-48],[-56,-40],[-51,4],[-30,23],[-39,2],[-51,22],[-67,0],[-45,62],[-91,29],[-76,14],[-28,81],[-124,16],[-31,10],[-99,-125],[39,-5],[20,-25],[-31,-39],[7,-22],[-59,-201],[-43,-97],[23,-32],[-18,-82],[25,-44],[2,-39],[46,-32],[-16,-51],[5,-33],[-47,-60],[-26,2],[-46,31],[-83,27],[-28,-21],[30,-77],[-53,-70],[16,-26],[-33,-49],[33,-34],[4,-30],[-48,-35],[56,-34],[11,-25],[-115,-20],[-101,-42],[-37,26],[-33,40],[-174,6],[-12,-36],[-78,29],[-155,103],[-98,45],[-34,-35],[42,-42],[-4,-86],[-11,-19],[-136,9],[-20,-13],[2,-38],[22,-19],[-142,-107],[-117,3],[-75,-4],[-53,8],[-74,-19],[-166,53],[4,101],[-32,0],[-45,22],[9,-93],[-62,8],[2,-35],[-27,-20],[-17,-43],[-46,-73],[21,-72],[-92,-35],[-28,-21],[-111,-45],[-28,-39],[-36,-11],[-10,-43],[78,-17],[-23,-130],[19,-53],[46,-57],[-4,-57],[-136,-30],[-52,-49],[22,-33],[36,-77],[-11,-44],[7,-26],[34,-21],[48,-3],[43,-164],[87,21],[33,-60],[12,4],[90,-44],[46,-155],[-1,-114],[-80,5],[-12,-159],[27,-26],[-35,-26],[38,-28],[48,-117],[-6,-51],[6,-156],[41,-41],[9,-57],[-1,-60],[26,-11],[102,1],[93,-37],[45,-12],[2,-23],[63,-89],[13,-60],[-5,-96],[51,-54],[38,3],[77,-62]],[[67499,25074],[27,-68],[73,-52],[9,-39],[-37,-41],[-35,-15],[-1,-30],[-54,-58],[10,-77],[43,-27],[7,-23],[-63,-32],[-20,-42],[4,-37],[-40,-77],[-4,-45],[-51,-31],[-32,-35],[25,-72],[-48,-33],[30,-71],[85,-53],[42,-16],[-16,-50],[14,-25],[17,-87],[-25,-32],[-39,4],[30,-137],[-114,-7],[-56,-19],[-22,16],[-57,-15],[-100,-6],[-53,25],[5,-36],[-111,-61],[-36,-35],[-50,-11],[-5,-58],[-16,-8],[-24,-55],[7,-39],[-65,18],[5,58],[19,13],[13,115],[-5,37],[-59,-55],[-39,-17],[-68,34],[-47,-35],[-48,4],[1,35],[49,38],[56,-4],[40,48],[-5,28],[-75,6],[-77,-6],[-39,-38],[-43,-101],[-18,-12],[-134,12],[-26,21],[-46,-26],[-36,-35],[-57,-13],[-38,-21],[-58,-10],[-57,-43],[-57,-76],[-26,17],[-102,-8],[-19,91],[-28,41],[-6,44],[-41,12],[-41,57],[-48,30],[-34,-26],[10,-79],[-15,-31],[-7,-55],[-72,0],[-27,63],[-50,-21],[-39,-1],[-77,68],[-29,12],[-29,-19],[-59,-8],[-68,28],[-1,-126],[-67,-23],[-30,7],[-24,38],[-6,62],[-18,17],[-79,-14],[4,50],[21,32],[40,30],[43,15],[-27,60],[3,27],[43,6],[16,35],[-45,26],[-7,24],[-36,16],[-31,-7],[-31,41],[-30,12],[-5,34],[55,63],[30,21],[-98,91],[-73,7],[-31,17],[-128,-13],[-21,-24],[-57,-3],[-103,-37],[-25,-40],[-29,-19],[-82,104],[-47,14],[-34,-48],[-12,-51],[-24,-49],[90,-57],[-92,-58],[-74,-4],[-6,-81],[-71,18],[-71,90],[-36,-19],[-23,34],[-113,-35],[-62,49],[-80,-6],[-20,-18],[-108,-5],[-24,28],[-47,-11],[-37,19],[-53,-43],[-54,20],[-4,52],[33,26],[-7,54],[15,78],[-49,-13],[-3,111],[-13,76],[23,18],[48,-1],[6,34],[-12,40],[-38,-11],[-65,92],[-18,2],[10,167],[58,8],[171,-33],[41,167],[-31,65],[-140,-2],[-45,66],[-36,5],[-17,42],[-61,11],[-8,-58],[-37,1],[-52,27],[7,65],[49,20],[-47,64],[9,60],[-34,43],[-37,14],[-36,-7],[-49,-68],[-34,-8],[-35,30],[-55,13],[8,41],[-29,5],[-34,-36],[-52,35],[-81,-71],[-28,45],[-26,-3],[-1,-39],[-28,-32],[-53,-2],[-62,29],[-27,-18],[-7,-68],[-24,-24],[9,-28],[33,-34],[-6,-40],[-74,-5],[-28,-56],[28,-25],[-8,-35],[-33,18],[-37,-25],[-24,-79],[-65,-4],[-28,-47],[10,-30],[-16,-38],[-40,-7],[-9,44],[-19,21],[-63,2],[-25,21],[-112,-38],[-72,42],[-33,34],[-91,-65],[-41,14],[-34,28],[-28,46],[-95,-58],[-55,-5],[0,-25],[-38,-24],[-66,23],[-81,-40],[0,34],[35,2],[9,44],[-48,24],[-30,-29],[-25,61],[-29,4],[22,96],[-42,25],[4,58],[-26,19],[35,30],[-22,31],[49,50],[-63,3],[-38,28],[44,43],[-56,22],[60,44],[9,56],[-68,9],[-20,61],[-115,2],[-13,-22],[-52,-11],[-6,-18],[36,-65],[-36,-22],[-15,63],[-30,30],[29,94],[31,63],[-34,31],[-14,-49],[-62,-12],[-62,0],[-49,-16],[-62,23],[-25,20],[-38,-2]],[[60475,25491],[36,43],[11,48],[53,20],[-32,51],[68,89],[24,44],[40,9],[15,62],[-13,59],[29,42],[34,20],[40,82],[41,49],[6,28],[-19,33],[9,21],[51,1],[60,-43],[57,104],[-2,42],[29,6],[-17,40],[27,26],[14,65],[-8,37],[11,84],[-48,72],[-9,49],[-45,7],[-63,32],[-21,-19],[-47,18],[-21,51],[2,44],[25,106],[-8,28],[-67,11],[-37,16],[24,53],[-37,8],[-72,-1],[1,44],[-49,10],[4,42],[23,37],[-64,42],[-54,24],[36,81],[41,45],[2,34],[-15,39],[25,41],[84,42],[44,-6],[83,71],[26,31],[-1,57],[30,15],[18,51],[61,65],[33,16],[1,37],[64,-5],[23,50],[77,-20],[-2,52],[9,58],[23,49],[31,29],[12,47],[48,61],[13,58],[-4,74],[17,14],[38,103],[72,63],[-11,66],[26,43],[136,7],[80,45],[-11,50],[-42,3],[-11,78],[63,0],[29,23],[0,60],[27,44],[67,-44],[25,18],[-11,47],[16,57],[-3,31],[25,23],[3,117],[10,49],[21,32],[46,8],[-55,60],[35,12],[-1,31],[41,19],[51,-8],[4,31],[106,15],[43,-13],[4,27],[47,43],[58,-29],[36,-2],[28,35],[51,20],[6,83],[-18,35],[13,125],[-51,79],[-53,33],[-41,55],[55,48],[108,24],[30,-12],[49,36],[49,-2],[36,26],[34,-26],[42,15],[-12,128],[-34,10],[5,64],[-153,196],[-22,40],[-28,-8],[-7,41],[61,35],[24,28],[-13,25],[28,49],[40,29],[-1,44],[-15,28],[61,97],[37,19],[7,101],[-41,12],[16,64],[30,41],[-6,48],[60,93],[1,17],[-55,53],[22,18],[26,-18],[54,125],[-35,-7],[-54,13],[-10,158],[-14,26],[103,5],[86,-11],[114,95]],[[62832,31654],[57,47]],[[62889,31701],[90,76],[32,-1],[8,-30],[42,28],[124,-7],[63,28],[168,35],[184,-18],[55,-36],[53,-58],[37,30],[92,12],[175,-32],[-10,-60],[119,-108],[116,-87],[101,-19],[208,32],[102,22],[311,-53],[43,-37],[23,-44],[88,-10],[22,-52],[103,-30],[-35,-58],[52,-41],[24,-39],[130,-41],[20,63],[52,-60],[72,-38],[-94,-199],[165,-71],[29,-46],[69,12],[76,-29],[29,17],[15,-29],[48,-22],[62,-6],[57,-76],[13,-49],[103,-17],[39,6],[21,-27],[47,-27],[0,-33],[33,-13],[76,15],[12,65],[85,-44],[-30,-61],[6,-38],[22,-20],[99,46],[24,35],[53,25],[46,-6],[52,16],[52,44],[280,3],[36,57],[-31,85],[-34,52],[-38,14],[-18,24],[52,35],[49,85],[-5,57],[35,79],[6,49],[34,53],[29,9],[67,-26],[46,11],[40,-10],[32,28],[57,-7],[97,52],[118,-42],[201,23],[81,-69],[23,-28],[97,3],[67,-37],[47,-44],[57,16],[48,-64],[-27,-112],[29,-39],[24,15],[28,54],[30,3],[88,-107],[51,-27],[147,-127],[55,-151],[73,10],[183,-6],[100,12],[67,-4],[3,-28],[-35,-64],[58,-45],[-30,-52],[21,-39],[15,-77],[27,25],[147,-60],[156,111],[130,20],[-17,-61],[55,10],[33,-21],[43,42],[73,25],[-11,60],[55,18]],[[70945,18244],[34,-75],[34,-129],[53,-131],[16,-23],[31,-115],[51,-4],[-2,-59],[45,-37],[35,-12],[-19,-31],[10,-74],[60,-26],[71,-133],[44,-22],[28,-55],[38,-39],[-5,-60],[37,-37],[-10,-39],[56,-3],[-29,52],[90,43],[0,-128],[65,-20],[32,20],[52,-5],[45,-16],[131,-16],[6,24],[164,1],[-5,-40],[72,-54],[26,23],[4,35],[84,69],[45,14],[39,-15],[22,-33],[-9,-28],[46,-60],[-12,-42],[78,-45],[2,-24],[30,-42],[44,-5],[44,-56],[51,-87],[-16,-73],[-23,-25],[16,-41],[23,-12]],[[72669,16554],[-16,-18],[10,-40],[22,-24],[8,-74],[33,-30],[-56,-41],[13,-35],[31,-4],[3,-39],[-31,-16],[18,-39],[33,42],[70,56],[68,-40],[-28,-58],[61,-25],[28,27],[43,-4],[-24,-52],[3,-107],[-24,-99],[173,-6],[303,-99],[119,-211],[-74,-259],[3,-4],[144,27],[88,1],[-7,-32],[55,-14],[9,34],[83,-21],[19,-31],[27,8],[30,-26],[48,8],[35,-29],[-72,-59],[-36,-8],[-15,-22],[-38,0],[-65,19],[-29,-8],[-48,-47],[9,-46],[37,10],[140,-60],[51,2],[82,-34],[70,-38],[38,-33],[-10,-27],[32,-23],[55,34],[90,-75],[36,-19],[18,-27],[48,6],[26,33],[41,7],[41,21],[15,34],[56,24],[40,52],[42,7],[23,-17],[51,1],[12,26],[41,-23],[57,10],[24,81],[34,-8],[60,13],[24,-28],[31,8],[42,-43],[18,45],[44,-9],[51,6],[32,-38],[24,9],[37,-31],[-31,-21],[4,-40],[35,-59],[-8,-59],[-20,-32],[-38,-23],[41,-133],[23,-57],[-5,-59]],[[75249,14522],[-1,-115],[-157,-183],[-26,-37],[-94,-70],[-11,-50],[40,-121],[-10,-53],[11,-72],[1,-105],[62,-12],[17,-67],[0,-58],[22,-83],[43,13],[70,-46],[83,-95],[143,19],[49,-99],[39,-13],[12,-60],[27,-15],[1,-50],[16,-40],[44,-32],[-11,-30],[9,-70],[42,-20],[34,-128],[-69,5],[-28,-98],[125,-270],[70,-284],[-70,-7],[-52,-109],[-23,-115],[86,-129],[55,-34],[45,50],[50,-16],[36,18],[54,0],[80,-52],[33,-55],[45,-42],[11,-54],[-57,-81],[-8,-68],[-28,-93],[13,-95],[94,-45],[28,15],[47,-22],[52,1],[11,-19],[37,0],[14,-35],[80,-30],[49,0],[77,-51],[72,-75],[142,-41],[154,-74],[-72,-91],[-130,19],[-71,-72],[-88,-167],[-38,-53],[-4,-64],[23,0],[26,-81],[23,-22],[27,-81],[13,-84],[29,-22],[-16,-114],[-30,-37],[11,-32],[-26,-51],[5,-23],[-30,-19],[2,-28],[-27,-30],[9,-25],[-27,-36],[0,-41],[-15,-62],[-49,-28],[-33,28],[-27,-16],[31,-47],[8,-33],[-44,-31],[-10,-35],[-62,4],[-22,-23],[-24,10],[-64,-41],[-10,-32],[-32,6],[-12,-33],[-41,-4],[20,61],[-70,-4],[-14,-11],[-49,39],[-40,-90],[0,-73],[-10,-40],[52,-1],[2,-61],[16,-74],[34,-33],[24,-58],[70,20],[12,-8],[-44,-132],[-99,-45],[-47,-35],[-2,-22],[-34,-18],[-42,-3],[-37,-19],[-94,-3],[5,53],[-101,-1],[-53,13],[-42,-64],[-221,-49],[11,-85],[36,-62],[-15,-67],[76,14],[-2,-43],[61,1],[-25,-85],[40,-98],[0,-22],[-198,-278],[-80,1],[-66,17],[-75,5],[-63,-20],[-57,-30],[-6,-24],[-38,0],[-27,-30],[-30,5],[-47,-13],[-51,-37],[-23,-32],[-33,-100],[-21,-23]],[[74735,7770],[-67,41],[17,29],[-15,45],[-97,105],[-60,58],[-190,205],[-133,113],[-50,48],[-56,92],[-56,68],[-43,68],[-106,121],[-27,46],[-73,3],[-67,14],[-28,-18],[-33,0],[-80,-25],[-44,-48],[-17,-40],[-128,32],[-69,-5],[-56,29],[-151,54],[-116,48],[-269,92],[-162,50],[-100,21],[-142,52],[-276,80],[-446,114],[-235,52],[-192,39],[-220,27],[-197,14],[-98,1],[-144,-22],[-80,10],[-130,40],[-113,44],[-92,44],[-195,111],[-53,41],[-179,154],[-67,24],[-26,-37],[-35,12],[28,86],[-39,25],[-18,-23],[-67,11],[-9,44],[7,42],[20,29],[48,8],[-2,34],[-45,48],[-79,19],[-70,-30],[-45,-43],[55,-55],[-63,-10],[-28,31],[14,51],[-30,11],[-65,104],[-32,30],[-31,10],[-28,56],[-109,61],[-171,67],[-131,47],[-118,37],[-104,20],[-199,89],[-165,68],[-99,33],[-166,73],[-411,156],[-161,60],[-200,70],[-73,21],[-250,97],[-201,72],[-157,48],[-103,19],[-91,33],[-338,148],[-180,72],[-231,82],[-177,49],[-291,125],[-76,9],[-84,53],[-121,43],[31,74],[-14,52],[-67,75],[-141,123],[-119,90],[-153,92],[-26,79],[-122,96],[-220,112],[-196,83],[-117,39],[-63,32],[-276,120],[-134,52],[16,32],[46,-10],[16,47],[-13,72],[-48,70],[-76,79],[-66,56],[-76,51],[-50,3],[-20,-18],[-64,-4],[-32,-29],[-19,13],[39,43],[-25,64],[-27,-30],[-49,-17],[-24,39],[-34,9],[-39,-21],[-25,95],[-46,28],[-103,12],[-19,15],[-17,140],[-80,143],[-77,84],[-50,41],[-53,27],[-18,24],[-64,47],[-54,28],[-7,67],[-31,43],[-64,60],[6,58],[-36,47],[-22,43],[-83,83],[-99,68],[-103,46],[-43,5],[-18,34],[-118,69],[-123,65],[-30,27],[-123,54],[-131,34],[-71,36],[-86,19],[-103,0],[-146,-30],[-45,-72],[-82,-73],[-16,-37]],[[60311,14844],[3,69],[-6,61],[-33,26],[-37,11],[-73,50],[-28,40],[-17,125],[24,45],[-23,103],[23,53],[-5,65],[21,112],[-14,13],[7,43],[40,44],[15,42],[7,80],[41,20],[25,65],[16,15],[91,-6],[30,16],[88,21],[65,-9],[65,9],[70,56],[32,1],[47,-28],[41,11],[37,-9],[87,21],[17,26],[-16,52],[25,34],[79,-22],[61,20],[38,-3],[34,41],[33,3],[25,26],[-10,55],[41,72],[56,-64],[55,-12],[20,30],[-47,18],[-21,41],[66,24],[-22,99],[52,17],[3,17],[-56,72],[29,27],[6,80],[-52,56],[14,27],[-10,39],[-61,60],[8,57],[35,54],[18,56],[48,33],[-99,140],[-10,95],[24,140],[14,36],[81,59],[18,38],[44,56],[203,82],[43,30],[44,15],[189,39],[46,-10],[23,-39],[8,-46],[63,-6],[76,33],[64,-1],[66,25],[58,-14],[20,-59],[49,-34],[18,-69],[27,-69],[27,-20],[5,-59],[19,-31],[40,-15],[38,-33],[69,-11],[12,-30],[35,-15],[69,-5],[43,-40],[115,17],[36,-16],[45,44],[50,-34],[33,10],[24,44],[37,-21],[36,16],[13,46],[27,3],[24,-22],[48,15],[40,-5],[32,-41],[24,16],[-6,67],[115,41],[65,1],[26,20],[67,6],[56,45],[59,-40],[25,16],[49,-5],[39,-16],[57,0],[50,10],[104,-82],[73,14],[46,-12],[62,-33],[35,30],[52,-36],[74,0],[53,-15],[48,36],[90,19],[85,36],[50,-16],[46,8],[14,-136],[65,-10],[59,-35],[45,-50],[13,-30],[-24,-53],[15,-31],[47,3],[38,38],[76,-48],[20,21],[12,45],[-9,28],[27,29],[62,-42],[30,24],[32,88],[42,8],[27,-42],[39,-21],[66,-12],[110,15],[41,18],[35,-35],[42,-94],[16,-56],[63,-13],[42,-41],[50,7],[39,-92],[34,-31],[18,16],[13,54],[53,16],[41,-39],[-5,-69],[23,-31],[35,-14],[-8,-46],[54,-51],[24,-3],[59,-64],[13,78],[33,19],[18,32],[74,15],[-3,36],[31,16],[54,92],[-77,55],[-65,37],[-47,42],[-8,65],[-43,-2],[-6,21],[-107,70],[-48,22],[-40,32],[-36,-6],[-11,29],[-62,87],[-28,22],[-50,-13],[-83,188],[3,90],[23,121],[28,104],[1,36],[-30,5],[-3,56],[-24,37],[17,32],[-10,49],[-36,35],[-46,-14],[-5,30],[50,166],[-29,31],[-68,28],[18,70],[-21,107],[51,42],[10,23],[-36,120],[-1,21],[49,71],[-10,17],[62,48],[67,12],[10,-37],[43,4],[0,-37],[52,-12],[58,-64],[-8,-40],[33,-4],[-9,-47],[-1,-75],[42,-8],[10,27],[54,47],[31,40],[-5,17],[30,43],[26,-2],[33,28],[-5,30],[38,21],[-9,36],[30,31],[61,-4],[-4,22],[41,67]],[[66443,18970],[25,-16],[9,-34],[30,1],[52,-77],[30,-2],[35,-35],[62,-16],[33,-35],[24,27],[99,-65],[47,7],[35,-30],[15,-59],[-31,-20],[29,-72],[35,40],[67,-18],[23,-16],[24,-43],[33,-9],[21,16],[34,-8],[21,-30],[-6,-31],[39,-31],[-77,-39],[-29,-120],[-24,-30],[2,-57],[-19,-38],[-76,-15],[-23,-31],[6,-47],[-43,-86],[5,-56],[43,-45],[9,-47],[49,-3],[43,23],[58,-44],[29,-63],[-29,-12],[0,-49],[-17,-26],[-8,-57],[-19,-24],[5,-65],[47,-74],[20,-78],[75,43],[20,45],[42,41],[55,-14],[34,-36],[2,-21],[46,-119],[-23,-94],[-39,-51],[-12,-35],[-20,-126],[45,-16],[59,2],[30,-40],[23,-61],[130,-99],[33,-41],[50,31],[102,19],[-4,88],[35,78],[11,47],[85,-51],[23,67],[50,37],[5,23],[72,28],[1,20],[53,-8],[20,39],[35,33],[56,89],[53,-4],[11,50],[60,-2],[35,17],[-6,44],[63,34],[58,-8],[19,72],[14,8],[52,104],[-7,80],[-47,23],[43,25],[29,-34],[108,46],[16,42],[35,3],[39,-31],[19,-41],[45,-29],[-17,-70],[18,-19],[38,28],[107,-66],[11,53],[46,53],[9,34],[31,23],[90,26],[82,53],[29,36],[22,4],[102,-30],[27,-27],[13,61],[66,29],[63,-7],[25,56],[63,-36],[44,57],[-4,85],[40,53],[15,56],[64,43],[-10,71],[61,54],[21,60],[122,-19],[25,-12],[29,-50],[52,-33],[33,0],[-35,60],[-30,69],[-16,9],[-49,71],[-5,37],[34,21],[0,50],[144,-66],[21,-59],[30,-42],[0,-21],[42,-26],[10,-57],[29,-17],[32,31],[7,60],[117,-8],[39,-16],[-7,-59],[54,-76],[48,-27],[94,-17],[43,56],[72,19],[41,38]],[[74838,29420],[-10,-12]],[[74828,29408],[-47,-61],[13,-24],[76,-71],[43,-3]],[[74913,29249],[1,0]],[[74914,29249],[1,0]],[[74915,29249],[1,1]],[[74916,29250],[5,-3]],[[74921,29247],[2,2]],[[74923,29249],[18,3]],[[74941,29252],[1,1]],[[74942,29253],[5,5]],[[74947,29258],[0,5]],[[74947,29263],[-1,2]],[[74946,29265],[15,3]],[[74961,29268],[5,0]],[[74966,29268],[3,0]],[[74969,29268],[3,-1]],[[74972,29267],[38,-1]],[[75010,29266],[13,3]],[[75023,29269],[46,-8]],[[75069,29261],[3,-1]],[[75072,29260],[-2,-67],[-47,-17]],[[75023,29176],[-2,-4]],[[75021,29172],[11,-28],[40,-2]],[[75072,29142],[3,6]],[[75075,29148],[12,-20]],[[75087,29128],[7,-4]],[[75094,29124],[41,-33]],[[75135,29091],[1,-2]],[[75136,29089],[15,-36]],[[75151,29053],[0,-65]],[[75151,28988],[-1,-1]],[[75150,28987],[8,-21]],[[75158,28966],[0,-2]],[[75158,28964],[1,-2]],[[75159,28962],[8,-3]],[[75167,28959],[-1,-2]],[[75166,28957],[6,-6]],[[75172,28951],[2,0]],[[75174,28951],[13,-6]],[[75187,28945],[1,-1]],[[75188,28944],[21,-10]],[[75209,28934],[1,1]],[[75210,28935],[42,-36]],[[75252,28899],[3,-2]],[[75255,28897],[-1,-5]],[[75254,28892],[1,-1]],[[75255,28891],[6,-7]],[[75261,28884],[0,-1]],[[75261,28883],[15,-10]],[[75276,28873],[2,-1]],[[75278,28872],[-1,-4]],[[75277,28868],[1,-3]],[[75278,28865],[4,-8]],[[75282,28857],[-1,1]],[[75281,28858],[2,-10],[26,-4],[27,4]],[[75336,28848],[-1,4]],[[75335,28852],[3,6]],[[75338,28858],[5,-4]],[[75343,28854],[16,1]],[[75359,28855],[1,2]],[[75360,28857],[0,3]],[[75360,28860],[3,2]],[[75363,28862],[5,1]],[[75368,28863],[2,2]],[[75370,28865],[32,15]],[[75402,28880],[4,-1]],[[75406,28879],[7,-7]],[[75413,28872],[0,-5]],[[75413,28867],[16,-18],[41,13]],[[75470,28862],[4,1]],[[75474,28863],[8,13]],[[75482,28876],[1,0]],[[75483,28876],[19,-19]],[[75502,28857],[5,1]],[[75507,28858],[28,11]],[[75535,28869],[4,-3]],[[75539,28866],[21,4]],[[75560,28870],[2,2]],[[75562,28872],[26,42]],[[75588,28914],[0,2]],[[75588,28916],[40,23]],[[75628,28939],[3,3]],[[75631,28942],[7,10]],[[75638,28952],[2,1]],[[75640,28953],[49,32]],[[75689,28985],[4,-3]],[[75693,28982],[6,-5]],[[75699,28977],[4,-2]],[[75703,28975],[51,-29],[13,46],[26,18]],[[75793,29010],[2,2]],[[75795,29012],[40,1],[3,-37]],[[75838,28976],[-2,-19]],[[75836,28957],[-14,-62]],[[75822,28895],[-9,-15]],[[75813,28880],[-7,-4]],[[75806,28876],[-36,-23],[-1,-34],[59,-34]],[[75828,28785],[-1,-1]],[[75827,28784],[17,-11]],[[75844,28773],[16,5]],[[75860,28778],[44,7],[52,-48],[49,60]],[[76005,28797],[1,0]],[[76006,28797],[12,-7]],[[76018,28790],[-2,4]],[[76016,28794],[8,2]],[[76024,28796],[3,-3]],[[76027,28793],[5,8]],[[76032,28801],[2,5]],[[76034,28806],[8,17]],[[76042,28823],[2,5]],[[76044,28828],[38,6],[7,-34],[32,-4],[16,-33],[-7,-37],[43,-28],[-29,-42],[8,-22],[44,22],[59,-20],[16,-41],[48,-27],[39,-33],[0,-51],[-21,-23],[15,-82],[-20,-60],[-68,-55],[-30,12],[-10,28],[-34,-16],[8,-35],[-32,-7],[-23,-32],[13,-45],[-9,-21],[-54,-20],[7,-29],[-14,-40],[28,-13],[-30,-75],[-34,25],[-18,-63],[-19,-16],[-18,-79],[50,-83],[-21,-17],[-75,-12],[-40,-112],[-18,-23],[37,-32],[6,-44],[-31,-9],[14,-56],[27,-27],[-7,-22],[58,-21],[50,-7],[-37,-85],[-27,17],[-54,-32],[-21,-32],[-123,-2],[-31,-31],[-17,21],[25,55],[-40,22],[-30,-53],[-43,-20],[-36,24],[-20,31],[101,57],[-7,34],[-50,14],[7,31],[-103,35],[4,56],[-19,36],[-34,27],[-33,-30],[-35,-13],[-46,4],[-20,19],[-80,-35],[-50,-13],[-5,-26],[-48,-32],[-34,-89],[10,-34],[-25,-73],[-30,-18],[-4,-58],[33,-71],[26,-19],[-48,-24],[-37,-4],[-19,-25],[-86,-10],[-29,-20],[-16,52],[-39,-18],[20,-30],[-78,-77],[13,-50],[-43,-45],[-42,-19],[13,-53],[43,-60],[19,11],[26,69],[41,32],[55,24],[16,23],[123,45],[92,82],[38,60],[50,8],[-12,-63],[-35,-55],[-3,-23],[-60,-50],[-43,-20],[5,-47],[-20,-79],[-64,-46],[-62,-54],[-1,-34],[23,-73],[44,-111],[-7,-23],[-65,2],[-38,30],[-26,-9],[-35,-43],[-13,-41],[6,-70],[-14,-64],[-34,-59],[-44,-42],[-34,-9],[-16,-35],[-95,-25],[-39,-26],[-15,-35],[63,-54],[29,-65],[74,-76],[15,-48],[0,-173],[17,-28],[11,-60],[-17,-62],[26,-13],[26,-52],[115,-48],[39,14],[39,-16],[25,7],[80,-22],[109,141],[60,71],[130,99],[40,-19],[27,15],[57,0],[73,53],[65,17],[28,94],[-7,27],[65,56],[89,61],[90,121],[47,6],[38,19],[21,64],[38,10],[29,24],[60,-9],[99,15],[79,99],[14,44],[70,83],[9,39],[25,6],[72,104],[43,41],[30,-13],[28,47],[-8,38],[43,69],[21,70],[108,-183],[42,1],[34,-23],[13,-110],[-44,-52],[82,-248],[-36,-29],[78,-13],[52,-26]],[[77019,26070],[-27,-18],[-7,-46],[19,-31],[-19,-44],[-61,-10],[-24,-100],[-30,-48],[-46,-5],[-46,-49],[-22,15],[-52,-18],[-30,-25],[-33,-92],[6,-26],[-44,-29],[-1,-26],[-54,-44],[-19,-53],[-36,-22],[13,-38],[-46,-26],[-12,-53],[-73,-25],[-51,8],[-22,-20],[-68,36],[9,-66],[-10,-76],[9,-37],[-66,-18],[-47,23],[-38,-20],[-66,21],[-18,35],[-62,-11],[-22,-14],[5,-52],[-17,-5],[-28,-57],[-69,-42],[6,-88]],[[75820,24874],[1,-4]],[[75821,24870],[25,-92],[24,-21],[43,-2],[62,11],[34,25],[24,55],[87,14],[44,64],[52,22],[35,-21],[54,-60],[22,-10],[37,-52],[-30,-45],[21,-44],[82,-74],[8,-28],[-20,-53],[12,-37],[-41,-50],[72,-11],[68,-24],[13,-49],[-27,-44],[-33,-4],[-21,20],[-23,-36],[-3,-40],[-124,-61],[8,-36],[-22,-38],[-22,-82],[-51,-45],[29,-54],[-4,-23],[43,-30],[-24,-41],[-17,-68],[55,-84],[-82,-80],[-68,0],[-14,21],[-72,11],[-45,-77],[-78,-1],[28,-32],[-34,-30],[-1,-74],[-66,-8],[5,-63],[-11,-26],[-70,-37],[-18,-50],[-54,-24],[-40,-69],[56,-40],[56,17],[37,-4],[42,-21],[8,-79],[34,-22],[23,-32],[5,-61],[58,-93],[22,-13],[55,17],[54,-45],[28,-60],[-4,-50],[-31,-18],[-43,12],[-93,-83],[-69,-15]],[[75931,22593],[-43,-1],[-26,26],[-117,-7],[-38,20],[-83,-23],[-7,-59],[42,-41],[-3,-61],[-88,-130],[-145,-201],[-125,35],[-70,-14],[-55,5]],[[75173,22142],[-1,1]],[[75172,22143],[-6,2]],[[75166,22145],[-1,2]],[[75165,22147],[-24,6]],[[75141,22153],[-3,0]],[[75138,22153],[-27,-8]],[[75111,22145],[-1,0]],[[75110,22145],[-9,-8]],[[75101,22137],[-1,1]],[[75100,22138],[-17,0]],[[75083,22138],[-2,-3]],[[75081,22135],[-12,4]],[[75069,22139],[-1,1]],[[75068,22140],[-2,-1]],[[75066,22139],[-5,2]],[[75061,22141],[-4,0]],[[75057,22141],[-71,20]],[[74986,22161],[0,-8]],[[74986,22153],[-2,-7]],[[74984,22146],[-5,-6]],[[74979,22140],[1,-33],[-43,-18],[-70,-1],[-34,49],[10,19],[-40,69],[-45,-56],[-35,28],[-33,-4],[10,46],[-21,11],[-53,-11],[-43,-80],[-75,-74],[-117,-15],[-37,39],[-74,-7]],[[74280,22102],[7,39]],[[74287,22141],[-3,3]],[[74284,22144],[-18,21]],[[74266,22165],[0,4]],[[74266,22169],[-14,38]],[[74252,22207],[4,12]],[[74256,22219],[16,50]],[[74272,22269],[-9,18]],[[74263,22287],[-1,44]],[[74262,22331],[7,0]],[[74269,22331],[4,9]],[[74273,22340],[1,5]],[[74274,22345],[36,-35],[56,-22],[21,20],[74,33],[-68,35],[29,40],[7,46],[18,35],[-27,34],[-6,73],[65,31],[34,-13],[16,45],[8,93],[20,37],[-60,37],[-23,60],[-25,26],[-61,30],[3,29],[-23,44],[-69,76],[-56,-12],[9,-68],[-19,-15],[-82,82],[104,94],[-5,41],[-31,-11],[-26,-44],[-48,35],[-55,-20],[-23,37],[-82,21],[-1,23],[-58,20],[-32,-10],[-77,38],[-53,-50],[17,-44],[-22,-24],[-27,21],[-62,26],[-108,64],[12,46],[-59,51],[-41,-50],[-69,38],[-57,-32],[-59,-57],[-22,-51],[49,-25],[-11,-60],[9,-16],[-50,-25],[-38,13],[-19,-54],[-53,-118],[-19,-18],[-81,39],[-36,28],[-117,58],[33,21],[-82,150],[219,104],[50,-13],[-12,73],[16,6],[-14,94],[-40,7],[-26,26],[-43,12],[-9,30],[-58,-16],[17,66],[58,-10],[64,84],[83,5],[10,111],[-21,37],[13,36],[-10,44],[-56,7],[8,46],[-47,27],[-49,56],[-41,31],[-26,-51],[-26,-4],[-20,-78],[18,-39],[-29,-67],[-1,-58],[-32,-46],[41,-21],[29,-75],[-95,-2],[-27,31],[6,80],[11,14],[-5,94],[-72,-31],[7,-55],[-44,-29],[10,-16],[-19,-46],[-27,47],[15,127],[-18,17],[-41,1],[-5,35],[-39,35],[-93,-22],[-54,11],[-20,-16],[-57,-8],[-55,4],[-11,-64],[-26,-39],[-49,-24],[11,-21],[-79,-37],[-3,-28],[-50,-46],[-21,-57],[-43,-20],[30,-100],[28,-12],[3,-43],[-33,-14],[-20,-40],[26,-47],[-47,-75],[-49,5],[-26,-67],[-93,-6],[-18,-24],[-13,-55],[-74,-22],[-54,-90],[-9,-41],[25,-33],[-61,-8],[-56,8],[-35,-27],[3,-48],[-27,-13],[-27,16],[-42,-4],[-63,-38],[-20,88],[42,21],[-36,35],[-1,33],[21,36],[-3,33],[30,41],[-8,34],[14,28],[-74,36],[-94,-41],[-24,20],[-23,87],[-15,-8],[-59,49],[37,51],[-7,24],[-50,-30],[-42,-10],[-44,28],[-25,-1],[-25,28],[36,170],[6,45],[-16,28],[72,24],[38,-7],[-18,54],[40,33],[1,26],[31,40],[-47,184],[-39,56],[-7,46],[-85,72],[-10,82],[-46,43],[-8,40],[-88,123],[68,22],[-42,95],[-53,-8],[-13,-42],[-79,-2],[-12,32],[-71,-3],[-15,-24],[-108,23],[-120,-103],[-24,26],[-23,54],[-57,-5],[-18,77],[-39,-7],[-19,-51],[-32,13],[-76,9],[-39,-28],[-75,26],[-89,73],[-63,59],[-86,90],[-8,65],[-207,191],[-27,-42],[-43,-16]],[[69477,24987],[60,576],[65,620],[23,-10],[78,20],[60,30],[35,31],[93,9],[72,-4],[42,65],[128,18],[43,-3],[46,42],[52,32],[12,26],[44,-1],[53,17],[37,-19],[18,-42],[30,15],[21,49],[52,13],[20,49],[47,2],[-2,33],[20,27],[67,39],[64,-1],[41,50],[49,16],[68,2],[-8,56],[-29,28],[21,29],[-44,53],[-76,62],[-46,71],[-6,42],[23,39],[80,36],[52,48],[55,69],[-26,31],[51,35],[-31,26],[19,37],[32,31],[2,36],[-18,24],[26,32],[108,45],[-3,30],[32,5],[21,54],[6,48],[20,23],[19,64],[77,17],[-8,62],[11,32],[40,20],[-20,24],[37,27],[29,39],[-7,28],[17,37],[-31,63],[27,102],[19,8],[-1,48],[68,36],[17,100],[-32,31],[23,48],[-26,29],[-47,-24],[-21,17],[-40,97],[11,35],[31,8],[49,-25],[67,25],[57,-12],[20,42],[-11,20],[29,62],[29,6],[24,37],[60,34],[23,-34],[33,6],[48,-45],[1,-37],[42,-3],[-1,-27],[60,-45],[54,-6],[35,39],[19,-21],[61,-6],[40,56],[85,15],[37,70],[47,5],[52,35],[22,-11],[50,34],[25,-28],[58,7],[1,33],[82,-12],[82,63],[-7,-42],[43,-16],[76,107],[-37,177],[-53,14],[-32,34],[14,55],[42,13],[33,32],[-15,127]],[[72713,29404],[48,-13],[13,19],[39,0],[70,50],[78,17],[63,-13],[14,32],[38,14],[12,-20],[68,39],[19,-73],[31,17],[24,-86],[-4,-47],[26,-24],[13,-45],[-19,-18],[16,-32],[35,6],[29,-15],[-49,-49],[34,-18],[11,-45],[34,-10],[-1,-29],[51,-49],[1,-56],[32,5],[44,33],[51,-55],[122,-67],[128,26],[-20,57],[-16,-7],[-41,51],[20,16],[106,-47],[9,-40],[28,7],[19,49],[65,-8],[35,23],[13,-35],[119,25],[23,-48],[-17,-34],[7,-33],[41,22],[-12,54],[12,42],[24,37],[35,13],[73,-58],[66,-17],[99,53],[35,29],[23,75],[9,60],[-4,47],[-22,60],[26,14],[-15,38],[24,102],[-20,26],[-34,8],[-15,23],[-70,36],[-56,-4],[-50,36],[-45,19],[-22,48],[-28,26],[38,30],[86,-9],[25,42],[10,44],[39,-12],[44,4],[81,-30],[27,10],[36,53],[40,9],[41,-10],[67,52],[47,-3],[24,-20],[15,-48],[48,-26],[37,10],[-30,36],[44,42],[2,32]],[[74929,29869],[41,-8],[58,40],[27,-24],[25,-71],[-9,-82],[14,-39],[-38,-13],[-41,26],[-49,-56],[7,-31],[-41,-47],[-62,-92],[-23,-52]],[[61419,32655],[84,-10],[41,-22],[60,-7],[46,23],[78,-11],[30,-32],[-1,-35],[72,7],[35,25],[85,-55],[-10,-30],[94,-66],[-7,-26],[112,-49],[56,-74],[40,-18],[20,-76],[18,-17],[-4,-55],[56,0],[66,48],[36,2],[77,-41],[2,23],[88,9],[3,-97],[26,-172],[-12,-54],[17,-30],[53,-9],[45,-102],[60,32],[17,-14],[30,-68]],[[60475,25491],[-51,-27],[-89,14],[-14,-23],[-113,16],[14,-57],[-57,12],[-9,-58],[-78,-23],[-55,26],[-38,-21],[-14,-32],[-67,-12],[-63,-28],[-56,2],[-47,37],[-57,6],[6,28],[-68,23],[-26,-53],[-47,19],[-83,-65],[-45,9],[-29,-38],[-67,9],[-32,17],[-39,-26],[-37,23],[-47,-2],[-45,36],[-62,-12],[-45,-41],[-33,8],[-54,-24],[-22,-22],[-18,-50],[-68,13],[0,-38],[-52,-9],[-42,-25],[39,-41],[4,-33],[-34,-31],[-29,35],[-44,-2],[-37,-30],[-35,28],[-13,-57],[-52,-4],[-38,-25],[-35,38],[-48,7],[-15,-21],[5,-38],[-31,-12],[4,-32],[-29,-68],[-46,-24],[-37,4],[-52,29],[-74,-20],[-25,-39],[13,-118],[13,-25],[-3,-60],[-40,-23],[-78,10],[-87,-9],[-51,-50],[-40,-28],[-17,21],[-75,-49],[-54,-16],[-10,14],[-65,-3],[-12,-26],[37,-52],[-12,-33],[-46,-41],[-32,9],[-85,66],[-3,33],[-27,13],[-17,39],[3,36],[-25,15],[-14,35],[-38,-21],[-43,5],[-31,22],[-56,-8],[-91,22],[-46,20],[-49,-22],[43,-73],[76,-59],[-8,-29],[-57,-5],[-43,42],[-42,9],[-11,-57],[-48,-8],[-34,9],[-45,-7],[-36,54],[-107,-7],[1,-43],[-52,-11],[12,-40],[33,-18],[-33,-91],[42,-53],[-7,-39],[14,-45],[30,-22],[-24,-40],[11,-41],[-84,-103],[5,-49],[-24,-16],[13,-44],[44,-73],[40,-32],[44,-10],[18,49],[44,18],[25,38],[64,15],[78,35],[51,-18],[9,-31],[70,1],[95,-76],[68,15],[14,24],[103,-34],[40,1],[155,-44],[20,-24],[77,-6],[54,-93],[104,-96],[54,-36],[-5,-40],[-29,-20],[-11,-31],[36,-39],[-5,-41],[18,-26],[-19,-31],[-33,-11],[-24,-43],[3,-25],[37,-50],[-80,-42],[-62,21],[-79,-1],[-97,-142],[26,-26],[-6,-27],[40,-91],[-30,-26],[67,-68],[10,-36],[25,-20],[20,-47],[-47,-58],[-33,-59],[37,-29],[-6,-59],[55,-49],[7,-63],[68,-8],[52,-62],[41,10],[67,-19],[9,-77],[-28,-40],[15,-19],[21,-80],[-6,-55],[29,-32],[-24,-34],[-3,-59],[-20,-8],[-66,-84],[59,-25],[48,29],[31,33],[60,27],[67,-6],[9,-93],[53,-15],[92,38],[23,19],[34,-7],[44,49],[67,52],[71,0],[14,-47],[-17,-57],[108,-25],[26,-62],[-53,-56],[-35,-13],[-14,-82],[38,16],[3,-33],[-29,-19],[-36,-62],[21,-36],[-55,-100],[-22,-4],[-53,-106],[-16,-58],[0,-55],[-24,-68],[-36,-34],[-22,0],[-51,-87],[-11,-62],[11,-79],[-30,-14],[-24,-72],[-1,-33],[-61,-61],[-39,-15],[-69,36],[-31,0],[27,58],[0,36],[-42,-3],[-22,-48],[-69,27],[-40,0],[-11,26],[-53,33],[-93,-54],[-54,-4],[-9,-64],[-30,-19],[-34,-1],[-34,-56],[-31,-20],[-28,38],[-70,-65],[-66,27],[0,24],[-76,-25],[-61,-51],[-62,-62],[-51,-10],[-31,20],[-28,-21],[-73,-13],[-57,-89],[-20,-6],[11,-113],[-27,-22],[-85,71],[-62,-23],[-3,-32],[35,-76],[-30,-16],[13,-108],[97,-114],[-88,-11],[-46,12],[-21,-74],[-23,-32],[-55,28],[-20,-6],[-48,-50],[19,-88],[-17,-26],[-88,-53],[-48,-92],[-20,-7],[-13,-42],[-57,-57],[-10,-37],[-38,4],[-67,-21],[-90,44],[-61,81],[-48,34],[-18,25],[7,44],[-27,62],[2,45],[-32,2],[-30,68],[-87,-31],[-46,-1],[-7,-35],[-28,-2],[-84,-48],[-33,8],[-37,-36],[-111,-55],[-55,23],[-49,6],[-20,-14],[-84,5],[-8,-23],[-50,-27],[-33,22],[-18,-16],[-33,59],[-88,10],[-77,-29],[-32,44],[-38,-13],[-43,-83]],[[50036,20231],[-15,-14],[-34,31],[44,35],[28,54],[-4,25],[-40,49],[-41,21],[-44,-16],[-39,1],[-39,27],[26,22],[-13,38],[-49,-14],[-29,5],[-19,-25],[-46,-5],[-30,43],[-65,-17],[-15,-16],[-59,10],[15,77],[28,69],[40,49],[-9,55],[-26,29],[-53,26],[-63,13],[-30,-7],[-38,-73],[-54,7],[-47,-11],[-30,-28],[-19,20],[-147,68],[-153,95],[-67,83],[-52,32],[-40,56],[-66,54],[-80,52],[45,38],[12,35],[-8,70],[-33,44],[-19,47],[-41,21],[-6,35],[-34,0],[-83,73],[63,14],[-26,46],[1,46],[-70,42],[-7,29],[5,84],[-29,128],[-30,19],[-51,77],[-43,21],[-59,-10],[0,-39],[-39,13],[-33,33],[6,63],[-39,37],[-82,48],[-77,7],[-9,40],[-74,63],[-87,84],[-81,63],[9,40],[-38,64],[-72,56],[-48,88],[-80,96],[-45,34],[10,20],[-20,63],[-43,78],[-59,84],[-123,144],[-88,115],[-154,226],[-76,102],[-92,138],[-59,103],[-66,134],[-27,66],[-81,158],[13,74],[-8,65],[-5,121],[2,66],[21,69],[-15,74],[-27,86],[-19,37],[-57,36],[-20,-14],[-31,52],[0,34],[-22,32],[-88,85],[-177,153],[-13,34],[-45,55],[-21,58],[-38,78],[-28,82],[-12,76],[30,28],[62,-20],[-1,46],[16,40],[65,15],[27,59],[41,7],[45,49],[40,63],[39,18],[52,-9],[73,44],[29,-5],[51,24],[36,-8],[62,26],[47,6],[71,-7],[21,-11],[78,28],[79,-5],[31,-26],[23,14],[1,40],[48,-7],[76,15],[45,26],[67,-17],[56,-4],[67,19],[23,-7],[44,22],[70,17],[71,60],[40,15],[16,52],[53,14],[66,42],[53,107],[47,144],[-3,87],[-32,36],[-14,42],[-77,54],[-67,27]],[[47659,26744],[10,44],[24,8],[31,-22],[8,45],[26,27],[14,42],[34,-6],[-7,41],[31,57],[13,93],[50,38],[10,22],[41,23],[32,1],[21,46],[95,-41],[45,107],[-36,16],[-7,43],[4,62],[24,16],[19,86],[22,38],[-15,28],[27,17],[46,56],[-2,51],[46,6],[69,49],[35,54],[76,51],[21,33],[28,-15],[55,23],[52,4],[42,-41],[-11,-51],[30,-17],[46,18],[60,38],[31,-13],[36,10],[27,-29],[59,-23],[14,42],[43,48],[71,21],[89,40],[28,-9],[30,28],[-13,33],[9,32],[77,76],[30,6],[23,54],[32,-3],[75,56],[6,27],[48,22],[53,-13],[46,6],[31,-10],[64,31],[26,-51],[83,12],[44,-27],[29,8],[37,-14],[-17,-94],[46,-6],[18,-37],[83,-51],[47,-4],[9,-31],[-9,-42],[76,-20],[30,-32],[31,15],[36,-6],[38,-44],[24,10],[44,-13],[40,34],[95,13],[86,-43],[4,-26],[52,-27],[-3,-61],[32,-9],[6,-54],[39,10],[11,-50],[62,-59],[13,-83],[74,-39],[23,-45],[59,-37],[10,-19],[56,-26],[28,17],[62,-74],[25,23],[92,-65],[42,-77],[29,-35],[9,-36],[38,-10],[50,-39],[19,-42],[106,-38],[29,-45],[30,-15],[22,-47],[35,-1],[31,-23],[-5,-52],[14,-16],[-9,-55],[27,-55],[-6,-76],[28,-50],[35,-17],[35,-43],[24,18],[-12,46],[3,53],[-26,47],[17,46],[73,38],[-58,87],[35,59],[-15,50],[24,19],[-22,65],[-52,45],[-52,139],[-29,8],[-12,63],[-28,-9],[-7,-47],[-24,1],[-124,119],[-29,-36],[-41,14],[-50,-11],[-68,-66],[-3,38],[103,120],[-49,11],[15,41],[2,47],[-16,25],[68,27],[43,1],[14,-17],[51,-18],[54,36],[60,10],[-2,58],[46,9],[-25,47],[-16,56],[84,-4],[50,42],[36,57],[-1,39],[70,57],[36,42],[56,-25],[-1,68],[25,34],[-70,4],[-58,37],[-22,100],[57,69],[-21,38],[-45,24],[27,85],[24,7],[9,34],[-51,7],[15,67],[23,-7],[26,32],[24,54],[-17,68],[24,26],[17,101],[-46,49],[-11,71],[19,62],[46,74],[49,18],[54,-18],[69,-2],[32,-17],[43,29],[28,-12],[47,9],[18,23],[39,-27],[66,46],[26,-23],[24,44],[19,-16],[1,-53],[59,1],[-10,33],[27,12],[28,-16],[131,38],[26,14],[-1,83],[44,6],[1,24],[69,43],[12,23],[54,30],[52,-16],[51,-64],[37,2],[50,-17],[-18,66],[-26,16],[27,31],[43,-82],[-1,-46],[60,10],[25,-29],[18,51],[75,18],[47,27],[88,-39],[87,40],[6,33],[-32,67],[41,66],[63,70],[51,12],[34,21],[8,45],[75,38],[31,31],[22,67],[-12,24],[24,71],[-30,31],[-67,21],[-9,22],[43,38],[-30,35],[35,14],[17,28],[76,-7],[47,41],[-31,46],[-54,25],[-10,54],[-31,53],[5,44],[-72,28],[-30,32],[-15,43],[-45,-15],[-4,-29],[-35,-7],[-53,27],[-47,0],[-9,47],[-35,32],[-60,13],[-31,37],[17,106],[-11,13],[-52,-12],[-59,24],[-30,52],[10,25],[-51,11],[-65,33],[-16,35],[62,121],[-17,53],[-74,52],[38,118],[49,21],[10,38],[33,23],[31,51],[-4,27],[-78,86],[-64,47],[-28,53],[58,14],[11,23],[-9,41],[-35,35],[-69,11],[-57,-21],[-77,-3],[-45,36],[-51,14],[-39,-3],[-93,38],[-15,-8],[-58,25],[-95,-22],[-19,-26],[-52,10],[-18,30],[-45,-24],[-84,13],[-74,74],[-48,11],[-37,45],[-27,52],[-43,25],[-8,49],[-21,13],[61,36],[2,32],[-32,3],[-36,47],[-23,85],[9,54],[46,44],[5,44],[27,27],[25,145],[-79,64],[-76,-10],[-91,-62],[-42,-9],[-54,23],[-75,44],[4,23],[-21,53],[-58,12],[-28,-22],[-21,-38],[-20,9],[-50,-62],[-39,14],[-34,-22],[-55,-11],[-51,11],[14,116],[26,40],[-26,41],[4,91],[-9,20],[25,32],[-8,93],[-20,44],[-3,53],[-16,22],[34,48],[14,65],[-1,41],[27,57],[-6,68],[29,22],[-6,23],[56,47],[19,60],[-36,26],[27,40],[8,54],[25,17],[-11,59],[26,37],[24,10],[83,90],[20,35],[19,79],[-27,19],[0,161]],[[51636,34029],[28,6],[77,-11],[35,20],[11,111],[-16,19],[19,65],[54,88],[40,7],[21,22],[68,13],[29,-27],[10,-39],[87,-77],[41,-10],[11,22],[-51,135],[23,86],[-28,25],[-49,-12],[-37,45],[17,25],[36,18],[-58,73],[-5,25],[52,83],[46,-11],[30,9],[28,31],[32,4],[51,-47],[79,-11],[42,5],[-1,32],[-30,22],[57,33],[15,36],[59,8],[44,-7],[34,-42],[-22,-28],[19,-29],[-7,-28],[66,-57],[-3,-26],[16,-73],[-43,-67],[-5,-82],[-37,-53],[-16,-59],[2,-35],[-18,-34],[21,-34],[-13,-27],[-36,-12],[-29,9],[-10,-80],[55,0],[34,28],[31,-13],[75,66],[81,-26],[22,-26],[45,27],[-2,34],[38,50],[-11,81],[57,11],[21,16],[8,39],[32,15],[8,26],[56,0],[8,78],[38,47],[43,4],[0,28],[30,33],[-20,36],[12,18],[-35,57],[-33,3],[-58,29],[-13,34],[-69,7],[-36,47],[-48,29],[27,31],[76,-13],[16,24],[-31,34],[-65,46],[39,37],[5,85],[-33,-5],[-39,19],[-45,5],[-33,64],[1,55],[-29,35],[22,32],[1,39],[32,30],[16,59],[-57,34],[-18,-27],[-36,6],[-32,72],[-73,7],[-18,30],[15,19],[36,-43],[14,15],[-26,53],[58,6],[8,16],[-33,52],[60,17],[61,67],[65,18],[71,2],[27,-22],[33,19],[71,-8],[56,3],[19,18],[32,-21],[92,21],[23,-35],[24,-61],[32,31],[61,8],[40,-7],[45,-25],[130,18],[8,-24],[64,8],[90,-2],[27,18],[22,-29],[1,-30],[57,-4],[10,-30],[4,-76],[-47,-79],[-2,-64],[20,-17],[-40,-66],[14,-60],[13,-10],[-47,-68],[-185,-70],[-23,-33],[-121,-56],[-20,-47],[32,-35],[-6,-28],[-53,-22],[-18,-29],[-15,-72],[36,-27],[16,-59],[-30,-122],[-46,4],[-5,-93],[25,-53],[-57,3],[12,-43],[57,-32],[-22,-28],[51,-13],[-13,-61],[-54,1],[-3,-50],[-37,-9],[-25,-52],[12,-50],[-49,-11],[-11,-35],[-43,-27],[8,-41],[-26,-25],[13,-61],[27,-35],[-12,-29],[21,-83],[-1,-67],[-14,-22],[39,-43],[24,-76],[60,-44],[23,-95],[-11,-33],[28,-24],[15,-60],[44,-29],[18,72],[55,147],[7,123],[-11,49],[21,21],[45,89],[-32,77],[-18,79],[-20,37],[3,51],[32,40],[70,53],[36,55],[-8,31],[17,65],[-18,20],[12,36],[16,132],[27,41],[16,60],[27,38],[21,61],[-2,80],[29,87],[13,88],[19,41],[55,-7],[44,19],[24,58],[48,10],[61,-42],[43,-6],[78,-36],[31,29],[44,-59],[110,53],[68,15],[4,-14],[59,-16],[-13,-48],[27,-84],[53,-4],[-23,-99],[43,-18],[2,-92],[37,-36],[-9,-37],[19,-63],[-13,-23],[51,-52],[-4,-26],[-42,-21],[-30,-34],[-63,-14],[5,-78],[-40,-124],[-27,-36],[28,-27],[-17,-35],[-83,9],[-30,13],[-41,-111],[29,-99],[35,-4],[40,-54],[79,-18],[-13,-34],[-72,-98],[-41,-37],[-42,-128],[-31,-33],[-4,-42],[-23,-26],[-21,-85],[-66,-89],[-1,-23],[-53,-56],[43,-20],[10,-33],[-25,-30],[55,-3],[41,-26],[48,-9],[48,26],[31,-1],[32,-34],[63,-2],[46,60],[52,-24],[12,60],[-11,25],[54,45],[34,2],[51,-41],[12,-29],[30,0],[19,28],[59,9],[-8,-35],[8,-48],[57,-19],[48,6],[52,31],[27,-37],[61,42],[38,-8],[27,21],[2,46],[33,30],[9,35],[-2,95],[9,40],[-18,34],[7,35],[47,0],[33,108],[94,-12],[22,28],[-12,35],[48,16],[38,37],[48,0],[49,26],[45,-15],[59,-37],[59,81],[2,23],[-62,8],[29,45],[-13,49],[41,78],[-36,34],[-84,5],[-43,-87],[-57,-27],[-4,29],[14,85],[-55,31],[17,27],[34,17],[17,51],[-63,0],[-17,60],[8,85],[70,26],[5,26],[34,19],[34,-6],[56,88],[40,-62],[67,50],[12,47],[57,-9],[48,3],[30,-54],[70,-9],[61,59],[62,-26],[22,-104],[38,42],[74,-24],[13,-65],[-4,-62],[-63,-71],[-39,-32],[-44,10],[-21,-26],[2,-60],[-21,-54],[-22,-25],[-3,-66],[27,-16],[63,27],[33,64],[103,-16],[41,16],[59,-21],[56,-2],[37,11],[72,-15],[65,-66],[-3,-59],[22,-28],[40,-9],[51,-60],[-22,-45],[5,-60],[-52,-30],[7,-29],[-70,-4],[-29,-29],[-42,-20],[19,-56],[-18,-44],[5,-37],[-17,-29],[75,-58],[51,-19],[2,-35],[-30,-59],[-67,-29],[-12,-27],[-87,16],[-38,-32],[-36,-45],[-35,2],[-6,-67],[40,-19],[147,-20],[6,-71],[-14,-67],[-1,-62],[-41,-9],[-51,-54],[-44,22],[-65,-21],[-8,-15],[-79,-12],[-64,15],[-22,-19],[36,-26],[-17,-24],[27,-28],[-6,-37],[-67,-10],[-48,3],[-13,17],[-82,23],[2,-46],[-80,22],[-35,32],[-21,46],[-96,-84],[-31,-49],[-41,-21],[-74,-52],[-12,-93],[-15,-29],[-118,-3],[-103,-64],[-33,38],[-31,-44],[-39,-28],[-38,-66],[-16,-50],[-50,-52],[8,-20],[-35,-56],[-46,18],[-21,-45],[10,-66],[-89,40],[-33,44],[-27,-24],[-88,-44],[22,-54],[-139,-17],[-27,15],[-7,-70],[115,-78],[47,11],[21,-53],[46,-55],[12,-29],[-7,-70],[4,-55],[-32,-7],[-5,-41],[-20,-28],[-11,-87],[-56,-45],[-60,-136],[20,-90],[1,-71],[20,-39],[-44,-47],[-40,19],[-54,11],[-47,21],[-22,-103],[12,-24],[-57,-15],[-55,8],[2,24],[-35,42],[-60,13],[-61,-51],[-15,-29],[-40,-14],[-54,5],[-11,-16],[14,-75],[-33,-27],[47,-32],[12,-45],[29,-25],[-49,-17],[-26,-24],[-10,-79],[-27,-43],[69,-20],[56,10],[43,-9],[-24,-38],[5,-37],[40,-46],[17,12],[61,3],[31,-21],[16,-46],[-2,-47],[72,-48],[38,-42],[40,11],[-6,56],[20,45],[2,37],[39,54],[41,-27],[55,33],[44,0],[2,-49],[74,-133],[41,-41],[0,-39],[17,-15],[-37,-56],[13,-28],[-54,-24],[-49,8],[-91,-25],[-40,11],[-2,-57],[-22,-22],[-42,12],[-75,60],[-47,6],[-16,-26],[-52,-13],[-19,10],[-53,-7],[3,-21],[-59,4],[-33,-69],[-42,-16],[-85,31],[-36,-59],[-35,-19],[3,-76],[-8,-26],[24,-73],[54,50],[51,26],[48,-10],[49,33],[36,-37],[64,10],[24,-5],[-11,-71],[-14,-32],[7,-71],[12,-14],[-14,-78],[-67,-1],[-29,-16],[42,-42],[67,-40],[16,-26],[31,-2],[56,-62],[-15,-86],[43,-23],[27,-71],[24,-39],[46,-7],[41,-40],[62,14],[31,25],[52,17],[10,50],[43,-2],[25,14],[42,-74],[116,41],[24,27],[65,3],[73,-9],[75,-25],[-27,-53],[22,-38],[89,-78],[-8,-55],[117,-123],[55,-46],[57,-16],[33,12],[16,44],[47,-5],[46,13],[35,34],[68,-35],[74,29],[-1,48],[14,37],[63,-4],[40,-13],[21,25],[73,40],[29,-34],[48,-1],[4,-36],[23,-25],[53,2],[68,-12],[7,-15],[102,-52],[47,59],[35,-24],[70,15],[20,25],[35,12],[41,72],[28,31],[-61,1],[-9,50],[-35,6],[-47,52],[-13,36],[72,31],[38,65],[-25,42],[-25,84],[-2,52],[34,76],[23,88],[52,72],[-22,13],[15,36],[37,16],[18,-61],[58,8],[17,-39],[38,-5],[24,24],[0,35],[41,21],[46,-12],[11,-31],[30,-13],[5,-26],[50,1],[8,-24],[55,-3],[9,-87],[106,-20],[43,-21],[4,55],[29,48],[-2,28],[103,7],[25,45],[-5,36],[36,18],[22,49],[24,20],[13,77],[47,45],[87,-39],[-10,55],[2,50],[23,22],[25,-15],[29,-58],[28,92],[31,7],[40,-56],[75,28],[-10,70],[30,29],[42,5],[48,44],[-19,52],[13,23],[1,57],[64,-34],[51,-80],[2,-68],[20,-22],[43,11],[27,-10],[111,102],[30,13],[4,84],[-44,84],[3,89],[-13,60],[73,82],[-44,16],[-4,53],[49,10],[-6,25],[24,62],[30,19],[-70,76],[44,40],[2,26],[-46,9],[-70,-10],[-23,27],[-97,22],[-33,18],[21,61],[-11,43],[-77,-8],[-32,24],[-13,58],[-26,13],[-22,-27],[-107,39],[-15,55],[-31,58],[4,23],[-28,102],[32,35],[-88,22],[-28,16],[27,39],[24,-5],[41,19],[72,59],[65,119]],[[74274,22345],[-1,-5]],[[74269,22331],[-7,0]],[[74263,22287],[9,-18]],[[74256,22219],[-4,-12]],[[74266,22169],[0,-4]],[[74284,22144],[3,-3]],[[74280,22102],[-39,-29]],[[74241,22073],[-13,1]],[[74228,22074],[-12,-52],[-44,-8],[5,-29],[-60,-87],[19,-61],[6,-61],[72,-58],[26,-81],[61,-61],[-2,-30],[31,-55]],[[74330,21491],[-33,-34],[107,-117],[-12,-21],[-44,22],[-46,3],[15,-44],[-18,-34],[-8,-49],[23,-26],[-4,-62],[31,-80],[41,1],[-17,-55],[-42,-12],[-22,9],[-12,-116],[142,-294],[-62,-81],[3,-78],[-17,-156],[43,-134],[-11,-15],[-7,-110],[56,-3],[-23,-113],[26,-29],[-53,-64],[36,-42],[-4,-38],[18,-40],[-12,-28],[40,-37],[-52,-85]],[[74412,19529],[-78,-41],[-49,-11],[-107,-157],[-22,-14],[-74,-94],[-75,13],[-54,-5],[-65,-18],[-48,14],[-45,-3],[-24,-33],[-54,30],[-46,4],[-38,59],[-38,-29],[-98,69],[12,38],[-51,69],[4,66],[-21,21],[12,65],[-31,12],[-38,38],[-61,7],[-55,91],[6,21],[-116,24],[-54,-41],[-45,25],[-40,37]],[[72559,21686],[-6,4]],[[72534,21692],[-4,-1]],[[72507,21684],[-1,0]],[[72502,21683],[0,2]],[[72501,21687],[-1,-2]],[[72419,21750],[0,5]],[[72435,21831],[4,4]],[[72441,21839],[2,3]],[[72334,21910],[-10,-3]],[[72314,21907],[-16,-18]],[[72293,21853],[1,0]],[[72278,21761],[-6,2]],[[72250,21770],[-6,3]],[[72233,21767],[3,-3]],[[72240,21762],[2,-2]],[[72300,21658],[2,-6]],[[72262,21666],[-1,1]],[[72261,21667],[-6,2]],[[72236,21675],[-2,-1]],[[72176,21683],[-2,0]],[[72110,21705],[-1,-1]],[[72091,21691],[-1,-1]],[[72089,21689],[0,-1]],[[71813,20035],[-66,-38],[-75,-108],[-19,-47],[5,-24],[-8,-92],[12,-52],[-11,-77],[29,-28],[-28,-20],[-4,-38],[35,-86],[6,-74],[-4,-77],[-10,-38],[-50,-49],[-50,-20],[-26,-60],[-19,-9],[-63,-76],[-169,-17],[-17,-74],[-37,7],[-39,-13],[-10,-83],[9,-110],[17,-27],[-101,-234],[-50,-24],[-12,-58],[-113,-145]],[[66443,18970],[5,30],[46,-5],[4,32],[26,28],[13,38],[62,-4],[38,61],[27,29],[58,-2],[-23,53],[19,83],[30,28],[-2,48],[56,66],[-26,44],[44,15],[14,-13],[50,16],[7,17],[93,44],[79,27],[48,83],[61,36],[41,2],[31,18],[27,48],[-8,42],[22,72],[33,66],[7,45],[24,43],[-6,24],[51,39],[41,-9],[20,21],[-67,72],[29,28],[-6,70],[157,162],[9,-2],[36,89],[11,48],[-2,118],[28,36],[-30,42],[3,41],[54,33],[-4,42],[23,41],[-39,50],[-4,35],[38,30],[35,51],[5,62],[81,16],[37,19],[106,1],[86,43],[54,77],[52,41],[-72,90],[22,58],[5,80],[85,-19],[-21,45],[-68,3],[0,102],[22,39],[-57,45],[-17,46],[-42,23],[-49,-3],[-2,41],[-20,17],[-5,78],[-32,126],[2,43],[16,31],[-57,103],[-49,62],[26,21],[14,81],[46,36],[42,14],[20,50],[31,-72],[102,11],[48,-13],[25,49],[62,-1],[5,-22],[85,90],[4,59],[15,37],[-8,30],[1,108],[13,27],[-18,35],[14,32],[-14,48],[8,40],[50,120],[27,23],[89,-12],[34,28],[29,0],[82,-23],[-16,35],[-126,72],[-67,142],[-44,17],[-5,287],[28,65],[33,40],[-87,20],[-27,-24],[-43,10],[-10,45],[7,29],[-11,49],[14,9],[11,65],[24,-2],[34,-35]],[[68355,24010],[158,-84],[55,-1],[22,24],[56,5],[33,37],[55,-14],[49,72],[46,29],[58,20],[22,57],[88,-15],[-8,-57],[66,-2],[123,17],[25,12],[15,63],[-6,22],[-44,54],[-8,70],[-17,22],[12,66],[33,31],[-27,49],[8,68],[-27,54],[-98,112],[9,38],[-39,66],[-4,34],[-24,21],[1,40],[-22,16],[6,35],[29,33],[22,-50],[46,-28],[33,-63],[7,-105],[131,-18],[-19,61],[-22,30],[-22,77],[22,-1],[-8,64],[43,72],[26,20],[145,-63],[73,-13]],[[67499,25074],[20,41],[154,-54],[-8,-13],[120,-43],[78,-23],[61,-74],[108,-72],[88,-50],[48,-47],[12,-37],[-36,-66],[-6,-52],[-46,-18],[-25,-46],[-56,-49],[-49,-29],[153,-59],[-2,-68],[-14,-159],[102,-25],[50,25],[24,-14],[-14,-55],[57,-18],[37,-59]],[[60311,14844],[-20,-21],[-83,-30],[-11,-23],[-70,-35],[-37,3],[-96,46],[-182,108],[-198,82],[-301,84],[-256,85],[-158,49],[-100,9],[-156,47],[-28,2],[-197,66],[-105,9],[-34,10],[-42,-10],[-20,19],[-65,21],[-62,0],[-35,-19],[-85,28],[-10,32],[-99,23],[-57,-4],[-13,20],[-92,19],[-32,26],[-49,15],[-78,42],[-153,68],[-406,195],[-25,6],[-89,48],[-59,14],[-110,51],[-36,-7],[-77,31],[-36,-12],[-82,5],[-78,-6],[-15,44],[-54,14],[-24,-14],[-43,9],[-74,31],[-87,48],[-68,7],[-33,37],[-57,9],[-22,-12],[-97,20],[-168,60],[-6,25],[-43,23],[-66,16],[-66,31],[-80,-28],[-29,17],[-24,48],[-58,2],[-44,40],[-221,107],[-153,67],[-5,26],[-59,32],[-19,42],[-3,44],[-65,90],[9,43],[-7,51],[-43,88],[-3,25],[-61,90],[-21,17],[0,49],[-51,79],[-14,58],[-68,86],[-107,108],[-62,52],[-69,42],[-47,49],[-95,64],[-42,13],[-23,-13],[-21,24],[20,29],[26,2],[33,42],[19,54],[-22,62],[-48,71],[-80,89],[-60,37]],[[74412,19529],[-23,-34],[-47,-42],[-53,-155],[-41,-47],[-18,-122],[-38,-37],[-25,-2],[-30,-42],[-25,-10],[7,-52],[-22,-53],[11,-29],[44,25],[-22,52],[74,52],[12,24],[35,10],[28,-15],[13,-38],[-38,-78],[-29,-14],[-19,-57],[-84,-123],[1,-28],[-46,-75],[-15,12],[-33,-37],[-16,-42],[7,-22],[-38,-104],[-29,-34],[-27,-70],[60,-25],[39,35],[42,-38],[-22,-76],[-58,-42],[-14,-28],[37,-127],[47,-71],[19,-122],[20,-57],[-27,-56],[2,-35],[20,-33],[-16,-96],[8,-26],[34,-32],[12,-56],[-38,-95],[33,-56],[-16,-31],[38,-13],[-12,-48],[-34,-69],[15,-87],[-80,-35]],[[74035,17023],[-9,1]],[[74026,17024],[-26,27]],[[74000,17051],[0,3]],[[74000,17054],[-1,1]],[[73999,17055],[-1,4]],[[73998,17059],[-10,32],[-38,-19],[-23,25]],[[73927,17097],[-1,0]],[[73926,17097],[-19,64],[-19,20],[-67,17],[-15,32],[-61,44],[-72,89],[-39,20],[-34,-7],[-23,-37],[10,-83],[-27,-16],[-19,-44],[-40,-12],[-24,11],[-184,-77],[-20,-35],[4,-55],[-18,-41],[-64,-39],[-65,-23],[-23,11],[-68,-13],[-38,18],[-16,-95],[-83,-58],[-32,0],[-18,-40],[-44,-53],[-69,-59],[-41,-11],[4,-45],[-33,-26]],[[51410,34314],[-19,-37],[14,-65],[100,-24],[129,-68],[30,-39],[-28,-52]],[[47659,26744],[-15,3],[-51,95],[-37,102],[-28,51],[-63,74],[-71,56],[-64,14],[-36,-49],[-36,-6],[-31,-39],[-42,-22],[-53,-2],[-85,53],[-56,8],[-68,25],[-48,-13],[-92,65],[-50,21],[-35,-3],[-34,-27],[-40,-12],[-5,37],[32,37],[12,37],[33,19],[52,-43],[54,32],[29,33],[59,127],[26,43],[18,77],[19,20],[10,53],[48,-2],[40,33],[45,82],[20,22],[24,66],[33,63],[57,26],[16,30],[29,7],[35,38],[34,3],[56,104],[55,29],[20,47],[39,60],[16,107],[28,7],[55,-50],[41,15],[26,-23],[32,14],[43,49],[54,46],[26,51],[21,68],[15,122],[-6,62],[-32,20],[-4,47],[29,70],[31,39],[-8,31],[-27,11],[5,82],[53,56],[7,24],[-13,172],[-26,177],[-18,88],[-28,98],[-27,72],[18,37],[10,89],[33,44],[36,20],[-1,73],[8,25],[40,36],[9,46],[23,33],[26,1],[23,39],[-6,83],[-47,70],[16,39],[-56,78],[-54,58],[-51,25],[-35,-6],[-18,-57],[-27,14],[-33,-16],[-37,42],[-48,33],[-24,-1],[-130,97],[-345,212],[-137,107],[-10,61],[-149,318],[-64,156],[-121,247],[-2,16],[-125,204],[-46,66],[-122,198],[-100,185],[-42,94],[-36,110],[-17,80],[-8,87],[0,68],[21,223],[11,271],[38,43],[-27,44],[-23,89],[-39,265],[-37,186],[-33,132],[-41,143],[-30,87],[-65,169],[-46,104],[-100,199],[-57,103],[8,29]],[[45738,34871],[33,7],[42,-83],[48,-121],[55,-76],[52,-32],[97,2],[24,59],[-24,136],[-94,199],[7,43],[35,0],[52,33],[28,4],[40,39],[39,-28],[33,15],[0,48],[44,-22],[37,-76],[40,-14],[47,-40],[9,-97],[58,-14],[41,25],[53,-9],[32,8],[51,-15],[25,-90],[47,26],[50,-17],[28,38],[88,-51],[9,-39],[48,1],[23,14],[29,48],[48,21],[22,61],[7,51],[-17,66],[7,73],[-8,26],[-68,47],[31,50],[-16,74],[-67,-9],[-22,34],[38,57],[18,7],[-15,51],[-137,-35],[-54,148],[-46,170],[31,66],[5,87],[-21,-2],[-16,62],[68,109],[16,50],[56,67],[6,63],[50,52],[-39,31],[36,96],[16,12],[-108,218],[8,3],[-21,106],[193,83],[84,202],[95,-1],[-11,29],[7,58],[-2,72],[-10,61],[83,43]],[[69541,57662],[42,-31],[42,16],[13,41],[30,-16],[27,-66],[13,-64],[51,-50],[57,12],[57,-53],[12,-38],[80,-87],[39,-59]],[[70004,57267],[-798,-567],[30,-251],[639,-237],[7,-206],[44,-490],[276,-761],[81,-62],[36,-98],[-339,-632],[-145,34],[14,-168],[109,76],[65,-8],[-12,-31],[56,-11],[6,42],[78,13],[28,-57],[69,-5],[19,28],[64,-29],[6,-35],[81,-14],[-13,-41],[29,-22],[45,20],[82,-51],[-15,-24],[36,-31],[15,-84],[-42,-69],[-49,-24],[-5,-35],[-33,-46],[9,-18],[-48,-80],[26,-55],[-8,-113],[-45,-36],[-26,-40],[-62,-41],[-47,-75],[15,-60],[426,-26],[60,0],[231,-117],[339,-179],[-36,-496],[-17,-174],[-23,-20],[-38,-244],[-24,-134],[75,-134],[45,-69],[26,6],[36,48],[55,21],[32,32],[102,-84],[317,-249],[250,25],[55,-353],[53,-362],[16,-83],[21,-22],[5,-38],[77,-9],[2,-29],[48,2],[16,21],[-28,27],[14,20],[38,-8],[35,49],[62,9],[-5,-35],[25,-11],[53,8],[11,31],[47,6],[2,47],[71,33],[29,-22],[48,-1],[5,47],[403,-480],[93,-111],[312,345],[537,-73],[421,-56],[10,-907],[9,-751],[-5,-645],[644,0],[-6,-182],[-303,-234],[-284,-226],[-62,-46],[-441,-349],[-434,-342],[-379,-301],[-154,-134],[-85,14],[-82,-31],[-90,10],[-34,-18],[-63,28],[26,55],[-55,45],[-24,103],[-50,1],[-26,15],[-51,-31],[-22,-42],[3,-43],[-29,-79],[-42,-5],[-36,-20],[3,-44],[-91,-26],[-71,-29],[-78,26],[-25,-52],[-6,-66],[-52,-50],[-8,-55],[84,-389],[-195,-238],[102,-372],[-27,20],[-97,-39],[-330,142],[-7,-41],[-58,-33],[-27,12],[-46,-53],[-32,-16],[-109,-10],[-63,-69],[-8,-40],[-29,-30],[-37,-1],[-32,-22],[-68,9],[-15,-40],[-44,-10],[-51,25],[-21,-25],[-45,-22],[-63,-53],[-40,-50],[-7,-37],[-24,-30],[-2,-66],[18,-66],[-15,-43],[-52,-28],[-65,-15],[-29,-25],[-33,6],[-21,-66],[-38,7],[-80,40],[-123,0],[-383,-203],[-114,-95],[37,-229],[16,-77],[336,100],[31,-63],[45,-123],[24,-49],[86,-247],[3,-197],[-20,-87],[-104,-229],[-93,-231],[-18,-31],[-6,-49],[-32,-387],[347,-343],[117,-25],[4,-158],[84,-29],[133,-131],[38,-135],[83,-277],[-149,55],[-333,-449],[-103,-55],[-69,-14],[-67,22],[-191,52],[-344,34],[-147,-1],[-222,-43],[-123,-307],[-99,-169],[-183,-471],[161,-774],[-246,57],[-107,-2],[-154,18],[-133,-1],[-163,-166],[-97,-79],[269,-146],[-6,-43],[-24,-40],[-66,-243],[-7,1]],[[68493,37893],[-128,27],[-373,56],[88,247],[-48,13],[-8,-53],[-234,54],[-112,-215],[-79,9],[-23,-17],[-172,27],[42,-333],[162,29],[-33,-143],[-74,13],[-522,125],[-15,85],[107,664],[-229,214],[-13,24],[79,318],[14,150],[119,-71],[21,-3],[1,94],[-34,46],[-8,101],[-89,8],[20,154],[37,130],[57,84],[36,-14],[18,26],[-34,18],[51,75],[-6,84],[-60,-8],[-49,53],[-65,143],[-30,-15],[1,272],[-126,77],[13,101],[-99,11],[42,202],[-39,4],[11,122],[-63,10],[85,462],[8,33],[63,166],[-60,205],[76,-1],[11,94],[-128,27],[-3,10],[-257,111],[80,19],[34,199],[-193,9],[74,307],[59,228],[-3,105],[-11,124],[-434,393],[-125,-136]],[[65923,43246],[-56,94],[-176,323]],[[85121,15759],[0,2]],[[85121,15761],[28,18]],[[85149,15779],[0,-1]],[[85149,15778],[23,-4]],[[85172,15774],[26,28],[61,-13],[16,-66]],[[85275,15723],[2,0]],[[85277,15723],[2,4]],[[85279,15727],[0,1]],[[85279,15728],[1,4]],[[85280,15732],[0,1]],[[85280,15733],[6,3]],[[85286,15736],[1,-2]],[[85287,15734],[5,1]],[[85292,15735],[1,-1]],[[85293,15734],[1,2]],[[85294,15736],[1,1]],[[85295,15737],[8,2]],[[85303,15739],[1,0]],[[85304,15739],[2,5]],[[85306,15744],[1,-1]],[[85307,15743],[0,-6]],[[85307,15737],[0,-1]],[[85307,15736],[0,-1]],[[85307,15735],[0,-1]],[[85307,15734],[12,-14]],[[85319,15720],[1,0]],[[85320,15720],[0,2]],[[85320,15722],[0,1]],[[85320,15723],[-2,6]],[[85318,15729],[1,1]],[[85319,15730],[0,4]],[[85319,15734],[2,9]],[[85321,15743],[0,1]],[[85321,15744],[-1,7]],[[85320,15751],[0,2]],[[85320,15753],[0,4]],[[85320,15757],[0,2]],[[85320,15759],[14,4]],[[85334,15763],[0,1]],[[85334,15764],[1,2]],[[85335,15766],[5,0]],[[85340,15766],[1,-1]],[[85341,15765],[6,1]],[[85347,15766],[1,1]],[[85348,15767],[9,-14]],[[85357,15753],[0,-1]],[[85357,15752],[0,-7]],[[85357,15745],[0,-1]],[[85357,15744],[-2,-7]],[[85355,15737],[0,-1]],[[85355,15736],[-1,-12]],[[85354,15724],[0,-2]],[[85354,15722],[0,-3]],[[85354,15719],[0,-2]],[[85354,15717],[7,-11]],[[85361,15706],[1,1]],[[85362,15707],[17,-9]],[[85379,15698],[1,-1]],[[85380,15697],[8,0]],[[85388,15697],[1,0]],[[85389,15697],[114,-11]],[[85503,15686],[11,-1]],[[85514,15685],[164,-17],[20,-116]],[[85698,15552],[4,-22]],[[85702,15530],[14,-80]],[[85716,15450],[3,-21]],[[85719,15429],[93,-541],[-101,-230]],[[85711,14658],[-8,-18]],[[85703,14640],[-93,-212],[-34,-23],[20,-27]],[[85596,14378],[10,-10]],[[85606,14368],[-9,-51]],[[85597,14317],[-3,-11]],[[85594,14306],[-3,-40],[-48,-33],[-10,-25],[14,-50],[-6,-40],[-47,1]],[[85494,14119],[-7,-3]],[[85487,14116],[-12,-3]],[[85475,14113],[-11,-6]],[[85464,14107],[-51,-71],[6,-22],[-20,-56],[6,-34],[45,-17],[69,11],[-1,-42],[-40,-3],[-33,-20],[-17,-35],[98,-10],[14,-75],[57,-40],[38,-13],[24,-54],[27,-32],[45,-20],[49,-7],[18,-76],[72,18],[12,-33],[37,-9],[-4,-61],[-59,5],[-29,-21],[-29,4],[-22,-60],[55,-31],[19,22],[-10,45],[45,7],[38,-14],[11,-52],[78,-7],[51,-26],[32,-39],[31,-97],[3,-54],[50,-21],[25,-58],[46,27],[7,44],[98,2],[65,18],[-5,29],[50,11],[79,-34],[74,-21],[39,10],[19,-15],[30,16],[-3,26],[43,29],[24,-22],[23,42],[40,-7],[13,19],[41,-13],[30,25],[-21,42],[54,0],[13,63],[31,23],[34,5],[59,41],[25,-56],[49,51],[-36,24],[77,24],[1,54],[33,-8],[32,43],[44,21],[1,35],[28,-2],[37,25],[62,9],[31,50],[72,25],[8,20],[42,-10],[31,14],[24,40],[17,-43],[24,7],[19,45],[23,-4],[24,50],[42,7],[-14,41],[35,24],[9,34],[32,-19],[45,-3],[61,10],[7,33],[-26,61],[29,-5],[9,-36],[84,29],[2,11],[195,-206],[36,-27],[-44,-134],[-26,-31],[-41,20],[-10,-35],[-28,-22],[-97,-19],[1,27],[-44,4],[1,-38],[-34,-39],[-40,1],[16,-92],[45,23],[10,-30],[200,-279],[513,-719],[78,-33]],[[88801,12341],[38,-17]],[[88839,12324],[226,-97]],[[89065,12227],[56,-24]],[[89121,12203],[22,-10]],[[89143,12193],[19,14]],[[89162,12207],[1,0]],[[89163,12207],[34,-58]],[[89197,12149],[8,-7]],[[89205,12142],[43,-24]],[[89248,12118],[54,24]],[[89302,12142],[4,5]],[[89306,12147],[5,10]],[[89311,12157],[89,-40],[21,14],[38,-19]],[[89459,12112],[7,-4]],[[89466,12108],[11,-24]],[[89477,12084],[3,-9]],[[89480,12075],[-28,-21]],[[89452,12054],[-10,-2]],[[89442,12052],[-45,-8],[-23,-20],[12,-26]],[[89386,11998],[3,1]],[[89389,11999],[28,12]],[[89417,12011],[1,0]],[[89418,12011],[10,-10]],[[89428,12001],[0,-2]],[[89428,11999],[-11,-14]],[[89417,11985],[-1,-2]],[[89416,11983],[-21,-66],[57,-50],[-57,-60],[15,-21]],[[89410,11786],[2,-9]],[[89412,11777],[-22,-43],[-2,-53],[-30,-33]],[[89358,11648],[-7,-2]],[[89351,11646],[-11,-43]],[[89340,11603],[1,-5]],[[89341,11598],[1,-4],[587,-32],[677,-38],[975,-57],[556,-32],[616,-37],[836,-52]],[[93054,6407],[-133,61],[-233,116],[-303,162],[-144,70],[-286,115],[-268,95],[-177,57],[-175,51],[-212,51],[-241,45],[-99,14],[-169,16],[-59,11],[-316,37],[-73,2],[-29,-10],[-75,1],[-120,16],[-234,11],[-131,-1],[-97,-9],[-160,-23],[-464,-91],[-107,-11],[-176,18],[-115,5],[-40,-14],[-19,-27],[19,-34],[-39,-28],[-90,17],[-32,-7],[-24,-32],[-140,-8],[-60,-48],[2,-60],[-78,-13],[-57,-43],[18,-55],[-40,-28],[-47,-5],[-29,-26],[-81,-13],[-58,-18],[-59,-38],[-39,-48],[-56,-99],[33,-111],[-105,-28],[-14,-28],[-76,-18],[-27,-15],[-24,-79],[-18,-20],[-105,4],[-82,-4],[-51,-17],[-5,-25],[-99,-23],[-164,-9],[-46,-12],[-29,-37],[-31,-14],[-64,-7],[-67,-66],[-101,-20],[-58,-28],[-5,-17],[-182,-18],[-218,-48],[-64,-35],[-16,-38],[16,-40],[-107,-9],[-31,-12],[-93,-15],[-79,-30],[-105,-24],[-21,-29],[-210,-43],[-95,-33],[-28,-38],[-51,-20],[-100,-27],[-26,-24],[-71,-41],[-98,-24],[-42,-33],[-39,-11],[-42,-42],[-43,27],[-18,-14],[2,-36],[-31,-20],[-22,25],[-27,-5],[-48,-60],[24,-34],[-91,-29],[-2,-29],[-77,-20],[-33,-37],[-65,-17],[-44,10],[-31,-40],[-67,-28],[-65,-53],[-72,-5],[-90,14],[-12,-13],[-53,9],[-40,-8],[-55,16],[-67,-12],[-49,23],[-40,-35],[-59,28],[-46,-3],[-86,25],[-70,12],[-30,-5],[-86,-63],[-24,14],[-24,-38],[-43,-8],[-21,-45],[-34,2],[-34,-26],[-85,24],[-26,-7],[-62,16],[-41,-2],[-9,-24],[-85,40],[-160,51],[-134,77],[-97,41],[-117,43],[-175,39],[-133,13],[-123,22],[-7,-5],[-141,8],[-58,24],[-174,120],[-120,64],[-66,28],[-102,33],[-166,42],[-40,23],[-88,73],[9,33],[-55,97],[-61,-9],[-49,32],[-63,23],[-112,97],[-139,72],[-171,64],[-119,25],[-119,40],[-92,4],[-131,29],[-92,7],[-51,-7],[-48,-31],[-167,29],[-35,-9],[-54,7],[-184,44],[-162,58],[-66,10],[-81,-29],[-37,2],[-185,47],[-109,15],[-92,-1],[-52,-24],[-23,-39],[-83,11],[-178,37],[-90,11],[-86,27],[-17,27],[-72,54],[-68,33],[-120,81],[-100,75],[-143,116],[-122,91],[-89,59],[-94,51],[-166,104],[-201,116],[-191,101],[-214,93],[-26,38],[-50,32],[-86,36],[-83,24],[-149,35],[-213,40],[-180,24],[-99,9],[-84,20],[-127,43],[-227,96],[-154,54]],[[75249,14522],[16,-10],[89,-12],[40,48],[-4,19],[29,32],[83,-7],[31,36],[43,-1],[20,-29],[51,1],[95,39],[6,66],[25,21]],[[75773,14725],[2,4]],[[75775,14729],[7,4]],[[75782,14733],[4,0]],[[75786,14733],[3,8]],[[75789,14741],[0,4]],[[75789,14745],[13,46]],[[75802,14791],[1,4]],[[75803,14795],[10,17]],[[75813,14812],[3,1]],[[75816,14813],[3,8]],[[75819,14821],[2,1]],[[75821,14822],[2,0]],[[75823,14822],[3,-4]],[[75826,14818],[2,-2]],[[75828,14816],[9,-17]],[[75837,14799],[1,-3]],[[75838,14796],[21,-28],[42,24]],[[75901,14792],[0,-3]],[[75901,14789],[8,-18],[-30,-39]],[[75879,14732],[0,-3]],[[75879,14729],[38,-49]],[[75917,14680],[0,-3]],[[75917,14677],[0,-1]],[[75917,14676],[2,-1]],[[75919,14675],[-1,-5]],[[75918,14670],[0,-2]],[[75918,14668],[5,-2]],[[75923,14666],[1,-1]],[[75924,14665],[-2,-9]],[[75922,14656],[-1,-1]],[[75921,14655],[17,-34]],[[75938,14621],[-1,-2]],[[75937,14619],[-1,-20]],[[75936,14599],[3,1]],[[75939,14600],[3,4]],[[75942,14604],[2,0]],[[75944,14604],[22,-18]],[[75966,14586],[0,-3]],[[75966,14583],[149,-1],[19,41]],[[76134,14623],[2,5]],[[76136,14628],[14,4]],[[76150,14632],[14,0]],[[76164,14632],[49,27]],[[76213,14659],[2,-4]],[[76215,14655],[4,-1]],[[76219,14654],[3,-2]],[[76222,14652],[15,8]],[[76237,14660],[5,0]],[[76242,14660],[32,36],[20,55],[-28,17],[-3,43],[15,15],[-2,73],[29,43],[24,2],[28,36],[22,-2],[48,30],[11,42],[50,-21],[79,2],[10,11],[80,-20],[38,21],[85,-27],[25,34],[34,20],[21,-28],[100,-43],[53,13],[29,-61],[47,27],[64,-18],[58,6],[-10,-33],[-36,-52],[44,-36],[-8,-24],[14,-76],[62,1],[28,-23],[44,-13],[49,14]],[[77398,14724],[4,1]],[[77402,14725],[35,21]],[[77437,14746],[1,0]],[[77438,14746],[44,-1],[64,-24],[87,-14],[6,23],[47,4],[30,107]],[[77716,14841],[-3,5]],[[77713,14846],[-2,21]],[[77711,14867],[4,9]],[[77715,14876],[4,8]],[[77719,14884],[3,6]],[[77722,14890],[27,28]],[[77749,14918],[-2,1]],[[77747,14919],[2,13]],[[77749,14932],[3,-1]],[[77752,14931],[32,8]],[[77784,14939],[1,1]],[[77785,14940],[45,19]],[[77830,14959],[4,1]],[[77834,14960],[37,19]],[[77871,14979],[2,-1]],[[77873,14978],[1,0]],[[77874,14978],[-1,4]],[[77873,14982],[-6,22]],[[77867,15004],[1,1]],[[77868,15005],[20,-3],[11,129],[51,-5],[101,33],[39,-37],[77,-9],[4,87],[-126,68],[-49,50],[-1,29],[-88,58],[-30,-2],[-108,-141],[3,-6]],[[77772,15256],[0,-4]],[[77772,15252],[4,-76],[31,-22]],[[77807,15154],[-1,-8]],[[77806,15146],[-6,-22],[-44,-21]],[[77756,15103],[-1,-1]],[[77755,15102],[-4,-3]],[[77751,15099],[0,1]],[[77751,15100],[-11,-1]],[[77740,15099],[-1,1]],[[77739,15100],[-62,-46],[-18,-67],[-39,47],[-28,55],[-1,99],[24,60],[8,75],[23,5],[62,52],[12,21],[-30,23],[-126,46],[-71,136],[-1,129],[41,48],[15,54],[36,28],[-24,38],[3,28],[-38,12],[40,56],[21,48],[85,32],[-19,57],[49,111],[73,92],[57,14],[86,-24],[49,-22],[114,1],[42,41],[45,12],[122,8],[59,13],[43,-59],[18,-118],[8,-89],[-3,-84],[10,-83],[-70,-80],[63,-42]],[[78417,15827],[5,-3]],[[78422,15824],[35,-21]],[[78457,15803],[4,-3]],[[78461,15800],[35,-25],[38,-10],[17,-61],[-16,-28],[43,-19],[113,-101],[9,-72]],[[78700,15484],[2,-23]],[[78702,15461],[20,-38],[-8,-45],[30,-47],[-5,-21],[35,-35]],[[78774,15275],[7,-6]],[[78781,15269],[24,5]],[[78805,15274],[9,15]],[[78814,15289],[13,14]],[[78827,15303],[7,5]],[[78834,15308],[47,-8],[77,-67]],[[78958,15233],[22,0]],[[78980,15233],[34,-16],[35,8]],[[79049,15225],[1,-1]],[[79050,15224],[12,-2]],[[79062,15222],[1,1]],[[79063,15223],[3,0]],[[79066,15223],[0,1]],[[79066,15224],[20,-2]],[[79086,15222],[0,1]],[[79086,15223],[15,0]],[[79101,15223],[1,0]],[[79102,15223],[32,48]],[[79134,15271],[-2,0]],[[79132,15271],[25,32]],[[79157,15303],[-2,1]],[[79155,15304],[23,57]],[[79178,15361],[0,3]],[[79178,15364],[4,7]],[[79182,15371],[2,1]],[[79184,15372],[23,47],[63,-12],[30,73]],[[79300,15480],[-1,16]],[[79299,15496],[29,33]],[[79328,15529],[0,2]],[[79328,15531],[0,3]],[[79328,15534],[-1,1]],[[79327,15535],[11,16]],[[79338,15551],[2,0]],[[79340,15551],[27,17]],[[79367,15568],[1,-1]],[[79368,15567],[4,-8]],[[79372,15559],[2,-3]],[[79374,15556],[6,-2]],[[79380,15554],[1,1]],[[79381,15555],[6,4]],[[79387,15559],[1,-1]],[[79388,15558],[19,-16]],[[79407,15542],[1,0]],[[79408,15542],[6,3]],[[79414,15545],[1,0]],[[79415,15545],[8,2]],[[79423,15547],[1,-2]],[[79424,15545],[5,-5]],[[79429,15540],[1,-1]],[[79430,15539],[33,-22]],[[79463,15517],[3,0]],[[79466,15517],[6,13]],[[79472,15530],[1,1]],[[79473,15531],[33,19]],[[79506,15550],[-1,0]],[[79505,15550],[10,19]],[[79515,15569],[2,1]],[[79517,15570],[3,9]],[[79520,15579],[0,2]],[[79520,15581],[35,50]],[[79555,15631],[0,2]],[[79555,15633],[2,4]],[[79557,15637],[1,-1]],[[79558,15636],[2,0]],[[79560,15636],[1,2]],[[79561,15638],[41,18],[43,82],[56,3],[40,45],[44,15],[65,4],[28,-15],[65,30],[31,6],[32,26],[41,-4],[30,17],[43,-46],[37,34],[72,16],[-20,75],[36,29],[64,8],[22,-63],[74,-80],[20,-4],[19,-41],[40,20],[44,-48],[29,-14],[63,21],[6,-17],[187,33],[18,69],[-10,10],[150,165],[15,42],[31,37],[52,8],[61,-15],[47,-41],[78,8],[8,46],[41,34],[53,-15],[43,17],[85,14],[50,-11],[67,25],[18,42],[-4,37],[54,83],[14,54],[31,42],[-17,18],[4,48],[43,32],[38,2],[23,25],[45,15],[6,42],[-13,24],[70,86],[22,42],[54,-3],[-15,47],[84,23],[16,-11]],[[82075,16829],[-52,-51],[49,-39],[48,24],[112,2],[32,-23],[28,25],[-27,19],[1,115],[-13,15],[-87,32],[-12,54],[18,74],[38,27],[44,68],[-8,102],[15,42],[-23,24],[-60,-11],[-13,70],[-20,8],[-32,-26],[-31,34],[31,30],[29,49],[-49,48],[34,62],[64,-87],[35,64],[-4,48],[17,20],[-24,33],[24,17],[15,38],[47,16],[1,48],[-44,71],[-23,17],[31,42],[-9,91],[36,-14],[26,-45],[49,-18],[41,-44],[93,-56],[22,-41],[42,-8],[44,-26],[58,-50],[81,-53],[80,2],[17,-19],[40,14],[47,-19],[26,29],[33,-1],[35,-28],[58,-12],[20,-30],[32,4],[30,-16],[22,-51],[-14,-40],[91,-105],[49,-76],[16,-38],[21,-98],[-29,-5],[22,-46],[33,1],[19,-90],[34,-32],[11,-39],[43,-9],[16,-38],[38,-28],[51,-19],[24,-45],[-5,-61],[61,-50],[53,-25],[-1,-50],[15,-16],[-2,-53],[10,-42],[77,-69],[34,-13],[2,-33],[51,-6],[-19,-29],[16,-78],[-53,-51],[80,-80],[-6,-88],[87,-98],[13,-26],[50,-32],[55,-121],[57,56],[54,27],[81,21],[2,-60],[-15,-18],[-54,-3],[13,-45],[-21,-24],[35,-47],[60,-26],[60,-13],[25,37],[24,-26],[54,27],[1,49],[27,16],[12,38],[68,12],[53,-18],[19,-56],[43,-39],[10,-40],[43,8],[17,-29],[42,51],[53,-22],[57,18],[48,28],[34,33],[87,-7]],[[78541,24470],[0,-7]],[[78541,24463],[13,-49]],[[78554,24414],[-2,-6]],[[78552,24408],[14,-82]],[[78566,24326],[2,0]],[[78568,24326],[51,-19],[33,-40]],[[78652,24267],[2,-1]],[[78654,24266],[-6,-20]],[[78648,24246],[-1,-3]],[[78647,24243],[-22,-9]],[[78625,24234],[0,4]],[[78625,24238],[-27,2]],[[78598,24240],[-2,1]],[[78596,24241],[-12,-19],[20,-49],[39,-12],[22,25],[24,-11],[26,34],[27,76],[22,-30],[28,15],[21,54],[47,-6],[77,70],[55,30],[-40,49],[9,38],[61,33],[3,29],[39,24],[32,2],[26,31],[-10,157],[21,52],[58,57],[37,-25],[44,15],[75,-49],[59,56],[59,14],[12,-58],[-16,-41],[57,-43],[317,-111],[8,-42],[51,28],[28,-41],[35,-3],[42,17],[8,-30],[56,-8],[258,-90],[15,39],[37,-12],[-21,-49],[38,-47],[65,17],[31,-21],[-41,-49],[-81,-48],[-59,-77],[-23,-13],[-38,-53],[26,-12],[-34,-65],[-83,-26],[-20,-60],[27,-55],[-11,-68],[-70,-22],[-3,-32],[-27,-12],[-32,-52],[-54,-17],[-31,-31],[-31,-74],[0,-57],[52,-60],[-28,-42],[-27,-8],[-46,-37],[-24,-48],[-32,-39],[17,-26],[-38,-23],[-34,-99],[1,-105],[-29,-41],[-4,-79],[14,-67],[-27,-77],[4,-100],[-9,-13],[23,-78],[-30,-35],[-42,-22],[34,-42],[37,-66],[33,-33],[12,-55],[-89,31],[-59,-14],[-7,-31],[-88,-85],[-48,-62],[-25,2],[-80,-87],[-55,55],[-47,-53],[0,-62],[-24,-58],[29,-83],[-4,-60],[12,-52],[51,-33],[27,-46],[19,-80],[-15,-49],[39,-15],[97,12],[40,-29],[20,20],[30,-37],[6,-146],[-42,-81],[-98,0],[-34,-17],[-16,-92],[90,-19],[45,-118],[48,11],[44,61],[94,-2],[109,-12],[92,-38],[39,5],[29,-15]],[[79987,21109],[2,-1]],[[79989,21108],[3,-3]],[[79992,21105],[3,-1]],[[79995,21104],[55,-32]],[[80050,21072],[2,-2]],[[80052,21070],[1,-29],[31,-25],[51,10]],[[80135,21026],[2,-2]],[[80137,21024],[13,-46]],[[80150,20978],[-2,-4]],[[80148,20974],[-11,-41],[22,-28],[-26,-18]],[[80133,20887],[-2,1]],[[80131,20888],[-6,-30]],[[80125,20858],[3,-5]],[[80128,20853],[26,-12]],[[80154,20841],[2,0]],[[80156,20841],[16,-12]],[[80172,20829],[1,-4]],[[80173,20825],[-1,-7]],[[80172,20818],[1,-5]],[[80173,20813],[2,-3]],[[80175,20810],[7,-2]],[[80182,20808],[4,2]],[[80186,20810],[2,3]],[[80188,20813],[37,49],[39,21]],[[80264,20883],[4,3]],[[80268,20886],[44,9],[31,-14]],[[80343,20881],[8,-2]],[[80351,20879],[15,-6]],[[80366,20873],[2,-3]],[[80368,20870],[1,-1]],[[80369,20869],[3,-4]],[[80372,20865],[63,1],[26,-58],[58,-19],[69,-3],[39,34],[19,-7],[64,48],[51,-40],[34,33],[49,-56],[14,-41],[111,-4],[12,-25],[58,-41],[-35,-48],[-6,-30],[-37,-61],[17,-56],[-49,-20],[-58,-64],[-69,-29],[-32,-23],[-13,-32],[60,-105],[-7,-39],[19,-32],[-16,-27],[51,-37],[-50,-62],[-56,24],[-7,26],[-42,36],[14,42],[-42,-1],[-57,22],[-80,21],[-76,3],[-30,-31],[-53,16],[-88,-5],[-45,23],[-33,3],[-74,-43],[44,-58],[-22,-23],[-51,-12],[-45,-69],[-49,-61],[-86,-44],[-9,-59],[-29,-92],[12,-146],[-41,-66],[-9,-81],[71,-67],[19,-48],[-8,-62],[14,-24],[0,-53],[17,-70],[34,-59],[-13,-67],[-71,-2],[-45,-21],[-92,-90],[-46,-107],[-47,-24],[-16,-30],[-8,-88],[-24,-10],[-21,-39],[-27,6],[-31,-33],[-11,-59],[10,-17],[49,13],[13,-43],[-29,-83],[10,-34],[-34,-107],[32,-49],[-12,-32],[19,-22],[-14,-33],[85,-94],[53,42],[26,2],[37,-41],[11,-41],[37,-14],[41,-107],[50,-15],[29,11],[28,58],[40,13],[44,-28],[16,-34],[27,-16],[62,20],[57,-57],[29,2],[10,-46],[49,-3],[53,-40],[31,-1],[-18,-63],[5,-48],[84,-123],[40,-50],[4,-44],[94,-143],[24,-19],[14,-129],[16,51],[59,43],[38,42],[22,61],[78,63],[24,-7],[23,37],[77,33],[46,12],[44,24],[-3,30],[87,44],[44,-42],[42,-16],[23,-24],[65,21],[12,31],[30,8],[54,-67],[28,18],[22,-62],[37,1],[-4,-33],[90,-62],[2,-36],[72,23],[2,54],[42,28],[37,-23],[30,-1],[14,-93],[-13,-16],[21,-42],[27,-101],[33,-19],[-33,-24],[28,-41],[-13,-25],[43,-33],[17,-40],[28,-18],[31,13],[32,-17],[60,8],[0,-59]],[[79561,15638],[-1,-2]],[[79558,15636],[-1,1]],[[79555,15633],[0,-2]],[[79520,15581],[0,-2]],[[79517,15570],[-2,-1]],[[79505,15550],[1,0]],[[79473,15531],[-1,-1]],[[79466,15517],[-3,0]],[[79430,15539],[-1,1]],[[79424,15545],[-1,2]],[[79415,15545],[-1,0]],[[79408,15542],[-1,0]],[[79388,15558],[-1,1]],[[79381,15555],[-1,-1]],[[79374,15556],[-2,3]],[[79368,15567],[-1,1]],[[79340,15551],[-2,0]],[[79327,15535],[1,-1]],[[79328,15531],[0,-2]],[[79299,15496],[1,-16]],[[79184,15372],[-2,-1]],[[79178,15364],[0,-3]],[[79155,15304],[2,-1]],[[79132,15271],[2,0]],[[79102,15223],[-1,0]],[[79086,15223],[0,-1]],[[79066,15224],[0,-1]],[[79063,15223],[-1,-1]],[[79050,15224],[-1,1]],[[78980,15233],[-22,0]],[[78834,15308],[-7,-5]],[[78814,15289],[-9,-15]],[[78781,15269],[-7,6]],[[78702,15461],[-2,23]],[[78461,15800],[-4,3]],[[78422,15824],[-5,3]],[[77739,15100],[1,-1]],[[77751,15100],[0,-1]],[[77755,15102],[1,1]],[[77806,15146],[1,8]],[[77772,15252],[0,4]],[[77868,15005],[-1,-1]],[[77873,14982],[1,-4]],[[77873,14978],[-2,1]],[[77834,14960],[-4,-1]],[[77785,14940],[-1,-1]],[[77752,14931],[-3,1]],[[77747,14919],[2,-1]],[[77722,14890],[-3,-6]],[[77715,14876],[-4,-9]],[[77713,14846],[3,-5]],[[77438,14746],[-1,0]],[[77402,14725],[-4,-1]],[[76242,14660],[-5,0]],[[76222,14652],[-3,2]],[[76215,14655],[-2,4]],[[76164,14632],[-14,0]],[[76136,14628],[-2,-5]],[[75966,14583],[0,3]],[[75944,14604],[-2,0]],[[75939,14600],[-3,-1]],[[75937,14619],[1,2]],[[75921,14655],[1,1]],[[75924,14665],[-1,1]],[[75918,14668],[0,2]],[[75919,14675],[-2,1]],[[75917,14677],[0,3]],[[75879,14729],[0,3]],[[75901,14789],[0,3]],[[75838,14796],[-1,3]],[[75828,14816],[-2,2]],[[75823,14822],[-2,0]],[[75821,14822],[-2,-1]],[[75816,14813],[-3,-1]],[[75803,14795],[-1,-4]],[[75789,14745],[0,-4]],[[75786,14733],[-4,0]],[[75775,14729],[-2,-4]],[[73926,17097],[1,0]],[[73998,17059],[1,-4]],[[74000,17054],[0,-3]],[[74026,17024],[9,-1]],[[74330,21491],[51,-11],[26,19],[19,-47],[81,-28],[72,-6],[85,77],[106,-28],[35,8],[48,-6],[7,-16]],[[74860,21453],[1,-4]],[[74861,21449],[4,-13]],[[74865,21436],[3,-5]],[[74868,21431],[2,-18]],[[74870,21413],[1,-2]],[[74871,21411],[2,-4]],[[74873,21407],[1,-3]],[[74874,21404],[24,-52]],[[74898,21352],[1,-4]],[[74899,21348],[0,-3]],[[74899,21345],[54,-69],[44,-82],[3,-38],[66,-123],[69,-70],[48,-85],[58,8],[25,-31],[52,-17],[-10,-106],[34,-17],[2,-23],[84,-90],[18,-71],[22,-41],[6,-44],[69,-31],[31,-59],[54,-23],[-29,-35],[-20,-61],[76,-41],[47,95],[40,-16],[36,-41],[88,-61],[118,-25],[48,-4],[1,-33],[28,-54],[60,-17],[70,31],[10,-19],[-36,-35],[52,-53],[73,-45],[45,50],[30,-9],[62,62],[51,29],[65,75],[13,45],[57,37],[65,60],[42,70],[71,39],[28,37],[12,53],[122,-118],[11,-24],[129,-47],[155,-101],[81,72],[13,-14],[60,41],[-21,49],[18,16],[114,52],[45,40],[-38,92],[-40,-17],[21,60],[45,14],[-65,58],[42,73],[73,2],[12,60],[71,14],[83,-14],[53,-50],[64,-27],[25,13],[32,56],[48,24],[33,-37],[31,-16],[39,51],[15,-30],[45,-4],[55,-48],[51,28],[48,10],[34,70],[48,-19],[29,55],[50,22],[3,32],[-53,30],[30,75],[-36,23],[-54,-30],[-17,43],[-64,16],[-21,76],[-59,19],[-18,28],[-29,-9],[-5,41],[-21,14],[-37,54],[-14,57],[-71,3],[-20,17],[1,62],[-32,31],[-75,5],[-2,45],[-16,16],[-35,-10],[-41,8],[6,102],[-69,-39],[-9,-19],[-125,-59],[-33,-46],[-14,28],[41,40],[-6,38],[-38,46],[-93,29],[-34,20],[9,56],[39,29],[25,36],[10,110],[-48,60],[-51,9],[-58,27],[-27,55],[-65,-20],[-62,-9],[-17,33],[0,43],[-56,49],[-38,47],[-34,18],[-35,-1],[-205,49],[17,36],[8,73],[-6,100],[-11,50],[-39,55],[-25,59],[-40,10],[-9,-53],[15,-27],[-17,-28],[-57,-11],[-6,-32],[-24,-17],[-1,-48],[-33,-38],[-47,70],[-33,10],[-24,-13],[-77,-7],[-64,-62],[-40,15],[-84,15],[-121,-11],[-49,14],[-32,-5],[-15,42],[-32,34],[-12,112]],[[75821,24870],[-1,4]],[[77019,26070],[23,-10],[27,36],[-36,11],[3,66],[98,70],[117,65],[24,32],[48,38],[17,94],[40,57],[-26,80],[-20,12],[-11,56],[7,34],[-41,30],[14,70],[32,15],[36,54],[-100,58],[75,255],[12,20],[49,153],[38,85],[34,-12],[36,17],[24,-9],[42,28],[9,-66],[-27,-24],[79,-48],[25,8],[30,36],[37,15],[68,-21],[78,41],[34,-33],[49,-17],[9,-25],[37,-32],[101,-9],[-48,-39],[-9,-24],[33,-37],[-1,-50],[-23,-28],[-5,-67],[-88,-45],[-11,-137],[-19,-18],[-2,-36],[70,-8],[10,-33],[-14,-27],[-1,-58],[-39,-32],[8,-32],[45,4],[7,-23],[38,-19],[44,1],[43,-34],[-33,-38],[8,-51],[55,-52],[-17,-98],[28,-16],[35,10],[20,-24],[-11,-56],[32,2],[77,-41],[-6,43],[29,41],[52,-27],[43,-1],[5,22],[63,2],[30,-20],[51,-14],[52,-48],[-8,-28],[26,-29],[76,-120],[51,-64],[-10,-22],[-51,0],[-16,20],[-64,7],[-41,-79],[-60,-51],[-25,4],[-79,-48],[-29,8],[-27,-46],[22,-43],[-9,-63],[-35,-41],[-59,19],[-19,-20],[-33,13],[5,29],[-30,32],[-32,9],[-45,31],[-4,44],[-30,15],[-5,30],[-49,-6],[-31,16],[-23,-26],[-12,-48],[-38,-79],[-36,-40],[-9,-60],[-18,-6],[-9,-74],[67,-10],[16,-41],[5,-75],[33,-17],[89,-83],[41,-15],[24,-24],[7,66],[19,-6],[43,71],[20,-12],[5,-46],[-45,-48],[3,-51],[30,-26],[-21,-24],[-103,-14],[-6,-61],[-56,-5],[-75,-42],[-66,20],[25,-83],[49,-30],[16,-48],[-7,-65],[16,-34],[8,-64],[-31,-11],[-12,-40],[40,-51],[45,34],[54,-30],[33,1],[37,-68],[36,-7],[41,17],[100,-2],[2,36],[25,25],[39,-4],[6,-21],[45,-34],[48,-10],[-9,-74]],[[69806,30329],[30,56],[55,30],[28,37],[-14,90],[24,151],[166,-34],[80,6],[103,-21],[65,-107],[2,-35],[53,-65],[18,-54],[64,-59],[72,-33],[7,-37],[69,-50],[35,-55],[61,-28],[-29,-46],[22,-37],[55,15],[53,-12],[92,-45],[54,17],[16,45],[35,6],[25,55],[89,-13],[48,26],[78,-90],[44,0],[35,103],[-11,41],[34,7],[32,78],[-20,54],[62,57],[1,75],[-25,15],[8,88],[49,23],[72,-12],[51,-55],[52,-19],[51,-6],[73,80],[-9,25],[49,17],[22,33],[-30,70],[-4,32],[12,75],[22,-9],[40,20],[35,-4],[48,22],[11,38],[63,42],[9,59],[24,28],[-1,59],[65,-8],[51,22],[26,-38],[34,-101],[6,-48],[133,-102],[33,-31],[10,-58],[-51,-172],[-6,-36],[21,-94],[30,-59],[2,-127],[12,-47],[84,-174],[-3,-39],[32,-14],[21,-116],[-20,-18],[21,-62],[-149,-6],[-33,-140],[140,-38],[1,-14],[-100,2],[24,-36],[64,-35],[6,-54],[85,29],[31,-33],[60,-39],[22,12]],[[122323,26334],[-52,-119],[-39,-69],[-33,-39],[-23,-81],[-70,-99],[-59,-95],[-37,-23],[-43,-61],[-61,-22],[-186,-249],[-85,-153],[-23,2],[-41,-41],[-61,-92],[-74,-50],[-42,-53],[-24,-5],[-40,-44],[-56,-39],[-27,11],[-9,49],[-28,52],[-54,12],[28,43],[-15,80],[-31,48],[2,36],[-15,35],[-2,45],[15,111],[18,86],[38,80],[67,77],[19,53],[102,181],[54,55],[41,103],[39,58],[114,48],[43,4],[28,-22],[4,-57],[63,-33],[45,34],[66,-26],[24,19],[53,7],[-21,42],[61,-3],[74,9],[71,43],[16,-21],[36,63],[47,14],[52,35],[43,16],[-12,-55]],[[122236,29327],[38,-81],[68,-102],[-12,-37],[-31,31],[-28,54],[-5,53],[-18,37],[-30,15],[18,30]],[[121820,30074],[-146,-85],[23,35],[-4,40],[60,-19],[67,29]],[[122035,30440],[57,-260],[-20,12],[-6,89],[-32,30],[-12,88],[13,41]],[[121071,30726],[51,-9],[97,-59],[-50,-4],[-36,45],[-32,-15],[-30,42]],[[111983,21862],[309,248],[-13,125],[131,-15],[5,47],[178,-29],[-19,-245],[163,5],[3,131],[-102,10],[41,387],[198,-41],[-7,-38],[160,-32],[23,134],[133,-17],[11,98],[-83,-19],[-6,15],[-129,-22],[96,241],[85,-21],[18,113],[61,1],[0,31],[33,24],[7,32],[72,-6],[-6,-27],[57,13],[-6,-94],[64,-4],[37,57],[37,-14],[11,86],[19,45],[24,26],[-12,105],[86,6],[-4,69],[190,0],[28,7],[23,46],[-38,36],[10,51],[43,-26],[2,48],[26,46],[-2,83],[18,38],[29,-5],[2,97],[29,-12],[1,87],[25,14],[3,56],[50,-2],[-1,25],[116,7],[170,-21],[22,86],[12,-3],[28,210],[-24,-2],[1,56],[204,133],[83,-14],[3,46],[23,23],[100,-7],[1,39],[39,-5],[5,38],[278,-20],[22,203],[-71,10],[308,200],[114,-23],[24,30],[0,53],[154,25],[76,6],[173,-24],[145,71],[24,-3],[9,92],[129,-1],[0,-13],[263,-7],[124,-18],[359,370],[-1,54],[54,1],[165,170],[-8,128],[130,-3],[336,345],[543,557],[276,490],[392,695],[182,322],[-1,250]],[[119078,28422],[-4,1093]],[[119074,29515],[0,233]],[[119074,29748],[-2,450]],[[119072,30198],[0,111]],[[119072,30309],[187,-22],[5,-75],[38,-42],[61,-3],[22,22],[78,27],[36,-4],[104,-47],[97,-12],[38,-25],[59,-11],[30,-48],[60,-12],[43,13],[24,26],[64,-27],[24,14],[87,-27],[55,24],[34,-16],[24,-34],[55,-21],[9,39],[57,59],[38,4],[65,-22],[88,43],[33,59],[107,-15],[41,44],[40,7],[11,129],[8,26],[-16,57],[48,52],[-18,60],[-102,38],[91,86],[19,46],[63,20],[29,-48],[40,-30],[93,-38],[90,-25],[22,8],[36,-19],[31,-48],[7,-33],[69,-72],[51,42],[-48,45],[-64,41],[45,26],[43,-36],[93,-139],[18,-66],[-18,-48],[63,-79],[28,-61],[15,-1],[30,-77],[41,-27],[5,-29],[60,-62],[24,-45],[2,-56],[45,-190],[51,-94],[-9,-34],[4,-70],[17,-22],[-10,-30],[32,-47],[-3,-59],[23,-48],[46,-19],[22,27],[4,102],[45,26],[-32,63],[20,34],[1,38],[54,32],[48,41],[19,49],[-13,36],[2,66],[-40,76],[-33,45],[-29,69],[0,43],[60,-43],[24,-88],[38,0],[-5,-54],[3,-134],[-23,-66],[-63,-120],[-17,-86],[16,-77],[43,-119],[2,-108],[-14,-38],[-11,-110],[16,-84],[70,-67],[34,2],[61,-38],[40,14],[34,-15],[-29,-39],[-41,-82],[-32,-81],[-42,-129],[-12,-61],[15,-60],[-36,-12],[-38,26],[-51,-29],[-49,-121],[-27,-95],[-5,-55],[-21,-54],[-12,-113],[-27,-45],[-6,-55],[-54,-57],[-22,-82],[-39,-115],[-82,-91],[-38,-61],[-63,-19],[-91,-129],[-14,-44],[-47,-47],[-25,-42],[-4,-43],[11,-33],[-63,-34],[-39,-32],[-81,-48],[-42,-59],[-13,-69],[-48,-62],[-58,-57],[-21,-2],[-24,-44],[-50,-51],[-30,-48],[-77,-85],[-138,-129],[-27,-3],[-59,-69],[-75,-65],[-55,-17],[-14,-35],[-74,-49],[-67,-57],[-27,0],[-17,-35],[-43,-20],[-85,-120],[-36,-25],[-35,-41],[5,-17],[-98,-168],[-44,-36],[-20,-33],[5,-31],[-23,-21],[-19,-63],[-20,-6],[-12,-54],[-51,-60],[8,-36],[-51,-119],[-27,6],[-37,-61],[7,-31],[-62,-52],[-114,-151],[-35,-98],[-34,-56],[-53,-124],[-43,-135],[-8,-43],[-33,-98],[-18,-96],[3,-90],[-9,-71],[15,-93],[-9,-57],[41,-110],[17,-120],[46,-96],[17,-14],[43,2],[18,-79],[9,-64],[2,-52],[-27,-62],[5,-24],[-38,-56],[-24,-72],[-75,-42],[-29,-78],[33,-110],[-71,17],[-4,62],[25,10],[43,146],[71,-2],[16,65],[42,66],[-14,39],[31,48],[12,38],[-12,71],[-30,3],[-63,70],[-2,44],[-38,29],[-24,-33],[33,-40],[-3,-23],[27,-36],[-20,-40],[-1,-47],[27,-32],[9,-56],[-18,-60],[-57,-20],[-21,-64],[-38,-51],[-21,-82],[-85,-52],[-27,8],[-47,-23],[-28,18],[-24,-17],[-46,51],[-44,-51],[-41,-24],[-35,-80],[-29,-35],[-34,-64],[-13,-43],[-51,-84],[-41,-46],[-64,-119],[-33,-146],[-52,-137],[-52,-11],[-11,45],[38,3],[47,37],[14,59],[-11,12],[37,109],[-20,27],[-77,2],[-92,-9],[-40,-24],[-74,-26],[-58,-11],[-10,-77],[14,-46],[-16,-106],[-21,-58],[21,-44],[53,-38],[91,-36],[-27,-34],[8,-33],[42,-33],[50,13],[53,46],[29,-60],[-26,-68],[47,-58],[-31,-59],[50,-32],[36,22],[13,35],[42,56],[16,53],[33,38],[40,25],[129,16],[30,14],[85,20],[82,-30],[-4,-41],[19,-21],[34,36],[26,51],[33,23],[-13,35],[11,45],[102,5],[113,30],[-18,59],[8,33],[45,30],[39,-4],[38,-22],[28,-60],[35,-20],[-16,-149],[-42,-73],[8,-35],[-33,-93],[9,-75],[-16,-64],[-18,-23],[-12,-51],[-17,-1],[-104,-102],[-65,-25],[-40,-31],[-116,-161],[-74,-17],[23,95],[-25,66],[-40,-7],[-47,-43],[-43,-14],[-50,-45],[-20,3],[-39,-27],[-62,-71],[-69,-37],[-57,-148],[-20,-85],[-5,-75],[-45,-23],[-3,-26],[42,-41],[-14,-93],[-20,-14],[-83,-99],[42,-22],[11,-25],[-34,-68],[46,-80],[38,-6],[25,-32],[60,6],[64,40],[25,69],[39,63],[6,34],[60,53],[38,69],[2,42],[53,46],[26,54],[100,72],[46,-6],[42,12],[18,39],[42,30],[48,9],[66,-13],[37,9],[8,-24],[50,-47],[-70,-86],[-37,-36],[-52,-81],[-65,-63],[-41,-56],[-46,-21],[-37,-77],[-17,-56],[6,-66],[-17,-72],[2,-68],[-26,-31],[4,-39],[-11,-57],[0,-148],[-26,-90],[-24,0],[-35,-68],[-10,-44],[-19,-23],[-47,-132],[-62,-86],[-14,-63],[-36,-103],[-39,-43],[-19,-75],[3,-85],[-26,-35],[-16,-45],[1,-100],[-49,-67],[1,-26],[-39,-69],[2,-36],[-26,-77],[8,-43],[-17,-55],[9,-55],[-18,-47],[-45,-64],[-79,-69],[-35,-67],[-8,-55],[-40,-111],[-18,-184],[-32,-144],[-10,-103],[1,-105],[-20,-72],[-49,-61],[-21,-89],[4,-39],[-12,-116],[10,-81],[-12,-35],[2,-63],[-27,-59],[-71,-90],[-41,-85],[-21,-65],[-38,-40],[-31,-51],[-45,-140],[-8,-52],[-12,-165],[-18,-75],[0,-69],[-9,-92],[-25,-36],[-28,-7],[-12,33],[-30,-7],[-140,-199],[-93,77],[-300,-3],[-122,3],[-2,394],[2,714],[-143,2],[-739,2],[-2,250],[-43,8],[-114,2],[-62,15],[-24,28],[-69,22],[-110,-24],[-50,6],[-38,-30],[-39,9],[-64,67],[-61,-18],[-24,-23],[-77,-25],[-15,-25],[-49,60],[-29,-10],[-51,29],[-73,-73],[-85,-60],[-41,-122],[-16,-118],[-54,-74],[-27,-70],[32,-55],[-13,-30],[-131,-164],[-105,-115],[35,-12],[-21,-90],[-16,-19],[7,-99],[-32,-39],[-12,-39],[-54,-19],[-14,-26],[-35,16],[-66,-54],[-36,-6],[-28,-37],[-53,2],[-44,-54],[51,-18],[18,-82],[-35,-16],[-64,-100],[-18,-62],[-37,-42],[27,-21],[-31,-88],[12,-102],[-59,-47],[-104,-59],[-34,-6],[-21,-24],[16,-58],[-24,-17],[-1,-29],[-40,-22],[-23,-84],[-111,-138],[-49,-8],[-21,-24],[-42,-8],[-34,-31],[-20,-37],[14,-63],[-23,-68],[-93,8],[-12,50],[-42,-7],[-39,41],[-58,1],[-26,61],[-21,3],[7,47],[-60,50],[-2,29],[-56,-34],[-134,35],[-27,34],[-5,75],[-83,35],[-30,35],[-34,19],[-59,-21],[-26,-44],[-71,16],[-101,-55],[-41,-50],[-51,24],[-34,-29],[-14,-57],[-35,-19],[-29,-48]],[[120834,30806],[57,-33],[-23,-29],[-68,50],[-17,-33],[-43,-21],[-24,-78],[-50,-39],[-67,0],[-45,-26],[-15,-27],[-41,-16],[-58,-56],[-48,-33],[-47,14],[-101,-17],[-104,3],[-30,-15],[-29,-40],[-13,54],[-31,14],[-84,-14],[-13,63],[-70,5],[-84,-33],[-14,-50],[-46,-6],[-21,-44],[-35,-29],[-23,1],[-15,44],[73,56],[35,19],[35,36],[61,89],[40,24],[109,-78],[41,-14],[110,-20],[84,-1],[86,11],[78,18],[176,74],[72,33],[53,35],[49,61],[72,53],[28,-5]],[[68493,37893],[-24,-138],[-35,3],[-3,-209],[36,-6],[-22,-109],[189,-21],[-1,-110],[231,-132],[-70,-47],[-65,-13],[-37,-43],[-31,-9],[-20,-37],[20,-85],[-17,-44],[-32,-23],[-49,63],[-45,9],[-8,-23],[40,-170],[-86,30],[2,-257],[266,5],[16,-97],[44,-310],[-274,-255],[-18,-13],[32,-50],[288,-111],[255,105],[8,7],[96,-8],[201,-7],[43,-12],[120,-65],[-21,-227],[137,-77],[34,-13],[30,39],[52,8],[84,-28],[38,-24],[124,13],[89,60],[78,34],[62,-24],[428,-150],[105,-124],[84,10],[77,26],[-83,190],[-43,126],[-8,9],[-66,211],[191,19],[18,-28],[61,-6],[116,-293],[26,-42],[89,-7],[94,38],[43,-3],[10,-53],[23,-52],[18,-74],[175,26],[33,-80],[30,-29],[57,-155],[45,-81],[43,-140],[22,-45],[8,-56],[29,-134],[13,-8],[35,-104],[32,-46],[26,-90],[468,-27],[32,1],[209,37],[222,-44],[296,-54],[26,-92],[48,10],[61,-41],[34,-41],[38,14],[33,39],[53,-11],[22,15],[77,-32],[72,-15],[22,18],[78,1],[22,18],[53,-7],[87,21],[14,43],[69,14],[8,27],[43,10],[26,25],[72,34],[93,6]],[[74259,34296],[-43,-148],[22,7],[375,-1],[16,-31],[-14,-23],[12,-52],[60,-5],[0,-22],[39,-20],[79,0],[-1,-43],[40,0],[0,-40],[78,-13],[0,-24],[41,-29],[32,-1],[41,-32],[43,-2],[10,34],[28,-9],[44,18],[28,-50],[47,-45],[-22,-31],[35,-10],[68,43],[27,-52],[-16,-70],[149,-4],[-6,-75],[71,2],[105,20],[-75,-92],[6,-27],[32,-25],[3,-56],[-9,-41],[-31,-6],[-44,-27],[-225,-160],[-22,-10],[-59,-68],[-4,-34],[-24,-13],[75,-61],[-55,-53],[7,-43],[-33,-17],[-6,-47],[28,-31],[-36,-34],[-13,-30],[12,-40],[-19,-52],[-43,-64],[-19,-67],[-40,-9],[-34,-26],[54,-73],[-22,-20],[-53,-9],[-32,7],[-102,77],[-25,-3],[-78,-64],[-24,-11],[-42,30],[-50,6],[-18,-34],[23,-80],[31,-24],[51,-18],[57,25],[40,50],[68,-5],[54,-96],[-39,0],[-91,30],[-49,-7],[-13,-58],[47,-1],[40,-20],[48,8],[9,-40],[-47,-42],[-49,39],[-41,-72],[18,-72],[-30,-55],[13,-9],[55,22],[14,-11],[36,-130],[37,-31],[60,61],[36,-18],[-22,-28],[-2,-70],[56,16],[15,-69],[49,-41],[-4,-45],[32,-57],[-63,-14],[-42,-19],[-12,-30],[31,-25],[-62,-50],[-35,18],[-20,-9],[2,-37],[-32,-9],[-32,-75],[-31,-47],[-19,-4],[-19,68],[-21,41],[-67,-23],[-31,1],[-19,-39],[36,-8],[20,-26],[-9,-73],[-37,-8],[-24,-34],[-57,-23],[-30,-2],[-55,38],[-24,28],[-37,-36],[11,-17],[47,1],[-24,-71],[-21,-13],[-43,5],[-2,-49],[-14,-31],[6,-39],[39,17],[20,-11],[7,-111],[-10,-49],[15,-53],[35,-18],[15,-41],[-8,-42],[31,-6],[-3,-68],[73,-32],[60,-40],[41,-1],[15,-26],[45,-26],[42,-39],[-15,-32],[76,-144],[-14,-14],[-8,-89],[13,-94],[-7,-50],[40,-14],[27,-50]],[[62889,31701],[-29,88],[70,51],[-8,51],[31,25],[-11,37],[57,14],[10,40],[57,23],[47,32],[-23,59],[25,17],[22,-57],[98,50],[-7,44],[-74,59],[32,31],[70,40],[22,66],[46,44],[15,37],[32,-5],[13,40],[51,21],[133,8],[-7,44],[-64,-5],[-29,31],[15,65],[38,-15],[0,-42],[45,7],[-18,35],[7,47],[-84,37],[-12,-58],[-31,13],[-13,-65],[-69,9],[33,90],[54,-1],[28,16],[12,99],[-14,6],[16,82],[86,209],[6,37],[-40,-3],[-55,145],[109,144],[-32,10],[-26,35],[-57,39],[-35,41],[-7,48],[-89,68],[-124,10],[25,33],[49,32],[-3,50],[27,20],[-55,22],[-21,34],[-24,8],[-35,49],[-39,75],[9,94],[205,-25],[34,358],[-5,73],[246,-13],[-7,71],[119,166],[-4,34],[-29,50],[0,57],[23,96],[-21,97],[-41,76],[-8,35],[-42,33],[-39,88],[-32,19],[-13,73],[-90,-23],[-83,97],[124,157],[-44,11],[-132,103],[-73,42],[-322,-21],[-24,-180],[-283,-195],[-20,-85],[-6,-107],[-86,49],[21,-152],[-268,-330],[-18,-36],[-55,7],[-41,21],[-45,39],[-202,-51],[44,-124],[-146,34],[-28,-14],[-19,-86],[-64,24],[-153,127],[27,53],[20,96],[23,75],[-214,52],[79,405],[-348,-45],[-745,598],[-63,76],[-143,185],[-64,95],[-145,574],[-40,222],[-89,-7],[36,112],[39,64],[72,144],[38,52],[-63,90],[-45,76],[6,174],[-200,97],[14,181],[133,-9],[32,25],[53,167],[-38,-1],[-25,-98],[-30,-51],[-60,-4],[20,45],[-126,132],[111,95],[59,99],[14,65],[32,206],[17,86],[179,3],[-10,-99],[19,-103],[91,-10],[0,-165],[186,-32],[88,19],[357,64],[953,326],[466,403],[478,414],[416,356],[389,349],[54,68],[238,209],[122,104],[181,148],[-97,1051],[175,19],[434,187],[212,800],[102,182],[10,-25],[-12,-39],[-89,-143],[21,-33],[6,-43],[-30,-47],[16,-91],[247,-238],[382,271],[313,363],[122,146]],[[45738,34871],[-63,176],[-49,100],[-67,117],[-76,114],[-90,116],[-108,121],[-135,139],[-120,115],[-120,104],[-192,137],[-65,42],[-26,-9],[-113,163],[-184,228],[-158,188],[-110,127],[-152,162],[-172,164],[-148,114],[-86,99],[-81,80],[-214,191],[-80,42],[-30,-41],[-25,7],[-32,43],[-2,78],[29,29],[-19,44],[-40,38],[-69,38],[-16,46],[-37,37],[1,48],[-23,51],[-89,98],[44,14],[14,34],[-4,39],[-95,144],[-79,114],[-53,67],[-131,135],[-96,80],[-17,24],[-102,98],[-26,17],[8,66],[-74,76],[-30,17],[-95,90],[-19,8],[-9,56],[-40,62],[-42,43],[-100,76],[-98,61],[-43,18],[-18,36],[-101,95],[-66,37],[61,87],[-6,54],[-104,148],[-99,96],[16,47],[-19,36],[-43,47],[-59,77],[-36,35],[-16,121],[-20,67],[-231,242],[-254,254],[-178,161],[-367,313],[-173,131],[-16,45],[-199,134],[-243,174],[-107,72],[-311,193],[-13,35],[-118,105],[-140,116],[-155,113],[-425,302],[-122,85],[-254,169],[-139,86],[-112,56],[-84,30],[-42,32],[-24,37],[7,39],[-51,53],[-22,-4],[-10,82],[-54,66],[-113,64],[-36,38],[-80,35],[-149,92],[-145,105],[-100,91],[-40,54],[-36,71],[-4,75],[11,91],[-27,72],[-48,62],[-52,53],[-96,77],[8,21],[-81,129],[-67,24],[-61,40],[-20,97],[-38,87],[-72,123],[-140,257],[-50,78],[-72,137],[-54,79],[-68,80],[-76,75],[-75,65],[-79,57],[-84,50],[-49,61],[22,39],[-93,195],[-110,79],[-45,23],[-32,62],[-126,160],[-61,56],[-91,63],[-92,50],[-157,72],[-138,69],[-145,59],[-189,69],[-152,45],[-225,44],[-22,17],[-189,5],[-282,152],[-173,70],[-104,27],[-195,36],[-140,11],[-23,25],[-34,70],[-50,29],[-72,81],[-64,38],[-14,65],[-141,160],[-176,69],[-48,111],[-40,49],[-80,70],[-83,54],[-103,40],[-161,41],[-154,11],[-48,-5],[-117,-34],[-93,-5],[11,141],[-8,33],[-29,36],[0,66],[-22,155],[-18,81],[-55,121],[-41,117],[21,48],[25,131],[12,103],[-16,52],[8,34],[-54,80],[-23,49],[-30,111],[53,220],[106,257],[82,130],[16,10],[99,147],[61,97],[108,188],[74,160],[13,43],[24,164],[12,24],[140,142],[-26,34]],[[31653,51346],[44,-17],[128,81],[23,37],[70,-12],[84,-125],[27,-20],[51,0],[70,-26],[16,-16],[124,68],[52,57],[46,109],[23,27],[257,197],[11,-11],[269,-43],[110,115],[-3,22],[115,-67],[85,116],[-64,64],[109,86],[46,23],[0,19],[-52,41],[-25,-25],[-233,-5],[94,45],[73,267],[269,85],[75,-23],[46,36],[-1,28],[170,59],[95,0],[1,-28],[127,-1],[0,244],[47,42],[38,72],[110,33],[-5,46],[-17,14],[19,48],[11,74],[43,15],[11,22],[56,1],[16,70],[-7,31],[19,38],[49,0],[16,20],[8,61],[-19,52],[22,16],[42,-65],[53,11],[13,34],[46,42],[1,21],[-53,16],[-32,54],[12,31],[32,10],[56,69],[44,153],[18,8],[204,389],[172,24],[-303,44],[-12,4]],[[19446,64006],[9,-33],[70,-62],[6,-36],[33,-11],[-34,-37],[6,-47],[-21,-42],[13,-46],[-12,-76],[24,-33],[42,-31],[58,-79],[33,-34],[3,-39],[47,-76],[-4,-28],[20,-40],[34,-34],[25,-92],[37,-20],[-29,-25],[-10,-57],[-25,-30],[-22,-129],[2,-94],[-27,-82],[-23,-47],[-7,-46],[-48,-65],[17,-35],[-7,-39],[-70,-59],[-4,-66],[-56,-80],[-21,-89],[16,-23],[-3,-61],[79,-52],[-56,-33],[-34,18],[-76,-36],[-57,-62],[-18,31],[-55,41],[-63,14],[-71,-23],[-13,53],[-75,9],[-59,56],[-37,48],[-75,-8],[-45,23],[-84,-5],[-38,24],[-4,46],[-17,17],[-54,6],[-35,16],[-16,35],[-196,98],[-32,46],[-37,13],[-35,-11],[-37,39],[49,11],[24,36],[54,19],[134,99],[40,40],[28,66],[44,41],[11,53],[-25,32],[13,33],[-13,51],[-31,31],[2,34],[-23,49],[17,42],[-12,80],[18,28],[-23,64],[45,35],[12,58],[-8,50],[23,83],[0,65],[37,36],[18,134],[26,28],[25,56],[39,42],[36,-6],[25,15],[44,-47],[56,-16],[48,17],[113,99],[44,32],[115,-3],[128,18],[35,15]],[[31653,51346],[-11,46],[24,123],[7,70],[6,163],[-9,128],[-11,79],[-30,139],[-38,102],[-64,113],[-88,114],[-81,73],[-106,67],[-93,145],[-67,71],[-72,57],[-107,44],[-126,17],[-48,35],[-31,-24],[-8,-36],[-120,49],[-137,33],[-140,21],[-104,7],[-129,-11],[-31,-13],[-10,-50],[-27,-23],[-76,13],[-228,101],[-93,34],[-62,64],[-54,42],[-88,80],[-67,75],[-72,122],[-16,49],[-33,165],[-14,32],[-20,117],[-86,227],[-80,120],[-65,70],[-50,66],[-14,59],[27,28],[-63,146],[-47,49],[-72,43],[-136,59],[-57,7],[-51,22],[-58,-11],[-84,70],[-43,26],[-96,35],[-130,26],[-141,39],[-163,37],[-124,19],[-126,36],[-85,33],[-102,74],[-55,68],[-73,67],[-88,91],[-73,85],[-74,71],[-71,49],[-58,30],[-72,27],[-93,21],[-111,11],[-51,-26],[-104,51],[-122,43],[-42,48],[-16,124],[10,71],[30,139],[-2,82],[12,10],[11,103],[1,85],[12,133],[-3,167],[-26,31],[-109,288],[-18,82],[4,75],[34,123],[34,-14],[17,57],[14,109],[-13,49],[4,42],[-20,48],[-7,83],[-25,115],[-2,70],[24,40],[45,41],[45,81],[77,42],[38,-30],[156,37],[-23,36],[-38,11],[-49,32],[-43,54],[-78,41],[-115,26],[-29,0],[-68,-27],[-48,26],[9,49],[-59,25],[-15,-55],[-82,-11],[-82,44],[-89,31],[-144,33],[-158,19],[-69,-3],[9,23],[-14,60],[-27,57],[-32,16],[-61,-8],[-62,-57],[7,-21],[-30,-82],[-65,22],[-65,-55],[-33,-67],[47,7],[34,20],[22,-10],[63,29],[23,-4],[-45,-82],[5,-67],[-23,-3],[-2,-67],[-32,-19],[-39,35],[-38,1],[-2,48],[-93,7],[3,40],[-34,17],[-25,-47],[-38,-11],[-6,71],[-47,50],[-1,20],[32,36],[31,11],[6,37],[-20,30],[-47,-9],[-37,31],[-30,68],[-3,36],[-74,30],[-90,2],[-76,-27],[-42,-33],[-42,-78],[-17,35],[-54,-14],[-55,20],[-16,-22],[-36,4],[44,57],[-14,42],[-70,46],[-18,30],[-89,40],[-97,17],[-40,19],[-33,83],[-30,42],[-20,-4],[-42,42],[-21,44],[-82,33],[-77,57],[-61,66],[-25,10],[-32,42],[-17,105],[-66,76],[-9,25],[-50,22],[11,19],[-28,36],[-34,17],[-22,63],[10,61],[-20,55],[-29,44],[-139,63],[22,41],[-12,30],[-53,43],[14,34],[-19,55],[-94,43],[-10,29],[-68,29],[-33,47],[-40,17],[-13,89],[-26,53],[14,26],[-6,58],[-57,65],[-76,50],[-185,75],[-177,47],[-281,132],[-198,42],[-46,18],[4,83],[-25,88],[-48,73],[-30,27],[-17,61],[-27,57],[-21,76],[-31,53],[-16,64],[-44,70],[-52,50],[-81,58],[-149,93],[-93,72],[-62,76],[-95,61],[-1,28],[-70,42],[1,52],[-31,50],[-70,67],[23,25],[57,-9],[49,32],[70,79],[-55,14],[-41,62],[-59,66],[-45,20],[-53,62],[-75,43],[-126,37],[-69,11],[-14,92],[-59,24],[-11,24],[16,34],[-56,50],[-34,11],[-39,37],[-31,48],[-37,82],[-51,37],[-85,11],[-80,-4],[-71,16],[-21,26],[81,57],[11,43],[-12,35],[-58,98],[4,66],[-22,37],[15,57],[-9,48],[-52,10],[5,37],[49,82],[21,55],[-28,70],[-50,94],[-61,19],[22,55],[-35,40],[-109,5],[15,50],[31,54],[37,151],[-5,91],[-21,64],[-36,63],[-34,84],[-33,42],[-59,42],[-81,21],[-41,1],[-89,-14],[-130,-46],[-83,27],[-54,8],[-79,28],[-33,21],[-40,54],[-7,61],[-27,47],[13,42],[45,70],[54,103],[50,133],[11,55],[-1,59],[-34,70],[-33,27],[-70,14],[-66,59],[-9,62],[11,54],[-29,56],[-66,57],[-36,42],[-60,33],[-31,57],[-35,27],[-13,29],[-47,26],[-6,41],[-58,83],[-17,77],[-32,28],[-14,42],[-55,58],[-28,-4],[-86,69],[-22,76],[-2,44],[-53,65],[-21,57],[-4,50],[-77,98],[-16,38],[-51,40],[-40,67],[6,111],[-25,75],[-52,79],[-44,33],[-60,11],[-51,22],[-37,-6],[-36,-24],[-66,21],[-22,35],[38,116],[-13,33],[3,67],[26,81],[5,68],[-20,23],[0,44],[-25,88],[-64,93],[-7,49],[34,199],[-3,45],[7,189],[-13,82],[-24,69],[-57,100],[-76,88],[-50,47],[-82,51],[-81,11],[-37,-24],[-19,17],[33,40],[21,78],[9,147],[-14,171],[-32,125],[-29,69],[-47,82],[-66,80],[-26,45],[-183,189],[-77,69],[-96,67],[-127,193],[-83,117],[-153,262],[-41,90],[-25,84],[-42,219],[-57,163],[-32,67],[4,34],[32,41],[26,70],[42,210],[12,102],[6,238],[-17,86],[-53,144],[-43,100],[-15,57],[42,6],[-15,-58],[16,-49],[41,-80],[69,-54],[22,33],[30,13],[62,78],[12,170],[-40,97],[-48,232],[-35,34],[-35,83],[-13,64],[-35,44],[-41,-34],[-146,68],[-131,67],[-53,38],[-19,40],[-75,-6],[-118,6],[-397,106],[-140,29],[-124,18],[-52,36],[-51,-14],[-372,67],[-32,1],[-26,24],[4,50],[-62,30],[-144,25],[-82,4],[-61,53],[73,4],[32,17],[10,69],[-13,79],[-39,118],[-56,108],[-1,41],[27,57],[-35,109],[-42,52],[-64,65],[-98,66],[-307,143],[-47,54],[-78,0],[-57,11],[-126,75],[-44,48],[-69,-34],[-30,19],[-3,27],[-80,38],[-67,-10],[-8,-24],[-73,18],[-103,61],[-22,49],[-56,13],[-5,-25],[16,-79],[20,-34],[-12,-47],[4,-46],[49,-6],[7,-41],[-14,-33],[-60,-46],[0,-36],[-36,-51],[-77,-25],[-42,38],[-21,-22],[13,-26],[-27,-86],[0,-39],[-100,-7],[-93,14],[-159,-4],[-140,3],[-61,14],[-113,42],[-64,30],[-79,59],[-68,30],[-113,40],[-115,78],[-40,48],[-68,47],[6,35],[-51,40],[-93,47],[-134,78],[-56,16],[-97,57],[-64,14],[-6,45],[-59,46],[-110,25],[-20,28],[-48,24],[7,28],[-81,35],[-2,23],[-57,47],[-49,76],[-98,53],[-56,38],[-98,27],[-54,3],[-161,-12],[-92,11],[-120,61],[-28,29],[-41,80],[-68,62],[-47,19],[-75,10],[-70,-14],[-10,-14]],[[9229,75382],[-4,10]],[[9100,75503],[-12,-4]],[[9017,75522],[-9,4]],[[8905,75537],[2,8]],[[8776,75681],[-1,4]],[[8730,75717],[-6,3]],[[9298,78239],[121,-37],[470,-153],[726,-238],[1100,-363],[468,-156],[420,-141],[170,-55],[695,-234],[808,-272],[976,-332],[498,-170],[807,-268],[484,-159],[783,-259],[574,-190],[637,-213],[482,-163],[619,-208],[697,-237],[787,-269],[685,-236],[442,-151],[553,-194],[484,-166],[559,-195],[528,1],[387,4],[591,-2],[462,-3],[395,-1],[355,2],[95,2],[919,4],[776,0],[868,0],[658,0],[261,1],[798,-1],[915,-5],[515,-3],[630,0],[179,1]],[[25252,58584],[-44,-16],[-7,-31],[78,-71],[52,7],[-3,59],[-45,44],[-31,8]],[[105177,14302],[-1,-738],[-2,-633],[3,-326],[1,-762],[-265,1],[-625,0],[-281,2],[-312,-3],[-337,0]],[[94633,12122],[-66,33],[-13,-42],[-56,21],[-15,56],[38,34],[-125,95],[-76,53],[-18,31],[-6,48],[33,22],[18,67],[33,34],[67,4],[20,56],[28,30],[-7,31],[35,20],[-21,33],[20,42],[-5,28],[22,53],[28,27],[-37,62],[34,32],[-10,61],[24,69],[-32,21],[-6,32],[-70,-6],[-43,44],[-49,18],[-8,31],[-49,45],[-7,29],[-50,12],[-4,62],[-37,4],[-22,40],[-58,37],[-33,11],[32,44],[-11,31],[-33,2],[-25,82],[24,43],[-65,0],[-41,10],[-2,30],[-70,16],[-9,14],[-71,-21],[0,61],[-29,15],[-29,-33],[-17,40],[-41,35],[-38,-22],[-18,32],[-69,10],[-20,-33],[-43,57],[29,36],[12,40],[-4,39],[-23,15],[-53,-18],[-79,10],[-40,-22],[-37,16],[-37,-4],[-11,57],[-31,15],[-29,56],[12,45],[-26,48],[7,38],[-18,29],[-6,53],[31,15],[-49,49],[-41,27],[-28,-35],[-43,4],[-47,-18],[-33,18],[-31,-15],[-25,25],[-12,68],[-24,43],[-105,-33],[-75,23],[1,54],[14,43],[-31,56],[10,46],[-25,91],[16,95],[-12,45],[37,-2],[-5,44],[45,33],[36,1],[-18,44],[10,27],[-29,36],[-50,-15],[16,66],[-15,50],[24,46],[13,63],[-41,46],[-51,40],[5,21],[52,32],[-1,51],[-52,41],[-20,82],[12,76],[17,45],[-36,65],[-26,0],[-32,-32],[-33,3],[-15,37],[-3,164]],[[92532,16033],[12,12],[279,86],[357,123],[122,45],[329,108],[31,-5],[39,39],[81,24],[315,117],[204,79],[266,98],[84,29],[60,9],[12,17],[361,101],[96,24],[185,38],[123,17],[100,3],[158,13],[169,7],[186,1],[95,8],[81,-10],[21,-25],[42,2],[6,33],[42,4],[230,4],[98,-2],[111,-37],[64,-8],[125,-3],[160,8],[209,20],[82,16],[82,24],[131,49],[69,32],[94,52],[132,100],[66,62],[59,66],[99,132],[76,129],[5,61],[56,68],[43,-29],[55,-11],[73,6],[209,34],[105,22],[259,70],[137,46]],[[77825,33672],[-108,-46],[-83,-60],[-17,-35],[-5,-77],[-29,-23],[-26,2],[-176,65],[-37,53],[-49,17],[-3,41],[-69,27],[13,67],[-92,76],[-11,30],[-60,10],[-29,24],[-33,0],[-23,-39],[-31,21],[9,64],[57,-33],[54,102],[-25,45],[-34,12],[-15,38],[-47,-7],[-43,20],[-33,-3],[-36,27],[-41,-11],[-62,-1],[-17,-37],[-50,-1],[-26,21],[-30,74],[-44,18],[-38,-30],[-28,53],[0,68],[-106,60],[-53,24],[-59,-8],[-42,38],[-50,24],[-1,64],[-43,39],[30,79],[-25,7],[-41,-17],[-51,28],[-33,-40],[-42,33],[-48,-2],[-13,-61],[-27,-21],[-63,-6],[-24,63],[-32,19],[-38,-29],[-31,32],[-42,-14],[30,-78],[-37,-32],[-23,-48],[4,-23],[35,-15],[15,-40],[-14,-38],[1,-40],[-45,24],[-61,-39],[-45,-1],[-23,67],[-50,-60],[-28,-14],[-35,6],[-9,36],[22,25],[5,74],[-41,5],[-12,-39],[-52,-55],[-39,56],[-54,0],[2,82],[-47,-1],[-20,-50],[-49,-33],[-23,9],[10,40],[-19,24],[-66,-15],[-24,-21],[-23,26],[-38,11],[-23,-35],[10,-21],[-64,-42],[-64,-5],[-19,-24],[-86,5],[-30,-32],[-59,3],[-109,56],[-39,-24],[-39,51],[-120,-43],[-20,8]],[[70004,57267],[23,-52],[49,-42],[45,-9],[9,32],[69,-18],[43,5],[43,-42],[-32,-61],[44,-31],[30,5],[42,-15],[58,28],[-8,46],[47,-27],[41,19],[29,-10],[15,-48],[62,-49],[-5,-67],[68,22],[26,32],[54,-39],[24,-64],[30,-55],[49,-28],[17,-25],[-7,-36],[-35,-59],[-14,-98],[2,-42],[-13,-48],[10,-19],[97,15],[31,-10],[50,-38],[11,-42],[-18,-51],[-38,-57],[-13,-62],[33,-120],[-21,-91],[-1,-56],[-24,-27],[-36,-88],[8,-71],[-63,-52],[-37,-2],[-27,-27],[32,-53],[31,-9],[68,11],[42,-10],[28,-42],[-5,-36],[-30,-65],[18,-33],[44,-16],[66,37],[47,-17],[45,-63],[1,-58],[-16,-58],[50,-55],[0,-38],[27,-105],[-15,-81],[-40,-35],[35,-59],[0,-64],[-41,-58],[0,-22],[51,-57],[-27,-55],[-69,-65],[28,-86],[8,-44],[-3,-64],[34,-30],[39,-5],[44,26],[50,-77],[64,-77],[42,-22],[-18,-28],[-51,-45],[23,-73],[38,-41],[52,-22],[58,-5],[57,-19],[52,-33],[12,-41],[-31,-117],[47,-62],[91,-2],[57,-30],[50,-67],[24,-121],[79,-120],[11,-183],[125,-91],[-4,-134],[39,-165],[87,-152],[44,-265],[-17,-74],[15,-27],[58,-27],[101,-21],[89,-103],[59,-114],[-30,-60],[-24,-101],[-34,-19],[10,-36],[85,-78],[33,-52],[80,5],[70,57],[56,6],[38,-25],[33,-58],[45,4],[59,-9],[51,41],[76,-27],[9,-21],[-11,-59],[27,-23],[46,-6],[15,24],[-7,38],[27,40],[22,-7],[-2,-42],[30,-37],[53,-8],[10,-56],[19,-27],[28,18],[114,40],[39,-8],[37,-24],[85,54],[24,-22],[36,7],[32,-39],[9,-50],[32,-43],[0,-33],[47,-21],[52,5],[48,23],[13,-50],[36,-27],[12,-29],[-34,-17],[16,-40],[30,21],[47,-18],[10,-29],[40,4],[33,-16],[-3,-35],[-45,7],[-24,-32],[73,-26],[53,-2],[29,-13],[3,-60],[15,-35],[27,-19],[66,2],[79,32],[4,37],[38,32],[38,-35],[62,28],[49,-2],[25,-20],[-22,-33],[19,-44],[60,22],[2,-55],[66,27],[13,47],[34,-77],[52,-28],[32,25],[61,-18],[-25,-43],[21,-15],[76,22],[12,26],[32,1],[41,25],[21,-14],[56,2],[14,-57],[-20,-24],[10,-28],[46,-17],[60,-48],[52,-10],[-3,-29],[46,-37],[28,-40],[73,4],[-3,48],[40,0],[-4,-43],[38,-22],[5,44],[48,9],[8,-36],[-20,-24],[11,-56],[59,-91],[71,-33],[15,31],[38,12],[67,-20],[6,-43],[-19,-32],[42,-33],[11,-28],[50,-28],[7,-27],[77,22],[46,-6],[30,-32],[30,-12],[27,-49],[21,-5],[21,48],[59,31],[13,-30],[32,-1],[48,-58],[24,-2],[22,42],[30,14],[104,18],[44,-39],[70,39],[24,-87],[-39,-25],[38,-20],[41,39],[87,-21],[17,41],[7,51],[42,-13],[79,23],[94,-21],[57,-36],[35,38],[42,2],[39,-36],[18,25],[89,-7],[23,15],[61,5],[48,14],[34,-33],[68,-22],[54,3],[20,-31],[29,45],[59,-3],[35,22],[37,-30],[-18,-55],[14,-22],[51,-8],[47,14],[-25,35],[30,11],[25,-31],[-6,-53],[45,13],[71,-13],[62,12],[3,-34],[39,14],[0,29],[88,-26],[81,-12],[59,-36],[31,51],[24,-21],[9,-34],[-47,-27],[52,-39],[4,-41],[47,-5],[25,-46],[31,-7],[-6,-50],[34,-37],[30,17],[52,1],[-6,-26],[14,-50],[-13,-26],[64,-19],[31,-31],[14,46],[39,-13],[4,-43],[67,-77],[23,-48],[6,-41],[42,6],[47,49],[11,-13],[-4,-68],[48,-8],[87,16],[37,-6],[40,-54],[-14,-38],[17,-48],[32,6],[37,-38],[55,-2],[12,45],[46,-1],[-1,-52],[104,4],[18,81],[37,62],[-14,22],[-44,3],[33,50],[-1,54],[-13,56],[28,2],[40,29],[13,32],[51,-5],[-6,-35],[53,-10],[0,30],[30,28],[35,-23],[19,45],[105,-7],[3,19],[-49,64],[29,21],[22,-29],[121,-17],[17,25],[63,23],[23,-10],[49,30],[12,-24],[79,3],[52,25],[13,-16],[48,1],[4,-55],[43,27],[8,-184],[-6,-159],[-24,-226],[-45,-296],[-23,-127],[-43,-163],[-93,-260],[-21,-29],[-131,-259],[-136,-249],[-48,-81],[-167,-300],[-141,-266],[-88,-168],[-119,-245],[-39,-109],[-40,-49],[-66,-135],[-137,-323],[-96,-244],[-110,-309],[-118,-359],[-61,-208],[-93,-352],[-71,-256],[-80,-312],[-51,-210],[-44,-190],[-51,-246],[-17,-116],[-23,-105],[-32,-207],[-47,-361],[-16,-192],[-10,-62],[-7,-118],[-19,-191],[-19,-238],[-49,-690],[-5,-123],[4,-617],[3,-115],[7,-53],[-18,-67],[-5,-204],[-11,-185],[-29,-341],[-35,-335],[-29,-366],[-15,-224],[-6,-217],[5,-330],[9,-208],[7,-298],[15,-286],[-1,-63],[4,-219],[-7,-180],[-8,-66],[-6,-238],[-38,-220],[-34,-160],[-18,-64],[-72,-186],[-59,-137],[-23,-83],[-27,-50],[-51,-134],[-29,-146],[-22,-194],[-4,-102],[3,-168],[21,-101],[-18,-1],[1,-72],[13,-104],[40,-198],[55,-218],[67,-197],[41,-85],[76,-116],[3,-19]],[[74899,21345],[0,3]],[[74899,21348],[-1,4]],[[74874,21404],[-1,3]],[[74871,21411],[-1,2]],[[74868,21431],[-3,5]],[[74861,21449],[-1,4]],[[74228,22074],[13,-1]],[[74979,22140],[5,6]],[[74986,22153],[0,8]],[[75057,22141],[4,0]],[[75066,22139],[2,1]],[[75068,22140],[1,-1]],[[75081,22135],[2,3]],[[75100,22138],[1,-1]],[[75110,22145],[1,0]],[[75138,22153],[3,0]],[[75165,22147],[1,-2]],[[75172,22143],[1,-1]],[[77825,33672],[-32,-21],[-4,-34],[4,-164],[16,-131],[49,-214],[43,-146],[45,-134],[96,-232],[94,-192],[51,-87],[158,-250],[66,-111],[92,-146],[81,-115],[128,-164],[81,-90],[89,-91],[169,-145],[54,-53],[58,-71],[95,-85],[115,-95],[185,-143],[42,-25],[14,-36],[44,-47],[4,-35],[-16,-27],[-3,-67],[14,-78],[-10,-48],[-39,-101],[-50,-171],[-98,-236],[-82,-133],[-50,-116],[-28,-116],[-9,-68],[-2,-102],[7,-44],[-13,-50],[9,-79],[32,-132],[32,-100],[50,-128],[110,-228],[87,-226],[58,-122],[4,-31],[53,-111],[34,-50],[6,-39],[29,-72],[83,-177],[83,-160],[57,-93],[55,-79],[14,-81],[34,-82],[44,-70],[3,-68],[43,-98],[-30,-59],[21,-18],[4,-72],[20,-62],[26,-45],[25,-75],[49,-90],[83,-118],[129,-154],[221,-240],[132,-130],[104,-93],[53,-38],[34,-50],[75,-130],[33,-49],[167,-197],[199,-213],[41,-48],[143,-145],[115,-122],[56,-88],[217,-224],[29,-35],[37,-68],[224,-275],[268,-342],[20,-18],[-1,-52],[52,-110],[124,-164],[45,-54],[71,-73],[43,-64],[57,-59],[65,-45],[53,-73],[1,-62],[32,-63],[3,-30],[32,-55],[29,-31],[-6,-40],[40,-104],[31,-39],[-5,-37],[29,-66],[-23,-63],[2,-40],[46,-90],[-15,-75],[13,-80],[85,-153],[9,-29],[-29,-53],[20,-122],[53,-107],[117,-166],[71,-74],[22,-87],[-32,-19],[-12,-30],[-8,-159],[22,-88],[39,-98],[-18,-52],[36,-113],[42,-67],[95,-105],[45,-37],[118,-77],[80,-38],[45,-10],[30,-28],[29,-1],[31,-58],[-2,-34],[22,-32],[41,-22],[106,5],[39,-21],[-50,-50],[48,-31],[0,-67],[30,-43],[44,-17],[41,-46],[-18,-45],[-5,-45],[-19,-36],[28,-92],[5,-50],[27,-37],[68,-59],[62,-34],[75,-26],[94,-6],[43,6],[54,24],[38,2],[35,-24],[16,-40],[23,-257],[14,-101],[39,-114],[37,-59],[-6,-57],[10,-37],[56,-87],[105,-113],[64,-53],[91,-64],[71,-37],[133,-60],[124,-49],[115,-31],[62,-37],[65,-62],[150,-84],[150,-61],[133,-38],[161,-33],[194,-21],[133,-10],[176,-7],[346,-1],[87,7],[199,8],[81,-30],[102,-14],[145,-3],[45,4],[37,24],[29,-13],[-5,-29],[70,-59],[47,-10],[38,-22],[19,-29],[27,-5],[28,-65],[19,-17],[95,-45],[26,14],[48,-16],[-6,-44],[20,-28],[57,-32],[6,-46],[24,-33],[20,-77],[63,-42],[91,-38],[89,-29],[65,4],[20,-18],[98,-19],[134,-11],[41,10],[37,-7],[67,5],[30,-14],[128,-10],[74,-20],[30,-40],[37,-18],[20,-47],[28,-35],[25,-103],[31,-88],[2,-59],[54,-60],[66,-59],[-3,-32],[28,-84],[34,-42],[62,-57],[90,-57],[38,-45],[63,-52],[16,-74],[27,-44],[62,-52],[68,-46],[-15,-58],[11,-90],[25,-90],[28,-59],[14,-63],[80,-84],[98,-63],[130,-55],[95,-23],[129,-11],[74,4],[149,23],[51,12],[66,0],[148,19],[245,50],[72,21],[291,70],[22,10],[113,24],[151,40],[8,-2]],[[89341,11598],[-1,5]],[[89351,11646],[7,2]],[[89412,11777],[-2,9]],[[89416,11983],[1,2]],[[89428,11999],[0,2]],[[89418,12011],[-1,0]],[[89389,11999],[-3,-1]],[[89442,12052],[10,2]],[[89480,12075],[-3,9]],[[89466,12108],[-7,4]],[[89311,12157],[-5,-10]],[[89306,12147],[-4,-5]],[[89205,12142],[-8,7]],[[89163,12207],[-1,0]],[[89143,12193],[-22,10]],[[89121,12203],[-56,24]],[[88839,12324],[-38,17]],[[85464,14107],[11,6]],[[85487,14116],[7,3]],[[85594,14306],[3,11]],[[85606,14368],[-10,10]],[[85703,14640],[8,18]],[[85719,15429],[-3,21]],[[85702,15530],[-4,22]],[[85514,15685],[-11,1]],[[85389,15697],[-1,0]],[[85380,15697],[-1,1]],[[85362,15707],[-1,-1]],[[85354,15717],[0,2]],[[85354,15722],[0,2]],[[85355,15736],[0,1]],[[85357,15744],[0,1]],[[85357,15752],[0,1]],[[85348,15767],[-1,-1]],[[85341,15765],[-1,1]],[[85334,15764],[0,-1]],[[85320,15759],[0,-2]],[[85320,15753],[0,-2]],[[85321,15744],[0,-1]],[[85319,15730],[-1,-1]],[[85320,15723],[0,-1]],[[85320,15720],[-1,0]],[[85307,15734],[0,1]],[[85307,15736],[0,1]],[[85307,15743],[-1,1]],[[85304,15739],[-1,0]],[[85295,15737],[-1,-1]],[[85293,15734],[-1,1]],[[85287,15734],[-1,2]],[[85280,15733],[0,-1]],[[85279,15728],[0,-1]],[[85277,15723],[-2,0]],[[85149,15778],[0,1]],[[85121,15761],[0,-2]],[[80372,20865],[-3,4]],[[80368,20870],[-2,3]],[[80351,20879],[-8,2]],[[80268,20886],[-4,-3]],[[80188,20813],[-2,-3]],[[80182,20808],[-7,2]],[[80173,20813],[-1,5]],[[80173,20825],[-1,4]],[[80156,20841],[-2,0]],[[80128,20853],[-3,5]],[[80131,20888],[2,-1]],[[80148,20974],[2,4]],[[80137,21024],[-2,2]],[[80052,21070],[-2,2]],[[79995,21104],[-3,1]],[[79989,21108],[-2,1]],[[78596,24241],[2,-1]],[[78625,24238],[0,-4]],[[78647,24243],[1,3]],[[78654,24266],[-2,1]],[[78568,24326],[-2,0]],[[78552,24408],[2,6]],[[78541,24463],[0,7]],[[76044,28828],[-2,-5]],[[76034,28806],[-2,-5]],[[76027,28793],[-3,3]],[[76016,28794],[2,-4]],[[76006,28797],[-1,0]],[[75860,28778],[-16,-5]],[[75827,28784],[1,1]],[[75806,28876],[7,4]],[[75813,28880],[9,15]],[[75836,28957],[2,19]],[[75795,29012],[-2,-2]],[[75703,28975],[-4,2]],[[75693,28982],[-4,3]],[[75640,28953],[-2,-1]],[[75631,28942],[-3,-3]],[[75588,28916],[0,-2]],[[75562,28872],[-2,-2]],[[75539,28866],[-4,3]],[[75507,28858],[-5,-1]],[[75483,28876],[-1,0]],[[75474,28863],[-4,-1]],[[75413,28867],[0,5]],[[75406,28879],[-4,1]],[[75370,28865],[-2,-2]],[[75363,28862],[-3,-2]],[[75360,28857],[-1,-2]],[[75343,28854],[-5,4]],[[75335,28852],[1,-4]],[[75281,28858],[1,-1]],[[75278,28865],[-1,3]],[[75278,28872],[-2,1]],[[75261,28883],[0,1]],[[75255,28891],[-1,1]],[[75255,28897],[-3,2]],[[75210,28935],[-1,-1]],[[75188,28944],[-1,1]],[[75174,28951],[-2,0]],[[75166,28957],[1,2]],[[75158,28964],[0,2]],[[75150,28987],[1,1]],[[75136,29089],[-1,2]],[[75094,29124],[-7,4]],[[75075,29148],[-3,-6]],[[75021,29172],[2,4]],[[75072,29260],[-3,1]],[[75023,29269],[-13,-3]],[[74972,29267],[-3,1]],[[74966,29268],[-5,0]],[[74946,29265],[1,-2]],[[74947,29263],[0,-5]],[[74942,29253],[-1,-1]],[[74923,29249],[-2,-2]],[[74916,29250],[-1,-1]],[[74914,29249],[-1,0]],[[74828,29408],[10,12]],[[119072,30198],[2,-450]],[[119074,29515],[4,-1093]],[[107524,27506],[8,52],[32,66],[39,142],[37,111],[26,94],[29,66],[88,152],[71,74],[68,49],[339,207],[101,66],[134,102],[90,57],[151,80],[34,27],[88,19],[96,11],[138,36],[117,44],[125,78],[107,77],[108,56],[98,42],[106,29],[76,31],[103,18],[153,42],[255,57],[134,21],[27,18],[77,5],[308,55],[57,22],[193,34],[258,39],[111,13],[64,16],[326,35],[35,16],[83,-1],[114,9],[202,22],[84,16],[188,16],[82,2],[138,21],[54,22],[125,22],[116,10],[259,48],[119,8],[146,37],[117,2],[96,24],[70,38],[61,9],[10,33],[91,20],[72,7],[74,21],[172,87],[4,19],[42,43],[113,85],[52,48],[39,49],[14,34],[53,31],[59,17],[52,4],[179,38],[66,-7],[121,42],[157,45],[144,19],[78,26],[98,7],[14,8],[86,-24],[17,-20],[107,-28],[36,9],[84,1],[64,33],[17,-22],[106,33],[35,17],[-4,45],[157,97],[97,36],[-4,22],[130,46],[52,5],[112,-16],[138,-33],[162,-15],[268,-1],[119,-39],[90,-41],[80,-28],[150,-73],[143,-60],[155,-55],[167,-51],[165,-44],[44,4],[103,-27],[103,-19],[125,-34],[231,-53],[48,-2]]],"objects":{"mex_estados":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1]],"type":"Polygon","properties":{"estado":"Aguascalientes","POB1":1184996,"id":0,"area":0.4911514517}},{"arcs":[[[2]],[[3]],[[4]],[[5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38]]],"type":"MultiPolygon","properties":{"estado":"Baja California","POB1":3155070,"id":1,"area":6.851830432}},{"arcs":[[[39]],[[40]],[[41]],[[42]],[[43,-22,44,-20,45,-38,46,-36,47,-34,48,-32,49,-30,50,-28,51,-26,52,-24]]],"type":"MultiPolygon","properties":{"estado":"Baja California Sur","POB1":637026,"id":2,"area":6.7101658591}},{"arcs":[[53,54,55,56,57]],"type":"Polygon","properties":{"estado":"Campeche","POB1":822441,"id":3,"area":4.9298699377}},{"arcs":[[58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276]],"type":"Polygon","properties":{"estado":"Coahuila de Zaragoza","POB1":2748391,"id":4,"area":13.823476273}},{"arcs":[[277,278,279]],"type":"Polygon","properties":{"estado":"Colima","POB1":650555,"id":5,"area":0.483190757}},{"arcs":[[280,281,282,283]],"type":"Polygon","properties":{"estado":"Chiapas","POB1":4796580,"id":6,"area":6.2049069699}},{"arcs":[[-276,284,285,286,287]],"type":"Polygon","properties":{"estado":"Chihuahua","POB1":3406465,"id":7,"area":22.875323291}},{"arcs":[[288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334]],"type":"Polygon","properties":{"estado":"Distrito Federal","POB1":8851080,"id":8,"area":0.1284467109}},{"arcs":[[-275,335,-273,336,-271,337,-269,338,-267,339,-265,340,-263,341,-261,342,-259,343,-257,344,-255,345,-253,346,-251,347,-249,348,-247,349,-245,350,-243,351,-241,352,-239,353,-237,354,-235,355,-233,356,-231,357,-229,358,-227,359,-225,360,-223,361,-221,362,-219,363,-217,364,-215,365,-213,366,-211,367,-209,368,-207,369,-205,370,-203,371,-201,372,-199,373,-197,374,-195,375,-193,376,-191,377,-189,378,-187,379,-185,380,-183,381,-181,382,-179,383,-177,384,-175,385,-173,386,-171,387,-169,388,389,-166,390,-164,391,-162,392,-160,393,-158,394,-156,395,-154,396,-152,-151,-150,-149,397,-147,398,-145,-144,-143,399,400,-140,-139,401,-137,-136,402,-134,403,-132,404,-130,405,-128,406,-126,407,-124,408,-122,409,-120,410,-118,-117,-116,411,-114,412,-112,413,-110,414,-108,415,-106,-105,416,-103,-102,417,-100,418,-98,419,-96,420,-94,421,-92,422,-90,-89,423,-87,-86,424,-84,425,-82,426,-80,427,-78,428,-76,429,430,-73,431,-71,-70,432,-68,-67,433,434,-64,-63,435,-61,436,437,438,-285]],"type":"Polygon","properties":{"estado":"Durango","POB1":1632934,"id":9,"area":11.026859146}},{"arcs":[[439,440,441,442,443]],"type":"Polygon","properties":{"estado":"Guanajuato","POB1":5486372,"id":10,"area":2.6572871916}},{"arcs":[[444,445,446,447,448,449]],"type":"Polygon","properties":{"estado":"Guerrero","POB1":3388768,"id":11,"area":5.4159102554}},{"arcs":[[450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600]],"type":"Polygon","properties":{"estado":"Hidalgo","POB1":2665018,"id":12,"area":1.802762513}},{"arcs":[[-1,601,-442,602,-280,603,604,605]],"type":"Polygon","properties":{"estado":"Jalisco","POB1":7350682,"id":13,"area":6.8099293283}},{"arcs":[[-598,606,-596,607,-594,608,-592,609,-590,610,-588,611,-586,612,613,614,615,616,-304,617,-302,618,-300,619,-298,620,-296,621,-294,622,-292,623,-290,624,-335,625,-333,626,-331,627,-329,628,-327,629,-325,630,-323,631,-321,632,-319,633,634,-316,635,-314,636,-312,637,-310,638,-308,639,-306,640,-450,641,642]],"type":"Polygon","properties":{"estado":"México","POB1":15175862,"id":14,"area":1.9218602628}},{"arcs":[[643,-642,-449,644,-278,-603,-441]],"type":"Polygon","properties":{"estado":"Michoacán de Ocampo","POB1":4351037,"id":15,"area":5.0341794342}},{"arcs":[[-617,645,646,647,648,649,650,651,652,653,-445,-641,-305]],"type":"Polygon","properties":{"estado":"Morelos","POB1":1777227,"id":16,"area":0.4179837711}},{"arcs":[[654,-605,655,656,-438]],"type":"Polygon","properties":{"estado":"Nayarit","POB1":1084979,"id":17,"area":2.4330722967}},{"arcs":[[657,658,659,660,-59]],"type":"Polygon","properties":{"estado":"Nuevo León","POB1":4653458,"id":18,"area":5.7646737673}},{"arcs":[[661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,-282,771,-447,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928]],"type":"Polygon","properties":{"estado":"Oaxaca","POB1":3801962,"id":19,"area":7.9547569703}},{"arcs":[[929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,-928,975,-926,976,-924,977,-922,978,-920,979,-918,980,-916,981,-914,982,-912,983,-910,984,-908,985,-906,986,-904,987,-902,988,-900,989,-898,990,-896,991,-894,992,-892,993,-890,994,-888,995,-886,996,-884,997,-882,998,-880,999,-878,1000,-876,1001,-874,1002,-872,1003,-870,1004,-868,1005,-866,1006,-864,1007,-862,1008,-860,1009,-858,1010,-856,1011,-854,1012,-852,1013,-850,1014,-848,1015,-846,1016,-844,1017,-842,1018,-840,1019,-838,1020,-836,1021,-834,1022,-832,1023,-830,1024,-828,1025,-826,1026,-824,1027,-822,1028,-820,1029,-818,1030,-816,1031,-814,1032,-812,1033,-810,1034,-808,1035,-806,1036,-804,1037,-802,1038,-800,1039,-798,1040,-796,1041,-794,1042,-792,1043,-790,1044,-788,1045,-786,1046,1047,-783,1048,-781,1049,-779,1050,-777,1051,-775,1052,-773,-446,-654,1053,-652,1054,-650,1055,-648,1056,-646,-616,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,-563,1069,-561,1070]],"type":"Polygon","properties":{"estado":"Puebla","POB1":5779829,"id":20,"area":2.9440545922}},{"arcs":[[-599,-643,-644,-440,1071]],"type":"Polygon","properties":{"estado":"Querétaro","POB1":1827937,"id":21,"area":1.0146378384}},{"arcs":[[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[-54,1077,1078,1079,1080,1081,1082]],[[1083]]],"type":"MultiPolygon","properties":{"estado":"Quintana Roo","POB1":1325578,"id":22,"area":3.8551484962}},{"arcs":[[1084,1085,-600,-1072,-444,1086,-660]],"type":"Polygon","properties":{"estado":"San Luis Potosí","POB1":2585518,"id":23,"area":5.3692645461}},{"arcs":[[-439,-657,1087,1088,-286]],"type":"Polygon","properties":{"estado":"Sinaloa","POB1":2767761,"id":24,"area":5.1308872029}},{"arcs":[[[1089]],[[-287,-1089,1090,-18,1091,-16,1092,-14,1093,-12,1094,-10,1095,-8,1096,-6,1097],[1098]]],"type":"MultiPolygon","properties":{"estado":"Sonora","POB1":2662480,"id":25,"area":16.833458186}},{"arcs":[[1099,-284,1100,1101,-56]],"type":"Polygon","properties":{"estado":"Tabasco","POB1":2238603,"id":26,"area":2.1092010197}},{"arcs":[[1102,-1085,-659,1103]],"type":"Polygon","properties":{"estado":"Tamaulipas","POB1":3268554,"id":27,"area":7.1381820673}},{"arcs":[[1104,1105,-1066,1106,-1064,1107,-1062,1108,-1060,1109,-1058,-615,1110,-613,-585,1111,-583,1112,-581,1113,-579,1114,1115,-576,1116,-574,1117,-572,1118,-570,1119,-568,1120,-566,1121,-564,-1069]],"type":"Polygon","properties":{"estado":"Tlaxcala","POB1":1169936,"id":28,"area":0.3438371664}},{"arcs":[[1122,-1101,-283,-771,1123,-769,1124,-767,1125,-765,1126,-763,1127,-761,1128,-759,1129,-757,1130,-755,1131,-753,1132,-751,1133,1134,-748,-747,1135,-745,1136,-743,1137,1138,-740,1139,-738,1140,-736,1141,-734,1142,-732,1143,-730,1144,-728,1145,-726,1146,-724,1147,-722,1148,-720,1149,-718,1150,-716,1151,-714,1152,-712,1153,-710,1154,-708,1155,-706,1156,-704,1157,-702,-701,1158,-699,1159,-697,1160,-695,1161,-693,-692,1162,-690,1163,-688,1164,-686,1165,-684,1166,-682,1167,-680,1168,-678,1169,-676,1170,-674,1171,-672,1172,-670,1173,-668,1174,-666,-665,1175,-663,1176,-929,-975,1177,-973,1178,-971,1179,-969,1180,-967,1181,-965,1182,-963,1183,-961,1184,-959,1185,-957,1186,-955,1187,-953,1188,-951,1189,-949,1190,-947,1191,-945,1192,-943,1193,-941,1194,-939,1195,-937,1196,-935,1197,-933,1198,-931,1199,-1071,-560,1200,-558,1201,-556,1202,-554,1203,-552,1204,-550,1205,-548,1206,-546,1207,1208,-543,1209,-541,1210,-539,1211,-537,1212,-535,1213,-533,1214,-531,1215,-529,1216,-527,1217,-525,1218,-523,1219,-521,1220,-519,1221,-517,1222,-515,1223,-513,1224,-511,1225,-509,1226,-507,1227,-505,1228,-503,1229,-501,1230,-499,1231,-497,1232,-495,1233,-493,1234,-491,1235,-489,1236,-487,1237,-485,-484,1238,-482,1239,-480,-479,1240,-477,1241,-475,1242,-473,1243,-471,1244,-469,1245,-467,1246,-465,1247,-463,1248,1249,-460,1250,-458,1251,-456,1252,-454,1253,-452,1254,-601,-1086,-1103]],"type":"Polygon","properties":{"estado":"Veracruz de Ignacio de la Llave","POB1":7643194,"id":29,"area":6.1789019128}},{"arcs":[[-1082,1255,-1080,1256,-1078,-58,1257]],"type":"Polygon","properties":{"estado":"Yucatán","POB1":1955577,"id":30,"area":3.4279457664}},{"arcs":[[-661,-1087,-443,-602,-2,-606,-655,-437,-60]],"type":"Polygon","properties":{"estado":"Zacatecas","POB1":1490668,"id":31,"area":6.644906933}}]}}}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
#map-container {
height: 500px;
width: 500px;
}
.states {
fill: grey;
stroke: black;
stroke-linejoin: round;
}
#map {
overflow: visible;
}
</style>
<body>
<div id="click_to_run" onclick="doUpdate()">Haz click para hacer cartograma</div>
<div id="map-container"></div>
</body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="cartogram.js"></script>
<script>
var map = d3.select("#map-container")
.append('svg')
.attr("id", "map");
var topo;
var edos = map.append("g")
.attr("id", "edos")
.selectAll("path");
var proj = d3.geo.mercator()
.center([-97.16, 21.411])
.scale(1000);
var carto = d3.cartogram()
.projection(proj)
.properties(function (d) {
//regresa también las propiedades (valores) de la fuente de dato
return d.properties;
});
var topology, geometry;
function makeMap (data) {
topology = data;
geometries = data.objects.mex_estados.geometries;
var features = carto.features(data, geometries),
path = d3.geo.path()
.projection(proj);
edos = edos.data(features)
.enter()
.append("path")
.attr("class", "states")
.attr("id", function (d) {
return d.properties.estado;
})
.attr("d", path);
};
function doUpdate () {
var scale = d3.scale.linear()
.domain([0, 17000000])
.range([1, 1000]);
carto.value(function (d) {
return + scale(d.properties['POB1'])
});
var carto_features = carto(topology, geometries).features;
//actualiza el mapa
edos.data(carto_features);
edos.transition()
.duration(900)
.attr("d", carto.path);
};
d3.json("estados.json", function (data) {
makeMap(data)
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment