Skip to content

Instantly share code, notes, and snippets.

@wwymak
Last active September 11, 2016 11:28
Show Gist options
  • Select an option

  • Save wwymak/f8d20b9c95510ff7a9ec to your computer and use it in GitHub Desktop.

Select an option

Save wwymak/f8d20b9c95510ff7a9ec to your computer and use it in GitHub Desktop.
gridmapTest

Work in progress towards making a hexgrid map of the uk --- draw the counties, then assign a circle to each of counties, then use force layout with collision detection to force the circles not to collide

Also draw a hexagon grid, then after force layout has finished, assinged te hexagons closest to the circle to be blue

Add in function so when you click on a colored hexagon, you are 'moving' that to a new position when you click on uncolored hexagon

collision code adapted form http://bl.ocks.org/mbostock/1804919, inspired by https://github.com/kristw/gridmap-layout-thailand

(function(){
var width = 960,
height = 1160,
padding = 6, // separation between nodes
maxRadius = 20;
var svg = d3.select("#mapContainer").append("svg")
.attr("width", width)
.attr("height", height);
//*****hexagon grid stuff*************************//
var hexRadius = Math.sqrt(3) * maxRadius,
hexWidth = Math.sqrt(3) * hexRadius,
hexHeight = 2 * hexRadius;
//no of rows and cols in the hex grid
var nrows = Math.ceil((height - 0.5 * hexRadius)/ (1.5 * hexRadius)),
ncols = Math.ceil((width - 0.5 * Math.sqrt(3) * hexRadius)/ (Math.sqrt(3) * hexRadius));
drawHexGrid(nrows, ncols, hexRadius, svg);
//finding the centroids of the hexcells
function hexCentroids(nrows, ncols, hexRadius) {
var centroidMatrix = []; //array of arrays
for (var i = 0; i< nrows; i++){
var rowArr = [];
var yCoord = hexRadius + 1.5 * hexRadius * i;
var initX;
if(i % 2 === 0) { //odd rows
initX = 0.5 * Math.sqrt(3) * hexRadius;
}else { //even rows
initX = Math.sqrt(3) * hexRadius;
}
for (var j = 0; j < ncols; j++) {
rowArr.push([(initX + j * Math.sqrt(3) * hexRadius), yCoord])
}
centroidMatrix.push(rowArr)
}
return centroidMatrix;
}
/***
* find the closest hexcell centroid to a point with coordinates of xcoord and ycoord
* @param xcoord
* @param ycoord
* @returns {*[]} array of size 2, with arr[0] corresponding to the colnumber of the hexgrid
* and arr[1] the rownumber of the hexgrid
*/
function getClosestCentroidIndex(xcoord, ycoord){
var yIndex = Math.round((ycoord - hexRadius) /(1.5 * hexRadius));
var initX;
if(yIndex % 2 === 0) { //odd rows
initX = 0.5 * Math.sqrt(3) * hexRadius;
}else { //even rows
initX = Math.sqrt(3) * hexRadius;
}
var xIndex = Math.round((xcoord - initX)/(Math.sqrt(3) * hexRadius));
return [xIndex, yIndex]
}
function hexagon(radius) {
var x0 = 0, y0 = 0;
var d3_hexbinAngles = d3.range(0, 2 * Math.PI, Math.PI / 3);
return d3_hexbinAngles.map(function(angle) {
var x1 = Math.sin(angle) * radius,
y1 = -Math.cos(angle) * radius,
dx = x1 - x0,
dy = y1 - y0;
x0 = x1;
y0 = y1;
return [dx, dy];
});
}
function hexagonPath(radius) {
return "m" + hexagon(radius).join("l") + "z";
}
function drawHexGrid(nrows, ncols, hexRadius, svg) {
var centroid = hexCentroids(nrows, ncols, hexRadius);
var hexrows = svg.selectAll('g.hexrow').data(centroid)
.enter().append('g').attr('class', 'hexrow');
hexrows.selectAll('path.hexagon').data(function(d){return d})
.enter().append('path')
.attr('class', 'hexagon')
.attr("d", function (d) { return "M" + d[0]+ "," + d[1] + hexagonPath(hexRadius); })
.attr('fill', 'rgba(255,255,255,0)').attr('stroke', 'black')
}
//***************************************************************//
/**
* rest the projection params so the map fills as much of the svg as possible
* @param json geojson
* @returns {{projection: *, path: *}}
*/
function resetProjection(json){
//find the geo center of the current geojson data
var center = d3.geo.centroid(json);
//arbitrary scale, to be tweaked
var scale = 150;
//move to center for now
var offset = [width/2, height/2];
// set the projection
var projection = d3.geo.mercator().scale(scale).center(center)
.translate(offset);
// create the path
var path = d3.geo.path().projection(projection);
// using the path determine the bounds of the current map and use
// these to determine better values for the scale and translation
//bounds = [[left, top], [right, bottom]]
var bounds = path.bounds(json);
//how many times the width of the current path in pixels fit
//within the scaling *B height
var hscale = scale * width / (bounds[1][0] - bounds[0][0]);
//similar for vertical
var vscale = scale * height / (bounds[1][1] - bounds[0][1]);
if(hscale < vscale) {
scale = hscale;
} else {
scale = vscale;
}
//shift to new center
offset = [width - (bounds[0][0] + bounds[1][0])/2,
height - (bounds[0][1] + bounds[1][1])/2];
// new projection
projection = d3.geo.mercator().center(center)
.scale(scale).translate(offset);
path = path.projection(projection);
return {
projection: projection,
path: path
}
}
var geodata;
var projection = d3.geo.mercator().scale(1000);
d3.json("uk_counties.topo.json", function(err, data){
geodata = topojson.feature(data, data.objects.uk_counties)
var center = d3.geo.centroid(geodata);
projection.center(center);
projection = resetProjection(geodata).projection;
var path = d3.geo.path().projection(projection);
var mapG = svg.append('g').attr('class', 'mapG');
var nodeG = svg.append('g').attr('class', 'nodeG');
mapG.selectAll("path")
.data(geodata.features)
.enter().append("path")
.attr("d", d3.geo.path().projection(projection))
.attr("stroke", "black").style("fill", "none");
var features = geodata.features;
var hexblocks = features.map(function(d){
var centroid = path.centroid(d);
return {
name: d.properties.NAME,
cx: centroid[0],
cy: centroid[1],
x: centroid[0],
y: centroid[1],
radius: maxRadius,
}
});
//set to true when curating the hexagon layouts
var isHexBlockmoving = false;
var hexBlockMovingID = null;
//force layout with the centroids as the nodes,
//the size and width of the svg
var force = d3.layout.force()
.nodes(hexblocks)
.size([width, height])
.gravity(0)
.charge(0) //instead of the default 30
.on('tick', tick)
.start();
force.on('end', function() {
var hexG = d3.selectAll('g.hexrow');
hexblocks.forEach(function(hex) {
var closest = getClosestCentroidIndex(hex.x, hex.y);
hex.newX = closest[0];
hex.newY = closest[1];
hexG.filter(function(d, i){
return i === closest[1]
}).selectAll('path').filter(function(d, i){
return i === closest[0]
}).attr('fill', 'blue').attr('id', hex.name)
// .on('mouseover', function(d, i){
// console.log(d3.select(this).attr('id'))
// })
});
d3.selectAll('.hexagon').on('click', moveHexBlock);
//take out the circles so they don't affect the hexagon on clikc
d3.selectAll('.nodeG').remove();
});
// Move nodes toward cluster focus.
//basically the force layout changes cy as it tries to move the
//circles apart, but you are pulling them back towards their centroids with th
//+= (d.clusterY - d.cy) * alpha
//the higher the alpah, the more strongly pulled it is
// Move nodes toward cluster focus.
function gravity(alpha) {
return function(d) {
d.y += (d.cy - d.y) * alpha;
d.x += (d.cx - d.x) * alpha;
};
}
function tick(e) {
node.each(gravity(.2 * e.alpha))
.each(collide(e.alpha))
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
}
// Resolve collisions between nodes.
function collide(alpha) {
var quadtree = d3.geom.quadtree(hexblocks);
return function(d) {
var r = 2 * maxRadius + padding,
nx1 = d.x - r,
nx2 = d.x + r,
ny1 = d.y - r,
ny2 = d.y + r;
quadtree.visit(function(quad, x1, y1, x2, y2) {
if (quad.point && (quad.point !== d)) {
var x = d.x - quad.point.x,
y = d.y - quad.point.y,
l = Math.sqrt(x * x + y * y),
r = maxRadius + quad.point.radius + padding;
if (l < r) {
l = (l - r) / l * alpha;
d.x -= x *= l;
d.y -= y *= l;
quad.point.x += x;
quad.point.y += y;
}
}
return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1;
});
};
}
function moveHexBlock(d, i) {
console.log('move this block!', d3.select(this).attr('id'))
var hexID = d3.select(this).attr('id');
if(hexID && hexID != null && isHexBlockmoving == false) {
//so step 1
isHexBlockmoving = true;
hexBlockMovingID = hexID;
d3.select(this).attr('id', 'moving') //set the current element id to be 'moving'
.attr('fill', 'rgba(0,0,255,0.5)'); // and set the moving fill to be
}
if((hexID == null ||!hexID) && isHexBlockmoving === true) {
d3.select(this).attr('id', hexBlockMovingID)
.attr('fill', 'blue')
isHexBlockmoving = false;
d3.select('#moving').attr('id', null).attr('fill', 'rgba(255,255,255,0)');
var hexBlockEl = hexblocks.filter(function(item) {
return item.name === hexBlockMovingID;
});
hexBlockEl.newX = d[0];
hexBlockEl.newY = d[1];
}
}
var node = nodeG.selectAll('.node')
.data(hexblocks)
.enter().append('circle')
.attr('class', 'node');
node.attr('r', maxRadius).attr('fill', 'grey')
d3.select('#exportDataBtn').on('click', function() {
var data = JSON.stringify(hexblocks);
console.log(data)
});
});
})();
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
</head>
<body>
<div id="mapContainer"></div>
<div><button id="exportDataBtn">Export</button></div>
<script src="hexgrid.js"></script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00020474403280127158,0.00011601682420812102],"translate":[-8.643755267472239,49.865736005218494]},"arcs":[[[41447,19091],[-31,-29],[-10,-57],[-40,-85],[-102,10],[-82,-162],[-35,-47],[86,-237],[-96,-38],[-67,-57],[-45,0],[-21,-123],[-46,0],[-10,-47],[-56,9],[-51,180],[-86,-9],[20,-38],[-66,-76],[-5,-38],[-143,0],[-106,29],[-36,-48],[30,-57],[51,0],[5,-142],[-30,-9],[-87,-76],[-40,28],[15,57],[5,161],[-56,19],[-20,-95],[-26,0],[-30,-189],[5,-123],[71,-38],[25,-133],[56,-142],[41,0],[56,-95],[-5,-152],[20,-66],[51,-76],[-71,-76],[-41,10],[-25,-86],[-46,-19],[-142,95],[-67,76],[-45,-9],[-46,28],[-41,-38],[-112,67],[-35,-19],[20,-57],[-26,-38],[-61,9],[-5,-66],[-40,19],[-26,-48],[10,-142],[-30,-38],[-77,-47],[-35,28],[-82,143],[-20,9]],[[39513,16901],[51,-19],[20,38],[-81,142],[-31,0],[-45,86],[-26,85],[-56,47],[-102,38],[-56,95],[-30,-29],[-56,0],[-77,38],[-25,57],[-66,67],[-107,-10],[-31,66],[46,162],[46,94],[-5,48],[41,19],[30,85],[61,47],[16,86],[35,9],[-51,86],[0,56],[-30,95],[56,95],[0,57],[46,57],[-11,123],[-122,95],[51,66],[46,85],[25,0],[31,95],[51,57],[71,48],[66,94],[-10,48],[41,38],[-26,38],[0,66],[-56,95],[-61,0],[-66,38],[-5,85],[31,76],[-26,104],[36,38],[0,76],[-56,9],[-21,57],[-71,0],[-51,48]],[[38953,20077],[0,37],[92,181],[56,56],[-26,67],[-45,284],[35,38],[66,-9],[26,37],[66,29],[56,0],[71,-47],[26,-67],[25,-9],[51,-95],[51,38],[76,-10],[5,76],[36,38],[-15,104],[-36,67],[61,94],[82,152],[25,19],[122,10],[31,-29],[56,38]],[[39946,21176],[91,-66],[51,0],[15,-38],[-5,-76],[26,-85],[46,-67],[66,29],[51,-48],[91,0],[10,-66],[-35,-9],[15,-67],[0,-114],[36,-151],[137,-10],[0,76],[107,10],[46,-29],[71,10],[56,-48],[-66,-123],[10,-85],[25,-38],[143,19],[46,-105],[61,-56],[-15,-67],[-31,10],[-46,-67],[26,-28],[117,-47],[66,-76],[-51,-95],[117,-29],[87,-37],[106,0],[51,37],[46,-56],[-10,-275],[-15,-142],[-41,-76]],[[39823,14038],[-45,-47],[-51,-171]],[[39727,13820],[-41,19],[-56,-9],[-46,-123],[56,-67],[-20,-104],[-66,47],[-56,0],[-51,76],[-56,-47],[-76,-29],[-51,-85],[0,-123],[-67,-161],[-25,-133],[-188,28],[-66,-47],[-168,-95],[-67,-9],[-50,-29],[-41,-85],[-31,-28],[-76,-133],[-56,-47]],[[38429,12636],[-41,56],[-56,29],[-91,0],[-16,57],[-45,38],[-194,9],[-61,-9],[-20,28],[-71,10],[-107,75],[-143,-19],[-86,-28],[-107,0],[-46,19],[-51,-29],[-127,0],[-76,-9],[-11,38],[-66,85],[-71,29],[20,28],[-51,47],[-142,-85],[-10,-57],[10,-66],[-46,-19],[-97,-9],[-35,28],[-97,0],[-36,-19],[-50,47],[-77,29],[-71,-10],[-5,29],[-112,-19],[-36,47],[-35,0],[-61,-38],[-87,0],[-10,19],[-92,19],[-81,0],[-41,-28],[-56,-10],[-173,0],[-102,38],[-66,0],[-66,-142],[-61,0],[-15,-66],[71,-95],[-92,-38],[-91,0],[-153,-28]],[[34897,12617],[5,37],[51,95],[5,38],[-66,48],[0,75],[-81,133],[-46,0],[-56,47],[-21,48],[-71,47],[10,114],[-81,57],[20,57],[82,0],[91,66],[36,95],[0,66],[-26,48],[-96,57],[-21,56],[-35,29],[-51,142],[-56,66],[-20,76],[-6,86],[16,104]],[[34480,14304],[15,104],[46,38],[56,85],[81,10],[46,-38],[71,28],[92,-38],[71,-56],[-10,-29],[61,-57],[61,-9],[5,57],[77,0],[96,75],[26,-75],[66,85],[30,0],[31,-47],[46,-10],[86,114],[36,-38],[112,-29],[25,133],[82,-28],[66,0],[25,-38],[51,0],[5,-38],[82,-29],[46,-66],[249,-9],[20,-67],[77,10],[71,38],[61,0],[15,28],[66,38],[46,-9],[10,-67],[-45,-76],[15,-85],[40,-19],[87,-9],[36,-76],[25,-105],[76,-37],[128,56],[91,-28],[21,-57],[-11,-47],[97,-86],[51,0],[15,57],[31,10],[10,76],[20,19],[72,0],[81,66],[71,-66],[31,-86],[-66,-85],[0,-38],[45,-19],[72,76],[40,-10],[26,67],[36,19],[0,47],[45,29],[41,104],[56,38],[51,9],[-20,57],[-31,19],[10,104],[-107,114],[21,66]],[[37839,14474],[51,133],[61,10],[56,-114],[71,-29],[97,10],[10,38],[66,19],[92,-10],[55,48],[31,85],[122,0],[31,38],[101,57],[41,-10],[15,-104],[46,-19],[26,29],[30,-67],[-5,-123],[-30,-57],[-16,-104],[0,-133],[51,0],[107,-180],[92,-28],[51,37],[-31,95],[-41,0],[5,142],[-30,29],[15,66],[66,76],[102,10],[15,-29],[117,-95],[72,-9],[25,57],[51,-171],[188,0],[-5,-95],[-20,-47],[203,9]],[[28571,14256],[5,0]],[[28576,14256],[51,48]],[[28627,14304],[10,0]],[[28637,14304],[31,0]],[[28668,14304],[30,0]],[[28698,14304],[31,-10],[153,0],[142,-9]],[[29024,14285],[41,19],[86,161],[51,-47],[0,-67],[66,-85],[5,-76],[72,0],[25,19],[117,-9],[92,37],[-10,-47],[20,-85],[56,-10],[66,-38],[26,-38],[56,0],[10,29],[127,-19],[20,-29],[-25,-47],[30,-104],[-10,-95],[-30,-19],[0,-57],[-41,-66],[0,-76],[20,-38],[61,-28]],[[29955,13470],[-50,19],[-41,-48],[-26,-104],[-51,-38],[-86,10],[-20,-67],[-51,-19],[-97,0],[-178,29],[15,94],[-30,67],[15,38],[0,85],[-31,47],[31,48],[35,0],[-25,85],[-10,85],[-66,29],[-72,142],[-56,-57],[-40,0],[-102,123],[-20,0],[-77,67],[-81,-76],[-66,0],[-31,19],[-81,-10],[-56,-47],[-66,-19],[-82,-95],[-25,-57],[-46,-28],[-66,-76],[-26,-9],[-96,-162],[-87,-85]],[[28113,13460],[-209,-133],[-101,-75],[-296,-199],[-127,-95],[-198,-133],[-143,-104]],[[27039,12721],[-51,284]],[[26988,13005],[5,10]],[[26993,13015],[118,94],[188,143],[234,189],[341,266],[163,132],[132,95],[51,48],[142,104],[209,170]],[[37839,14474],[-31,10],[5,85],[-56,48],[-51,19],[-76,75],[-10,114],[81,48],[36,56],[-26,57],[-66,-19],[-40,57],[30,86],[-56,18],[0,86],[31,0],[40,66],[-56,95],[0,38],[87,0],[15,104],[41,57],[51,9],[56,-47],[86,0],[-25,47],[-56,38],[66,48],[-66,57],[20,57],[15,189],[-45,29],[-21,56],[-51,76],[-35,0],[-26,86],[-45,47],[-51,0],[-51,47],[-107,0],[-26,-47],[-127,28],[-122,10],[10,-104],[-76,0],[-46,56],[-61,19],[-10,29],[-66,19],[15,151],[-25,38],[-102,0],[-82,67],[21,76],[-26,85],[51,66],[-66,114],[-56,38],[81,104],[87,-38],[102,-95],[101,19],[46,67],[-46,38],[-15,227],[-56,48],[41,85],[-46,38],[-51,9],[10,133],[21,47],[-21,95],[51,48],[5,38],[56,9],[31,57],[10,66],[-117,-9],[-76,104],[51,85],[30,95],[107,180],[-15,57],[-82,-9],[-66,9],[-25,57],[-46,-19],[-41,38],[-30,-10]],[[36755,18531],[-87,38],[15,76],[77,161],[168,48],[25,47],[61,29],[77,-10],[56,47],[61,0],[-46,67],[71,-10],[132,0],[11,-19],[112,10],[40,66],[41,19],[36,-47],[15,-104],[46,-86],[10,-85],[25,-66],[46,-48],[15,-57],[31,-28],[35,57],[51,28],[46,-19],[31,57],[20,95],[41,-10],[35,38],[-40,48],[10,76],[102,0],[25,75],[-10,57],[-107,152],[-56,19],[15,38],[-35,76],[-72,9],[36,85],[46,57],[86,10],[72,-10],[51,19],[-21,95],[92,0],[66,123],[46,-47],[61,142],[61,19],[36,-28],[45,0],[67,47],[40,66],[92,67],[30,47],[56,19],[107,-9]],[[39513,16901],[-36,19],[-35,-85],[-66,-105],[-46,10],[-15,57],[-56,-19],[-102,47],[-117,-19],[-82,0],[-56,86],[-5,37],[-46,95],[11,67],[-31,75],[-122,0],[-20,-66],[-41,0],[-26,-57],[-45,-47],[112,-180],[66,28],[25,-28],[97,-161],[-15,-57],[51,-95],[5,-85],[35,-48],[46,-9],[46,-38],[25,-48],[112,0],[82,-37],[20,18],[71,0],[5,-37],[51,-95],[56,19],[46,-38],[10,-85],[-56,-76],[0,-38],[41,-57],[41,-19],[15,-85],[-31,-76],[16,-29],[96,10],[77,-10],[15,-66],[-71,-123],[-51,19],[-21,-29],[21,-85],[-26,-38],[36,-218],[20,-28],[41,-124],[87,0]],[[39773,14948],[25,-132],[51,-86],[0,-66],[36,-104],[-36,-29],[-51,-104],[31,-104],[-6,-142],[36,-29],[-36,-114]],[[44195,18958],[-71,-38],[-51,-104],[36,-38],[10,-66],[-71,0],[-62,75],[-71,29],[-46,95],[-20,9],[-76,133],[-143,114],[-56,28],[-117,-104],[-30,-10],[-61,86],[-87,0],[-56,18],[-30,-37],[-26,-95],[-51,-48],[31,-75],[-21,-48],[-91,-9],[-31,-29],[-76,0],[-76,-28],[-46,95],[-77,0],[6,-86],[-26,-47],[0,-57],[-30,-38],[-16,-104],[-40,-67],[-11,-47],[-61,-19]],[[42551,18446],[-45,76],[5,38],[-41,47],[-10,86],[-31,56],[-10,95],[-81,0],[-46,-19],[-66,0],[-82,114],[-61,0],[-117,-114],[-20,-38],[-285,-170],[-51,-48],[5,114],[-51,114],[-51,0],[-56,57],[26,47],[-6,57],[16,66],[-41,29],[-5,38]],[[39946,21176],[-5,142],[-82,19],[26,48],[-107,123],[5,47],[66,133],[71,-19],[77,47],[45,-19],[46,57],[15,57],[72,57],[5,76],[40,9],[82,57],[30,48],[77,56],[5,86],[46,95],[61,94],[15,57],[-15,67],[-46,75],[-15,95],[35,57],[-132,76],[-97,76],[-35,0],[-36,38],[61,85],[-5,114],[-66,28],[-5,85],[46,38],[-36,38],[0,67],[-41,28],[-97,-19],[-86,-38],[-92,-9],[-25,47],[-36,10],[-25,47],[35,38],[6,47],[40,57],[5,95],[41,38],[-5,76],[-31,38],[-50,9],[-26,67]],[[39803,23916],[41,47],[51,-10],[35,48],[67,0],[10,28],[66,-28],[112,-19],[81,9],[21,38],[91,29],[46,28],[87,10],[61,56],[5,57],[107,0],[56,-28],[71,-10],[91,-123],[56,-38],[41,38],[138,95],[76,9],[41,-104],[35,-28],[41,66],[168,-66],[35,0],[179,170],[56,-47],[61,38],[137,9],[51,-47],[76,-38],[77,0],[152,19],[133,142],[5,76],[-21,57],[-5,152],[26,47],[66,66],[132,-28],[41,57],[71,0],[92,76],[137,0],[56,-10]],[[43055,24759],[-15,-104],[-61,-161],[-10,-218],[15,-19],[107,-10],[25,-19],[-5,-170],[-66,-38],[31,-67],[45,-28],[36,-66],[86,-57],[31,-48],[-56,-94],[-15,-67],[-51,-9],[10,-86],[46,-104],[61,0],[15,-76],[-61,-57],[41,-75],[-46,0],[5,-95],[36,-57],[-26,-57],[102,0],[-5,-38],[-51,-47],[5,-48],[138,-132],[45,57],[117,9],[112,38],[72,0],[5,-47],[66,9],[56,-57],[117,-19],[0,-38],[76,-151],[36,-10],[71,-114],[56,-28],[36,-57],[0,-76],[25,-66]],[[44312,22162],[-56,-76],[-208,-161],[45,-152],[26,-38],[86,-199],[46,-38],[15,-66],[82,0],[30,-28],[-30,-133],[-56,-38],[30,-114],[128,10],[25,-76],[193,-161],[16,-38],[-41,-38],[-5,-76],[-168,-47],[-158,-86],[-30,0],[-97,161],[-81,76],[-16,76],[-30,-9],[-41,47],[-46,0],[0,-76],[-35,-47],[15,-29],[-71,-104],[96,-161],[-81,-57],[142,-133],[51,57],[66,-19],[56,67],[56,0],[-10,85],[36,38],[41,-19],[50,-76],[62,48],[45,-67],[36,0],[36,-66],[35,47],[41,10],[76,-86],[5,-132],[-25,-10],[-26,-76],[-5,-94],[-30,-38],[-5,-114],[-56,-85],[-56,0],[-31,47],[-46,19],[-45,-10],[-41,-104],[-82,-28],[-15,-190],[-40,0],[-11,-104],[-56,0],[-30,-38],[-36,-133],[41,-57],[20,-104],[26,-19],[30,-114],[-5,-28]],[[32510,28854],[-25,-47],[-36,-124],[-102,-37],[-30,37],[-102,-9],[-71,-152],[-36,-28],[-209,-29],[-30,57],[-51,0],[-20,76],[-36,0],[-20,-76],[15,-151],[-41,19],[-81,-95],[-46,-19],[-46,-85],[-91,-143],[-107,-132],[-41,-10],[-56,-95],[-137,-47],[-26,-57],[-66,-9],[-46,28],[-81,-9],[-51,-38],[-61,-152],[-76,-38],[-72,0],[-46,-19],[-15,-104],[5,-123],[56,-105],[-51,-57],[11,-75]],[[30592,27006],[-41,-29],[-87,0],[-20,-66],[-127,-10],[10,-151],[-46,9],[-30,-38],[-128,-28],[-35,-19],[-41,66],[-97,-9],[-15,47],[-41,-9],[0,-152],[-56,-57],[-56,85],[-35,0],[-46,57],[-51,-9],[-15,-57],[-46,0],[-51,57],[-5,142],[-36,10],[-10,66],[-76,-10],[-31,76],[-112,0],[-61,-57],[-112,-19],[-35,67],[-122,-95],[-41,0]],[[28897,26873],[-66,28],[-102,0],[-20,67],[-123,9],[-5,-38],[-56,-9],[-71,38],[-41,-10],[-45,29],[-26,94],[10,38],[-30,57],[-46,-9],[-31,38],[0,66],[26,29],[-10,47],[-36,28],[5,76],[20,38],[-50,133],[-56,28],[30,67],[-76,47],[-41,57],[41,47],[0,57],[35,48],[11,56],[-31,29],[-36,-57],[-91,-10],[-41,48],[-112,28],[-10,48],[-87,47],[-71,152],[-30,-10],[-31,67],[82,0],[112,75],[56,0],[40,29],[61,76],[-10,95],[-30,47],[-36,9],[-71,143],[-36,19],[-107,104],[-208,180],[-67,38],[-178,9],[-51,19],[-56,48],[-112,170],[-56,48]],[[26937,29480],[107,104],[133,142],[56,0],[45,-47],[31,9],[66,-38],[26,-57],[101,0],[92,67],[132,-48],[41,29],[46,-10],[46,57],[45,-28],[102,142],[102,-57],[41,-38],[96,-9],[163,76],[46,-10],[0,57],[-71,104],[46,0],[20,95],[46,57],[107,9],[30,76],[21,133],[30,28],[66,-9],[46,47],[15,123],[51,-19],[77,0],[30,-75],[36,-38],[101,-10],[41,19],[0,67],[21,47],[0,190],[40,56],[-86,86],[20,66],[76,19],[118,-47],[30,-67],[51,0],[56,57],[56,0],[61,-28],[41,57]],[[29630,30864],[35,94],[92,29],[-5,57],[117,47],[132,66],[36,0],[10,-142],[25,-76],[51,-66],[11,-76],[61,-19],[61,-113],[-11,-67],[-106,-199],[122,19],[46,-47],[137,-48],[168,-161],[61,-19],[56,48],[92,-19],[91,-57],[15,-48],[51,-28],[21,-57],[46,-9],[66,66],[35,0],[51,85],[178,-9],[56,-38],[112,-19],[-30,-95],[10,-57],[36,-38],[66,0],[25,-28],[61,28],[21,76],[-6,85],[41,48],[0,85],[224,10],[61,-67],[107,0],[20,76],[67,48],[50,-19]],[[32296,30210],[-5,-38],[72,0],[40,-38],[16,-142],[-41,-48],[20,-142],[41,-28],[-31,-171],[-5,-180],[21,-104],[-21,-57],[41,-38],[10,-95],[87,-76],[30,-47],[-61,-48],[0,-104]],[[36027,25925],[-66,19],[-51,-28],[-31,28],[-101,-19],[-31,-66],[-87,19],[-5,-48],[-51,-57],[-45,-9],[-31,-57],[-61,-19],[-30,-104],[-153,-285],[-107,10],[-10,-85],[-92,-38],[31,-95],[-51,-76],[-56,-38],[-56,-9],[-31,-29],[-40,76],[-102,-19],[-15,-38],[-123,19],[-45,-114],[25,-85],[56,-57],[-20,-114],[-82,-85],[-122,-38],[-30,-47]],[[34414,24437],[-46,-38],[-31,38],[-35,-10],[-163,0],[0,76],[-21,19],[11,95],[-82,19],[-10,28],[-117,0],[-26,48],[31,28],[5,152],[41,28],[15,76],[31,57],[40,0],[0,85],[56,19],[56,-38],[41,57],[66,-57],[66,86],[46,9],[15,57],[51,19],[-10,85],[-66,48],[5,94],[76,19],[-76,124],[-71,19],[-46,66],[-56,28],[-107,10],[-41,38],[-147,19],[-15,28],[-67,-9],[-30,-48],[-61,38],[-61,10],[-16,76],[-40,28],[-138,19],[-35,38],[-46,-19],[-97,0],[-46,38],[-10,47],[21,38],[-11,48],[-40,28],[-31,66],[0,67],[-41,9],[36,123],[97,114],[-15,47],[30,48],[-20,114],[30,47],[92,10],[46,47],[35,66],[87,29],[30,47],[-10,38],[20,76],[-5,85],[31,29],[-10,85],[-41,47],[-36,0],[-45,48],[25,76],[-51,132],[0,67],[-25,56],[56,38],[-16,67],[16,28],[-51,57],[-97,199],[-41,19],[21,66],[5,143],[-61,56],[-31,67],[-51,38],[-35,57],[-51,28],[-51,66],[-97,38],[-81,-9],[-31,38],[-81,47],[-21,29],[-76,0],[-41,66],[-5,47],[-76,-75],[-46,-29]],[[32296,30210],[36,28],[92,123],[0,48],[45,94],[16,95],[-61,-9],[-77,57],[5,47],[-30,57],[41,47],[56,19],[56,86],[40,28],[-5,47],[36,29],[-41,57],[5,104],[51,38],[31,66],[-5,95],[40,47],[31,-47],[107,9],[71,38],[20,38],[-40,48],[10,94],[30,10],[36,57]],[[32892,31660],[41,0],[35,-48],[61,57],[51,0],[51,-47],[31,-57],[91,-66],[66,9]],[[33319,31508],[11,-66],[71,-10],[-26,-57],[61,-9],[-20,-190],[61,-66],[46,0],[25,-66],[36,-29],[102,0],[0,-113],[15,-57],[-30,-38],[25,-67],[-10,-38],[30,-56],[51,-48],[31,29],[51,0],[45,-29],[0,-85],[46,-38],[72,0],[56,-66],[71,-10],[0,-66],[-46,-86],[0,-75],[112,-57],[71,-67],[66,-9],[87,-38],[-15,-28],[-72,0],[-25,-67],[-51,-66],[-20,-57],[45,-38],[72,47],[35,-56],[82,47],[56,-76],[71,10],[-5,-67],[127,0],[5,38],[77,19],[30,38],[117,19],[138,10],[-11,94],[46,0],[36,57],[122,-19],[36,57],[30,-28],[82,-19],[-16,-133],[21,-28],[203,9],[41,-28],[46,104],[66,-10],[10,67],[102,-48],[-21,-57],[0,-66],[72,-47],[46,9],[15,-38],[56,-28],[56,0],[76,57],[41,-38],[91,0],[16,57]],[[36358,29698],[66,-57],[46,9],[25,-94],[-41,-57],[51,-86],[-40,-38],[-46,-75],[-77,-29],[-50,-114],[10,-56],[40,-57],[-30,-95],[-5,-95],[46,-76],[-5,-47],[30,-57],[-15,-85],[-92,-29],[-112,0],[-20,-57],[-76,-66],[-36,28],[-71,-9],[-31,38],[-41,0],[-30,-57],[-102,-19],[10,-171],[31,-56],[-31,-48],[51,-95],[5,-85],[46,-76],[-41,-57],[31,-57],[-26,-19],[-86,-9],[-87,-114],[-5,-76],[36,-47],[25,-123],[-5,-76],[46,-76],[26,-76],[-6,-57],[31,-47],[51,-38],[10,-85],[41,-142],[25,-38],[-20,-124],[46,-28],[5,-104],[15,-57],[-41,-57],[16,-114],[35,-66],[56,0],[71,-28],[51,-67],[-35,-38],[40,-76],[-81,-19],[-61,-47]],[[27823,7346],[-41,-47],[-56,0],[-66,-67],[-76,0],[-31,-37],[-61,-19],[-86,0],[-112,38],[-112,0],[-66,-57],[-16,-95],[-61,9],[-152,0],[-133,-19],[-102,10],[-50,-29],[-82,0],[-86,-19],[-61,-37],[-87,-29],[-86,-142],[-21,-66],[-56,-105],[-56,-57],[-35,10],[-102,-38],[-107,-76],[-5,-85],[-51,19],[-92,-29],[-193,95],[-41,114],[-40,76],[-26,0],[20,-199],[31,-38],[56,-29],[-81,-132],[-82,-76],[-41,-76],[5,-76],[-50,-47],[-87,-152],[0,-57],[-25,-28],[-16,-86],[-25,-56],[66,0],[137,-465],[51,-540],[-81,-76],[-122,-95],[-46,-9],[-31,-57],[-25,-95],[20,-95],[-15,-38],[-61,-19],[-20,-66],[-46,0],[-132,85],[5,86],[-31,47],[-5,-133],[61,-38],[0,-66],[-46,-76],[-71,0],[-31,-47],[-66,0],[-66,-104],[-30,-19],[-56,-105],[-41,-132],[-51,-313],[5,-85],[46,-67],[-26,-38],[-137,10],[-81,-86],[-21,-38],[-56,-9],[-40,-28],[-21,47],[-51,57],[-66,38],[-46,0],[-112,66],[11,-95],[-26,-47],[-61,38],[-76,0],[-51,28],[-26,57],[-112,85],[-35,0],[-51,76],[51,0],[-10,105],[15,28],[-117,133],[-5,47],[-71,29],[-62,94],[-56,29],[-101,-10],[-41,105],[-51,-38],[-56,28],[-102,0],[-46,-47],[-50,9],[-26,-66],[-132,-10],[-87,57],[-61,19],[10,114],[-106,9],[-51,-28],[-67,47],[-40,218],[25,57],[-46,105],[-96,0],[-56,18],[-97,10],[0,95],[-30,95],[-77,94],[10,95]],[[21685,4692],[0,95],[31,66],[5,76],[-46,85],[-10,95],[-46,85],[-41,-37],[-10,-67],[-51,29],[16,75],[86,67],[-30,114],[10,75],[61,-9],[20,-38],[51,10],[0,47],[46,0],[25,28],[-20,48],[-46,-48],[-46,0],[6,95],[-51,114],[5,66],[-61,-38],[-51,10],[-36,104],[-51,10],[-56,-76],[-35,28],[51,48],[0,75],[-31,57],[-66,86],[5,37],[46,38],[-10,38],[-72,19],[21,-76],[-36,0],[-5,67],[-41,0],[-35,-48],[-31,86],[26,47],[-6,85],[21,76],[-15,67],[25,47],[10,66],[-20,29],[-77,-10],[-76,95],[-5,85],[-46,67],[-15,218],[-26,47],[-61,29],[-10,85],[36,95],[-41,38],[-20,123],[-51,66],[-15,171],[30,47],[-51,57],[-112,-19],[21,-95],[-61,0],[-46,38],[-26,48],[-45,28],[-16,66],[-122,0],[-20,95],[25,48],[97,19],[41,47],[15,104],[0,218],[46,114],[0,38],[46,38],[-16,47],[-96,142],[0,95],[-56,48],[-26,56],[26,86],[-6,57],[-76,9],[-46,-19],[-152,-19],[-102,0],[-61,19]],[[20001,9166],[-10,85],[35,76],[-15,38],[56,114],[-5,123],[10,266],[41,94],[81,10],[10,-19],[97,19],[81,0],[51,-19],[56,-47],[123,-10],[96,-76],[46,-76],[92,-47],[127,0],[112,9],[112,57],[10,38],[66,67],[51,113],[36,38],[25,76],[36,29],[76,9],[36,190],[-5,94],[76,-9],[61,-114],[31,29],[-62,94],[-40,19],[-66,67],[20,66],[10,228],[-51,9],[-25,38],[5,85],[-82,76],[21,38],[147,-9],[31,56],[20,105],[0,151],[-61,67],[66,0],[56,95],[148,-10],[20,28],[107,10],[92,66],[163,10],[35,47],[87,-9],[91,-76],[87,19],[15,47],[117,10],[87,19],[152,0],[72,47],[20,38],[56,19],[127,-19],[56,-38],[87,57],[56,0],[66,38],[107,-10],[86,-19],[56,57],[31,57],[30,0],[72,-66],[76,0],[41,-19],[101,0],[26,-19]],[[24052,11792],[-36,-38],[-25,-66],[0,-67],[20,-47],[5,-95],[-25,-66],[40,-76],[-45,-38],[-72,-10],[-50,19],[-112,-47],[-56,0],[-56,47],[-173,-9],[15,-95],[0,-85],[20,-38],[-10,-114],[66,-114],[82,-85],[117,-66],[61,-10],[132,-151],[46,-10],[51,-57],[137,0],[46,-66],[36,0],[56,-57],[66,-19],[15,-57],[66,-9],[36,38],[56,-38],[56,9],[30,-142],[-25,-104],[-41,-38],[-15,-85],[30,-67],[153,-19],[239,0],[36,76],[0,104],[41,0],[35,38],[112,29],[92,-67],[81,0],[41,38],[76,10],[36,-38],[5,-67],[148,0],[20,-9],[-15,-256],[20,-95],[112,10],[112,38],[46,-76],[107,-95],[40,-76],[41,0],[112,-95],[31,-9],[188,9],[132,48],[117,-10],[10,-19],[-40,-75],[-5,-105],[-72,-123],[82,-19],[0,-66],[76,0],[10,-57],[72,-19],[50,66],[46,-9],[36,38],[102,28],[51,-9],[81,28],[56,0],[5,-66],[-20,-86],[15,-37],[-10,-105],[81,-47],[15,-38],[-10,-114],[72,38],[71,0],[35,-38],[36,38],[97,0],[15,-57],[-10,-47],[15,-76],[71,-114]],[[27787,8237],[-20,-38],[56,-19],[76,-57],[77,-28],[117,0],[20,-114],[-41,-47],[-162,-29],[-62,-56],[-66,-86],[16,-47],[61,-29],[-5,-123],[-62,-123],[31,-95]],[[19502,11185],[-15,-19],[-92,-9],[-35,123],[30,66],[-25,95],[45,29],[36,-76],[5,-180],[51,-29]],[[33950,7507],[-81,0],[-71,-19],[-82,-85],[-30,-104],[-112,38],[-148,28],[-183,0],[-168,-28],[-81,-29],[-82,-47],[-127,-123],[-36,-67],[-56,-47],[46,-57],[-56,-142],[10,-95],[41,-47],[82,9],[-41,-95],[-61,-19],[-56,-113],[30,-190],[-107,-28],[-173,9],[-91,-19],[-66,-76],[-77,-38],[-25,38],[-20,105],[-118,38],[-91,0],[-82,47],[-66,66],[-66,10],[-15,28],[-153,0],[-5,48],[-36,19],[-66,0],[-66,-19],[-30,-38],[-72,0],[-10,28],[-81,-9],[-21,28],[-132,10],[-56,28],[-127,9],[-36,48],[-147,-10],[-51,38],[-97,10],[-66,-19],[-66,9],[-77,-76],[-51,-94],[0,-38],[41,-19],[-46,-86],[-66,-56],[-20,-86],[41,-94],[71,-29],[91,-9],[62,-133],[-11,-85],[-51,-38],[-66,-133],[-35,-47],[-51,-19],[15,75],[0,152],[20,57],[16,114],[-173,199],[-41,57],[-122,113],[-56,67],[-133,114],[-20,28],[-147,133],[-240,189],[-122,76],[-51,47],[-168,95],[-147,105],[-138,66],[-96,57],[-112,9],[-72,38],[-101,0],[-82,48],[-127,37],[-117,10],[-71,-38],[0,-47],[-46,-38],[-51,-10]],[[27787,8237],[26,10],[30,104],[67,47],[40,0],[46,38],[41,-9],[66,57],[137,-10],[82,19],[10,-28],[71,9],[56,57],[51,19],[92,-38],[40,66],[92,0],[31,29],[193,0],[15,47],[77,57],[86,10],[76,76],[77,-19],[10,28],[81,-9],[5,-57],[61,19],[21,75],[-46,95],[-10,76],[25,19],[26,95],[35,28],[0,48],[-40,38],[25,75],[41,29],[0,85],[20,38],[-35,123],[40,29],[21,-38],[96,85],[41,-76],[76,86],[-25,47],[20,57],[56,0],[16,-57],[147,9],[61,-151],[56,-104],[15,-57],[36,19],[66,-95],[41,57],[15,113],[82,19],[66,-85],[76,66],[71,38],[41,0],[66,38],[77,19],[0,38],[-41,57],[-92,9],[-46,38],[0,76],[31,67],[31,9],[40,104],[61,38],[31,48],[56,38],[-10,94],[-61,48],[-26,114],[26,37],[40,0],[51,48]],[[30856,10465],[112,0],[102,-38],[61,-57],[132,28],[87,-132],[35,-19],[62,-104],[30,0],[36,-48],[15,-161],[56,-38],[-5,-47],[71,-124],[71,-66],[102,-66],[36,-76],[0,-76],[40,-38],[62,-104],[25,38],[51,19],[76,0],[31,76],[40,56],[62,10],[20,38],[102,0],[30,28],[82,0],[56,86],[25,0],[51,56],[46,-18]],[[32658,9688],[10,-95],[46,-19],[30,-57],[41,-10],[117,-218],[61,-94],[66,-48],[31,-76],[61,10],[30,66],[62,38],[157,-47],[-35,-76],[5,-123],[-36,-57],[-81,9],[-36,-66],[15,-104],[-30,-86],[5,-75],[122,-29],[56,29],[46,0],[15,-143],[51,-75],[-61,-29],[-10,-171],[25,-132],[5,-76],[56,-76],[-10,-57],[20,-47],[82,38],[56,76],[56,0],[0,-48],[35,-66],[-20,-152],[102,38],[198,0],[-10,-76],[-41,-57]],[[40063,33120],[-97,-10],[-81,-28],[-123,-86],[-56,-9],[-137,0],[-122,66],[-82,76],[-91,114],[-61,19],[-61,-10],[-138,-76],[-30,0],[-143,-123],[-35,-66],[20,-57],[-36,-19],[-5,-57],[-56,0],[-40,-28],[-102,-29],[-51,-38],[-26,-47],[-56,19],[-101,-38],[-41,-38],[-51,-85],[-56,0],[-61,-29],[-25,-38],[-61,-28],[-67,38]],[[37991,32513],[-239,104],[-137,76],[-362,0],[-50,-28],[-107,9]],[[37096,32674],[-112,10],[-16,28],[-56,9],[-5,38],[-76,38],[46,57],[81,161],[10,67],[56,28],[128,-114],[20,29],[76,9],[56,-28],[112,38],[0,38],[61,19],[51,-19],[10,94],[82,-18],[30,37],[56,19],[97,-9],[-10,76],[-56,47],[-127,0],[-36,29],[-51,0],[0,66],[-35,66],[152,67],[46,66],[-5,57],[-36,38],[10,104],[26,38],[-26,76],[26,28],[20,86],[-15,37],[-61,19],[0,95],[-31,67],[16,113],[-26,67],[46,38],[-10,56],[91,57],[-10,38],[21,57],[-97,0],[-46,38],[46,28],[-5,48],[46,38],[0,66],[45,76],[-30,38],[20,180],[16,57],[-16,66],[-35,10],[25,161],[26,47],[76,76],[51,0],[30,95],[56,28],[-5,38],[117,0],[56,38],[158,0],[56,-9],[97,28],[76,0],[61,29],[87,18],[15,-47],[0,-95],[56,0],[56,-47],[122,9],[20,95],[-40,29],[-5,56],[56,76],[61,0],[30,29],[56,104],[-51,85],[143,57],[61,0],[117,152],[122,19],[15,38],[173,-38],[16,-38],[122,85],[56,57],[101,47],[-5,29],[61,47],[-5,67],[77,76],[66,47],[-26,171],[0,56],[46,19],[26,67],[122,9],[51,-28],[30,-57],[10,-104],[72,0],[20,-38],[148,0],[61,-38],[40,-76],[67,28],[188,0],[76,-19],[36,-37],[41,47],[0,38],[45,133]],[[41182,36997],[107,-19],[117,-48],[26,-38],[45,-9],[41,-38],[97,-57],[122,-28],[112,-114],[-15,-67],[-117,-56],[-199,0],[-15,-19],[-107,-29],[-92,-151],[-30,0],[-56,-124],[-31,-123],[-10,-85],[0,-199],[10,-105],[61,-227],[26,-57],[46,-180],[61,-180],[30,-57],[46,-142],[5,-57],[31,-66],[158,-294],[50,-67],[51,-94],[56,-67],[56,-104],[61,-85],[46,-86],[97,-132],[20,-48],[92,-114],[41,-66],[122,-161],[122,-209],[25,-19],[87,-123],[46,-85],[35,-28],[87,-124],[107,-199],[15,-95],[76,-255],[0,-86],[-46,-85],[-71,-66],[-71,-95],[-20,38],[66,113],[-61,57],[-67,0],[-35,67],[-61,66],[-61,0],[-87,28],[-71,57],[-92,48],[-117,19],[-219,0],[-101,19],[-102,0],[-102,38],[-51,37],[-163,171],[-137,180],[-92,95],[-76,142],[-61,133],[-178,114],[-117,0],[-168,-67],[-87,-66],[-173,-66],[-51,0],[-20,75],[-81,-19],[-87,-38],[-20,-56]],[[46384,9109],[-204,48],[-87,0],[-96,-19],[-143,-67],[-35,-47],[-128,-95],[-71,-76],[-122,-170],[-46,-29],[-86,-19],[-66,-28],[-16,-29],[-76,-9],[-97,-57],[-86,0],[-77,-28],[-86,0],[-76,-19],[-56,-38],[-46,-10],[-183,-66],[-102,-9],[-36,-19],[-122,-10],[-81,-57],[-123,-47],[-56,-57],[-50,-19],[-82,-142],[-41,-86],[-35,-9],[-77,-57],[-81,-142],[-56,-47],[-76,-152],[-153,-10],[-117,29],[-26,47],[-56,38],[-50,0],[-112,85],[-67,-28],[-86,19],[-66,66],[-188,152],[-87,-19],[-87,0],[-56,38],[-188,66],[-122,67],[-81,9],[-107,66],[-56,0],[0,-85],[-102,19],[0,95],[-41,38],[-96,19],[-143,47],[-66,0],[-51,19],[-117,10]],[[41162,8285],[0,47],[-97,171],[0,47],[-30,57],[25,76],[51,47],[61,-66],[122,0],[0,38],[36,47],[20,85],[41,-9],[5,-76],[76,-9],[-5,47],[97,19],[15,114],[0,95],[16,85],[35,76],[0,104],[71,9],[-15,209],[-35,0],[0,66],[40,48],[61,-19],[56,104],[66,9],[21,-75],[30,-29],[173,0],[26,67],[5,113],[-10,76],[0,161],[46,10],[40,47],[-5,114],[77,47],[-6,38],[-96,-9],[-26,95],[0,47],[-66,19],[-20,104],[51,76],[51,0],[91,66],[61,10],[15,28],[56,0],[6,57],[-41,19],[-10,123],[10,76]],[[42353,10986],[107,19]],[[42460,11005],[76,-19],[76,0],[117,19],[62,38],[106,0],[46,-38],[36,0],[-26,-95],[5,-76],[51,-56],[199,9],[5,19],[122,38],[107,-85],[137,0],[-20,38],[132,0],[117,37],[21,-28],[-26,-57],[51,-66],[117,0],[-40,-67],[15,-18],[-10,-86],[25,-19],[36,48],[127,-19],[76,-57],[-25,-76],[76,-66],[61,0],[46,-29],[122,-47],[41,-48],[-26,-132],[46,-38],[92,19],[51,-29],[15,-38],[142,-19],[21,-66],[41,-47],[71,-10],[10,-28],[87,9],[20,38],[71,19],[132,57],[31,-57],[46,29],[91,19],[61,-124],[51,-28],[61,-10],[16,-28],[61,38],[127,9],[76,-47],[107,-38],[0,-95],[31,-38],[81,-151],[82,-105],[56,0],[35,38],[92,10],[15,-95],[41,-66],[-71,-86]],[[45529,14114],[-209,-19],[-173,0],[-5,10],[-250,0],[-76,9],[-92,-28],[-86,0],[-112,-38],[-41,-38],[-56,-104],[-35,-161],[-31,-48],[-158,-57],[-285,0],[-71,29],[-66,142],[-76,19],[-87,-104],[-76,0],[-46,47],[-107,76],[-81,85]],[[43310,13934],[-67,66],[21,57],[76,29],[-15,57],[76,9],[-20,85],[20,57],[41,38],[15,-95],[46,0],[10,124],[158,28],[5,29],[92,19],[76,0],[-25,94],[-46,29],[-26,95],[-112,-10],[-15,76],[-76,123],[-10,104],[-77,10],[36,76],[-46,76],[-86,56],[-16,29],[-61,9],[-61,-38],[-112,0],[-56,-28],[-35,9],[-153,0],[-51,-56],[-71,-29],[-72,10],[6,-38],[-46,-29],[-112,0],[-107,86],[-87,104],[16,47],[-16,57],[-142,19],[-26,28],[16,133],[-16,171]],[[42159,15650],[-20,76],[-15,123],[25,142],[5,190],[41,-10],[31,29],[5,85],[35,0],[11,57],[40,85],[56,38],[97,0],[41,66],[203,0],[26,38],[56,10],[45,57],[112,9],[46,152],[36,-10],[-31,105],[5,161],[46,66],[0,76],[51,38],[61,9],[0,38],[-46,67],[-40,28],[25,95],[-112,-10],[-102,-57],[-66,0],[-10,171],[-5,218],[-15,29],[0,132],[-21,76],[-46,57],[11,66],[-46,48],[-5,57],[-87,-29],[-30,57],[10,123],[-31,38]],[[44195,18958],[71,0],[77,28],[81,-9],[10,28],[77,29],[66,-10],[30,-47],[-5,-57],[61,-57],[46,48],[82,-19],[96,19],[21,75],[35,19],[77,-9],[20,38],[107,9],[46,48],[56,-29],[56,38],[5,38],[86,-19],[66,19],[77,-19],[46,-28],[66,-10],[40,-57],[-35,-85],[61,-123],[-87,-10],[0,-94],[61,-10],[-5,-66],[56,0],[61,38],[36,-10],[5,-95],[-20,-85],[61,-57],[5,-47],[56,-57],[-20,-57],[76,-19],[-10,-114],[61,-19],[5,-38],[137,-9],[16,57],[81,-19],[36,-38],[50,-10],[51,67],[41,9],[31,-28],[50,19],[6,38],[112,0],[71,28],[10,-38],[66,-9],[107,57],[5,-48],[36,-19],[0,-66],[157,9],[31,-66],[61,-9],[26,28],[101,19],[46,-85],[61,-10],[51,-38],[82,48],[147,9],[153,-19],[40,29],[92,0],[56,-19],[107,0]],[[48175,17963],[5,-29],[76,0],[31,19],[61,-9],[153,0],[30,-19],[-5,-76],[-66,-38],[-87,-161],[0,-95],[-30,-85],[81,-76],[92,-57],[20,-38],[-15,-95],[-137,-208],[-56,-57],[-51,-85],[-158,-143],[-46,-18],[-224,-143],[-56,-57],[-117,-56],[-183,-10],[-117,-28],[-97,0],[-25,57],[0,66],[-36,95],[-46,66],[-51,-114],[0,-76],[-137,-9],[-46,-66],[-280,0],[-45,-76],[-153,-123],[51,-86],[91,76],[41,19],[148,0],[51,-28],[45,0],[82,-95],[5,-123],[15,-48],[26,-170],[-31,-114],[0,-48],[-25,-170],[-67,-104],[-56,-48],[-86,-95],[-132,-47],[-5,-47],[91,0],[77,19],[86,66],[66,28],[112,95],[36,47],[122,29],[132,66],[77,-9],[25,19],[51,-19],[20,-48],[-15,-66],[-76,-19],[-31,-47],[-56,0],[-61,-57],[-76,-29],[5,-85],[-92,-95],[5,-28],[-76,-66],[-31,-124],[-106,-76],[56,-19],[56,19],[20,-75],[-31,-48],[-142,-38],[-46,19],[-30,-104],[-123,0],[-66,-19],[71,-47],[107,19],[51,-57],[-51,-57],[-81,0],[-61,-19],[-31,66],[-35,19],[-66,-76],[10,-75],[-117,-38],[-112,-10],[-122,-28],[-107,9],[-21,29],[-66,-19],[-25,28],[-51,-9],[-31,47],[-66,0],[-56,19],[-102,76],[-45,-29],[-56,0],[0,-161]],[[33996,15726],[-71,-10],[-56,-57],[-10,-94],[-76,-38],[-67,0],[-35,-38],[-97,0],[-10,47],[-56,10],[-41,-19],[-25,85],[-61,123],[-26,104],[-30,-9],[0,-85],[30,-57],[-51,-86],[36,-113],[-117,-57],[-56,0],[-10,47],[-36,29],[-66,151],[-56,-19],[-56,-66],[41,-95],[56,-85],[-56,-19],[-72,57],[-76,0],[-127,123],[-51,-47],[-36,-57],[56,-171],[-107,10],[-66,38],[-56,66],[-71,-19],[-41,47],[-101,57],[-26,48],[-61,38],[-25,-48],[-173,-237],[-87,-142],[-46,-57],[-122,-218],[-117,57],[-36,-19],[-112,9],[-20,67],[-61,-67],[-92,-28],[-15,-95],[-30,19],[-92,-9],[-20,-86],[56,-9],[-26,-76],[0,-114],[61,-227],[-40,-38],[-82,-19],[-81,-66],[-5,-29],[-67,-19],[-50,-47],[40,-76],[31,-19],[61,10],[25,-48],[-25,-199],[36,-28],[-6,-86],[-30,-151]],[[31009,13470],[-92,-48],[0,57],[-46,29],[-10,37],[-76,19],[-76,-28],[-56,9],[-26,-28],[-61,-19],[-86,0],[-31,-47],[-51,-19],[-117,-10],[5,-38],[-76,-19],[-66,0],[-82,76],[-15,38],[-92,-9]],[[29024,14285],[20,123],[-15,57],[71,85],[31,57],[-87,0],[-66,76]],[[28978,14683],[31,95],[46,47],[66,19],[76,57],[15,180],[31,47],[-61,114],[15,48],[-15,56],[-56,19],[71,114],[-92,-9],[11,76],[76,0],[51,37],[-15,29],[-67,38],[21,104],[0,123],[-51,57],[-5,95],[-36,47],[61,29],[61,161],[-40,47],[-46,86],[35,132],[0,114],[-25,57],[25,47],[67,10],[-5,114],[50,28]],[[29273,16901],[41,85],[36,38],[46,-19],[25,48],[51,28],[25,67],[51,9],[26,-47],[51,19],[-31,56],[41,29],[132,0],[87,-19],[56,57],[20,85],[46,76],[25,-38],[66,-9],[16,47],[45,-10],[36,67],[81,9],[46,29],[-5,132],[-25,57],[-36,0],[-51,76],[5,190],[-35,47],[-102,19],[-15,190],[117,142],[-26,38],[-40,0],[-31,57],[36,47],[40,95],[61,0],[6,-67],[91,0],[46,-19],[0,-151],[46,-10],[127,10],[20,66],[5,76],[46,0],[36,28],[81,19],[46,29]],[[30734,18579],[-5,-67],[36,-37],[96,-38],[21,-105],[-21,-142],[66,0],[46,-76],[61,29],[51,0],[66,-29],[82,10],[71,142],[61,85],[117,10],[51,-48],[41,38],[76,19],[0,57],[-112,114],[46,47],[-20,161],[25,48],[66,38],[92,-48],[56,10],[66,-38],[10,-76],[-46,-28],[-61,-10],[-56,-189],[46,-19],[66,19],[46,66],[66,0],[31,-28],[127,0],[46,18],[61,-85],[61,10],[10,47],[41,0],[15,57],[107,85],[36,0],[45,76],[168,19],[16,-47],[81,-19],[46,47],[41,76],[101,-85],[97,-95],[46,-86],[61,-47],[61,-9],[20,56],[-5,86],[41,47],[-10,76],[-46,47],[-71,48],[-41,57],[-15,94],[-46,29],[20,38],[72,0],[40,47],[77,-57],[66,105],[46,47],[56,85],[35,0],[26,57],[81,48]],[[33584,19366],[46,-57],[35,-95],[67,-29],[40,38],[5,-218],[56,-19],[31,38],[41,0],[-16,-113],[26,-48],[46,0],[-21,-123],[26,-19],[107,-9],[15,-48],[112,48],[81,0],[36,-29],[-20,-57],[-41,0],[-61,-95],[0,-56],[-112,-95],[-21,-38],[21,-57]],[[34083,18285],[-15,-114],[35,-95],[46,-37],[102,-29],[66,-123],[-10,-29],[-102,-113],[-10,-95],[35,-29],[5,-104],[-50,-28],[-67,19],[-20,-86],[-81,-151],[-36,-19],[41,-133],[-5,-57],[-31,-66],[-5,-57],[15,-104],[31,-19],[-15,-86],[-41,-85],[-132,-95],[20,-57],[56,-85],[30,-133],[-5,-47],[36,-66],[0,-114],[-41,-28],[61,-124],[87,-113],[41,0],[40,-95],[-15,-38],[-97,0],[-25,66],[-31,10]],[[29630,30864],[-31,66],[-66,19],[-10,38],[-71,9],[-16,38],[26,67],[0,66],[-168,-10],[-41,48],[-10,57],[-41,47],[-132,29],[-76,47],[-6,57],[-66,-19],[-40,76]],[[28882,31499],[66,76],[-5,132],[35,48],[26,123],[-61,76],[15,76],[61,75],[41,-9],[25,123],[102,10],[51,-10],[46,29],[81,-10],[0,-57],[56,-47],[20,76],[36,38],[81,28],[46,-47],[36,-86],[86,48],[72,85],[101,85],[41,48],[168,-76],[56,38],[66,0],[21,57],[5,104],[51,57],[61,-95],[0,-85],[51,-19],[76,19],[10,57],[66,-10],[71,10],[-10,94],[26,19],[20,95],[-36,66],[72,0],[0,-47],[91,-28],[102,0],[66,94],[41,-66],[-20,-57],[10,-95],[56,-104],[10,-76],[81,-47],[36,19],[-20,66],[-11,114],[-25,57],[46,95],[25,0],[46,66],[87,57],[56,-10],[45,-94],[87,-86],[36,10],[0,-76],[101,9],[5,67],[-15,57],[46,85],[41,142]],[[31737,32892],[35,19],[56,-19],[0,-47],[46,-48],[102,19],[51,-19],[35,57],[31,0],[51,48],[56,0],[-21,-67],[11,-47],[76,-67],[10,-37],[-25,-57],[0,-86],[56,-47],[-5,-66],[35,-105],[56,0],[61,-66],[102,-190],[56,-56],[87,-48],[30,-104],[66,-47],[21,-38],[61,0],[15,-114]],[[38536,10522],[-51,-10],[-81,-47],[-72,-133],[-152,-28],[-21,66],[-61,-19],[-30,-57],[-5,-104],[-82,-85],[-71,-95],[-66,-29],[-16,-38],[6,-85],[20,-28],[-71,-105],[0,-37],[-46,-86],[5,-95],[-66,-94],[15,-38],[-15,-48],[-46,-28],[56,-114],[20,-66],[-76,-38],[-51,-123],[0,-48],[-30,-85],[45,-47],[41,-114],[56,-67],[-30,-66],[-26,-152],[-41,-94],[0,-114],[31,-161],[30,-67],[11,-85]],[[37666,7858],[-77,-9],[-112,47],[-142,19],[-87,0],[51,-57],[-41,-38],[-30,57],[-5,66],[-46,0],[-209,-75],[-76,-10],[-51,66],[-117,-28],[-66,-76],[-20,0],[-61,76],[-41,28],[-107,19],[-36,29],[-101,161],[-92,47],[-87,10],[-61,66],[-91,48],[-82,28],[-101,142],[-56,19],[-41,-47],[81,-152],[97,-114],[-5,-47],[-76,-19],[-36,-28],[-61,-105],[-21,-57],[-162,0],[10,-28],[-112,-76],[-138,-66],[-137,-29],[-36,-28],[-61,-10],[-132,-104],[-71,-19],[-21,-38],[-66,-57],[-25,-47],[-36,-9],[-51,-86],[31,-85],[-41,0],[-92,66],[-35,48],[-224,76],[-76,37],[-112,29],[-123,9]],[[32658,9688],[35,-57],[107,123],[66,19],[138,0],[56,47],[5,-180],[102,180],[86,38],[31,-85],[66,-114],[36,47],[40,0],[148,-75],[76,-19],[0,-29],[107,-9],[41,9],[71,-57],[56,-94],[61,-67],[76,-47],[67,-10],[45,29],[56,85],[51,-28],[41,57],[25,85],[36,66],[-51,0],[-51,86],[-10,85],[31,38],[112,28],[0,38],[-36,38],[25,57],[-86,76],[-71,9],[-16,67],[36,237],[0,104],[-31,47],[-5,86],[41,75],[-20,57],[25,57],[-81,76],[-102,9],[20,133],[26,95],[-87,208],[16,114],[-62,38],[-50,57],[10,114],[132,19],[41,28],[102,-28],[10,57],[46,94],[10,57],[96,104],[143,10],[122,-85],[46,28],[25,57],[5,66],[-50,-9],[15,76],[5,142],[66,0],[-20,123],[0,95],[-31,38],[5,104],[26,29],[-5,56],[45,0],[97,-75]],[[38429,12636],[36,-38],[61,-114],[40,-19],[41,-95],[15,-133],[26,-94],[0,-199],[-26,-19],[-30,-162],[-41,0],[-117,95],[-81,10],[-51,-29],[-15,48],[-118,-114],[-10,-57],[-51,-95],[-35,-38],[35,-94],[72,-124],[0,-85],[-36,-227],[71,-10],[61,66],[61,-47],[21,-95],[46,-28],[0,-38],[56,-114],[61,-19],[51,-38],[-6,-57],[-56,0],[21,-57],[-21,-47],[26,-47]],[[42159,15650],[-142,19],[-102,-10],[-102,67],[-147,9],[-21,-19],[-91,0],[-46,-28],[-92,19],[0,-48],[-86,-123],[-102,0],[-25,-47],[-82,-38],[-25,9],[-97,-38],[-15,-85],[-102,-28],[-5,-29],[-61,-19],[-87,0],[-61,38],[-157,-123],[-56,-10],[-21,-38],[-102,-47],[-112,-19],[-30,29],[-102,28],[-51,0],[-20,-47],[-36,-19],[-56,38],[-91,94],[-56,29],[0,-86],[15,-170],[-20,-10]],[[36017,6152],[-97,-38],[-66,0],[-82,133],[-50,38],[-41,56],[-97,67],[-163,161],[-51,19],[-35,38],[-82,19],[-132,76],[-25,47],[-56,38],[-41,66],[-76,48],[-123,0],[-101,-19],[-46,-29],[-77,0],[-25,19],[0,76],[97,28],[76,152],[0,57],[51,47],[188,0],[92,38],[71,67],[20,0],[87,66],[86,-9],[51,37],[184,76],[45,10],[82,133],[51,18],[61,86],[81,-10],[10,-38],[67,38],[50,0],[56,-47],[31,-57],[36,-9],[81,-76],[107,-67],[51,-9],[168,0],[96,19],[51,-10],[51,-75],[82,-76],[25,-67],[51,-47],[20,-76],[72,-47],[45,-57],[-71,-85],[-61,-10],[-30,-76],[-92,0],[-122,-47],[-77,-67],[-61,-104],[-25,-161],[10,-57],[-15,-76],[-36,-75],[-91,-38],[-51,0],[-46,-38],[-71,-19],[-92,-57],[-76,0]],[[42460,11005],[5,76],[-21,114],[0,76],[26,75],[-31,48],[11,38],[-56,94],[-6,114],[31,0],[10,123],[51,57],[20,67],[-25,151],[-31,86],[11,113],[-31,67]],[[42424,12304],[41,9],[35,-38],[123,19],[30,48],[-25,66],[5,95],[61,47],[30,48],[51,0],[36,47],[-20,95],[30,19],[61,-10],[46,95],[-5,57],[41,114],[-26,142],[71,0],[-61,170],[21,133],[61,29],[25,104],[66,19],[36,57],[56,28],[-5,38],[35,29],[-5,66],[36,85],[36,19]],[[45529,14114],[0,-132],[56,-10],[213,-114],[36,-94],[-31,-95],[41,-38],[97,-29],[10,-19],[142,-9],[102,-38],[71,-66],[123,-19],[66,-29],[137,-19],[66,-38],[163,-161],[26,0],[61,-170],[56,-86],[-21,-66],[21,-38],[56,-9],[101,19],[118,85],[157,9],[26,29],[76,19],[82,0],[35,19],[76,-10],[184,0],[122,48],[97,0],[117,19],[122,-38],[46,19],[86,0],[56,47],[66,-19],[107,0],[31,38],[162,0],[72,66],[193,-19],[41,29],[35,-48],[46,-19],[31,-75],[-5,-105],[-26,-85],[0,-47],[-30,-86],[10,-38],[-46,-56],[-30,-76],[-56,9],[-107,-19],[-41,-142],[5,-199],[10,-76],[66,-227],[26,-133],[0,-341],[5,-171],[-31,-104],[-30,-57],[-36,-19],[-25,-85],[-92,-67],[-76,-9],[-21,-48],[-122,-28],[-15,-85],[-86,-19],[-11,-29],[-66,-19],[-117,-57],[-127,0],[-97,-37],[-30,-38],[0,-76],[-56,0],[-26,-48],[-66,-9],[-25,-29],[-122,10],[-56,-19],[-67,0],[-122,-28],[-137,-57],[-77,-48],[-91,-85],[-183,-237],[-77,-142],[-25,-114],[0,-133],[20,-180],[26,-85],[5,-114],[-10,-123],[-46,-38],[-194,10],[-81,28],[-143,28],[-50,0],[-117,38]],[[28882,31499],[-87,-38],[-107,-19],[-15,76],[-51,75],[-61,-94],[-46,-10],[-56,-57],[-20,-66],[5,-85],[-26,-105],[-91,10],[-21,76],[-81,-10],[-41,76],[-51,19],[-40,76],[40,76],[-20,19],[-92,-10],[-86,38],[-61,104],[-41,48],[-97,38],[-50,0],[-16,-48],[77,-151],[-5,-48],[-67,-28],[-122,114],[-30,0],[-77,85],[-71,0],[-30,47],[30,57],[-10,123],[46,38],[46,0],[5,123],[-61,10],[20,152],[71,66],[82,142],[25,10],[56,-48],[66,76],[97,199],[41,38],[-36,76],[15,95],[-40,28],[25,57],[-76,142],[-178,-28],[-41,-95],[-66,-19],[-56,85],[-138,-66]],[[27268,32968],[-10,47],[-107,0],[31,67],[-26,132],[36,19],[5,162],[20,66],[21,227],[-41,19],[15,190],[21,152],[25,303],[41,171],[5,132],[-31,10],[-25,256],[-20,123],[0,123],[66,19],[51,47],[96,0],[46,29],[46,85],[36,19],[111,10],[0,113],[-30,38],[56,38],[137,152],[61,142],[31,104],[71,133],[-41,19],[26,76],[76,66],[56,0],[16,38],[-77,47]],[[28062,36342],[102,209],[10,114],[-15,66],[-5,104],[-21,57],[-81,142],[-5,57],[117,-38],[-5,114],[168,-28],[142,66],[-5,66],[56,57],[46,10],[127,-95],[82,9],[86,-28],[-10,-133],[56,-28],[239,-29],[-5,48],[31,76],[56,28],[56,57],[45,133],[67,-57],[239,0],[102,28],[45,29],[26,47],[46,19],[51,57],[106,28],[87,67],[41,57],[61,37],[0,-94]],[[30200,37594],[-66,-114],[-36,-104],[-87,-124],[-117,-142],[-30,-19],[-26,-104],[-45,10],[-16,-38],[-51,-29],[-25,-76],[-5,-161],[86,-38],[5,-47],[41,-29],[-5,-37],[51,-19],[10,-67],[82,0],[0,-28],[81,-19],[56,-38],[46,-76],[30,-9],[5,-124],[-35,-85],[5,-47],[51,-48],[66,19],[122,-9],[143,19],[35,38],[51,9],[61,-76],[5,-142],[16,-38],[61,-9],[25,-86],[-66,0],[5,-113],[51,-48],[71,38],[41,-19],[107,-95],[30,-56],[61,0],[239,56],[-5,-94],[56,-48],[112,19],[51,-123],[10,-142],[72,9],[25,-57],[66,-38],[87,10],[41,-29],[76,-132],[-21,-38],[46,-104],[82,-95],[25,-48],[26,-104],[71,-38],[76,-76]],[[32225,34342],[5,-104],[-10,-76],[-193,-94],[-26,-38],[-102,-67],[-66,-57],[-15,-75],[20,-19],[-56,-76],[31,-57],[0,-180],[-51,-57],[-20,-85],[-97,-38],[-41,-76],[51,-123],[5,-95],[72,-38],[5,-95]],[[38974,24920],[-97,0],[-71,-95],[-97,-9],[-10,-38],[-168,-28],[-41,9],[-20,48],[-66,-29],[-56,0],[-46,-28],[-26,-57],[-35,-19],[-36,-114],[102,-57],[25,-104],[46,-19],[20,-218],[-40,-19],[-51,-123],[-46,-67],[5,-47],[36,-9],[-41,-76],[0,-124],[-41,-28],[-10,-123],[168,-10],[56,-104],[56,-57],[0,-57],[56,-66],[61,-123],[-15,-86],[66,-28],[36,-85],[35,-10]],[[38729,22920],[-76,-19],[-143,-95],[-101,57],[-51,-28],[-31,19],[-117,-10],[-10,19],[-87,0],[-45,19],[-46,57],[-51,0],[-20,-85],[-46,-19],[10,-76],[-15,-123],[-61,0],[71,-133],[0,-47],[-41,-10],[-46,-85],[-35,28],[-46,-9],[-51,19],[-76,57],[-41,57],[-76,-10],[-41,-47],[-107,-10],[-153,-95],[-45,-56],[-31,-76],[46,-10],[0,-57],[-56,-56],[-26,-67],[-45,19],[-41,48],[-5,37],[-76,19],[-31,-19],[-10,-56],[-117,-48],[-87,-85],[-30,-104],[-112,0],[-66,-57],[-51,0],[-66,28]],[[36348,21811],[-36,85],[-153,294],[-15,0],[-127,199],[-189,266],[-142,95],[-87,66],[-147,85],[-117,86],[-46,47],[-107,57],[-81,57],[-250,123],[-61,38],[-81,170],[-36,0],[-56,38],[-5,143],[15,28],[-66,66],[15,124],[82,47],[25,95],[-51,142],[-56,47],[-15,38],[-56,0],[-51,76]],[[34454,24323],[0,76],[-40,38]],[[36027,25925],[-31,-123],[5,-85],[31,-48],[-36,-57],[16,-123],[51,-28],[-11,-86],[31,-47],[56,19],[51,-38],[20,-76],[51,-9],[20,28],[107,-38],[31,57],[117,76],[158,-10],[50,67],[6,57],[152,9],[36,28],[61,-18],[-15,-38],[142,-29],[97,67],[198,-10],[36,76],[-15,85],[30,48],[56,-10],[31,57],[66,38],[10,57],[41,47],[-51,85],[46,19],[71,0],[219,181],[66,47],[-25,66],[35,67],[66,57],[41,104],[15,104],[51,76],[51,47],[66,95],[87,0]],[[38414,26816],[0,-152],[117,-66],[0,-28],[-56,-171],[10,-38],[-56,-171],[81,-28],[-35,-123],[15,-19],[102,-10],[30,-123],[41,-76],[61,-76],[36,-66],[20,-95],[107,-180],[-5,-161],[25,-38],[11,-95],[56,-180]],[[43320,25745],[-71,-47],[-11,-29],[36,-66],[10,-67],[97,-19],[168,-19],[-46,-170],[-46,-57],[-41,-114],[118,-95],[-102,-75],[-21,0],[-106,-76],[-174,-171],[-76,19]],[[39803,23916],[-5,0]],[[39798,23916],[-46,47],[-86,161],[66,-38],[71,0],[0,38],[87,28],[101,19],[82,114],[25,0],[26,123],[-26,76],[-51,0],[-35,29],[-61,-10],[-46,19],[-143,10],[-40,66],[-153,28],[15,124],[-86,66],[-46,0],[-25,57],[-51,19],[-117,-29],[-16,86],[-127,-29],[-142,0]],[[38414,26816],[5,57],[-61,85],[-26,67],[-40,47],[40,38],[26,95],[61,19],[91,57],[11,94],[35,114],[102,0],[61,85],[87,29],[0,66],[-56,29],[0,56],[-72,57],[-25,48],[36,38],[25,94],[0,57],[-66,38],[0,38],[76,76],[-30,57],[-5,114],[30,104],[-10,66],[-112,19],[-46,19],[-66,0],[10,57],[41,0],[107,190],[86,-19],[82,104],[102,-19],[30,104],[20,29],[-5,66],[-101,152],[-128,0],[-101,-48],[0,-76],[-87,0],[-46,19],[-71,0],[-10,48],[71,189],[-41,29],[-25,66],[46,48],[91,38],[5,94],[-25,38],[0,133],[-51,28],[36,86],[-36,47],[-5,95],[-41,76],[-25,-19],[-61,9],[0,48],[35,66],[41,9],[-56,67],[51,38],[0,66],[-41,38],[-61,114],[-66,57],[-36,56],[11,48],[-21,57],[61,38],[46,94],[-127,48],[-36,0],[-193,47],[-10,-38],[-209,-9],[-15,47],[91,76],[-147,199],[-21,38]],[[37650,31347],[16,66],[-87,29],[15,123],[123,47],[117,-9],[25,47],[-46,86],[5,66],[31,85],[-31,29],[16,142],[50,133],[0,76],[107,246]],[[40063,33120],[5,-76],[137,9],[36,19],[102,0],[132,38],[66,38],[137,38],[102,9],[21,-28],[66,-28],[46,-86],[10,-47],[91,-190],[61,-57],[67,-123],[40,-19],[21,-57],[40,-47],[194,-152],[15,-28],[117,-104],[209,-143],[102,-19],[86,-37],[102,-67],[61,-9],[46,-86],[0,-28],[112,-85],[76,-133],[153,-114],[137,10],[117,-143],[77,-18],[132,-86],[30,-66],[56,-76],[87,-161],[61,-161],[107,-209],[41,-57],[15,-94],[66,-237],[66,-162],[26,-94],[35,-67],[71,-227],[148,-266],[61,-227],[41,-123],[5,-133],[41,-114],[25,-123],[5,-76],[-10,-199],[-20,-57],[0,-369],[-67,-171],[-25,-123],[0,-76],[-51,-85],[-51,-143],[5,-57],[-25,-47],[-163,-57],[-15,-38],[-77,-9],[-40,-86],[-87,-75],[-66,0],[-66,57],[-15,-76],[-36,0],[-66,-76],[-112,-95],[-56,-66],[-51,-86],[-163,-151],[10,-38],[82,38],[51,-10],[5,-38],[-36,-75],[-66,-67],[25,-28],[56,76],[72,132],[101,105],[67,47],[71,19],[-21,47],[26,48],[41,19],[56,-10],[61,-95],[-16,-47],[-81,-19],[-66,-38],[-61,-76],[-148,-85],[-66,-47],[-31,-57],[46,-19],[41,57],[71,-38],[41,57],[117,66],[51,0],[20,-47],[-46,-48],[-56,0],[-66,-66],[21,-19],[96,-29],[-10,-66],[66,-104],[31,-95],[0,-104],[20,-67],[36,-47]],[[26937,29480],[-91,104],[-71,95],[-143,123],[-127,133]],[[26505,29935],[66,94],[-132,181],[-163,682],[183,-85],[102,-38],[142,-67],[138,0],[112,-9],[81,161],[66,10],[5,-48],[92,48],[-25,47],[91,28],[31,-85],[76,-9],[56,19],[5,56],[-30,57],[-117,152],[-112,199],[0,38],[-36,85],[-137,124],[-133,56],[87,29],[25,47],[41,190],[81,208],[61,124],[46,151],[36,171],[-15,152],[15,85],[41,38],[-72,104],[56,38]],[[50720,22987],[-72,-19],[-71,56],[-46,67],[-61,0],[-10,38],[-51,-10],[-56,19],[-41,-76],[-96,-28],[-5,-85],[-41,-19],[10,-48],[76,-38],[-5,-66],[51,-66],[87,28],[10,-47],[36,-19],[-11,-57],[-45,-114],[-36,-9],[-25,-67],[-62,38],[-50,-76],[-61,-9],[-82,38],[-10,47],[-76,57],[-97,-28],[-31,-124],[-30,-19],[-82,29],[-30,47],[-46,0],[-10,-47],[-76,0],[-41,19],[-71,66],[-46,-19],[-56,-85],[-77,-38],[-35,10],[-26,75],[-76,48],[-36,-86],[107,-47],[-5,-85],[-122,-10],[-76,-57],[0,-38],[-102,-28],[-41,-28],[-30,-57],[20,-57],[-71,-38],[5,-47],[-56,-19],[-31,-76],[-61,-48],[-51,29],[-101,0],[-123,-171],[-35,0],[-21,-47],[-76,0],[-15,-48],[-36,0],[-56,-38],[-40,38],[-77,10],[-15,-19],[-143,19],[-76,57],[-81,0],[-72,28],[-162,19],[-51,38],[-133,0],[-76,10],[-36,-29],[-45,0],[-41,-38],[-153,-9],[-91,57],[-56,94],[-117,10],[-51,-19],[-41,38],[-66,9],[-71,-9],[-41,76],[-97,9],[-41,-47],[-61,-10],[-25,-38],[-87,10],[-30,-38],[-102,38],[-25,-38],[-67,-29],[-45,105],[-117,-10],[-87,19],[-102,57],[-30,57],[61,104],[86,114],[82,85],[15,48],[-46,19],[-86,-10],[-66,29],[-41,66],[-31,0],[-101,-95],[-118,-19],[-45,10],[-51,38],[-56,-19],[-82,0],[-51,28],[-45,0],[-41,-47],[-46,9],[-163,-9],[-102,-38],[-132,19],[-30,-10],[-82,-85]],[[43320,25745],[25,-38],[56,76],[56,0],[148,-171],[35,10],[-25,85],[31,28],[81,-104],[76,-66],[51,38],[-71,28],[-46,133],[0,142],[-15,29],[20,85],[31,38],[147,28],[21,-57],[-5,-57],[-41,-94],[0,-57],[25,-104],[56,-29],[16,57],[50,-19],[11,66],[61,76],[81,123],[71,29],[36,38],[46,9],[41,67],[30,104],[56,47],[56,95],[5,47],[107,228],[51,38],[61,85],[86,57],[133,10],[25,28],[51,0],[112,-47],[71,-10],[97,76],[148,38],[168,-10],[101,-38],[77,0],[102,-19],[71,19],[46,-37],[66,-10],[193,0],[92,66],[5,29],[76,-19],[122,-48],[61,-9],[46,-47],[153,0],[0,38],[66,18],[10,-28],[77,10],[249,-86],[127,-57],[107,-28],[81,-38],[199,-57],[173,-19],[173,0],[132,-28],[77,0],[91,-29],[66,-38],[67,-9],[86,-38],[97,-66],[40,-10],[51,-57],[245,-161],[45,-47],[67,-38],[117,-142],[81,-67],[87,-95],[96,-85],[77,-47],[15,-29],[97,-94],[56,-38],[91,-95],[71,-38],[112,-142],[229,-247],[128,-180],[81,-151],[31,-143],[66,-199],[41,-95],[15,-113],[25,-48],[41,-180],[-15,-189],[0,-218],[10,-76],[-41,-29],[15,-104],[-25,0],[20,-171],[16,-37]],[[35711,19849],[5,47],[87,143],[158,9],[0,38],[102,0],[25,28],[-25,133],[-82,76],[-10,133],[61,-29],[0,48],[71,66],[66,-9],[51,75],[56,57],[-25,114],[-10,95],[-46,19],[30,94],[82,105],[-66,57],[-117,19],[-82,66],[36,76],[35,9],[77,67],[61,28],[76,0],[82,19],[71,38],[0,66],[-46,86],[-86,189]],[[38729,22920],[21,10],[66,104],[0,66],[41,0],[20,57],[107,142],[56,10],[20,28],[66,0],[87,95],[56,38],[76,-19],[127,0],[10,66],[36,48],[20,66],[-5,48],[51,37],[-10,67],[61,57],[51,94],[112,-18]],[[36755,18531],[-51,-85],[-26,-76],[-51,0],[-30,-28],[-82,-29],[-35,-66],[-82,-9],[-20,-29],[-71,0],[-77,19],[-71,48],[-46,0],[-40,-38],[-112,9],[-26,19],[16,133],[30,38],[-5,66],[-31,66],[0,48],[-40,38],[-10,85],[-82,95],[15,114],[36,37],[-15,48],[15,47],[-86,0],[-16,48],[31,47],[86,9],[122,57],[51,-19],[72,0],[-31,76],[-107,95],[-66,104],[-87,161],[-45,48],[-46,104],[-31,38]],[[36358,29698],[45,76],[77,9],[-5,38],[66,38],[15,38],[102,57],[-31,38],[-61,0],[-25,47],[112,47],[-5,67],[-26,47],[77,57],[-11,152],[41,38],[41,-10],[0,85],[36,0],[35,86],[56,66],[112,28],[66,-18],[82,47],[30,-47],[77,9],[10,57],[81,28],[-10,67],[20,75],[41,76],[15,114],[138,76],[91,161]],[[34083,18285],[112,-76],[71,-76],[56,-113],[31,0],[66,66],[35,95],[36,-19],[142,57],[16,19],[-36,66],[56,57],[46,0],[56,-29],[15,114],[56,142],[15,133],[41,133],[5,76],[-20,37],[10,67],[36,9],[-5,57],[40,85],[77,48],[112,0],[-16,161],[148,19],[81,-76],[0,-28],[92,-95],[46,38],[81,19],[-5,38],[-56,66],[0,38],[-107,-9],[31,94],[25,0],[87,76],[71,-19],[-5,67],[30,18],[0,86],[46,47],[10,76]],[[34480,14304],[-56,-57],[-36,0],[-25,95],[-61,95],[-123,218],[-5,47],[-40,47],[-87,-57],[-56,19],[-30,95],[25,38],[-25,152],[86,57],[31,47],[-31,47],[61,95],[-20,57],[-36,0],[-86,123],[-21,124],[-30,0],[15,113],[66,67]],[[31045,22323],[-87,-76],[-36,-85],[-91,-10],[-61,29],[-97,0],[0,-123],[-20,-86],[5,-132],[46,-10],[81,-47],[36,-48],[-82,-19],[-86,29],[-61,-38],[-128,-10],[-40,-47],[20,-66],[-56,-29],[-193,10],[-36,-10],[-25,-57],[-56,0],[20,-75],[-10,-67],[25,-47],[-15,-57],[-41,-19],[-117,0],[26,47],[-67,67],[-61,19],[-137,-95],[5,-76],[-20,-104],[-31,38],[-122,-48],[-76,-47],[-26,9]],[[29431,21043],[-46,48],[-5,76],[-61,56],[0,38],[-81,10],[-10,66],[-41,10],[-41,-67],[-61,-170],[10,-38],[-132,-10],[-51,95],[-66,-9],[-36,66],[-35,0],[-51,38],[71,38],[51,57],[-5,66],[30,47],[-56,29],[-162,0],[-82,-10],[10,76],[-10,48],[-51,19],[-20,38],[15,85],[-46,19],[-127,9],[-76,29],[-36,-57],[-122,-29],[10,-66],[-41,-9],[-50,85],[-51,-19],[-21,-47],[56,-76],[-81,-19],[-61,-48],[35,-76],[-25,-18],[-92,-19]],[[27787,21404],[-112,47],[-35,-28],[-77,9],[-91,-47],[-112,-19],[-41,28],[-51,0],[-51,76],[-101,47],[-46,48],[-5,38],[-41,47],[-51,0],[-36,57],[-71,28],[-56,0],[-25,105],[-51,28],[-51,66],[-87,57],[-96,29],[-36,76],[-25,9],[5,76],[-26,19],[5,85],[62,57],[45,95],[92,66],[71,-19],[87,85],[66,29],[30,38],[72,0],[81,66],[331,0],[41,38],[-16,76],[21,95],[51,-10],[76,-19],[25,19],[-15,57],[31,123],[0,190],[-41,76],[-26,9],[-122,-28],[-81,-114],[-87,-47],[-76,-19],[-36,-48],[51,-38],[5,-47],[-86,-47],[-82,-19],[-86,0],[-10,57],[76,18],[41,29],[0,38],[-77,199],[-45,47],[0,86],[30,28],[87,19],[40,57],[77,38],[-15,85],[25,19],[41,104],[76,95],[-81,66],[50,29],[92,9],[10,133],[31,38],[-10,76],[10,104],[35,38],[31,95],[36,47],[-16,76],[46,28],[92,0],[107,29],[-11,-76],[77,0],[0,95],[-41,76],[-107,-10],[-30,86],[-51,56],[-46,10],[36,57],[0,38],[-118,28],[-5,29],[-86,0],[10,37],[-71,0],[-66,-18],[-5,56],[-41,0],[-15,76],[30,29],[-25,57],[-41,-38],[-41,0],[-10,-48],[-117,10],[-137,76],[0,56],[-31,143],[66,104],[-5,57],[21,38],[-46,47],[86,104],[41,10],[30,66],[-35,10],[-82,66],[46,95],[-20,9]],[[26846,26067],[10,29],[153,19],[-16,28],[21,114],[71,151],[66,-28],[107,0],[36,19],[91,0],[61,66],[-5,29],[82,151],[132,19],[46,19],[61,-94],[112,-67],[163,10],[25,57],[41,0],[36,-38],[203,-29],[0,-66],[46,-66],[92,-105],[0,-57],[50,-66],[46,0],[56,76],[133,123],[127,10],[10,19],[-5,341],[-36,9],[36,133]],[[30592,27006],[0,-67],[56,-104],[-62,-66],[21,-48],[-41,-66],[-46,-38],[-25,66],[-51,10],[25,-76],[-5,-57],[-101,19],[-51,-66],[-61,-142],[-31,0],[0,-95],[-36,-57],[-30,-10],[10,-94],[51,-86],[0,-57],[61,-37],[15,56],[82,10],[35,38],[82,19],[71,0],[51,19],[-26,-95],[0,-123],[-35,-29],[-5,-95],[-16,-28],[-5,-104],[-66,-10],[-40,-66],[122,-85],[71,-67],[25,-76],[-5,-56],[-46,0],[16,-86],[46,0],[10,-57],[61,-47],[20,-57],[97,-66],[86,-142],[-15,-38],[0,-105],[36,-38],[-77,-123],[21,-95],[61,-19],[20,-85],[77,-19],[213,0],[26,-161],[-31,-38],[46,-28],[10,-76],[-25,-104],[-26,-19],[-61,-190],[-56,10],[-41,-38],[-162,9],[-16,57],[-56,-19],[5,-142],[46,-29],[46,0],[46,-56],[76,-10],[36,-47],[51,-105],[-87,-113],[71,-38],[31,-57],[-46,-76],[31,-76],[-97,-85],[-41,-19],[-40,-85],[-36,-19],[-36,-95],[87,-152],[36,-142]],[[24052,11792],[97,-10],[30,-28],[168,-38],[127,0],[46,-66],[36,0],[40,47],[92,10],[46,56],[51,29],[127,0],[163,-76],[61,10],[81,-57],[36,-48],[51,-19],[30,29],[46,-10],[132,-123],[36,-76],[51,-38],[244,0],[21,-9],[137,0],[81,-10],[138,0],[91,57],[138,29],[30,28],[107,57],[87,-10],[81,29],[21,38],[86,0],[51,38],[127,0],[77,28],[66,57],[10,38],[-26,57],[128,19],[81,76],[-5,56],[-107,-18],[-76,123],[102,95],[66,132],[5,57],[35,95],[11,161],[51,0],[10,57],[91,152],[0,56],[82,133],[20,67],[-5,47],[188,95],[92,-10],[81,67],[51,113],[46,76]],[[31009,13470],[56,-48],[20,-66],[-15,-47],[-41,-29],[41,-85],[-71,-10],[10,-113],[20,-95],[-30,-67],[-66,-9],[0,-47],[-133,-48],[-10,-47],[92,9],[45,-57],[77,19],[0,-104],[35,-47],[67,0],[-11,-180],[-15,-105],[56,19],[76,-38],[41,-151],[0,-162],[-81,-132],[-41,-180],[15,-19],[-86,-152],[-36,-104],[-97,-152],[-101,-199],[-5,-66],[-61,-29],[10,-76],[-56,-37],[-46,-10],[15,-66],[-5,-95],[36,-29],[35,-66],[92,-38],[15,-47]],[[33319,31508],[82,133],[178,-19],[66,19],[122,85],[36,114],[97,0],[15,-47],[142,0],[41,-10],[5,57],[117,28],[107,0],[26,76],[50,38],[-10,85],[77,86],[5,95],[122,9],[61,-38],[56,-85],[76,47],[36,-19],[76,10],[66,-29],[51,57],[46,19],[71,57],[102,-47],[66,-10],[97,-38],[66,57],[87,-28],[45,-76],[-5,-48],[102,-75],[71,0],[31,-29],[56,0],[122,76],[25,47],[72,10],[5,76],[56,76],[-10,66],[96,0],[-25,38]],[[36195,32371],[76,19],[-10,113],[20,48],[61,0],[51,-57],[92,19],[25,28],[72,19],[71,-85],[41,0],[10,66],[30,48],[36,-10],[158,57],[56,-28],[91,19],[21,47]],[[34454,24323],[-61,-66],[-10,-57],[-56,-10],[-122,-123],[-10,-66],[40,-57],[-40,-104],[25,-95],[-10,-104],[-46,-86],[-30,-28],[-66,-19],[-87,0],[-122,-38],[-127,0],[-11,47],[-45,0],[-102,-47],[-51,28],[-41,-37]],[[33482,23461],[-40,104],[-77,47],[-71,29],[-56,-10],[-81,-47],[-36,-86],[-66,-56],[-82,132],[36,76],[-5,47],[-51,86],[-46,28],[-46,57],[46,57],[-41,47],[-10,48],[-86,76],[-56,-38],[-36,47],[-35,0],[0,-161],[-62,-28],[-157,-29],[-46,-38],[-46,-66],[-51,-29],[-137,0],[-31,-28],[0,-47],[-61,-10],[-30,66],[-51,38],[-5,76],[-72,48],[-71,-10],[-46,-66],[-76,0],[-76,-142],[-56,-67],[-72,19],[31,-95],[-5,-66],[-56,0],[-5,-85],[61,-10],[51,-38],[20,-76],[-5,-85],[81,10],[123,-19],[-21,-38],[16,-48],[-6,-85],[-40,-28],[0,-124],[-97,-9],[-71,-29],[-56,-75],[61,-143],[0,-66],[30,-57],[-20,-161],[25,-123],[31,-76]],[[31645,22105],[0,-57],[-163,29],[-66,28],[-36,38],[-91,9],[-36,19],[-81,-9],[-122,57],[-21,47],[16,57]],[[50720,22987],[50,-171],[26,-19],[61,-199],[0,-47],[-51,-105],[-25,-9],[-72,-171],[-25,-19],[-20,-123],[0,-85],[15,-38],[-10,-133],[-26,-85],[-61,-123],[-35,-114],[-67,-142],[-20,-124],[-51,-142],[-142,-180],[-46,-85],[-41,-171],[-5,-265],[-20,-95],[-10,-171],[0,-161],[-56,-133],[-36,-132],[-15,-105],[-51,-227],[-5,-76],[-31,-161],[-30,-57],[-51,-38],[-61,-19],[-255,-132],[-76,-48],[-66,-57],[-117,-161],[-41,-85],[-26,-104],[-35,-57],[-148,-124],[-40,-75],[-51,-48],[-46,-85],[-92,-38],[-35,-28],[-117,-209],[0,66],[-62,133],[-66,47],[-101,-56],[-189,9],[-66,-19],[-5,-28]],[[39727,13820],[56,-19],[40,-47],[72,0],[10,-28],[71,-10],[15,-152],[77,-37],[40,-57],[41,28],[56,-28],[26,-48],[76,0],[5,-76],[41,-56],[81,37],[36,0],[86,-75],[66,-105],[46,19],[26,-47],[20,-95],[-51,-47],[-10,-114],[-51,-76],[10,-57],[0,-142],[46,10],[71,75],[0,57],[67,105],[25,85],[41,28],[76,95],[81,10],[0,-114],[46,0],[46,-38],[41,-171],[-51,-66],[36,-47],[40,56],[61,38],[61,10],[87,-104],[25,0],[31,-114],[15,-133],[102,-19],[51,-104],[30,0],[36,47],[97,86],[10,47],[35,28],[-15,48],[41,38],[66,-19],[51,28],[66,142],[87,0],[15,-47],[36,9],[66,-37],[30,-200],[26,-94],[30,9],[56,95],[56,-57],[-5,-66]],[[42353,10986],[-5,-9],[-362,0],[-45,-19],[-31,38],[-117,9],[-31,-38],[-86,19],[-81,0],[-51,19],[10,152],[-143,0],[-56,57],[-56,-38],[-40,0],[-77,-105],[-142,-28],[-71,-28],[-11,-48],[-76,-66],[-66,0],[-56,-48],[-97,-9],[-41,19],[-30,-38],[-71,-28],[-41,19],[-51,-29],[-81,0],[-56,-19],[-36,-66],[-46,0],[-112,-57],[-117,0],[-132,-38],[-117,-66],[-132,38],[5,-86],[-158,10],[-20,19],[-72,-10],[-40,-47],[-51,0],[-82,76],[-127,-48],[-81,-9],[-21,-38],[-96,-19],[-41,-29],[-46,57],[-97,-9],[-56,66],[-81,10]],[[35640,43054],[-112,-29],[-56,-85],[-158,-19],[-40,-48],[0,-37],[40,-86],[-5,-57],[-35,-47],[-26,-104],[-76,9],[-244,-28],[-11,19],[51,76],[-51,47],[21,38],[-36,28],[-30,67],[5,47],[-36,190],[15,94],[-45,57],[-67,10],[-76,-29],[-81,19],[0,38],[-87,-19],[-20,133],[-46,66],[-92,-57],[-30,-66],[-36,0],[-66,-66],[-36,19],[-5,85],[-96,28],[-51,48],[15,76],[-224,-10],[-36,19],[-15,57],[-97,10],[-45,-86],[-56,-9],[-36,38],[-61,-19],[-10,-48],[-61,29],[-72,-10]],[[33324,43442],[-30,38],[-87,38],[-30,47],[46,86],[71,0],[10,76],[-41,123],[51,19],[0,85],[51,47],[-5,48],[102,66],[112,-19],[-31,67],[11,123],[81,-10],[5,114],[31,76],[50,0],[0,47],[87,38],[25,38],[72,38],[35,57],[-81,38],[-10,95],[40,47],[72,0],[71,47],[92,29],[45,0],[46,-123],[97,9],[193,-28],[21,-67],[96,-9],[87,47],[20,-47],[87,0],[35,-47],[31,9],[66,66],[-15,67],[61,19],[46,66],[45,0]],[[35085,44902],[61,-76],[-15,-76],[46,-104],[66,-57],[-10,-38],[61,-95],[15,-66],[-61,-66],[102,-95],[61,-76],[61,-19],[5,-47],[51,-38],[76,-104],[6,-133],[-67,-95],[16,-47],[5,-114],[51,-114],[-41,-47],[5,-104],[61,-237]],[[33584,19366],[-30,47],[-87,19],[-15,38],[35,76],[-56,19],[-40,38],[-82,-29],[0,66],[-35,38],[-61,29],[-31,-114],[-31,0],[-50,57],[0,66],[-117,29],[-21,-67],[46,-19],[-41,-75],[-40,-19],[-16,66],[-40,9],[-41,76],[-92,0],[-15,19],[46,86],[-5,37],[-51,10],[-71,-19],[-6,47],[67,-9],[35,47],[26,95],[-5,114],[25,47],[56,19],[10,123],[-35,95],[5,38],[-51,85],[-16,228],[118,-10],[61,57],[71,38],[15,67],[41,85],[-26,66],[51,10],[16,47],[-6,114],[-35,66],[0,38],[-61,114],[76,95]],[[33075,21565],[41,-10],[275,0],[35,-66],[77,-48],[25,-47],[36,29],[-31,37],[5,86],[77,-10],[10,-57],[40,-28],[41,9],[41,133],[81,-38],[-15,-76],[66,-28],[102,9],[10,67],[112,19],[61,-76],[21,47],[112,38],[25,67],[46,38],[20,85],[127,-48],[51,10],[21,-66],[35,-19],[-15,-48],[31,-38],[81,114],[51,19],[51,-95],[40,76],[87,0],[61,-28],[97,75],[20,0],[87,86],[15,66],[-36,85],[46,86],[25,123],[-101,57],[-5,38],[-72,66],[-10,38],[-81,-9],[-61,18],[-26,-66],[-51,-9],[-51,19],[0,38],[-61,0],[-40,66],[-61,-66],[-87,-10],[-127,47],[-15,-56],[-51,28],[-31,47],[-51,-38],[-66,-123],[-46,-28],[-45,0],[-62,-38],[-35,0],[-41,76],[-66,85],[-56,95],[0,57],[-97,132],[-66,171],[-36,28],[-10,76],[112,19],[-5,48],[-97,47],[11,66],[-26,38],[-10,86],[-31,0],[-55,85],[30,47],[-46,29],[-56,114]],[[33075,21565],[41,66],[15,76],[51,76],[20,66],[-127,38],[-51,-47],[-35,38],[-128,-10],[-66,-95],[-51,-19],[-71,29],[-20,-38],[-66,9],[-62,-19],[-25,-47],[-46,-10],[-112,171],[-46,0],[16,57],[66,-10],[10,29],[76,9],[16,48],[-51,85],[-36,10],[-20,47],[-41,9],[-30,-56],[-36,9],[-10,85],[-21,19],[-76,0],[-15,-66],[-117,0],[-26,95],[-71,0],[-46,-76],[-66,-19],[-36,-57],[-50,0],[-87,38]],[[41162,8285],[-148,9],[-10,-19],[-132,10],[-117,-29],[-77,-38],[-61,-9],[-147,-76],[-66,-19],[-107,-9],[-183,-38],[-469,0],[-208,-29],[-158,-66],[-87,-10],[-76,-28],[-81,0],[-36,-29],[-112,-37],[-71,0],[-163,-67],[-66,-57],[-5,-66],[-61,-28],[-41,-105],[-97,-161],[-35,0],[-41,38],[-61,85],[-107,114],[-127,95],[-122,66],[-51,10],[-82,57],[-91,9]],[[32225,34342],[56,57],[61,124],[112,9],[36,-38],[46,10],[25,56],[0,95],[-20,95],[56,57],[81,0],[0,66],[-112,123],[61,67],[-35,85],[40,0],[-20,66],[31,19],[127,-9],[56,28],[91,19],[61,-19],[31,67],[51,-152],[66,-47],[-5,-57],[36,-19],[76,9],[-20,57],[66,-9],[122,9],[35,-19],[0,-66],[77,0],[41,-76],[50,38],[26,-28],[61,0],[20,-67],[51,-28],[46,9],[31,57],[127,-9],[5,-48],[81,-9],[87,19],[5,-57],[173,-19],[76,28],[21,-38],[61,-9],[5,66],[86,10],[16,-57],[66,0],[0,57],[208,9],[26,29],[51,0],[25,-38],[87,9],[35,-38],[56,0],[41,57],[51,-9],[-10,123],[112,28],[5,48],[40,9],[11,48],[81,-19],[46,19],[71,-10],[31,29],[40,-38],[178,-48],[0,-104],[31,0],[-5,-123],[-92,-38],[16,-57],[-16,-123],[41,-152],[-25,-28],[-61,0],[-107,-48],[56,-47],[-5,-48],[66,-37],[-5,-95],[91,-76],[-20,-152],[10,-47],[0,-171],[71,-47],[36,-66],[-20,-86],[-87,0],[-5,-95],[107,-47],[71,-114],[31,-19],[5,-76],[66,-18],[97,0],[20,18],[71,-18],[-5,-48],[92,-47],[5,-57],[-127,-19],[-97,0],[10,-76],[-5,-95],[-41,-47],[21,-95],[-36,-66],[0,-48],[51,-66],[56,-123]],[[30734,18579],[15,95],[0,94],[-15,124],[56,85],[5,246],[-51,0],[-5,105],[-30,132],[5,48],[51,28],[-21,76],[-46,85],[-127,29],[-35,-57],[-117,-19],[-46,76],[-10,57],[-36,57],[51,37],[-5,48],[30,38],[5,66],[46,57],[26,95],[50,9],[-40,57],[15,57],[61,9],[-36,76],[-106,0],[-36,48],[-153,0],[-40,-10],[-61,57],[0,76],[20,38],[71,66],[41,0],[76,57],[-15,57],[-71,38],[-11,38],[-106,9],[-41,-9],[-66,-67],[-41,0],[-5,-47],[56,-76],[-10,-47],[-87,-10],[-81,-38],[-82,-19],[-30,19],[-71,-9],[-46,-28],[-56,0],[-56,-38],[-138,-19],[-35,57],[35,113],[82,67],[20,56],[41,29],[-20,66],[-67,0],[-45,19],[-72,-19],[-107,161],[72,0],[142,19]],[[27238,18247],[-10,57],[-77,133],[-10,85],[-61,66],[61,142],[-61,162],[-31,9],[-50,57],[-46,123],[25,57],[-10,152],[81,9],[-5,123],[-76,19],[-25,29],[-46,-10],[-26,38],[36,48],[-5,38],[102,9],[35,29],[117,47],[56,66],[-5,38],[-56,29],[-46,-67],[-86,29],[-51,38],[0,38],[46,18],[0,38],[56,29],[20,57],[5,95],[-20,37],[97,95],[25,48],[25,113],[0,67],[72,0],[51,19],[-5,123],[101,38],[41,38],[92,19],[25,-29],[137,10],[11,104],[-158,-9],[-82,37],[11,95],[40,95],[-10,76],[5,95],[26,47],[61,-9],[15,28],[71,19],[61,171]],[[29273,16901],[-35,47],[-56,38],[-117,10],[-26,57],[-40,-38],[-41,0],[-20,47],[-41,-47],[-82,19],[-66,38],[-56,142],[-46,19],[6,76],[25,66],[-122,57],[-41,66],[-56,38],[0,29],[-97,19],[6,28],[-51,95],[-56,66],[-61,-9],[-36,66],[-56,-9],[-15,-67],[-61,0],[-26,-47],[-76,-48],[-46,0],[-36,-47],[-50,-28],[-46,9],[-51,-19],[-10,180],[-21,10],[-112,-29],[-35,38],[0,95],[-56,85],[-36,86],[-41,9],[-30,76],[-66,47],[-56,76]],[[30200,37594],[178,-29],[86,19],[26,29],[20,85],[102,0],[20,76],[61,-19],[67,-76],[40,0],[71,66],[0,76],[21,29],[15,123],[-41,76],[31,57],[-31,56],[0,67],[67,189],[-46,76],[-41,0],[-31,67],[-66,66],[-66,47],[36,48],[46,9],[91,76],[46,76],[97,0],[25,66],[-5,67],[-61,37],[-15,209],[51,57],[30,95],[56,0],[71,38],[-10,37],[112,38],[41,-28],[224,0],[66,114],[36,-29]],[[31620,39584],[66,-19],[25,38],[163,10],[36,28],[117,29],[132,113],[76,10],[-5,-67],[158,-28],[87,-47],[40,-48],[46,0],[36,-76],[61,19],[81,0],[158,86],[71,28],[102,114],[61,38],[10,161],[51,0],[41,47],[61,-57],[66,-94],[92,-48],[51,171],[40,9],[-5,162],[-15,56],[61,10],[31,-38],[168,19],[20,85],[91,-38],[56,0],[46,-28],[36,19],[81,0],[21,-19],[0,-76],[112,0],[-16,-85],[56,0],[46,47],[51,0],[31,-66],[91,-10],[-20,-104],[46,-76],[91,-38],[5,-57],[36,-66],[51,-19],[35,47],[-5,86],[72,0],[25,-86],[41,86],[56,-10],[-46,-57],[20,-28],[97,9],[10,-66],[31,-28],[-26,-57],[41,-48],[46,10],[-36,85],[41,19],[-46,67],[20,66],[-10,66],[16,48],[-82,66],[82,28],[71,-113],[81,-67],[26,-38],[66,10],[-10,95],[56,19],[10,-67],[66,10],[0,47],[31,29],[5,66],[132,0],[46,28],[20,105],[-25,94],[132,38],[25,57],[-15,76],[41,133],[102,0],[81,28],[20,38],[11,104],[25,57],[41,0],[51,-47],[101,-38],[62,0],[106,104],[21,38],[86,85],[21,48],[0,66],[-21,95],[31,57],[-5,57],[25,28]],[[36612,41224],[51,-9],[-5,-57],[71,-38],[36,-48],[127,-66],[87,0],[117,-38],[15,-38],[117,-113],[219,-105],[96,-19],[21,29],[127,-10],[71,-38],[16,-47],[61,-57],[219,0],[111,-47],[21,-38],[214,-10],[81,-94],[5,-38],[61,-19],[31,-57],[0,-76],[188,47],[46,-94],[81,-19],[36,-124],[35,-47],[92,-38],[51,0],[66,-38],[71,0],[102,-19],[102,-95],[51,-123],[76,-38],[10,-38],[87,-66],[0,-66],[-51,-57],[36,-133],[96,-85],[56,19],[61,-95],[41,-19],[56,-104],[26,-76],[35,-48],[10,-113],[26,0],[40,-76],[6,-66],[35,-10],[36,-95],[0,-123],[56,-199],[102,-38],[-41,-47],[-10,-57],[51,-86],[30,0],[51,-66],[5,-95],[102,-28],[46,0],[30,-48],[36,10],[51,-95],[66,-9],[122,-67],[-36,-75],[-5,-76],[26,-95],[51,-95],[66,-76],[71,-57],[102,-56],[25,0]],[[31620,39584],[35,48],[15,76],[-35,151],[20,123],[-30,133],[-26,19],[10,95],[-50,28],[-87,-19],[-51,86],[5,66],[-219,152],[-81,113],[-163,114],[-20,142],[-77,161],[26,38],[81,67],[51,104],[-5,76],[-51,47],[-102,0],[-20,48],[-36,0],[-66,75],[-30,124],[51,28],[35,133],[51,76],[-20,85],[20,19],[0,76],[31,76],[-11,66],[51,76],[0,170]],[[30922,42456],[102,19],[41,38],[163,-66],[76,-57],[81,-9],[92,180],[0,28],[117,0],[71,104],[87,67],[15,132],[77,0],[106,-19],[21,-28],[71,10],[71,56],[66,29],[82,9],[10,38],[71,48],[66,85],[61,19],[82,-19],[46,-76],[96,-57],[92,-9],[46,-19],[20,-133],[97,85],[56,0],[81,57],[16,29],[-16,66],[46,47],[0,95],[31,10],[40,151],[36,0],[86,76]],[[35640,43054],[10,-57],[51,-86],[61,-66],[-20,-28],[36,-76],[30,-104],[15,-266],[51,-123],[56,-85],[97,-105],[41,-76],[147,-161],[71,-38],[46,-47],[66,-38],[51,-9],[31,-67],[-77,-9],[-40,-67],[5,-47],[46,-66],[10,-48],[56,-104],[61,-57],[71,0]],[[21685,4692],[-66,-114],[66,-66],[51,-95],[-20,-95],[36,-66],[81,10],[41,-114],[-21,-38],[-91,-19],[-61,-66],[5,-38],[51,-38],[5,-57],[-122,0],[-41,-57],[-21,85],[21,38],[-46,76],[-249,180],[-72,19],[-45,29],[-133,9],[-132,-19],[-66,0],[-77,29],[-132,0],[-112,-29],[-56,-66],[5,-67],[-96,-38],[-11,-56],[-127,28],[-5,-38],[-173,-66],[-92,0],[-168,66],[-45,-66],[-41,38],[-51,-38],[-92,0],[-45,28],[-46,-38],[-61,-9],[-26,-76],[-61,76],[0,123],[-20,38],[-61,19],[-20,-29],[-168,-37],[-26,-29],[-46,0],[-66,-95],[10,-76],[46,-37],[0,-57],[-51,-10],[-81,-133],[15,-56],[-25,-38],[10,-114],[56,-19],[10,-47],[-81,-67],[5,-95],[-67,-28],[-5,-104],[-30,0],[-61,104],[-133,28],[-101,0],[-36,-28],[-15,-57],[-36,-9],[-46,-48],[-10,-38],[-41,-9],[0,-57],[-61,-76],[-76,76],[-71,0],[-61,-38],[-46,-76],[0,-57],[-31,-19],[5,-142],[-45,-76],[-5,-75],[-46,0],[-71,-86],[-41,19],[-15,57],[40,85],[-81,-28],[-10,38],[25,47],[0,76],[15,76],[-35,19],[0,57],[-31,123],[-76,-28],[-36,-76],[16,-114],[45,-57],[0,-28],[-66,-76],[-56,0],[-15,-29],[30,-47],[82,9],[-26,-47],[-101,-66],[5,-67],[-66,-47],[-11,-66],[31,-95],[-31,-57],[-61,-19],[-66,28],[-30,-37],[-92,19],[-36,-48],[163,10],[66,-38],[67,-57],[45,-19],[11,-133],[45,0],[31,-57],[-36,-170],[5,-67],[-45,0],[-82,-47],[5,-48],[-35,-161],[-41,0],[-76,29],[-112,0],[-87,-29],[-30,-47],[-6,-85],[-35,-19],[-31,-76],[-10,-66],[10,-67],[-56,10],[-10,-38],[-81,0],[-5,76],[-87,66],[-61,0],[10,66],[-51,38],[0,76],[-56,28],[5,57],[36,76],[-5,85],[-20,10],[-21,95],[-71,47],[25,48],[-10,56],[-71,114],[-117,123],[-51,19],[-36,57],[-86,0],[-51,-19],[-46,38],[-25,48],[-46,28],[-61,-9],[-61,18],[-15,-37],[-51,0],[-16,47],[-56,57],[-35,0],[-66,66],[-102,67],[-87,9],[-5,-19],[-132,-9],[-5,-86],[-51,-9],[-41,-57],[77,-152],[-26,-47],[-20,-104],[-51,-95],[-56,-19],[-71,-48],[-112,-9],[-21,-28],[-96,9],[-16,-47],[-107,-19],[-56,-38],[-86,-19],[-56,76],[5,47],[-25,47],[-56,0],[-41,67],[-10,57],[35,19],[0,56],[72,38],[20,95],[-36,48],[-5,104],[-15,85],[-41,48],[36,37],[15,57],[31,10],[0,76],[101,161],[82,-10],[20,29],[117,0],[72,123],[30,0],[31,57],[51,9],[20,48],[41,28],[61,10],[51,85],[106,38],[148,28],[102,-9],[66,-86],[0,-47],[61,-28],[107,0],[117,123],[41,66],[35,95],[-5,85],[97,10],[15,-38],[107,28],[46,-19],[81,76],[46,29],[10,38],[56,66],[82,19],[40,85],[46,0],[31,48],[51,28],[81,190],[0,104],[76,28],[87,0],[20,48],[77,66],[0,57],[51,0],[40,38],[26,85],[30,152],[-15,142],[36,47],[5,95],[76,0],[31,38],[81,29],[30,56],[67,10],[45,-29],[87,86],[56,114],[30,123],[0,85],[21,28],[10,200],[-31,94],[67,76],[-5,48],[20,85],[-10,123],[-51,57],[66,28],[31,-47],[76,-19],[86,0],[72,133],[66,28],[25,67],[36,-10],[-10,-57],[51,-28],[15,66],[51,76],[0,47],[-51,38],[0,38],[46,10],[71,-48],[127,-9],[41,28],[15,67],[66,-10],[10,29],[62,-19],[223,28],[56,66],[31,86],[41,76],[0,75],[15,76],[36,57],[-26,47],[5,57],[36,95],[112,10],[30,28],[26,76],[91,9],[51,76],[46,29],[31,75],[56,10],[5,38],[46,28],[20,95],[-10,114],[76,0],[-5,57],[30,38],[51,0],[46,104],[107,28],[51,57],[56,38],[41,95],[15,256],[0,417],[-15,114],[-36,66],[10,57],[0,123],[10,76],[82,104]],[[11568,493],[0,-29],[-56,-85],[-46,10],[-51,-57],[-15,47],[-41,-19],[-51,48],[16,28],[56,-9],[25,66],[-25,28],[25,76],[66,19],[71,-57],[26,-66]],[[11380,673],[-56,0],[-46,-28],[-31,47],[5,85],[-51,48],[0,57],[92,-48],[61,-66],[-10,-76],[36,-19]],[[11639,844],[-41,-48],[-45,10],[-36,-29],[-25,48],[-46,0],[-26,28],[10,48],[46,85],[26,0],[-5,-104],[71,-29],[51,29],[20,-38]],[[11324,237],[-51,-28],[-10,-57],[-77,38],[-10,75],[122,10],[26,-38]],[[11222,768],[-10,-76],[-67,0],[-25,38],[31,76],[30,38],[41,-76]],[[11242,569],[-25,-38],[-56,28],[40,67],[41,-57]],[[23039,23233],[-15,47],[86,95],[133,10],[45,38],[87,151],[81,10],[-20,66],[5,104],[-10,67],[61,38],[-51,66],[21,95],[71,95],[35,85],[46,9],[26,38],[40,-57],[128,-9],[66,28],[40,48],[51,-19],[107,0],[41,-19],[46,104],[20,-9],[46,66],[137,-28],[56,47],[128,9],[5,29],[61,28],[20,171],[36,57],[20,76],[-25,161],[20,66],[-46,114],[10,38],[-46,47],[-10,67],[56,66],[5,85],[46,114],[97,-38],[41,76],[122,57],[76,-10],[71,48],[102,199]],[[25207,25859],[66,-38],[46,19],[163,28],[183,76],[41,66],[25,76],[72,-9],[86,9],[46,-57],[46,-28],[117,0],[40,-95],[87,-38],[188,10],[36,66],[61,9],[15,105],[82,19],[96,85],[102,-19],[41,-76]],[[27238,18247],[-56,-85],[-71,-67],[55,-85],[-35,-57],[41,-123],[5,-76],[66,-57],[30,-47],[51,-19],[0,-57],[31,-19],[20,-85],[-20,-104],[-71,0],[-72,-48],[41,-104],[-66,-48],[-31,-66],[-61,-19],[-35,-66],[-36,-29],[-81,-9],[-26,-19],[-41,-95],[-81,-57],[-168,-19],[-132,0],[-97,-9],[-25,19],[-194,95],[-122,-162],[-5,-104],[-122,-38]],[[25930,16588],[-112,0],[10,133],[-51,-10],[-30,48],[-67,47],[-76,-19],[-20,38],[15,76],[-71,76],[-26,-57],[-107,-104],[-5,38],[-71,75],[-51,-9],[10,-47],[-25,-38],[-15,-86],[-97,-47],[-71,-66],[-66,-38],[-31,-48],[-36,-9],[5,-76],[-96,19],[-31,-38],[-10,-66],[-30,-38],[-62,-19],[-35,-38]],[[24678,16285],[-31,133],[-71,9],[-36,29],[-91,18],[-10,38],[-117,38],[-77,-9],[-10,-29],[-71,0],[-71,-28],[-77,-10],[-40,-56],[10,-29],[-21,-76],[-35,-38],[-87,-9],[-76,28],[0,95],[-15,48],[-102,94],[-26,38]],[[23624,16569],[-5,67],[61,123],[66,95],[-10,75],[77,171],[137,114],[92,133],[35,75],[-20,124],[5,56],[-36,48],[11,114],[20,38],[-15,85],[81,66],[5,48],[-35,66],[25,57],[56,76],[-15,57],[61,75],[0,29],[71,66],[20,104],[-35,19],[56,124],[66,56],[-56,67],[-41,85],[-35,0],[-16,48],[56,104],[-71,0],[-71,38],[-21,38],[-101,28],[-11,66],[16,67],[30,38],[-10,66],[-46,47],[-76,19],[-61,95],[56,57],[-41,209],[10,75],[-15,95],[31,76],[-36,57],[31,104],[-21,38],[36,142],[-31,19],[0,67],[26,47],[-41,38],[46,95],[66,76],[81,28],[11,28],[-67,95],[-40,38],[30,48],[-15,75],[-66,57],[-5,38],[157,171],[51,19],[82,0],[122,76],[-41,94],[-132,95],[-31,57],[0,47],[-56,162],[5,104],[-71,19],[-35,57],[15,28],[-153,123],[-46,19],[16,95],[20,47],[-5,95],[92,29],[35,113],[-10,76],[51,38],[-15,67],[-67,0],[-61,-67],[-35,0],[-21,-95],[-45,0],[-107,-38],[-117,0],[-26,95],[-30,67],[-31,113],[41,86],[-10,19],[-16,199],[-86,85],[-66,-9],[-158,0],[-107,9]],[[27187,14038],[-66,-47],[-189,-180],[-51,-76],[-20,-57],[-66,-66],[-51,-133],[-10,-114],[15,-104],[-102,-38],[-71,-9],[-61,19],[-71,0],[-61,-48],[-61,-9],[-46,-57],[-122,-10],[-61,38],[-56,0],[-21,-38],[-40,0],[-51,-47],[-66,0],[-36,19],[-56,-19],[-81,0],[-46,-19],[-77,0],[-30,47],[-82,29],[-81,-10],[-102,48],[-81,19],[-92,-10],[-20,38],[-97,10],[-86,-19],[-51,19],[-41,47],[-137,266],[-67,56],[-30,57],[-61,57],[-66,38],[-46,85]],[[24393,13820],[51,0],[117,95],[76,38],[82,-9],[112,75],[35,0],[76,-75],[6,75],[50,38],[11,38],[45,19],[67,76],[106,28],[67,0],[107,-47],[25,-28],[56,-10],[81,10],[31,-67],[41,86],[106,9],[82,19],[36,-28],[61,0],[-11,47],[16,57],[-36,66],[20,67],[77,0],[5,56],[41,0],[20,48],[71,0],[102,28],[0,-47],[56,-66],[61,28],[36,76],[25,19]],[[26403,14541],[71,-19],[102,28],[26,29],[86,0],[82,28],[50,-76],[67,19],[56,-57],[91,-19],[87,-85],[51,-28],[0,-38],[45,-57],[-35,-57],[-51,-47],[56,-124]],[[26988,13005],[5,10]],[[23802,14399],[-5,47],[-35,95],[-82,142],[-61,0],[-46,38],[0,57],[26,28],[-36,57],[-122,123],[-41,19],[-112,-28],[-10,38],[-61,28],[-86,0],[-21,-38],[-81,10],[-10,19],[-117,-10],[-56,-47],[-77,-142],[-20,-124],[76,-38],[-51,-37],[-229,0],[-15,28],[-61,0],[-61,-28],[-5,-48],[-51,-9],[-46,38],[-51,0],[-101,56],[-97,0],[-112,-56],[-20,-29],[45,-104],[-10,-38],[-51,-9],[-56,37],[-152,10],[-16,-76],[-183,47],[-91,86],[-56,19],[-67,57],[-45,-19],[-97,0],[56,57],[30,56],[0,124],[-35,94],[-56,105],[41,9],[66,48],[15,37],[107,57],[61,133],[-5,85],[102,76],[-61,19],[5,57],[66,10]],[[21538,15565],[81,-19],[71,-114],[67,-67],[56,-28],[45,0],[56,28],[41,-19],[46,10],[41,66],[132,19],[51,48],[51,-10],[56,48],[10,38],[-36,37],[-25,76],[66,0],[30,76],[51,47],[21,86],[5,95],[-15,75],[25,67],[71,19],[26,95],[46,28],[30,66],[31,10],[-11,76],[51,28],[97,-85],[117,9],[10,38],[92,38],[66,10],[15,-38],[127,-19],[26,113],[-51,162],[61,66],[61,19],[148,-10],[15,-28],[66,-19],[66,-133]],[[24678,16285],[0,-57],[51,-133],[10,-132],[-20,-38],[-11,-105],[16,-47],[-36,-123],[36,-67],[25,-85],[61,-76],[10,-66],[-15,-38],[-76,19],[-87,-57],[-35,0],[-143,38],[-137,19],[-77,-161],[5,-66],[-20,-57],[20,-38],[-20,-38],[-46,0],[-15,-85],[92,-162],[91,-75],[-5,-57],[36,-29],[-10,-104],[-26,-47],[-127,0],[-56,-29],[-10,-47],[-41,-19],[-31,28],[-101,0],[-51,48],[-46,-10],[-87,10]],[[24393,13820],[-21,48],[-40,19],[-61,-10],[-16,-28],[-101,19],[-16,-19],[-81,38],[-153,237],[-102,275]],[[25930,16588],[20,-208],[15,-86],[46,-113],[87,-57],[15,-123],[41,-76],[20,-114],[31,-47],[15,-105],[-46,-47],[0,-161],[-61,-10],[-61,-104],[36,-85],[-11,-133],[61,-237],[26,-47],[81,-19],[11,-105],[30,-47],[66,19],[31,-28],[25,-67],[-5,-47]],[[23039,23233],[-15,-66],[-41,38],[-56,9],[-61,-19],[-51,-47],[-56,28],[-66,-38],[-25,-57],[-51,-66],[-36,-9],[-66,75],[-82,-28]],[[22433,23053],[-56,-19],[-66,0],[0,47],[-66,199],[-71,162],[-71,132],[-51,48],[-10,66],[56,190],[5,56],[66,133],[41,104],[56,19],[50,67],[56,38],[21,38],[-10,123],[-21,9],[10,142],[-50,124],[-87,161],[-92,123],[-61,104],[-91,114],[-61,114],[-5,66],[35,57],[92,76],[0,47],[35,76],[-25,123],[-51,76],[-66,123],[-36,29],[-71,152],[-122,94],[-102,48],[-66,-29],[-112,-19],[-20,-38],[-72,10],[-127,0],[-56,-10],[-61,-47],[-15,-85],[-87,0],[-71,19],[-142,0],[-51,-38],[20,-38],[-15,-48],[-66,0],[-133,-47],[-107,-47],[-66,-124],[10,-85],[-61,-28],[-56,-67],[5,-38],[-25,-113],[56,-48],[25,-57],[-15,-94],[-132,-10],[-31,-104],[-56,-29],[-51,57],[0,86],[-15,66],[-127,123],[-61,38],[-102,28],[-41,-9],[-61,-123],[-86,-76],[-82,47],[-51,-38],[-45,0],[-46,-56],[-66,66],[-97,0],[-15,-85],[-31,-86],[-66,10],[-112,95],[0,37],[71,48],[16,104],[56,57],[25,85],[51,38],[-20,86],[20,75],[71,29],[56,0],[20,38],[11,95],[81,18],[41,67],[-15,38],[40,28],[5,38],[41,48],[5,37],[87,0],[40,67],[21,66],[51,38],[86,19],[66,95],[82,-10],[168,0],[132,105],[97,142],[40,0],[46,95],[5,37],[87,76],[25,67],[36,9],[97,-9],[96,132],[61,48],[77,104],[56,47],[10,76],[41,57],[5,199],[10,85],[-56,143],[-5,85],[61,95],[66,-19],[112,95],[76,75],[61,38],[82,152],[61,76],[112,57],[56,57],[0,151],[71,95],[66,19],[31,28],[61,0],[137,152],[82,19],[51,47],[96,-9],[5,28],[-66,29],[36,66],[35,-19],[46,67],[16,75],[30,67],[51,19],[25,-38],[56,0],[51,-38]],[[22535,29366],[36,-57],[71,-161],[41,0],[86,-123],[168,-114],[56,-28],[0,-105],[-25,-57],[-56,-28],[-61,-95],[10,-85],[-36,-114],[-71,-47],[-30,0],[-87,-105],[-56,-151],[10,-19],[-56,-114],[0,-66],[72,9],[15,-47],[-5,-67],[51,-47],[76,-9],[-20,-38],[71,-86],[0,-47],[-82,-114],[-15,-114],[31,-85],[-16,-95],[41,-47],[112,0],[81,38],[26,28],[46,-9],[71,28],[87,0],[5,-57],[45,-28],[-40,-123],[122,-86],[107,-85],[35,-85],[41,-38],[25,-76],[62,-38],[71,19],[15,28],[112,19],[46,29],[61,104],[127,85],[102,38],[117,0],[46,86],[71,0],[81,76],[158,56],[51,0],[-36,-132],[36,-67],[0,-47],[46,-114],[36,-19],[188,0],[56,48],[71,-38],[163,9],[117,123],[61,0],[41,-37],[-46,-57],[10,-76],[-66,-86],[-25,0],[-123,-189],[41,-57],[82,-28],[-6,-76],[-66,-48],[-5,-75],[-35,-29],[71,-227],[-41,-38]],[[22489,29698],[-50,-67],[-51,-94],[-51,-67],[-66,-114],[5,-66],[-51,-28],[-36,-67],[-35,0],[-153,-113],[-51,-48],[-61,-114],[-76,19],[-31,-47],[-107,-38],[-41,-76],[6,-104],[-36,-76],[-31,-28],[-91,-10],[-97,-114],[-46,-28],[-30,-133],[-87,10],[-56,-38],[-10,-38],[-86,-47],[15,-57],[-138,9],[-132,38],[-56,85],[-51,10],[-10,-38],[-81,161],[-102,10],[-46,47],[0,38],[-41,76],[-35,28],[-66,-9],[-112,66],[-6,76],[26,76],[-20,76],[-56,56],[-36,0],[-15,105],[-66,9],[-16,57],[-46,38],[-122,-19],[-5,-19],[-96,0],[-56,28],[-6,105],[-45,57],[-16,85],[16,57],[-87,9],[-107,48],[-46,-38],[-66,0],[-15,57],[41,57],[-10,37],[-56,10],[-26,57],[76,76],[0,56],[72,-9],[56,19],[122,-57],[91,-66],[11,-38],[76,9],[97,-28],[30,28],[0,67],[-35,66],[-46,28],[-5,67],[56,28],[10,105],[25,28],[-10,47],[51,105],[5,56],[-46,57],[-25,86],[-10,113],[35,19],[41,-19],[36,19],[76,0],[46,57],[40,19],[46,-57],[41,38],[56,-9],[10,66],[71,19],[11,-47],[61,-10],[45,38],[0,38],[112,47],[72,-28],[40,-47],[51,28],[117,0],[26,-76],[71,19],[163,-9],[20,-19],[117,0],[10,-67],[31,-9],[46,-114],[-21,-76],[11,-85],[81,-114],[76,-28],[26,-85],[46,-76],[0,-57],[25,-86],[66,-56],[72,-38],[96,-29],[138,0],[35,67],[56,28],[107,0],[97,-47],[137,9],[71,-28]],[[18871,24996],[0,-57],[-25,-47],[-56,28],[5,95],[76,-19]],[[22535,29366],[107,0],[76,-66],[107,-19],[61,38],[97,18],[61,29],[158,133],[61,28],[56,0],[25,38],[-10,47],[-66,-19],[-5,48],[61,19],[15,76],[-15,94],[-56,57],[0,48],[51,38],[76,-10],[46,-38],[61,0],[5,-38],[46,-76],[76,-9],[158,38],[51,-66],[138,-38],[10,-95],[35,-48],[117,-37],[117,-10],[143,0],[76,19],[72,-28],[66,0],[290,132],[142,114],[16,57],[61,47],[229,76],[20,-47],[178,85],[51,38],[254,85],[173,10],[67,-29],[101,-104],[-15,-104],[71,-57],[46,-76],[41,38],[-46,76],[15,57],[61,9],[138,-9]],[[21538,15565],[5,37],[-61,19],[-66,-85],[-87,-57],[-61,-19],[-46,57],[-112,10],[-25,38],[-71,28],[-6,28],[-91,95],[-51,76],[-66,9],[-41,95],[-36,-38],[-61,38],[-96,0],[-36,-19],[10,114],[72,29],[122,66],[-26,38],[-81,9],[-107,-38],[-61,-66],[-92,9],[-46,-18],[-218,85],[-77,19],[-112,9],[-56,-38],[-76,19],[-132,0],[-36,-19],[-102,-9],[-122,-48],[-92,-113],[-5,-67],[36,-57],[-5,-47],[-46,-76],[-15,-76],[30,-37],[-30,-29],[-87,-142],[-107,19],[-81,-10],[-20,-28],[20,-47],[-92,-10],[-25,-66],[-76,28],[-56,0],[0,38],[-97,0],[-41,19],[-117,9],[-30,-47],[-51,-28],[-41,-57],[-36,0],[-35,-38],[-15,-123],[-56,-10],[-82,-104],[-97,-10],[-61,67],[-56,0],[-5,38],[-112,9],[-66,-19],[-46,48],[-96,38],[-82,9],[-25,28],[0,57],[41,29],[5,57],[-36,104],[-51,104],[-153,29],[-81,75],[-25,57],[50,19],[-5,67],[87,-19],[86,0],[11,-67],[35,-28],[56,0],[36,133],[198,-10],[72,-28],[71,0],[15,38],[87,66],[96,0],[21,38],[112,-48],[40,67],[66,-10],[-5,38],[-76,-9],[-56,-57],[-46,38],[-61,-10],[-10,-28],[-112,0],[-81,-48],[-128,29],[-76,57],[-71,-10],[-97,10],[-56,-19],[-81,0],[-41,114],[-51,-38],[-66,-10],[-36,19],[-61,-28],[-86,-10],[-51,10],[0,-57],[56,-38],[15,-47],[-15,-67],[-71,-19],[0,-57],[-62,38],[-25,48],[0,123],[-20,47],[-56,10],[-11,66],[-50,29],[-46,0],[-61,28],[-66,104],[142,0],[56,-28],[31,47],[10,133],[81,0],[41,76],[76,66],[143,10],[15,-29],[76,10],[36,85],[10,104],[-10,67],[10,66],[-56,161],[0,95],[-35,95],[-62,123],[-112,-10],[-25,19],[-76,-9],[0,38],[-158,0],[-20,47],[-199,-9],[-117,-57],[-122,-10],[-10,-28],[-56,0],[0,47],[51,38],[0,38],[-36,76],[61,28],[26,48],[0,57],[-26,28],[20,57],[51,47],[87,-19],[76,29],[26,47],[51,19],[45,67],[102,9],[5,38],[56,95],[71,28],[67,-19],[81,0],[46,57],[30,85],[46,-47],[107,19],[15,57],[87,0],[15,47],[-25,57],[-5,142],[45,19],[-15,105],[-36,28],[46,85],[31,0],[20,57],[51,-28],[204,-38],[107,9],[45,-28],[5,-95],[-25,-38],[20,-47],[82,9],[56,-9],[61,28],[51,48],[71,19],[36,75],[-16,57],[26,67],[40,0],[51,-38],[-5,-57],[31,-19],[117,0],[76,19],[41,66],[-36,48],[0,37],[41,86],[92,47],[96,0],[61,38],[16,47],[35,19],[153,228],[-5,95],[46,28],[35,76],[102,-85],[61,0],[46,28],[-20,66],[20,86],[71,0],[66,47],[82,0],[0,38],[198,10],[97,-19],[30,47],[77,9],[20,-47],[41,-28],[137,0],[66,38],[56,56],[31,67],[71,47],[41,76],[56,-9],[142,113],[41,76],[51,29],[66,104],[107,114],[46,9],[35,-66],[56,0],[26,38],[56,-19],[71,47],[117,123],[102,76],[0,29],[51,37],[107,19],[15,29],[112,76],[92,170],[25,86],[61,9],[41,114],[51,28],[71,124],[81,227],[0,76],[138,313],[15,123],[26,57],[0,76],[20,37],[-10,48],[10,104],[81,237],[51,29],[-5,170],[-36,180],[6,105],[50,66]],[[16484,16114],[-112,-57],[-41,29],[-45,0],[-21,66],[87,48],[66,-29],[66,-57]],[[16184,17337],[-15,-28],[5,-190],[-46,47],[-41,0],[-15,48],[41,123],[71,0]],[[19385,15271],[-25,-48],[-62,-9],[-55,19],[0,47],[71,38],[71,-47]],[[16510,15830],[-56,-76],[-67,0],[61,85],[62,-9]],[[28978,14683],[-61,0],[-10,-57],[-81,-208],[-46,-19],[-36,-57],[-46,-38]],[[28668,14304],[-26,28],[-66,-76]],[[28571,14256],[15,38],[-15,86],[-56,-48],[-25,-47],[-56,9],[40,95],[-132,-95],[-46,-9],[-15,-95],[-107,-9],[-66,19],[-25,28],[112,28],[71,86],[56,9],[40,29],[41,85],[-66,-10],[5,-47],[-132,-66],[-51,19],[-46,-38],[-86,9],[-56,29],[-148,0],[-178,-57],[-102,-57],[-127,-57],[-229,-152]],[[28627,14304],[10,0]],[[41671,14218],[71,48],[97,-29],[25,-66],[-35,-19],[-77,19],[-81,0],[0,47]],[[22133,46883],[56,29],[61,-19],[36,-57],[66,-48],[76,-85],[-61,-57],[-5,-76],[-66,-28],[-15,-48],[25,-85],[41,-47],[-15,-38],[71,-57],[15,-76],[-30,-19],[10,-57],[-21,-38],[16,-85],[40,-85],[51,0],[56,-142],[61,-29],[56,-76],[46,-19],[148,0],[61,-151],[35,-29],[-81,-76],[41,-113],[46,-29],[66,-9],[96,95],[51,19],[36,-95],[30,38],[77,-19],[97,-57],[40,0],[21,-114],[-112,-76],[0,-104],[45,-10],[21,-113],[51,-57],[71,-19],[51,-66],[61,28],[71,0],[31,47],[71,29],[71,-10],[36,29],[152,-29],[56,19],[46,-66],[72,-66],[-21,-67],[-66,-66],[-143,-85],[-10,-48],[-45,-76],[55,-19],[26,-85],[10,-95],[61,-57],[-51,-47],[56,-133],[194,-38],[61,-56],[20,-57],[-46,-114],[46,-133],[-20,-38],[51,-76],[-11,-47],[-61,-19],[-101,57],[-56,-57],[-51,-28],[25,-256]],[[24184,42997],[-46,0],[-107,-29],[-132,-66],[-20,57],[56,57],[-87,9],[-66,-28],[-20,-38],[-51,0],[-66,-76],[-46,-95],[-26,57],[-81,-171],[-153,-47],[-40,-85],[-148,-38],[-15,-38],[-92,-38],[-61,0],[-81,-85],[-26,-48],[-86,-38],[-138,19],[-152,-9],[-51,19],[-87,76],[-25,94],[-36,10],[-25,57],[-41,-57],[5,-228],[-81,10],[-31,76],[-188,9],[-41,19],[-20,57],[-41,10],[-76,151],[-122,67],[5,47],[-67,66],[-56,19],[-66,67],[-86,0],[-87,47],[-46,0]],[[21237,42883],[-5,123],[61,104],[-15,95],[-61,67],[71,47],[117,0],[11,76],[-46,76],[0,38],[-36,66],[-15,123],[102,10],[5,94],[30,57],[-5,67],[-117,104],[-61,-10],[-46,67],[-66,38],[-76,9],[15,95],[122,47],[61,-9],[26,47],[-16,67],[-56,0],[-66,-38],[-71,132],[56,67],[61,47],[41,-9],[86,95],[-35,37],[20,48],[-41,95],[-76,47],[-132,28],[-51,-19],[-21,57],[-86,38],[-71,10],[-10,28],[-92,67],[25,94],[5,76],[-35,104],[-51,29],[10,170],[-10,19]],[[20693,45603],[-20,67],[10,133],[56,56],[25,143],[66,-10],[-10,47],[26,114],[51,76],[15,114],[35,95],[-20,47],[20,47],[36,0],[10,57],[127,133],[46,76],[0,47],[41,86],[61,-19],[107,19],[92,-38],[40,132],[46,10],[20,-38],[117,0],[31,-19],[56,-85],[36,-29],[15,-57],[132,-104],[41,0],[41,104],[71,29],[20,47]],[[17843,42039],[5,67],[-71,28],[-15,66],[30,19],[-5,67],[-51,95],[-36,0],[-45,56],[-61,19],[0,76],[-61,86],[-56,9],[-62,38],[-50,104],[-77,10],[-35,66],[-72,57],[-20,66],[-31,-9],[-61,95],[11,75],[-87,181],[0,18],[-86,143],[-21,104],[0,284],[36,86],[-5,75],[-31,38],[66,143],[16,56],[61,76],[86,-19],[127,95],[92,0],[20,-38],[21,-114],[56,-37],[25,-57],[-5,-57],[31,-76],[91,-66],[-96,0],[-36,-29],[20,-95],[-10,-28],[31,-95],[10,-95],[81,-66],[46,-76],[46,-28],[46,9],[81,76],[31,57],[-11,114],[-50,66],[0,85],[-62,142],[-81,105],[0,66],[-20,66]],[[17599,44238],[51,38],[96,38],[158,19],[15,38],[-30,38],[20,47],[71,-28],[77,133],[30,95],[51,47],[-5,114],[87,9],[91,-47],[-10,-67],[66,-47],[0,-66],[61,-10],[82,38],[76,0],[61,-19],[132,29],[36,-67],[66,38],[102,-19],[36,48],[61,-19],[76,19],[25,-57],[112,57],[61,0],[26,47],[61,28],[87,10],[35,-38],[66,161],[-46,85],[-66,0],[-10,57],[-56,29],[21,38],[-31,180],[31,66],[35,0],[21,57],[96,66],[10,48],[194,9],[20,48],[66,85],[117,9],[56,-9],[82,-47],[183,9],[66,76],[5,66],[41,10],[36,-48],[-6,-57],[26,-38],[10,-132],[46,0],[51,38],[66,113]],[[21237,42883],[-55,28],[-97,10],[-46,57],[-61,47],[-92,48],[-96,85],[-31,-48],[26,-75],[56,-57],[66,-10],[15,-123],[-31,-104],[36,-67],[66,-75],[26,-67],[-16,-95],[-66,0],[10,-94],[-30,-67],[30,-19],[-10,-142],[-25,-28],[-5,-133],[10,-123],[51,-10],[10,-66],[-46,-123],[-25,-38],[-117,-114],[-107,0],[-133,95],[-96,47],[-72,0],[-127,67],[-61,56],[-41,0],[-71,114],[-40,-28],[-36,57],[5,47],[-61,38],[-56,-9],[-46,66],[-36,104],[0,76],[-71,95],[-46,38],[-71,19],[-122,104],[-117,66],[-92,95],[-71,95],[-91,28],[-179,10],[-127,95],[-20,66],[-51,38],[-51,0],[-41,28],[-101,0],[-143,-57],[-71,-57],[-117,-75],[-138,-143],[-56,-104],[26,-47],[10,-95],[41,-76],[40,-199],[46,-85],[15,-133],[67,-161],[-21,-47],[46,-38],[0,-48],[56,-9],[20,-38],[67,-48],[5,-47],[-46,-66],[-15,-105],[-21,-47],[41,-123],[92,0],[0,-38],[-123,0],[-25,38],[-183,38],[-173,180],[-36,57],[-46,123],[31,66],[91,76],[-50,57],[-31,104],[36,76],[-87,38],[-76,10],[10,75]],[[27116,50476],[101,-19],[67,-76],[35,0],[107,-38],[5,-38],[132,-123],[6,-67],[66,-56],[66,-114],[5,-76],[51,-76],[46,-38],[-11,-57],[158,-75],[5,-57],[-117,-10],[-61,38],[-15,48],[-102,18],[5,-104],[46,-85],[-51,-76],[-25,-95],[-143,38],[-20,-28],[10,-95],[-61,-66],[-56,28],[-31,-57],[-30,0],[-51,48],[0,123],[-56,57],[-46,-67],[-10,-94],[-30,-105],[-16,-114],[-86,10],[-36,-28],[-61,56],[-132,29],[-122,152],[-21,-38],[-102,-95],[-61,-10],[-51,-66],[16,-47],[-61,-76],[-46,-10],[-82,-142],[-61,-9],[-96,104],[-26,-48],[-61,-56],[5,-48],[-96,-66],[-72,-29],[5,-85],[-25,-114],[20,-38],[128,-75],[50,-86],[-10,-66]],[[26011,48087],[-66,-57],[-76,-114],[-36,-104],[-51,38],[-61,-47],[-61,9],[-56,-38],[-36,48],[-50,18],[-72,-56],[-86,0],[-36,-29],[-76,-19],[-77,48],[-66,-10],[-20,38]],[[25085,47812],[-92,180],[-61,29],[-5,56],[21,76],[30,19],[66,228],[-30,76],[51,38],[15,123],[20,38],[87,38],[-51,132],[-31,152],[66,104],[-91,123],[-20,105],[-46,38],[-41,104],[5,57],[158,38],[76,0],[-10,38],[25,85],[-56,57],[26,47],[-5,57],[61,95],[71,19],[15,76],[67,75],[76,67],[122,142],[20,57],[-112,0],[-25,66],[-71,48],[15,28],[-81,190],[-26,142],[-61,47]],[[25263,50902],[5,29],[107,47],[46,76],[-26,38],[41,104],[102,38],[61,76],[36,9]],[[25635,51319],[96,10],[31,28]],[[25762,51357],[91,-123],[26,-76],[-5,-57],[122,-9],[86,28],[67,-28],[-16,-114],[102,-38],[71,19],[36,38],[71,-28],[36,37],[71,10],[10,47],[82,105],[51,0],[10,-124],[35,-66],[6,-57],[96,-114],[-40,-47],[20,-76],[51,-19],[20,-66],[-35,-95],[81,-114],[41,-9],[30,38],[138,57]],[[23512,54571],[-50,-48],[-41,-142],[-46,-85],[10,-95],[-86,-19],[76,-142],[-97,0],[-30,-57],[25,-76],[61,10],[16,-57],[-41,-48],[46,-19],[30,38],[0,76],[46,0],[61,-38],[-30,-57],[10,-47],[45,-19],[72,0],[40,47],[41,10],[41,-86],[132,-180],[82,-38]],[[23925,53499],[45,-28],[46,-76],[51,-123],[87,-66],[66,0],[219,-67],[40,-76],[61,76],[112,-28],[-5,-48],[265,-85],[41,0],[157,-57]],[[25110,52921],[-56,-28],[11,-67],[-87,-19],[-5,-47],[-107,0],[-46,19],[-96,10],[5,37],[-92,19],[-10,-38],[-56,0],[-25,-66],[-72,-19],[16,-38],[-36,-47],[-117,-114],[-61,-38],[10,-57],[-36,-57],[-112,-56],[-122,0],[-61,-19],[-15,-57],[-51,-48],[-76,-113],[-46,-10],[-21,-38],[-96,-38],[-102,-9]],[[23548,51983],[66,76],[-86,0],[-41,57],[-61,18],[-71,48],[-72,28],[-51,95],[-55,29]],[[23177,52334],[0,56],[86,76],[46,0],[15,86],[-163,-10],[-35,-19],[-61,48],[-82,-19],[-10,56],[-46,19],[31,86],[-72,47],[-35,0],[-97,-38],[-20,38],[56,47],[-10,67],[-36,47],[-137,10],[-72,28],[46,114],[-30,57],[-153,9],[-82,-28],[-106,0],[-11,-57],[-51,-47],[-56,-10],[-10,-38],[-51,-28],[-96,9],[-21,38],[0,104],[-56,38],[-25,-85],[-122,-66],[-41,47],[-76,38],[-82,-38],[-81,0],[-97,104],[-76,-9],[-41,-85],[82,-162],[40,-47],[0,-142],[-30,-10],[40,-85],[-76,9],[-25,-28],[35,-47],[-224,0],[-71,66],[-91,123],[-97,0],[-66,-28],[-16,-48],[-61,0],[-76,67],[-76,161],[-16,57],[-107,-19],[-50,95],[0,75],[-36,19],[-20,86],[25,47],[-56,66],[82,29],[30,66],[-76,48],[-61,19],[5,-67],[-102,114],[-56,19],[-132,-19],[-36,28],[-81,-19],[-41,48],[-51,104],[76,133],[-25,76],[-199,38],[-35,56],[0,67],[-46,104],[5,38],[-30,57],[5,85],[-87,76],[-76,123],[-31,86],[5,37],[46,76],[-25,171],[-41,114],[-15,94],[20,38],[0,114],[25,48],[67,-19],[25,37],[61,-9],[-35,76],[-51,0],[-16,85],[36,10],[-10,113],[91,57],[-30,48],[-97,0],[-56,-29],[-30,38],[-87,29],[-117,18],[-25,-47],[-41,-19],[-143,-9]],[[18840,55661],[-30,85],[61,47],[-137,143],[-117,104],[-107,19],[25,38],[61,19],[15,47],[-10,76],[92,57],[10,151],[81,48],[72,66],[56,19],[25,48],[87,9],[76,-19],[36,57],[10,76],[-46,47],[31,38],[106,19],[26,47],[51,-47],[122,0],[15,66],[41,38],[66,19]],[[19558,56978],[51,-19],[41,57],[-26,29],[122,123],[92,19],[25,47],[67,-19],[45,19],[128,-9],[-26,76],[20,47],[82,19],[51,-19],[35,-57],[92,10],[66,37],[46,0],[56,67],[97,-10],[45,29],[46,-10],[61,57],[56,0],[41,85],[41,29],[102,-57],[40,0],[-5,-76],[71,-133],[46,0],[10,-142],[36,-85],[20,-123],[107,28],[158,86],[234,56],[194,133],[86,-66],[36,0],[71,-67],[30,-47],[41,-171],[-56,-57],[-107,10],[-71,-66],[-56,-95],[-188,123],[-15,-28],[30,-474],[-15,-19],[10,-105],[-214,-19],[5,-189],[-15,-85],[31,-48],[61,-47],[-67,-76],[11,-57],[56,-47],[127,-57],[56,-95],[122,0],[56,-47],[36,0],[117,-86],[15,-57],[112,-18],[92,66],[96,-114],[61,48],[41,-76],[46,0],[91,38],[102,-133],[82,-123],[51,0],[45,-57],[36,-86],[86,10],[31,-38],[71,66],[16,-56],[91,-48],[20,-57],[46,48],[92,57],[0,-48],[36,-76],[-21,-85],[36,-47],[35,0]],[[24495,54021],[-31,-29],[-76,0],[-46,-85],[137,-66],[-5,-29],[-91,0],[-112,-19],[-31,-38],[-178,10],[-5,-95],[-81,-57],[-26,-76]],[[23950,53537],[-25,-38]],[[23512,54571],[102,47],[112,85],[26,48],[157,-86],[61,-161],[46,38],[87,-9],[112,28],[71,-47],[36,0],[50,94],[77,-37],[91,75],[82,-9],[30,-47],[77,-29],[-21,-38],[11,-57],[-77,-28],[36,-66],[-31,-19],[-142,-19],[-31,-48],[-61,-19],[-10,-38],[51,-47],[-36,-123],[16,-29],[61,-9]],[[24495,54021],[86,9],[56,29],[61,0],[21,113],[25,38],[61,38],[92,-9],[30,-76],[127,-19],[56,19],[102,-19],[82,10],[25,-19],[76,9],[51,-19],[72,-57],[81,29],[107,9],[51,29],[15,85],[-20,66],[71,29],[61,57],[81,-10],[56,-57],[97,38],[-41,133],[123,57],[91,28],[-51,66],[-20,95],[36,48],[-36,38],[-76,9],[0,38],[45,28],[-173,57],[-86,-19],[-138,48],[46,113],[-122,57],[-20,57],[122,76],[35,66],[72,29],[56,-57],[56,19],[101,66],[-10,76],[-25,57],[15,76],[97,85],[46,10],[-5,94],[35,0],[26,57],[-26,29],[-61,-10],[-15,29]],[[26215,55898],[81,0],[122,28],[107,47],[77,48],[66,76],[35,0],[173,104],[31,0],[86,57],[97,9],[92,67],[56,9],[61,38],[51,66],[66,48],[66,-19],[148,47],[96,76],[56,10],[56,47],[46,85],[97,38],[163,0],[86,-9],[15,-19],[229,0],[61,-29],[331,0],[-76,-28],[-112,0],[-36,-48],[26,-28],[-21,-95],[-71,-38],[-15,38],[61,19],[-15,104],[-72,0],[0,-151],[-25,-67],[15,-28],[-20,-104],[5,-76],[36,-57],[-41,-76],[0,-47],[41,-180],[96,-48],[16,-57],[142,-9],[87,-47],[101,9],[26,-19],[97,0],[35,-47],[87,-10],[20,-76],[71,-66],[16,-38],[112,-85],[71,0],[76,-85],[-66,-105],[-117,-85],[-71,-66],[-56,-76],[-112,-67],[-82,-94],[-76,-29],[-31,-38],[-40,0],[-92,-47],[-41,0],[-50,-38],[-123,-38],[-81,-57],[-56,-85],[-107,38],[-46,-48],[-61,38],[-91,0],[-56,29],[-16,76],[-30,47],[-168,57],[-87,0],[-101,-38],[-77,-57],[-66,-95],[-102,-85],[-46,-66],[-56,-48],[-50,10],[-77,-67],[-107,-170],[-61,0],[-81,-76],[-56,-85],[-76,-19],[-61,-57],[-31,-105],[5,-142],[-30,-76],[-46,-66],[0,-47],[-102,0],[-56,-67],[-56,0],[-46,29],[-41,-29],[-56,10],[-25,38],[-132,-19],[-31,-67],[-51,10],[-46,-38],[-15,-66],[-76,-38],[-97,-10],[-71,-66],[-112,19],[-31,-29],[-15,-151],[-71,19],[-46,66],[-36,-38],[-213,0],[-5,133],[-61,9],[-62,38],[-117,10],[-101,38],[-117,9],[-16,29],[-203,0],[-31,37],[-163,10],[-56,-19],[-137,0],[-127,76],[-72,85],[-35,66],[-46,38]],[[22805,66628],[-51,-76],[66,-66],[-20,-57],[46,-86],[40,-28],[-35,-57],[-153,-114],[41,-37],[-132,-171],[50,-48],[-10,-66],[-132,-123],[-107,-66],[61,-57],[76,-180],[62,28],[15,-47],[66,-76],[20,-95],[163,-38],[21,-76],[-16,-85],[71,-114],[56,38],[31,-9],[56,-105],[81,-19],[31,-38],[15,-66],[36,-57],[5,-47],[107,-95],[30,0],[36,-76],[36,48],[112,9],[91,66],[21,48],[61,0],[35,76],[10,94],[61,38],[11,95],[168,48],[-41,56],[5,95],[66,38],[10,114],[56,47]],[[24133,65291],[21,-47],[76,-10],[86,-37],[143,9],[87,38],[40,104],[219,0],[209,67],[51,47],[51,0],[45,-47],[56,-152],[117,-76],[102,-28],[56,-38],[41,28],[61,-85]],[[25594,65064],[30,-161],[56,-57],[-61,-48],[16,-113],[-173,-161],[-21,-76],[-40,-48],[-62,-104],[-40,10],[-61,-38],[-87,-152],[51,-85],[46,-38],[51,0],[25,-67],[-15,-66],[61,-76],[5,-95],[-30,-75],[-46,-57],[66,-67],[61,10],[36,-104],[-77,-76],[66,-67],[-45,-123],[-46,-28],[-5,-86],[-66,0],[-143,-28],[-71,-29],[-26,-37],[-101,19],[-112,-171],[10,-29],[-36,-56],[-81,-29],[-97,-76],[0,-47],[-97,-85],[-66,9],[-35,38],[-62,-9],[-15,-67],[-102,-38],[-30,-66]],[[24225,62315],[-66,-47],[-41,0],[-46,-95],[-56,9],[-35,-38],[-87,0],[-30,-47],[20,-66],[51,-48],[51,0],[-46,-76],[-71,-76],[56,-189],[-16,-57],[-10,-171],[-35,-28],[0,-95],[-46,-28],[-41,-57],[-66,-48],[-10,-85],[-41,-57],[-10,-76]],[[23650,60940],[-92,0],[-30,19],[-87,-104],[-61,-28],[-71,0],[-148,38],[-56,38],[-81,19],[-36,28],[-30,85],[-41,0],[-5,-57],[-82,-85],[11,-47],[-16,-67],[31,-28],[-15,-123],[-123,-76],[-40,47],[-56,-19],[-46,-47],[-66,104],[-21,-28],[-76,-19],[-112,9],[-20,-19],[-173,10],[-31,28],[-71,-9],[-112,76],[-36,-10],[-35,47],[-117,-142],[-21,-76],[56,-75],[-51,-57],[-61,0],[-101,-105],[-82,-37],[-66,0],[-81,-29],[-92,19],[-71,-95],[-41,0],[-31,-57],[0,-94],[-56,-19],[-56,57],[-101,37],[-92,-151],[-107,-142],[-96,-181],[-31,-28],[-76,38],[-61,-10],[-61,114],[-174,123],[-56,-28],[-50,-133],[-51,-47],[5,-76],[-148,-57],[-35,-57],[45,-208],[-86,-114],[-56,-114],[71,-28],[5,-85],[-20,-29],[-92,0],[-81,-38],[-31,-38],[-66,-28],[-30,-38],[-133,19],[-40,-19],[-128,9],[-15,-170],[20,-123],[128,9],[132,-28],[122,123],[92,-133],[-21,-57],[-51,-57],[36,-85]],[[19619,58182],[-81,-9],[-138,-48],[-56,-66],[-96,28],[-21,-66],[-30,0],[-61,-76],[-184,-28],[-76,28],[-20,-57],[-77,-47],[-15,-29],[-61,0],[-61,-28],[-81,19],[-118,0],[-30,-47],[-51,28],[-148,0],[-40,38],[-112,0],[-36,-48],[5,-47],[-96,-38],[5,-38],[-92,0],[10,-57],[-30,-47],[-61,0],[-72,-47],[-91,9],[-61,-9],[-26,-67],[-117,-9],[-71,9]],[[17329,57433],[56,67],[20,85],[46,85],[-41,10],[-91,-190]],[[17319,57490],[-61,48],[-21,56],[51,29],[26,47],[-5,133],[-41,95],[41,47],[96,180],[-61,-9],[-86,66],[-153,0],[-46,-19],[-10,114],[-148,0],[-86,38],[-66,0],[-10,-86],[30,-104],[-107,-133],[-91,-9],[-41,38],[-71,28],[-97,-28],[-31,47],[-71,57],[-51,104]],[[16209,58229],[31,57],[91,76],[11,67],[-77,28],[-25,38],[25,38],[138,76],[25,38],[61,19],[66,-10],[56,38],[92,104],[132,-9],[26,28],[112,-28],[10,-29],[102,-47],[61,38],[81,-10],[46,95],[71,19],[92,47],[76,10],[36,38],[76,19],[82,0],[20,57],[-209,-67],[-25,-28],[-82,0],[-86,-19],[-56,-47],[-71,0],[-117,-76],[-117,47],[-67,-19],[-20,95],[-71,9],[-148,-9],[-30,28],[0,133],[56,95],[91,85],[41,76],[36,19],[66,95],[86,180],[92,95],[46,85],[107,123],[-16,57],[-81,-38],[-46,-76],[-51,-47],[-5,-47],[-56,-19],[-46,-67],[-91,-76],[-143,-170],[-46,-29],[5,-66],[-61,-57],[-61,-114],[66,-94],[-40,-29],[-77,-9],[-40,-29],[-46,-114],[-31,57],[-71,29],[-51,-48],[-122,-142],[-56,-19],[0,-57],[-61,-56],[-36,-67],[-127,-123],[-15,-38],[-56,-28],[-61,28],[-51,-28],[-87,-143],[-76,-66],[-5,-28],[-71,0],[-46,-29],[-56,48],[-71,0],[10,-48],[107,-28],[5,-48],[-92,-132],[-20,-10],[-26,-95],[-66,-66],[-51,-76],[-5,-47],[-51,-29],[-91,-123],[-56,-9],[-36,-67],[-46,-9],[-45,-48],[-41,0],[-71,-47],[-51,-57],[-31,0],[-127,-66],[-61,0],[-5,76],[-41,38],[-137,18],[-31,48],[-61,28],[-20,-57],[-97,124],[66,85],[5,76],[46,28],[-41,48],[-86,-152],[-26,-85],[-132,9],[-46,38],[-112,10],[-46,37],[-71,0],[-61,38],[-158,38],[-30,57],[-56,19],[-31,57],[-71,57],[-5,38],[-71,47],[-41,95],[-20,0],[-21,123],[-112,86],[-10,123],[-20,113],[25,29],[158,0],[71,19],[26,38],[56,-38],[142,47],[-198,0],[10,48],[46,47],[56,0],[25,-47],[76,-19],[72,-114],[71,-28],[-15,75],[25,38],[122,38],[41,-19],[173,142],[66,19],[71,105],[123,66],[81,19],[76,-28],[82,-133],[86,28],[66,-57],[51,-19],[51,10],[219,0],[15,38],[173,0],[-20,47],[-214,19],[-71,-47],[-56,0],[-112,-29],[-10,57],[-81,19],[-31,76],[-112,57],[-15,38],[-107,19],[-71,-19],[-56,9],[-97,-38],[-31,-66],[-61,-47],[-40,-67],[-31,0],[-71,-57],[-15,-38],[-67,0],[-50,57],[-112,-57],[-92,0],[-15,19],[-112,-9],[-21,85],[-86,10],[-61,-48],[-46,-9],[0,-57],[-46,0],[-61,76],[-188,-10],[-97,105],[-107,0],[-71,-19],[-137,0],[-31,28],[-87,-95],[-81,29],[-153,9],[-25,48],[-76,28],[-97,171],[56,104],[20,66],[41,19],[102,0],[-36,142],[92,10],[71,-10],[-5,48],[117,19],[66,28],[107,0],[5,-19],[209,-9],[117,38],[71,-10],[46,38],[137,0],[46,38],[10,76],[41,9],[56,-38],[92,-132],[61,-29],[10,-66],[56,-10],[96,95],[-50,133],[56,47],[61,-28],[112,-10],[30,48],[188,0],[-71,38],[-91,19],[-16,-38],[-101,-10],[-41,38],[-97,29],[61,142],[41,9],[30,143],[41,56],[132,0],[51,-28],[26,57],[117,-10],[168,105],[20,-29],[138,-19],[81,161],[41,57],[81,10],[-20,76],[-82,-29],[-35,-66],[-51,-57],[-10,-85],[-194,28],[-15,38],[-66,-10],[-51,19],[0,48],[51,57],[51,28],[81,76],[82,0],[-26,95],[-219,-19],[-20,-19],[-81,0],[-82,-38],[-76,9],[-21,-38],[-193,-37],[-10,-29],[-112,0],[-31,57],[-66,9],[-10,86],[122,28],[-5,57],[66,29],[31,-57],[107,-10],[30,95],[-102,0],[-25,47],[-112,29],[0,47],[66,29],[61,-19],[127,294],[21,75],[-10,86],[20,38],[-5,75],[46,10],[0,104],[101,85],[153,0],[10,19],[143,0],[122,19],[20,-85],[41,-66],[25,-86],[51,-38],[36,10],[107,-95],[224,-9],[61,66],[137,-19],[10,29],[102,18],[51,38],[51,0],[56,29],[-41,38],[-91,-19],[-92,-38],[-92,0],[-40,-48],[-127,-37],[-62,85],[-117,19],[-86,142],[-26,76],[11,57],[30,19],[-25,76],[-82,28],[-71,0],[-97,-38],[-15,-57],[-86,19],[-6,57],[-35,85],[-46,-19],[-71,19],[-31,57],[-25,95],[46,0],[76,152],[76,66],[82,28],[66,124]],[[14245,62429],[147,28],[-5,-47],[56,0],[21,-48],[45,-9],[-20,-57],[36,-38],[91,28],[46,57],[51,0],[26,48],[55,9],[143,-170],[15,-57],[-20,-38],[107,-85],[30,18],[87,-18],[15,-67],[61,-9],[26,-57],[112,-19],[50,28],[16,48],[61,9],[41,-19],[56,57],[15,76],[117,-10],[56,29],[0,104],[35,48],[-91,170]],[[15726,62438],[-41,29],[-97,-19],[-86,-48],[-112,0]],[[15390,62400],[15,114],[-41,66],[87,0],[51,57],[86,10],[21,-19],[81,0],[26,76],[35,0],[107,56],[143,-19],[51,29],[71,0],[91,-29],[61,10],[148,-104],[112,-19],[46,-57],[107,-19],[142,9],[5,-123],[56,0],[26,-28],[193,-48],[36,29],[117,0],[91,-29],[11,-28],[71,9],[46,-28],[51,0],[106,47],[-40,67],[-36,9],[-56,76],[-132,38],[25,76],[0,151],[15,67],[-20,123],[-168,28],[-25,38],[-112,10],[-51,38],[-26,95],[-122,0],[-61,47],[-46,0],[-10,-95],[15,-28],[-56,-76],[-61,-48],[-86,10],[-26,28],[56,48],[31,95],[5,113],[-97,76],[-117,-9],[-30,57],[76,37],[36,48],[-16,38],[41,76],[117,9],[16,85],[55,-19],[102,0],[31,29],[66,0],[92,85],[91,10],[92,104],[25,76],[158,9],[92,76],[61,10],[101,85],[21,142],[71,47],[-30,67],[-46,28],[-21,114],[-56,76],[-91,47],[-36,-47],[-46,0],[-86,38],[-26,104],[5,85],[26,76],[-15,57],[15,114],[56,0],[112,57],[112,28],[-10,114],[86,104],[41,19],[56,66],[107,38],[71,57],[137,-9],[26,28],[91,-19],[77,0],[61,57],[158,10],[101,37],[56,67],[168,0],[61,9],[16,38],[107,-9],[-16,-57],[-71,-38],[56,-123],[-15,-133],[86,-19],[51,19],[56,57],[-20,47],[97,180],[122,10],[76,47],[36,-9],[173,0],[127,47],[35,-38],[102,0],[56,48],[107,-19],[51,-38],[178,-57],[61,0],[122,66],[117,-38],[41,76],[138,10]],[[20785,65832],[-31,-29],[81,-47],[133,0],[61,28],[20,-95],[275,-19],[61,29],[61,66],[117,0],[77,29],[45,-38],[82,-29],[51,0],[91,124],[26,19],[20,94],[87,29],[56,57],[66,38],[91,94],[82,38],[112,86],[15,66],[-46,76],[-66,57],[36,94],[81,29],[71,66],[67,0],[50,-38],[148,-28]],[[11303,62021],[112,-95],[66,-9],[5,-48],[36,-28],[76,0],[46,-28],[56,-95],[5,-57],[-107,-19],[-20,-57],[148,-9],[25,-57],[-61,-124],[5,-142],[-51,-57],[-30,-75],[-102,-38],[-10,-57],[-77,-86],[-127,0],[-46,48],[-20,57],[-127,38],[-5,85],[-46,104],[-71,0],[-128,142],[-162,105],[-26,47],[92,38],[40,85],[112,57],[56,114],[72,38],[61,57],[101,-10],[16,38],[86,38]],[[12224,61026],[51,-29],[66,-66],[26,-76],[-10,-161],[-21,-104],[11,-67],[-46,-9],[-21,-66],[-66,-57],[-152,9],[-123,104],[-40,0],[-5,181],[71,75],[97,10],[56,-10],[25,38],[-20,171],[101,57]],[[10194,62097],[25,-19],[82,19],[147,9],[97,-38],[-36,-94],[36,-48],[76,0],[-5,-47],[-142,0],[-66,28],[-31,57],[-102,19],[-127,-76],[-15,-28],[-77,0],[-71,-19],[-46,28],[5,76],[77,67],[76,-10],[97,38],[0,38]],[[11614,60192],[46,-67],[91,38],[76,0],[36,-95],[-61,-19],[10,-47],[-76,-9],[-31,56],[-51,-56],[-66,9],[-35,76],[45,9],[26,57],[-10,48]],[[13487,58656],[50,-38],[0,-47],[-76,-86],[-41,19],[0,76],[67,76]],[[13380,60770],[66,-10],[10,-38],[-107,-28],[31,76]],[[24657,71282],[-35,47],[-122,124],[-26,85],[-46,-9],[-76,18],[-20,38],[-102,0],[10,48],[-35,57],[-67,47],[-56,-19],[-61,114],[-40,0],[-77,-48],[-46,-9],[-86,38],[46,76],[-46,104],[0,114],[-51,9],[-36,76],[-127,38],[-15,142],[-26,66],[-55,10],[-51,38],[5,57],[56,9],[15,38]],[[23487,72590],[-5,67]],[[23482,72657],[76,37],[122,38],[5,67],[-40,123],[-77,38],[-35,76],[-5,75],[61,48],[20,66],[46,67],[-31,56],[163,124],[-35,123],[-36,76],[25,76],[-10,85],[-56,28],[31,86],[-15,85],[10,114],[45,9],[0,67],[-45,56],[-21,105],[-76,104],[-10,85],[-61,0],[-5,57],[-92,171],[-66,47],[5,133]],[[23375,74979],[76,38],[117,0],[67,38],[61,0],[5,-57],[56,-10],[25,86],[112,38],[199,189],[147,66],[41,0],[10,67],[76,47],[87,-66],[188,28],[92,0],[147,48],[61,-19],[-5,-57],[-51,-48],[36,-66],[71,-28],[51,0],[41,47],[173,66],[214,-9],[-16,-57],[184,-9],[86,-57],[61,28],[46,76],[15,66],[-25,29],[-71,19],[-21,57],[-40,0],[-92,66],[-51,19],[0,76],[46,142],[92,57],[101,0],[51,-57],[10,-57],[56,-76],[77,10],[86,-29],[71,10],[77,57],[56,-10],[112,19],[30,-28],[56,0],[10,38],[189,0],[66,-48],[36,-95],[117,0],[152,67],[112,0],[112,-19],[51,28],[51,-28],[46,19],[35,-67],[-40,-19],[-26,-66],[5,-199],[-51,-95],[-112,-19],[46,-113],[-30,-67],[0,-76],[-66,-56],[-11,-57],[-81,-76],[-51,-86],[-51,-9],[-46,-85],[-5,-190],[21,-104],[25,-48],[71,-56],[148,9],[41,28],[86,10],[5,-114],[-30,-57],[30,-75],[-46,-57],[6,-29],[-62,-123],[-50,-57],[-51,-142],[-51,-76],[10,-38],[-36,-66],[-5,-104],[-76,-57],[-15,-48],[-82,-19],[-147,-180],[-46,-28],[-61,-86],[-21,-56],[-101,-95],[-92,-19],[-36,-38],[-117,9],[-61,-37],[-40,0],[-21,-48],[-173,-38],[-86,-66],[-41,0],[-82,-38],[-81,-66],[-46,-86],[-76,-95],[-61,-28],[-46,-104],[-92,-86],[-101,-208],[-41,-19],[-87,-152],[-91,-76],[-31,0],[-127,-113],[-204,-152]],[[26999,76126],[76,-123],[-31,-57],[0,-57],[-101,0],[-26,28],[5,67],[41,94],[36,48]],[[23828,66950],[30,-47],[56,-190],[41,-66],[-51,-48],[16,-37],[91,-67],[71,-104],[-81,-66],[46,-38],[40,-190],[-50,-47],[122,-38],[15,-48],[-51,-66],[97,-123],[10,-57],[-36,-133],[-20,-170],[15,-105],[-56,-19]],[[22805,66628],[87,-48],[101,-28],[128,0],[106,28],[92,0],[20,67],[107,9],[92,124],[56,56],[81,48],[87,9],[66,57]],[[14270,67538],[82,-19],[5,-29],[86,-19],[5,57],[51,29],[-66,66],[-5,104],[-61,67],[-193,-10],[-97,10],[-76,66],[-21,38],[-112,19],[-40,38],[5,57],[30,57],[-20,28],[10,95],[20,47],[5,95],[-56,199],[-10,142],[31,57],[-26,142],[11,38],[96,-9],[77,9],[10,29],[76,47],[76,-28],[72,28],[127,0],[102,-38],[-41,-85],[-5,-104],[61,0],[-15,-76],[76,-19],[36,-85],[-36,-67],[10,-142],[51,-85],[82,-67],[76,-113],[91,9],[-61,161],[31,86],[36,-10],[35,-57],[51,0],[15,76],[-71,9],[56,133],[15,133],[-30,85],[-71,19],[-16,76],[-46,0],[-86,47],[-51,-9],[5,66],[-71,133],[46,38],[-31,47],[31,124],[56,104],[40,19],[36,66],[81,0],[112,-76],[92,19],[31,-85],[-6,-57],[36,-19],[-20,-66],[15,-67],[56,-75],[31,-67],[91,-19],[26,-28],[61,0],[40,-38],[72,0],[20,-38],[66,47],[-5,57],[61,114],[41,38],[-26,38],[36,66],[5,67],[36,28],[137,-10],[26,-37],[173,-95],[91,-76],[51,-123],[153,-86],[81,0],[71,-19],[31,-37],[122,-38],[26,56],[-67,38],[0,67],[-25,28],[-234,57],[-82,38],[-15,85],[-41,76],[-86,85],[-219,19],[-46,29],[-5,57],[-51,85],[26,38],[51,-19],[66,9],[56,57],[66,-28],[10,-76],[46,-66],[107,-67],[178,0],[46,38],[137,10],[31,-29],[81,-19],[46,-66],[71,-47],[87,-95],[66,-10],[81,-94],[97,9],[41,-38],[96,-189],[0,-29],[77,-142],[71,19],[-46,161],[-41,47],[-66,133],[-76,57],[-66,9],[-21,67],[-40,57],[-66,19],[-31,-29],[-81,133],[-67,19],[-25,47],[-81,48],[-11,66],[102,9],[0,38],[51,19],[20,38],[-50,29],[0,113],[-158,0],[-92,67],[-5,47],[-71,29],[-112,9],[-10,19],[-128,10],[-10,47],[26,38],[-61,47],[-56,114],[-117,-9],[40,66],[-51,104],[-50,48],[-107,-19],[-163,66],[5,85],[46,38],[-61,67],[-92,28],[-30,76],[-36,38],[56,38],[-41,56],[76,124],[16,47],[56,10],[71,-38],[51,-48],[15,-47],[56,-38],[51,-85],[92,-57],[30,57],[87,9],[30,-76],[127,0],[87,142],[5,57],[56,86],[-51,28],[-25,48],[-51,18],[-36,57],[92,19],[107,-9]],[[16515,71159],[81,0],[41,-57],[112,-28],[51,-29],[101,19],[133,-76],[102,-104],[81,-47],[41,0],[86,-57],[61,-57],[97,-29],[41,-38],[91,-9],[-51,-133],[-61,-28],[-35,-48],[0,-85],[35,0],[61,-161],[77,0],[91,-66],[112,0],[-15,-95],[81,-19],[41,-48],[117,-56],[127,0],[31,-29],[-56,-38],[10,-180],[173,0],[102,-28],[-71,-95],[-133,-123],[41,-38],[61,9],[31,-95],[-163,-66],[-87,-66],[56,-48],[51,0],[26,-38],[-107,-85],[-21,-85],[-117,-10],[41,-66],[82,-66],[162,-76],[-5,-86],[87,-56],[76,-10],[127,-66],[77,0],[168,57],[86,-19],[77,9],[35,-57],[143,10],[91,-38],[66,-57],[21,-66],[76,0],[143,57],[45,56],[107,29],[107,9],[51,57],[76,0],[31,38],[25,142],[41,48],[82,19],[71,-19],[5,-67],[122,-66],[178,-114],[36,-66],[122,0],[97,-19],[132,38],[25,57],[-25,47],[-36,237],[107,66],[138,143]],[[21131,68998],[56,-10],[71,-104],[147,-29],[107,48],[92,0],[61,28],[92,0],[132,-208],[97,-10],[20,67],[127,-38],[92,-10],[81,-47],[133,0],[45,-19],[72,19],[91,57],[77,66],[101,47],[87,0],[30,19],[61,-19],[36,-75],[107,-95],[127,-67],[102,10],[71,57],[51,0],[26,76],[61,104],[10,47],[86,48],[117,9],[-35,-66],[-5,-95],[-51,-95],[-41,-38],[-92,-123],[-91,-152],[-36,-19],[-35,-85],[-128,-151],[-86,-48],[-15,-57],[-92,-66],[-10,-76],[-56,-85],[-5,-48],[-92,-132],[-102,-124],[-61,-56],[-193,9],[-71,19],[-5,47],[25,48],[-214,104],[-51,-28],[-71,0],[-81,-38],[-72,-57],[-66,-76],[-30,-10],[-41,-66],[-61,-9],[-41,38],[-76,19],[-122,-10],[-56,-76],[-66,-38],[-128,0],[-71,-161],[-86,-28],[-26,-29],[-81,10],[-168,-190],[-21,-47],[-71,-29],[-71,-142],[30,-9],[92,85],[107,19],[51,76],[117,104],[102,57],[91,66],[72,76],[106,76],[92,38],[143,0],[117,28],[56,0],[81,-76],[20,-37],[122,-10],[128,29],[117,85],[81,19],[31,57],[61,-38],[122,0],[25,-38],[-76,-123],[-76,-29],[-26,-47],[-71,-48],[-25,-66],[-41,-19],[-51,-95],[-56,-38],[-81,-113],[-31,-86],[-41,-38],[0,-66],[72,-95],[-82,19],[-117,0],[-92,-57],[-86,-94],[-5,-76],[-87,-86],[-5,-56],[-81,-133],[-41,-29],[-61,-85],[-15,-57],[-127,19],[-179,10],[-101,-19],[-46,28],[-97,0],[-122,-47],[-61,0],[-20,38]],[[15390,62400],[-97,-28],[-81,0],[-82,57],[-25,75],[-46,76],[-10,67],[-71,-19],[-31,66],[-46,0],[-86,57],[-250,-28],[-86,47],[-20,57],[-36,19],[-15,95],[15,47],[46,38],[20,57],[46,19],[86,85],[41,9],[36,95],[25,10],[-20,113],[-112,38],[15,105],[87,104],[132,19],[20,38],[128,0],[40,28],[97,29],[31,38],[117,-10],[66,-133],[71,-56],[36,-67],[56,-57],[137,-76],[15,-47],[92,19],[71,114],[-122,9],[-132,57],[-77,114],[-71,38],[-66,57],[-25,57],[-36,19],[0,66],[-138,-19],[-15,-19],[-102,-10],[-40,-28],[-112,47],[-102,-28],[-51,66],[-122,19],[-26,-28],[-96,-10],[-224,0],[-15,57],[45,10],[-40,66],[35,57],[-15,76],[46,66],[56,0],[30,76],[72,9],[-5,86],[20,19],[86,0],[31,57],[66,-10],[31,-57],[101,-9],[112,66],[61,66],[219,-9],[46,47],[92,57],[66,95],[41,10],[71,56],[46,95],[20,76],[-66,47],[-46,-56],[-41,-19],[-46,-105],[-50,-9],[-117,-123],[-92,-124],[-158,10],[-46,-29],[-66,-9],[-30,28],[15,57],[-127,10],[-21,95],[31,37],[102,19],[45,38],[0,57],[-25,38],[-127,-19],[-46,-57],[-76,-19],[-51,-57],[-97,-28],[-41,-66],[-86,-48],[-26,-57],[-142,-75],[-71,0],[-72,-29],[-127,114],[-10,123],[-25,-9],[0,-86],[-46,-19],[-26,209],[-25,66],[46,10],[10,66],[51,38],[-66,47],[-6,86],[36,85],[-41,85],[-122,0],[-51,67],[-5,113],[-51,86],[16,95],[10,151],[41,180],[15,29],[10,237],[25,0],[-5,104],[61,-19],[-20,76],[15,76],[61,-19],[41,76],[97,-57],[20,-38],[56,0],[0,-57],[66,-66],[56,-19],[46,-57],[26,-67],[40,29],[117,9],[-30,38],[46,29],[40,-48],[-10,-66],[10,-95],[61,-47],[56,9],[56,-104],[82,0],[-31,47],[-15,190],[56,-10],[-5,-47],[66,-9],[0,-114],[66,0],[5,66],[26,38],[61,-9],[147,28],[41,-38],[41,29],[61,-38],[46,9],[25,47],[10,95],[-46,38],[-86,10],[-92,-19],[-76,38],[-81,0],[-16,-29],[-152,19],[-5,-38],[-67,10],[-81,-10],[-122,104],[-51,0],[15,57],[92,19],[-36,57],[-76,0],[-112,67],[-46,94],[5,86],[-97,142],[-66,66],[-76,48],[-127,9],[-41,19],[0,76],[41,38],[0,76],[107,189],[-11,114],[97,9],[5,38],[46,38],[66,10],[97,-10],[25,-47]],[[13461,63585],[41,10],[97,75],[5,29],[91,19],[66,-19],[31,28],[76,0],[122,105],[102,9],[97,28],[20,-18],[82,0],[15,-38],[-76,-67],[127,19],[214,10],[61,-114],[-72,-95],[-20,-76],[20,-47],[-5,-66],[-25,-19],[0,-67],[-31,-19],[-127,-132],[-178,-114],[-46,0],[-35,-48],[-51,-28],[-92,-19],[-56,57],[-30,-38],[20,-47],[-10,-48],[20,-104],[66,47],[0,-75],[-76,-86],[-46,-114],[-97,-104],[-122,19],[-56,-142],[-35,-28],[-21,-67],[-35,10],[-72,-133],[21,-57],[-66,-28],[-72,-76],[-20,-57],[-102,-38],[-76,-95],[-76,29],[-123,-86],[-91,-9],[-5,76],[-56,66],[5,57],[-36,38],[0,95],[66,113],[61,29],[16,133],[30,47],[51,161],[-66,0],[46,104],[66,48],[51,66],[61,47],[71,10],[71,114],[51,9],[21,48],[86,0],[31,19],[122,28],[56,47],[-51,38],[-41,-47],[-41,0],[-35,-38],[-143,-10],[-35,38],[-66,0],[-168,-66],[-77,0],[-30,28],[10,114],[-71,190],[-51,0],[-21,104],[-35,47],[-31,-56],[51,-67],[15,-123],[-35,-123],[-82,-38],[0,-66],[-35,-95],[-46,-48],[-10,-94],[-41,-38],[-36,-86],[-25,0],[-51,67],[-51,0],[-20,57],[25,66],[-10,38],[31,151],[-41,57],[0,95],[-46,19],[-36,-47],[-86,47],[-15,48],[-87,28],[10,-171],[-51,-47],[-76,0],[-61,28],[-56,0],[-132,-57],[-82,0],[-229,-75],[-40,-29],[-5,114],[66,28],[81,133],[5,66],[-76,19],[-102,-85],[-76,-38],[-61,0],[-102,104],[-76,124],[-16,47],[16,76],[25,19],[132,0],[26,47],[-194,10],[-30,-29],[-61,0],[-72,76],[-35,0],[-5,85],[-36,48],[-66,47],[-61,142],[10,57],[-25,29],[-82,19],[5,199],[66,19],[46,38],[61,19],[31,47],[46,-9],[10,113],[76,-28],[31,-38],[96,-47],[77,-76],[61,-114],[71,-47],[31,37],[-46,38],[-107,171],[-102,95],[-56,0],[-5,38],[-92,57],[-132,-19],[-66,-38],[-5,47],[25,104],[-51,0],[-61,38],[-15,38],[36,67],[-46,9],[-20,95],[-61,-48],[-87,-19],[-41,19],[41,95],[-112,-19],[-46,-57],[-35,38],[-46,-47],[10,-142],[20,-48],[-10,-57],[0,-161],[-30,-38],[-61,0],[-6,38],[-71,-9],[-122,123],[-76,28],[-56,0],[-26,38],[-96,-19],[-56,76],[-61,38],[-62,0],[-55,38],[-62,114],[26,66],[-26,57],[-15,104],[-61,76],[-46,0],[-25,48],[-71,-10],[-36,47],[46,133],[-36,38],[36,66],[81,0],[77,-18],[10,-38],[107,-10],[-26,48],[-61,37],[-30,57],[-21,105],[5,170],[77,85],[106,29],[92,-199],[82,-85],[0,-48],[40,-19],[21,-95],[50,-19],[67,-142],[61,-47],[76,19],[26,57],[45,-10],[46,-114],[26,38],[-41,38],[-26,114],[-35,29],[-82,-10],[26,57],[-41,85],[-5,57],[-61,133],[-10,85],[102,-19],[30,48],[71,18],[66,-66],[36,-57],[56,0],[0,114],[-41,57],[-56,9],[-56,124],[-76,47],[-71,76],[-77,57],[-40,-76],[-26,19],[5,85],[61,38],[0,95],[36,104],[5,114],[-20,28],[10,86],[148,-67],[20,-38],[66,-19],[31,-85],[45,-57],[21,-57],[0,-142],[15,-57],[82,-28],[30,28],[107,-85],[92,-47],[40,-76],[66,-38],[112,-171],[31,67],[41,28],[25,57],[56,-29],[-30,-104],[-82,-133],[46,-66],[10,104],[76,67],[26,76],[71,18],[5,57],[-30,67],[20,38],[51,-19],[46,-57],[35,-142],[46,9],[92,-85],[0,-67],[71,-9],[51,19],[-82,123],[-122,95],[-61,142],[10,48],[-76,66],[-41,142],[16,85],[101,29],[56,104],[-157,0],[10,66],[-31,38],[21,133],[-92,161],[-36,29],[-30,75],[25,48],[72,9],[20,95],[117,0],[86,76],[21,0],[71,133],[-46,113],[21,38],[117,-19],[66,67],[71,0],[36,-133],[66,-85],[76,-10],[51,-66],[20,-114],[46,-76],[5,-113],[46,-29],[107,19],[81,-57],[62,-104],[0,-38],[45,-104],[51,-38],[21,-95],[40,0],[-10,-142],[5,-142],[21,-57],[-16,-57],[5,-247],[-30,-113],[25,-29],[31,-189],[-15,-180],[-31,-133],[0,-66],[-30,-57],[-77,-29],[-41,-66],[-81,0],[-10,-66],[127,-10],[10,28],[127,0],[77,-94],[5,-67],[-56,-132],[-46,0],[41,-95],[46,-57],[15,-57],[81,-114],[0,-47],[41,-66],[-127,-48],[-41,0],[-46,-57],[61,-9],[51,47],[306,0],[45,-38],[-10,-85],[41,-38],[-15,-38],[-158,-123],[41,-66],[76,75],[36,0],[61,67],[66,19],[66,-57],[36,-76],[86,0],[92,-38],[81,-57],[97,29],[56,-67],[41,-19],[-11,-104],[61,-19],[36,19]],[[14245,62429],[41,94],[203,0],[41,38],[122,38],[46,-47],[56,0],[71,-29],[81,0],[118,-189],[40,9],[41,-57],[92,-37],[40,19],[31,75],[56,-19],[91,19],[204,67],[97,0],[10,28]],[[12891,65945],[15,0],[87,-142],[0,-170],[-31,-67],[-25,-104],[-92,-133],[-51,-19],[-35,-66],[0,-57],[40,-66],[16,-67],[10,-208],[46,-104],[40,-57],[41,-10],[0,-95],[-25,-56],[-61,-57],[-51,-95],[-158,-48],[-66,29],[-26,66],[5,57],[-56,95],[-5,123],[36,57],[-10,133],[-26,57],[0,104],[-15,85],[20,48],[26,142],[61,104],[41,38],[122,-10],[56,-28],[35,76],[-40,28],[-16,67],[-50,28],[0,114],[76,-29],[112,19],[0,105],[-56,56],[10,57]],[[12937,64306],[168,-38],[30,-38],[82,-29],[56,-47],[30,-67],[0,-47],[-35,-47],[5,-86],[-36,0],[-41,-47],[-193,-19],[-76,123],[-51,19],[-77,123],[0,48],[31,104],[56,0],[51,48]],[[11904,62931],[96,-19],[36,-76],[-36,-66],[-76,0],[-46,-19],[51,-95],[-51,-9],[-30,-38],[-77,0],[-71,57],[-40,123],[66,19],[20,38],[102,19],[10,57],[46,9]],[[13069,66533],[46,-19],[20,-161],[-51,-104],[0,-86],[-25,-85],[-20,-142],[-72,28],[-30,38],[-26,114],[0,76],[87,0],[-25,123],[5,133],[101,19],[-10,66]],[[14703,68799],[112,-114],[35,-10],[21,-76],[-15,-28],[-82,10],[-102,94],[-20,67],[51,57]],[[15797,70315],[46,-57],[-15,-57],[96,-19],[-61,-66],[-86,0],[-36,48],[5,104],[51,47]],[[13624,64571],[25,-47],[72,0],[71,-86],[5,-47],[-36,-29],[-91,19],[-31,76],[-15,114]],[[13573,63945],[46,0],[41,-76],[-16,-56],[-66,-10],[-41,19],[0,95],[36,28]],[[15476,69244],[41,0],[31,-114],[0,-57],[-41,-9],[-46,47],[-15,48],[30,85]],[[10509,64467],[31,-48],[-20,-66],[-118,0],[46,95],[61,19]],[[16683,69680],[66,-9],[20,-29],[-30,-57],[-36,0],[-76,76],[56,19]],[[15660,70571],[15,-47],[56,0],[-41,-86],[-76,10],[-20,28],[20,67],[46,28]],[[13792,67841],[20,-19],[127,19],[-66,-76],[-51,0],[-45,38],[15,38]],[[15309,69841],[40,-114],[-81,0],[-21,38],[62,76]],[[15619,70249],[41,-95],[-66,0],[25,95]],[[9746,66040],[15,-66],[41,-76],[-66,0],[-16,95],[26,47]],[[13436,64211],[45,-67],[-56,-19],[11,86]],[[11451,67784],[41,-38],[-41,-28],[-36,38],[36,28]],[[23482,72657],[5,-67]],[[24657,71282],[-81,-28],[-30,-67],[-51,-19],[5,-38],[-61,-38],[-77,0],[-178,-189],[-51,-29],[-35,-56],[-41,0],[-76,-38],[-51,-86],[-77,-9],[0,-38],[-86,19],[-117,-57],[-41,-76],[-112,-95],[-30,-142],[0,-85],[-26,-47],[-127,-38],[-71,-67],[-21,-57],[-91,-9],[-31,-29],[-91,0],[-143,-85],[-97,-28],[-40,-105],[-5,-66],[-31,-123],[46,-57],[-46,-28],[0,-67],[31,-132],[-56,-38],[-6,-48],[-35,-28],[-5,-105],[66,-104],[122,-19],[-198,-57],[-184,10],[-193,-76],[-127,0],[-21,19],[-86,0],[-173,76],[-5,57],[-97,9],[-71,48],[-15,-29],[-77,19],[-132,-19],[-66,-76],[-97,10],[-102,95],[-35,-19]],[[16515,71159],[-31,28],[-56,0],[-86,123],[101,-9],[67,38],[61,0],[45,47],[-5,48],[-91,-38],[-92,0],[-91,19],[-46,28],[25,76],[-41,0],[31,76],[-5,47],[-117,48],[-66,57],[-10,104],[-62,0],[-15,123],[-46,28],[-56,95],[-106,38],[0,57],[30,19],[0,76],[61,38],[10,47],[46,10],[15,-76],[87,-29],[61,0],[20,-75],[56,0],[41,-29],[15,-76],[41,-38],[51,76],[91,48],[21,37],[56,29],[-56,38],[-36,76],[87,66],[30,-66],[77,0],[137,-67],[0,-38],[92,0],[51,29],[30,-48],[71,114],[51,-57],[36,57],[51,0],[0,67],[81,0],[51,18],[15,-56],[82,-48],[51,-57],[107,-38],[127,38],[10,38],[102,-9],[10,-104],[56,-29],[71,-95],[143,-19],[-31,76],[-122,76],[-26,0],[-50,66],[35,29],[204,-10],[96,19],[-66,38],[-81,-19],[-127,0],[-138,48],[-40,-10],[-51,-57],[-87,38],[-25,-19],[-77,38],[-66,10],[-107,142],[-51,-10],[-127,19],[87,57],[-82,104],[-46,29],[21,123],[46,29],[-46,47],[-41,-57],[-86,19],[10,85],[-26,57],[5,67],[-71,75],[97,19],[-36,48],[143,237],[-21,9],[-15,104],[51,76],[51,0],[61,-123],[92,0],[66,-47],[112,-19],[30,-67],[66,38],[36,48],[-36,28],[-61,0],[-15,57],[-56,47],[-117,0],[-92,67],[61,19],[31,47],[-86,0],[15,114],[117,95],[112,47],[122,-19],[51,-28],[122,-143],[0,95],[-66,29],[-41,75],[-173,10],[-76,104],[-77,29],[0,66],[-71,9],[-51,29],[-51,85],[31,38],[10,161],[56,114],[61,28],[0,48],[117,0],[97,76],[41,85],[50,57],[6,66],[66,67],[-21,19],[5,85],[41,28],[-25,57],[25,67],[-20,85],[41,76],[50,0],[82,-48],[20,-38],[158,-47],[51,47],[153,-28],[132,9],[15,-38],[71,-37],[41,-48],[66,10],[36,-57],[56,-38],[-15,-123],[5,-114],[20,-29],[61,0],[20,-75],[77,-86],[0,86],[-46,-10],[-51,95],[-56,19],[51,47],[46,86],[107,0],[0,75],[-41,19],[-61,105],[66,0],[76,-29],[0,-76],[102,-38],[5,-104],[31,-38],[86,19],[56,-28],[-15,-57],[71,-38],[66,0],[26,-38],[102,10],[-10,-67],[25,-95],[-46,-56],[-41,-10],[-61,-85],[-15,-67],[-36,-9],[-45,-66],[-36,-10],[-41,-104],[-61,-104],[-56,-67],[-56,-132],[72,-10],[50,47],[26,76],[36,-9],[61,38],[35,85],[61,9],[26,38],[71,0],[15,199],[61,105],[97,47],[81,0],[41,29],[41,66],[-5,104],[-41,76],[36,66],[-16,48],[51,76],[61,19],[56,-10],[255,0],[76,-19],[26,-76],[117,-28],[61,-29],[20,-104],[41,57],[35,0],[41,-76],[26,-85],[-31,-66],[41,-38],[56,0],[10,-152],[-132,0],[-72,-66],[-35,-67],[25,-28],[51,28],[-5,38],[41,67],[56,0],[45,-48],[62,85],[50,10],[82,95],[41,94],[101,86],[148,0],[71,19],[31,-29],[61,0],[86,-57],[11,-56],[76,0],[25,28],[-20,47],[148,-19],[-16,57],[26,38],[-16,57],[72,10],[15,-48],[92,-28],[56,47],[45,-9],[16,132],[91,10],[66,38],[112,-48],[21,-38],[56,10],[20,-57],[41,19],[-5,76],[107,57],[-6,95],[36,75],[138,19],[20,-47],[20,-152],[51,-19],[46,19],[178,-9],[76,38],[46,-19],[21,-76],[106,47],[97,-9],[20,-19],[87,0]],[[16922,73472],[66,-57],[-20,-67],[-72,0],[-20,-28],[-92,19],[-10,76],[82,47],[66,10]],[[20932,74969],[76,-28],[62,19],[-41,-123],[-66,19],[20,57],[-61,18],[10,38]],[[27197,52438],[-66,-152]],[[27131,52286],[-112,-19],[-26,-123],[112,-123],[-15,-19],[-81,0],[-138,-76],[-142,0],[-138,38],[-71,-66],[10,-38],[-112,9],[-25,-47],[-92,-57],[-51,38],[-71,-86],[-51,10],[-188,-218],[-112,-142],[-66,-10]],[[25635,51319],[20,29],[-25,76],[-46,28],[-66,114],[25,104],[41,85],[-5,76],[15,76],[71,47],[5,86],[-178,-10],[-97,48],[11,47],[40,28],[26,76],[-5,95],[-112,76],[30,57],[87,0],[15,66],[-86,19],[5,66],[-31,76],[92,29],[-5,76],[25,47]],[[25487,52836],[51,0],[86,-29],[97,0],[56,67],[56,28],[76,0],[31,-28],[148,9],[15,-47],[56,0],[51,-85],[76,-38],[25,19],[87,0],[56,38],[41,0],[10,-57],[97,0],[10,38],[51,28],[137,-28],[31,-57],[122,-133],[61,-38],[97,-85],[86,0]],[[30673,52409],[-81,-104],[-56,-9],[-46,-114],[-107,-114],[-61,-19],[-56,-66],[-117,-85],[-41,9],[-92,171],[-35,38],[-82,-29],[-66,47],[-91,-18],[-36,-48],[10,-76],[-51,-47],[46,-57],[71,-47],[61,-114],[-50,-123],[5,-38],[-31,-57],[-36,-19],[-66,57],[-61,-10],[-5,-85],[-51,-57],[-51,0],[-20,48],[-122,18],[-46,-18],[-5,66],[-81,9],[-56,29],[-128,-86]],[[29039,51461],[-40,10],[-87,-19],[-61,-47],[-71,9],[-36,66],[-61,0],[-30,48],[-41,-67],[-127,-56],[-36,0],[-102,-95],[-30,0]],[[28317,51310],[-21,66],[-35,19],[10,48],[-66,37],[-21,48],[-112,38],[-40,104],[-46,-28],[-26,28],[-86,28],[-5,105],[-56,76],[-5,66],[-56,28],[-26,57],[5,76],[-112,19],[-86,-47],[-20,-57],[-118,66],[-101,19],[-26,47],[-91,38],[-46,95]],[[27197,52438],[46,9],[56,57],[178,-47],[97,38],[81,47],[20,57],[82,28],[51,38],[81,-9],[76,19],[51,38],[31,66],[5,95],[-10,95],[46,75],[101,133],[51,38],[97,19],[36,66],[45,48],[41,76],[66,0],[143,38],[81,-57],[56,19],[163,-10],[76,-28],[36,28],[66,0],[15,-28],[97,9],[31,-47],[127,-19],[76,-95],[-5,-47],[26,-48],[66,-57],[35,0],[72,-113],[61,-57],[40,28],[82,0],[25,-19],[72,10],[5,-48],[183,-28],[41,-66],[86,9],[46,-85],[102,-48],[-10,-38],[91,-9],[36,-123],[61,-57],[66,-29]],[[28317,51310],[-41,57],[-81,-10],[-36,-123],[-46,-28],[-61,28],[-25,-38],[-62,-28],[-45,-76],[-66,9],[-16,152],[-40,57],[-77,-67],[-56,-94],[-117,-95],[-51,-10],[-102,-75],[-76,-76],[-122,-86],[-51,-85],[-46,-38],[-40,-76],[0,-66],[56,-66]],[[25263,50902],[-137,38],[-189,85],[-45,48],[-36,-48],[-66,67],[-61,28],[-31,38],[-20,76],[-117,-57],[-122,10],[-112,-29],[-87,-57],[-25,29],[-92,-57],[-76,-29],[-51,-66],[-66,10],[51,104],[-36,57],[112,113],[-107,152],[-51,247],[15,56],[128,57],[45,10],[-5,85],[-45,19],[-56,-38],[-153,-57],[-46,57],[-30,-38],[-72,-28],[-35,19],[-51,76],[-46,-10],[-41,95],[41,19]],[[25110,52921],[46,-19],[92,0],[97,-19],[50,-28],[92,-19]],[[37111,93681],[36,-38],[35,0],[36,-28],[76,-95],[10,-67],[31,-37],[30,-237],[-20,-10],[41,-190],[-31,-9],[-5,-85],[76,-10],[-5,-38],[-91,19],[-92,0],[-102,57],[-35,123],[-56,19],[40,-132],[-10,-29],[51,-47],[26,-67],[81,-28],[10,-85],[-51,-105],[-61,0],[-40,-38],[-31,67],[-76,19],[51,-104],[142,-10],[81,-104],[62,-29],[-21,-151],[-46,0],[5,-143],[-117,0],[-45,-37],[66,-38],[-15,-67],[50,-38],[-30,-142],[0,-104],[-51,-57],[-132,0],[-82,66],[-35,-19],[-72,10],[-35,-38],[96,-19],[-30,-133],[-183,-123],[-117,0],[-117,-104],[81,-29],[36,-75],[-61,0],[45,-105],[-15,-38],[-61,0],[-66,86],[-148,-133],[-91,-57],[40,-19],[112,76],[112,38],[16,-47],[-143,-86],[15,-28],[158,95],[71,19],[11,-105],[0,-151],[50,56],[0,67],[158,38],[-51,57],[66,104],[102,-29],[-5,67],[51,38],[0,47],[51,19],[41,66],[101,10],[0,-76],[-25,-66],[-51,-29],[-117,-161],[-76,-28],[-72,-48],[-50,-57],[-46,-85],[66,-9],[56,19],[30,75],[67,-9],[30,-47],[76,9],[-30,-66],[20,-48],[5,-95],[-35,-75],[-82,0],[-81,-86],[-51,38],[-107,0],[-81,29],[-87,-19],[46,-57],[-5,-123],[71,66],[36,-47],[51,0],[25,-48],[132,10],[-5,-48],[148,10],[-61,-95],[36,-104],[-148,28],[-76,-85],[-67,-38],[-71,-66],[31,-76],[96,9],[72,-19],[20,-38],[87,29],[0,-76],[-82,-19],[-41,38],[-35,-38],[-66,0],[-36,-142],[-148,-10],[5,67],[41,47],[-30,38],[-61,-9],[-67,37],[-10,-75],[46,0],[10,-76],[-76,-67],[-76,-9],[-26,-57],[107,-9],[56,56],[15,-104],[-61,-123],[41,0],[107,133],[30,-19],[-46,-67],[46,-47],[-86,-38],[0,-76],[-77,-95],[21,-37],[107,113],[91,38],[-5,-66],[46,-10],[-25,-75],[5,-57],[-51,-38],[46,-76],[50,-10],[-10,-75],[-61,-19],[0,-67],[36,-66],[-51,-10],[-10,76],[-51,-19],[-15,-151],[-46,57],[-82,18],[-10,-56],[61,-57],[-30,-86],[-51,-38],[-61,-9],[76,-104],[-30,-133],[5,-76],[56,-47],[10,-57],[-21,-47],[67,-19],[61,-67],[-97,0],[-92,-38],[-86,10],[0,-67],[51,-85],[-5,-76],[40,-9],[36,-95],[10,-171],[-30,0],[-36,143],[-41,28],[-25,-76],[-46,48],[-71,28],[-10,-57],[-51,10],[-5,-95],[45,-67],[36,-123],[-51,-47],[31,-76],[-72,-199],[-71,-19],[46,-57],[41,-9],[-36,-133],[26,-76],[-72,0],[31,-76],[51,0],[-16,-94],[6,-105],[-26,0],[-51,114],[-10,57],[-56,19],[-5,-57],[-71,9],[45,114],[-35,19],[-26,104],[-101,10],[-26,-48],[-61,-28],[-81,10],[-51,56],[-26,124],[56,38],[56,9],[0,142],[26,67],[91,37],[61,162],[-56,28],[-76,0],[41,85],[81,-66],[21,66],[-41,38],[-5,48],[-41,66],[0,38],[66,66],[31,-19],[41,161],[40,67],[26,227],[51,95],[20,114],[46,85],[25,180],[46,218],[-92,-19],[-5,-28],[-86,9],[0,38],[66,76],[-56,10],[20,142],[51,142],[-10,133],[-41,-38],[10,-67],[-40,-75],[-51,-19],[56,237],[-87,-218],[-25,9],[51,114],[-5,66],[25,19],[5,85],[36,86],[-10,123],[-46,-28],[-5,-48],[-127,-189],[-36,-19],[5,132],[-66,0],[0,95],[-36,57],[0,47],[82,-9],[-26,66],[-66,0],[-30,29],[-56,-48],[-72,19],[66,-95],[67,10],[0,-95],[20,-47],[56,-57],[-76,-38],[-11,-47],[-81,-10],[0,66],[-36,19],[0,-113],[-20,-48],[25,-85],[-35,-47],[-46,-105],[-66,19],[-82,76],[-15,-38],[-5,-180],[-25,-38],[-61,85],[0,29],[-189,19],[-10,95],[-36,57],[-111,9],[-26,38],[0,114],[26,38],[76,47],[66,0],[71,47],[-46,38],[0,86],[-40,28],[-31,66],[-51,-38],[46,-47],[-5,-104],[-66,-10],[-20,-57],[-107,-28],[35,104],[-71,38],[-31,-28],[-122,0],[16,-57],[-133,-57],[-5,38],[-127,76],[10,66],[-71,10],[-76,56],[-51,-9],[-16,57],[36,85],[-51,29],[-5,38],[41,37],[20,57],[-41,105],[-45,28],[76,142],[117,29],[86,0],[209,28],[87,-95],[35,-57],[46,48],[92,28],[-5,67],[66,19],[35,37],[87,48],[76,-10],[10,-75],[102,-10],[51,57],[71,28],[16,38],[106,48],[11,-76],[71,9],[97,-47],[30,-114],[10,-123],[56,9],[0,86],[21,28],[-26,76],[-10,123],[5,114],[61,66],[92,-28],[-15,142],[239,10],[25,37],[-76,57],[-158,-38],[-142,29],[56,38],[15,76],[-21,104],[-56,-19],[-40,-66],[-10,-67],[-41,0],[-102,57],[-36,48],[21,85],[-36,38],[10,76],[72,9],[15,38],[-87,0],[-76,-28],[-97,0],[0,85],[-45,76],[35,9],[5,85],[26,38],[-102,48],[0,189],[51,95],[-51,-9],[-66,-76],[-15,-95],[-36,-76],[-61,0],[-46,76],[15,66],[72,19],[-46,76],[-97,-47],[-92,28],[-35,67],[-41,0],[-86,-86],[-62,0],[-122,-28],[-96,57],[76,132],[15,76],[178,-19],[11,57],[35,10],[-10,104],[66,199],[31,0],[61,57],[46,0],[40,-48],[-10,-113],[36,-57],[117,-57],[71,-85],[102,-38],[25,-38],[61,0],[11,66],[-82,-19],[-36,19],[-127,171],[-35,9],[-26,57],[26,66],[96,48],[10,76],[62,28],[35,57],[66,10],[21,47],[-56,104],[35,57],[92,57],[-36,28],[41,76],[199,-57],[122,0],[30,124],[56,18],[46,-18],[15,66],[56,57],[245,0],[25,-10],[336,0],[117,124],[46,9],[-5,-246],[45,85],[-5,142],[26,10],[15,151],[25,10],[16,123],[0,104],[-26,48],[51,142],[-20,76],[147,28],[51,-9],[26,-57],[66,57],[158,0],[-46,28],[0,19]],[[37940,94638],[31,-28],[0,-171],[-15,-95],[86,76],[-5,48],[41,113],[51,0],[51,-66],[76,-9],[117,9],[25,-95],[51,0],[31,-47],[-137,0],[-51,-38],[20,-47],[66,0],[31,-76],[0,-133],[-46,0],[-51,38],[-51,-10],[-66,48],[-46,-29],[61,-37],[56,-133],[87,-48],[30,-75],[-5,-67],[-30,-38],[-377,-322],[81,-38],[102,-123],[-107,-66],[-40,18],[-209,38],[0,57],[-87,-19],[-20,-66],[-51,-47],[-147,19],[5,75],[-77,-9],[51,152],[-30,75],[0,86],[122,-10],[-21,104],[-30,38],[10,67],[97,66],[-31,95],[36,0],[20,95],[0,76],[-81,104],[25,57],[82,38],[25,47],[-20,57],[81,-10],[21,86],[66,47],[-21,76],[61,47],[56,0]],[[38200,92344],[-56,67],[-61,-29],[-46,67],[-71,-10],[-117,10],[-5,-48],[102,-38],[10,-38],[61,-66],[-168,-57],[-21,57],[-45,10],[-26,94],[-56,124],[-66,56],[-10,67],[-41,0],[10,85],[46,76],[112,-10],[71,-56],[72,19],[40,66],[61,19],[87,-48],[46,0],[66,-47],[5,-152],[71,10],[46,-38],[26,95],[55,0],[82,-67],[-71,-180],[-56,0],[-10,-104],[-112,38],[-31,28]],[[37004,89017],[-46,-28],[36,-123],[-21,-133],[82,9],[30,-47],[-5,-123],[-51,-29],[-25,-85],[-10,-142],[-143,-19],[-51,28],[-66,67],[-10,170],[36,0],[15,95],[-56,76],[-76,47],[-26,114],[61,10],[10,37],[107,-47],[102,-9],[-5,66],[87,66],[25,0]],[[37762,90695],[11,-85],[-87,-48],[-56,-76],[-51,-113],[-41,-10],[-40,-66],[-41,0],[-15,-85],[-66,-29],[-82,0],[-66,48],[-71,0],[-5,66],[56,0],[25,57],[-10,47],[35,67],[56,47],[138,38],[56,95],[35,-29],[87,0],[102,19],[30,57]],[[35238,90723],[20,-47],[87,-19],[61,-57],[66,0],[5,-151],[-66,-76],[-86,-29],[-153,-9],[-46,19],[-51,57],[-15,104],[-31,19],[11,76],[71,-10],[15,76],[66,47],[46,0]],[[32088,88714],[25,-29],[71,10],[72,-133],[-36,-47],[-20,-161],[-163,19],[-61,104],[-92,38],[15,95],[189,104]],[[33823,90335],[46,-38],[92,9],[96,-9],[36,-29],[-51,-104],[-66,-95],[-76,0],[-72,38],[-101,143],[30,47],[66,38]],[[34363,83500],[-21,-85],[31,-28],[-26,-114],[-71,-19],[-5,-85],[-56,-19],[-36,19],[-15,57],[5,104],[56,95],[-20,66],[137,-9],[21,18]],[[35788,88373],[30,-124],[-81,-170],[-36,-29],[0,-75],[-35,-133],[-107,-133],[-56,0],[-10,48],[86,47],[20,66],[-5,142],[66,105],[51,9],[26,38],[-5,57],[-72,-19],[6,85],[96,-28],[5,104],[21,10]],[[35859,88193],[30,-57],[-50,-95],[-6,-47],[-40,-76],[-41,-124],[-41,-56],[-30,56],[41,38],[10,171],[-10,38],[76,114],[61,38]],[[35019,90297],[15,-57],[62,0],[50,-85],[-45,-57],[-107,-38],[-15,66],[71,10],[5,38],[-117,-10],[51,123],[30,10]],[[37157,88685],[25,-28],[117,0],[10,-95],[-25,-76],[-66,29],[-117,133],[56,37]],[[34475,89159],[81,-47],[20,-76],[-25,-19],[-148,19],[-20,76],[92,47]],[[37381,92695],[15,-28],[71,9],[21,-38],[-51,-38],[0,-47],[-51,-10],[-46,-47],[-61,10],[-5,66],[61,47],[-5,67],[51,9]],[[35986,88486],[-46,-104],[0,-104],[-81,-76],[-20,57],[45,66],[-20,95],[61,47],[61,19]],[[37762,93207],[92,-28],[71,-76],[-46,-38],[-45,0],[-72,76],[0,66]],[[35457,90306],[46,-56],[-36,-86],[-51,-47],[-46,28],[5,67],[36,28],[-25,57],[71,9]],[[36414,87425],[147,-123],[-91,-38],[-26,19],[-30,142]],[[38510,91065],[-10,-57],[41,-48],[-122,0],[25,105],[66,0]],[[37197,90543],[-25,-75],[5,-67],[-51,-28],[-15,113],[51,57],[35,0]],[[35564,88667],[51,-19],[-16,-86],[-71,10],[36,95]],[[35538,88411],[0,-86],[-40,-9],[-5,95],[45,0]],[[35554,87614],[86,-47],[-71,-19],[-15,66]],[[38561,91065],[21,-67],[-72,19],[51,48]],[[28948,78211],[30,-114],[-10,-66],[-132,10],[-97,-57],[-127,9],[-21,-57],[-50,-47],[-6,-57],[-76,-47],[-15,-105],[-46,-47],[-25,66],[-61,29],[-11,47],[-112,67],[-76,28],[-36,-85],[26,-48],[-26,0],[0,-9],[-25,0],[-15,-10],[0,-9],[-10,-10],[10,0],[0,-9],[-56,-57],[30,-28],[21,37],[81,-37],[-10,-105],[25,-28],[143,0],[-92,-67],[-51,-18],[-35,-67],[30,-28],[0,-67],[41,-38],[-20,-37],[-56,28],[-61,-47],[0,-67],[-92,-95],[20,-85],[-30,-104],[-61,-48],[66,-75],[76,-38],[-41,-114],[-10,-76],[-81,0],[-76,-28],[-67,19],[0,75],[-56,-18],[0,66],[-40,9],[-31,67],[51,57],[5,151],[-61,57],[-61,104],[-51,10],[-30,85],[40,48],[41,-10],[46,-76],[56,10],[0,57],[-71,57],[-46,56],[-72,-56],[-50,-19],[0,66],[81,76],[107,-19],[127,47],[102,-9],[122,9],[81,29],[11,47],[-112,-28],[-122,28],[-112,47],[-67,10],[6,38],[91,38],[10,-67],[36,0],[81,67],[46,0],[56,-38],[41,0],[-15,95],[-36,56],[5,48],[71,0],[26,19],[0,9],[15,19],[0,29],[20,28],[-5,38],[-188,-19],[10,85],[-56,86],[-25,9],[-26,95],[-86,123],[-5,57],[20,104],[-71,29],[-51,-86],[-92,-75],[-132,-48],[-143,-9],[-50,-76],[-87,38],[-76,-10],[-77,-123],[-66,0],[-51,29],[-35,-29],[-56,0],[-21,-38],[-132,0],[-46,76],[-56,47],[-61,152],[21,190],[-92,57],[-51,-10],[0,-76],[-188,-28],[25,-85],[-76,0],[-31,28],[-61,0],[-20,57],[-51,28],[-56,0],[10,76],[-35,66],[-21,285],[26,38],[0,113],[45,38],[-35,114],[66,76],[-31,95],[16,95],[-36,47],[15,114],[-30,57],[41,75],[112,95],[5,95],[61,47],[178,10],[15,28],[148,67],[91,19],[143,0],[20,-48],[82,-57],[71,0],[61,-76],[81,-9],[87,-76],[102,-28],[30,38],[56,0],[36,-105],[81,0],[26,-56],[5,-143],[76,-66],[71,0],[31,-28],[35,-105],[-30,-66],[20,-19],[-61,-114],[-41,-47],[-61,85],[-101,10],[-21,-19],[46,-95],[-51,-38],[10,-66],[-96,9],[-36,-66],[-46,0],[-25,-124],[122,10],[-26,-47],[77,0],[112,56],[30,57],[46,-19],[76,19],[56,-9],[6,-48],[40,-28],[56,0],[51,-38],[10,-104],[41,0],[51,47],[15,142],[61,76],[56,-76],[26,38],[56,0],[10,-57],[-56,-85],[46,-95],[-77,-19],[21,-56],[-11,-86],[138,-9],[30,47],[87,48],[46,104],[56,-48],[163,29],[25,66],[56,-47],[20,-142],[-152,-38],[-51,-76],[25,-66],[16,-143],[101,-57],[41,0],[31,124],[-82,66],[46,28],[86,0],[11,38],[142,76],[71,0],[41,48],[82,19],[20,-67],[-26,-114],[-30,-37],[-10,-67]],[[26449,76770],[-51,0],[-51,76],[-76,-19],[-87,0],[-51,-28],[-152,199],[5,57],[-56,57],[15,28],[-173,180],[-36,57],[-20,180],[-61,57],[-92,-9],[-25,18],[-102,0],[0,67],[56,104],[0,85],[36,95],[71,86],[122,9],[61,66],[92,0],[112,-28],[10,-76],[51,-38],[-10,-47],[91,-29],[51,0],[188,-123],[67,-28],[25,-38],[82,-57],[-31,-66],[20,-105],[72,-38],[-61,-104],[91,-38],[-46,-76],[66,0],[82,-28],[-66,-95],[-56,0],[-133,-95],[-81,0],[-41,-19],[-40,-113],[81,-29],[66,29],[77,123],[55,-10],[72,29],[107,-10],[20,38],[56,0],[41,-28],[-16,-171],[-218,-57],[-87,10],[-76,47],[-41,-38],[-5,-57]],[[29691,81500],[35,-56],[-10,-67],[168,-66],[-46,-67],[-76,-9],[-20,-28],[15,-133],[20,-29],[72,-9],[86,85],[97,48],[30,85],[56,0],[51,-28],[66,0],[51,142],[61,66],[56,0],[0,-95],[26,-47],[-10,-76],[56,-57],[152,-9],[5,-38],[-219,0],[-101,57],[-61,-19],[-82,0],[-66,-38],[-20,-76],[-51,-76],[-26,0],[-40,-95],[-41,-57],[10,-75],[46,0],[5,-86],[-36,0],[-76,105],[-61,-10],[-41,38],[-76,-9],[-15,-124],[-77,19],[10,57],[-71,38],[-15,-47],[-61,57],[-41,9],[-91,-28],[-21,-124],[-122,-104],[-20,-76],[-82,-28],[0,-104],[-40,9],[0,66],[-26,19],[-5,114],[25,123],[61,-9],[21,57],[56,-10],[46,76],[-5,38],[101,57],[51,76],[46,28],[46,-9],[-10,85],[76,0],[-10,76],[-77,47],[62,104],[132,10],[71,85],[5,76],[-25,66]],[[27777,81842],[56,-76],[61,57],[10,-86],[-61,10],[-61,-29],[21,-94],[-31,-86],[-117,-9],[-30,-67],[142,0],[-10,-66],[102,19],[5,-66],[157,-19],[56,-29],[-5,-66],[46,0],[21,-57],[0,-114],[132,-19],[91,-189],[-56,28],[-56,-9],[-66,-86],[-10,-66],[-61,-28],[-5,76],[41,28],[20,114],[-15,38],[-66,9],[-102,152],[-66,38],[-5,38],[-87,-10],[-46,-28],[41,-38],[-51,-67],[-92,0],[-20,-75],[-66,28],[-76,95],[-77,38],[36,66],[-26,85],[16,38],[-61,105],[-51,0],[-107,85],[-26,95],[184,-76],[35,47],[97,-19],[41,57],[51,0],[15,95],[132,133]],[[27207,80458],[26,-38],[96,0],[5,-95],[67,-57],[188,0],[71,76],[82,-10],[56,-47],[-6,-66],[-76,0],[-36,-114],[41,-123],[31,-57],[-16,-38],[-106,-28],[-51,-38],[-234,0],[-72,66],[-91,28],[-21,48],[-56,9],[-30,48],[-10,66],[-61,38],[-26,95],[51,38],[51,104],[127,95]],[[29375,80135],[56,-47],[-35,-114],[193,-28],[-97,-76],[-5,-57],[56,-85],[127,38],[143,-10],[-56,-66],[10,-95],[31,-38],[76,-19],[-66,-95],[-117,10],[-77,-57],[-50,0],[-62,-57],[-15,237],[-46,10],[-71,66],[-46,0],[-81,-66],[66,-105],[-36,-38],[6,-66],[-107,19],[-46,-19],[-46,38],[0,57],[41,28],[40,143],[31,47],[132,9],[46,-19],[36,67],[-5,66],[-102,66],[-15,48],[-82,85],[173,123]],[[28739,80894],[20,-57],[-35,-48],[5,-66],[61,0],[71,-57],[5,-66],[-76,-85],[-36,-199],[5,-114],[-10,-95],[31,-38],[66,-28],[-15,-76],[-97,9],[-148,-47],[0,66],[-35,57],[10,48],[-41,66],[-46,9],[-10,48],[-56,19],[0,161],[56,-57],[97,-19],[61,28],[25,38],[-5,143],[-61,56],[41,105],[-41,38],[16,56],[86,48],[56,57]],[[28525,79491],[26,-29],[-16,-142],[-66,-66],[-30,-85],[25,-86],[46,-57],[0,-47],[-107,-95],[-35,67],[-77,0],[-25,37],[-82,10],[-107,-10],[-15,-94],[-46,66],[56,28],[-51,38],[-20,-47],[-122,28],[56,114],[0,48],[46,28],[-10,66],[56,48],[45,0],[46,-57],[153,-29],[41,19],[45,67],[-25,57],[61,57],[76,0],[11,56],[45,10]],[[27222,77453],[16,-76],[-82,0],[-51,-47],[-76,-19],[15,-48],[61,0],[46,29],[41,-29],[-31,-66],[21,-47],[-122,28],[-5,-47],[-128,-10],[-46,29],[-45,104],[96,104],[41,29],[158,18],[91,48]],[[28154,82060],[56,-86],[-15,-85],[-46,-9],[-36,-105],[56,-76],[-5,-94],[-36,-76],[-66,47],[-61,-19],[5,114],[-15,66],[97,209],[10,95],[56,19]],[[30561,82126],[41,-9],[30,-67],[-137,-28],[-41,-38],[-10,-85],[31,-67],[-67,-104],[-35,0],[-31,85],[-46,-19],[-51,38],[36,29],[15,75],[41,57],[-15,67],[61,19],[81,-19],[51,9],[46,57]],[[27940,80202],[76,-48],[-40,-218],[5,-66],[-46,-28],[-76,94],[-16,95],[0,123],[36,48],[61,0]],[[26047,78221],[91,-19],[31,-48],[66,38],[36,-76],[-5,-47],[-61,-28],[-143,37],[-36,114],[21,29]],[[27747,79832],[40,-9],[5,-105],[-61,-38],[-183,38],[158,105],[41,9]],[[26739,77500],[92,-113],[5,-57],[-41,-38],[-66,0],[-21,76],[-30,19],[25,85],[36,28]],[[27742,79529],[30,-104],[56,-19],[-132,-48],[-41,67],[-51,9],[5,66],[122,10],[11,19]],[[28836,80865],[71,-94],[46,-38],[-31,-29],[-61,0],[-66,48],[0,75],[41,38]],[[28378,80818],[40,-85],[-10,-38],[61,-142],[-30,-67],[-36,10],[-25,322]],[[29004,77917],[76,-9],[112,-48],[-66,-66],[-21,66],[-86,0],[-15,57]],[[27319,76590],[-20,-113],[-56,-29],[5,85],[71,57]],[[26693,77766],[107,-86],[-66,-57],[-36,67],[-5,76]],[[29579,80088],[41,-9],[0,-86],[-82,38],[41,57]],[[29645,79074],[71,-48],[-71,-85],[-20,104],[20,29]],[[26948,80012],[81,-9],[0,-38],[-71,-38],[-10,85]],[[27100,77045],[-20,-66],[-46,38],[66,28]],[[11105,71775],[-51,-66],[5,-105],[56,-104],[5,-66],[-30,-48],[30,-57],[-15,-85],[-97,-19],[-41,48],[-40,-38],[-133,-10],[31,-76],[-46,0],[-36,-47],[-40,-10],[-10,-56],[-36,-29],[-127,-9],[5,-29],[-112,10],[-51,-48],[-87,-19],[-106,0],[-102,-19],[25,-38],[56,19],[219,0],[41,48],[152,0],[26,19],[137,0],[31,-29],[56,0],[-31,48],[0,28],[16,0],[0,-9],[5,9],[10,29],[56,-10],[5,48],[122,0],[25,-57],[-10,-76],[-46,-29],[82,-94],[56,-19],[-56,-76],[51,-19],[10,-66],[-36,-95],[-244,0],[168,-57],[127,0],[36,-19],[-5,-85],[-31,-19],[-10,-86],[-66,-19],[-41,-57],[5,-66],[-66,10],[-41,75],[-51,19],[-30,-28],[-56,19],[-66,-47],[-21,56],[-35,19],[-36,-47],[-76,9],[-71,-28],[-56,0],[-178,-28],[15,-29],[198,-9],[5,19],[148,0],[92,-67],[20,-123],[5,-104],[-51,-57],[-30,0],[-6,-171],[-20,-28],[-107,0],[-46,19],[-40,-86],[-51,-28],[-26,104],[-35,29],[-77,0],[51,-95],[10,-104],[-61,-10],[-101,-57],[-87,38],[-30,86],[-41,37],[-71,152],[-82,85],[-46,-9],[56,-66],[46,-114],[0,-38],[46,-38],[0,-57],[-56,-28],[-36,38],[-107,-29],[-76,123],[-30,29],[-82,180],[-56,47],[-25,48],[-16,170],[36,57],[-46,95],[5,142],[-66,-85],[-122,-47],[0,-76],[76,-76],[51,-133],[21,-114],[-16,-56],[87,9],[51,-114],[61,-66],[36,-123],[-118,-38],[148,-133],[0,-76],[31,-28],[-31,-57],[-142,0],[-21,28],[-147,29],[-61,-10],[-56,67],[-97,28],[-76,-28],[25,-57],[-46,-48],[-71,0],[61,-104],[92,10],[30,-19],[56,-95],[-25,-38],[51,-28],[15,-67],[56,-19],[35,-114],[-40,-28],[-112,-9],[-16,28],[-81,28],[5,-113],[-10,-95],[-31,0],[-50,76],[-36,-29],[-56,19],[-56,57],[-15,66],[-51,-19],[35,-85],[-5,-66],[-66,57],[-41,-19],[41,-114],[-15,-76],[-61,57],[-61,-28],[10,-67],[46,-95],[-122,0],[-46,29],[-15,-66],[50,-48],[-112,-47],[-71,0],[-5,-86],[-25,-66],[-66,-38],[-77,0],[-20,-28],[-56,85],[-26,10],[-45,75],[-31,-9],[-46,57],[-20,66],[-31,10],[-96,94],[-36,0],[-102,152],[-5,47],[-46,57],[-86,10],[-87,76],[-30,66],[15,47],[-41,57],[97,10],[46,28],[61,-57],[56,-19],[15,-66],[92,-10],[81,57],[5,29],[107,28],[26,67],[40,9],[16,85],[40,48],[-20,38],[66,28],[56,-38],[61,38],[15,76],[-30,47],[0,57],[66,38],[-5,67],[76,9],[77,66],[188,-38],[25,-47],[117,28],[72,0],[-36,67],[-46,28],[-61,86],[112,9],[-30,57],[-56,-38],[-46,38],[-209,19],[-61,85],[-66,10],[-102,47],[-10,-19],[-158,85],[0,-47],[-112,-19],[-117,38],[-112,76],[-51,0],[-35,57],[15,66],[-15,76],[-51,57],[-46,-76],[-61,38],[41,66],[81,38],[-15,57],[30,85],[87,-9],[46,-76],[71,142],[71,48],[112,28],[87,66],[122,-9],[30,38],[-45,28],[-67,-9],[-112,-57],[-56,0],[-50,-48],[-107,0],[-72,95],[61,10],[-40,85],[30,57],[61,9],[-10,57],[-91,-28],[-5,-67],[-133,29],[-56,47],[-15,86],[5,104],[-36,38],[-20,151],[-56,0],[-56,86],[31,142],[61,-28],[40,66],[-25,19],[76,57],[41,104],[-46,38],[-30,76],[35,76],[72,9],[15,-38],[81,0],[122,19],[-30,57],[-92,19],[26,76],[5,76],[35,47],[16,133],[71,76],[41,9],[30,-76],[122,-9],[5,-48],[107,-66],[31,57],[-21,38],[77,19],[20,-76],[36,-10],[35,-57],[112,-18],[16,-95],[-148,-10],[-46,-28],[21,-48],[127,-66],[117,19],[35,-95],[-10,-237],[36,-76],[25,-123],[41,57],[-66,123],[-20,133],[25,76],[51,28],[-51,67],[15,57],[133,56],[-11,38],[112,29],[26,-19],[163,-29],[10,-38],[112,-28],[81,19],[66,-152],[51,29],[5,85],[-56,-28],[-15,56],[-86,29],[-16,66],[11,57],[76,0],[-41,66],[-35,-9],[-31,95],[-41,66],[-107,48],[-25,75],[-51,38],[-15,124],[56,75],[-97,19],[-30,57],[101,38],[16,104],[30,48],[127,19],[72,-29],[30,67],[61,0],[61,123],[56,0],[31,66],[147,29],[31,19],[10,75],[51,0],[51,38],[30,-47],[112,-19],[87,57],[25,47],[56,10],[31,38],[92,19],[66,-10],[-5,57],[45,38],[11,57],[81,123],[107,10],[41,85],[101,66],[67,29],[81,132],[153,95],[30,29],[102,9],[46,66],[66,10],[56,66],[56,104],[117,0],[86,67],[92,123],[-51,66],[87,67],[56,-10],[25,-57],[92,-37],[30,-38],[-15,-57],[51,-76],[91,-57],[67,-66],[10,-57],[-56,-48],[10,-132],[36,0],[86,-105],[-46,-123],[-61,-66],[-5,-57],[-41,-47],[-40,-95],[-31,-123],[46,-105],[112,-104],[71,0],[16,-38],[-163,-28],[-61,-114],[-61,-66],[-56,-10],[-36,-66],[10,-86],[-20,-37],[-163,-29],[15,-47],[-41,-48],[-5,-104],[-56,-19],[-127,0],[-25,-57],[5,-76],[30,-66],[-71,-66],[-15,-38],[46,-76],[76,-48],[36,-56],[86,-19],[46,47],[51,0],[30,57],[97,28],[97,67],[5,57],[41,0],[40,94],[97,38],[41,-9],[35,38],[0,57],[77,-19],[61,9],[-11,-104],[-55,0],[-6,-114],[-61,-76],[26,-19],[-31,-132],[-61,-57],[-46,0],[-81,-38],[-61,-123],[-92,-38],[-81,-10],[-46,76],[-46,0],[-30,85],[-61,67],[-61,0],[-72,-29],[-107,-132],[-71,9],[-41,133],[-106,-19],[-36,-38],[56,-76],[46,38]],[[5420,66609],[-10,57],[-51,-10],[-10,57],[66,48],[20,-48],[66,48],[0,56],[-30,57],[117,48],[0,47],[41,190],[35,47],[128,-38],[-6,38],[179,-9],[51,38],[86,28],[107,0],[0,-57],[66,0],[102,85],[-10,76],[71,38],[20,85],[66,19],[-5,-94],[-35,-29],[81,-133],[61,38],[66,0],[26,-38],[56,0],[61,67],[-5,95],[102,0],[5,28],[81,10],[36,56],[40,0],[72,-85],[81,-76],[10,-95],[-46,-66],[-81,-28],[26,-38],[122,9],[71,-47],[168,9],[-5,38],[-122,48],[-61,-76],[-41,76],[137,38],[66,-19],[56,-38],[11,-48],[45,-28],[102,-29],[21,-28],[-102,-152],[-36,-28],[-25,-95],[-72,10],[-117,132],[-86,0],[-26,-57],[-56,29],[-20,38],[-71,19],[0,85],[76,-28],[41,38],[-82,37],[-50,-37],[-77,0],[-20,-38],[97,-29],[10,-76],[-56,0],[-5,-38],[86,0],[153,-47],[-41,-47],[0,-67],[26,-38],[5,-66],[51,28],[91,-19],[5,29],[77,19],[30,-38],[-41,-66],[-15,-105],[-66,-85],[-81,-38],[-102,0],[-173,19],[-92,-19],[-46,-28],[-157,0],[-46,38],[25,37],[56,-9],[-5,66],[-56,-28],[-36,-47],[6,-48],[71,-28],[224,0],[173,9],[46,19],[101,10],[56,-19],[-20,-114],[20,-66],[-71,-105],[0,-95],[-153,-9],[-50,38],[-123,-57],[-10,-38],[26,-133],[40,-19],[5,-85],[-45,-9],[-51,38],[-133,9],[-66,29],[-81,56],[-82,-19],[-86,0],[0,10],[-36,19],[-30,0],[-26,19],[0,28],[-35,48],[-56,19],[-16,-57],[-96,38],[-5,132],[-41,76],[-31,10],[-40,76],[-61,66],[-26,0],[-122,152],[-66,37],[-153,10],[5,57],[-40,76],[-62,19],[-45,56],[-61,-9],[-31,38]],[[6260,65083],[-10,-10],[0,-28],[20,38],[20,0],[11,-10],[15,19],[15,0],[31,-38],[10,0],[20,-38],[51,-19],[25,-47],[51,-38],[92,0],[25,-95],[67,-47],[-46,-85],[66,-38],[61,-86],[71,-19],[0,-56],[97,19],[-5,-57],[-51,-57],[-56,-10],[-81,-75],[81,-48],[51,29],[56,-19],[-10,-76],[15,-76],[117,19],[25,-66],[-50,-29],[10,-95],[-51,-47],[-82,0],[-25,-47],[-66,-67],[-15,-104],[20,-38],[-56,-38],[-20,-47],[20,-38],[-31,-76],[-142,-29],[-61,19],[0,76],[-77,0],[-40,-28],[-82,0],[10,-38],[107,28],[61,0],[41,-123],[41,-19],[76,19],[56,-104],[15,-76],[51,-85],[21,-105],[-16,-85],[-30,-76],[-51,-28],[-102,0],[-91,66],[25,-85],[-107,28],[-66,-9],[25,-85],[26,-19],[122,9],[0,19],[117,10],[61,-10],[36,-47],[56,0],[-26,-67],[117,-66],[72,-29],[-16,-56],[-35,-10],[-26,-95],[-51,-28],[-30,28],[-71,0],[-92,76],[-71,0],[-71,-47],[-275,0],[-97,28],[10,38],[-66,19],[5,57],[-41,95],[-35,123],[-46,38],[46,85],[0,38],[-66,152],[-26,114],[15,28],[-15,76],[10,104],[-40,10],[0,113],[-67,67],[77,57],[25,66],[21,265],[20,76],[46,0],[40,95],[11,265],[-21,114],[-51,161],[-91,142],[25,67],[36,-19],[76,47],[21,57],[106,10],[26,151],[51,-28]],[[6387,65775],[10,-29],[10,-19],[26,-19],[41,0],[20,-19],[25,-9],[133,19],[45,-57],[87,-38],[71,-9],[133,-86],[30,-47],[-30,-47],[-117,47],[0,-66],[81,-19],[-20,-48],[-77,10],[-76,-48],[41,-38],[86,0],[56,19],[71,-75],[11,-57],[-16,-105],[-152,-19],[20,-75],[-81,38],[-82,18],[15,-75],[-152,0],[-72,-10],[-56,38],[-25,47],[-46,19],[-20,38],[-41,38],[-10,0],[-20,0],[-5,-9],[-31,0],[-25,38],[-148,9],[5,123],[-25,67],[-61,57],[45,94],[-56,10],[51,104],[107,0],[31,48],[-21,85],[158,57],[56,0]],[[5832,62002],[128,-57],[20,-57],[0,-85],[46,-57],[-72,-57],[-10,-47],[56,-57],[66,-19],[-5,-57],[26,-66],[96,-29],[-25,-85],[-71,0],[-41,-38],[-56,0],[-5,-38],[-46,-38],[-20,-47],[-15,-114],[-112,-38],[-143,10],[10,57],[-46,19],[-56,-76],[-66,19],[-91,0],[-87,28],[-35,38],[40,57],[-5,57],[51,38],[127,9],[5,76],[41,76],[-36,57],[21,28],[-5,76],[25,38],[127,0],[36,38],[61,19],[46,104],[15,85],[-20,19],[-5,105],[30,9]],[[8560,72372],[97,-38],[91,10],[51,-57],[11,-123],[55,-38],[56,57],[21,-76],[66,-38],[10,-57],[61,9],[16,-47],[-6,-133],[-66,10],[-30,47],[-128,-19],[-173,10],[-50,76],[0,37],[71,10],[-36,171],[-107,19],[-20,85],[10,85]],[[7985,69443],[61,-9],[46,-152],[-51,-104],[5,-29],[-91,-66],[-133,123],[-41,-9],[0,-86],[-45,-38],[-102,-9],[-10,57],[61,95],[41,0],[76,38],[25,113],[46,48],[71,-10],[41,38]],[[7237,67870],[86,-67],[-25,-47],[0,-76],[-61,19],[-51,-19],[46,-66],[-61,0],[-5,-57],[-178,-10],[-62,48],[41,47],[56,104],[21,86],[91,28],[102,10]],[[7390,70448],[20,-47],[92,-29],[15,-47],[25,-171],[-86,-19],[-31,47],[-168,38],[-66,143],[82,56],[66,0],[51,29]],[[5247,61054],[56,0],[56,-38],[71,10],[-25,-67],[234,-28],[10,-47],[-107,9],[-25,29],[-97,-57],[0,-48],[158,0],[-5,-38],[-72,-47],[-66,19],[-30,-29],[-66,-9],[-16,57],[36,47],[-5,67],[-61,0],[-66,28],[40,104],[-20,38]],[[6906,68268],[76,-10],[67,-104],[-31,-57],[-71,-57],[-122,0],[-97,86],[41,104],[81,0],[56,38]],[[6540,62268],[178,9],[-21,-95],[-35,-66],[-31,-152],[-40,-19],[-72,57],[-10,57],[21,47],[-11,57],[-30,19],[5,95],[46,-9]],[[9476,69073],[56,-19],[77,0],[5,-28],[101,-9],[26,-29],[41,-114],[-77,-19],[-10,-28],[-132,19],[-36,123],[-51,-9],[-51,85],[51,28]],[[137,68628],[72,-66],[30,56],[61,-28],[82,9],[25,-56],[51,-48],[-25,-28],[-67,19],[-71,-48],[-56,0],[-71,38],[-31,152]],[[4982,60021],[26,-85],[-46,-86],[36,-38],[-92,-75],[-71,0],[-36,66],[31,76],[-21,57],[16,38],[117,9],[40,38]],[[7130,65832],[92,-19],[30,-86],[0,-75],[-46,-38],[-66,-86],[-56,29],[26,66],[-5,47],[-72,10],[-20,28],[51,114],[66,10]],[[4865,66116],[0,-47],[41,-48],[97,19],[56,48],[51,-29],[-41,-104],[-36,-57],[-56,9],[-5,76],[-56,-19],[-10,48],[-51,9],[-76,-57],[-71,0],[-6,57],[112,19],[11,57],[40,19]],[[7105,65035],[10,-132],[-56,-38],[-31,-48],[-96,10],[-36,28],[56,124],[36,28],[117,28]],[[5456,60656],[66,0],[41,-38],[66,-95],[-46,-9],[5,-47],[-87,-10],[-50,66],[-31,0],[-20,86],[56,47]],[[6127,62031],[51,-19],[36,-76],[-36,-10],[-30,-66],[-71,0],[-26,47],[36,105],[40,19]],[[5211,60296],[77,-29],[-41,-85],[-122,29],[-5,66],[91,19]],[[9369,70182],[61,-104],[-25,-85],[-41,19],[-66,85],[10,67],[61,18]],[[6616,67708],[71,-66],[-35,-38],[35,-66],[-81,0],[-46,57],[0,85],[56,28]],[[7588,67955],[51,-57],[41,0],[61,-76],[-41,-19],[-81,19],[-61,67],[30,66]],[[4886,59680],[127,-10],[-26,-66],[-35,-19],[-66,9],[-51,86],[51,0]],[[7639,68163],[25,-104],[26,-19],[-15,-66],[-77,57],[-46,57],[87,75]],[[6311,61661],[101,-48],[11,-66],[-77,38],[-51,-9],[-40,47],[56,38]],[[11130,69291],[36,0],[0,-85],[41,-9],[5,-67],[-46,10],[-10,66],[-77,48],[51,37]],[[7385,70865],[66,-28],[-5,-95],[-51,0],[-10,123]],[[6759,64960],[101,-19],[0,-57],[-127,-38],[-5,47],[36,10],[-16,28],[11,29]],[[10754,70154],[112,0],[-11,-57],[-117,0],[16,57]],[[8580,72457],[82,-47],[41,-47],[-92,-10],[-31,104]],[[13766,79889],[31,-28],[-10,-105],[-66,0],[-5,48],[61,9],[-11,76]],[[6448,61718],[15,-86],[-40,-19],[-77,57],[56,48],[46,0]],[[8341,72192],[26,-114],[-61,19],[-36,57],[71,38]],[[10830,71055],[-15,-19],[0,-29],[-16,-19],[-10,0],[-10,0],[-15,-19],[-51,0],[41,76],[76,10]],[[92,68675],[0,-57],[-82,-28],[-10,76],[92,9]],[[8540,72002],[76,-85],[-36,-47],[-45,38],[5,94]],[[7761,67206],[46,-19],[10,-95],[-81,29],[25,85]],[[5878,60827],[10,-76],[-61,19],[0,38],[51,19]],[[6178,61500],[72,0],[15,-76],[-46,0],[-41,38],[0,38]],[[748,69054],[41,-94],[-82,0],[41,94]],[[7293,66865],[71,-29],[0,-66],[-76,38],[5,57]],[[8865,68505],[72,-38],[-51,-38],[-21,76]],[[7563,67253],[45,-47],[-40,-38],[-41,57],[36,28]],[[7252,65832],[61,-29],[-15,-38],[-66,19],[20,48]],[[7715,67225],[-25,-85],[-36,38],[5,47],[56,0]],[[7415,66827],[41,-95],[-46,0],[-20,48],[25,47]],[[6804,63178],[46,-19],[-15,-48],[-51,10],[20,57]],[[8413,72107],[50,-10],[6,-47],[-46,-19],[-10,76]],[[11273,69320],[20,-66],[-46,0],[26,66]],[[28729,61130],[66,-76],[41,0],[30,-104],[41,-95],[71,-9],[117,-86],[36,-85],[-10,-123],[96,-19],[-5,-171],[-35,-237],[20,-57],[76,-113],[0,-67],[92,-38],[20,-75],[56,-95],[0,-57],[77,0],[35,47],[46,-19],[132,10],[51,-48],[67,29],[66,-38],[15,-47],[66,-48],[92,-38],[46,-95],[50,-56],[61,28],[82,0],[71,38]],[[30398,59386],[-46,-85],[-35,-114],[-41,-171],[-5,-66],[56,-38],[-31,-28],[5,-95],[-152,-123],[-56,0],[-82,-124],[-25,-123],[30,-114],[62,0],[30,-57],[-41,-85],[-61,-76],[-15,-57],[-71,-56],[-15,-95],[-72,-48],[-5,-66],[-91,-76],[-56,0],[-87,-47],[-10,-29],[-82,0],[-86,-94],[-76,-133],[-138,-67],[5,-37],[-137,-114],[-56,0],[-41,-57],[-10,-85],[-71,-162],[-56,-9],[-122,66],[-112,48],[-148,9],[-71,-66]],[[28383,56912],[-56,85],[41,86],[-16,28],[-107,9],[-5,29],[-142,-19],[-71,28],[-56,-9],[-26,57],[-132,-29],[-92,10],[0,-48],[-71,0],[-122,57],[-117,-9],[-102,-29],[5,-123],[-117,10],[-46,-29],[-66,-9],[41,-105]],[[27126,56902],[-148,0],[-51,105],[-66,0],[10,66],[-178,85],[-66,57],[15,38],[-25,48],[-61,37],[-26,48],[56,19],[82,-19],[51,19]],[[26719,57405],[0,9]],[[26719,57414],[5,48],[40,47],[-61,47],[-66,152],[31,38],[107,38],[157,95],[46,47],[36,66],[71,38],[-15,67],[66,66],[-15,29],[-128,-57],[-122,-114],[-112,19],[21,57],[51,38],[-51,76],[-117,-19],[-31,47],[97,28],[-36,86],[112,9],[36,85],[-41,76],[-66,0],[-26,-28],[-50,19],[-97,0],[-87,38],[-86,9],[-132,95],[-36,-47],[-46,0],[-25,132],[-41,19],[-26,48],[6,57],[-21,66],[-41,66],[-81,0],[-36,76],[-66,57],[16,28],[-72,86],[26,76],[-41,47],[-56,0],[-56,142],[46,48],[30,123],[36,28],[46,95],[-36,47],[0,48],[66,47],[-86,95],[-41,-10],[-61,95],[-81,19],[45,67],[36,0],[56,85],[-5,66],[36,48]],[[25747,60410],[45,85],[46,0],[82,104],[35,-9],[133,38],[66,66],[25,66],[-35,86],[61,28],[40,-66],[184,-19],[127,-76],[46,-38],[178,19],[61,-28],[40,-48],[36,-85],[61,0],[61,47],[-25,76],[10,142],[61,86],[20,56],[-20,86],[20,38],[51,9],[0,67],[82,9],[40,38],[51,-10],[117,67],[82,-38],[127,9],[71,19],[61,-28],[41,57],[107,-10],[66,29],[-10,57],[71,37],[77,-9],[40,-47],[36,9],[46,-57],[117,-9],[46,-95],[106,-38],[87,-9],[56,28],[56,-19]],[[23650,60940],[51,-94],[45,-19],[97,76],[66,19],[72,-10],[40,-123],[102,-19],[102,0],[30,66],[11,76],[96,-9],[82,-67],[102,19],[35,38],[138,10],[30,-48],[-5,-57],[81,-151],[-35,-95],[35,-57],[51,9],[61,57],[41,-66],[36,28],[112,-9],[45,-85],[36,-19],[127,0],[51,28],[36,66],[46,10],[40,-38],[184,-19],[56,-47]],[[26719,57414],[0,-9]],[[27126,56902],[10,-47],[92,0],[40,19],[66,-76],[67,-104]],[[27401,56694],[-21,0],[-188,-133],[15,-66],[-51,-85],[-51,-10],[-10,-57],[-107,-28],[-122,0],[-51,-95],[-96,-57],[-143,-19],[-76,-38],[-77,-66],[-132,-10],[-35,-57],[66,-18],[56,66],[40,-48],[-81,-47],[-81,0],[-41,-28]],[[19558,56978],[-46,29],[-112,0],[-40,38],[-16,66],[36,76],[51,38],[51,85],[5,114],[-26,47],[-35,0],[-66,57],[-92,19],[15,85],[97,29],[66,57],[66,-10],[31,57],[81,9],[183,57],[31,-28],[56,38],[-26,104],[-50,95],[-56,38],[-61,95],[-82,9]],[[28383,56912],[-173,-48],[-122,38],[-107,0],[-10,-19],[-107,0],[-265,-132],[-86,-10],[-112,-47]],[[18840,55661],[16,-95],[-82,-66],[-66,0],[-112,-95],[66,-161],[107,28],[61,-114],[10,-123],[-61,-57],[102,-28],[143,0],[86,-86],[0,-66],[-35,-47],[-51,-124]],[[19024,54627],[-51,-56],[-51,-10],[-102,-123],[-51,-133],[-76,-104],[0,-38],[-51,-76],[-10,-123],[-51,-29],[-66,-94],[-41,-105],[-51,38],[-61,0],[-36,124],[0,56],[36,67],[5,95],[-107,208],[-40,0],[10,-104],[56,-76],[-10,-123],[-31,-48],[-5,-132],[46,-76],[96,-76],[31,-76],[-92,-170],[-5,-38],[-61,-57],[-25,-57],[20,-38],[5,-114],[36,-104],[-15,-57],[25,-38],[10,-180],[-15,-38],[-107,57],[-46,0],[-40,47],[-77,-37],[21,-57],[101,-29],[72,-38],[30,-57],[-10,-75],[-66,-105],[-51,-57],[-15,-113],[-41,-95],[0,-57],[-36,-123],[-107,-152],[-5,-57],[-40,-95],[-112,19],[-77,38],[-112,19],[21,105],[-36,66],[-10,152],[-26,66],[-5,104],[-56,152],[-15,76],[-61,66],[-66,29],[-46,56],[0,38],[-76,199],[-36,-19],[46,-104],[10,-114],[71,-113],[46,-29],[61,-151],[0,-57],[41,-228],[-20,-57],[-133,10],[-40,19],[-102,123],[-82,47],[-71,95],[-71,10],[-31,47],[-20,95],[20,76],[-71,-19],[-10,-124],[30,-37],[-30,-76],[-21,-105],[-50,0],[-21,-37],[-96,-105],[0,-66],[86,-161],[56,-133],[20,0],[0,-114],[31,-38],[0,-104],[-87,0],[-45,85],[-97,10],[-41,76],[-152,0],[-41,57],[-26,-29],[-61,10],[-10,57],[26,94],[-36,10],[-10,57],[-36,57],[-97,47],[-25,85],[31,38],[-26,57],[36,66],[-26,67],[26,66],[0,57],[56,104],[5,48],[-77,75],[-5,67],[41,57],[-15,123],[46,47],[5,67],[61,0],[56,94],[71,152],[10,95],[31,57],[71,57],[25,75],[82,76],[20,38],[92,95],[30,10],[46,75],[5,152],[51,76],[82,47],[61,19],[71,0],[81,29],[87,75],[91,48],[92,95],[-10,57],[35,113],[46,95],[72,114],[96,104],[133,76],[122,28],[81,95],[66,29],[41,66],[46,9],[35,48],[-35,38],[-51,-67],[-153,-75],[-61,-57],[-122,-29],[-117,-66],[-51,9],[5,76],[-35,19],[-46,-57],[-61,-132],[-72,-57],[-10,-76],[-56,-57],[-15,-180],[-102,-152],[-76,-57],[-56,0],[-107,-57],[-81,-9],[-112,-95],[-41,-57],[-56,-28],[0,-38],[-92,-95],[-5,-133],[-66,-28],[-61,-47],[-56,-114],[-20,-104],[-117,-48],[-21,76],[-41,-28],[36,-67],[-61,-47],[10,-152],[-30,-38],[-5,-57],[-92,10],[-15,-76],[-66,-85],[-87,0],[-36,-38],[-40,66],[-51,10],[-36,47],[-5,57],[-61,9],[-5,-85],[-20,-28],[15,-57],[10,-190],[-20,-66],[20,-95],[51,-57],[25,-57],[5,-113],[16,-19],[10,-143],[15,-28],[5,-152],[46,-66],[41,-114],[0,-57],[35,-38],[41,0],[10,-47],[46,-66],[66,-67],[21,-75],[86,-57],[31,-76],[0,-48],[45,-56],[21,-67],[0,-76],[25,-57],[-15,-85],[-51,-85],[-51,19],[-71,-10],[-56,-66],[-66,-19],[-46,-38],[-41,0],[-61,-66],[-15,-67],[-51,-19],[-71,-123],[-66,-95],[15,-75],[-15,-105],[-36,-57],[-25,-113],[-31,-76],[-5,-66],[-66,-57],[30,-76],[5,-275],[41,-76],[36,-19],[5,-142],[-41,-10],[-15,48],[-82,-19],[-30,-57],[20,-57],[-20,-76],[15,-47],[-15,-66],[15,-114],[-66,-29],[0,-94],[-51,-152],[10,-95],[-91,-76],[-16,-47],[-45,-29],[-11,-180],[-45,-56],[-72,-124],[-86,-9],[-41,19],[-35,-29],[86,-94],[87,9],[5,66],[112,57],[35,-38],[-66,-57],[26,-104],[76,-85],[61,-209],[-20,-113],[-87,-105],[-61,-94],[-41,-29],[-15,-85],[-97,-48],[-101,-85],[-123,0],[-106,29],[-82,-29],[-102,10],[-71,-48],[-86,-85],[-214,-38],[-66,47],[-117,48],[-21,47],[5,85],[21,67],[5,170],[-26,57],[11,142],[35,143],[-15,75],[56,57],[61,95],[86,48],[6,75],[106,10],[51,66],[36,180],[0,152],[10,180],[0,133],[-10,132],[51,114],[-10,123],[-46,162],[0,104],[112,66],[5,76],[30,28],[6,133],[25,29],[0,85],[25,28],[0,171],[21,9],[0,86],[20,38],[-10,57],[-46,66],[66,57],[117,66],[46,57],[112,190],[5,47],[41,57],[51,104],[15,57],[76,123],[72,-9],[193,161],[31,76],[56,19],[76,66],[56,85],[-10,48],[40,76],[41,28],[41,66],[-46,19],[-30,-57],[-56,0],[-6,-47],[-45,-85],[-67,-38],[-96,-161],[-46,-29],[-56,-76],[-46,-9],[-112,-85],[-35,0],[-97,-105],[-87,-19],[-5,86],[36,47],[-51,66],[41,38],[-51,29],[-26,-29],[-66,-9],[-40,57],[-77,47],[-25,180],[30,67],[0,170],[41,48],[36,132],[45,38],[51,86],[31,113],[86,171],[92,95],[10,38],[-127,-10],[-51,-47],[-15,-57],[-77,-57],[-25,-66],[-71,-19],[-87,-123],[-30,9],[-16,95],[21,85],[-41,10],[15,85],[102,218],[0,38],[87,85],[112,171],[35,95],[107,170],[51,0],[41,29],[-102,28],[41,66],[71,57],[-41,19],[-97,-38],[-40,-38],[-61,10],[-16,-29],[72,-47],[-87,-142],[-20,-67],[-61,-75],[-26,142],[-51,-161],[51,-19],[-76,-123],[-36,-95],[0,-38],[-71,-133],[-61,0],[-15,85],[51,143],[-51,9],[-10,38],[45,85],[56,76],[5,48],[112,208],[36,47],[5,76],[87,10],[-5,123],[20,76],[81,66],[61,123],[92,152],[46,0],[30,-38],[36,29],[92,9],[5,57],[-61,19],[-6,76],[-61,0],[0,38],[61,123],[0,38],[133,227],[56,76],[-10,57],[61,114],[-92,0],[-15,-76],[-82,-123],[-96,-19],[-51,-48],[-5,-57],[-66,-66],[-6,-47],[-40,-48],[-66,19],[71,124],[5,85],[-20,38],[40,47],[51,114],[26,0],[35,66],[0,57],[36,29],[30,94],[41,29],[10,95],[-10,56],[-71,10],[-10,57],[117,9],[20,48],[92,9],[86,95],[26,47],[-16,57],[-35,0],[-41,-66],[-46,9],[-56,-38],[-132,19],[-87,-104],[-91,19],[20,123],[51,105],[-30,113],[10,29],[-5,104],[35,66],[21,171],[30,19],[76,104],[77,19],[56,-38],[86,-19],[61,86],[-45,19],[-51,-86],[-41,76],[-46,0],[-10,66],[61,152],[15,66],[36,38],[61,105],[81,66],[67,9],[-11,48],[-45,38],[0,123],[56,0],[45,95],[56,38],[189,28],[35,-19],[56,19],[153,0],[51,38],[51,-9],[20,-57],[66,9],[31,38],[107,-19],[91,-38],[56,57],[82,-142],[71,-19],[20,47],[77,0],[35,29],[77,0],[81,57],[97,161],[71,47],[20,95],[51,19],[41,66],[0,38],[51,38],[46,85],[15,95]],[[14545,56258],[-61,-76],[-81,38],[-77,-10],[-40,48],[40,180],[-56,9],[-10,-47],[-56,28],[26,-94],[-11,-57],[-106,-19],[-16,-95],[-168,-133],[77,0],[40,29],[67,9],[117,105],[188,9],[5,-76],[-71,-123],[-51,-38],[-61,-19],[-82,-104],[-127,-67],[-76,-75],[-46,0],[-66,-48],[-92,-28],[-30,-57],[-168,28],[-66,29],[-26,57],[87,47],[30,95],[71,28],[-20,86],[-183,0],[-132,-152],[-41,-85],[-82,-57],[-96,-10],[-51,29],[-71,9],[-36,-76],[-76,-47],[-31,-47],[-127,-86],[-107,10],[-61,76],[-51,-48],[-183,-9],[-122,-95],[-51,0],[-31,38],[-102,-19],[-10,19],[-132,0],[-5,-29],[-77,-9],[-81,9],[-15,-75],[-51,-114],[-46,9],[0,48],[-92,0],[-50,-38],[-107,28],[-26,48],[5,85],[-45,-29],[-56,0],[-26,29],[-71,0],[-82,19],[41,76],[0,38],[56,19],[-41,66],[26,133],[-5,56],[25,57],[66,76],[77,10],[66,-38],[142,0],[67,-57],[30,9],[26,-123],[-16,-47],[97,9],[51,-9],[0,66],[-56,85],[0,48],[107,19],[61,-67],[152,19],[62,29],[71,-38],[81,0],[71,66],[133,-9],[51,19],[5,47],[51,10],[51,38],[81,9],[97,57],[76,19],[41,95],[-41,56],[15,38],[-66,38],[-61,-38],[-81,-113],[-36,28],[-61,-19],[-26,-47],[-40,0],[-46,-38],[-92,-19],[-152,9],[-102,-75],[-127,9],[-72,104],[21,105],[40,85],[87,76],[107,57],[81,189],[-10,85],[66,29],[26,66],[132,0],[117,-19],[97,29],[61,104],[46,28],[61,0],[46,76],[66,67],[0,47],[-31,38],[-76,19],[-102,-76],[-86,-9],[-128,-57],[-107,-10],[-30,-38],[-56,-19],[-61,76],[-56,-9],[-15,57],[35,19],[-5,56],[-41,57],[-112,38],[0,38],[-61,0],[-20,47],[-71,19],[-71,38],[-41,57],[-163,-47],[-112,0],[-46,47],[-76,-9],[-10,28],[-82,0],[-56,38],[16,76],[-6,76],[31,28],[66,0],[92,67],[81,142],[-41,0],[-61,-48],[-66,38],[5,57],[-20,114],[25,28],[77,10],[25,28],[77,0],[40,-28],[41,38],[0,57],[61,-19],[148,-95],[-36,95],[-10,189],[132,0],[31,76],[142,-9],[15,37],[51,19],[26,38],[76,-19],[10,48],[66,-19],[0,-67],[148,-66],[102,0],[30,-38],[0,-66],[-40,-57],[40,-47],[67,9],[61,-38],[81,-123],[25,-76],[72,-66],[46,-10],[20,-66],[-10,-57],[61,-57],[10,-95],[46,-94],[-10,-38],[45,-95],[46,0],[31,38],[122,-67],[51,29],[244,0],[102,-114],[76,57],[102,9],[41,-75],[56,-19],[35,-114],[122,-76],[128,29],[45,-76],[0,-48],[77,-19],[76,-85],[20,-66],[62,9],[35,38],[36,-66],[-10,-190],[-16,-38],[-51,0],[36,-104],[-51,-95],[-5,-66]],[[10896,51613],[46,38],[51,0],[15,57],[66,47],[31,48],[46,9],[20,38],[112,95],[61,-29],[56,-104],[112,10],[76,57],[5,47],[168,95],[66,85],[51,28],[61,124],[31,-19],[97,0],[25,47],[61,29],[82,0],[81,28],[10,-161],[-30,-104],[-5,-95],[-21,-67],[56,-47],[15,-85],[36,-95],[0,-66],[31,-67],[0,-199],[-11,-66],[62,-142],[5,-76],[35,-67],[102,-66],[81,-95],[-5,-123],[-20,-76],[25,-66],[62,-29],[25,-37],[-15,-76],[-41,-76],[41,-104],[40,-19],[5,-105],[-50,-66],[-92,-38],[-25,-47],[15,-48],[-117,10],[30,-57],[-10,-95],[-71,-28],[-46,38],[-51,-29],[-35,-47],[-62,0],[-76,-76],[-81,38],[-77,-47],[-81,66],[-112,-19],[-15,-47],[15,-57],[-87,-180],[-30,-48],[-97,-28],[-40,-76],[-143,0],[-25,28],[-51,-9],[-5,57],[-82,0],[-41,28],[31,38],[-5,85],[25,171],[31,19],[66,152],[46,38],[142,9],[31,38],[0,104],[-61,190],[-92,151],[-96,76],[-62,-19],[-56,10],[6,132],[25,38],[10,86],[46,9],[36,38],[61,0],[30,57],[51,9],[76,57],[0,67],[-122,104],[-61,-19],[-56,38],[-61,0],[-91,-38],[-16,-66],[-96,-218],[0,-38],[-72,-142],[-35,-29],[-46,-85],[-112,-142],[-158,-105],[-71,-57],[-51,-66],[-46,0],[-86,38],[-10,95],[-51,19],[0,47],[76,76],[36,9],[15,95],[-51,38],[46,95],[0,38],[66,85],[71,67],[0,66],[51,66],[0,114],[-25,28],[-97,19],[10,95],[92,85],[30,76],[-10,86],[20,66],[0,152],[102,57],[56,9],[51,-57]],[[14336,54163],[31,-9],[51,-95],[-5,-152],[25,-76],[-112,-161],[-71,-123],[-148,-285],[6,-28],[-133,-246],[-66,-19],[-10,-57],[-56,-95],[-10,-76],[-46,-104],[-36,-38],[-35,9],[-16,-123],[-61,-104],[5,-66],[-40,-105],[-51,-47],[-31,-95],[-15,-123],[-81,-10],[-31,-85],[25,-47],[-40,-76],[-31,38],[-76,0],[-46,-29],[-36,-94],[0,-57],[-40,-114],[25,-123],[-41,-76],[-20,-114],[-30,-76],[-72,0],[-10,29],[-86,-10],[-36,29],[-87,-19],[-61,19],[-30,38],[-82,9],[-50,47],[-92,190],[5,85],[-20,38],[15,171],[-41,38],[16,76],[-6,123],[72,85],[66,123],[10,67],[92,123],[96,85],[46,-9],[56,47],[178,-9],[41,47],[92,-19],[45,38],[128,10],[71,85],[-21,38],[-71,-10],[-56,-38],[-10,-56],[-132,0],[-10,28],[-102,38],[-56,0],[-61,47],[-26,76],[10,57],[62,104],[50,48],[6,38],[50,19],[5,94],[51,86],[128,94],[40,10],[72,104],[56,57],[66,19],[76,85],[112,48],[20,38],[51,9],[46,95],[66,28],[31,76],[76,-19],[15,57],[51,47],[51,0],[46,67],[15,66],[36,29],[56,0],[25,57],[66,9]],[[17319,57490],[-46,-114],[-51,-75],[-56,-38],[-20,-48],[-51,0],[-61,-28],[-10,-67],[-31,-66],[-51,-28],[0,-95],[-51,-38],[10,-47],[-239,-114],[-35,57],[-92,75],[-102,10],[-20,-28],[-82,18],[-76,0],[-86,29],[-31,38],[-117,-10],[10,-66],[-20,-28],[-239,0],[66,94],[-15,105],[-36,75],[-51,38],[-56,-9],[-56,-104],[-61,47],[-51,-57],[-36,0],[72,133],[40,47],[0,38],[41,76],[117,171],[51,28],[46,-19],[-36,-85],[41,0],[0,-86],[51,0],[25,-47],[143,85],[96,0],[31,67],[46,0],[71,85],[36,76],[81,0],[46,-19],[92,28],[20,48],[-87,9],[-96,-57],[-133,19],[-61,-38],[-25,-47],[-92,-85],[-96,-57],[-62,0],[-66,85],[0,85],[-66,-28],[-25,76],[10,114],[51,28],[51,95],[127,180],[0,38],[132,133],[61,37]],[[16901,52229],[46,-28],[71,0],[87,-123],[81,-67],[56,-66],[97,-38],[31,-47],[45,0],[21,-57],[-71,-95],[15,-38],[66,9],[46,-28],[0,-133],[61,-38],[61,57],[66,-19],[-5,-85],[15,-95],[-10,-38],[15,-76],[41,-75],[0,-95],[51,-104],[5,-86],[-41,-38],[-66,-9],[-10,-85],[87,-86],[15,-95],[-21,-28],[-56,0],[-35,-28],[-61,9],[-51,66],[-61,124],[0,85],[-51,38],[-26,47],[-71,29],[-10,57],[-46,9],[-51,-57],[-30,10],[-26,76],[-10,104],[10,95],[-40,9],[-46,47],[15,162],[36,123],[-46,47],[-51,-19],[-81,38],[-56,104],[-56,29],[-67,133],[-35,28],[0,95],[-26,66],[36,57],[66,19],[5,38],[66,66]],[[9222,57670],[76,-114],[61,10],[21,-47],[0,-86],[-41,-47],[-71,28],[-77,-28],[26,-48],[-56,-47],[-5,76],[-72,38],[-101,-48],[-21,-56],[61,-38],[-51,-95],[-20,-95],[-41,19],[-219,9],[-45,-18],[-107,-133],[30,-114],[-20,-38],[10,-85],[-71,-38],[-122,19],[-46,85],[-41,38],[-86,0],[-21,-47],[-51,0],[11,94],[0,190],[-11,95],[-35,38],[41,132],[50,48],[67,9],[35,67],[143,-19],[40,28],[51,-38],[61,-9],[16,-57],[71,9],[46,48],[10,57],[107,38],[30,38],[122,18],[36,-56],[61,28],[36,-9],[10,75],[61,10],[41,66]],[[10606,58836],[92,-28],[15,-67],[-31,-94],[-45,-86],[-16,-66],[-107,-161],[-45,-114],[-46,-28],[-66,47],[10,-152],[-46,10],[-76,-38],[-21,-67],[-76,-18],[0,-48],[-112,-9],[-71,-19],[-56,-57],[-26,85],[-51,-19],[-35,-104],[-51,0],[10,76],[-30,19],[-92,0],[-41,-29],[-10,-132],[-66,-19],[-31,104],[-45,9],[35,95],[41,-9],[61,85],[107,-19],[15,76],[56,0],[46,152],[81,18],[21,38],[-10,57],[25,57],[66,0],[20,57],[41,0],[15,47],[62,0],[-6,57],[107,29],[16,47],[61,57],[66,28],[76,86],[127,19],[36,28]],[[11899,53063],[-36,-28],[-76,0],[-16,-95],[-56,-28],[-30,-48],[-46,38],[31,95],[-102,-9],[-20,47],[35,57],[56,9],[41,124],[-97,-57],[-51,19],[122,132],[-20,38],[41,38],[-10,114],[56,114],[40,28],[41,66],[71,19],[-10,48],[36,19],[137,-19],[-5,114],[102,47],[35,38],[72,-10],[25,-38],[-46,-75],[-45,-133],[-62,-85],[-5,-76],[-91,-86],[15,-37],[-56,-19],[10,-67],[31,-19],[5,-76],[-56,-75],[-71,-57],[5,-67]],[[11975,57073],[188,-38],[21,-57],[-10,-57],[-41,-57],[-168,10],[-71,-28],[0,85],[-61,-29],[-128,-9],[0,57],[-66,9],[-102,67],[-127,-10],[-10,85],[41,57],[91,0],[41,-47],[31,28],[86,-9],[5,28],[92,-19],[0,38],[56,10],[132,-114]],[[15711,57708],[-31,-85],[-51,-38],[-137,-180],[-66,-67],[-31,-66],[-81,-114],[-133,-75],[-51,-86],[-193,-133],[-25,48],[71,57],[10,114],[-10,75],[214,95],[15,48],[41,9],[81,95],[66,114],[97,75],[35,57],[97,10],[41,47],[41,0]],[[14677,55206],[36,-38],[-5,-95],[46,-38],[0,-19],[25,0],[0,-57],[-40,-151],[-21,-38],[0,-152],[10,-57],[-35,-85],[-77,104],[-20,95],[-51,85],[20,123],[21,48],[-5,76],[30,123],[66,76]],[[14942,55718],[20,-19],[-20,-133],[-30,-57],[0,-28],[-46,-38],[5,-161],[-56,-19],[-56,-105],[-56,38],[-20,104],[5,86],[-72,9],[5,57],[62,123],[96,57],[102,-19],[36,95],[25,10]],[[14265,50542],[46,-95],[-71,-47],[20,-123],[-25,-19],[-11,-76],[26,-38],[-51,-95],[36,-47],[-26,-67],[-35,0],[-51,-47],[-16,-57],[-40,-9],[-26,56],[10,67],[31,66],[-66,19],[0,66],[35,29],[6,47],[132,180],[10,95],[-20,57],[61,0],[25,38]],[[14433,54599],[51,-66],[0,-86],[31,-57],[5,-66],[-51,10],[-71,-76],[-67,-10],[-152,0],[-56,76],[20,66],[51,10],[46,114],[193,85]],[[15364,56542],[6,-114],[-61,-37],[-21,-48],[-61,-57],[-76,-142],[-56,-66],[-31,19],[-25,66],[-117,-9],[25,94],[46,10],[56,142],[97,-9],[51,56],[30,-28],[107,66],[30,57]],[[10983,55879],[66,19],[-15,-133],[-118,-190],[-61,-57],[-91,29],[-26,38],[87,57],[15,66],[-35,66],[71,38],[30,48],[77,19]],[[14825,54864],[66,-37],[21,-57],[-6,-76],[16,-57],[-117,-66],[0,85],[-31,47],[26,124],[25,37]],[[14423,54912],[-10,-237],[35,-57],[-66,0],[-40,57],[-41,19],[15,66],[56,19],[5,66],[46,67]],[[17008,51196],[36,-76],[30,-123],[-56,-47],[-40,104],[5,123],[25,19]],[[15894,58011],[46,0],[-41,-123],[-46,-28],[-30,57],[15,66],[56,28]],[[15003,46722],[31,-19],[-21,-57],[-56,-19],[-61,10],[-20,28],[51,57],[76,0]],[[14118,55026],[15,-38],[-127,-76],[10,76],[102,38]],[[14820,55168],[15,-57],[-30,-76],[-41,-9],[-25,37],[45,76],[36,29]],[[9435,57803],[26,-66],[-41,-29],[-51,29],[16,37],[50,29]],[[12168,56760],[36,-19],[-56,-76],[-51,29],[71,66]],[[12479,56931],[51,-10],[0,-57],[-82,-9],[-10,57],[41,19]],[[10860,57206],[16,-95],[-31,-76],[-30,-19],[10,133],[35,57]],[[12688,58267],[61,-47],[25,-66],[-56,9],[-36,38],[6,66]],[[11609,56808],[86,-29],[-25,-57],[-56,10],[-5,76]],[[14138,49774],[20,-9],[-10,-95],[-56,28],[46,76]],[[15079,54097],[0,-38],[-40,-57],[-31,19],[41,66],[30,10]],[[11558,52893],[40,0],[0,-57],[-91,0],[51,57]],[[14326,54902],[-30,-66],[-36,47],[66,19]],[[21477,50106],[0,-38],[76,-123],[46,-57],[30,-76],[-30,-85],[97,-67],[-16,-104],[82,-38],[30,-47],[-71,-48],[-25,-47],[-16,-104],[-61,-67],[-117,-104],[66,-19],[16,-85],[96,38],[102,95],[81,0],[82,57],[76,-48],[122,-9],[67,38],[66,-10],[91,66],[-10,29],[138,85],[20,-47],[127,-86],[0,-56],[82,-38],[71,9],[20,-66],[66,0],[5,-114],[-35,-76],[-117,-85],[-26,-104],[-86,-67],[-66,-104],[66,-85],[-21,-95],[36,0],[36,-66],[76,0]],[[22749,48258],[-56,-76],[-61,-38],[36,-95],[-31,-47],[-142,-105],[-67,10],[-91,-76],[-102,-47],[-36,-114],[5,-95],[-20,-28],[-30,-114],[40,-95],[61,-57],[-51,-57],[-45,-113],[-61,-76],[-16,-76],[51,-76]],[[17599,44238],[-72,114],[-25,104],[0,57],[36,105],[0,75],[101,200],[5,37],[92,105],[15,85],[46,123],[15,76],[0,133],[56,57],[148,123],[0,38],[61,0],[56,85],[0,48],[87,142],[157,189],[36,0],[61,95],[-10,114],[15,85],[46,66],[0,57],[61,95],[5,161],[-25,19],[10,152],[-41,47],[51,86],[122,56],[26,105],[147,85],[31,95],[-5,189],[20,76],[36,38],[35,95],[107,85],[41,0],[86,67],[163,57],[41,0],[61,66],[31,66],[0,123],[61,19],[20,48],[0,66],[30,76],[-20,123],[-56,95],[-71,28],[-31,105],[-25,38],[-56,0],[-56,56],[71,10],[46,85],[0,133],[-71,161],[-51,66],[-132,124],[-92,57],[-56,19],[-102,66],[-51,19],[-61,-38],[-35,9],[-36,67],[-97,-10],[16,67],[-62,66],[-5,66],[-45,67],[-36,9],[-51,76],[0,28],[-61,67],[-36,0],[-30,57],[-82,19],[-5,113],[16,124],[-16,56],[46,38],[71,105],[36,0],[81,85],[-5,123],[-25,123],[-41,38],[5,86],[-35,19],[-56,161],[-16,170],[11,294]],[[18332,51793],[71,-9],[168,19],[71,57],[31,47],[101,38],[5,-133],[31,-47],[107,-48],[46,-94],[45,-29],[-35,-47],[-107,-10],[10,-47],[117,-95],[61,-38],[97,-28],[-36,-76],[56,-66],[163,0],[56,-143],[-20,-75],[46,-19],[5,-48],[45,-38],[31,-57],[36,76],[45,10],[21,-48],[117,19],[86,86],[41,-10],[81,19],[31,-95],[81,-19],[0,-66],[51,-104],[61,104],[56,57],[72,-10],[15,-75],[61,-48],[76,19],[16,-38],[-62,-66],[168,-38],[72,-47],[25,-48],[76,-76],[82,76],[30,-38],[11,-66],[61,-19],[51,-95],[96,19],[0,-47],[46,-57],[137,-29],[67,-47],[76,57],[71,-76],[26,19]],[[17125,49755],[5,-66],[46,-161],[-35,-105],[-36,-18],[-61,-95],[20,-67],[41,-19],[81,0],[92,-47],[41,-85],[66,-57],[-87,-104],[-56,-10],[-50,-57],[-11,-47],[51,-67],[117,-85],[61,-9],[-25,-76],[-36,-29],[-5,-113],[66,-171],[-20,-104],[-56,-29],[-36,-75],[-56,-19],[-86,28],[-107,-9],[-86,-57],[-77,-19],[-163,0],[-5,28],[-163,29],[-76,66],[-97,47],[-20,38],[-117,86],[-46,132],[5,114],[-46,57],[-101,57],[25,38],[-15,161],[51,114],[-5,113],[-21,105],[-46,66],[-66,57],[-86,189],[-36,48],[5,151],[61,105],[5,113],[46,143],[46,75],[71,48],[82,19],[25,85],[46,76],[97,9],[10,48],[66,66],[112,10],[137,-86],[158,-85],[36,-66],[117,-86],[81,-151],[-5,-57],[51,-85],[20,-105]],[[18265,51092],[31,-10],[-5,-170],[20,-86],[-25,-66],[-51,-76],[-26,48],[-61,9],[-61,-76],[-35,-9],[-16,104],[67,123],[35,133],[66,66],[61,10]],[[18097,50589],[0,-47],[-30,-47],[10,-57],[-41,-67],[-25,0],[-51,114],[51,57],[86,47]],[[17395,48883],[36,-9],[71,-142],[-10,-67],[-41,0],[-30,85],[-56,57],[0,76],[30,0]],[[17217,46485],[51,-47],[-20,-57],[-62,28],[31,76]],[[19390,52343],[102,-9],[76,18],[209,-37],[35,-29],[112,10],[194,-38],[203,0],[82,-48],[91,-123],[46,-28],[92,-19],[86,-105],[41,-19]],[[20759,51916],[56,-18],[71,-67],[-5,-76],[56,-57],[-35,-66],[-82,0],[31,-66],[30,-10],[-61,-208],[41,-57],[-15,-38],[20,-76],[-5,-66],[46,-10],[96,10],[51,-19],[51,66],[-20,57],[152,47],[67,-9],[51,-29],[50,-75],[-20,-114],[71,-19]],[[21456,51016],[-15,-104],[-107,0],[-35,-38],[40,-76],[0,-38],[92,-47],[46,-105],[112,-66],[5,-104],[15,-57],[-31,-104],[21,-67],[-117,-85],[-5,-19]],[[18332,51793],[5,57],[-46,85],[10,38],[71,57],[0,161],[21,29],[-16,57],[5,94],[123,86],[106,28],[62,67],[45,-48],[36,19],[41,114],[198,-76],[82,-19],[203,-76],[-35,-95],[15,-28],[117,-28],[15,28]],[[23177,52334],[-6,-38],[-61,-29],[-208,0],[-107,19],[-10,-57],[-82,48],[-66,-19],[-92,0],[-71,-38],[-254,0],[-82,-10],[-30,-28],[5,-48],[-41,-18],[-153,9],[-5,19],[-96,9],[-87,-28],[5,-38],[66,-57]],[[21802,52030],[-91,-38],[-183,-9],[-6,66],[-45,-9],[-16,47],[-50,38],[-46,66],[10,57],[-153,10],[-15,-105],[46,-19],[-36,-75],[-81,9],[-56,-57],[-36,38],[-66,10],[5,94],[-46,38],[-112,0],[-40,-38],[-11,-47],[72,-85],[-46,-95],[-41,-10]],[[19390,52343],[-20,57],[-51,19],[5,38],[86,28],[-40,38],[-56,19],[0,47],[-66,0],[0,95],[-31,123],[-71,67],[-163,38],[-56,76],[-81,38],[-168,303],[15,95],[-51,38],[-10,85],[-41,0],[-20,-171],[71,-208],[81,-152],[67,-66],[25,-57],[102,0],[15,-133],[-209,-28],[-142,0],[-76,66],[10,85],[-77,124],[11,113],[-21,124],[-51,47],[11,104],[66,123],[20,76],[92,190],[35,95],[51,28],[26,47],[30,133],[148,256],[61,142],[61,29],[61,104],[-15,9]],[[25085,47812],[-56,-57],[-61,-85],[-102,19],[-15,-57],[-41,-47],[-71,-10],[0,-104],[36,-38],[-31,-76],[25,-38],[-35,-66],[-41,-29],[66,-142],[-61,-47],[-71,38],[-31,-10],[-66,-76],[26,-94],[-16,-95],[-71,0],[-147,-29],[-72,152],[-81,28],[-76,95],[0,180],[-46,48],[40,95],[-35,37],[-76,-9],[-67,66],[-56,86],[-15,57],[-5,104],[-66,28],[-5,38],[-66,19],[0,47],[-117,95],[-41,142],[-66,38],[-112,38],[-41,38],[-97,0],[-20,29],[-61,-19],[-102,19],[-66,-19],[-51,38],[-92,-67],[-50,76],[-31,10]],[[21456,51016],[36,19],[41,-29],[117,143],[-16,132],[-56,-28],[-15,57],[-10,123],[41,47],[86,-9],[41,28],[25,-47],[61,-9],[21,-95],[61,38],[86,9],[82,38],[51,-47],[35,47],[36,85],[122,19],[-51,95],[56,29],[-15,75],[5,105],[-51,9],[-30,38],[-173,19],[10,-38],[-97,0],[-46,19],[-25,95],[-51,0],[-31,47]],[[32159,63320],[-51,-171],[-10,-123],[137,0],[-15,-48],[-5,-123],[71,-19],[51,-47],[31,-66],[-5,-152],[-107,-180],[-163,0],[0,-57],[-41,-38],[-20,-66]],[[32032,62230],[-61,28],[-102,19],[-10,199],[-21,38],[-96,-10],[-72,-37],[-71,9],[-20,-57],[-51,10],[-20,-38],[-51,9],[-36,-38],[-56,10],[-41,-57],[-71,9],[-76,-9],[5,-66],[-56,-76],[-102,9],[-76,-28]],[[30948,62154],[-41,28],[107,76],[25,47],[46,29],[-20,38],[-112,28],[-46,-28],[-76,0],[-56,38],[-87,28],[46,95],[0,76],[36,47],[56,-28],[51,-57],[106,9],[62,38],[61,0],[-16,57],[122,199],[-45,95],[-41,19],[-15,76],[-66,66],[-36,66],[36,48],[40,-19],[-15,104],[15,133],[41,38],[36,-38],[56,47],[71,0],[20,-38],[117,0],[71,-85],[72,-28],[30,-48],[61,29],[66,-29],[31,10],[56,76],[10,56],[117,-28],[138,-47],[81,-57]],[[32032,62230],[-31,-76],[-10,-86],[-46,-18],[-10,-67],[-81,-66],[-66,-142],[-36,0],[-15,-67],[-67,-57],[-35,-85],[-15,-95],[-36,-47],[-15,-95],[-82,-76],[-30,-85],[40,-28],[-20,-48],[15,-123],[-20,-47],[15,-48],[-15,-85],[15,-86],[-30,-9],[0,-66],[-46,-67],[-5,-76],[-51,-75],[-56,-124],[-36,0],[-61,-85],[-5,-38],[-76,-66],[-15,-95],[-67,-9],[-5,-38],[-81,-152],[-26,-9],[-45,-76],[-46,0],[-122,-57],[-51,-48],[-41,-75],[-97,19],[-35,-29],[-71,-142],[-21,0]],[[28729,61130],[20,47],[92,76],[86,29],[31,-29],[163,95],[71,10],[41,28],[102,104],[127,29],[35,57],[0,47],[56,38],[-10,47],[-56,105],[-35,37],[56,29],[5,47],[-77,38],[-35,38],[96,48],[72,9],[86,-19],[-46,104],[51,38],[-71,67],[173,19],[76,56],[-51,76],[21,133],[56,19],[56,66],[81,-85],[21,9],[152,-142],[71,-28],[102,38],[41,-86],[15,-85],[46,-19],[56,-142],[-10,-66],[107,9],[30,38],[87,57],[86,0],[31,57],[41,-57],[71,38]],[[24225,62315],[86,-171],[-10,-47],[56,-10],[15,105],[31,57],[219,-10],[61,-19],[36,66],[56,29],[71,9],[-21,-85],[41,-38],[46,19],[25,57],[102,-38],[46,19],[66,-9],[71,56],[56,-19],[97,0],[107,114],[46,0],[5,-47],[66,-10],[31,19],[66,-28],[66,19],[71,85],[92,10],[40,75],[26,105],[-61,47],[5,48],[-76,47],[30,85],[-51,19],[-20,114],[25,47],[102,76],[117,48],[112,0],[46,66],[56,19],[30,-29],[72,19],[15,29],[-46,66],[31,76],[35,9],[0,86],[77,132],[51,67],[66,-10],[40,76],[112,-9],[61,47],[46,85],[77,-9],[56,38],[56,-29],[20,38],[153,-9],[15,-38],[91,9],[82,-47],[10,-66],[46,9],[142,76],[82,123],[-21,76],[82,142],[-56,123],[-5,76],[15,124],[-66,104],[41,57],[101,66],[-127,104],[-41,76],[-66,38],[-66,0],[-10,85],[56,67],[122,47],[107,123],[-71,19],[-87,-19],[-20,29],[-77,0],[-40,47],[40,29],[-5,75],[82,48],[51,85],[20,66],[46,57],[91,29],[168,0],[-5,104],[51,19],[112,123],[5,86],[107,-29],[138,76],[45,9],[26,-47],[20,-123],[36,0],[51,-67],[71,-28],[97,114],[51,-105],[55,-47],[97,0],[26,-28],[45,85],[72,-28],[10,75],[107,-28],[91,-10],[56,-37],[21,-76],[-5,-76],[56,-85],[86,0],[87,-38],[45,0],[128,-114],[20,57],[-10,57],[25,66],[77,19],[40,38],[-101,152],[-51,56],[-11,133],[46,10],[61,47],[56,-19],[117,19],[97,28],[-71,114],[-46,19],[25,76],[67,47],[45,105],[-50,123],[-62,0],[-111,66],[20,76],[-20,47],[45,86],[112,38],[56,-19],[36,28],[86,-19],[51,-57],[-10,-76],[76,-28],[36,47],[71,48],[46,-67],[61,86],[26,-10],[107,38],[86,-9],[41,57],[76,9],[66,-19],[102,85],[5,95],[31,48],[-5,94],[20,95]],[[31126,67367],[76,10],[219,-38],[92,-57],[86,28],[51,76],[41,-9],[76,57],[31,56],[46,38],[173,0],[81,10],[66,-19],[76,-48],[107,48],[92,0],[30,-57],[-15,-66],[61,-48],[61,-19],[92,0],[66,48],[122,-76],[0,-48],[92,-104],[5,-38],[66,-94],[31,-67],[101,-85],[31,0],[132,-67],[10,-75],[-25,-86],[10,-189],[56,-114],[56,-57],[-10,-47],[25,-38],[-35,-76],[0,-66],[35,-76],[128,-67],[15,-75],[-56,0],[-61,-48],[51,-85],[-61,-38],[91,-66],[-25,-105],[-87,-104],[-61,-123],[-30,-29],[10,-47],[-107,-161],[-71,9],[-41,-66],[15,-104],[-127,-114],[-25,-47],[-87,-48],[-86,-123],[-51,-47],[-31,-67],[-71,-47],[-97,-114],[-40,-142],[-31,-10],[-163,-312],[-41,-124],[-35,-66],[-102,-284]],[[25594,65064],[107,0],[5,38],[76,38],[26,85],[-11,114],[-25,57],[66,28],[66,-47],[26,19],[5,66],[41,0],[45,-38],[87,-38],[41,48],[56,0],[56,85],[56,19],[56,-29],[96,86],[87,38],[25,66],[71,38],[11,104],[-117,47],[-16,38],[36,67],[112,47],[51,-28],[51,19],[66,-19],[-15,85],[-31,38],[31,85],[40,19],[0,114],[56,76],[21,114],[76,47],[10,-57],[51,-104],[122,38],[188,-29],[21,29],[15,104],[26,19],[76,-66],[46,113],[-46,57],[-10,48],[25,47],[-46,104],[-96,67],[-26,85],[15,57],[-30,57],[20,76]],[[27385,67235],[107,-10],[82,66],[117,57],[61,0],[107,67],[35,0],[46,94],[183,29],[31,38],[86,-10],[56,19],[26,-66],[71,-48],[36,0],[137,57],[31,0],[50,-57],[67,0],[86,-28],[26,-66],[112,76],[61,-38],[122,-29],[46,38],[101,-9],[31,-38],[147,-19],[87,19],[15,-29],[72,0],[35,38],[26,-76],[122,-38],[102,10],[5,-38],[66,0],[56,47],[102,10],[40,-19],[280,0],[21,-19],[122,9],[66,48],[117,-38],[81,57],[-10,76],[132,75],[51,-9],[-15,-47],[92,-19],[15,-48]],[[23828,66950],[71,76],[56,38],[41,66],[147,48],[97,19],[143,9],[107,47],[183,-47],[244,0],[87,29],[101,85],[36,66],[-15,180],[203,0],[97,67],[56,0],[168,38],[25,28],[148,28],[36,29],[112,0],[40,-29],[112,0],[87,19],[-5,-38],[193,-142],[122,-47],[224,-104],[229,-86],[82,0],[127,-47],[122,-19],[81,-28]],[[26011,48087],[36,0],[25,-76],[51,-38],[46,29],[97,-10],[101,-66],[-96,-114],[-66,-19],[-107,-123],[-56,-142],[35,-105],[-51,0],[11,-104],[-36,-47],[76,-67],[67,0],[45,67],[82,57],[86,94],[46,0],[102,76],[66,-95],[46,10],[51,-38],[40,-123],[235,104],[71,-76],[56,-19],[15,-38],[-5,-113],[66,-29],[0,-66],[26,-48],[50,10],[51,-114],[56,-57],[-30,-76],[0,-66],[66,-66],[71,57],[61,-19],[10,-67],[41,-9],[51,28],[10,48],[51,47],[102,57],[86,-10],[82,-66],[61,38],[51,9],[41,-37],[45,-133],[-91,-57],[-51,-85],[-36,-105],[15,-19],[112,10],[16,-19],[86,28],[51,0],[-15,-151],[-102,-95],[10,-47],[-46,-67],[0,-47],[-45,-133],[20,-57],[0,-132],[46,-95],[76,9],[46,-47],[25,-95],[11,-152]],[[28256,45186],[-56,-9],[-5,-57],[-107,-104],[-21,-95],[-96,9],[-36,-66],[-66,0],[-26,-28],[-5,-76],[-56,-29],[-15,-47],[-71,0],[-133,19],[-101,28],[-112,0],[-36,-19],[-10,-47],[122,-95],[-15,-95],[-41,-47],[-10,-57],[-31,-28],[11,-105],[-133,-161],[0,-94],[-66,0],[-81,37],[-92,0],[-97,-151],[-20,-48],[-46,0],[-81,76],[-51,0],[-61,38],[-112,0],[-239,-28],[-138,38],[-97,-29],[-40,-38]],[[25986,43878],[-122,-38],[-128,0],[-30,29],[-102,-133],[5,-85],[-56,-67],[-66,-19],[-137,0],[-72,48],[-71,-29],[-41,-66],[-50,29],[-51,0],[-41,-38],[-56,-105],[-87,0],[-56,-113],[-25,-10],[-254,-303],[-67,-67],[-91,10],[-51,47],[-153,29]],[[28256,45186],[30,0],[61,105],[66,47],[-30,47],[30,57],[97,-9],[107,47],[51,67],[25,0],[92,56],[81,95],[87,38],[51,0],[76,152]],[[29080,45888],[76,-133],[-45,-66],[30,-95],[41,-66],[46,-29],[15,-76],[112,-66],[71,9],[87,-47],[5,-66],[30,-19],[10,-86],[46,-47],[66,-9],[41,-57],[31,-76],[40,19],[143,9],[56,38],[71,-28],[-51,-95],[36,-28],[5,-48],[-46,-19],[26,-66],[71,-114],[-56,-57],[-61,0],[-194,-85],[-45,-57],[-51,0],[-41,-66],[30,-76],[-55,-180],[-36,0],[-26,-76],[-45,-29],[25,-66],[51,0],[81,-38],[-10,-85],[15,-66],[36,-57],[76,-38],[-5,-29],[-101,-75],[-6,-86],[-45,-104],[-61,-57],[-72,-28],[11,-38],[56,-67],[71,-132],[5,-57],[-36,-38],[10,-57],[67,-161],[40,-48],[87,-47],[25,-38],[138,29],[61,0],[66,56],[86,133],[61,0],[67,57],[76,38],[56,114],[46,-57],[40,-133],[82,-47],[30,-67],[51,-38],[56,-85],[92,-19],[30,-85],[51,-29]],[[28062,36342],[-97,-94],[-86,-48],[-76,-95],[-41,-75],[-122,142],[-46,9],[-97,95],[-15,114],[-51,123],[-30,-19],[35,-85],[5,-104],[-10,-152],[-51,95],[-61,-105],[-97,0],[31,124],[0,132],[25,76],[-45,0],[-31,-123],[-36,-66],[-20,-114],[-56,0],[-5,76],[-36,66],[-15,66],[0,105],[-56,-67],[15,-57],[0,-142],[-45,48],[-92,-124],[5,-56],[-56,18],[-51,-18],[-25,-57],[-56,-38],[-153,0],[-46,66],[-51,114],[-50,76],[-148,284],[-10,76],[-97,189],[-25,124],[20,9],[-31,95],[-66,9],[-10,48],[-46,28],[-25,-28],[-5,170],[-31,95],[-51,114],[-91,171],[-56,85],[-46,47],[-56,86],[-31,85],[-91,171],[15,132],[-5,86],[-20,75],[-61,105],[0,66],[-67,114],[-45,47],[-46,85],[-26,0],[5,95],[-91,161],[-82,76],[-61,95],[-40,85],[-31,19],[-30,67],[-92,94],[-97,143],[-20,66],[-46,76],[-56,57],[-46,9],[-56,123],[-40,67],[0,47],[127,67],[41,75],[5,76],[25,85],[31,0],[5,67],[35,38],[5,237],[46,85],[10,95],[-5,123],[-20,47],[0,190],[71,47],[0,48],[51,57],[5,57],[66,37],[92,133],[10,76],[77,152],[173,180],[71,66],[35,85],[0,171],[-106,-28],[-6,47],[31,57],[51,28],[-5,48],[-51,0],[-5,113],[-56,10],[51,95],[81,66],[5,29],[71,75],[102,162],[92,56],[91,152],[72,95],[66,28],[66,133],[-5,38],[41,57],[71,151],[-36,29],[-61,-66],[-46,28],[67,38],[10,47]],[[29039,51461],[-5,-28],[31,-114],[61,-28],[91,-67],[67,10],[71,-47],[61,-105],[51,-57],[-61,-113],[-61,-57],[-10,-38],[-72,9],[10,-85],[36,-95],[-71,-142],[46,0],[-26,-66],[41,-57],[107,-29],[56,0],[56,-66],[-97,-76],[-66,-104],[35,-47],[77,-38],[86,38],[77,-10],[122,-47],[30,-38],[61,9],[-5,-76],[67,-75],[61,28],[81,0],[56,47],[102,-28],[86,76],[66,-76],[107,9],[31,29],[76,-57],[41,-9],[66,-105],[51,38],[56,-9],[25,-38]],[[30810,49727],[46,-76],[71,19],[16,-47],[-26,-38],[26,-48],[56,-28],[35,-48],[5,-113],[-20,-48],[36,-66],[51,-19],[76,-104],[36,-19],[91,-133],[0,-142],[41,-38],[-21,-133],[46,-28],[87,-161],[-21,-57],[21,-48],[112,-19],[51,-28],[-97,-66],[0,-57],[-25,-86],[-51,-66],[-148,-76],[-36,29],[-91,0],[-5,-29],[-92,-28],[-56,-38],[-30,-66],[-77,-57],[-91,19],[-5,-67],[-56,-28],[45,-48],[0,-66],[21,-47],[-66,-57],[30,-38],[-25,-38],[-61,-19],[-92,-66],[-46,-57],[-76,0],[-15,66],[-56,29],[-148,0],[-71,-48],[-97,10],[-46,-19],[-66,-105],[0,-28],[-51,-57],[-35,-66],[-82,-10],[-81,-47],[-61,-85],[-41,-86],[-81,-38],[-77,-57],[-102,-142],[0,-47],[-91,-29],[91,-85],[-45,-237],[-41,-19],[-107,10],[-76,-152],[5,-57],[-41,-66]],[[30810,49727],[46,19],[10,57],[77,28],[56,0],[56,-38],[168,10],[20,-38],[61,9],[15,38],[-81,48],[81,104],[61,9],[5,114],[82,85],[46,86],[46,57],[76,37],[-51,76],[46,57],[71,-9],[25,38],[-10,85],[41,38],[76,-29],[41,10],[10,85],[46,0],[-15,67],[35,56],[82,0],[-10,76],[10,95],[-5,95],[35,0],[67,76],[76,9],[81,76]],[[32286,51253],[56,-76],[51,-104],[36,0],[81,-123],[21,-95],[-26,-57],[41,-76],[86,-95],[11,-38],[178,-180],[285,-123],[66,0],[158,-95],[96,10],[41,-29],[66,0],[-10,-161],[-132,0],[-26,-47],[107,0],[56,-152],[51,-95],[148,-113],[106,-57],[72,-19],[71,-57],[25,-48],[56,-37],[41,-76],[117,-57],[-15,-76],[81,-104],[5,-86],[-40,-19],[0,-94],[71,-114],[30,-95],[-15,-76],[10,-47],[56,-10],[46,-37],[0,-162],[15,-75],[-15,-57],[31,-67],[-21,-104],[16,-28],[71,-10],[-31,-170],[21,-76],[-87,-29],[10,-66],[-51,-29],[-20,-56],[10,-143],[36,-104],[76,-133],[41,0],[127,-161],[-10,-47],[25,-38],[-66,-38],[-61,-142],[5,-161],[21,-105],[96,-180],[97,-104],[-25,-57],[20,-66],[66,-114],[51,-28],[-15,-38],[25,-67],[-76,-28],[15,-28],[-46,-57],[-10,-133],[10,-57],[97,-133],[46,-123],[-26,-28],[21,-124],[61,-113],[51,-19],[5,-48],[35,-47]],[[30673,52409],[51,-19],[10,-38],[71,-9],[21,-47],[213,-19],[46,-38],[127,-10],[77,57],[112,0],[152,-95],[41,-38],[97,-9],[61,28],[66,-104],[10,-76],[-25,-38],[35,-66],[77,-38],[15,-28],[76,0],[46,-19],[36,-48],[0,-104],[30,-95],[66,-95],[16,-85],[66,-114],[20,-9]]],"objects":{"uk_counties":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"NAME":"Bedfordshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[4,5,6,7,8,9]],"type":"Polygon","properties":{"NAME":"Berkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[10,11,12,13,14,15,16,17,18,19,20,21]],"type":"Polygon","properties":{"NAME":"Bristol","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-10,22,23,-2,24,25]],"type":"Polygon","properties":{"NAME":"Buckinghamshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[26,27,-4,28,29,30,31]],"type":"Polygon","properties":{"NAME":"Cambridgeshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[32,33,34,35,36,37]],"type":"Polygon","properties":{"NAME":"Cheshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[38,39,-38,40,41,42,43]],"type":"Polygon","properties":{"NAME":"Derbyshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[44,45,46,47,48]],[[49]]],"type":"MultiPolygon","properties":{"NAME":"Devon","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[50,-49,51,52,53]],"type":"Polygon","properties":{"NAME":"Dorset","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[54,55,56,57]],"type":"Polygon","properties":{"NAME":"East Riding of Yorkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[58,59,60,61]],"type":"Polygon","properties":{"NAME":"East Sussex","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[62,63,64,-27,65,66]],"type":"Polygon","properties":{"NAME":"Essex","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[67,68,-17,69,70,71,72,73,74]],"type":"Polygon","properties":{"NAME":"Gloucestershire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-41,-37,75,76,77]],"type":"Polygon","properties":{"NAME":"Greater Manchester","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[78,79,-54,80,-7,81]],"type":"Polygon","properties":{"NAME":"Hampshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-65,82,-25,-1,-28]],"type":"Polygon","properties":{"NAME":"Hertfordshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[83]],"type":"Polygon","properties":{"NAME":"Isle of Wight","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-62,84,85,-63,86]],"type":"Polygon","properties":{"NAME":"Kent","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-77,87,88,89,90,91]],"type":"Polygon","properties":{"NAME":"Lancashire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[92,93,94,95,-39,96,97]],"type":"Polygon","properties":{"NAME":"Leicestershire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[98,-30,99,100,-98,101,102,-55,103]],"type":"Polygon","properties":{"NAME":"Lincolnshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-36,104,105,-88,-76]],"type":"Polygon","properties":{"NAME":"Merseyside","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[106,-31,-99,107]],"type":"Polygon","properties":{"NAME":"Norfolk","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[108,-94,109,-100,-29,-3,-24,110]],"type":"Polygon","properties":{"NAME":"Northamptonshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-110,-93,-101]],"type":"Polygon","properties":{"NAME":"Rutland","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-97,-44,111,-102]],"type":"Polygon","properties":{"NAME":"Nottinghamshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-75,112,-111,-23,-9,113]],"type":"Polygon","properties":{"NAME":"Oxfordshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[114,115,116,117,-34,118]],"type":"Polygon","properties":{"NAME":"Shropshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-52,-48,119,-18,-69,120]],"type":"Polygon","properties":{"NAME":"Somerset","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-103,-112,-43,121,122,-56]],"type":"Polygon","properties":{"NAME":"South Yorkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[123,124,125,-119,-33,-40,-96]],"type":"Polygon","properties":{"NAME":"Staffordshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-66,-32,-107,126]],"type":"Polygon","properties":{"NAME":"Suffolk","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-82,-6,127,-85,-61,128]],"type":"Polygon","properties":{"NAME":"Surrey","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[129,130,131]],"type":"Polygon","properties":{"NAME":"Tyne & Wear","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[132,133,-124,-95,-109,-113,-74]],"type":"Polygon","properties":{"NAME":"Warwickshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[134,-125,-134]],"type":"Polygon","properties":{"NAME":"West Midlands","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-79,-129,-60,135]],"type":"Polygon","properties":{"NAME":"West Sussex","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-122,-42,-78,-92,136]],"type":"Polygon","properties":{"NAME":"West Yorkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-81,-53,-121,-68,-114,-8]],"type":"Polygon","properties":{"NAME":"Wiltshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-115,-126,-135,-133,-73,137]],"type":"Polygon","properties":{"NAME":"Worcestershire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[138,-116,-138,-72,139]],"type":"Polygon","properties":{"NAME":"Herefordshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-57,-123,-137,-91,140,141,142]],"type":"Polygon","properties":{"NAME":"North Yorkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-142,143,144,-130,145]],"type":"Polygon","properties":{"NAME":"Durham","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[-46,146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]]],"type":"MultiPolygon","properties":{"NAME":"Cornwall","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[153,154,-117,-139,155,156,157,158]],"type":"Polygon","properties":{"NAME":"Powys","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[159,160,161]],"type":"Polygon","properties":{"NAME":"South Glamorgan","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[163,164,-158,165]],"type":"Polygon","properties":{"NAME":"West Glamorgan","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-161,166,-166,-157,167]],"type":"Polygon","properties":{"NAME":"Mid Glamorgan","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[-154,168,169,170]],[[171]],[[172]]],"type":"MultiPolygon","properties":{"NAME":"Gwynedd","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-155,-171,173,-105,-35,-118]],"type":"Polygon","properties":{"NAME":"Clwyd","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[-165,174,-169,-159]],[[175]],[[176]],[[177]],[[178]]],"type":"MultiPolygon","properties":{"NAME":"Dyfed","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[179,-15,180,-11,181,-162,-168,-156,-140,-71]],"type":"Polygon","properties":{"NAME":"Gwent","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[183]],"type":"Polygon","properties":{"NAME":"City and County of the City of London","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-5,-26,-83,-64,-86,-128],[-184]],"type":"Polygon","properties":{"NAME":"Greater London","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[184,185,186,187]],"type":"Polygon","properties":{"NAME":"The Stewartry of Kirkcudbright","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[188,189,-187,190]],"type":"Polygon","properties":{"NAME":"Wigtown","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[191,192,193,194,195,196]],"type":"Polygon","properties":{"NAME":"Tweeddale","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[197,198,199,200,201,202,203]],"type":"Polygon","properties":{"NAME":"Stirling and Falkirk","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[204,205,-198,206]],"type":"Polygon","properties":{"NAME":"Clackmannan","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-205,207,208]],"type":"Polygon","properties":{"NAME":"Fife","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[209,210,211,212,213,214,215,216,217,218,219,220,221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]]],"type":"MultiPolygon","properties":{"NAME":"Inverness","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[228,229,230,231]],[[232]]],"type":"MultiPolygon","properties":{"NAME":"Caithness","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[233,-210,234]],"type":"Polygon","properties":{"NAME":"Nairn","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[235,236,237,-221,238]],[[239]],[[-219,240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]]],"type":"MultiPolygon","properties":{"NAME":"Ross and Cromarty","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[-231,259,-229,260,-237,261]],[[262]],[[263]]],"type":"MultiPolygon","properties":{"NAME":"Sutherland","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[264,265,-196,266,267]],"type":"Polygon","properties":{"NAME":"City of Edinburgh","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[268,269,270,-265,271]],"type":"Polygon","properties":{"NAME":"East Lothian","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-266,-271,272,-197]],"type":"Polygon","properties":{"NAME":"Midlothian","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-267,-195,273,-200,274]],"type":"Polygon","properties":{"NAME":"West Lothian","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]]],"type":"MultiPolygon","properties":{"NAME":"Shetland","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"NAME":"Orkney","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]]],"type":"MultiPolygon","properties":{"NAME":"Western Isles","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[376,377,378,379,380,381,382]],"type":"Polygon","properties":{"NAME":"Angus","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[383,-382,384,-380,385,386,-208,-207,-204,387,-214]],"type":"Polygon","properties":{"NAME":"Perth and Kinross","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[388,-386,-379]],"type":"Polygon","properties":{"NAME":"City of Dundee","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[-215,-388,-203,389,390]],[[391]],[[392]],[[393]],[[394,-217]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]]],"type":"MultiPolygon","properties":{"NAME":"Argyll and Bute","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[[424,425,-188,-190,426,427]],[[428]],[[429]],[[430]],[[431]],[[432]]],"type":"MultiPolygon","properties":{"NAME":"Ayrshire and Arran","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[433,434,435,-428,436]],"type":"Polygon","properties":{"NAME":"Renfrewshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[437,438,-434,439,-390,-202]],"type":"Polygon","properties":{"NAME":"Dunbartonshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-274,-194,440,-425,-436,441,-438,-201]],"type":"Polygon","properties":{"NAME":"Lanarkshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-442,-435,-439]],"type":"Polygon","properties":{"NAME":"City of Glasgow","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[442,443,444]],"type":"Polygon","properties":{"NAME":"City of Aberdeen","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-444,445,-377,446]],"type":"Polygon","properties":{"NAME":"Kincardineshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-445,-447,-383,-384,-213,447,448]],"type":"Polygon","properties":{"NAME":"Aberdeenshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-448,-212,449,450]],"type":"Polygon","properties":{"NAME":"Banffshire","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-450,-211,-234,451]],"type":"Polygon","properties":{"NAME":"Moray","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-193,452,453,454,-185,-426,-441]],"type":"Polygon","properties":{"NAME":"Dumfries","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-454,455,456,-144,-141,-90,457]],"type":"Polygon","properties":{"NAME":"Cumbria","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[458,459,-456,-453,-192,-273,-270]],"type":"Polygon","properties":{"NAME":"Roxburgh, Ettrick and Lauderdale","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[460,461,-131,-145,-457,-460]],"type":"Polygon","properties":{"NAME":"Northumberland","DESCRIPTIO":"Ceremonial County"}},{"arcs":[[-269,462,-461,-459]],"type":"Polygon","properties":{"NAME":"Berwickshire","DESCRIPTIO":"Ceremonial County"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment