Skip to content

Instantly share code, notes, and snippets.

@darosh
Last active February 3, 2018 12:54
Show Gist options
  • Save darosh/383197ed997156ac9fd5 to your computer and use it in GitHub Desktop.
Save darosh/383197ed997156ac9fd5 to your computer and use it in GitHub Desktop.
Countries & Events
  • Space/Enter keys: Pause/Play
  • Left/Right keys: Previous/Next
  • Pan & Zoom: when paused
function initData(data, colors) {
var max = 0;
data.forEach(function (v) {
v[2] = new Date(v[0]);
v[3] = d3.keys(v[1]);
v[3].sort(function (a, b) {
return v[1][b] - v[1][a];
});
var y0 = 0;
var i = 0;
var minMax = getValuesMinMax(v[1]);
v[6] = {};
v[4] = v[3].map(function (id) {
var color = colors(normalize(v[1][id], minMax));
var r = {
id: id,
i: i++,
v: v[1][id],
y0: y0,
y1: y0 += v[1][id],
color: color
};
v[6][id] = r;
return r;
});
v[5] = minMax;
max = Math.max(max, y0);
});
return max;
}
function getValuesMinMax(values) {
var v = [];
var s = 0;
for (var k in values) {
v.push(values[k]);
s += values[k];
}
var r = {
min: Math.min.apply(this, v),
max: Math.max.apply(this, v)
};
r.diff = r.max - r.min;
r.sum = s;
return r;
}
function normalize(v, minMax) {
return minMax.diff ? (v - minMax.min) / minMax.diff : 0.5;
}
function limitBounds(b, maxWidth, maxHeight) {
var w = b[1][0] - b[0][0];
if (w > maxWidth) {
var c = (b[1][0] + b[0][0]) / 2;
maxWidth /= 2;
b[0][0] = c - maxWidth;
b[1][0] = c + maxWidth;
}
var h = b[1][1] - b[0][1];
if (h > maxHeight) {
var ch = (b[1][1] + b[0][1]) / 2;
maxHeight /= 2;
b[0][1] = ch - maxHeight;
b[1][1] = ch + maxHeight;
}
}
function visualBounds(path, feature) {
if (feature._visualBounds) {
return feature._visualBounds;
}
var bb = feature._bounds || (feature._bounds = path.bounds(feature));
var c = feature._centroid || (feature._centroid = path.centroid(feature));
var d = 0.366;
var b = [[bb[0][0], bb[0][1]], [bb[1][0], bb[1][1]]];
var sx = d3.scale.linear().domain([b[0][0], b[1][0]]).range([0, 1]);
var sy = d3.scale.linear().domain([b[0][1], b[1][1]]).range([0, 1]);
if (Math.abs(0.5 - sx(c[0])) > d || Math.abs(0.5 - sy(c[1])) > d) {
var h = Math.min(c[0] - b[0][0], b[1][0] - c[0], c[1] - b[0][1], b[1][1] - c[1]);
b[0][0] = c[0] - h;
b[1][0] = c[0] + h;
b[0][1] = c[1] - h;
b[1][1] = c[1] + h;
}
if (feature.id === 'AUS') {
b[1][1] = d3.interpolate(b[0][1], b[1][1])(0.75);
} else if (feature.id === 'USA') {
b[1][0] = d3.interpolate(b[0][0], b[1][0])(0.28);
}
feature._visualBounds = b;
return b;
}
function groupBounds(path, features, width, height, maxWidth, maxHeight) {
var r = features.length ? [[[], []], [[], []]] : [[[0], [0]], [[width], [height]]];
features.forEach(function (feature) {
var b = visualBounds(path, feature);
//limitBounds(b, maxWidth, maxHeight);
r[0][0].push(b[0][0]);
r[0][1].push(b[0][1]);
r[1][0].push(b[1][0]);
r[1][1].push(b[1][1]);
});
r[0][0] = Math.min.apply(this, r[0][0]);
r[0][1] = Math.min.apply(this, r[0][1]);
r[1][0] = Math.max.apply(this, r[1][0]);
r[1][1] = Math.max.apply(this, r[1][1]);
return r;
}
function getScale(size, width, height, scaleMargin, maxScale) {
var marginSize = [(size[0] + width * scaleMargin * 2), (size[1] + width * scaleMargin * 2)];
var sizeRatio = marginSize[0] / marginSize[1];
var boxRatio = width / height;
var r;
if (sizeRatio >= boxRatio) {
r = width / marginSize[0];
} else {
r = height / marginSize[1];
}
if (r < 1) {
r = 1;
} else if (r > maxScale) {
r = maxScale;
}
return r;
}
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<title>Countries &amp; Events</title>
<link rel="stylesheet" href="style.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="geo.js"></script>
<script src="data.js"></script>
<script src="labels.js"></script>
<script src="svg-chart.js"></script>
<script src="svg-player.js"></script>
<script src="svg-scale-legend.js"></script>
<script src="svg-bar-legend.js"></script>
<script src="svg-info-legend.js"></script>
<body></body>
<script>
var width = 960;
var height = 410;
var shift = (480 - height) / 2;
var canvasScale = ((document.body.clientWidth > width / 3) ? document.body.clientWidth : width) / width;
width *= canvasScale;
height *= canvasScale;
var maxScale = 3;
var scaleMargin = 0.02;
var maxCountry = 1;
var svgMargin = 10;
var labelMargin = 1;
var gridModule = 10;
var scaleHeight = 20;
var svgLine = 10;
var chartHeight = gridModule * 5;
var infoRealHeight;
var legendItems;
var lastSelectedFeatures;
var lastColors;
var lastEvent;
var valueInterpolation = d3.interpolate('#f8af00', '#f80000');
d3.select(self.frameElement).style('height', (height + chartHeight + scaleHeight + 2 * svgMargin) + 'px');
var config = {
durationMultiplier: 1.5,
durationMin: 750,
durationMax: 1500,
durationColor: 350,
tracePast: false,
fontSize: 16,
fontShift: 4,
font: 'Calibri, Arial, Helvetica, sans-serif',
land: {
fillStyle: '#fff'
},
border: {
lineWidth: 0.444,
strokeStyle: '#666'
},
past: {
fillStyle: '#ddd'
},
simpleArea: 8,
baseArea: 8 / canvasScale / canvasScale
};
var currentScale = 1;
var realCenter = [width / 2, height / 2];
var currentTranslate = realCenter;
var pastCountries = {};
var pastColors = {};
var events;
var index = -1;
var auto = true;
var pending = false;
var borders, countries;
var svgHeader, svgs, message, chart, header, infoLegend, barLegend, scaleLegendData, barLegendData, chartData, playerData;
var path, ctx, projection, trans;
var mouseWasDown;
var zoomBehavior = d3.behavior.zoom()
.scaleExtent([1, 8])
.on('zoom', zoomed);
initItems();
initCanvas();
initSvg();
loadData();
function clamp(t, a, b) {
return Math.max(a, Math.min(b, t));
}
function zoomed() {
if (!auto) {
mouseWasDown = false;
requestAnimationFrame(drawManual);
}
}
function initItems() {
var infoMaxHeight = height - scaleHeight - 9 * svgMargin;
legendItems = Math.floor((infoMaxHeight - svgLine) / 20);
infoRealHeight = legendItems * 20 + svgLine;
}
function loaded() {
if (countries && events) {
initKeys();
update();
setTimeout(function () {
message.style('display', 'none');
}, 500);
}
}
function loadData() {
d3.json('topo.json', function (t) {
initTopo(t);
loaded();
});
d3.json('/darosh/raw/baf7dd8d481d83b7f37e/events.json', function (e) {
var max = initData(e, valueInterpolation);
events = e;
chartData = makeChart(chart, events, width - svgMargin * 2, chartHeight, max, setIndex);
playerData.updatePlayer(events, chartData.band, setIndex);
barLegendData = makeBarLegend(barLegend, gridModule * 32, max);
loaded();
});
}
function initCanvas() {
var canvas = d3.select('body').append('canvas').attr('width', width).attr('height', height);
ctx = canvas.node().getContext('2d');
ctx.textAlign = 'center';
ctx.lineJoin = 'round';
message = d3.select('body').append('div').html('Loading&hellip;');
var simplify = d3.geo.transform({
point: function (x, y, z) {
if (z >= projection.area && (!projection.clip || (projection.clip[0] <= x && x <= projection.clip[2] &&
projection.clip[1] <= y && y <= projection.clip[3]))) {
this.stream.point(x * canvasScale, (y + 20) * canvasScale);
}
}
});
projection = {
stream: function (s) {
return simplify.stream(s);
},
clip: false,
area: config.simpleArea
};
path = d3.geo.path()
.context(ctx)
.projection(projection);
canvas.on('mousedown', mouseDown);
canvas.call(zoomBehavior);
canvas.on('mouseup', mouseUp);
}
function mouseDown() {
mouseWasDown = true;
}
function mouseUp() {
if (mouseWasDown) {
clicked();
}
}
function clicked() {
auto = !auto;
if (pending) {
trans();
}
if (auto && !pending) {
index++;
index = index % events.length;
update();
}
}
function initSvg() {
svgHeader = d3.select('body').append('svg')
.attr('width', width)
.attr('height', scaleHeight + 2 * svgMargin);
var scaleLegend = svgHeader.append('g')
.attr('class', 'scale-legend')
.attr('transform', 'translate(' + (width - gridModule * 32 - svgMargin) + ',' + svgMargin + ')');
scaleLegendData = makeScaleLegend(svgHeader, scaleLegend, gridModule * 32, valueInterpolation);
var svgBarScale = d3.select('body').append('svg')
.style('left', svgMargin + 'px')
.style('top', (height - 2 * svgMargin - gridModule * 32 - svgLine * .5) + 'px')
.attr('width', scaleHeight + 3 * svgMargin)
.attr('height', gridModule * 32 + svgMargin + svgMargin);
barLegend = svgBarScale.append('g')
.attr('class', 'scale-legend')
.attr('transform', 'translate(' + 0 + ',' + svgMargin + ')');
var svgInfo = d3.select('body').append('svg')
.style('left', (width - 12 * gridModule - svgMargin) + 'px')
.style('top', (height - infoRealHeight - svgLine * 0.5) + 'px')
.attr('width', (12 * gridModule))
.attr('height', infoRealHeight);
infoLegend = svgInfo.append('g');
var svgChart = d3.select('body').append('svg')
.style('top', (height + svgMargin) + 'px')
.attr('width', width)
.attr('height', chartHeight + scaleHeight + svgMargin);
chart = svgChart.append('g')
.attr('class', 'chart')
.attr('transform', 'translate(' + svgMargin + ',' + 0 + ')');
var player = svgChart.append('g')
.attr('class', 'player')
.attr('transform', 'translate(' + svgMargin + ',' + (chartHeight) + ')');
playerData = makePlayer(player, width - 2 * svgMargin);
header = svgHeader.append('text')
.attr('dy', svgLine + svgMargin)
.attr('dx', svgMargin);
svgs = d3.selectAll('svg');
svgHeader.call(zoomBehavior);
svgBarScale.call(zoomBehavior);
svgInfo.call(zoomBehavior);
svgHeader.on('mousedown', mouseDown);
svgHeader.on('mouseup', mouseUp);
svgBarScale.on('mousedown', mouseDown);
svgBarScale.on('mouseup', mouseUp);
svgInfo.on('mousedown', mouseDown);
svgInfo.on('mouseup', mouseUp);
}
function stop() {
auto = false;
}
function initKeys() {
if (self.frameElement) {
self.frameElement.focus();
}
d3.select('body').on('keydown', function () {
if (d3.event.keyCode === 32 || d3.event.keyCode === 13) {
clicked();
} else {
if (auto && (d3.event.keyCode === 37 || d3.event.keyCode === 39 )) {
stop();
}
if (d3.event.keyCode === 37) {
setIndex(index - 1);
} else if (d3.event.keyCode === 39) {
setIndex(index + 1);
}
}
});
}
function setIndex(i) {
stop();
if (pending) {
trans(true, function () {
done();
});
} else {
done();
}
function done() {
var n = (i + events.length) % events.length;
if (index !== n) {
index = n;
update();
}
}
}
function reset() {
pastCountries = {};
}
function update() {
var event = events[index];
if (index === 0) {
reset();
} else if (index === (events.length - 1)) {
stop();
}
d3.select('body').attr('class', null);
if (event) {
svgs.style('display', 'block');
scaleLegendData.update(event[5], config.durationMin);
barLegendData.update(event[4], config.durationMin);
updateInfoLegend(infoLegend, event, infoRealHeight, gridModule * 12, countries, legendItems);
chartData.updateCursor(index);
header.text((event[2].getMonth() + 1) + '/' + event[2].getFullYear() + ' — ' +
event[5].sum + ' events in ' + event[3].length + ' countries');
trans = transition(event);
} else if (index >= -1 && index <= events.length) {
svgs.style('display', 'none');
trans = transition();
}
}
function done() {
pending = false;
if (auto) {
index++;
if (index < events.length) {
update();
} else {
index--;
stop();
}
} else {
d3.select('body').attr('class', 'paused');
}
}
function initTopo(topo) {
topojson.presimplify(topo);
countries = {};
var tempArcs = null;
var tempObj = {};
topo.objects.countries.geometries.forEach(function (country) {
if (country.id === 'RUS') {
tempObj = country;
var merged = topojson.mergeArcs(topo, [country]);
tempArcs = country.arcs;
country.arcs = merged.arcs;
}
});
borders = topojson.mesh(topo, topo.objects.countries, function (a) {
return a.id !== 'ATA';
});
tempObj.arcs = tempArcs;
topojson.feature(topo, topo.objects.countries).features.forEach(function (v) {
countries[v.id] = v;
});
}
function transition(event) {
event = event || [{}, {}, {}, {}, []];
pending = true;
var colors = {};
var selectedFeatures = event[4].map(function (v) {
colors[v.id] = d3.interpolate(pastColors[v.id] || config.land.fillStyle, event[6][v.id].color);
return countries[v.id];
});
pastColors = {};
projection.clip = false;
projection.area = config.simpleArea;
var bound = groupBounds(path, selectedFeatures, width, height, maxCountry * width, maxCountry * height);
var size = [bound[1][0] - bound[0][0], bound[1][1] - bound[0][1]];
var targetScale = getScale(size, width, height, scaleMargin, maxScale);
var targetCenter = [(bound[0][0] + bound[1][0]) / 2, (bound[0][1] + bound[1][1]) / 2];
targetCenter[1] = (targetCenter[1] < realCenter[1] / targetScale) ? realCenter[1] / targetScale : targetCenter[1];
targetCenter[0] = (targetCenter[0] < realCenter[0] / targetScale) ? realCenter[0] / targetScale : targetCenter[0];
var zoomInterpolation = d3.interpolateZoom([currentTranslate[0], currentTranslate[1], width * currentScale],
[targetCenter[0], targetCenter[1], width * targetScale]);
var duration = clamp(zoomInterpolation.duration * config.durationMultiplier, config.durationMin, config.durationMax);
var stop = false;
var stopped = false;
var forced = false;
var cb;
var dScale = d3.scale.linear().domain([0, duration]).range([0, 1])(config.durationColor);
var cScale = d3.scale.linear().domain([0, dScale]).range([0, 1]).clamp(true);
var ease = d3.ease('cubic-out');
function tScale(x) {
return ease(cScale(x));
}
d3.transition()
.duration(duration)
.tween('tween', function getTween() {
return drawTween;
})
.each('end', done);
return function (force, done) {
cb = cb || done;
if (force) {
forced = true;
} else {
stop = true;
}
};
function drawTween(t) {
if (cb && (t === 1 || stopped)) {
cb();
}
if (stopped) {
return;
} else if (stop) {
stopped = true;
t = 1;
} else if (forced) {
stopped = true;
}
var tt;
if (forced) {
tt = 1;
} else {
tt = tScale(t);
}
var zoom = zoomInterpolation(t);
currentTranslate = [zoom[0], zoom[1]];
currentScale = zoom[2] / width;
var box = [currentTranslate[0] - realCenter[0] / currentScale, currentTranslate[1] - realCenter[1] / currentScale];
var translate = [-box[0] * currentScale, -box[1] * currentScale];
zoomBehavior.scale(currentScale);
zoomBehavior.translate(translate);
lastSelectedFeatures = selectedFeatures;
lastColors = colors;
lastEvent = event;
drawMap(selectedFeatures, event, translate, currentScale, colors, tt);
// Labels
if (t === 1 && !auto) {
var labels = getLabels(selectedFeatures, currentScale);
arrangeLabels(labels, 1.25 * config.fontSize / currentScale, selectedFeatures.length * 2);
drawLabels(labels, currentScale);
}
}
}
function invertTranslate(t, currentScale) {
var box = [-t[0] / currentScale, -t[1] / currentScale];
return [box[0] + realCenter[0] / currentScale, box[1] + realCenter[1] / currentScale]
}
function drawManual() {
var scale = zoomBehavior.scale();
var translate = zoomBehavior.translate();
var tt = 1;
currentScale = scale;
currentTranslate = invertTranslate(translate, currentScale);
drawMap(lastSelectedFeatures, lastEvent, translate, scale, lastColors, tt);
var labels = getLabels(lastSelectedFeatures, scale);
arrangeLabels(labels, 1.25 * config.fontSize / scale, lastSelectedFeatures.length * 2);
drawLabels(labels, scale);
}
function setContextStyle(ctx, opt) {
ctx.fillStyle = opt.fillStyle;
ctx.strokeStyle = opt.strokeStyle;
}
function roundRect(ctx, x, y, width, height, radius) {
ctx.beginPath();
ctx.moveTo(x + radius, y);
ctx.lineTo(x + width - radius, y);
ctx.quadraticCurveTo(x + width, y, x + width, y + radius);
ctx.lineTo(x + width, y + height - radius);
ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
ctx.lineTo(x + radius, y + height);
ctx.quadraticCurveTo(x, y + height, x, y + height - radius);
ctx.lineTo(x, y + radius);
ctx.quadraticCurveTo(x, y, x + radius, y);
ctx.closePath();
}
function drawLabels(labels, currentScale) {
labels.forEach(function (label) {
addMargin(label, -labelMargin / currentScale);
ctx.fillStyle = 'rgba(0,0,0,0.87)';
roundRect(ctx, label.left, label.top, label.width, label.height, label.radius / 2);
ctx.fill();
ctx.fillStyle = '#fff';
ctx.fillText(label.text, label.cx, label.cy + label.shift);
}
);
}
function getLabels(selectedFeatures, currentScale) {
projection.area = config.simpleArea;
var labels = [];
ctx.font = config.fontSize / currentScale + 'px ' + config.font;
selectedFeatures.forEach(function (f) {
var x = f._centroid || path.centroid(f);
var n = (f.properties.name.length >= 20) ? f.id : f.properties.name;
var m = ctx.measureText(n);
var l = {
id: f.id,
text: n,
cx: x[0],
cy: x[1],
width: m.width + config.fontSize / currentScale,
height: 1.25 * config.fontSize / currentScale,
shift: 0.25 * config.fontSize / currentScale,
radius: config.fontSize / 2 / currentScale
};
l.left = l.cx - l.width / 2;
l.right = l.cx + l.width / 2;
l.top = l.cy - l.height / 2;
l.bottom = l.cy + l.height / 2;
addMargin(l, labelMargin / currentScale);
labels.push(l);
});
return labels;
}
function drawMap(selectedFeatures, event, translate, currentScale, colors, tt) {
// Clear
ctx.globalAlpha = 1;
ctx.setTransform(1, 0, 0, 1, 0, 0);
ctx.clearRect(0, 0, width, height);
// Transform
ctx.translate(translate[0], translate[1]);
ctx.scale(currentScale, currentScale);
projection.area = config.baseArea / currentScale / currentScale;
projection.clip = false;
if (config.tracePast) {
// Past
ctx.beginPath();
setContextStyle(ctx, config.past);
Object.keys(pastCountries).forEach(function fillPast(id) {
if (!event[1][id]) {
path(countries[id]);
pastColors[id] = config.past.fillStyle;
}
});
ctx.fill();
}
// Current
selectedFeatures.forEach(function fillNow(f) {
ctx.beginPath();
pastColors[f.id] = ctx.fillStyle = colors[f.id](tt);
path(f);
ctx.fill();
pastCountries[f.id] = true;
});
projection.clip = [-translate[0] / canvasScale / currentScale,
-translate[1] / canvasScale / currentScale - 20,
-translate[0] / canvasScale / currentScale + width / currentScale,
-translate[1] / canvasScale / currentScale + height / currentScale];
// Borders
ctx.beginPath();
setContextStyle(ctx, config.border);
ctx.lineWidth = config.border.lineWidth / currentScale;
path(borders);
ctx.stroke();
projection.clip = false;
}
</script>
function updateLabel(label, tx, ty) {
label.left += tx;
label.cx += tx;
label.right += tx;
label.top += ty;
label.cy += ty;
label.bottom += ty;
}
function colision(a, b) {
return a.left < b.right &&
a.right > b.left &&
a.top < b.bottom &&
a.bottom > b.top;
}
// based on http://bl.ocks.org/larskotthoff/11406992
function arrangeLabels(labels, module, loops) {
var move = true;
module /= labels.length;
while (move && loops--) {
move = false;
labels.forEach(function (a) {
labels.forEach(function (b) {
if (b !== a) {
if (colision(a, b)) {
move = true;
updateLabel(b, -module * Math.sign(a.cx - b.cx), -module * Math.sign(a.cy - b.cy));
updateLabel(a, module * Math.sign(a.cx - b.cx), module * Math.sign(a.cy - b.cy));
}
}
});
});
}
}
function addMargin(label, margin) {
label.left -= margin;
label.right += margin;
label.top -= margin;
label.bottom += margin;
label.width += 2 * margin;
label.height += 2 * margin;
}
* {
line-height: 20px;
font-family: Calibri, Arial, Helvetica, sans-serif;
color: #999;
margin: 0;
padding: 0;
text-align: center;
text-rendering: optimizelegibility;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
canvas {
display: block;
border-bottom: 1px solid #DEDEDE;
cursor: pointer;
}
svg {
position: absolute;
left: 0;
top: 0;
display: none;
cursor: pointer;
}
.paused canvas,
.paused svg {
cursor: move;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
stroke-opacity: 0.25;
stroke-width: 1;
shape-rendering: crispEdges;
}
.chart line {
stroke-opacity: 1;
stroke: #ddd;
}
.axis text {
font: 16px Calibri, Arial, Helvetica, sans-serif;
fill: #000;
fill-opacity: 0.87;
}
.click, .chart g {
cursor: crosshair;
}
.chart rect {
stroke-width: 0;
}
.chart g rect {
fill-opacity: 0.22;
}
.chart:hover g rect {
fill-opacity: 0.38;
}
.chart g.active rect {
fill-opacity: 1;
}
.player circle {
fill-opacity: 0.87;
fill: #000;
}
.player text {
cursor: pointer;
}
function makeBarLegend(root, height, max) {
var band = 6;
var scale = d3.scale.linear()
.domain([0, max])
.range([height, 0]);
var axis = d3.svg.axis()
.scale(scale)
.ticks(8)
.tickSize(6)
.orient('right');
var group = root.append('g');
root.append('g')
.attr('transform', 'translate(6,0)')
.attr('class', 'axis')
.call(axis);
function update(event, duration) {
var r = group.selectAll('rect')
.data(event);
r.enter().append('rect')
.attr('width', band)
.attr('height', 0)
.attr('y', height)
.style('fill', function (d) {
return d.color;
});
r.exit().remove();
group.selectAll('rect').transition().duration(duration)
.attr('y', function (d) {
return scale(d.y1);
})
.attr('height', function (d) {
return scale(d.y0) - scale(d.y1);
})
.style('fill', function (d) {
return d.color;
});
}
return {
update: update
};
}
function makeChart(root, data, width, height, max, clicked) {
var band = (width + 1.5) / data.length - 1.5;
band = Math.min(band, 6);
var bandHalf = band / 2;
var x = d3.time.scale()
.range([0, width - band])
.domain([data[0][2], data[data.length - 1][2]]);
var y = d3.scale.linear()
.range([height, 0])
.domain([0, max]);
var line = root.append('line')
.style('stroke-width', band)
.attr('x1', bandHalf)
.attr('x2', bandHalf)
.attr('y2', height);
var group = root.selectAll('.group')
.data(data)
.enter().append('g')
.attr('class', 'group')
.attr('transform', function (d) {
return 'translate(' + x(d[2]) + ',0)';
});
group.selectAll('rect')
.data(function (d) {
return d[4];
})
.enter().append('rect')
.attr('width', band)
.attr('y', function (d) {
return y(d.y1);
})
.attr('height', function (d) {
return y(d.y0) - y(d.y1);
})
.style('fill', function (d) {
return d.color;
});
root.append('rect')
.attr('class', 'click')
.attr('width', width)
.attr('height', height)
.style('fill', 'rgba(255,255,255,0)')
.on('click', function () {
d3.event.stopPropagation();
var i = Math.round((d3.mouse(this)[0] / width) * (data.length - 1));
clicked(i);
});
function updateCursor(index) {
group
.attr('class', function (d) {
return data[index] === d ? 'active' : '';
});
var p = x(data[index][2]) + bandHalf;
line.transition()
.attr('x1', p)
.attr('x2', p);
}
return {
updateCursor: updateCursor,
band: band
};
}
function updateInfoLegend(list, event, height, width, countries, items) {
var radius = 5;
var charsLimit = 13;
items--;
var display = event[3].slice(0, Math.min(items, event[3].length));
var other = {
color: 'transparent',
id: 'other'
};
if (event[3].length === (display.length + 1)) {
display.push(event[3].length - 1);
} else if (event[3].length > display.length) {
other.v = 0;
for (var i = display.length; i < event[3].length; i++) {
other.v += event[1][event[3][i]];
}
other.title = (event[3].length - display.length) + ' other';
other.i = display.length;
display.push(other.id);
}
var z = list.selectAll('g').data(display, function (d) {
return d;
});
z.exit().remove();
z.transition().attr('opacity', 1).attr('transform', function (d, i) {
return 'translate(0,' + (height - i * 20 - 10) + ')'
});
var g = z.enter().append('g');
g.append('circle');
g.append('text')
.attr('class', 'name')
.attr('transform', 'translate(' + radius * 3 + ',0)');
g.append('text')
.attr('class', 'value')
.attr('dx', width)
.attr('text-anchor', 'end');
g.attr('opacity', 0)
.attr('transform', function (d, i) {
return 'translate(' + (width / 2) + ',' + (height - i * 20 - 10) + ')'
})
.transition().duration(200).delay(200)
.attr('opacity', 1).attr('transform', function (d, i) {
return 'translate(0,' + (height - i * 20 - 10) + ')'
});
list.selectAll('text.name')
.text(function (d) {
return !countries[d] ? other.title : ((countries[d].properties.name.length > charsLimit) ? d : countries[d].properties.name);
});
list.selectAll('text.value')
.text(function (d) {
return !event[1][d] ? other.v : event[1][d];
});
list.selectAll('circle')
.attr('cy', -radius)
.attr('cx', radius)
.attr('r', radius)
.style('fill', function (d) {
var i = event[3].indexOf(d);
return i === -1 ? other.color : event[4][i].color;
});
}
function makePlayer(root, width) {
var scale = d3.time.scale().range([0, width]);
var axis = d3.svg.axis()
.scale(scale)
.ticks(width / 80)
.tickSize(6)
.orient('bottom');
var timeLine = root.append('g').attr('class', 'axis');
function updatePlayer(events, band, clicked) {
scale.domain([new Date(events[0][0]), new Date(events[events.length - 1][0])]);
scale.range([0, width - band]);
scale.domain([new Date(events[0][0]), scale.invert(width)]);
scale.range([0, width]);
timeLine.call(axis)
.selectAll('text')
.style('text-anchor', 'start');
timeLine.selectAll('text').on('click', function (d) {
for (var i = 0; i < events.length; i++) {
if (events[i][2] >= d) {
d3.event.stopPropagation();
clicked(i);
break;
}
}
});
}
return {
updatePlayer: updatePlayer
};
}
function makeScaleLegend(svg, root, width, colors) {
var gradient = svg.append('svg:defs')
.append('svg:linearGradient')
.attr('id', 'gradient')
.attr('x1', '0%')
.attr('y1', '0%')
.attr('x2', '100%')
.attr('y2', '0%')
.attr('spreadMethod', 'pad');
gradient.append('svg:stop')
.attr('offset', '0%')
.attr('stop-color', colors(0))
.attr('stop-opacity', 1);
gradient.append('svg:stop')
.attr('offset', '100%')
.attr('stop-color', colors(1))
.attr('stop-opacity', 1);
root.append('svg:rect')
.attr('width', width)
.attr('height', 6)
.style('stroke-width', 0)
.style('fill', 'url(#gradient)');
var scale = d3.scale.linear()
.domain([1, 2])
.range([0, width]);
var axis = d3.svg.axis()
.scale(scale)
.ticks(1)
.tickSize(6)
.orient('bottom');
var legend = root.append('g')
.attr('transform', 'translate(0,6)')
.attr('class', 'axis')
.call(axis);
function update(minMax, duration) {
scale.domain(!(minMax.max - minMax.min) ? [minMax.min - 0.5, minMax.max + 0.5] : [minMax.min, minMax.max]);
var ticks = Math.min(8, (minMax.max - minMax.min) || 1);
axis.ticks(ticks);
legend.transition().duration(duration).call(axis);
}
return {
update: update
};
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"ABW","properties":{"name":"Aruba"},"arcs":[[0]]},{"type":"Polygon","id":"AFG","properties":{"name":"Afghanistan"},"arcs":[[1,2,3,4,5,6,7]]},{"type":"MultiPolygon","id":"AGO","properties":{"name":"Angola"},"arcs":[[[8,9,10,11]],[[12,13,14]]]},{"type":"Polygon","id":"AIA","properties":{"name":"Anguilla"},"arcs":[[15]]},{"type":"Polygon","id":"ALB","properties":{"name":"Albania"},"arcs":[[16,17,18,19,20]]},{"type":"MultiPolygon","id":"ALD","properties":{"name":"Aland"},"arcs":[[[21]],[[22]],[[23]]]},{"type":"Polygon","id":"AND","properties":{"name":"Andorra"},"arcs":[[24,25]]},{"type":"MultiPolygon","id":"ARE","properties":{"name":"United Arab Emirates"},"arcs":[[[26]],[[27]],[[28]],[[29]],[[30,31,32,33,34],[35]]]},{"type":"MultiPolygon","id":"ARG","properties":{"name":"Argentina"},"arcs":[[[36]],[[37,38]],[[39]],[[40,41,42,43,44,45]]]},{"type":"MultiPolygon","id":"ARM","properties":{"name":"Armenia"},"arcs":[[[46]],[[47,48,49,50,51],[52]]]},{"type":"Polygon","id":"ASM","properties":{"name":"American Samoa"},"arcs":[[53]]},{"type":"MultiPolygon","id":"ATA","properties":{"name":"Antarctica"},"arcs":[[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]]]},{"type":"Polygon","id":"ATC","properties":{"name":"Ashmore and Cartier Is."},"arcs":[[163]]},{"type":"MultiPolygon","id":"ATF","properties":{"name":"Fr. S. Antarctic Lands"},"arcs":[[[164]],[[165]],[[166]]]},{"type":"MultiPolygon","id":"ATG","properties":{"name":"Antigua and Barb."},"arcs":[[[167]],[[168]]]},{"type":"MultiPolygon","id":"AUS","properties":{"name":"Australia"},"arcs":[[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]]]},{"type":"Polygon","id":"AUT","properties":{"name":"Austria"},"arcs":[[211,212,213,214,215,216,217,218,219]]},{"type":"MultiPolygon","id":"AZE","properties":{"name":"Azerbaijan"},"arcs":[[[220,221,-49]],[[-53]],[[222,223,-52,224,225],[-47]]]},{"type":"Polygon","id":"BDI","properties":{"name":"Burundi"},"arcs":[[226,227,228]]},{"type":"Polygon","id":"BEL","properties":{"name":"Belgium"},"arcs":[[229,230,231,232,233,234,235]]},{"type":"Polygon","id":"BEN","properties":{"name":"Benin"},"arcs":[[236,237,238,239,240]]},{"type":"Polygon","id":"BFA","properties":{"name":"Burkina Faso"},"arcs":[[241,-240,242,243,244,245]]},{"type":"MultiPolygon","id":"BGD","properties":{"name":"Bangladesh"},"arcs":[[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252,253,254]]]},{"type":"Polygon","id":"BGR","properties":{"name":"Bulgaria"},"arcs":[[255,256,257,258,259,260]]},{"type":"Polygon","id":"BHR","properties":{"name":"Bahrain"},"arcs":[[261]]},{"type":"MultiPolygon","id":"BHS","properties":{"name":"Bahamas"},"arcs":[[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]]]},{"type":"Polygon","id":"BIH","properties":{"name":"Bosnia and Herz."},"arcs":[[277,278,279,280,281]]},{"type":"Polygon","id":"BLM","properties":{"name":"St-Barthélemy"},"arcs":[[282]]},{"type":"Polygon","id":"BLR","properties":{"name":"Belarus"},"arcs":[[283,284,285,286,287]]},{"type":"MultiPolygon","id":"BLZ","properties":{"name":"Belize"},"arcs":[[[288]],[[289]],[[290,291,292]]]},{"type":"Polygon","id":"BMU","properties":{"name":"Bermuda"},"arcs":[[293]]},{"type":"Polygon","id":"BOL","properties":{"name":"Bolivia"},"arcs":[[294,-46,295,296,297]]},{"type":"MultiPolygon","id":"BRA","properties":{"name":"Brazil"},"arcs":[[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314,315,316,317,-42,318,-298,319,320,321,322]]]},{"type":"Polygon","id":"BRB","properties":{"name":"Barbados"},"arcs":[[323]]},{"type":"MultiPolygon","id":"BRN","properties":{"name":"Brunei"},"arcs":[[[324,325]],[[326,327]]]},{"type":"Polygon","id":"BTN","properties":{"name":"Bhutan"},"arcs":[[328,329]]},{"type":"Polygon","id":"BWA","properties":{"name":"Botswana"},"arcs":[[330,331,332]]},{"type":"Polygon","id":"CAF","properties":{"name":"Central African Rep."},"arcs":[[333,334,335,336,337,338]]},{"type":"MultiPolygon","id":"CAN","properties":{"name":"Canada"},"arcs":[[[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]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383,384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[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]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441,442,443,444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]]]},{"type":"Polygon","id":"CHE","properties":{"name":"Switzerland"},"arcs":[[-218,485,-216,486,487,488]]},{"type":"MultiPolygon","id":"CHL","properties":{"name":"Chile"},"arcs":[[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[-38,498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[-45,519,520,-296]]]},{"type":"MultiPolygon","id":"CHN","properties":{"name":"China"},"arcs":[[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533,534,535,536,537,538,539,540,541,542,-330,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,-2,559,560,561,562,563,564]]]},{"type":"MultiPolygon","id":"CIV","properties":{"name":"Côte d'Ivoire"},"arcs":[[[565,566]],[[-245,567,568,569,570,571]]]},{"type":"Polygon","id":"CMR","properties":{"name":"Cameroon"},"arcs":[[-338,572,573,574,575,576,577]]},{"type":"Polygon","id":"COD","properties":{"name":"Dem. Rep. Congo"},"arcs":[[578,579,580,-228,581,582,-12,583,-15,584,-336]]},{"type":"Polygon","id":"COG","properties":{"name":"Congo"},"arcs":[[-585,-14,585,586,-573,-337]]},{"type":"Polygon","id":"COK","properties":{"name":"Cook Is."},"arcs":[[587]]},{"type":"MultiPolygon","id":"COL","properties":{"name":"Colombia"},"arcs":[[[588]],[[589,-321,590,591,592,593,594]]]},{"type":"MultiPolygon","id":"COM","properties":{"name":"Comoros"},"arcs":[[[595]],[[596]],[[597]]]},{"type":"MultiPolygon","id":"CPV","properties":{"name":"Cape Verde"},"arcs":[[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]]]},{"type":"Polygon","id":"CRI","properties":{"name":"Costa Rica"},"arcs":[[606,607,608,609]]},{"type":"MultiPolygon","id":"CUB","properties":{"name":"Cuba"},"arcs":[[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]]]},{"type":"Polygon","id":"CUW","properties":{"name":"Curaçao"},"arcs":[[617]]},{"type":"MultiPolygon","id":"CYM","properties":{"name":"Cayman Is."},"arcs":[[[618]],[[619]],[[620]]]},{"type":"Polygon","id":"CYN","properties":{"name":"N. Cyprus"},"arcs":[[621,622]]},{"type":"Polygon","id":"CYP","properties":{"name":"Cyprus"},"arcs":[[-622,623]]},{"type":"Polygon","id":"CZE","properties":{"name":"Czech Rep."},"arcs":[[624,625,-220,626]]},{"type":"MultiPolygon","id":"DEU","properties":{"name":"Germany"},"arcs":[[[627,628]],[[629]],[[630]],[[631]],[[632,633,-627,-219,-489,634,635,-231,636,637,638]],[[639]]]},{"type":"Polygon","id":"DJI","properties":{"name":"Djibouti"},"arcs":[[640,641,642,643]]},{"type":"Polygon","id":"DMA","properties":{"name":"Dominica"},"arcs":[[644]]},{"type":"MultiPolygon","id":"DNK","properties":{"name":"Denmark"},"arcs":[[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[-639,656]]]},{"type":"Polygon","id":"DOM","properties":{"name":"Dominican Rep."},"arcs":[[657,658]]},{"type":"Polygon","id":"DZA","properties":{"name":"Algeria"},"arcs":[[659,660,661,662,663,664,665,666]]},{"type":"MultiPolygon","id":"ECU","properties":{"name":"Ecuador"},"arcs":[[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675,676,-592]]]},{"type":"Polygon","id":"EGY","properties":{"name":"Egypt"},"arcs":[[677,678,679,680,681,682]]},{"type":"MultiPolygon","id":"ERI","properties":{"name":"Eritrea"},"arcs":[[[683]],[[684]],[[685,-643,686,687]]]},{"type":"MultiPolygon","id":"ESP","properties":{"name":"Spain"},"arcs":[[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699,-25,700,701,702,703]]]},{"type":"MultiPolygon","id":"EST","properties":{"name":"Estonia"},"arcs":[[[704]],[[705]],[[706]],[[707,708,709]]]},{"type":"Polygon","id":"ETH","properties":{"name":"Ethiopia"},"arcs":[[-642,710,711,712,713,714,-687]]},{"type":"MultiPolygon","id":"FIN","properties":{"name":"Finland"},"arcs":[[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722,723,724,725]]]},{"type":"MultiPolygon","id":"FJI","properties":{"name":"Fiji"},"arcs":[[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]]]},{"type":"MultiPolygon","id":"FLK","properties":{"name":"Falkland Is."},"arcs":[[[745]],[[746]],[[747]],[[748]],[[749]],[[750]]]},{"type":"MultiPolygon","id":"FRA","properties":{"name":"France"},"arcs":[[[751]],[[752]],[[-316,753,754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761,-635,-488,762,763,764,765,-701,-26,-700,766,-233]]]},{"type":"MultiPolygon","id":"FRO","properties":{"name":"Faeroe Is."},"arcs":[[[767]],[[768]],[[769]],[[770]],[[771]]]},{"type":"MultiPolygon","id":"FSM","properties":{"name":"Micronesia"},"arcs":[[[772]],[[773]],[[774]],[[775]],[[776]]]},{"type":"Polygon","id":"GAB","properties":{"name":"Gabon"},"arcs":[[-587,777,778,-574]]},{"type":"MultiPolygon","id":"GBR","properties":{"name":"United Kingdom"},"arcs":[[[779]],[[780]],[[781,782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]]]},{"type":"Polygon","id":"GEO","properties":{"name":"Georgia"},"arcs":[[-225,-51,803,804,805]]},{"type":"Polygon","id":"GGY","properties":{"name":"Guernsey"},"arcs":[[806]]},{"type":"Polygon","id":"GHA","properties":{"name":"Ghana"},"arcs":[[807,808,-566,809,-568,-244]]},{"type":"Polygon","id":"GIN","properties":{"name":"Guinea"},"arcs":[[810,-571,811,812,813,814,815]]},{"type":"Polygon","id":"GMB","properties":{"name":"Gambia"},"arcs":[[816,817]]},{"type":"MultiPolygon","id":"GNB","properties":{"name":"Guinea-Bissau"},"arcs":[[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824,825,-815]]]},{"type":"MultiPolygon","id":"GNQ","properties":{"name":"Eq. Guinea"},"arcs":[[[826,-575,-779]],[[827]]]},{"type":"MultiPolygon","id":"GRC","properties":{"name":"Greece"},"arcs":[[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867,-19,868,-258,869]]]},{"type":"Polygon","id":"GRD","properties":{"name":"Grenada"},"arcs":[[870]]},{"type":"MultiPolygon","id":"GRL","properties":{"name":"Greenland"},"arcs":[[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]]]},{"type":"Polygon","id":"GTM","properties":{"name":"Guatemala"},"arcs":[[-291,888,889,890,891,892]]},{"type":"Polygon","id":"GUM","properties":{"name":"Guam"},"arcs":[[893]]},{"type":"Polygon","id":"GUY","properties":{"name":"Guyana"},"arcs":[[894,-323,895,896]]},{"type":"MultiPolygon","id":"HKG","properties":{"name":"Hong Kong"},"arcs":[[[897]],[[898]],[[-536,899]]]},{"type":"Polygon","id":"HMD","properties":{"name":"Heard I. and McDonald Is."},"arcs":[[900]]},{"type":"MultiPolygon","id":"HND","properties":{"name":"Honduras"},"arcs":[[[901,902,903,-890,904]],[[905]],[[906]]]},{"type":"MultiPolygon","id":"HRV","properties":{"name":"Croatia"},"arcs":[[[907]],[[908]],[[-280,909,910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920,-282,921,922,923]]]},{"type":"MultiPolygon","id":"HTI","properties":{"name":"Haiti"},"arcs":[[[924]],[[-658,925]],[[926]]]},{"type":"Polygon","id":"HUN","properties":{"name":"Hungary"},"arcs":[[927,928,929,-924,930,-213,931]]},{"type":"MultiPolygon","id":"IDN","properties":{"name":"Indonesia"},"arcs":[[[932]],[[933]],[[934]],[[935]],[[936,937,938,939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023,1024,1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064,1065]],[[1066]],[[1067,1068]],[[1069]],[[1070]],[[1071]]]},{"type":"Polygon","id":"IMN","properties":{"name":"Isle of Man"},"arcs":[[1072]]},{"type":"MultiPolygon","id":"IND","properties":{"name":"India"},"arcs":[[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086,-551,1087,-549,1088,1089,-546,1090,-544,-329,-543,1091,-255,1092,1093,1094,1095,-556,1096,-554,1097,-552]]]},{"type":"MultiPolygon","id":"IOA","properties":{"name":"Indian Ocean Ter."},"arcs":[[[1098]],[[1099]],[[1100]]]},{"type":"Polygon","id":"IOT","properties":{"name":"Br. Indian Ocean Ter."},"arcs":[[1101]]},{"type":"MultiPolygon","id":"IRL","properties":{"name":"Ireland"},"arcs":[[[1102]],[[1103,-782]]]},{"type":"MultiPolygon","id":"IRN","properties":{"name":"Iran"},"arcs":[[[1104]],[[-48,-224,1105,1106,-5,1107,1108,1109,1110,1111,-221]]]},{"type":"Polygon","id":"IRQ","properties":{"name":"Iraq"},"arcs":[[-1111,1112,1113,1114,1115,1116,1117]]},{"type":"Polygon","id":"ISL","properties":{"name":"Iceland"},"arcs":[[1118]]},{"type":"Polygon","id":"ISR","properties":{"name":"Israel"},"arcs":[[1119,1120,1121,1122,-679,1123,1124,1125,1126]]},{"type":"MultiPolygon","id":"ITA","properties":{"name":"Italy"},"arcs":[[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134,1135,-763,-487,-215],[1136]]]},{"type":"Polygon","id":"JAM","properties":{"name":"Jamaica"},"arcs":[[1137]]},{"type":"Polygon","id":"JEY","properties":{"name":"Jersey"},"arcs":[[1138]]},{"type":"Polygon","id":"JOR","properties":{"name":"Jordan"},"arcs":[[1139,1140,-1122,1141,-1120,1142,-1116]]},{"type":"MultiPolygon","id":"JPN","properties":{"name":"Japan"},"arcs":[[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]]]},{"type":"Polygon","id":"KAS","properties":{"name":"Siachen Glacier"},"arcs":[[-1095,1177,-558]]},{"type":"MultiPolygon","id":"KAZ","properties":{"name":"Kazakhstan"},"arcs":[[[1178]],[[1179]],[[1180]],[[-562,1181,1182,1183,1184,1185]]]},{"type":"MultiPolygon","id":"KEN","properties":{"name":"Kenya"},"arcs":[[[1186]],[[1187,1188,1189,1190,1191,-713]]]},{"type":"Polygon","id":"KGZ","properties":{"name":"Kyrgyzstan"},"arcs":[[-561,1192,1193,-1182],[1194],[1195],[1196]]},{"type":"MultiPolygon","id":"KHM","properties":{"name":"Cambodia"},"arcs":[[[1197]],[[1198]],[[1199,1200,1201,1202]]]},{"type":"MultiPolygon","id":"KIR","properties":{"name":"Kiribati"},"arcs":[[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]]]},{"type":"MultiPolygon","id":"KNA","properties":{"name":"St. Kitts and Nevis"},"arcs":[[[1222]],[[1223]]]},{"type":"MultiPolygon","id":"KOR","properties":{"name":"Korea"},"arcs":[[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234,1235]]]},{"type":"Polygon","id":"KOS","properties":{"name":"Kosovo"},"arcs":[[1236,-17,1237,1238]]},{"type":"MultiPolygon","id":"KWT","properties":{"name":"Kuwait"},"arcs":[[[1239]],[[1240,-1114,1241]]]},{"type":"Polygon","id":"LAO","properties":{"name":"Lao PDR"},"arcs":[[1242,1243,1244,-1202,1245,1246,-541]]},{"type":"Polygon","id":"LBN","properties":{"name":"Lebanon"},"arcs":[[-1126,1247,1248]]},{"type":"Polygon","id":"LBR","properties":{"name":"Liberia"},"arcs":[[-570,1249,1250,-812]]},{"type":"Polygon","id":"LBY","properties":{"name":"Libya"},"arcs":[[-682,1251,1252,1253,-661,1254,1255]]},{"type":"Polygon","id":"LCA","properties":{"name":"Saint Lucia"},"arcs":[[1256]]},{"type":"Polygon","id":"LIE","properties":{"name":"Liechtenstein"},"arcs":[[-486,-217]]},{"type":"MultiPolygon","id":"LKA","properties":{"name":"Sri Lanka"},"arcs":[[[1257]],[[1258]],[[1259]]]},{"type":"Polygon","id":"LSO","properties":{"name":"Lesotho"},"arcs":[[1260]]},{"type":"MultiPolygon","id":"LTU","properties":{"name":"Lithuania"},"arcs":[[[1261,1262]],[[-287,1263,1264,1265,1266]]]},{"type":"Polygon","id":"LUX","properties":{"name":"Luxembourg"},"arcs":[[-636,-762,-232]]},{"type":"Polygon","id":"LVA","properties":{"name":"Latvia"},"arcs":[[1267,-288,-1267,1268,-709]]},{"type":"Polygon","id":"MAC","properties":{"name":"Macao"},"arcs":[[-538,1269]]},{"type":"Polygon","id":"MAF","properties":{"name":"St-Martin"},"arcs":[[1270,1271]]},{"type":"Polygon","id":"MAR","properties":{"name":"Morocco"},"arcs":[[-666,1272,1273]]},{"type":"Polygon","id":"MCO","properties":{"name":"Monaco"},"arcs":[[1274,-765]]},{"type":"Polygon","id":"MDA","properties":{"name":"Moldova"},"arcs":[[1275,1276]]},{"type":"MultiPolygon","id":"MDG","properties":{"name":"Madagascar"},"arcs":[[[1277]],[[1278]],[[1279]]]},{"type":"MultiPolygon","id":"MDV","properties":{"name":"Maldives"},"arcs":[[[1280]],[[1281]]]},{"type":"MultiPolygon","id":"MEX","properties":{"name":"Mexico"},"arcs":[[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297,-292,-893,1298,1299]]]},{"type":"MultiPolygon","id":"MHL","properties":{"name":"Marshall Is."},"arcs":[[[1300]],[[1301]],[[1302]],[[1303]],[[1304]]]},{"type":"Polygon","id":"MKD","properties":{"name":"Macedonia"},"arcs":[[-259,-869,-18,-1237,1305]]},{"type":"Polygon","id":"MLI","properties":{"name":"Mali"},"arcs":[[1306,-246,-572,-811,1307,1308,-663]]},{"type":"MultiPolygon","id":"MLT","properties":{"name":"Malta"},"arcs":[[[1309]],[[1310]]]},{"type":"MultiPolygon","id":"MMR","properties":{"name":"Myanmar"},"arcs":[[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[-1247,1329,1330,-253,-1092,-542]]]},{"type":"Polygon","id":"MNE","properties":{"name":"Montenegro"},"arcs":[[1331,-1238,-21,1332,-910,-279]]},{"type":"Polygon","id":"MNG","properties":{"name":"Mongolia"},"arcs":[[-564,1333]]},{"type":"MultiPolygon","id":"MNP","properties":{"name":"N. Mariana Is."},"arcs":[[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]]]},{"type":"Polygon","id":"MOZ","properties":{"name":"Mozambique"},"arcs":[[1340,1341,1342,1343,1344,1345,1346,1347],[1348],[1349]]},{"type":"MultiPolygon","id":"MRT","properties":{"name":"Mauritania"},"arcs":[[[1350]],[[1351,1352,1353,-664,-1309]]]},{"type":"Polygon","id":"MSR","properties":{"name":"Montserrat"},"arcs":[[1354]]},{"type":"Polygon","id":"MUS","properties":{"name":"Mauritius"},"arcs":[[1355]]},{"type":"MultiPolygon","id":"MWI","properties":{"name":"Malawi"},"arcs":[[[-1350]],[[-1349]],[[-1346,1356,1357]]]},{"type":"MultiPolygon","id":"MYS","properties":{"name":"Malaysia"},"arcs":[[[1358]],[[1359]],[[1360]],[[-1066,1361]],[[1362]],[[1363]],[[1364,1365]],[[-1069,1366,-327,-326,1367]],[[1368]]]},{"type":"Polygon","id":"NAM","properties":{"name":"Namibia"},"arcs":[[1369,-333,1370,1371,-10]]},{"type":"MultiPolygon","id":"NCL","properties":{"name":"New Caledonia"},"arcs":[[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]]]},{"type":"Polygon","id":"NER","properties":{"name":"Niger"},"arcs":[[1378,1379,-241,-242,-1307,-662,-1254]]},{"type":"Polygon","id":"NFK","properties":{"name":"Norfolk Island"},"arcs":[[1380]]},{"type":"MultiPolygon","id":"NGA","properties":{"name":"Nigeria"},"arcs":[[[1381]],[[1382,-577,1383,-237,-1380]]]},{"type":"Polygon","id":"NIC","properties":{"name":"Nicaragua"},"arcs":[[1384,-610,1385,-902]]},{"type":"Polygon","id":"NIU","properties":{"name":"Niue"},"arcs":[[1386]]},{"type":"MultiPolygon","id":"NLD","properties":{"name":"Netherlands"},"arcs":[[[1387]],[[1388]],[[1389]],[[-235,1390]],[[1391]],[[1392]],[[1393]],[[1394,-637,1395,-236]],[[1396]],[[1397]],[[1398]],[[1399]]]},{"type":"MultiPolygon","id":"NOR","properties":{"name":"Norway"},"arcs":[[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420,-726,1421,1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]]]},{"type":"Polygon","id":"NPL","properties":{"name":"Nepal"},"arcs":[[-1091,-545]]},{"type":"Polygon","id":"NRU","properties":{"name":"Nauru"},"arcs":[[1434]]},{"type":"MultiPolygon","id":"NZL","properties":{"name":"New Zealand"},"arcs":[[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]]]},{"type":"MultiPolygon","id":"OMN","properties":{"name":"Oman"},"arcs":[[[1448]],[[1449,1450,1451,-32]],[[-36]],[[-35,1452]]]},{"type":"Polygon","id":"PAK","properties":{"name":"Pakistan"},"arcs":[[-1178,-1094,1453,-1109,-3,-559]]},{"type":"MultiPolygon","id":"PAN","properties":{"name":"Panama"},"arcs":[[[1454]],[[1455]],[[1456]],[[1457]],[[-594,1458,-608,1459]]]},{"type":"Polygon","id":"PCN","properties":{"name":"Pitcairn Is."},"arcs":[[1460]]},{"type":"Polygon","id":"PER","properties":{"name":"Peru"},"arcs":[[-320,-297,-521,1461,-676,-591]]},{"type":"MultiPolygon","id":"PHL","properties":{"name":"Philippines"},"arcs":[[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[1493]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]]]},{"type":"MultiPolygon","id":"PLW","properties":{"name":"Palau"},"arcs":[[[1510]],[[1511]]]},{"type":"MultiPolygon","id":"PN1","properties":{"name":"Papua New Guinea"},"arcs":[[[1512]],[[1513]],[[1514]],[[1515]],[[1516]],[[1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[1527]],[[1528]],[[1529]],[[1530]],[[1531]],[[-1025,1532,1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]]]},{"type":"Polygon","id":"POL","properties":{"name":"Poland"},"arcs":[[1539,-1264,-286,1540,1541,-625,-634,1542,-629,1543]]},{"type":"MultiPolygon","id":"PRI","properties":{"name":"Puerto Rico"},"arcs":[[[1544]],[[1545]],[[1546]]]},{"type":"MultiPolygon","id":"PRK","properties":{"name":"Dem. Rep. Korea"},"arcs":[[[1547]],[[1548,1549,-1236,1550,-534]]]},{"type":"MultiPolygon","id":"PR1","properties":{"name":"Portugal"},"arcs":[[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559,-703]]]},{"type":"Polygon","id":"PRY","properties":{"name":"Paraguay"},"arcs":[[-319,-41,-295]]},{"type":"MultiPolygon","id":"PSX","properties":{"name":"Palestine"},"arcs":[[[-678,1560,-1124]],[[-1121,-1142]]]},{"type":"MultiPolygon","id":"PYF","properties":{"name":"Fr. Polynesia"},"arcs":[[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]]]},{"type":"Polygon","id":"QAT","properties":{"name":"Qatar"},"arcs":[[1582,1583]]},{"type":"Polygon","id":"ROU","properties":{"name":"Romania"},"arcs":[[1584,1585,-261,1586,-929,1587,-1276]]},{"type":"MultiPolygon","id":"RUS","properties":{"name":"Russia"},"arcs":[[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[-1265,-1540,1607,-1262,1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[-1549,-565,-1334,-563,-1186,1656,-226,-806,1657,1658,-284,-1268,-708,1659,-723,-1421,1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]]]},{"type":"Polygon","id":"RWA","properties":{"name":"Rwanda"},"arcs":[[1691,-229,-581,1692]]},{"type":"Polygon","id":"SAH","properties":{"name":"W. Sahara"},"arcs":[[-1354,1693,-1273,-665]]},{"type":"MultiPolygon","id":"SAU","properties":{"name":"Saudi Arabia"},"arcs":[[[1694]],[[1695]],[[1696]],[[-1241,1697,-1583,1698,-33,-1452,1699,1700,-1140,-1115]]]},{"type":"Polygon","id":"SDN","properties":{"name":"Sudan"},"arcs":[[1701,-688,-715,1702,-334,1703,-1252,-681]]},{"type":"Polygon","id":"SDS","properties":{"name":"S. Sudan"},"arcs":[[-714,-1192,1704,-579,-335,-1703]]},{"type":"Polygon","id":"SEN","properties":{"name":"Senegal"},"arcs":[[-1308,-816,-826,1705,-818,1706,-1352]]},{"type":"Polygon","id":"SGP","properties":{"name":"Singapore"},"arcs":[[1707]]},{"type":"MultiPolygon","id":"SGS","properties":{"name":"S. Geo. and S. Sandw. Is."},"arcs":[[[1708]],[[1709]]]},{"type":"MultiPolygon","id":"SHN","properties":{"name":"Saint Helena"},"arcs":[[[1710]],[[1711]]]},{"type":"MultiPolygon","id":"SLB","properties":{"name":"Solomon Is."},"arcs":[[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]]]},{"type":"MultiPolygon","id":"SLE","properties":{"name":"Sierra Leone"},"arcs":[[[1733]],[[-1251,1734,-813]]]},{"type":"Polygon","id":"SLV","properties":{"name":"El Salvador"},"arcs":[[-904,1735,-891]]},{"type":"Polygon","id":"SMR","properties":{"name":"San Marino"},"arcs":[[-1137]]},{"type":"Polygon","id":"SOL","properties":{"name":"Somaliland"},"arcs":[[1736,-711,-641,1737]]},{"type":"Polygon","id":"SOM","properties":{"name":"Somalia"},"arcs":[[-1188,-712,-1737,1738]]},{"type":"MultiPolygon","id":"SPM","properties":{"name":"St. Pierre and Miquelon"},"arcs":[[[1739]],[[1740]]]},{"type":"Polygon","id":"SRB","properties":{"name":"Serbia"},"arcs":[[-1587,-260,-1306,-1239,-1332,-278,-921,-930]]},{"type":"MultiPolygon","id":"STP","properties":{"name":"São Tomé and Principe"},"arcs":[[[1741]],[[1742]]]},{"type":"Polygon","id":"SUR","properties":{"name":"Suriname"},"arcs":[[-754,-315,-895,1743]]},{"type":"Polygon","id":"SVK","properties":{"name":"Slovakia"},"arcs":[[1744,-932,-212,-626,-1542]]},{"type":"Polygon","id":"SVN","properties":{"name":"Slovenia"},"arcs":[[-923,1745,-1135,-214,-931]]},{"type":"MultiPolygon","id":"SWE","properties":{"name":"Sweden"},"arcs":[[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751,-1422,-725]]]},{"type":"Polygon","id":"SWZ","properties":{"name":"Swaziland"},"arcs":[[-1342,1752]]},{"type":"Polygon","id":"SXM","properties":{"name":"Sint Maarten"},"arcs":[[-1271,1753]]},{"type":"Polygon","id":"SYC","properties":{"name":"Seychelles"},"arcs":[[1754]]},{"type":"Polygon","id":"SYR","properties":{"name":"Syria"},"arcs":[[-1117,-1143,-1127,-1249,1755,1756]]},{"type":"MultiPolygon","id":"TCA","properties":{"name":"Turks and Caicos Is."},"arcs":[[[1757]],[[1758]],[[1759]]]},{"type":"Polygon","id":"TCD","properties":{"name":"Chad"},"arcs":[[-1704,-339,-578,-1383,-1379,-1253]]},{"type":"Polygon","id":"TGO","properties":{"name":"Togo"},"arcs":[[-239,1760,-808,-243]]},{"type":"MultiPolygon","id":"THA","properties":{"name":"Thailand"},"arcs":[[[1761]],[[1762]],[[1763]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]],[[-1246,-1201,1770,-1366,1771,-1330]]]},{"type":"MultiPolygon","id":"TJK","properties":{"name":"Tajikistan"},"arcs":[[[-1195]],[[1772]],[[-1193,-560,-8,1773]]]},{"type":"MultiPolygon","id":"TKM","properties":{"name":"Turkmenistan"},"arcs":[[[1774]],[[-6,-1107,1775,-1184,1776]]]},{"type":"MultiPolygon","id":"TLS","properties":{"name":"Timor-Leste"},"arcs":[[[1777,-938]],[[-940,1778]],[[1779]]]},{"type":"MultiPolygon","id":"TON","properties":{"name":"Tonga"},"arcs":[[[1780]],[[1781]],[[1782]]]},{"type":"MultiPolygon","id":"TTO","properties":{"name":"Trinidad and Tobago"},"arcs":[[[1783]],[[1784]]]},{"type":"MultiPolygon","id":"TUN","properties":{"name":"Tunisia"},"arcs":[[[1785]],[[1786]],[[-1255,-660,1787]]]},{"type":"MultiPolygon","id":"TUR","properties":{"name":"Turkey"},"arcs":[[[1788]],[[-804,-50,-222,-1112,-1118,-1757,1789]],[[1790,-870,-257]]]},{"type":"MultiPolygon","id":"TWN","properties":{"name":"Taiwan"},"arcs":[[[1791]],[[1792]]]},{"type":"MultiPolygon","id":"TZA","properties":{"name":"Tanzania"},"arcs":[[[1793]],[[1794]],[[1795]],[[-1190,1796,-1347,-1358,1797,-582,-227,-1692,1798]]]},{"type":"Polygon","id":"UGA","properties":{"name":"Uganda"},"arcs":[[-1799,-1693,-580,-1705,-1191]]},{"type":"MultiPolygon","id":"UKR","properties":{"name":"Ukraine"},"arcs":[[[1799]],[[1800,-1585,-1277,-1588,-928,-1745,-1541,-285,-1659]]]},{"type":"Polygon","id":"URY","properties":{"name":"Uruguay"},"arcs":[[1801,-43,-318]]},{"type":"MultiPolygon","id":"USA","properties":{"name":"United States"},"arcs":[[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845]],[[1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[-356,1860,-1300,1861,-442]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[-444,1931,-384,1932]]]},{"type":"MultiPolygon","id":"UZB","properties":{"name":"Uzbekistan"},"arcs":[[[-1196]],[[-1197]],[[-1194,-1774,-7,-1777,-1183],[-1773]]]},{"type":"Polygon","id":"VAT","properties":{"name":"Vatican"},"arcs":[[1933]]},{"type":"MultiPolygon","id":"VCT","properties":{"name":"St. Vin. and Gren."},"arcs":[[[1934]],[[1935]],[[1936]]]},{"type":"MultiPolygon","id":"VEN","properties":{"name":"Venezuela"},"arcs":[[[1937]],[[1938]],[[1939]],[[1940]],[[-896,-322,-590,1941]]]},{"type":"MultiPolygon","id":"VGB","properties":{"name":"British Virgin Is."},"arcs":[[[1942]],[[1943]],[[1944]]]},{"type":"MultiPolygon","id":"VIR","properties":{"name":"U.S. Virgin Is."},"arcs":[[[1945]],[[1946]],[[1947]]]},{"type":"MultiPolygon","id":"VNM","properties":{"name":"Vietnam"},"arcs":[[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955,-1203,-1245,1956,-1243,-540]]]},{"type":"MultiPolygon","id":"VUT","properties":{"name":"Vanuatu"},"arcs":[[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]],[[1964]],[[1965]],[[1966]],[[1967]],[[1968]],[[1969]],[[1970]]]},{"type":"MultiPolygon","id":"WLF","properties":{"name":"Wallis and Futuna Is."},"arcs":[[[1971]],[[1972]]]},{"type":"MultiPolygon","id":"WSM","properties":{"name":"Samoa"},"arcs":[[[1973]],[[1974]]]},{"type":"MultiPolygon","id":"YEM","properties":{"name":"Yemen"},"arcs":[[[1975]],[[1976]],[[1977]],[[1978]],[[1979,-1700,-1451]]]},{"type":"MultiPolygon","id":"ZAF","properties":{"name":"South Africa"},"arcs":[[[1980]],[[-1343,-1753,-1341,1981,-1371,-332,1982],[-1261]]]},{"type":"Polygon","id":"ZMB","properties":{"name":"Zambia"},"arcs":[[-1357,-1345,1983,-1370,-9,-583,-1798]]},{"type":"Polygon","id":"ZWE","properties":{"name":"Zimbabwe"},"arcs":[[-1983,-331,-1984,-1344]]}]}},"arcs":[[[2724,4098],[0,0]],[[6746,2671],[-4,-4],[-10,8],[5,8]],[[6737,2683],[-14,11],[-18,-3],[-22,3],[-13,7],[-9,13],[-6,3],[-12,22],[5,6],[7,27],[0,15],[-4,14],[-15,25],[5,10],[-1,18],[-11,6],[-7,0],[-13,-6],[-2,9],[10,25],[1,10],[-10,10],[-12,5],[-3,25],[-4,8],[1,30],[-5,10],[-6,7],[-7,-10],[-13,3],[-11,12],[-6,2],[6,10],[-13,6],[-7,-5],[-6,3],[-6,12],[-6,9],[-3,16],[1,18],[-2,16],[2,4],[-5,8],[-29,16],[-16,-1],[-11,10],[-15,-6],[-31,5],[-46,-26]],[[6355,3095],[8,-15]],[[6363,3080],[19,-41],[0,-14],[-3,-17],[-24,-7],[0,-10],[0,-33],[-3,-22],[-4,-30],[10,-23],[-9,-2],[-3,-8],[0,-22],[5,-12],[5,-1],[-3,-13],[6,-6],[4,-11],[2,-14],[-2,-10],[3,-3],[2,-17]],[[6368,2764],[8,8],[11,0],[9,17],[11,-4],[11,-11],[3,-14],[-2,-8],[21,-11],[14,-12],[6,-12],[6,-36],[0,-5],[8,-6],[13,0],[2,-13],[4,-6],[9,9],[12,4]],[[6514,2664],[15,1],[4,6],[6,-2],[9,5]],[[6548,2674],[6,12],[2,1],[7,-8],[19,-14],[8,13],[5,-11],[-1,-11],[6,-6],[16,1],[2,-11],[-2,-7],[12,-26],[7,-7],[10,9],[2,8],[-1,14],[8,-1],[-5,47],[4,16],[4,9],[4,0],[9,-12],[14,-8],[6,-13],[13,-12],[11,3],[-3,9],[4,2],[11,-6],[3,-5],[11,1],[6,10]],[[5332,5441],[2,26],[-2,16],[0,30],[1,17],[-3,12],[2,19],[-2,3],[-53,0],[0,170],[1,17],[3,20],[5,5],[11,22],[19,33]],[[5316,5831],[-30,11],[-25,9],[-8,-3],[-14,3],[-6,-6],[-14,0],[-26,-4],[-7,-6],[-9,-19],[-124,0],[-12,-20],[-11,-5],[-15,15],[-15,-3],[-8,5]],[[4992,5808],[3,-42],[-2,-40],[6,-10],[8,-59],[3,-33],[5,-35],[9,-23],[3,-16],[12,-15],[5,-12],[5,-27],[0,-19],[2,-25],[-4,-24],[-5,-13],[-1,-9],[-8,-32],[-1,-18],[-5,-20],[10,-20],[1,-19],[-15,-65],[-1,-16],[-8,-21],[-7,-27],[14,-7],[8,-8]],[[5029,5153],[20,-1],[17,3],[29,-2],[24,0],[7,6],[5,16],[-1,13],[6,27],[2,18],[16,49],[10,-2],[20,-8],[7,4],[12,-2],[1,-18],[3,-10],[0,-12],[5,-13],[15,-6],[11,-1],[-1,18],[10,3],[24,1],[2,7],[-2,25],[3,28],[1,20],[-3,45],[1,7],[7,15],[6,31],[0,17],[-4,12],[3,17],[8,-8],[14,2],[9,-7],[12,3],[4,-9]],[[5005,5147],[0,-17],[-5,-27]],[[5000,5103],[10,-22],[12,-11],[7,12]],[[5029,5082],[-6,6],[-11,20],[2,4],[-1,33],[-8,2]],[[2916,3766],[0,0]],[[5223,2365],[5,12],[7,6],[3,12],[-1,8]],[[5237,2403],[-1,18],[-2,3],[1,14],[6,20],[7,4]],[[5248,2462],[2,17],[-6,7],[-5,20],[-5,1],[-4,7],[2,9],[-3,7],[-7,-2]],[[5222,2528],[-4,-19],[-11,-10],[-4,-11],[4,0],[-4,-15],[4,-15],[-1,-29],[4,-12],[0,-9],[-7,-4]],[[5203,2404],[1,-12],[-2,-6],[10,-26],[4,9],[7,-4]],[[5239,1357],[0,0]],[[5212,1349],[0,0]],[[5221,1339],[8,5],[-6,5],[0,5],[-7,1],[-3,-11],[8,-5]],[[4714,2367],[-8,4],[0,-9]],[[4706,2362],[8,-1],[0,6]],[[6164,3423],[-9,0],[6,-5],[3,5]],[[6128,3416],[0,0]],[[6148,3418],[-5,-2],[8,-5],[-3,7]],[[6179,3407],[0,0]],[[6230,3338],[2,4],[0,34]],[[6232,3376],[-7,14],[-6,-13],[-3,6],[-1,36],[5,1],[1,9],[-12,4],[0,10],[-10,45],[0,19]],[[6199,3507],[-3,5],[-65,-16],[-5,-2],[-11,-25],[-16,-41],[0,-12]],[[6099,3416],[5,2],[4,16],[8,-1],[13,-9],[10,0],[22,5],[16,-12],[6,-25],[13,-19],[12,-26],[12,-18],[3,-15]],[[6223,3314],[3,1],[0,20],[4,3]],[[6227,3363],[0,0]],[[2873,7967],[20,2],[-13,2],[-9,6],[-2,-8],[4,-2]],[[2759,7974],[1,-12],[0,-115]],[[2760,7847],[10,20],[-6,6],[-1,8],[11,5],[3,13],[14,22],[12,12],[6,5],[11,13],[20,12],[14,-1],[2,2],[-5,12],[-7,2],[-10,0],[-15,6],[-12,-6],[-24,-2],[-15,-4],[-9,2]],[[2948,7071],[0,0]],[[2926,6096],[8,11],[12,35],[11,20],[13,15],[6,11],[16,9],[5,0],[14,15],[6,11],[18,19],[21,15],[11,20],[-1,13],[-4,5],[-5,21],[-7,14],[0,18],[-13,33],[0,6],[14,-1],[20,9],[13,0],[17,6],[3,-10],[5,-4],[8,6],[4,-2],[1,-10],[5,-10],[8,-5],[8,-16],[5,-19],[1,-44]],[[3149,6287],[5,4],[8,-6],[8,12],[1,13],[5,18],[-2,4],[-1,24],[1,7],[-3,13],[-14,19],[-14,6],[-7,19],[-7,5],[-12,15],[3,7],[-5,0],[-2,8],[-11,21],[-5,15],[-2,1],[-11,28],[-9,15],[-4,10],[-5,8]],[[3066,6553],[-7,23],[2,16],[-4,4],[2,10],[-5,19],[2,11],[-6,17],[2,23],[-2,9]],[[3050,6685],[-1,6],[2,22],[-8,8],[0,11],[-3,21],[3,14],[1,18],[-3,6],[1,9],[5,12],[15,13],[13,17],[4,18],[-6,12],[0,10],[3,15],[5,9],[9,2],[1,29],[0,6],[-10,29],[-10,16],[-3,20],[-4,5],[-14,15],[-23,14],[-23,10],[-29,7],[-20,2],[-13,-4],[-3,-6],[-5,1],[2,9],[0,15],[7,6],[-2,26],[-6,8],[-3,23],[5,18],[-4,12],[-16,13],[-18,4],[-4,-2],[-18,-12],[-13,-6],[-1,-5],[-6,8],[0,20],[4,30],[-2,13],[2,7],[13,9],[-1,9],[13,0],[1,-8],[-5,-2],[10,-6],[7,10],[1,15],[-3,15],[-9,3],[-6,-7],[-2,-10],[-9,-3],[-9,8],[-2,5],[11,10],[9,2],[-3,5],[-13,8],[-11,25],[-1,10],[2,15],[-2,6],[1,11],[-2,8],[-8,10],[-2,7],[3,5],[-1,8],[-15,-3],[-11,13],[-10,5],[-10,17],[-7,23],[-2,11],[3,16],[20,33],[22,5],[4,4],[3,11],[-1,12],[-3,8],[-9,7],[8,0],[2,7],[-15,23],[-18,17],[-12,18],[-6,18],[1,5],[-3,30],[-4,6],[-10,8],[-4,-4],[-7,-16],[-2,12],[6,4],[3,6],[-15,14],[-3,6],[-4,29],[5,29],[-1,2],[-11,3],[7,5],[5,-3],[8,23],[10,16],[-3,4]],[[2764,7831],[0,-4],[-20,-10],[-8,0],[-13,-6],[-14,-2],[-40,0],[-1,-7],[-13,-19],[3,-14],[-2,-7],[3,-15],[-2,-14],[-3,-4],[-12,3],[-6,6],[-8,-31],[-3,-5],[-1,-13],[2,-7],[-3,-11],[3,-15],[9,-2],[-1,-7],[5,-11],[7,-4],[4,-10],[0,-15],[7,-6],[0,-15],[-5,-9],[5,-26],[12,-18],[-2,-11],[1,-10],[6,-8],[1,-7],[-2,-16],[-3,-8],[7,-11],[-4,-8],[0,-15],[7,-2],[4,-18],[-7,-13],[-12,-4],[3,-8],[19,-2],[3,-15],[-6,-4],[-14,-1],[2,-16],[3,-12],[-3,-10],[2,-6],[-5,-11],[4,-9],[-1,-6],[-7,-5],[-3,-6],[0,-24],[3,-5],[-2,-14],[4,-6],[6,-3],[0,-7],[-4,-19],[1,-42],[-2,-7],[4,-21],[3,-6],[-5,-9],[5,-4],[1,-15],[-2,-12],[3,0],[6,-20],[-1,-16],[2,-7],[12,-8],[1,-12],[-2,-5],[-3,-31],[-3,-16],[0,-19],[1,-11],[-1,-15],[4,-19],[7,-6],[6,-15],[4,-5],[0,-16],[-1,-26],[-2,-7],[3,-3],[4,-24],[8,-28],[4,-2],[-2,-35],[4,-13],[-4,-8],[-3,2],[-2,-10],[2,-9],[-4,-20],[0,-8],[-4,-12],[-1,-12],[3,-5],[-6,-8],[-3,-15],[1,-20],[6,-12],[-1,-6],[5,-24],[0,-6],[6,-2],[3,-13],[-3,-3],[1,-17],[-3,-27],[6,-12],[4,-40],[12,-25],[6,-24],[5,-24],[5,0],[9,-7],[1,-9],[-8,-20],[0,-6],[5,-15],[-4,-29],[0,-24],[5,-8],[-5,-14],[1,-13],[8,-13],[24,-22],[9,-58],[-4,-10]],[[2800,6130],[4,-17],[7,-7],[2,-11],[10,-7],[4,-17],[12,16],[20,0],[13,9],[5,30],[3,4],[1,-14],[8,-30],[3,-4],[29,-1],[5,15]],[[5931,2476],[0,0]],[[5956,2574],[-9,2]],[[5947,2576],[-5,-21],[-4,-6],[0,-12],[-10,3],[-8,-5],[-4,-10],[-6,3]],[[5910,2528],[-14,-19],[-9,1],[-7,-8],[-5,-19],[6,-13],[-8,-23]],[[5873,2447],[13,-2],[9,-4],[6,2],[11,-2],[3,-4]],[[5915,2437],[6,9],[-3,2],[15,15],[-6,8],[5,16],[10,11],[-2,13],[-8,2],[13,14],[4,8],[7,2],[-2,10],[6,9],[-5,1],[1,17]],[[5915,2452],[0,0]],[[9923,5641],[0,0]],[[167,9603],[-9,1],[-20,-4],[-16,-6],[-5,-7],[27,1],[33,9],[-10,6]],[[278,9544],[-2,0],[-20,-14],[-5,-5],[17,7],[14,7],[-4,5]],[[209,9514],[-77,-6],[-14,-3],[-6,-2],[3,-4],[18,-2],[21,2],[25,4],[17,4],[13,7]],[[391,9424],[-12,0],[-16,-4],[-3,-3],[-20,-4],[2,-4],[32,10],[14,3],[3,2]],[[3007,9443],[-1,17],[-4,8],[-18,10],[-40,-4],[-18,-4],[-9,-3],[-5,-10],[-25,2],[-6,6],[-26,-7],[-38,-14],[-5,-5],[11,-4],[5,8],[6,1],[96,0],[24,-1],[13,-5],[-12,-4],[-2,-10],[11,-1],[-2,-6],[9,-5],[13,-4],[19,1],[5,6],[-2,14],[13,5],[-6,0],[-6,9]],[[3802,9410],[8,-1],[1,-6],[4,5],[22,5],[7,5],[-13,1],[-10,5],[-11,-5],[-21,-2],[-12,-9],[9,-6],[16,8]],[[3768,9404],[-7,-1],[6,-8],[11,3],[-10,6]],[[2828,9428],[-6,-8],[-14,-2],[-5,-9],[-19,-9],[-1,-3],[23,1],[5,1],[22,1],[4,8],[7,1],[3,10],[-19,9]],[[2797,9390],[-4,4],[-20,-1],[-11,-3],[6,-7],[9,-4],[15,-1],[11,2],[-6,10]],[[3724,9384],[-4,1],[-70,-3],[1,-5],[9,0],[18,-7],[44,10],[2,4]],[[249,9412],[-35,2],[-44,-9],[-40,-11],[-25,-10],[-1,-11],[4,-9],[21,-11],[3,-4],[24,3],[21,7],[10,6],[44,24],[12,10],[7,9],[-1,4]],[[2713,9404],[-30,-2],[-8,-4],[-3,-8],[4,-11],[11,-10],[20,-10],[22,-7],[10,-5],[53,-18],[12,-4],[9,4],[-12,11],[-41,25],[-17,13],[-12,12],[-2,10],[-16,4]],[[9322,9315],[-7,7],[-12,-2],[-9,4],[-14,0],[-3,-10],[3,-1],[21,6],[17,-12],[4,8]],[[3410,9354],[33,0],[8,0],[6,5],[9,24],[7,10],[-2,19],[-7,10],[-13,2],[8,5],[-2,5],[-163,26],[-10,8],[-122,5],[-5,-6],[0,-12],[6,-2],[20,-24],[10,4],[16,-6],[5,3],[30,-17],[15,-11],[10,-13],[-5,-6],[-7,-1],[5,-8],[1,-11],[8,-8],[-4,-2],[4,-10],[8,-9],[16,-14],[8,-10],[45,-13],[18,-3],[23,4],[13,2],[33,13],[14,11],[1,9],[-4,9],[-36,5],[0,7]],[[522,9269],[8,4],[-14,-1],[-8,-4],[9,-3],[5,4]],[[488,9270],[-1,2],[-29,-7],[14,-2],[16,7]],[[9307,9269],[10,4],[28,-1],[23,3],[2,4],[-17,9],[-12,1],[-11,-2],[-14,1],[-19,11],[-14,-17],[11,-10],[-6,-8],[3,-4],[13,0],[3,9]],[[539,9250],[-18,-1],[0,-5],[20,4],[-2,2]],[[521,9257],[-14,1],[-4,-3],[-16,-1],[-9,-5],[10,-5],[15,-1],[18,14]],[[594,9248],[-13,1],[0,-9],[23,3],[3,4],[-13,1]],[[518,9234],[19,0],[8,4],[-12,2],[-12,-1],[-3,-5]],[[493,9237],[-11,1],[-5,-4],[18,-2],[-2,5]],[[567,9229],[0,0]],[[589,9229],[-3,5],[-13,-6],[7,-5],[9,6]],[[592,9207],[-6,1],[-12,-8],[-1,-5],[12,3],[7,9]],[[9193,9168],[-5,6],[-6,0],[4,-5],[7,-1]],[[632,9176],[-8,-2],[-17,-6],[7,-4],[13,5],[5,7]],[[9221,9124],[-6,0],[-1,-6],[13,-6],[-6,12]],[[989,9103],[-4,3],[-9,-2],[9,-5],[4,4]],[[1026,9111],[-22,-2],[-9,-7],[11,-6],[6,3],[16,2],[-2,10]],[[1129,9113],[-13,-2],[-8,-7],[2,-10],[25,10],[-6,9]],[[1424,9087],[-14,2],[-4,-7],[28,-13],[6,3],[-12,9],[-4,6]],[[1346,9084],[-10,-2],[7,-5],[-5,-10],[9,-4],[15,3],[-1,10],[-15,8]],[[1318,9063],[8,14],[-20,9],[-2,11],[-34,4],[-16,-4],[-3,-6],[5,-2],[-3,-6],[7,-9],[-10,-6],[-10,0],[7,-10],[19,0],[13,3],[39,2]],[[4094,9071],[-1,15],[6,10],[-2,10],[-10,-3],[-3,-14],[-6,-5],[-12,-1],[-12,1],[3,-3],[18,-4],[7,-6],[5,-13],[8,-2],[-1,15]],[[9384,9054],[-11,-3],[9,-13],[5,10],[-3,6]],[[1157,9036],[17,7],[13,16],[-13,0],[-2,7],[16,0],[7,2],[12,-6],[12,6],[-1,6],[10,8],[-1,7],[-35,-1],[-9,-7],[-30,-14],[-1,-9],[-5,-1],[-8,5],[-7,-1],[0,-8],[-5,-4],[4,-12],[8,1],[18,-2]],[[2614,9039],[-7,-3],[9,-10],[8,1],[-5,10],[-5,2]],[[1763,9028],[-4,4],[-11,-5],[-3,-9],[6,-2],[12,12]],[[2601,9026],[-9,10],[9,11],[-6,7],[-37,-16],[-5,-10],[5,-5],[12,3],[6,-7],[-5,0],[-8,-6],[10,-5],[29,6],[3,5],[-4,7]],[[2061,9014],[-9,-2],[3,-4],[6,6]],[[2134,9029],[-10,2],[2,-13],[3,-4],[-9,-16],[10,-5],[10,0],[5,10],[-3,6],[4,5],[-4,10],[-8,5]],[[2027,9001],[-5,-4],[18,-9],[4,10],[-17,3]],[[4219,9001],[-6,2],[-6,-10],[6,-4],[6,12]],[[6568,8979],[-1,-2],[8,-10],[3,7],[-10,5]],[[4319,8972],[-11,-3],[1,-7],[10,10]],[[6608,8958],[-3,6],[-3,-5],[6,-1]],[[1942,8957],[-2,11],[5,0],[4,-10],[6,-4],[4,8],[-4,6],[7,5],[8,-15],[5,-5],[14,0],[6,3],[-3,8],[-19,10],[7,3],[31,-11],[2,11],[-1,9],[-14,2],[0,6],[-21,-1],[-3,3],[-9,-4],[-10,1],[-22,0],[-8,-4],[-13,-1],[-29,-10],[-39,-6],[-11,1],[-8,-4],[0,-6],[5,-2],[48,-7],[7,-1],[8,11],[8,-6],[8,3],[8,-8],[10,-5],[12,4],[3,5]],[[4584,8917],[-7,1],[-5,-5],[4,-5],[8,9]],[[2984,8908],[-11,-5],[4,-4],[7,3],[0,6]],[[4596,8891],[12,2],[-5,11],[-9,9],[-5,0],[-1,-10],[-5,-7],[-16,-8],[1,-2],[22,1],[6,4]],[[2619,8883],[4,5],[-18,11],[-17,5],[-38,8],[-6,-3],[-3,-8],[13,-7],[23,-2],[6,-10],[6,1],[5,10],[6,-14],[8,5],[0,-5],[11,4]],[[2979,8888],[-6,-5],[2,-6],[9,-1],[2,7],[-7,5]],[[4502,8878],[-7,4],[-8,-9],[11,-4],[4,9]],[[4751,8881],[-10,2],[-2,-7],[13,-8],[4,9],[-5,4]],[[4575,8878],[-6,-4],[6,-7],[9,-4],[7,1],[-1,12],[-15,2]],[[2675,8862],[9,2],[-9,9],[-3,-10],[3,-1]],[[6666,8883],[-8,-5],[-2,-12],[4,-4],[8,14],[-2,7]],[[4792,8874],[-10,-1],[-3,-7],[5,-5],[10,2],[-2,11]],[[5412,8868],[-11,5],[-12,-5],[-1,-10],[9,-7],[8,1],[8,14],[-1,2]],[[4702,8862],[-2,6],[-7,-11],[2,-8],[8,-1],[4,6],[-5,8]],[[2968,8846],[-7,-3],[7,-4],[0,7]],[[2583,8831],[13,7],[3,5],[-7,11],[-5,3],[-24,-4],[-2,-5],[3,-9],[10,-1],[2,-5],[7,-2]],[[5117,8847],[-2,4],[-15,-8],[-2,-5],[10,-7],[19,0],[-8,7],[-2,9]],[[2667,8829],[-6,3],[-16,-5],[-5,-11],[6,-3],[8,1],[13,15]],[[2944,8831],[-5,-5],[-2,-8],[-9,-19],[4,-1],[9,4],[8,9],[1,7],[-6,13]],[[2721,8799],[-1,8],[10,1],[10,20],[7,24],[17,34],[6,23],[1,43],[-7,15],[-4,6],[-14,14],[-2,6],[-37,8],[-5,-3],[-32,0],[-14,3],[-4,-5],[-10,-3],[-6,-7],[10,-8],[31,5],[26,0],[7,-2],[6,-7],[-12,-2],[-21,6],[-7,-1],[-7,-9],[21,-4],[9,-7],[-15,-4],[-12,-1],[-15,-11],[-16,17],[-20,-5],[-5,1],[8,9],[-13,9],[-12,-8],[-10,2],[-16,-12],[0,-11],[7,-6],[7,-1],[13,5],[-1,-10],[5,-4],[6,1],[13,10],[5,-4],[-7,-7],[4,-4],[24,4],[12,-4],[-7,-4],[-13,-2],[-4,-5],[10,-4],[10,0],[17,5],[15,-10],[26,0],[9,9],[3,-3],[0,-10],[-13,-5],[-21,-3],[-4,-3],[3,-10],[14,-9],[13,-2],[14,2],[-20,-13],[-11,-2],[-8,4],[-19,-7],[-5,-7],[4,-31],[-10,-9],[-1,-11],[7,-7],[13,-4],[27,-5],[9,10],[2,12]],[[2152,8778],[0,0]],[[2981,8776],[-9,-3],[5,-2],[4,5]],[[2796,8718],[-10,0],[-2,-6],[10,-4],[7,4],[-5,6]],[[9244,8704],[-5,-1],[1,-15],[7,10],[-3,6]],[[2795,8668],[-6,-1],[2,-8],[5,0],[-1,9]],[[7049,8672],[-4,1],[-9,-7],[0,-8],[13,3],[4,7],[-4,4]],[[6015,8662],[-7,1],[1,-6],[8,0],[-2,5]],[[9202,8663],[-2,4],[-4,-10],[6,6]],[[7070,8661],[-9,-3],[8,-2],[1,5]],[[2777,8702],[-10,4],[-4,8],[-11,3],[-6,-9],[1,-11],[8,-9],[4,-10],[9,-15],[11,-10],[7,0],[-2,6],[-5,5],[-2,12],[9,7],[-15,13],[6,6]],[[7036,8652],[-7,-1],[1,-4],[6,5]],[[7412,8643],[-6,0],[3,-5],[3,5]],[[9183,8643],[-3,4],[-6,-8],[0,-8],[9,12]],[[7450,8628],[-4,-1],[6,-4],[-2,5]],[[2817,8628],[-7,6],[1,-11],[5,-4],[1,9]],[[7350,8618],[11,4],[-2,6],[-16,1],[-2,-2],[5,-9],[4,0]],[[7237,8606],[-9,-4],[7,-4],[2,8]],[[2837,8608],[-9,0],[3,-11],[6,-9],[6,3],[-6,7],[0,10]],[[7471,8598],[-18,0],[-3,-5],[5,-7],[6,-4],[13,0],[3,10],[-6,6]],[[7538,8584],[-8,-1],[-1,-9],[-8,-1],[3,-6],[6,2],[2,9],[6,6]],[[2908,8551],[-7,2],[3,-6],[7,-4],[-3,8]],[[3076,8533],[-5,-5],[11,-6],[2,4],[-8,7]],[[2911,8528],[-2,5],[8,-2],[4,2],[-14,10],[-6,0],[-5,6],[-15,-7],[3,-8],[13,-8],[0,-5],[6,-5],[7,3],[1,9]],[[2935,8526],[-7,5],[-5,-3],[8,-15],[-4,-5],[5,-6],[11,6],[-4,15],[-4,3]],[[2944,8506],[0,0]],[[3060,8504],[9,-2],[7,5],[1,6],[-6,5],[4,5],[-11,-1],[-5,2],[-4,-5],[-8,0],[8,-5],[-4,-7],[-8,-3],[8,-11],[9,-4],[0,15]],[[3073,8489],[4,4],[-11,0],[7,-4]],[[2982,8493],[-5,-1],[3,-10],[4,1],[-2,10]],[[3114,8474],[-10,-3],[11,-4],[4,5],[-5,2]],[[0,9695],[14,5],[16,0],[95,4],[16,0],[58,5],[103,13],[19,0],[-15,-13],[-13,-4],[27,-1],[-14,-5],[-37,-1],[-146,-14],[-15,-5],[-22,-1],[-9,-4],[37,0],[4,-2],[-26,-10],[2,-3],[14,-4],[1,-6],[-24,-7],[-17,-3],[-11,1],[-19,0],[-27,3],[-11,-4],[0,-30],[8,-1],[42,-1],[16,1],[20,5],[13,10],[20,-6],[17,-3],[15,5],[10,6],[45,-1],[18,0],[14,3],[56,-12],[11,-6],[-16,-2],[-2,-4],[18,-4],[43,-5],[9,-6],[36,-11],[13,-5],[10,-8],[-24,-16],[-23,-14],[14,-7],[7,-7],[-15,-7],[-11,-4],[-59,-10],[14,-10],[16,-1],[108,-6],[109,-8],[3,-4],[-15,-3],[-12,-2],[-6,-7],[-30,-8],[-9,-7],[5,-9],[5,-2],[19,-3],[22,0],[13,-2],[-4,-8],[9,-1],[-1,-9],[-25,-6],[-40,-6],[-15,-5],[-29,-13],[-1,-7],[-16,1],[-23,-1],[-28,-4],[-19,-5],[-25,-13],[-10,-6],[16,-7],[33,-7],[12,-7],[-11,-4],[-18,0],[-54,0],[-28,-15],[-6,-10],[7,-15],[1,-20],[10,-5],[11,10],[22,-2],[12,-7],[24,3],[7,-1],[33,6],[9,5],[3,6],[10,1],[30,-1],[9,0],[21,9],[25,11],[10,1],[16,-8],[22,-5],[5,-5],[-19,-10],[2,-10],[6,-2],[23,13],[8,1],[14,-5],[15,13],[20,1],[2,-3],[-6,-10],[9,-3],[-13,-8],[9,-6],[-3,-13],[-29,-13],[-15,-4],[-35,2],[-13,-1],[-16,-5],[21,-6],[12,-9],[16,0],[29,11],[26,7],[13,-2],[-27,-17],[11,-12],[25,0],[11,-3],[31,-16],[16,-1],[19,-3],[23,11],[17,4],[-9,-12],[14,-2],[12,-6],[16,-11],[15,-3],[43,-5],[15,5],[15,-1],[8,-17],[5,-4],[20,-5],[14,0],[10,5],[19,5],[22,-3],[27,-2],[8,2],[25,0],[18,5],[11,0],[16,-5],[8,0],[30,-5],[23,-1],[18,1],[29,0],[28,0],[12,3],[65,-1],[52,-7],[6,-1],[18,-11],[12,-3],[37,5],[17,-1],[34,3],[2,-2],[10,-27],[5,-5],[7,1],[24,10],[-6,8],[-1,8],[8,0],[3,5],[-15,10],[-6,20],[67,-11],[3,-2],[-6,-12],[3,-3],[-3,-13],[4,-5],[13,0],[17,6],[7,5],[3,9],[-2,10],[-8,8],[-11,6],[-14,11],[3,5],[7,-2],[31,1],[20,-1],[13,1],[28,7],[23,-1],[10,1],[48,-12],[7,2],[13,-2],[7,2],[14,-3],[18,1],[29,0],[2,6],[9,8],[8,3],[15,-5],[10,2],[17,-3],[21,0],[6,-7],[-18,-7],[-13,-7],[-14,-1],[-9,-3],[13,-12],[-6,-12],[-18,5],[-10,-5],[-9,-21],[-15,-9],[-18,-3],[-3,-7],[2,-7],[11,-3],[23,4],[16,5],[34,-2],[6,-4],[18,-3],[-17,-6],[-25,-9],[-22,-1],[-41,0],[-11,-9],[-8,-21],[14,-5],[14,3],[2,3],[-3,9],[20,4],[23,-4],[17,4],[12,-3],[44,2],[16,7],[5,-1],[22,7],[14,4],[26,-5],[18,0],[10,5],[15,-6],[24,-4],[16,1],[30,9],[20,-5],[5,-6],[-1,-9],[7,0],[7,-6],[13,1],[6,-11],[16,1],[10,5],[-11,19],[4,6],[14,0],[15,-2],[10,8],[12,0],[22,-8],[15,12],[8,5],[21,5],[18,6],[21,3],[18,6],[16,-2],[8,-4],[4,-6],[-3,-18],[7,-5],[19,10],[-3,-10],[-5,-9],[5,-7],[18,4],[23,17],[5,10],[10,4],[44,-6],[2,6],[-10,15],[10,-3],[13,2],[20,-5],[8,-4],[12,1],[7,3],[17,-2],[30,-13],[15,-2],[19,-5],[7,0],[12,-5],[19,2],[29,-7],[13,-3],[22,-10],[10,-7],[10,-12],[13,-30],[-3,-11],[-15,-22],[-1,-26],[-2,-12],[-8,-25],[-15,-23],[-2,-21],[-7,-14],[17,-5],[21,5],[11,-15],[-2,-7],[-10,-10],[8,-5],[0,-12],[6,-16],[3,-2],[-10,-13],[7,-20],[5,-9],[-11,-2],[-10,4],[-3,-8],[4,-20],[8,-7],[6,2],[0,10],[3,8],[6,-5],[4,2],[-3,-30],[6,-6],[17,1],[2,-14],[-3,-3],[5,-13],[12,0],[-3,-7],[8,-3],[11,5],[-1,-16],[4,1],[1,-7],[18,-7],[-7,-6],[1,-15],[7,-7],[14,2],[6,4],[-2,-11],[10,-7],[7,-1],[0,-10],[10,5],[7,-6],[10,-4],[4,-7],[9,-7],[6,-13],[16,-9],[21,-6],[13,-9],[5,-6],[18,-7],[10,-7],[12,-5],[10,1],[7,21],[-8,2],[-1,-10],[-9,2],[-11,9],[-11,6],[-8,9],[-8,15],[-6,2],[7,4],[-3,5],[3,9],[-7,-5],[-9,-3],[-2,-3],[-5,6],[2,5],[-5,1],[-1,-6],[-5,-1],[-20,17],[-11,15],[-7,1],[-11,-1],[4,11],[-2,4],[-8,-4],[-6,9],[3,6],[8,8],[-7,1],[-8,14],[0,5],[8,11],[5,0],[13,-4],[2,-5],[10,-2],[10,2],[-5,9],[-7,0],[3,5],[-4,8],[-3,-8],[-8,-4],[-7,7],[-2,10],[-3,-8],[-11,-5],[-13,1],[2,19],[3,9],[-5,-1],[-13,-19],[-2,-5],[-14,1],[0,6],[-5,12],[-4,2],[8,6],[1,8],[-8,2],[-17,-6],[-6,13],[3,5],[-7,6],[6,5],[-12,1],[-3,-1],[-5,7],[3,13],[-5,9],[4,11],[-5,6],[7,3],[14,-7],[0,8],[-16,9],[13,3],[-7,10],[10,7],[22,5],[-2,-12],[10,-6],[16,-2],[7,1],[-20,9],[-1,6],[11,6],[-3,14],[13,16],[11,9],[4,6],[1,14],[6,11],[5,5],[0,10],[-7,-4],[-3,9],[10,8],[13,-2],[-4,12],[-9,2],[0,10],[8,-2],[11,1],[1,7],[9,14],[-11,13],[-5,1],[-13,11],[12,0],[10,-6],[4,1],[3,10],[-2,4],[-17,1],[-17,10],[10,3],[7,-2],[9,4],[10,-4],[7,2],[1,17],[-2,4],[-15,1],[0,9],[10,6],[6,-5],[4,3],[0,8],[5,10],[10,-3],[2,6],[-5,14],[-12,-4],[-14,6],[-10,-7],[-16,-3],[6,6],[4,14],[7,-1],[14,7],[2,7],[-2,8],[-9,5],[-5,-3],[-8,2],[-4,6],[14,0],[8,5],[-5,5],[-10,0],[-7,5],[14,2],[14,-5],[3,3],[-8,10],[-18,3],[-17,-4],[0,4],[10,12],[-1,8],[-12,5],[-6,-3],[-8,-12],[-9,0],[2,9],[-22,8],[16,3],[3,7],[-17,3],[-12,5],[8,2],[19,0],[-2,7],[-19,7],[-20,10],[-15,4],[-18,7],[-11,4],[-32,6],[-50,14],[-17,10],[-5,6],[-12,5],[-35,1],[-26,-3],[-32,1],[-38,-8],[-11,3],[-16,-3],[-27,4],[1,11],[25,25],[9,4],[15,9],[23,0],[30,2],[18,4],[-1,5],[-10,13],[-22,12],[-22,4],[-16,-1],[-29,-8],[-36,-5],[-54,-5],[-26,-5],[-23,6],[54,17],[46,11],[12,5],[-4,12],[-9,5],[-23,0],[-29,4],[-15,0],[-14,-4],[-31,-11],[-19,-7],[-33,-25],[3,8],[13,15],[-9,-2],[-6,6],[4,9],[10,9],[18,8],[26,10],[21,24],[10,0],[4,-12],[7,-2],[19,3],[82,1],[11,8],[2,10],[-8,11],[-6,4],[-19,6],[-13,1],[-54,-1],[41,10],[39,-3],[10,-2],[19,16],[6,15],[12,14],[7,1],[9,-4],[16,-1],[25,6],[24,-8],[32,-8],[12,0],[9,13],[17,7],[12,1],[17,-1],[7,1],[6,8],[70,19],[24,3],[63,3],[9,4],[-11,2],[-28,0],[-6,0],[-26,-1],[-9,2],[-16,3],[3,1],[19,3],[17,-2],[1,5],[-52,3],[-3,2],[10,5],[-4,9],[6,5],[8,0],[14,5],[14,0],[18,-4],[31,-2],[21,1],[29,-5],[8,0],[-7,5],[-35,10],[-18,5],[7,10],[10,6],[5,9],[6,1],[11,-3],[3,2],[-2,11],[-8,9],[4,5],[53,3],[34,-19],[21,-14],[34,-15],[14,-9],[14,-1],[20,-9],[24,-7],[36,-3],[34,-6],[79,-7],[28,6],[22,-1],[8,-3],[6,13],[-4,7],[-7,4],[-2,6],[10,4],[31,-5],[38,-9],[14,-15],[17,-15],[14,-10],[17,-16],[15,-8],[13,-1],[19,-7],[27,-8],[21,4],[23,6],[11,-5],[23,-5],[17,-14],[57,-6],[17,-1],[12,-4],[27,0],[8,-9],[33,-5],[13,-2],[142,-6],[18,-7],[5,-6],[-31,-5],[-4,0],[-147,-10],[-7,-6],[1,-10],[-4,-9],[-9,-1],[-21,1],[-44,5],[-34,-7],[-22,-8],[-14,-2],[-20,-10],[1,-18],[19,-25],[11,-11],[16,-6],[7,-13],[19,-11],[27,-10],[16,1],[10,-7],[32,-15],[9,-7],[36,-16],[23,-7],[12,-2],[15,-3],[29,-13],[49,-10],[31,-3],[20,-3],[15,1],[26,-2],[14,-9],[28,3],[33,-7],[-9,-5],[-4,-5],[7,-11],[8,-4],[8,-16],[14,-19],[12,-3],[16,0],[21,5],[11,-7],[5,-7],[12,-10],[1,-9],[-31,6],[-13,-1],[-2,-4],[10,-6],[-17,-6],[3,-14],[8,-5],[15,-14],[16,-1],[19,4],[9,-8],[-8,-16],[19,5],[11,-1],[13,-9],[18,-7],[17,-5],[10,-23],[5,-6],[-2,-9],[-9,1],[-22,-10],[-6,-12],[12,-6],[31,16],[8,-15],[14,-10],[-9,-6],[7,-7],[6,7],[13,5],[12,13],[9,19],[20,-2],[6,-5],[3,-24],[-7,-14],[13,-6],[15,4],[25,-8],[7,1],[3,7],[-3,7],[-11,10],[-1,10],[5,0],[54,0],[8,3],[31,-3],[9,1],[7,5],[19,-2],[8,-8],[4,5],[4,17],[6,5],[6,-4],[13,-14],[19,-12],[30,-12],[20,-6],[25,-2],[44,-12],[39,-3],[25,-5],[7,-8],[18,5],[14,-4],[9,-11],[13,5],[17,13],[21,11],[20,4],[10,-8],[11,-15],[13,-10],[-9,-5],[1,-2],[12,-2],[7,10],[14,8],[19,-4],[16,0],[20,3],[6,-8],[10,-4],[6,4],[3,11],[40,9],[3,-1],[5,-14],[16,-5],[5,5],[-4,23],[6,12],[24,1],[26,-3],[8,-20],[10,-14],[7,1],[11,10],[-3,10],[6,6],[14,4],[12,-5],[7,-9],[4,-10],[12,4],[5,5],[0,10],[10,10],[12,5],[13,0],[9,4],[14,-1],[19,-7],[9,-6],[39,-12],[16,-12],[15,-6],[28,-4],[10,0],[21,-6],[13,-6],[5,-5],[5,-18],[-2,-13],[-9,-18],[2,-11],[13,-10],[9,-3],[21,3],[1,5],[-13,14],[1,3],[22,0],[4,4],[17,30],[6,-1],[13,1],[8,-2],[11,1],[11,9],[12,-5],[6,0],[11,6],[10,12],[10,8],[0,-10],[4,-4],[18,-30],[5,-25],[9,-10],[9,-5],[9,0],[8,-9],[20,-7],[16,-5],[12,-14],[9,-4],[10,-1],[33,-7],[14,-10],[10,1],[9,-5],[14,-3],[-2,-12],[6,-8],[9,0],[14,9],[-7,9],[10,9],[13,-4],[10,6],[1,13],[6,-3],[2,-9],[0,-16],[12,-9],[4,-7],[-14,0],[-7,-10],[10,-6],[12,0],[21,12],[15,1],[2,-1],[-3,-20],[-7,-4],[2,-17],[7,-5],[10,-3],[26,-16],[14,-4],[16,-1],[19,-5],[36,4],[10,1],[12,8],[18,17],[13,3],[10,11],[-11,6],[-14,-7],[-4,2],[8,9],[-2,11],[-16,13],[10,2],[20,-11],[21,-3],[19,9],[12,4],[14,15],[11,-1],[6,-4],[17,-1],[23,8],[24,3],[14,5],[15,-8],[13,-1],[25,6],[31,7],[22,2],[19,0],[9,3],[23,3],[16,-1],[14,-6],[7,6],[-2,10],[10,25],[-11,15],[3,13],[-5,5],[4,12],[-7,5],[-13,3],[-1,6],[9,10],[-3,11],[-9,5],[-16,-5],[-18,14],[-7,11],[18,8],[16,0],[18,-5],[3,6],[-2,16],[-9,19],[-7,7],[-16,13],[-17,35],[-6,26],[-9,29],[-11,10],[2,5],[12,1],[9,4],[18,-13],[0,-20],[13,-12],[31,-9],[11,-14],[10,-5],[9,-11],[12,-6],[6,-6],[5,-28],[11,-25],[16,-6],[9,-13],[2,-16],[13,-15],[11,-1],[7,-5],[17,7],[16,-1],[8,3],[6,-3],[7,-15],[6,-5],[7,0],[22,-17],[11,-3],[8,-5],[5,-10],[13,-15],[2,-14],[5,-6],[15,-10],[53,-16],[22,-9],[18,-4],[19,-1],[5,-9],[28,-18],[17,0],[17,2],[11,-6],[18,-1],[9,-5],[25,-9],[9,1],[13,-1],[26,1],[23,-5],[13,-7],[15,-2],[14,-3],[19,7],[17,-4],[17,7],[10,-3],[7,-5],[14,-1],[13,6],[23,-2],[20,-7],[7,5],[10,3],[15,-9],[13,5],[4,6],[14,-1],[13,-5],[29,-11],[13,-15],[4,-9],[18,0],[14,-5],[15,4],[13,5],[8,-1],[10,2],[10,6],[10,2],[38,13],[22,4],[11,5],[6,6],[10,-1],[6,8],[14,5],[17,2],[9,-4],[23,-17],[-1,-13],[9,-13],[15,-8],[19,-2],[27,-7],[15,9],[8,6],[11,18],[8,6],[13,1],[6,4],[8,13],[-4,11],[-5,4],[-20,3],[-16,7],[-2,8],[3,5],[17,-2],[21,-9],[14,-2],[23,-9],[12,4],[17,1],[11,-4],[9,5],[13,0],[10,-5],[24,-6],[6,1],[-13,5],[-18,8],[-10,7],[6,3],[35,-8],[16,-6],[18,-4],[16,-12],[29,-7],[20,-7],[7,-1],[11,6],[14,-4],[8,-12],[13,-3],[21,6],[7,15],[19,18],[12,-1],[12,5],[16,-2],[7,-2],[14,-34],[10,-10],[23,-5],[25,1],[13,-3],[16,1],[7,-5],[9,-1],[11,3],[9,9],[3,10],[13,-6],[6,-1],[11,-13],[23,10],[10,9],[9,-6],[24,3],[11,9],[31,1],[18,9],[28,1],[10,5],[7,-2],[13,1],[9,8],[10,3],[21,-7],[8,0],[5,11],[12,-4],[6,2],[2,6],[-3,9],[-16,28],[7,7],[6,-7],[13,-3],[7,-7],[12,-1],[12,1],[23,20],[2,14],[-2,5],[8,5],[13,0],[25,5],[11,-1],[24,-1],[17,1],[16,-5],[4,1],[2,23],[4,2],[8,-6],[27,1],[15,8],[17,-8],[2,-5],[1,-16],[3,-3],[8,7],[22,23],[15,12],[13,2],[14,6],[15,0],[12,8],[8,-6],[11,0],[14,7],[31,11],[10,13],[2,14],[12,6],[11,12],[11,30],[5,5],[8,-1],[8,9],[3,-4],[-7,-20],[-1,-11],[6,-6],[12,-2],[10,12],[9,7],[18,0],[12,-7],[8,2],[14,1],[18,4],[8,0],[13,1],[26,9],[7,6],[4,10],[6,5],[18,5],[37,22],[4,-12],[4,-1],[10,20],[2,6],[-5,5],[-13,-1],[-5,10],[-2,16],[8,-1],[-1,11],[-5,3],[-17,-8],[-10,-1],[-10,-5],[-8,0],[11,10],[28,10],[1,5],[-9,15],[-14,8],[-8,-7],[-10,-1],[-5,4],[-29,1],[-8,-9],[-12,-3],[11,17],[22,5],[2,5],[-11,1],[-8,7],[-16,-2],[-16,4],[7,9],[-11,7],[-10,0],[-3,-5],[0,-11],[-3,-11],[-9,1],[-2,9],[7,21],[-6,6],[7,14],[10,11],[-3,8],[-24,-4],[-19,1],[-5,-8],[-8,1],[-3,10],[-6,2],[-9,10],[-2,20],[-4,5],[-9,0],[-11,-1],[-21,6],[8,3],[19,1],[8,4],[1,9],[16,13],[-4,10],[-6,8],[8,3],[3,14],[-5,5],[3,11],[-8,8],[-1,5],[18,4],[14,21],[1,11],[4,6],[8,4],[-1,5],[11,1],[0,9],[-12,11],[9,0],[9,5],[11,-5],[11,-11],[6,15],[16,10],[23,4],[0,9],[-15,1],[-11,-8],[-50,4],[-11,5],[-28,6],[-7,4],[-19,-11],[-6,-9],[-7,1],[0,7],[12,17],[-2,5],[-19,-5],[-9,4],[-10,9],[5,8],[-1,4],[-18,10],[9,3],[-1,6],[-11,2],[0,4],[14,1],[5,9],[-50,15],[-5,8],[13,2],[41,-1],[0,9],[8,7],[-16,4],[1,4],[12,2],[0,18],[-7,7],[12,4],[19,12],[12,3],[23,12],[0,4],[21,10],[2,5],[-34,6],[-35,7],[3,3],[38,0],[10,4],[7,-5],[20,-4],[21,-1],[7,0],[40,20],[19,5],[3,9],[10,6],[14,-5],[14,5],[-10,10],[-16,1],[12,7],[48,2],[14,4],[14,-3],[11,3],[2,5],[17,5],[27,1],[14,5],[12,3],[33,2],[9,5],[88,11],[25,4],[17,10],[44,-1],[19,2],[20,0],[20,3],[11,5],[34,-4],[82,5],[84,9],[19,2],[0,304],[-9999,0],[0,-304]],[[9999,9639],[-10,-7],[-22,-10],[-57,-12],[-9,-2],[-70,-19],[-5,-5],[32,6],[19,-1],[16,-2],[22,6],[44,7],[28,9],[12,0],[0,30]],[[3124,8453],[9,1],[1,9],[-18,-2],[-16,7],[-3,-5],[3,-6],[22,-6],[2,2]],[[3109,8448],[-5,5],[-8,-4],[1,-6],[10,0],[2,5]],[[2986,8442],[0,0]],[[2927,8448],[3,-10],[5,-1],[-8,11]],[[2982,8418],[14,0],[8,4],[-10,6],[-5,-6],[-19,2],[7,-11],[5,5]],[[3017,8412],[-8,-5],[7,0],[1,5]],[[3032,8403],[-6,3],[0,-7],[6,4]],[[3056,8381],[7,1],[1,5],[-8,4],[-5,-2],[-1,7],[-8,-3],[-3,8],[-6,-5],[-6,2],[17,-15],[12,-2]],[[3164,8346],[-3,-3],[5,-7],[-2,10]],[[3134,8341],[-4,2],[-2,-10],[20,1],[-14,7]],[[3396,8301],[10,3],[-2,4],[-14,-1],[0,-6],[6,0]],[[8099,5530],[0,0]],[[6591,7641],[-4,-10],[6,0],[-2,10]],[[6588,7643],[10,-7],[3,7],[-7,4],[10,5],[15,-11],[4,1],[3,6],[-6,14],[-5,-5],[-7,0],[-5,5],[3,6],[6,-1],[7,4],[-5,6],[-11,-5],[-3,2],[-13,-7],[-2,7],[-7,3],[1,-15],[-3,-21],[2,-13],[4,-11],[4,15],[-3,10],[5,1]],[[6106,7489],[0,0]],[[2952,3833],[-4,2],[1,-9],[3,7]],[[2951,3803],[0,0]],[[9079,7966],[0,0]],[[8759,7314],[-1,7],[-6,-5],[6,-9],[1,7]],[[8761,7306],[0,0]],[[8780,7274],[0,0]],[[8695,7163],[6,-1],[23,21],[13,1],[12,-8],[9,-3],[4,4],[4,-10],[7,1],[3,-5],[7,4],[2,6],[0,69],[-5,-3],[-6,33],[2,29],[-5,3],[-4,-12],[5,-4],[-7,-6],[-3,11],[-3,-4],[-5,18],[-3,0],[-6,20],[-8,-6],[-14,1],[-2,-9],[7,-1],[-12,-6],[-3,-10],[-6,-9],[-6,-21],[-2,-19],[8,15],[1,-8],[-5,-10],[-3,2],[0,-12],[-9,-21],[-4,-12],[-3,-25],[2,-19],[9,6]],[[8783,7148],[0,0]],[[8688,7147],[0,0]],[[8786,7137],[4,6],[-10,1],[-3,-2],[9,-5]],[[8777,7104],[8,13],[1,10],[-6,6],[-10,-21],[7,-8]],[[8664,7126],[-3,-13],[3,-19],[4,3],[2,19],[-6,10]],[[8702,7032],[0,0]],[[8707,7023],[0,0]],[[8488,6873],[9,-1],[6,8],[-2,2],[-11,0],[-6,10],[-7,-5],[-2,4],[-10,0],[-6,-9],[2,-9],[20,-8],[8,3],[-1,5]],[[8931,6395],[-3,16],[-1,-13],[4,-3]],[[8928,6388],[-2,-16],[3,0],[-1,16]],[[7810,6316],[-1,1],[-7,-30],[2,-2],[6,31]],[[8918,6297],[-3,-11],[2,-20],[6,-15],[-3,-8],[4,-3],[2,18],[-8,35],[0,4]],[[8864,6167],[3,3],[1,11],[-3,1],[-4,-12],[3,-3]],[[8847,6101],[0,0]],[[8830,6092],[0,0]],[[7873,6012],[-4,4],[3,-10],[1,6]],[[8806,5983],[0,0]],[[8803,5976],[0,0]],[[8729,5865],[1,15],[-6,-14],[5,-1]],[[8540,5801],[0,0]],[[8541,5770],[-4,6],[-6,2],[4,-14],[9,-4],[2,6],[-5,4]],[[8474,5724],[-3,0],[1,-12],[2,12]],[[8460,5715],[0,0]],[[8468,5715],[0,0]],[[8127,5701],[0,0]],[[8143,5655],[0,0]],[[8463,5610],[6,1],[-4,6],[0,14],[5,0],[-2,6],[-15,-3],[2,-5],[0,-15],[8,-12],[0,8]],[[8450,5611],[0,0]],[[8453,5483],[0,0]],[[8290,5488],[4,5],[-3,4],[-5,-4],[-8,1],[4,-7],[-1,-11],[5,-8],[4,20]],[[8294,5470],[11,-2],[7,-8],[8,14],[-7,16],[-10,12],[-12,-18],[-4,-23],[2,-2],[5,11]],[[8460,5471],[0,0]],[[8349,5466],[-3,-15],[3,-4],[0,19]],[[8643,5504],[-2,20],[4,5],[6,26],[3,35],[-1,16],[3,13],[3,22],[6,6],[7,-8],[7,-4],[5,15],[18,26],[-1,30],[5,34],[-1,20],[6,18],[8,10],[0,9],[6,34],[-3,36],[9,16],[-1,17],[8,17],[11,6],[4,8],[8,0],[4,14],[10,15],[4,1],[8,10],[5,1],[8,15],[-4,14],[3,9],[11,21],[4,20],[3,6],[0,11],[4,28],[3,11],[4,-2],[4,8],[-1,-13],[4,-9],[4,12],[10,10],[1,-11],[4,14],[0,34],[4,21],[16,26],[5,3],[6,8],[7,23],[9,12],[5,23],[7,14],[2,21],[5,10],[-2,19],[2,38],[-1,13],[9,40],[0,10],[4,10],[1,35],[-8,25],[0,12],[-4,39],[-5,33],[1,10],[-3,31],[-4,20],[-6,15],[-3,22],[-9,13],[1,5],[-10,9],[-10,28],[-5,10],[1,8],[-2,19],[-8,16],[-5,34],[-1,13],[-5,4],[-5,23],[-5,13],[-4,42],[-3,17],[1,24],[-1,16],[-4,0],[-9,14],[-34,2],[-11,6],[-13,18],[-15,25],[-12,2],[-6,4],[4,6],[3,-2],[1,12],[-3,5],[-6,-16],[-6,3],[-4,-14],[-6,0],[-5,-8],[4,-7],[-2,-10],[-7,4],[-8,11],[-6,-9],[5,0],[6,-15],[-6,-11],[-14,15],[7,4],[-15,15],[-8,12],[-8,8],[-9,-4],[-21,-21],[-8,1],[-7,-8],[-5,0],[-4,7],[-5,-2],[-11,-17],[-11,-1],[-6,-9],[-5,-15],[-10,-15],[-4,-18],[4,-22],[-4,-17],[-7,-22],[-12,-17],[4,-10],[3,5],[0,-14],[-3,-1],[-9,11],[-9,5],[-10,-1],[6,-16],[3,-18],[0,-15],[-7,-19],[-4,-16],[-5,18],[-1,15],[-5,23],[-7,0],[-9,7],[-7,0],[4,-19],[10,0],[3,-19],[0,-25],[4,-17],[8,-17],[-2,-22],[4,-5],[-2,-19],[-4,-11],[0,15],[-9,20],[-6,26],[-17,15],[-5,8],[-15,37],[3,15],[-6,-5],[-4,5],[-5,-10],[-10,-14],[9,4],[-7,-40],[-8,-15],[-3,-17],[-5,-9],[-9,-1],[-5,-24],[3,-1],[1,-10],[-9,-9],[-7,-11],[-13,-2],[-12,-12],[-16,2],[-13,-17],[-9,-10],[-7,-3],[-10,8],[-18,-3],[-33,8],[-11,10],[-14,10],[-11,5],[-9,7],[-16,3],[-17,-4],[-6,3],[-13,15],[-7,3],[-14,15],[-13,8],[-3,6],[-7,28],[-6,13],[-13,9],[-4,-5],[-8,0],[-17,5],[-3,-6],[-19,-3],[-15,3],[-12,5],[-15,1],[-6,6],[-6,17],[-5,5],[-9,1],[-22,29],[-15,7],[-12,-5],[-18,-2],[-14,-12],[-7,-15],[-13,-12],[-5,1],[-3,-10],[0,-36],[4,6],[6,0],[5,-5],[4,-21],[-2,-30],[3,-5],[1,-40],[-1,-10],[-7,-24],[-4,-19],[-5,-8],[-2,-15],[-3,-29],[1,-30],[-4,-23],[-6,-16],[-1,-11],[-13,-40],[-1,-25],[-2,-11],[-10,-29],[-9,-25],[-4,-14],[4,4],[2,-8],[5,27],[7,-4],[0,-10],[-7,-14],[-5,-21],[4,-5],[4,11],[-1,15],[6,-4],[2,14],[4,8],[4,-7],[0,-25],[-7,-17],[-5,-21],[-4,-12],[-2,-17],[-5,-14],[0,-17],[2,-15],[8,-27],[1,-28],[-4,-17],[8,-40],[5,-7],[-1,21],[1,18],[5,-4],[8,-28],[7,-12],[17,-14],[9,-14],[6,-12],[20,-21],[12,-2],[7,5],[8,-5],[11,-12],[19,-10],[9,-15],[14,2],[5,-3],[12,-4],[18,-14],[9,-11],[9,-20],[3,-18],[6,-20],[5,-3],[9,-22],[-3,-3],[-2,-39],[3,-10],[13,-20],[5,-20],[2,0],[4,25],[4,10],[3,15],[5,12],[1,-27],[7,5],[1,-11],[-4,-4],[-7,-21],[3,-1],[0,-14],[4,-3],[3,12],[3,-7],[5,0],[5,7],[11,0],[-7,-3],[-1,-14],[4,0],[2,-16],[-4,9],[-3,-13],[2,-15],[3,0],[4,-12],[10,10],[0,-9],[-4,0],[-2,-9],[6,-6],[8,5],[-5,-24],[4,-8],[7,-5],[2,-13],[1,13],[5,7],[4,-6],[4,-29],[3,10],[4,-9],[5,9],[6,-12],[-1,-10],[4,-3],[15,16],[9,17],[3,10],[9,16],[-4,32],[3,-6],[1,-12],[10,-13],[14,5],[5,13],[1,-13],[5,4],[5,11],[0,-15],[6,-2],[-7,-10],[0,-5],[-6,-10],[2,-10],[7,-14],[3,-24],[9,-6],[3,-9],[-3,-10],[1,-10],[4,-5],[2,-11],[6,-1],[0,-14],[7,7],[0,-9],[4,-2],[1,-9],[5,0],[2,-7],[4,12],[12,-2],[5,3],[6,-6],[4,6],[6,-15],[1,-22],[-5,-9],[-10,1],[-9,-14],[4,-5],[6,8],[3,-6],[8,9],[3,8],[5,-7],[5,4],[4,14],[20,8],[10,10],[8,3],[5,-5],[9,13],[5,1],[16,-18],[3,5],[-6,9],[1,5],[8,-3],[2,13],[5,0],[2,-6],[-2,-10],[5,-10],[3,0],[5,15],[5,1],[1,7],[-12,27],[2,10],[-4,12],[-4,-5],[-10,10],[1,30],[-3,19],[-13,35],[1,10],[21,26],[3,10],[8,9],[3,-1],[2,12],[6,-1],[9,11],[11,9],[10,21],[5,6],[11,4],[10,7],[3,7],[4,17],[5,4],[17,19],[5,0],[12,-9],[5,-9],[4,-22],[7,-22],[5,-32],[-1,-10],[7,-50],[-3,-32],[2,-19],[-3,-14],[1,-20],[3,-17],[0,-18],[4,-11],[4,-1],[-2,-9],[-5,-5],[4,-24],[4,-11],[5,-36],[1,-18],[12,-12],[-1,8],[6,13],[2,19],[0,22],[9,8]],[[8618,5432],[0,0]],[[8620,5402],[0,0]],[[8615,5400],[0,0]],[[5137,2016],[-2,12],[7,22]],[[5142,2050],[-3,8],[1,9],[-9,2],[-5,-4],[-4,4],[6,4],[-1,11],[-4,1],[0,23],[-10,8]],[[5113,2116],[-4,11],[-9,-2],[-5,4],[-14,1],[-11,13],[-23,-7]],[[5047,2136],[-15,-3],[-22,-8],[-7,-16],[1,-6],[-11,6],[-14,0],[-7,12],[-15,-5]],[[4957,2116],[-3,-7],[-6,8],[-8,-9],[-8,-3]],[[4932,2105],[-1,-13]],[[4931,2092],[3,-11],[-3,-3]],[[4931,2078],[6,-3],[16,15],[4,-13],[11,1],[3,7],[9,-1],[12,-10],[13,-2],[0,-5],[8,4],[6,-1],[2,6],[7,5],[1,-11],[-4,-3],[1,-10],[-5,-11],[1,-5],[16,-11],[2,-12],[9,-1],[1,-11]],[[5050,2006],[6,10],[18,0],[3,-9],[4,-1],[1,-12],[12,1],[12,6],[6,6],[9,1],[3,-4],[11,6],[2,6]],[[5947,2576],[-15,-6],[-11,-14],[-10,-25]],[[5911,2531],[-1,-3]],[[6015,2405],[3,3],[11,24],[4,20],[16,26],[6,0],[7,7],[3,10],[-12,-2],[-11,7],[-7,34],[1,15],[-5,20],[-3,-8],[-6,17],[2,23]],[[6024,2601],[-8,2],[-17,-27],[9,-8],[-5,-9],[0,-8],[5,-5],[-9,-17],[-6,2],[-25,29],[-12,14]],[[5915,2437],[7,-8],[6,0],[8,5],[2,7],[11,1],[10,7],[4,-12],[-11,-13],[-3,-13],[6,-9]],[[5955,2402],[5,6],[5,-1],[8,15],[3,2],[3,12],[9,5],[7,0],[6,-14],[7,-5],[7,-17]],[[5515,4953],[-3,13],[-1,15],[11,8],[-1,15],[-10,18],[-7,28],[-12,22],[-9,-1]],[[5483,5071],[-2,-20],[-3,-11],[0,-49],[-6,-19]],[[5472,4972],[1,-7],[7,4],[1,7],[10,0],[5,-4],[2,-22],[4,4],[9,-6],[4,5]],[[4824,1891],[9,0]],[[4833,1891],[6,10],[4,15],[-7,12]],[[4836,1928],[-4,-2],[-7,20],[5,10],[-3,5]],[[4827,1961],[-8,2],[-12,-14],[-6,-3],[-2,-8],[2,-12],[-9,12],[-10,0],[0,-17],[-3,-5],[-9,-1],[-3,-6],[-9,-3],[-3,-13],[-3,-3],[-7,4],[-7,-9],[-2,-13]],[[4736,1872],[12,-10],[11,-6]],[[4759,1856],[3,8],[4,-3],[9,5],[9,-11]],[[4784,1855],[5,2],[2,-7],[9,4],[7,-2],[1,6],[6,5],[4,-2],[10,9],[-4,21]],[[4766,4141],[-3,18],[6,16],[1,15],[3,12],[-2,13],[-5,4],[1,11],[-2,15],[-6,5],[0,8],[-6,13],[1,7],[-3,14],[-8,2],[-1,15],[0,30],[-1,13],[2,36],[0,43],[-2,17]],[[4741,4448],[-30,9]],[[4711,4457],[5,-4],[-6,-23],[-1,-18],[2,0],[0,-118],[-6,-18],[-1,-35],[-17,-24],[1,-19],[3,-16]],[[4691,4182],[5,-4],[2,-11],[5,-2],[2,-8],[16,1],[9,-16],[3,-12]],[[4733,4130],[-1,-19],[14,-8],[8,14],[4,11],[8,13]],[[4672,3956],[-1,24],[6,15],[-1,6],[7,25],[8,5],[9,15],[-7,2],[1,17],[3,1],[11,19],[8,4],[5,-7],[4,2],[3,15],[-5,4],[10,27]],[[4691,4182],[-11,0],[-16,-7]],[[4664,4175],[-6,-3],[-1,5],[-9,9],[-1,-4],[-59,0],[-3,23],[4,9],[1,30],[-1,15],[2,10]],[[4591,4269],[-3,3],[-5,-15],[-6,-12],[-16,-1],[-13,10],[-2,6],[-11,-7],[-7,-10],[-3,-18],[-8,-4],[-4,-6]],[[4513,4215],[2,-20],[-1,-16],[5,-9],[2,-22],[-2,-14],[5,-8],[12,-6],[7,-15],[-1,-20],[7,-8],[-3,-17],[8,-16],[3,-1],[11,13],[6,-6],[2,-22],[9,-1],[1,-15],[8,-16],[4,-3],[10,6],[3,-16],[8,-3],[18,-18],[8,-14],[15,0],[12,8]],[[7220,3576],[0,0]],[[7218,3558],[0,0]],[[7197,3538],[-2,4],[1,-24],[3,14],[-2,6]],[[7209,3526],[-4,-5],[1,-8],[3,13]],[[7188,3543],[-8,1],[5,-15],[0,-7],[-5,-23],[5,2],[1,10],[4,8],[-2,24]],[[7183,3493],[0,0]],[[7236,3549],[1,30],[-1,10],[-5,-10],[-5,10],[5,29]],[[7231,3618],[-8,-22],[-1,-30],[-3,-12],[-3,-23],[-8,-24],[-1,-10],[-10,16],[-5,1],[-9,-25],[0,-33],[-2,10],[-8,-2],[7,5],[3,10],[-4,8],[2,9],[-3,3],[5,28],[-14,32],[-1,-12],[-3,0],[-3,-16],[-1,18],[-7,12],[-2,-29],[-1,26],[-5,6],[-5,-10],[-1,-11]],[[7140,3543],[0,-11],[-3,-13],[-3,-25],[2,-15],[-7,-5],[1,-9],[-4,-13],[3,-19],[1,-16],[-6,-4],[-6,-8],[-4,0],[-3,-8],[4,-17],[4,2],[4,-18],[12,0],[2,-6],[-5,-11],[-8,-3],[-8,-14],[-3,-3],[3,-20],[7,-12],[-2,-10],[7,8],[1,7],[8,3],[1,-10],[5,19],[8,7],[5,-14],[5,15],[-1,35],[9,8],[9,3],[24,-1],[5,2],[16,-2],[12,13],[0,5],[-7,-2],[-5,28],[-3,3],[-2,10],[-6,0],[-3,5],[-5,0],[-4,10],[-3,20],[4,12],[1,15],[4,-5],[3,12],[6,-4],[0,-13],[5,-13],[0,-10],[8,0],[3,21],[1,24],[3,13],[1,40]],[[5460,2296],[0,14],[-3,6],[-9,0],[-6,12],[-1,25],[-4,2],[-7,14],[5,7],[9,22]],[[5444,2398],[-10,0],[-3,3],[-7,-10],[-11,6],[-8,1],[-2,8],[-6,6]],[[5397,2412],[-7,3],[3,14],[-7,7],[-11,0],[-7,4],[-4,-5],[-10,-2],[-7,-11],[-13,1],[-11,8],[-11,0],[-9,3]],[[5303,2434],[2,-24],[-5,-14],[-7,-6],[-6,-12]],[[5287,2378],[5,-7],[-3,-11],[0,-10],[8,-5],[7,-17],[-5,-10],[-8,-9],[-3,-11],[0,-15],[6,-6],[3,-10]],[[5297,2267],[9,9],[-5,8],[2,6],[8,-2],[20,5],[14,0],[20,6],[9,1],[6,-3],[14,-17],[18,-8],[7,0],[9,8],[13,2],[4,9],[9,5],[6,0]],[[6072,3324],[-4,-4],[0,-16],[4,6],[0,14]],[[2638,3594],[-4,13],[-14,2],[0,-10],[7,-5],[5,3],[6,-9],[0,6]],[[2641,3576],[0,0]],[[2637,3523],[0,0]],[[2605,3536],[-1,-2],[9,-13],[-1,-14],[3,10],[-3,10],[-7,9]],[[2609,3506],[-6,1],[-1,-8],[7,7]],[[2588,3497],[-4,-11],[-5,-2],[0,-13],[-5,-15],[3,3],[4,23],[4,2],[3,13]],[[2565,3464],[0,0]],[[2599,3429],[0,0]],[[2509,3418],[3,7],[0,23],[-6,-1],[-2,-16],[-4,-11],[9,-2]],[[2575,3421],[-3,-1],[-4,-13],[7,14]],[[2518,3374],[0,0]],[[2507,3392],[0,14],[-8,10],[-11,-19],[5,-2],[-2,-6],[4,-9],[-1,-16],[5,3],[1,8],[7,17]],[[2537,3347],[9,8],[-5,0],[-4,-8]],[[2486,3275],[15,0],[1,4],[-9,1],[-14,9],[-1,-5],[8,-9]],[[2521,3323],[-5,-8],[5,-6],[0,-24],[5,2],[0,11],[-3,6],[-2,19]],[[5194,2231],[10,-1],[-6,20],[-1,12],[13,16],[-1,4],[-8,2],[7,17],[-2,5],[-7,2]],[[5199,2308],[-7,2],[3,12],[-4,-4],[-7,9],[-1,10],[-5,3],[3,20],[-3,4]],[[5178,2364],[-21,-20]],[[5157,2344],[-2,-2]],[[5155,2342],[1,-6],[-10,-17],[0,-6],[-5,-4],[-22,-35],[-5,-20],[-11,-17],[2,-24],[6,-1],[8,11],[6,-12],[8,1],[3,-5],[6,6],[9,3],[7,-2],[3,5],[5,-4],[19,4],[4,11],[5,1]],[[2921,3786],[0,0]],[[5448,1581],[5,6],[7,-3],[6,8],[7,-5],[9,5],[-1,10],[4,5],[11,-8],[10,0],[6,3],[7,9],[6,3],[-3,13],[5,17],[-6,13],[11,13],[-4,7],[6,5],[4,12],[12,9],[-2,13],[13,1],[7,6],[0,8],[7,7],[-16,19],[-8,-1],[-5,-5],[-7,0],[-5,11],[8,14],[0,26],[6,12]],[[5548,1814],[-11,0],[-10,3],[-7,9],[-6,17],[3,14],[-5,5],[-8,-12],[-17,3],[-6,3],[-4,-12],[-4,-2],[-9,11],[-3,-7],[-13,-3],[-9,1],[-2,6],[-4,-7],[-9,0],[-4,-9],[-5,0],[-34,-10],[-19,0],[-20,4],[-10,16],[-9,-3],[-1,7]],[[5322,1848],[-2,-11],[3,-21],[-13,-12],[8,-16],[12,-9],[0,-18],[-12,-53]],[[5318,1708],[7,2],[13,-2],[3,3],[14,-6],[0,-7],[9,-2],[9,-8],[3,9],[5,-2],[-5,-12],[5,-11],[3,-20],[9,-5],[2,-8],[10,1],[3,-10],[-6,-1],[3,-20]],[[5405,1609],[10,-9],[18,1],[2,-9],[6,-7],[7,-4]],[[2226,3812],[0,0]],[[2223,3783],[0,0]],[[2197,3900],[-9,0],[0,-37],[1,-16],[0,-44],[1,-15]],[[2190,3788],[3,-10],[5,5],[8,-21],[1,-9],[7,-2]],[[2214,3751],[-2,7],[6,0],[2,7],[-6,36],[2,5],[-2,12],[1,20],[-2,19],[-7,20],[-3,1],[-6,22]],[[2868,2955],[0,0]],[[3051,5976],[-1,-20],[-26,-30],[-24,0],[-49,20],[-7,32],[-8,22],[0,28],[-10,68]],[[2800,6130],[-11,3],[-8,-3],[0,-19],[-4,-25],[-2,-5],[-3,-21],[0,-19],[-8,-20],[-2,-3],[2,-17],[-7,-5],[-1,-23],[5,-3],[1,-9],[-5,-10],[7,-18],[-12,-22],[-6,-48],[1,-8],[-6,-7],[-5,-26]],[[2736,5822],[-4,-16],[5,-10],[7,-15],[5,-8],[0,-9],[5,-8],[-10,-11],[-7,-31],[7,-23],[-5,-15],[4,-20],[10,-24],[-5,-30],[3,-16],[-1,-30],[6,-11],[1,-10],[-5,-25],[-4,-11],[-5,-21],[-9,-32]],[[2734,5446],[20,3],[3,7],[12,-9],[4,-11],[4,-6],[7,1],[5,-11],[13,-13],[15,-22],[9,-4],[15,-3],[8,-4],[3,10],[1,16],[-5,20],[4,23],[-2,22],[7,26],[4,14],[5,3],[8,13],[3,10],[13,5],[4,-4],[6,3],[7,10],[6,-1],[10,20],[11,7],[7,1],[9,22],[20,-3],[16,18],[2,8],[-1,19],[4,20],[1,28],[-8,1],[9,21],[2,45],[46,5],[5,-4],[0,13],[-4,8],[0,15],[2,19],[12,16],[4,0],[1,9],[8,34],[-2,1],[-6,38],[2,0],[-11,46],[7,15],[-8,10]],[[3320,6415],[-2,-13],[3,-10],[2,4],[-4,15],[1,4]],[[3317,6336],[-2,-8],[4,-3],[-2,11]],[[3409,6191],[-5,0],[4,-10],[1,10]],[[3441,6147],[-6,4],[2,-8],[4,4]],[[3586,5591],[0,0]],[[3590,5570],[0,0]],[[3430,4984],[-2,-8],[3,-4],[-1,12]],[[3420,4891],[0,0]],[[3227,4898],[-3,1],[3,-15],[4,-6],[0,-14],[7,-16],[5,-2],[1,8],[-2,20],[-5,11],[-10,13]],[[3288,4828],[11,-4],[20,5],[3,7],[-6,36],[-6,14],[1,6],[-4,9],[-7,-4],[0,8],[-4,2],[-5,-5],[-2,12],[-9,3],[-17,1],[-3,-8],[-4,-23],[2,-10],[-3,-10],[3,-31],[6,-12],[7,-2],[17,6]],[[3259,4823],[-8,11],[-2,-4],[1,-9],[9,-2],[0,4]],[[3293,4822],[-11,-1],[2,-7],[10,-2],[-1,10]],[[3284,4800],[-2,15],[-5,2],[-9,-4],[2,-11],[11,-4],[3,2]],[[3266,4807],[-2,9],[-4,-4],[8,-30],[0,18],[-2,7]],[[3273,4793],[-3,1],[0,-13],[6,-3],[-3,15]],[[3269,4704],[-5,1],[0,-12],[4,-1],[1,12]],[[3097,4703],[13,6],[3,-11],[-4,-12],[2,-16],[6,7],[11,-2],[9,-9],[12,15]],[[3149,4681],[2,5],[12,7],[8,-13],[6,5],[7,-5],[3,7],[10,1],[9,-18],[0,-7],[8,-34],[2,-2],[12,-42],[3,-4]],[[3231,4581],[3,-14],[3,0],[7,12],[4,25],[0,22],[13,74],[3,10],[7,2],[8,8],[2,13],[-2,18],[-10,16],[-8,24],[-6,14],[-8,12],[-5,3],[-6,25],[-6,14],[0,15],[-6,9],[-3,13],[-5,-2],[-13,11],[10,0],[3,5],[7,-3],[18,-21],[12,-17],[-2,10],[5,22],[3,9],[-1,7],[8,14],[11,-10],[7,5],[13,-11],[-6,32],[-3,21],[5,-9],[6,-33],[5,-5],[9,-20],[7,7],[3,-7],[-3,-3],[1,-17],[10,-25],[3,4],[4,-7],[11,6],[1,-8],[7,7],[9,2],[5,11],[11,4],[16,18],[6,0],[3,21],[7,-14],[14,21],[1,12],[-6,13],[3,6],[5,-12],[2,11],[-3,3],[-4,20],[-2,26],[7,-15],[5,-24],[5,-2],[-2,18],[7,-13],[13,-5],[2,-7],[13,5],[9,11],[10,8],[7,1],[3,-4],[7,8],[9,3],[23,-8],[14,4],[27,30],[8,16],[7,3],[11,29],[12,22],[9,7],[4,11],[8,3],[8,8],[12,0],[5,-3],[11,5],[5,7],[5,18],[3,35],[3,12],[2,23],[2,14],[0,21],[-1,20],[1,13],[-8,56],[-6,17],[-11,27],[-2,1],[-7,21],[-4,8],[-5,15],[-15,19],[-11,34],[1,-11],[-4,10],[1,6],[-9,35],[-8,28],[-10,21],[-3,0],[-1,-11],[-5,-9],[-4,10],[3,8],[-2,12],[-6,14],[-2,12],[3,-1],[-1,28],[2,-2],[-3,37],[2,16],[0,19],[3,35],[-5,37],[-4,39],[2,30],[-10,16],[-5,15],[-2,22],[2,38],[-4,20],[-5,5],[-4,14],[-1,13],[-3,5],[-3,17],[-5,11],[-6,7],[-7,35],[2,24],[-4,9],[-13,10],[-11,20],[1,11],[-3,9],[-25,1],[-9,-7],[2,8],[-19,8],[-3,-4],[9,-2],[-5,-5],[-8,6],[-14,1],[0,16],[-8,3],[-11,12],[-4,13],[-14,0],[-25,25],[-7,15],[-21,29],[-1,10],[-8,13],[1,-6],[-8,0],[0,9],[-6,1],[8,8],[-4,11],[-2,21],[-5,5],[4,9],[-1,16],[4,29],[-3,20],[1,30],[-5,30],[-13,16],[-7,13],[-14,41],[-8,36],[-12,38],[-6,11],[-14,25],[-13,16],[-3,8],[-1,-17],[4,3],[7,-6],[13,-25],[0,-13],[7,-4],[0,-8],[7,-12],[0,-17],[3,1],[-1,-11],[-9,9],[-7,-10],[-3,-10],[1,11],[2,7],[-8,35],[0,8],[-12,14],[-7,31],[0,16],[-6,16],[-3,25],[-7,23],[-17,27]],[[3184,6758],[-5,-5],[0,-27],[12,-25],[-14,-20],[-2,-13],[-8,-15],[-7,-3],[-10,-22],[-19,-15],[-9,-22],[-8,14],[-4,-2],[1,-12],[-5,-13],[-7,-10],[-11,-20],[-6,0],[-5,10],[-9,-1],[-2,-4]],[[3149,6287],[0,-7],[4,-13],[6,-52],[1,-15],[-11,-14],[-8,9],[-8,3],[-5,-2],[-2,-18],[-2,-2],[-1,-28],[-3,-20],[1,-11],[-6,-17],[-9,-2],[-6,-11],[-4,0],[-3,9],[-9,1],[-17,-5],[-4,-5],[-7,1],[1,-36],[3,-21],[-3,-25],[-2,-5],[0,-10],[-4,-15]],[[2734,5446],[-11,-1],[-11,8],[-5,-7],[-3,3],[0,-68],[3,-22],[-3,2],[-16,28],[-11,3],[-16,-1],[1,-9],[-3,-4],[-3,-15],[-12,-6],[-11,0],[6,-17],[0,-7],[-10,-29],[-6,-8],[-3,-19],[-3,-5],[2,-9],[-8,-11],[1,-12],[7,-6],[-3,-11],[3,-14],[15,-18],[1,-10],[-3,-15],[7,-26],[4,-31],[7,-5],[3,-7],[17,-22],[10,-2],[15,-7],[7,-11],[8,-1],[5,9],[5,2],[3,-6]],[[2723,5059],[5,-51],[1,-19],[4,-41],[3,-39],[3,-25],[-7,-27],[1,-10],[-9,-14],[-4,-10],[0,-41],[6,-1],[11,-8],[7,6],[0,-14],[-4,-11],[-14,0],[0,-37],[8,-4],[5,3],[34,0],[-3,-7],[4,-6],[3,11],[6,-2],[5,-14],[6,-5],[6,16],[3,13],[0,25],[6,-2]],[[2809,4745],[12,23],[3,4],[9,-3],[4,-8],[6,-2],[5,16],[9,-24],[11,-8],[7,-11],[5,-1],[4,-9],[4,-18],[16,-13],[2,-15],[-15,-2],[-4,-4],[1,-16],[-6,-31],[-1,-19],[-8,-13],[-7,-20],[3,-2],[4,8],[10,0],[5,12],[20,0],[9,19],[6,-4],[1,-20],[9,-8],[7,3],[17,-11],[7,-13],[8,-1],[11,-24],[-4,-14]],[[2979,4516],[11,0],[6,-3],[4,9],[-1,20],[-3,8],[1,6],[7,1],[4,7],[-1,8],[5,17],[-3,13],[-5,7],[0,13],[-4,21],[0,17],[3,19],[4,5],[0,18],[2,13],[4,2],[8,19],[7,4],[3,6],[10,-5],[0,-9],[6,-9],[7,5],[2,-8],[12,-4],[6,-14],[6,-3],[8,8],[9,-4]],[[3014,4062],[-4,-5],[1,-9],[5,9],[-2,5]],[[7861,4533],[2,0]],[[7863,4533],[5,15],[-1,17],[-4,-3],[-2,-29]],[[7861,4533],[-8,10],[3,21],[-3,15],[-5,3],[-6,-12],[-3,-13],[-5,-6]],[[7834,4551],[7,-1],[7,-7],[12,-17],[1,7]],[[7210,3215],[-1,13],[5,7],[7,-1],[2,9],[-2,12],[2,12],[-11,3],[-6,-2],[-23,5],[-7,-8],[-7,9],[-11,3],[-11,-8],[-5,1],[-8,-8],[-4,-12],[5,-8]],[[7135,3242],[2,-9],[16,-38],[10,-10],[13,3],[-1,9],[11,1],[10,6],[4,-6],[10,7],[0,10]],[[5368,5840],[0,13],[6,18],[7,17],[6,18],[0,7],[6,28],[14,20],[12,9],[3,11],[2,14],[11,1],[0,35],[5,9],[5,17],[14,4],[14,10],[-1,10],[10,12]],[[5482,6093],[-10,4],[-5,13],[-18,11],[-8,22],[-7,8],[-2,7],[-12,12],[-5,13],[-3,28],[-13,21],[-10,5],[-4,5],[-8,48],[-4,6],[-19,5],[-13,-4],[-3,-6],[-8,-1],[-10,-15],[-8,-5],[-8,6],[-4,12],[-2,17],[-4,15],[-11,15],[-3,11],[-9,7],[-2,8],[-27,0],[-3,-24],[6,-17],[-1,-13],[-5,-25],[-8,-26],[-10,-15]],[[5221,6241],[0,-160],[28,0],[0,-211],[7,0],[56,-19],[11,26],[13,-21],[6,-5],[6,4],[7,-12],[13,-3]],[[5301,4186],[3,10],[10,21],[9,32],[-1,33],[-4,8],[2,17],[4,5],[13,4]],[[5337,4316],[4,22],[16,8],[9,19],[0,17],[5,11],[14,15],[13,25],[-1,14],[6,19],[15,16],[3,6],[1,23],[5,10]],[[5427,4521],[-8,-5],[-8,8],[-36,-15],[-3,3],[-4,14],[-14,5],[-9,-4],[-28,20],[-9,-5],[-7,1],[-7,16],[-5,18],[-14,-7],[-11,1],[-11,-5],[-9,-7],[-4,1],[-5,-6],[-2,-9],[-5,-8],[-15,-17],[-10,3],[-7,10],[-10,30],[-4,7],[2,17],[-1,28]],[[5183,4615],[-4,-8],[-8,7],[-20,-11],[-4,4],[-18,5],[-3,4],[-2,14],[0,22],[-8,32]],[[5116,4684],[-7,-46],[-7,-9],[-16,-34],[-2,-11],[3,-1],[-2,-15],[-9,-15],[-3,-30],[-2,-10],[1,-37],[-5,-11],[9,-12],[3,-15],[10,-38],[7,-18]],[[5096,4382],[10,3],[5,-6],[10,-6],[4,-11],[7,18],[10,-8],[3,-7],[11,-10],[4,1],[23,-5],[1,-6],[13,-28],[-6,-11],[4,-9],[22,-3],[7,-5],[7,0],[12,-16],[14,-32],[13,-23],[-1,-12],[9,-14],[13,-10],[10,4]],[[3006,2284],[0,0]],[[2824,2264],[0,0]],[[2812,2242],[-4,3],[3,-11],[1,8]],[[2973,2195],[0,0]],[[2619,2190],[0,0]],[[2623,2196],[-11,2],[8,-7],[5,-8],[-2,13]],[[2693,2115],[0,0]],[[2969,2169],[1,14],[10,-4],[7,-12],[-7,3],[3,-11],[6,-10],[4,5],[10,2],[1,13],[-15,17],[-8,3],[-17,1],[-5,-8],[-2,-13],[4,-13],[11,-28],[12,-20],[4,0],[2,13],[-6,35],[-15,13]],[[2894,2139],[3,-6],[16,8],[27,-3],[3,3],[-14,15],[2,10],[-11,0],[-5,-16],[-6,7],[-8,-3],[-9,-12],[-6,-1],[0,-8],[-9,-7],[5,-12],[7,-9],[-3,16],[8,18]],[[2947,2092],[-1,-8],[8,-10],[7,-3],[-14,17],[0,4]],[[3160,2083],[-3,0],[6,-12],[-3,12]],[[2874,2057],[0,0]],[[2875,2053],[0,0]],[[1238,2007],[0,0]],[[1240,1999],[-5,-3],[-4,-9],[9,12]],[[2591,2223],[12,-11],[6,-3],[8,-9],[6,-1],[5,-19],[6,-15],[12,-10],[7,-10],[16,-16],[7,-1],[11,-6],[21,-16],[13,-25],[13,-20],[3,-9],[18,-24],[2,0],[14,-14],[19,-13],[26,-15],[12,-5],[22,-3],[14,4],[9,5],[10,13],[0,4],[-9,-2],[8,9],[-3,15],[-8,4],[-5,8],[-12,11],[-6,0],[-13,-9],[-4,5],[-10,-2],[-8,6],[10,-2],[17,12],[2,9],[5,1],[7,-8],[7,-2],[8,7],[-5,9],[-1,12],[-11,15],[3,3],[11,0],[-3,10],[5,12],[3,18],[3,7],[9,1],[10,6],[-6,5],[10,10],[5,-1],[6,7],[5,-2],[11,3],[-1,5],[8,1],[13,-14],[6,13],[7,-2],[7,14],[-5,4],[10,1],[0,7],[-13,4],[-13,10],[-35,20],[-8,-2],[1,9],[-6,2],[-6,-9],[-3,9],[-2,-6],[-5,8],[-2,8],[-13,25],[-7,9],[-3,0],[-3,10],[-11,-1],[-3,-10],[-7,-4],[-2,-16],[2,-16],[7,-12],[-8,8],[6,-11],[9,-3],[-2,-4],[22,-22],[12,-7],[8,13],[2,-11],[10,-6],[10,-3],[-34,-2],[-4,5],[-5,-3],[14,-22],[3,-5],[-8,1],[-5,10],[-14,10],[-7,8],[-10,6],[-6,-2],[-9,10],[-2,-3],[-10,4],[-7,-5]],[[2802,2214],[-7,-1],[-3,-6],[2,-16],[-11,-8],[0,-80],[-12,-15],[-20,8],[-3,-13],[-5,-2],[-21,44],[-2,15],[-5,11],[-2,11],[1,9],[-5,12],[-7,9],[1,7],[-6,9],[-3,-4],[-10,3],[-4,16],[-89,0]],[[1164,1971],[0,0]],[[3151,1959],[-7,5],[-2,-4],[9,-1]],[[3164,1950],[3,5],[-10,4],[2,-8],[5,-1]],[[1218,1961],[-9,-5],[-5,-7],[10,5],[4,7]],[[1149,1958],[-9,-7],[1,-6],[5,-1],[3,14]],[[2950,1987],[-13,1],[-22,-8],[-14,-10],[-9,-15],[-16,-10],[6,-7],[32,10],[13,8],[22,21],[4,8],[-3,2]],[[1195,1934],[0,0]],[[1189,1930],[-5,-14],[5,-3],[3,10],[-3,7]],[[3124,1894],[0,0]],[[1133,1898],[14,8],[14,3],[20,7],[7,19],[9,18],[-1,3],[8,12],[18,12],[5,8],[9,29],[2,-7],[4,14],[-7,7],[-11,-3],[-26,-15],[-8,-9],[9,-13],[1,-10],[-4,11],[-12,1],[-3,4],[-10,-9],[4,-3],[-4,-8],[-11,-11],[-9,3],[0,-9],[6,-5],[-6,-4],[-3,-10],[-7,-3],[-4,5],[-4,-5],[-1,-12],[-3,5],[-3,-5],[-11,2],[1,-20],[7,0],[3,-7],[-8,-1],[-3,6],[-6,0],[-8,-11],[7,-9],[11,2],[14,10]],[[3126,1847],[-5,9],[-11,3],[0,6],[5,1],[2,7],[-3,10],[-7,10],[0,5],[-7,13],[-10,24],[-2,23],[16,-28],[3,-1],[-1,10],[7,-5],[11,5],[-14,12],[4,8],[-6,7],[8,-3],[4,5],[8,-3],[3,9],[-2,9],[8,-8],[7,-4],[9,-10],[0,12],[15,-7],[9,8],[2,8],[-8,15],[-9,8],[8,-1],[-3,6],[8,1],[-5,12],[9,0],[14,-10],[1,5],[-5,10],[-3,0],[-9,10],[2,5],[-9,6],[6,0],[-6,13],[3,9],[4,-1],[9,-19],[10,-9],[-7,28],[2,12],[5,-6],[4,-12],[4,12],[-1,8],[-6,18],[0,8],[-6,18],[-7,-4],[-7,2],[0,-26],[-11,17],[-4,-7],[9,-27],[-4,-18],[-7,-6],[0,5],[-9,22],[2,-9],[-5,8],[-5,1],[-7,12],[-6,16],[-13,2],[-6,-4],[4,-8],[9,-5],[9,-17],[11,-11],[-16,-1],[-1,9],[-20,0],[7,-5],[1,-13],[-8,2],[-3,6],[-15,7],[-32,-7],[-8,1],[-3,-4],[-9,6],[-8,3],[-9,-3],[-3,-14],[3,-7],[26,-30],[-11,-2],[-12,1],[7,-7],[6,2],[1,-8],[7,-19],[9,0],[3,-8],[-6,-2],[2,-14],[9,0],[-4,-11],[14,-47],[6,-6],[-1,-9],[6,-5],[2,-10],[6,-14],[6,-7],[14,-10],[9,6],[0,-6],[7,2]],[[1113,1850],[-5,-2],[2,-11],[3,13]],[[3129,1826],[0,0]],[[2461,1823],[-7,-4],[9,-5],[-2,9]],[[1027,1822],[0,0]],[[1101,1797],[-2,1],[0,-19],[5,-5],[-3,23]],[[1085,1791],[-1,2],[-8,-15],[0,-5],[9,11],[0,7]],[[1075,1763],[-6,-9],[2,-2],[4,11]],[[2424,1777],[-8,-1],[-23,-12],[-5,-5],[3,-6],[16,-4],[6,2],[10,16],[1,10]],[[1007,1751],[3,6],[0,10],[-8,2],[5,8],[8,2],[-4,8],[8,16],[5,0],[-2,8],[-10,-9],[-20,-33],[4,-6],[-9,-5],[15,-9],[5,2]],[[1096,1766],[1,23],[-3,12],[-3,-2],[-1,-22],[-4,4],[-8,-17],[4,-18],[11,10],[3,10]],[[1079,1756],[-5,-7],[3,-6],[2,13]],[[2446,1744],[0,0]],[[1060,1753],[-3,-1],[-16,-21],[2,-5],[14,11],[5,11],[-2,5]],[[1049,1707],[-7,6],[-5,-8],[7,-5],[5,7]],[[982,1698],[2,3],[8,-1],[4,12],[-12,11],[11,0],[1,-20],[13,-6],[0,7],[-7,17],[0,20],[-2,6],[-10,5],[-11,-8],[2,-3],[6,2],[-11,-10],[-7,-24],[1,-12],[12,1]],[[1030,1677],[0,-10],[5,3],[-5,7]],[[1039,1661],[11,-15]],[[1050,1646],[-4,11],[-7,4]],[[2972,1587],[-6,-1],[5,-4],[1,5]],[[2477,1581],[-3,1],[5,-17],[3,6],[-5,10]],[[2445,1578],[-1,-7],[12,-8],[-3,8],[-8,7]],[[2474,1574],[-7,22],[-3,-2],[4,-12],[-1,-5],[-6,15],[-10,9],[7,-17],[-2,-1],[-9,14],[-3,-3],[14,-23],[-1,8],[6,-11],[1,-13],[9,10],[1,9]],[[2458,1552],[0,0]],[[2448,1545],[0,0]],[[2951,1500],[3,8],[-10,-4],[7,-4]],[[2452,1502],[0,0]],[[2744,1415],[-3,3],[0,-9],[3,6]],[[2436,1381],[0,0]],[[2442,1372],[0,0]],[[2877,1338],[-1,4],[-10,-6],[-2,-6],[7,0],[6,8]],[[2771,1345],[-4,-4],[8,-16],[8,8],[-3,7],[-9,5]],[[2485,1317],[0,0]],[[2864,1281],[-14,-12],[-1,-5],[8,-2],[10,2],[3,4],[-6,13]],[[2082,1253],[0,0]],[[2860,1251],[4,5],[-1,4],[-7,-4],[0,-9],[4,4]],[[2457,1220],[6,7],[-1,19],[-11,21],[-14,-12],[-1,-10],[3,-13],[7,-11],[11,-1]],[[2866,1212],[8,0],[3,4],[-4,6],[-11,-4],[4,-6]],[[2611,1208],[-14,-2],[-4,-3],[15,2],[3,3]],[[2713,1212],[-12,-2],[-6,-11],[-7,-5],[6,0],[16,8],[3,10]],[[2389,1189],[1,7],[-5,11],[-12,14],[-14,12],[-9,-3],[-9,5],[0,-6],[-5,-8],[14,-29],[12,2],[7,-4],[20,-1]],[[2503,1159],[10,11],[-2,6],[-10,4],[-8,-7],[-8,-11],[8,-4],[10,1]],[[2536,1164],[-10,-3],[-9,-8],[7,-6],[13,10],[-1,7]],[[2510,1129],[0,0]],[[2308,1056],[8,-10],[10,4],[5,9],[19,6],[5,9],[17,11],[9,2],[10,10],[4,7],[3,17],[-7,6],[16,-2],[9,2],[3,-4],[6,4],[1,8],[11,5],[-1,3],[-21,17],[-25,-12],[-12,-2],[-2,-13],[-16,-5],[-4,-8],[-9,3],[-6,17],[-19,16],[-6,13],[-22,11],[-2,-2],[-7,-29],[-2,-3],[-14,3],[-7,-1],[-10,6],[-6,-1],[-1,-8],[8,-12],[13,-7],[5,-5],[-4,-25],[5,-25],[2,-24],[3,-13],[6,-11],[7,-5],[9,7],[3,12],[-3,5],[5,4],[4,10]],[[2314,1038],[-11,-9],[-2,-16],[6,0],[9,20],[-2,5]],[[2341,1025],[13,5],[-2,5],[-14,-3],[3,-4],[-11,-1],[-3,-12],[-7,-6],[2,-3],[8,3],[12,11],[-1,5]],[[2357,997],[0,0]],[[1664,955],[8,0],[-4,9],[-4,-9]],[[2924,953],[-4,0],[7,-8],[6,0],[-9,8]],[[1669,933],[-1,5],[-6,-7],[1,-11],[4,0],[2,13]],[[1634,899],[6,0],[1,5],[-7,-5]],[[2621,911],[-21,0],[-5,-3],[-5,-9],[1,-5],[9,-1],[27,6],[0,10],[-6,2]],[[1630,899],[0,0]],[[2261,914],[-8,-6],[1,-10],[-3,-6],[7,-11],[8,7],[1,16],[-6,10]],[[2564,879],[15,5],[2,29],[-1,12],[-8,10],[-11,5],[-25,3],[-9,-3],[-6,-13],[-2,-12],[2,-8],[14,-23],[10,-5],[19,0]],[[2472,887],[-5,-3],[1,-5],[5,-1],[4,5],[-5,4]],[[1763,874],[-14,-6],[1,-3],[11,1],[2,8]],[[2586,878],[-12,-7],[-1,-9],[5,-4],[6,3],[5,11],[-3,6]],[[1837,865],[-12,-6],[8,-8],[8,4],[-4,10]],[[1883,852],[-4,5],[-8,-5],[1,-12],[5,-2],[7,8],[-1,6]],[[1889,840],[-1,4],[-6,-6],[2,-5],[5,7]],[[2153,828],[-7,-8],[4,0],[3,8]],[[2466,850],[-5,-6],[4,-6],[10,-5],[6,-11],[6,-4],[6,5],[-17,23],[-10,4]],[[2161,817],[-3,9],[-5,-6],[8,-3]],[[2528,833],[-8,-1],[-3,-7],[5,-9],[15,4],[-9,13]],[[1855,818],[-4,-10],[10,5],[-6,5]],[[2013,808],[4,4],[-3,9],[-7,0],[2,-9],[-4,-4],[-2,13],[-3,-9],[3,-6],[10,2]],[[804,808],[-7,-2],[5,-3],[2,5]],[[2780,810],[-9,-5],[11,-3],[-2,8]],[[2499,800],[2,3],[-17,10],[-8,0],[8,-10],[15,-3]],[[2460,796],[2,4],[-5,5],[-14,-2],[2,9],[-13,-9],[-9,-1],[1,-4],[14,-3],[7,3],[10,-5],[5,3]],[[1960,803],[5,-1],[10,10],[16,9],[13,23],[7,6],[6,-3],[1,7],[-9,2],[-6,6],[-14,9],[-6,1],[-11,-5],[-13,0],[-21,-11],[-4,-6],[-5,3],[-12,-8],[-3,4],[-10,-3],[-3,-8],[3,-5],[15,-2],[13,-9],[-3,-14],[14,7],[-8,-10],[2,-8],[10,-6],[14,7],[-1,5]],[[2252,777],[9,0],[1,7],[-5,1],[-15,-4],[-1,-4],[11,0]],[[1880,755],[-9,-3],[0,-7],[10,4],[-1,6]],[[2591,2223],[-13,6],[-17,23],[-10,11],[-9,15],[-9,24],[-53,0],[-13,10],[3,7],[0,13],[4,10],[-3,8],[-11,9],[-23,16],[-28,9],[-33,31],[-7,0],[-9,-9],[-3,-9],[2,-18],[6,-5],[9,-14],[3,-26],[8,-28],[-5,-48],[-2,-10],[-5,-45],[-5,-6],[-24,-21],[4,-12],[-4,-5],[-10,2],[-4,-12],[0,-14],[-12,4],[-7,-10],[-2,-15],[-57,-48],[-40,-33],[-7,2],[-16,13],[-7,3],[-15,-1],[-3,-7],[-20,0],[-7,-5],[-4,5],[-9,4],[-13,-14],[-5,-2],[-7,4],[-2,-10],[-14,-10],[-7,-1],[-9,6],[-8,-5],[-21,-7],[-5,-15],[-1,-18],[-9,-4],[0,22],[-767,0]],[[1256,1993],[-12,-9],[0,-6],[7,-4],[-9,-1],[3,-19],[-4,12],[-6,4],[-9,-5],[-5,-7],[2,-8],[4,9],[2,-4],[-6,-14],[-5,5],[-7,2],[-11,-14],[-7,-23],[5,-12],[0,-14],[-5,21],[-12,0],[-2,-7],[-2,9],[-22,-3],[0,-5],[14,-4],[-2,-2],[-14,2],[3,-7],[-4,-4],[0,-11],[-3,9],[-12,2],[-6,-2],[-12,-14],[2,-16],[10,-13],[15,-2],[-8,-2],[-12,3],[-5,11],[-6,-11],[0,-9],[4,-11],[-4,2],[2,-12],[15,-12],[4,-13],[-12,15],[-7,4],[-9,29],[-2,-13],[-5,-8],[9,-9],[0,-13],[-7,10],[4,-25],[3,-6],[-9,5],[-3,-4],[-2,-15],[-3,-6],[-12,-7],[-3,-9],[2,-6],[7,-4],[-1,8],[12,9],[-6,-8],[-1,-15],[5,-3],[-5,-3],[-7,4],[-7,12],[-2,13],[-7,9],[-8,-9],[-2,-8],[-12,-10],[7,-15],[1,-9],[12,-5],[-13,2],[-9,-9],[1,-16],[17,-38],[6,-10],[-4,1],[-3,-7],[-2,17],[-5,12],[2,-12],[-3,-17],[2,-19]],[[1055,1596],[-2,-13],[-9,0],[-2,-7],[-7,-6],[-10,-4],[-13,-11],[-7,1],[-1,-12],[-7,-4],[2,-10],[-8,-2],[1,-13],[-18,-33],[-5,-12],[-9,-15],[1,-5],[-12,-16],[-12,-8],[-5,-14],[-15,-12],[-1,-15],[-14,-14],[-11,8],[-11,3],[2,4],[-6,4],[0,11],[-4,7],[-6,0],[-19,14],[-2,-18],[-21,-22],[-8,-10],[-2,-7],[-10,-5],[-4,-6],[2,-14],[-15,0],[-10,9],[-12,-7],[-2,5],[-13,-5],[0,-539]],[[750,803],[16,3],[11,-1],[23,6],[14,12],[23,13],[17,7],[15,4],[16,1],[25,11],[-5,-9],[-13,-4],[-1,-5],[6,-3],[-6,-5],[6,-10],[10,0],[3,-7],[11,-3],[10,0],[0,-10],[6,-1],[5,6],[5,4],[-7,13],[27,-9],[10,-13],[10,0],[-1,-5],[6,2],[10,-2],[13,-10],[9,1],[4,-7],[14,-7],[15,3],[6,-6],[5,7],[-3,4],[-36,22],[-29,6],[-9,12],[-14,5],[-15,19],[2,3],[16,2],[0,-16],[25,-14],[5,-9],[7,3],[2,4],[6,-7],[3,15],[9,-15],[15,-15],[15,-5],[9,-1],[10,-7],[-1,6],[-6,2],[3,8],[18,-15],[3,-9],[15,-6],[2,-4],[-10,-2],[-4,-6],[5,-9],[22,16],[8,14],[4,12],[15,18],[9,7],[15,4],[6,-5],[-6,-11],[5,-12],[3,0],[9,-9],[-6,-1],[9,-8],[6,2],[-1,11],[3,10],[7,3],[-10,14],[4,5],[20,-2],[11,-8],[5,-17],[27,0],[15,3],[20,9],[14,12],[12,4],[31,6],[12,9],[28,9],[35,5],[-6,-7],[18,-1],[28,14],[18,20],[-4,7],[-19,0],[-11,9],[-1,7],[-6,4],[8,6],[13,0],[11,5],[34,3],[17,0],[5,-3],[19,-1],[8,-4],[8,2],[18,-10],[9,-2],[11,15],[17,2],[5,16],[5,-11],[9,12],[10,7],[0,10],[-14,0],[20,24],[11,15],[3,0],[-13,-20],[0,-12],[3,-2],[13,8],[-5,-8],[0,-5],[-4,-5],[-6,-11],[2,-5],[-10,-15],[6,-10],[-1,-6],[19,-6],[8,-1],[4,-5],[7,1],[5,-11],[9,-3],[5,-9],[-5,-2],[-15,7],[-4,9],[-5,-2],[-10,5],[-13,-2],[-3,10],[-16,0],[-11,-6],[11,-20],[24,-4],[31,-12],[9,-1],[11,7],[6,21],[13,10],[8,2],[4,8],[8,3],[15,-3],[5,-2],[18,15],[14,7],[11,-1],[10,3],[30,-8],[20,1],[20,6],[18,-6],[-9,-10],[3,-5],[6,5],[12,16],[14,6],[8,-5],[1,-7],[-5,-5],[-11,-5],[-11,5],[-9,-10],[2,-3],[-9,-13],[5,-2],[8,3],[12,-3],[-5,-8],[20,4],[8,12],[15,-3],[-8,13],[21,-10],[-7,31],[-5,9],[10,16],[9,-2],[-3,7],[8,-1],[2,11],[-3,3],[-11,-3],[-11,2],[13,13],[-4,-6],[2,-5],[9,1],[8,-3],[2,-17],[-3,-14],[-7,-12],[5,-17],[9,-3],[11,0],[7,-6],[15,-17],[14,-8],[-7,-4],[1,-9],[-4,-9],[-5,10],[-7,4],[-10,-1],[3,-11],[11,-10],[-5,-1],[0,-9],[18,-6],[-6,9],[2,2],[9,-8],[-6,-9],[-7,4],[-13,-2],[-7,-10],[-5,5],[-32,-13],[-16,-19],[0,-12],[9,-12],[9,0],[0,-10],[-8,5],[-5,-3],[-6,-12],[3,-10],[-2,-4],[7,-12],[8,-4],[7,5],[5,-1],[3,-9],[-12,-4],[10,-12],[9,-7],[18,-5],[2,8],[5,5],[14,0],[1,7],[14,10],[8,9],[2,23],[-2,4],[18,12],[8,14],[9,5],[4,7],[-8,3],[-12,-6],[-6,7],[15,4],[-25,22],[17,0],[9,7],[11,-5],[10,-2],[-3,7],[24,5],[-8,1],[-5,10],[-10,-3],[14,12],[7,13],[-2,23],[10,13],[9,-16],[-1,-4],[7,-24],[8,-12],[5,-3],[7,3],[8,10],[12,8],[5,6],[6,21],[-2,11],[-6,0],[-3,-5],[-4,3],[1,19],[9,19],[15,17],[5,8],[21,-19],[3,-17],[12,-13],[7,-23],[0,-11],[6,-8],[7,2],[11,-2],[-7,-4],[6,-7],[1,-6],[-10,-5],[-6,-9],[1,-15],[-3,-5],[0,-11],[14,3],[19,-3],[18,9],[4,-1],[25,1],[7,2],[-3,7],[-7,2],[12,5],[2,10],[8,-2],[15,5],[2,3],[-17,15],[16,2],[3,11],[-10,7],[-11,4],[-5,-3],[-10,4],[5,6],[5,12],[5,-4],[-1,16],[5,6],[11,10],[6,11],[-5,20],[-5,5],[-7,2],[-9,13],[-12,10],[-9,2],[-9,9],[-9,0],[-1,-6],[-11,-15],[-8,-1],[0,-5],[-14,-10],[-8,6],[11,0],[11,13],[15,27],[-3,2],[-11,-5],[-5,6],[-17,-8],[-14,-15],[-13,4],[-16,-1],[-3,7],[4,5],[17,8],[-2,9],[-34,39],[-11,1],[-12,-3],[-19,-18],[-8,-2],[-19,-13],[-2,5],[-27,-5],[-17,0],[11,8],[1,-6],[30,8],[19,20],[7,5],[22,4],[22,1],[8,2],[3,7],[-8,16],[-17,25],[-3,9],[-11,9],[-12,5],[-11,-6],[3,8],[-12,-3],[-7,-9],[-4,5],[1,8],[-7,-2],[4,10],[-6,10],[-10,-2],[-10,5],[-16,-8],[-19,-3],[-34,-15],[-7,-7],[4,17],[8,1],[-4,-6],[35,15],[-9,7],[5,0],[12,-8],[10,8],[15,7],[7,8],[-2,19],[-10,3],[-9,7],[-16,-4],[-9,3],[3,8],[8,2],[-1,6],[-6,-3],[-8,2],[-7,12],[5,10],[-8,-8],[-10,-3],[9,7],[-5,5],[2,4],[-10,3],[1,6],[-7,-1],[7,10],[-11,10],[-9,16],[-3,17],[-14,33],[-3,29],[-1,46],[-4,5],[5,3],[14,21],[-3,18],[3,-2],[4,-21],[9,-2],[18,4],[1,11],[8,25],[3,17],[8,27],[-3,11],[-5,10],[11,-6],[-1,5],[9,-6],[26,-10],[14,1],[22,14],[24,8],[18,18],[6,4],[14,23],[33,16],[15,7],[17,18],[0,7],[5,-3],[15,1],[17,-3],[19,6],[7,-1],[3,3],[13,5],[5,15],[-5,20],[-1,14],[5,11],[3,13],[-2,12],[2,14],[-4,12],[0,11],[7,9],[13,26],[-8,8],[8,-1],[12,11],[12,15],[7,21],[-10,17],[9,-10],[6,-1],[12,9],[13,23],[-11,-24],[7,-22],[5,-4],[8,10],[4,15],[4,-19],[-7,-14],[14,-27],[-3,-17],[-5,-13],[2,-5],[-4,-7],[-3,-13],[-2,-21],[-2,-5],[3,-21],[-7,-5],[3,-4],[-6,-5],[-9,-25],[34,-18],[16,-13],[16,-19],[15,-25],[5,-12],[2,-17],[0,-23],[-2,-23],[-8,-27],[-8,-15],[-14,-15],[-10,-6],[-14,-17],[1,-8],[12,-22],[6,-6],[0,-11],[3,-10],[10,5],[-3,-7],[4,-5],[1,-14],[-7,-1],[3,-5],[-6,-16],[5,-7],[-8,-6],[5,-10],[-8,2],[-8,-4],[7,-8],[5,-12],[0,-13],[6,-7],[-14,-16],[-3,-16],[2,-14],[13,-11],[6,-2],[14,3],[29,12],[1,8],[13,-8],[12,5],[7,6],[0,-5],[17,-9],[7,-6],[13,8],[12,12],[7,4],[-4,12],[5,-4],[6,2],[9,12],[5,-1],[7,7],[-7,7],[12,17],[11,1],[9,5],[15,0],[2,10],[11,-2],[4,-9],[5,10],[-7,12],[-3,11],[3,16],[-4,11],[-24,0],[5,3],[18,1],[4,5],[3,11],[-4,10],[1,9],[8,0],[-2,16],[-2,11],[-4,3],[-2,-7],[-12,11],[11,4],[11,-10],[18,-3],[9,7],[5,15],[-3,21],[-4,5],[-13,5],[-2,5],[15,-6],[4,-5],[6,-22],[3,1],[4,7],[3,-3],[2,23],[3,-13],[27,-19],[4,-11],[6,-2],[5,7],[2,13],[2,-11],[-3,-12],[5,-9],[13,-3],[-6,-4],[3,-20],[4,-3],[-4,-8],[2,-8],[6,-2],[8,-25],[3,-5],[9,4],[2,5],[-10,10],[14,-3],[3,5],[0,10],[12,16],[-7,6],[12,5],[3,8],[-2,4],[-12,5],[14,-3],[6,9],[6,4],[4,11],[-14,12],[8,2],[14,-3],[-6,16],[-13,11],[12,-7],[10,-2],[5,10],[11,7],[-3,6],[2,6],[-12,11],[14,5],[-4,8],[10,4],[9,8],[-1,20],[-5,2],[-15,-3],[-12,-5],[11,7],[10,9],[-7,4],[16,5],[-8,4],[4,5],[6,-1],[2,10],[-5,3],[8,2],[5,5],[5,-5],[6,8],[7,2],[-2,8],[6,10],[-4,6],[-7,18],[7,-8],[16,-7],[2,7],[7,1],[-11,20],[13,-15],[3,-6],[8,3],[6,18],[7,3],[15,-6],[1,6],[14,12],[-7,11],[-13,2],[-8,7],[-6,10],[-5,0],[-18,12],[-10,0],[-7,6],[-1,8],[-7,-1],[8,7],[-6,8],[5,2],[8,-11],[6,-1],[9,-7],[18,-19],[20,-7],[-13,-4],[6,-3],[21,4],[6,13],[2,10],[-10,7],[5,8],[13,-14],[10,-2],[4,9],[7,2],[7,14],[1,26],[-1,15],[-13,5],[15,4],[2,5],[-8,1],[8,7],[0,6],[-16,20],[-20,20],[-8,-2],[-13,3],[-7,6],[-12,1],[-20,30],[-6,6],[-14,20],[-6,5],[-14,2],[-6,-2],[-13,3],[-12,5],[-6,-8],[-12,-2],[-21,-1],[-3,3],[-17,-5],[-9,4],[-10,-4],[-10,3],[-11,-3],[-13,4],[-6,-2],[-4,6],[-11,-1],[-12,13],[-8,22],[-4,15],[-19,5],[-16,14],[-17,25],[-4,11],[-8,10],[-5,0],[-16,-10],[-16,-4],[5,4],[9,2],[18,11],[2,4],[-4,15],[-14,24],[-8,16],[-12,12],[-3,8],[-14,7],[-3,-1],[-9,7],[-2,5],[-11,11],[-9,5],[-14,27],[-6,1],[-9,12],[-8,-1],[9,5],[1,5],[-11,8],[-10,12]],[[1978,614],[-9,-3],[1,-8],[5,-3],[8,6],[-5,8]],[[1485,634],[29,-6],[1,-10],[5,-5],[14,-2],[20,6],[21,10],[-2,8],[-8,8],[-7,5],[6,3],[11,-9],[3,6],[10,-11],[17,-7],[0,-6],[-10,-5],[-2,-9],[18,1],[14,11],[10,4],[4,8],[6,2],[8,24],[9,25],[10,5],[3,-6],[10,-5],[0,-5],[-6,-7],[-7,-16],[-1,-10],[-4,-10],[-7,-27],[8,-6],[-3,-8],[26,9],[8,-4],[10,4],[18,11],[8,9],[6,13],[2,12],[12,30],[12,17],[1,13],[-6,14],[1,4],[10,8],[6,9],[10,8],[16,7],[-1,-8],[8,6],[23,15],[7,0],[3,9],[12,-1],[5,7],[2,11],[-3,9],[-6,0],[-8,-9],[-4,8],[-16,-9],[-10,8],[1,8],[-14,-1],[-9,-6],[-3,2],[12,10],[-1,15],[6,-7],[12,-8],[8,0],[5,4],[-3,8],[8,5],[-2,10],[-27,11],[-18,1],[-17,-3],[-7,-4],[-6,3],[-15,-3],[2,-9],[-14,-3],[-17,-1],[-6,-6],[0,-8],[-5,-3],[-6,2],[-8,14],[-11,10],[-12,3],[-15,1],[-15,10],[-15,5],[-41,4],[-16,4],[-41,3],[-6,-3],[-11,-18],[1,-12],[-3,-8],[-17,-5],[-23,1],[-13,-1],[-25,-9],[-16,-21],[-3,-15],[17,-7],[55,-8],[25,2],[30,3],[12,-3],[15,-1],[-13,-9],[-28,-10],[-23,-5],[-24,5],[-32,3],[-10,-3],[-18,2],[-17,-2],[-19,-15],[-3,-5],[13,-9],[17,-4],[25,-8],[14,-2],[-4,-3],[9,-3],[11,1],[-7,-5],[-33,6],[-32,3],[-9,-4],[14,-11],[-18,1],[-13,-3],[-4,-4],[0,-9],[11,-15],[11,-5],[-8,-10],[3,-6],[30,-22],[20,-8],[29,-9],[25,-9],[12,4],[4,17],[-1,9],[-12,15]],[[1742,615],[-4,-1],[-18,-15],[-3,-6],[-16,-9],[-6,-1],[10,-13],[30,-4],[12,2],[13,7],[2,9],[-7,17],[-13,14]],[[2457,573],[5,1],[30,-2],[6,1],[24,9],[5,8],[7,3],[5,8],[8,5],[1,7],[5,4],[-9,4],[-17,-1],[-23,-4],[-13,1],[-23,7],[-10,1],[-13,-8],[-6,-19],[-12,-3],[-6,-6],[0,-21],[12,-2],[8,4],[16,3]],[[2261,725],[8,0],[13,-7],[21,-1],[6,9],[6,-30],[-1,-7],[-18,-3],[-7,-10],[-9,-7],[7,-4],[9,-10],[9,1],[20,10],[-15,-16],[6,-4],[-15,0],[-7,-3],[-6,-10],[-1,-9],[6,-9],[5,-2],[28,9],[-1,-2],[-22,-10],[-10,-6],[12,-13],[17,-7],[17,3],[-4,-6],[14,-7],[21,-6],[20,0],[10,2],[7,6],[5,16],[13,9],[3,14],[9,9],[-27,26],[13,-8],[2,7],[-7,7],[7,6],[-7,3],[0,8],[4,-1],[17,-16],[8,2],[-6,-9],[8,-7],[7,8],[7,-4],[9,6],[0,14],[11,9],[-7,-13],[4,-14],[8,4],[9,0],[10,6],[6,-2],[-21,-9],[-5,-4],[1,-8],[19,-9],[29,2],[17,8],[11,-1],[11,5],[5,6],[2,9],[-16,18],[13,-9],[7,-2],[17,3],[2,7],[-3,5],[-16,7],[-9,1],[14,2],[-4,10],[1,5],[-6,10],[8,-6],[7,-18],[10,-2],[9,-5],[3,3],[-14,18],[14,-11],[15,18],[-4,-11],[11,-11],[29,6],[11,6],[7,7],[0,6],[-11,9],[-9,-1],[-19,15],[9,0],[8,-10],[8,-3],[15,5],[10,-8],[5,6],[-3,12],[-12,10],[-12,4],[-8,6],[5,4],[3,-7],[10,1],[-4,21],[10,-24],[4,-6],[9,-5],[17,-6],[11,4],[8,-2],[22,10],[4,5],[-2,5],[-11,8],[-14,2],[-21,12],[8,2],[8,-7],[16,-3],[4,6],[-7,8],[8,2],[4,-5],[11,-6],[-4,-3],[6,-8],[8,2],[13,14],[5,10],[-1,7],[-16,-2],[-9,1],[-7,6],[-13,2],[-11,3],[5,3],[15,-3],[13,5],[23,0],[15,10],[-3,9],[-15,-2],[-8,1],[-9,-4],[-19,1],[-10,8],[19,-5],[13,6],[2,8],[-3,8],[-13,-3],[-11,2],[-16,-3],[12,6],[15,1],[11,12],[8,-1],[13,5],[9,-1],[3,3],[-8,5],[6,9],[-3,6],[9,-8],[11,-4],[-5,22],[13,-10],[-1,7],[13,-2],[-3,10],[5,5],[0,-10],[12,-8],[3,3],[-5,10],[7,2],[8,-2],[10,11],[4,-2],[5,6],[-7,4],[2,8],[-19,0],[10,4],[14,0],[7,-6],[15,9],[-6,12],[-12,10],[15,-5],[12,-1],[10,3],[7,-9],[3,2],[20,20],[-7,7],[-5,-5],[-10,1],[12,7],[2,7],[-8,4],[-14,-6],[-5,0],[4,6],[-4,5],[15,11],[-17,1],[7,10],[-8,11],[-9,1],[-7,-4],[-6,-10],[0,9],[-7,2],[10,4],[-1,22],[-6,17],[-8,-10],[-8,2],[-5,-6],[2,-13],[-8,17],[-16,-20],[-7,-21],[10,-10],[4,-1],[9,-15],[-3,-1],[-9,12],[-12,5],[-12,0],[0,-8],[-6,0],[-11,-8],[-11,-19],[-13,5],[4,11],[-5,0],[-14,-10],[2,8],[7,10],[10,9],[-4,6],[-14,-2],[-18,-17],[-7,3],[7,2],[8,7],[-2,5],[4,8],[7,3],[-2,12],[9,-5],[4,1],[10,12],[-6,4],[7,6],[8,13],[3,12],[1,-11],[12,9],[2,7],[6,-9],[18,15],[-7,7],[10,0],[3,4],[-4,7],[-11,0],[9,7],[3,9],[14,0],[-4,7],[7,1],[4,11],[-4,1],[2,13],[-1,11],[-5,0],[-6,-19],[-7,-10],[5,25],[-2,6],[11,18],[-7,2],[-7,-3],[4,14],[-3,4],[-17,-18],[-3,2],[-10,-12],[0,7],[-5,-2],[-7,-12],[1,7],[-16,-11],[-14,-19],[-6,-6],[4,14],[-2,3],[-18,-16],[-10,-2],[-2,3],[22,31],[13,4],[-3,5],[11,5],[12,14],[8,4],[9,18],[10,5],[-5,6],[2,11],[-7,3],[-13,-9],[-11,-3],[-7,-5],[-26,-4],[-20,-10],[-12,-20],[-7,-2],[-13,1],[-25,-14],[6,-6],[-9,4],[-10,-8],[-10,-14],[8,0],[7,-5],[-5,-9],[-7,-3],[-12,0],[2,-10],[-7,4],[-5,-11],[-7,-6],[-15,-17],[5,-8],[-10,-3],[-8,2],[-3,9],[-3,-11],[-9,-2],[-5,-11],[-8,2],[6,9],[1,8],[-11,3],[-11,-5],[-7,1],[-1,7],[-10,1],[-17,8],[-19,-3],[-10,-4],[-8,-8],[-4,-9],[4,-19],[5,-5],[15,-7],[-3,-8],[3,-7],[16,2],[26,11],[9,10],[-2,9],[4,3],[0,-14],[-9,-9],[1,-4],[15,2],[6,-6],[13,1],[7,-7],[10,-2],[9,2],[-5,-16],[-8,-6],[-11,-15],[1,-4],[13,-9],[20,-20],[5,-1],[6,-18],[12,-6],[4,-8],[-14,-31],[-9,-17],[-8,-11],[1,-4],[-9,5],[-7,-10],[3,-7],[-2,-7],[-7,0],[4,7],[-6,3],[-7,-3],[-8,-13],[-5,0],[4,-6],[-5,-4],[2,-5],[-10,9],[-7,-3],[-4,4],[-22,12],[-6,-2],[1,-15],[6,-4],[12,0],[8,-6],[-4,-9],[-17,-7],[-2,-11],[-7,3],[-11,-5],[7,-5],[-2,-5],[-18,-1],[-5,-22],[-13,1],[-11,-9],[-9,-12],[-5,0],[-6,6],[0,6],[12,4],[4,15],[-9,7],[-11,2],[-32,-10],[-25,-3],[1,4],[9,3],[8,8],[0,6],[-18,-11],[-21,6],[-22,-10],[-21,2],[-18,-2],[-11,-4],[-15,-2],[-9,4],[-15,-6],[-5,-8],[3,-10],[-9,4],[-13,-1],[3,5],[-17,0],[-6,4],[-14,-12],[-11,-2],[-12,-15],[-6,-18],[21,0],[18,7],[14,-2],[11,-2],[-12,-5],[-5,-5],[-37,-6],[-17,-8],[-4,-4],[-5,-26],[2,-6],[8,-6],[-6,-5],[0,-10],[14,-22],[4,-18],[13,-11],[1,-6],[15,-11],[13,-7],[26,-7],[10,-1],[36,3],[5,5],[-7,7],[-14,8],[-11,12],[-15,22],[-1,8],[10,16],[-1,19],[3,13],[13,15],[21,16],[-11,8],[-15,3],[-18,9]],[[1889,556],[23,12],[10,-1],[33,-8],[10,3],[7,8],[-4,6],[-13,4],[10,6],[-15,8],[-16,14],[0,6],[11,-6],[7,0],[12,7],[-2,3],[8,6],[-2,8],[13,-5],[4,1],[3,12],[-9,10],[4,4],[-4,11],[4,13],[-9,2],[-9,7],[-6,2],[-20,-1],[-4,-11],[-3,4],[7,19],[-6,6],[-11,2],[-10,-3],[-17,-23],[-10,-9],[-13,-14],[-11,-3],[-6,-6],[-14,0],[-7,-10],[-12,-6],[-9,-10],[6,-14],[8,-4],[11,3],[15,18],[22,-3],[3,-12],[5,5],[1,-10],[-11,-6],[6,-6],[11,4],[-11,-9],[-15,5],[-16,-9],[0,-6],[14,-4],[12,9],[-2,-8],[-10,-6],[1,-7],[12,-2],[14,3],[-7,-6],[7,-3]],[[1937,560],[-20,4],[-12,-4],[2,-3],[12,-4],[31,-7],[1,7],[-14,7]],[[2078,544],[19,5],[8,6],[16,-4],[15,1],[21,8],[-6,11],[-12,11],[-7,11],[-9,4],[3,5],[-12,17],[-6,6],[-8,2],[-26,-5],[-25,3],[13,5],[6,8],[0,6],[-9,10],[-5,12],[-32,1],[1,-9],[-2,-19],[-10,-19],[-1,-50],[7,-3],[11,4],[2,-2],[-7,-11],[2,-6],[17,-6],[26,-3],[10,1]],[[1341,546],[7,-5],[9,2],[0,8],[17,-12],[23,-1],[14,5],[13,8],[37,28],[-3,8],[-27,9],[-27,12],[-42,21],[-5,4],[-10,18],[-19,5],[-5,19],[-2,14],[-5,8],[-15,5],[-9,1],[-7,-3],[-12,10],[-21,11],[-8,-2],[-5,-6],[-8,-16],[-9,-10],[-21,-9],[-15,-8],[-15,0],[2,-10],[9,-14],[13,-12],[-2,-3],[3,-13],[10,-3],[0,-5],[-7,-3],[7,-10],[4,-11],[9,-6],[2,-7],[7,-7],[-13,-10],[-12,-23],[34,-5],[23,-2],[25,-4],[12,0],[21,11],[27,7],[-4,6]],[[1962,523],[-11,1],[7,-6],[4,5]],[[2019,524],[-14,-3],[4,-5],[9,3],[1,5]],[[1774,492],[-14,0],[-7,-5],[5,-10],[6,-5],[11,-1],[8,4],[5,11],[-5,5],[-9,1]],[[2068,494],[2,10],[-4,11],[-31,1],[-15,-9],[-16,-2],[-9,-7],[-3,2],[-9,-8],[6,-10],[8,-5],[-2,-2],[14,-10],[16,-5],[18,1],[15,10],[9,11],[1,12]],[[1998,466],[-8,0],[-15,8],[-4,-6],[14,-6],[4,-4],[12,5],[-3,3]],[[1303,452],[-4,-1],[10,-8],[-6,9]],[[2041,452],[-7,-1],[-4,-9],[12,-4],[5,11],[-6,3]],[[1380,462],[-8,4],[-20,-4],[0,-5],[19,-14],[14,-5],[11,-7],[7,2],[-11,16],[-12,13]],[[2470,442],[-1,2],[-12,4],[-4,-4],[19,-15],[4,3],[-6,10]],[[1827,437],[5,5],[-11,2],[-4,5],[-20,2],[7,-9],[-4,-3],[-16,5],[-6,-2],[5,-6],[-12,-2],[-3,-7],[35,-7],[14,2],[3,10],[7,5]],[[1777,404],[8,-1],[4,3],[15,5],[-7,7],[-27,1],[-5,-3],[-4,-13],[14,-4],[2,5]],[[1953,411],[-1,9],[5,7],[-3,12],[1,7],[-7,7],[12,3],[3,15],[-9,-5],[-6,5],[0,9],[6,7],[-4,2],[-8,-5],[2,8],[-16,3],[-18,-1],[-11,2],[-17,-1],[-7,-11],[10,-3],[-17,-6],[1,-3],[12,-3],[19,-11],[11,-4],[-20,2],[-36,5],[-7,-1],[-30,6],[-7,-5],[14,-10],[4,-7],[6,0],[19,8],[-5,-5],[0,-9],[-8,-1],[-4,-5],[8,-7],[-11,-1],[-5,-3],[8,-10],[12,2],[8,5],[7,8],[21,13],[12,0],[-8,-3],[-4,-6],[16,-1],[-24,-5],[11,-3],[-4,-5],[-13,-1],[-7,-4],[14,-10],[20,0],[14,10],[8,0],[-5,-10],[10,-3],[28,13]],[[1855,404],[-11,-1],[18,-8],[19,0],[-26,9]],[[1658,434],[13,0],[3,5],[-5,10],[10,-6],[12,1],[6,12],[0,-7],[6,0],[-5,-7],[5,-6],[8,-2],[14,3],[8,5],[2,10],[-10,32],[-2,3],[-33,13],[-18,-5],[-15,4],[-12,-3],[-2,-4],[-18,10],[-25,4],[-15,10],[-22,8],[-22,5],[-14,1],[-23,-5],[-16,-11],[16,-8],[14,-3],[14,-6],[33,-3],[10,-7],[7,-5],[-4,-2],[-13,6],[-17,1],[-10,-5],[-10,7],[-20,2],[-4,-2],[1,-12],[10,-6],[-12,3],[-5,-4],[-3,12],[-9,-2],[4,5],[-3,5],[-15,7],[-8,-8],[-6,0],[-6,8],[-12,-5],[-9,-7],[-10,2],[-18,-3],[-3,-7],[12,-9],[26,0],[25,-8],[5,-6],[-36,8],[-16,-1],[-4,-3],[5,-6],[31,-5],[10,0],[14,-3],[-37,0],[-9,-2],[1,-9],[5,-4],[11,-3],[35,2],[-30,-6],[8,-9],[16,-4],[20,1],[5,9],[8,7],[18,-3],[12,3],[10,8],[13,7],[-5,6],[15,1],[7,12],[7,4],[16,-1],[41,3],[1,-12],[-23,-8],[-2,-4],[10,-5],[2,-6],[-8,-6],[-14,-4],[-2,-7],[12,-6],[14,-14],[14,-4],[11,5],[-5,9],[3,7],[9,8],[2,5],[-8,7],[3,3]],[[2174,409],[-12,-1],[-8,-8],[-2,-8],[16,-2],[7,5],[-4,6],[3,8]],[[1512,395],[-4,1],[-30,-2],[-1,-2],[11,-5],[15,-1],[10,4],[-1,5]],[[2047,385],[14,0],[16,8],[1,6],[-10,12],[15,-10],[20,0],[20,-3],[12,2],[15,6],[-1,5],[-23,-2],[3,2],[14,2],[43,7],[-3,7],[-25,2],[-27,-5],[0,5],[28,5],[30,17],[-5,7],[-8,5],[9,-1],[12,7],[1,-10],[8,-1],[10,8],[14,-4],[5,5],[8,-7],[12,7],[24,5],[-3,-6],[19,-4],[11,-4],[10,0],[19,-10],[23,4],[15,-4],[11,-1],[28,6],[4,5],[19,1],[6,5],[-5,3],[18,2],[4,8],[-4,7],[-20,8],[9,4],[9,-2],[9,6],[-15,5],[-11,-4],[5,6],[-3,12],[-27,1],[-20,6],[-13,-4],[-6,1],[-12,-6],[-1,-11],[-12,-5],[5,6],[-1,7],[-6,6],[-23,4],[-11,-2],[-6,-4],[-1,5],[-12,-1],[-8,2],[-26,-3],[2,4],[-19,-1],[-7,2],[-25,-2],[-1,-6],[6,-10],[-5,-3],[-10,8],[-2,-6],[-8,3],[1,6],[-10,5],[-13,0],[-15,-3],[-11,-6],[2,-6],[-8,6],[0,4],[-11,-1],[-9,-5],[-8,-19],[3,-4],[-8,-5],[-2,-10],[10,-15],[-3,-10],[-20,-22],[-5,-9],[-6,0],[-10,6],[-30,-1],[-15,1],[-5,-6],[-11,-2],[-3,-9],[-19,-9],[-7,0],[14,-4],[-11,-5],[1,-5],[19,-5],[12,-1],[37,9]],[[1457,359],[-2,6],[-17,5],[-2,3],[14,10],[-13,3],[9,9],[-8,8],[-21,3],[-3,13],[-11,3],[-10,-4],[-5,-7],[7,-18],[-3,-2],[-12,4],[-4,11],[-10,4],[5,8],[-13,13],[-4,-2],[-8,-11],[-6,13],[6,8],[-10,7],[-14,2],[-4,-11],[-6,-9],[-4,0],[-3,9],[-11,2],[-14,-3],[-13,5],[-7,-4],[1,-9],[-8,0],[10,-12],[5,-1],[22,-4],[15,-13],[15,-6],[3,-5],[29,-21],[14,-5],[22,-3],[17,4],[7,-3],[9,2],[4,-3],[-10,-5],[6,-3],[13,-1],[23,10]],[[2171,365],[-11,3],[-21,-7],[-5,-5],[1,-11],[8,-3],[19,3],[12,10],[-3,10]],[[1762,372],[-18,-2],[-10,-10],[-5,-10],[-9,-12],[14,0],[30,24],[-2,10]],[[2014,335],[7,2],[16,-2],[33,1],[10,6],[-6,2],[-5,9],[-69,-1],[-8,-7],[3,-6],[19,-4]],[[1842,340],[-4,1],[-18,-5],[1,-7],[14,-1],[20,4],[6,6],[-19,2]],[[1505,337],[-13,2],[-9,-3],[-12,-12],[20,-6],[0,3],[17,8],[-3,8]],[[1598,317],[22,1],[-3,7],[-30,7],[4,3],[14,0],[3,9],[-3,6],[-20,6],[-8,-1],[-20,5],[-12,-1],[-22,-9],[1,-5],[-4,-10],[2,-7],[25,-6],[30,-5],[21,0]],[[1805,314],[-7,1],[4,-7],[9,2],[-6,4]],[[1615,285],[10,4],[4,5],[-1,9],[-30,3],[-8,-1],[-12,-5],[-10,7],[-16,-6],[-24,5],[-7,-1],[2,-6],[25,-8],[20,-3],[4,-3],[15,-5],[13,-1],[15,6]],[[1994,292],[18,1],[15,5],[4,5],[-13,7],[7,2],[4,6],[-4,5],[-16,4],[-22,3],[-15,4],[-3,-8],[-9,-2],[-6,-7],[11,0],[9,-3],[-25,-5],[-12,-11],[-2,-5],[8,-3],[-8,-7],[3,-7],[23,1],[26,7],[7,8]],[[1794,247],[14,5],[7,7],[-2,8],[4,5],[5,-8],[19,-4],[19,8],[-3,8],[20,-1],[23,14],[-7,8],[2,8],[6,1],[14,12],[-2,12],[-23,4],[-18,-5],[-7,-12],[-6,-6],[-6,0],[-21,-5],[-17,2],[-2,-7],[-26,3],[-8,4],[-16,-2],[-13,-10],[7,-7],[27,4],[8,-5],[-15,-2],[13,-3],[1,-5],[-19,0],[9,-7],[-7,-5],[-7,1],[-10,8],[-6,0],[6,-10],[-4,-3],[-18,1],[-1,-8],[5,-9],[15,1],[31,-2],[9,2]],[[1922,208],[1,8],[-3,7],[-12,-4],[-6,-5],[-17,-2],[2,-10],[7,-3],[21,1],[7,8]],[[2114,142],[4,5],[19,16],[10,5],[2,4],[21,7],[10,-3],[11,5],[-3,10],[10,7],[19,2],[-6,-6],[-6,-1],[2,-10],[16,0],[8,3],[2,9],[-9,7],[20,3],[6,8],[-4,14],[-4,5],[12,-1],[6,-3],[13,2],[6,7],[7,-8],[18,20],[-7,4],[-22,6],[-17,7],[-7,0],[-3,7],[-15,11],[-7,-2],[-3,-12],[4,-8],[-10,7],[-1,16],[7,3],[-2,6],[-7,0],[-8,-6],[-5,1],[4,7],[-3,13],[-7,3],[-19,-15],[-9,-9],[-3,3],[13,15],[4,7],[-18,-9],[-15,1],[9,5],[-8,4],[-22,-2],[-26,-7],[-14,-9],[28,-5],[-2,-1],[-41,-4],[-6,-8],[13,0],[-21,-6],[-7,-7],[24,-8],[13,-1],[8,-7],[19,-2],[14,-4],[-25,0],[-11,-5],[-11,2],[-25,8],[-5,-1],[4,-5],[-12,0],[-19,6],[-18,-7],[2,-6],[32,-8],[3,-4],[-16,3],[-21,1],[-20,-11],[-9,-16],[27,4],[32,1],[2,-9],[-24,4],[-5,-6],[-11,1],[-10,-7],[8,-3],[15,1],[-17,-11],[0,-7],[13,-2],[19,4],[4,4],[26,1],[-18,-5],[-6,-6],[-20,-5],[7,-9],[8,-3],[13,1],[19,-4],[14,1],[-2,-7],[-20,-1],[-2,-7],[24,-1],[25,5],[15,8]],[[2736,34],[23,1],[7,-1],[9,3],[42,1],[4,2],[-11,5],[-42,8],[-4,1],[20,0],[57,-10],[12,2],[10,-6],[14,7],[12,-3],[14,2],[-3,6],[14,8],[-4,6],[21,-4],[28,3],[7,7],[-11,10],[-16,8],[-62,17],[-22,0],[-14,6],[-25,1],[-8,7],[-51,12],[12,2],[71,-14],[27,0],[-3,3],[-17,9],[-23,8],[-11,6],[-53,21],[-21,15],[-16,3],[-20,-8],[13,13],[-1,3],[-50,6],[12,3],[20,-3],[9,2],[-5,5],[-17,5],[6,3],[-4,4],[-19,5],[-13,0],[-28,-7],[-19,-3],[-14,3],[16,2],[17,2],[7,10],[-4,5],[-14,0],[-15,2],[-24,3],[-14,-1],[-17,-4],[-15,-1],[17,6],[5,5],[14,5],[14,2],[17,-1],[-1,10],[-19,1],[-19,-5],[-42,4],[-23,-2],[-9,1],[15,6],[42,-3],[16,3],[4,4],[19,2],[19,8],[-3,6],[-10,4],[-41,2],[25,6],[8,5],[-10,6],[-9,12],[-14,1],[-17,4],[-29,-1],[-2,5],[1,19],[-12,9],[-10,2],[-29,2],[-19,-1],[-22,-10],[-8,-1],[10,9],[-21,3],[6,5],[16,-3],[13,0],[16,7],[8,-4],[17,3],[3,12],[12,4],[14,-6],[8,8],[0,5],[-8,11],[-24,9],[-10,6],[-33,8],[-8,-1],[4,-13],[-9,-6],[-12,2],[-6,-2],[-6,-7],[-14,-5],[9,12],[-1,3],[-46,0],[-9,-12],[-2,17],[-24,4],[-15,-2],[-12,-5],[-8,-9],[-7,12],[-19,-5],[-4,-7],[0,11],[-25,-1],[-3,-21],[-3,7],[2,13],[-7,-2],[-22,-2],[2,-19],[21,-9],[10,-8],[22,0],[21,-3],[-7,-8],[-9,-2],[-10,-8],[-9,-13],[3,-4],[14,-5],[21,0],[16,7],[16,17],[18,5],[27,-1],[10,-3],[20,-17],[8,-15],[-23,21],[-10,5],[-11,1],[-8,-2],[-11,3],[-12,-3],[0,-12],[-7,-9],[26,-16],[-8,-2],[3,-17],[-6,13],[-16,11],[-17,2],[8,-15],[-14,8],[-14,4],[-12,0],[-6,-3],[2,-13],[15,-15],[4,-6],[16,-3],[15,-1],[19,-4],[6,2],[25,2],[17,4],[8,-4],[20,0],[14,-6],[-3,-2],[-21,4],[-12,-2],[-20,0],[-15,-2],[-7,-5],[9,-3],[19,4],[-22,-14],[-20,-18],[-10,-6],[-20,-2],[-7,-6],[-6,-16],[9,-11],[32,2],[13,0],[27,3],[29,14],[17,11],[10,5],[18,6],[16,0],[10,-4],[-25,-2],[-10,-5],[-13,-9],[-14,-6],[-18,-15],[13,-3],[43,-5],[26,-4],[11,-7],[35,-8],[43,-5],[-15,-2],[-17,0],[-20,-2],[2,-6],[10,-7],[21,-9],[14,-3],[4,-3],[-30,6],[-27,12],[-11,2],[-6,10],[-6,4],[-35,11],[-15,1],[-23,4],[-14,-1],[18,-11],[-32,3],[-19,9],[-10,2],[-24,0],[-12,-3],[-14,1],[-11,-4],[5,-6],[33,-15],[16,-3],[37,-3],[2,-3],[-38,3],[-37,5],[-30,17],[-18,4],[-14,-3],[-23,-7],[-3,-7],[21,-3],[41,0],[31,-7],[20,-7],[4,-3],[-13,0],[-34,10],[-18,2],[-45,1],[-20,2],[-10,-5],[1,-3],[20,-5],[-12,-4],[6,-4],[15,-6],[36,-2],[-24,-2],[-14,2],[-37,8],[-7,-4],[20,-8],[0,-2],[-28,0],[-12,4],[-11,-4],[1,-4],[12,-5],[20,-5],[24,-1],[21,-8],[22,-3],[12,0],[17,8],[11,-6],[30,6],[11,-5],[-40,-9],[22,-6],[25,-9],[15,5],[21,2],[23,14],[13,0],[-10,-4],[4,-5],[55,14],[11,1],[20,8],[-6,-6],[-13,-5],[-38,-9],[-21,-8],[-6,-4],[5,-4],[17,-3],[-13,-6],[15,-2],[11,4],[11,0],[-10,-7],[4,-4],[26,4],[29,2],[7,-1],[-24,-5],[-14,-6],[7,-3],[20,0],[18,3],[16,-1],[13,1],[30,12],[11,7],[12,-3],[-23,-12],[-14,-6],[-6,-5],[38,-2],[37,2],[32,13],[17,4],[-22,-11],[1,-4],[17,-6],[20,-2],[26,11],[-8,-6],[15,-4],[29,-1],[10,6]],[[4931,2092],[-2,10],[3,3]],[[4957,2116],[-2,7],[1,11],[-10,-3],[-1,7],[3,14],[-7,-8],[-9,5],[-4,-11],[-5,0],[-1,15],[-6,12],[1,10],[-7,-9],[1,-5],[-10,-9],[-2,-12],[-8,10],[1,6],[-9,14],[-7,-3],[-12,6],[-3,-3]],[[4861,2170],[-7,-14],[0,-14],[-5,-2],[-10,7],[-1,8],[-6,2],[4,-7],[-1,-9],[2,-11],[7,-8],[1,-10],[6,-5],[10,-18],[-3,-4],[4,-5],[6,4],[10,-10]],[[4878,2074],[8,2],[18,-4],[-4,-4],[4,-5],[9,7],[8,-1],[10,9]],[[2789,8033],[0,0]],[[2797,8028],[-7,-4],[4,-7],[3,11]],[[2820,7996],[0,0]],[[2803,7992],[-7,7],[-4,-6],[-8,5],[-8,-2],[-7,-14],[12,-4],[16,4],[6,10]],[[2730,7978],[22,5],[12,-2],[-3,12],[6,0],[1,9],[8,11],[-1,8],[-6,-8],[-8,-5],[-8,0],[0,-10],[-12,-5],[-1,6],[4,10],[-7,-1],[-6,-12],[-4,1],[-5,-6],[2,-15],[6,2]],[[2694,7974],[6,7],[10,-3],[4,9],[-4,6],[-6,-5],[-8,-1],[-7,-10],[5,-3]],[[2683,7927],[11,5],[-4,15],[-9,-9],[-5,0],[-8,5],[-7,-15],[6,-10],[8,3],[8,6]],[[2641,7896],[1,5],[12,1],[7,11],[-6,13],[-13,7],[-2,-2],[5,-13],[-7,-2],[-3,10],[-5,-4],[0,-13],[-15,-11],[5,-6],[16,5],[1,-6],[4,5]],[[2600,7862],[9,4],[17,10],[9,11],[-12,-1],[-8,-14],[-12,0],[-8,-10],[-4,-10],[9,10]],[[2759,7974],[-12,4],[-11,-4],[-6,-8],[-13,7],[-3,-5],[-6,4],[-20,-8],[-6,-3],[-12,1],[-2,-6],[4,-7],[5,4],[7,-5],[11,1],[5,-6],[2,10],[12,0],[-7,-10],[-6,-5],[-4,-6],[0,-14],[7,-4],[3,-11],[3,21],[-6,2],[3,7],[8,8],[2,6],[9,0],[3,-4],[8,5],[6,10],[5,-10],[-26,-16],[-5,-14],[2,-10],[20,-11],[0,-9],[-15,-1],[-5,5],[-6,-3],[-4,-13],[1,-8],[7,-6],[-7,-9],[7,-1],[5,5],[7,-5],[8,-15],[7,11],[12,-6],[4,5]],[[2607,7806],[-8,-5],[-1,-8],[10,10],[-1,3]],[[2588,7788],[1,11],[7,10],[-4,17],[-5,0],[-7,-29],[8,-9]],[[2595,7768],[-1,6],[-7,3],[-5,-1],[-7,12],[4,-20],[3,3],[8,-7],[5,4]],[[2575,7733],[-1,6],[-4,-7],[1,-10],[9,1],[-5,10]],[[2582,7712],[-6,5],[-5,-3],[3,-18],[13,5],[1,5],[-6,6]],[[2580,7627],[0,5],[-11,19],[-4,-3],[5,-6],[-5,-9],[2,-5],[13,-5],[0,4]],[[2598,7646],[-2,26],[2,10],[-3,12],[-5,2],[-4,-19],[4,-15],[-6,5],[-2,19],[-14,-4],[1,-10],[5,1],[1,-7],[-5,-9],[4,-5],[7,0],[-4,-6],[8,-15],[-1,-7],[5,-5],[7,4],[2,23]],[[2569,7623],[-3,0],[-1,-10],[4,-15],[-2,-14],[5,-3],[7,22],[0,13],[-10,7]],[[2595,7613],[-10,3],[-6,-20],[-3,-15],[12,-10],[-1,10],[4,6],[3,12],[1,14]],[[2580,7571],[-4,-5],[7,-4],[2,4],[-5,5]],[[2602,7447],[-10,2],[5,-17],[0,-9],[5,-6],[0,30]],[[2582,7401],[0,0]],[[2621,7397],[-5,-9],[4,-7],[1,16]],[[2639,7393],[-7,5],[-6,-12],[5,-9],[2,-9],[10,8],[2,5],[-6,12]],[[2618,7372],[-7,5],[5,20],[3,19],[-4,11],[-7,-1],[-7,-24],[-7,-15],[3,-10],[5,-5],[6,0],[1,-13],[5,-2],[5,7],[-1,8]],[[2616,7339],[-4,5],[-5,-6],[9,1]],[[2592,7327],[0,0]],[[2617,7312],[-9,0],[-7,-5],[6,-40],[-2,-5],[1,-15],[3,-8],[1,-17],[14,5],[2,16],[-2,14],[2,4],[-9,6],[10,20],[-3,9],[-6,5],[-1,11]],[[2477,6752],[0,0]],[[1631,6377],[0,0]],[[2764,7831],[-21,-9],[-6,4],[-4,11],[-23,10],[-10,7],[-4,27],[0,20],[-2,12],[-8,5],[-11,-5],[-11,-7],[-8,-12],[2,-12],[10,-1],[4,15],[2,-15],[12,-12],[4,-11],[-7,-5],[-14,14],[-10,7],[-6,10],[-2,9],[-5,-1],[-9,-10],[4,-8],[2,-17],[5,-5],[6,5],[9,-10],[9,2],[8,-5],[-8,-3],[-12,-2],[-6,7],[-7,-5],[-12,31],[-6,-1],[-8,-14],[11,-6],[5,-10],[-3,-4],[-2,9],[-10,3],[-12,-2],[0,-15],[-3,0],[-4,-16],[12,7],[5,-9],[4,4],[11,-1],[9,-10],[7,15],[-2,-10],[4,-15],[-8,-11],[-10,-9],[-2,2],[11,8],[6,11],[-9,4],[-13,11],[-4,-1],[-3,-10],[-16,-10],[4,-6],[4,1],[0,-20],[-11,-4],[-14,-7],[-8,-23],[13,-2],[-4,-9],[4,-6],[8,6],[6,20],[8,6],[3,-14],[4,-3],[-4,-5],[-4,13],[-3,3],[-6,-13],[1,-7],[-13,-16],[9,-13],[8,3],[-8,-14],[1,-10],[5,-4],[7,4],[-7,-10],[2,-20],[-5,24],[-4,-4],[-1,-36],[1,-13],[5,-9],[-8,3],[-4,-19],[1,-9],[20,3],[9,9],[4,-2],[-7,-12],[-2,-18],[-7,17],[-11,1],[-2,-10],[-6,-5],[3,-8],[6,7],[5,-4],[-10,-10],[9,-15],[1,-11],[-5,-12],[-5,0],[1,7],[-15,-9],[1,-14],[-14,9],[2,11],[-3,5],[-6,-14],[18,-27],[4,-4],[-4,-9],[0,-7],[17,-1],[11,-10],[-2,-10],[5,-7],[4,3],[-4,22],[-3,8],[0,10],[-8,6],[11,-5],[2,-17],[4,-3],[1,15],[-3,18],[-4,11],[7,-9],[2,-15],[1,-21],[-4,-5],[0,-13],[5,0],[10,-7],[7,4],[-8,-9],[-6,-1],[3,-15],[7,-4],[10,-10],[2,-18],[-17,-16],[1,-15],[5,-1],[2,-15],[-3,-10],[6,-23],[3,-1],[-2,-21],[2,-10],[4,1],[-4,-11],[4,-6],[6,11],[-2,-25],[-7,1],[-2,-5],[4,-10],[8,-5],[-8,1],[-4,-7],[-6,0],[-4,12],[-10,3],[-6,-4],[3,-6],[-5,-5],[-5,-33],[6,-28],[3,-29],[7,-10],[5,-21],[0,-13],[-7,-34],[-1,-15],[2,-18],[-6,-19],[2,-14],[-2,-7],[2,-9],[11,-1],[2,-29],[3,-1],[4,-15],[3,-24],[5,-12],[-1,-10],[11,-28],[5,-29],[2,-18],[-1,-8],[4,-20],[6,-9],[-2,-32],[3,-8],[5,-17],[0,-15],[-2,-11],[0,-24],[-4,-36],[-2,-32],[2,-17],[7,-10],[1,-13],[0,-27],[-3,-15],[-1,-20],[6,-10],[3,-16],[1,-19],[3,-20],[4,-13],[0,-17],[7,-50],[0,-20],[-2,-11],[2,-14],[6,-21],[-4,-24],[2,-36],[0,-20],[2,-8],[-6,-22],[2,-13],[3,-1],[4,-10],[2,-18],[5,-61],[0,-14],[-4,-30],[1,-28],[0,-30],[-3,-25],[-1,-39],[-3,-15]],[[2710,5871],[7,0],[7,-8],[3,-12],[-1,-16],[5,-4],[5,-9]],[[7746,3664],[4,19],[-7,6],[-6,22],[-2,21],[-7,9],[-5,12],[-7,3],[-3,7],[-5,3],[-23,-18],[-1,-45],[11,-18],[4,-3],[3,-13],[6,0],[4,-5],[12,0],[8,-4],[6,5],[2,-11],[6,10]],[[7732,3599],[3,8],[-6,-1],[3,-7]],[[7795,3569],[0,0]],[[7799,3571],[-3,-7],[5,-2],[-2,9]],[[7820,3502],[0,0]],[[7949,3404],[0,0]],[[7994,3349],[-3,1],[0,-12],[4,2],[-1,9]],[[8034,3197],[0,0]],[[8060,3106],[0,0]],[[8066,3093],[0,0]],[[8063,3089],[-8,-3],[-1,-7],[9,6],[0,4]],[[8050,3001],[-1,2],[-13,-10],[-3,-10],[7,3],[3,7],[7,8]],[[8292,2365],[-7,-8],[-1,-12],[-5,-5],[-6,0],[-4,30],[-5,4],[-5,-3],[-4,12],[-8,11],[-21,1],[-4,7],[7,19],[-3,10],[-7,-4],[-6,1],[-16,-6],[-3,-11],[-8,1],[-4,7],[-2,12],[-14,28],[-9,2],[-7,12],[-15,12],[-14,20],[-1,6]],[[8120,2511],[-7,9],[-10,1],[-20,9],[-20,18],[-5,12],[-12,15],[-14,9],[-2,-11],[16,-10],[-2,-7],[6,-9],[-15,0],[-1,-10],[7,-5],[0,-12],[8,-6],[11,-23],[2,-11],[-3,-8],[-9,-9],[-1,-8],[-2,8],[-15,-4],[-11,18],[-8,21],[-25,19],[-8,14],[-2,14],[-5,11],[-12,3],[-9,6],[-8,-9],[-6,5],[-5,16],[-3,13],[7,19],[6,7],[16,5],[7,-2],[4,5],[4,20],[-4,3],[0,18],[9,11],[14,-1],[3,-11],[8,-8],[5,-12],[11,-8],[13,13],[12,9],[9,0],[2,-4],[7,7],[8,-2],[0,15],[-4,6],[2,7],[-6,7],[-4,-8],[-6,0],[-7,7],[-19,14],[-5,-2],[1,11],[-5,6],[0,10],[-8,7],[-2,-10],[-6,4],[5,10],[-8,14],[-8,8],[-10,28],[-4,6],[0,15],[4,0],[12,14],[14,13],[6,37],[10,35],[0,21],[14,17],[0,9],[11,11],[2,18],[-4,0],[-9,-9],[-11,0],[-5,-10],[-7,-4],[-14,10],[5,0],[8,-5],[6,2],[2,8],[8,7],[8,13],[8,10],[4,9],[1,14],[-8,5],[-15,16],[-5,11],[-10,-1],[-6,6],[7,-1],[4,10],[6,-2],[8,-8],[8,4],[7,14],[11,7],[-5,5],[-11,17],[12,-7],[1,7],[-2,20],[-5,-7],[-8,7],[6,7],[-1,14],[-4,7],[4,15],[-9,10],[-2,-8],[-7,18],[-6,2],[2,7],[-4,8],[-1,15],[-14,35],[-1,12],[-5,5],[-3,-9],[-6,-3],[1,10],[3,1],[4,15],[-13,16],[-8,-4],[6,10],[8,-3],[0,11],[-3,12],[2,14],[-9,-6],[-4,2],[4,12],[-7,0],[-3,6],[0,11],[-8,7],[3,4],[-2,7],[-10,3],[-6,-3],[-3,8],[-4,1],[4,5],[1,8],[-5,13],[-3,0],[-3,10],[-4,0],[-3,15],[-2,-8],[-4,7],[-7,-3],[-1,11],[-5,13],[-4,2],[-2,15],[-7,0],[-10,8],[-7,-3],[-3,8],[-8,-6],[-10,11],[-4,-8],[-4,5],[0,9],[-8,-1]],[[7840,3517],[-7,2]],[[7833,3519],[-10,-17],[-1,-19],[-5,4],[-3,11],[6,16],[1,17],[-2,3]],[[7819,3534],[-1,3]],[[7818,3537],[-9,7],[-2,-8],[-3,16],[-5,-1],[-6,10],[-6,-12],[1,10],[-4,4],[-6,-6],[-10,14],[-11,7],[-7,-2],[-23,27],[-1,11],[6,0],[-2,10],[6,9],[-2,10],[-9,5],[-5,-2],[1,-7],[-5,-12],[-4,-18],[3,-23],[5,-8],[-7,-4],[-5,-8],[1,8],[-13,5],[1,-7],[-10,-3],[-8,-15],[2,13],[-5,-3],[-3,9],[-8,3]],[[7665,3576],[-5,-8],[-12,3],[-8,-12],[-4,-7],[-7,-3],[0,-15],[-4,-10],[7,-21],[-7,-7],[-7,3],[-4,-7],[-8,2],[-9,-8],[-7,-15],[-10,10],[-3,15],[-3,5],[-11,6],[-2,-6],[-5,3],[-4,13],[-9,-14],[-3,11],[-5,-10],[-8,18],[-5,-8],[-10,-10],[-9,22]],[[7503,3526],[-8,0],[-3,-7],[-6,14],[2,16],[4,9],[0,29],[-2,10],[-3,-5],[-8,2],[-4,-21]],[[7475,3573],[0,-10],[-8,5],[-4,9],[-15,1],[-1,-9],[-5,-7],[0,-13],[-3,-5],[-17,-2],[-1,-5],[4,-18],[0,-11],[5,-15],[-2,-7],[-11,-3],[-5,-4],[1,-10],[-6,-31],[3,-10],[-16,-2],[-15,13],[-3,-6],[4,-8],[-1,-14],[-4,-6],[2,-17],[4,-5],[-1,-10],[3,-13],[7,-5],[2,-13],[4,-2],[5,-10],[5,-2],[-2,-18],[3,0],[2,-33],[-3,-50],[-5,-5],[-5,6],[-5,-34],[-11,-19],[-5,-2],[-6,17]],[[7369,3190],[-7,-10],[-8,0],[-5,-5],[-6,5],[-3,-2],[9,-20],[-4,-16],[-8,8],[-1,-10],[6,-7],[-8,-14],[-15,14],[-3,10],[-11,-7],[-7,-1],[-4,-8],[-12,14],[-6,12],[-8,10],[-12,3],[-3,13],[-12,15],[-1,11],[-7,8],[-5,-1],[-7,6],[-11,-3]],[[7135,3242],[-5,-12],[4,-20],[-1,-8],[-7,-5],[-4,5],[-9,3],[0,5]],[[7113,3210],[-6,-1],[-5,4],[-15,-1],[-13,-15],[-4,1],[-4,9],[-7,-12],[-4,13],[-9,-23],[-8,2],[-8,-3],[2,-15],[-9,2],[-5,-4],[-12,-17],[-4,-18],[-4,-3],[-10,5],[-12,-24],[-9,-5],[-5,-8],[-14,-16],[-3,-13],[-11,-3],[-6,3],[-5,14],[-4,3],[-3,-7]],[[6916,3078],[-9,-15],[-12,-8],[-1,-11],[-5,-3]],[[6889,3041],[-3,-5]],[[6886,3036],[0,0]],[[6886,3036],[-3,-5],[-7,2],[-5,-8]],[[6871,3025],[-1,-1]],[[6870,3024],[-8,-18],[-7,7],[-2,-12],[2,-7],[-3,-8],[1,-7]],[[6853,2979],[-7,-19],[-2,-20],[8,-2],[6,13],[9,-8]],[[6867,2943],[-1,-3]],[[6866,2940],[0,-22],[-4,-5],[1,-8]],[[6863,2905],[0,-4]],[[6863,2901],[-8,-15],[-2,-32],[7,-10],[0,-5],[-10,-12],[-10,-8],[-7,-34],[1,-13],[-7,-1]],[[6827,2771],[0,0]],[[6827,2771],[-10,1],[-19,-11]],[[6798,2761],[-5,-6],[-1,-7],[-10,5],[-3,-10],[-5,-6],[2,-5],[0,-17],[-3,-11],[-5,-5],[-7,0],[-2,-10],[-8,-4],[-5,2],[-9,-4]],[[6746,2671],[7,-9],[-7,-13],[2,-9],[-6,-29],[3,-8],[-3,-6],[-13,-9],[-4,0],[-4,8],[-5,-5],[-3,-16],[3,-3],[-5,-16],[0,-13]],[[6711,2543],[8,-7],[-3,-11],[5,-16],[12,-6],[7,-10],[5,-1],[-2,-7],[13,-1],[8,-9],[4,19],[6,0],[9,-8],[3,5],[6,-9],[8,-27],[5,-4],[16,3],[15,-5],[7,-17],[10,-11],[16,-12],[13,-7],[2,-6],[11,-2],[-1,-9]],[[6894,2385],[1,-5],[-2,-22],[2,-8],[7,-4],[-3,-10],[11,-7],[-3,-8],[1,-7],[-6,-27],[-4,-12],[0,-26],[3,-11],[-6,-4],[-7,1],[-3,-5],[4,-7],[13,-6],[14,-3],[19,-11],[7,11],[11,-3],[5,5],[3,-17],[-9,-8],[4,-14],[3,-20],[13,-51],[0,-9],[5,0],[12,9],[11,4],[5,-2],[13,2],[3,8],[13,-12],[7,-2],[5,-15],[-3,-9],[-1,-25],[2,-17],[4,-10],[22,-8],[5,-10],[0,-14],[6,-9],[11,1]],[[7092,1988],[13,-4]],[[7105,1984],[2,9],[-4,7],[9,10],[-3,7],[16,11],[1,10],[17,14],[11,-2],[7,11],[4,-4],[5,11],[5,1],[4,20],[7,19],[4,3],[5,24],[-4,12],[3,17],[-6,10],[-5,19],[7,15],[19,11],[13,0],[11,4],[10,-2],[20,5],[13,16],[7,2],[4,7],[10,10],[9,5],[9,-1],[-1,14],[7,10],[8,38],[12,16],[2,12],[23,-4],[48,10],[15,2],[14,-6],[15,4],[31,6],[10,17],[4,3],[26,9],[18,14],[22,-7],[0,13],[14,2],[5,-7],[19,-15],[25,-17],[39,-9],[14,2],[18,-1],[30,-20],[16,-32],[15,-9],[11,-13],[-1,-9],[-8,-13],[-6,-15],[4,-12],[2,-15],[8,-13],[14,0],[6,8],[12,6],[15,4],[14,-13],[9,-13],[6,-13],[14,2],[15,-4],[10,-13],[5,-3],[1,-13],[8,-19],[9,-6],[13,2],[2,-12],[8,3],[6,-6],[11,-6],[12,2],[3,-4],[9,7],[15,2],[5,-4],[0,-11],[-5,-17],[-15,-21],[-2,-8],[-9,-6],[-9,-13],[-8,-2],[-11,2],[-11,20],[-13,-12],[-18,0],[-10,10],[-9,-11],[-1,-15],[7,-7],[1,-19],[4,-6],[12,-42],[8,-24]],[[7907,1945],[9,8],[24,10],[16,-19],[9,-8],[11,-1],[5,-16],[-5,-8],[7,-16],[4,-14],[14,-38],[17,-21],[2,-14],[-3,-11],[0,-10],[-16,-3],[-1,-5],[19,-26],[8,-7],[10,-2],[20,-8],[24,-2],[9,-4],[9,1],[17,10],[7,8],[10,5],[4,-3],[6,2],[14,9],[11,17],[-2,5],[9,13],[5,27],[3,9],[1,10],[10,35],[9,21],[0,16],[7,8],[-3,13],[6,18],[8,6],[7,1],[13,-3],[3,8],[9,5],[10,-1],[19,29],[10,2],[2,5],[-2,10],[6,10],[1,10],[-2,13],[4,6],[3,12],[14,-1],[2,3],[23,-3],[3,1],[6,-13],[12,-11],[9,2],[11,-10],[12,-7],[11,8],[-3,16],[5,15],[-4,11],[-9,6],[-3,7],[1,10],[-4,8],[-1,16],[-5,12],[1,11],[-10,25],[-3,15],[-7,7],[-2,21],[-4,6],[-29,-14],[-2,-4],[-11,20],[-13,8],[8,45],[-2,32],[2,8],[-5,27],[-14,5],[-4,5],[3,11]],[[4580,4520],[0,2]],[[4580,4522],[0,-2]],[[4591,4269],[1,15],[-2,10],[3,5],[4,43],[-3,10],[-6,8],[-4,26],[-1,17],[-7,20],[1,27],[7,40],[5,3],[0,24],[-7,3]],[[4582,4520],[-6,-12],[-3,12],[-21,-11],[-12,2],[-2,3],[15,-2],[1,2],[-26,5],[-1,-4],[-8,0],[-2,4],[9,1],[-14,2],[-10,5],[-26,19],[-19,19]],[[4457,4565],[-2,-28],[1,-14],[4,-15],[1,-13],[-2,-16],[-8,-5],[-4,-18],[-9,-3],[-6,-10],[-5,-3],[8,-17],[1,-15],[-4,-26],[-2,-2]],[[4430,4380],[8,0],[3,-12],[-1,-6],[4,-16],[-7,-6],[0,-12],[12,-1],[4,4],[-3,-18],[-5,-4],[1,-11],[4,-6],[-4,-6],[1,-13],[-7,-5],[0,-30],[4,-8]],[[4444,4230],[5,-4],[4,-11],[5,-1],[4,10],[9,7],[2,-12],[7,0],[1,-18],[7,6],[0,-7],[5,-2],[1,23],[5,7],[3,-9],[6,-5],[5,1]],[[5116,4684],[-3,10],[1,22],[-14,-13],[-20,-4],[-9,-10],[-2,2],[-34,0]],[[5035,4691],[-2,-6],[-9,1],[-14,-3],[-12,1],[-17,-1],[0,7]],[[4981,4690],[-38,0],[-5,-8]],[[4938,4682],[3,-35],[2,-9],[-2,-13],[-6,-14],[-3,-15],[5,-4],[-7,-11],[-4,8],[-10,-9],[-3,-20],[1,-7],[-7,-7],[1,7],[-4,1],[0,-13]],[[4904,4541],[7,-25],[3,-34],[4,-13],[14,-27],[3,-3],[3,-13],[10,-14],[4,7],[5,-1],[4,-10],[12,21],[2,14],[6,-1],[6,-13],[0,-9],[7,-11],[-1,-13],[7,-18],[0,-8],[4,-12],[2,-20],[5,-18],[9,-9],[5,-39],[7,-6],[2,-25],[5,-12],[3,-25],[10,-30],[9,-8],[10,-13],[1,-38],[-5,-11],[-6,-2],[-4,-40]],[[5057,4062],[11,3],[2,12],[9,18],[1,13],[5,25],[1,17],[-2,10],[1,30],[5,29],[11,20],[-9,3],[-4,-2],[-10,3],[-16,-3],[-8,17],[10,28],[11,20],[4,3],[7,14],[4,14],[5,27],[3,4],[-2,15]],[[5427,4521],[8,15],[3,12],[10,17],[8,1],[8,-10],[14,6],[9,-14],[6,9],[12,29],[9,8],[1,11],[4,0],[4,9]],[[5523,4614],[2,5],[-5,21],[3,6],[-3,28],[12,10],[3,8],[-3,12],[-19,40],[-5,3],[-3,12],[-7,9],[0,18],[-6,24],[-4,31],[1,5],[-2,25],[1,24]],[[5488,4895],[-7,8],[-6,19],[0,22],[-7,9],[1,14],[3,5]],[[5483,5071],[-2,31],[7,43],[-3,14],[2,20],[4,17],[13,21],[6,21],[10,49]],[[5520,5287],[-35,11],[-16,6],[1,6],[-5,20],[-10,19],[6,24],[0,41],[1,16],[-3,7],[-5,40],[3,19],[11,17],[5,13],[11,4],[3,-12],[7,-3],[0,71],[-5,1],[-2,-10],[-10,9],[-7,-5],[0,-5],[-8,-21],[-3,0],[-5,-21],[-14,-11],[-9,-5],[-3,-15],[-6,-9],[-1,-12],[-4,2],[-2,17],[-7,4],[-17,-4],[-22,-16],[-1,-13],[0,-11],[-17,8],[-5,6],[-5,-5],[3,-7],[-3,-10],[-4,-3],[-5,-9]],[[5029,5153],[-6,-1],[-5,7],[-7,1],[-6,-13]],[[5029,5082],[10,12],[7,-7],[1,-15],[6,1],[12,-10],[3,8],[-3,8],[1,14],[7,4],[4,-3],[13,-31],[4,-3],[5,-13],[8,-5],[8,-27],[2,-25],[-1,-44],[2,-9],[8,-16],[6,-27],[9,-18],[5,-3],[13,-26],[-1,-16],[5,-29],[1,-18],[-1,-33],[5,-24],[0,-28],[4,-23],[8,-29],[3,-22],[0,-10]],[[5000,5103],[-6,-17],[-1,-8],[-18,-37]],[[4975,5041],[3,-13],[8,-10],[5,9],[4,1],[3,-22],[-6,-8],[1,-11],[-6,-8],[1,-28],[10,-1],[3,4],[11,-5],[0,-23],[4,-6],[6,6],[5,22],[13,5],[8,-15],[7,21],[6,-8],[-1,-8],[2,-13],[4,-6],[0,-17],[2,-10],[-2,-26],[2,-20],[-1,-6],[-6,-5],[-3,-8],[-7,-5],[1,-23],[5,-20],[6,-3],[4,-13],[-7,-32],[-9,-3],[-16,11],[-3,-17],[0,-15],[3,-21]],[[229,6038],[0,0]],[[2497,4669],[0,0]],[[2684,4132],[-16,11],[-8,27],[-6,5],[-7,16],[-5,20],[-2,26],[-3,21],[-7,20],[-1,9],[8,-5],[7,9],[4,27],[7,14],[1,20],[-2,4],[-1,26],[2,6],[6,3],[3,15],[5,7],[12,-3],[7,3],[16,-6],[6,7],[9,2],[18,46],[5,2],[9,-6],[13,3],[20,-8],[8,6],[1,9],[-4,11],[-3,22],[-4,11],[1,19],[-1,15],[1,22],[4,25],[10,25],[-2,6],[-14,27],[7,3],[9,21],[9,43],[3,27]],[[2723,5059],[-6,-11],[-4,-13],[-6,3],[-5,-5],[8,-28],[10,-31],[-1,-6],[-24,-26],[-9,8],[-13,-11],[-6,10],[-12,6],[-5,-4],[-10,2],[-6,-7],[1,-15],[-3,-13],[-8,-8],[1,-6],[-3,-13],[-13,-17],[-6,-5],[-6,-27],[-18,-24],[-4,3]],[[2575,4821],[-13,-11],[-7,-13],[-8,-8],[-5,13],[-10,-1],[-16,-10],[-1,-12],[-7,-12],[-4,1],[-13,-13],[-15,-24]],[[2476,4731],[-5,-9],[2,-8],[5,-5],[6,4],[-2,-16],[1,-18],[5,-7],[10,-1],[11,-22],[-1,-9],[4,-2],[6,-16],[7,-32],[-7,-2],[-5,-18],[5,-8],[2,-19],[-3,-20],[1,-8],[-5,-19],[8,-14],[-7,-23],[4,-18],[-5,-11],[-4,-16],[-7,-15]],[[2502,4399],[6,-27],[3,9],[7,-10],[4,-19],[-8,-26],[3,-10]],[[2517,4316],[7,15],[5,15],[3,3],[-2,9],[5,-4],[-2,-26],[-3,-7],[18,-24],[4,-16],[6,-9],[7,-1],[-1,-16],[4,-29],[-5,5],[5,-11],[1,-11],[7,-15],[11,-19],[12,8],[1,12],[5,-19],[0,-10],[4,-4],[8,4],[13,-1],[16,-24],[13,-11],[4,-17],[11,-13],[6,-1],[7,6],[3,16],[-6,11]],[[5882,5524],[0,0]],[[5902,5511],[0,14],[-8,-9],[8,-5]],[[5873,5501],[-6,-9],[1,-21],[3,1],[2,29]],[[3991,3959],[-6,-4],[4,-7],[2,11]],[[4022,3943],[0,0]],[[4015,3951],[-5,5],[-4,-9],[0,-14],[7,10],[2,8]],[[4030,3880],[6,3],[-1,8],[-6,0],[1,-11]],[[3997,3858],[-6,7],[-2,-10],[8,3]],[[4030,3856],[0,0]],[[3975,3846],[0,0]],[[3967,3838],[-4,2],[-1,-9],[7,-6],[2,6],[-4,7]],[[2343,4186],[5,26],[9,25],[3,3],[7,18],[6,6]],[[2373,4264],[-2,4],[-5,-5],[-3,7],[0,23],[5,10],[-5,9],[2,16],[-5,8],[4,14]],[[2364,4350],[-7,-16],[-1,-13],[-6,-8],[-1,6],[4,12],[-7,-2],[-6,-10],[4,-11],[0,-9],[-8,-18],[-9,-11],[-10,-6],[-4,-19],[-15,-21],[3,14],[7,8],[-6,17],[-5,-13],[-9,-5],[-5,-13],[-1,-16],[5,-13],[0,-7],[-7,-8],[5,-10]],[[2285,4178],[3,-7],[20,14],[7,-6],[8,4],[5,11],[7,3],[6,-3],[2,-8]],[[2373,3573],[-8,6],[-6,0],[3,-7],[-3,-13],[2,-8],[8,3],[4,19]],[[2509,3551],[-7,-8],[8,1],[-1,7]],[[2503,3541],[0,0]],[[2499,3532],[-7,-8],[4,-1],[3,9]],[[2482,3516],[7,0],[3,6],[-10,-3],[0,-3]],[[2462,3509],[0,0]],[[2393,3481],[7,3],[9,-3],[2,6],[15,-3],[8,10],[6,-1],[13,11],[6,15],[5,5],[17,3],[15,15],[14,17],[4,-5],[5,10],[5,5],[-7,0],[5,9],[3,-6],[12,17],[6,0],[10,9],[10,1],[4,7],[-2,15],[19,3],[7,5],[6,12],[9,5],[1,8],[-3,5],[-11,1],[-13,9],[-12,0],[-6,-4],[-14,-1],[-20,5],[-20,3],[4,-14],[10,-12],[3,-12],[-7,-10],[-18,-2],[-14,-19],[-2,-21],[-4,-11],[-13,3],[-27,-16],[-9,-17],[-1,3],[-13,0],[-6,-8],[-2,6],[-5,-5],[-11,-1],[-7,-10],[11,-7],[-4,-10],[-25,-1],[-12,20],[-9,9],[-12,2],[-3,12],[-13,10],[0,-9],[-9,6],[-1,-4],[9,-8],[6,-2],[-1,-18],[7,-14],[24,-20],[16,-4],[16,-9],[7,2]],[[2757,4121],[-7,-5],[-6,-9],[11,8],[2,6]],[[2406,3701],[0,0]],[[2445,3680],[0,0]],[[2449,3680],[0,0]],[[5611,2795],[-16,4],[0,-8],[-7,-2],[-9,5],[-4,-5]],[[5575,2789],[4,0],[2,-12],[19,2],[12,-7],[14,-11],[-18,21],[3,13]],[[5611,2795],[1,5],[-10,1],[-5,9],[-11,7],[-5,7],[-14,-9],[-4,-21],[12,-5]],[[5078,1886],[5,-5],[-1,-4],[8,3],[3,9],[13,5],[5,6],[10,-1],[0,7],[-5,5],[13,19],[9,-9],[-3,-10],[8,2],[7,8],[8,-3],[-3,8],[8,10],[5,-3],[7,7],[7,1],[1,8],[6,9],[0,5]],[[5189,1963],[-8,3],[-10,12],[-2,11],[-13,13],[-14,0],[-5,14]],[[5050,2006],[-13,-17],[-6,-5],[-6,-10],[-7,-5],[-8,-19],[4,-9],[-9,-11],[-3,-14],[5,9],[5,-10],[9,-5],[5,1],[16,-16],[5,-1],[19,-11],[-3,-7],[6,1],[3,9],[6,0]],[[5061,1712],[-8,0],[-3,-14],[11,10]],[[5061,1708],[0,4]],[[4980,1681],[-8,-4],[2,-3],[6,7]],[[5047,1683],[0,6],[-6,-4],[-4,6],[-5,-7],[2,-17],[5,-2],[7,7],[-3,5],[4,6]],[[4905,1664],[0,0]],[[4937,1657],[6,5],[2,9],[-5,6],[8,0],[16,10],[8,-4],[2,6],[-8,12],[17,7],[8,-10],[12,-3],[12,-18],[13,4],[3,8],[9,8],[7,-1],[4,17],[11,7]],[[5062,1720],[5,26],[-4,15],[-4,5],[3,8],[10,15],[-2,10],[5,9],[1,8],[-4,17],[4,9],[-1,6],[5,3],[3,12],[-5,23]],[[4878,2074],[-3,-5],[3,-28],[6,-27],[8,-14],[0,-6],[-17,-6],[-2,-4],[-12,2],[-3,-5],[-5,3],[-5,-14],[-6,-4]],[[4842,1966],[5,-17],[-7,-6],[-4,-15]],[[4833,1891],[1,-8],[-5,-8],[7,-6],[2,-15],[-1,-8],[-6,-15],[6,-4],[6,3],[10,-6],[0,-6],[7,-10],[0,-14],[-8,-3],[1,-7],[8,0],[5,-20],[0,-18]],[[4866,1746],[-4,-5],[2,-11],[5,-7],[20,0],[6,14],[3,-9],[4,5],[1,-16],[3,-5],[16,1],[10,15],[2,0],[-9,-15],[-11,-6],[0,-17],[-8,-2],[0,-6],[9,-5],[0,-3],[-8,-15],[0,-7]],[[4907,1652],[6,0],[10,5],[14,0]],[[4897,1660],[0,0]],[[5867,4153],[-9,29]],[[5858,4182],[-7,-5],[-17,6],[-7,0],[-1,-35],[7,-19],[10,-32]],[[5843,4097],[3,-3],[5,8],[3,-2],[3,-13],[7,-5]],[[5864,4082],[5,15],[3,16],[-4,13],[-13,13],[-7,14],[14,-5],[5,5]],[[2964,3937],[-2,1],[-3,-23],[4,3],[1,19]],[[4982,1654],[10,3],[1,9],[-9,3],[-11,-9],[0,-9],[9,3]],[[4957,1656],[0,0]],[[5015,1649],[-12,1],[5,-5],[7,4]],[[4946,1654],[-7,-2],[-1,-8],[8,10]],[[4964,1662],[-3,-6],[9,-12],[-6,18]],[[5085,1646],[-11,-5],[2,-11],[11,9],[-2,7]],[[4962,1612],[5,17],[-1,11],[-10,4],[-12,-7],[-4,-10],[0,-10],[12,-5],[4,3],[6,-3]],[[5018,1612],[0,0]],[[4961,1602],[0,0]],[[5015,1602],[0,8],[-7,2],[-3,8],[6,11],[-9,5],[-1,21],[-5,3],[-4,-8],[-2,-15],[-10,-1],[-4,-9],[1,-7],[-6,-14],[10,-2],[4,-12],[6,3],[0,10],[3,2],[4,-11],[-2,-4],[10,-9],[10,3],[-1,16]],[[4973,1518],[-3,-4],[7,-1],[-4,5]],[[4907,1652],[-3,-12],[3,-3],[-1,-15],[-14,-10],[2,-21],[-2,-9],[1,-27],[11,2],[3,4],[6,-14],[5,-3],[4,5],[1,-19],[-7,0],[-6,18],[-9,3],[-5,-10],[10,-16],[9,-2],[9,1],[8,-5],[11,-20],[8,-2],[8,-7],[-3,10],[3,5],[0,13],[-7,14],[0,22],[6,6],[9,0],[3,4],[-2,9],[-9,5],[-6,-1],[-4,20],[-8,2],[4,3],[-12,17],[2,13],[-6,13],[8,4],[0,8]],[[2673,3776],[1,-13],[-8,-19],[8,-8],[-2,-14],[4,-9],[-3,-9],[2,-7],[-2,-18]],[[2673,3679],[4,-9],[11,2],[7,-4],[9,8],[6,0],[3,6],[10,0],[6,22],[12,-2],[0,7],[-8,0],[-1,5],[20,7],[5,5],[10,14],[1,7],[-9,19],[-7,-11],[-24,-2],[-7,4],[-4,6],[-8,3],[-5,-7],[-12,4],[0,8],[-9,27],[-7,-10],[-3,-12]],[[4904,2688],[-5,17],[-5,8],[4,5],[-3,35],[3,13],[-1,10],[2,12],[-2,6],[-3,26],[-10,13],[-9,19],[0,21],[6,26],[11,12],[6,30],[19,25],[10,83],[4,25]],[[4931,3074],[-6,7],[9,27],[5,27],[1,12],[-1,23],[1,30],[2,15],[-3,13],[-2,19],[4,22],[-1,16],[-10,13],[-2,11],[4,15],[12,31],[3,32],[8,18],[8,-4],[24,15],[12,45]],[[4999,3461],[-15,17],[-14,18],[-15,17],[-28,36],[-15,17],[-38,47],[-14,23],[-34,60],[-42,17]],[[4784,3713],[-25,9],[-7,-10],[5,-13],[-2,-24],[-6,-7],[-16,-8],[-5,-11],[-8,-1],[-7,-7],[-2,-10],[-12,-15],[-1,-17],[-40,-55],[-19,-25],[-72,-97],[-35,-47]],[[4532,3375],[-23,-30],[-27,-31],[-20,-26],[-37,-44]],[[4425,3244],[0,-22]],[[4425,3222],[0,-59],[29,-40],[4,-1],[10,-13],[14,3],[4,-14],[20,-3],[9,-5],[7,-12],[6,-18],[18,-14],[10,-11],[7,-2],[3,-7],[-6,-6],[1,-16],[-2,-10],[4,-5],[8,0],[11,-8],[4,-13],[10,-3],[35,1],[0,-10],[6,-11],[-11,-19],[-6,-30],[1,-14],[-2,-9],[0,-26],[-3,-11],[2,-8],[-3,-6],[1,-8],[-11,-16],[0,-5]],[[4605,2793],[8,1],[7,-5],[9,-12],[7,-11],[18,-16],[7,2],[7,-5],[2,-9],[23,-22],[8,-4],[20,-3],[10,-3],[7,1],[11,-11],[15,0],[7,-6],[27,0],[13,13],[6,0],[8,-7],[15,-8],[6,-9],[3,5],[10,5],[8,-3],[-1,-7],[12,5],[5,7],[21,-3]],[[2441,4986],[-4,2],[0,-11],[3,-7],[7,2],[-5,6],[-1,8]],[[2155,4892],[0,0]],[[2183,4868],[-6,-2],[8,-12],[2,2],[-4,12]],[[2157,4860],[-6,-6],[2,-9],[6,-2],[2,10],[-4,7]],[[2127,4842],[-3,1],[-3,-11],[5,-2],[1,12]],[[2151,4834],[-9,-3],[3,-7],[6,10]],[[2131,4814],[3,14],[5,11],[1,10],[4,9],[-3,11],[-6,5],[-7,0],[-2,-13],[9,-10],[-3,-14],[-4,-5],[-1,-15],[-5,-2],[7,-7],[2,6]],[[2475,4743],[0,0]],[[2575,4821],[-9,3],[5,15],[5,8],[0,24],[-4,-3],[-5,35],[-14,35],[-17,25],[-32,24],[-3,4],[-7,19],[-4,3],[-2,20],[-4,12],[-3,19],[0,14],[-5,6],[-6,19],[-7,-4],[-4,-9],[-1,-13],[-8,-4],[-11,-10],[-3,7],[-5,-2],[3,-10],[-4,-8],[9,-10],[-2,-28],[-2,-2]],[[2435,5010],[5,-3],[5,-10],[7,-33],[-3,-13],[0,-17],[-2,5],[1,16],[-5,7],[1,-11],[-8,20],[-19,-30],[6,-6],[0,-15],[-2,-11],[1,-14],[-3,-18],[2,-6],[8,-7],[3,-15],[-1,-13],[7,-14],[5,-16],[1,-14],[-2,-22],[9,-11],[24,-13],[1,-15]],[[5616,3011],[1,7]],[[5617,3018],[3,12],[9,46],[6,41]],[[5635,3117],[-4,12],[-3,30],[-6,23],[0,20],[-5,13],[-13,-15],[-14,-30],[-5,-29],[-10,-26],[-4,-26],[-5,13],[0,12],[5,9],[2,11],[0,15],[15,41],[10,18],[0,17],[10,32],[0,23],[4,5],[14,50],[3,15],[15,55],[8,19],[8,12],[-7,1],[-1,9],[2,28],[4,20],[4,9],[10,9],[6,12],[10,18],[1,6]],[[5689,3548],[-150,0],[2,-9],[-4,-2],[-3,11],[-174,0]],[[5360,3548],[0,-416],[-2,-9],[-3,-29],[-3,-18],[8,-28],[-5,-38],[10,-19]],[[5365,2991],[6,9],[14,-6],[37,14],[11,11],[6,-1],[4,6],[15,2],[13,12],[4,1],[9,-5],[17,-20],[5,1],[4,-12],[15,-7],[-10,10],[12,-3],[6,-7],[9,7],[10,-5],[-3,15],[6,3],[3,8],[6,-9],[8,11],[14,-6],[2,5],[5,-4],[15,-2],[8,-8]],[[5781,3911],[7,7],[-11,-2],[-1,-16],[5,5],[0,6]],[[5779,3888],[0,0]],[[5739,3778],[8,33],[6,41],[5,46],[3,8],[2,15],[3,0],[5,22],[2,-20],[4,5],[5,22],[13,8],[4,8],[10,7],[13,37],[18,23],[4,21],[3,0],[6,11],[2,9],[9,8]],[[5843,4097],[-4,-11],[-8,-14],[-5,-16],[-18,-32],[-9,-24],[-7,-4],[-10,-12],[-8,-1],[-10,-5],[-8,4],[-6,-9],[-6,8],[-12,1],[-4,-11],[-10,-11],[-8,40],[-6,-13],[-5,-4],[-4,10],[-10,-2],[-4,3]],[[5681,3994],[-3,-51],[3,-6],[4,-29],[3,-15],[3,-16],[0,-19],[3,-25],[11,-1],[3,-14],[7,-8],[13,-7],[5,-15],[6,-10]],[[4169,3213],[-2,10],[-5,-5],[7,-5]],[[4238,3194],[1,16],[-5,7],[-4,-2],[-3,-12],[4,-9],[7,0]],[[4189,3200],[-3,-8],[4,1],[-1,7]],[[4213,3180],[-6,20],[-3,2],[-7,-19],[10,-4],[6,-9],[5,2],[-5,8]],[[4272,3193],[-8,5],[7,-8],[6,-23],[4,-7],[1,9],[-3,19],[-7,5]],[[4171,3174],[-5,-15],[6,-5],[2,7],[-3,13]],[[4285,3150],[-4,2],[1,-8],[8,-7],[2,7],[-7,6]],[[4710,2588],[-5,0],[1,-6],[4,6]],[[4706,2574],[-6,0],[4,-10],[6,-2],[1,5],[-5,7]],[[4754,2523],[8,2],[-6,22],[-4,5],[-8,-5],[-2,-8],[-6,2],[-4,-7],[15,-17],[8,-4],[-1,10]],[[4785,2520],[-12,-7],[0,-5],[11,1],[1,11]],[[4616,2315],[3,6],[8,4],[-2,9],[5,0],[15,8],[5,8],[7,-2],[7,8],[20,0],[2,-9],[18,9],[2,6]],[[4714,2367],[9,9],[4,-4],[11,4],[11,-7],[6,2]],[[4755,2371],[3,8],[-4,2],[2,18],[-6,10],[-20,18],[-6,10],[-14,5],[-15,8],[-9,14],[5,6],[-8,6],[-12,29],[-4,5],[-10,29],[0,6],[5,26],[10,12],[-7,10],[-9,8],[-8,17],[-5,25],[2,7],[-16,2],[-13,19],[-8,26],[-6,-3],[-8,1],[-2,4],[-16,-1],[-5,3],[-11,-3],[-15,2],[-9,12],[-13,5],[-6,17],[-7,6],[-12,-9],[-9,-26],[0,-11],[-3,-7],[-12,-15],[-14,2]],[[4460,2674],[-2,-20],[1,-12],[14,-26],[-4,0],[-7,-16],[2,-15],[7,-11],[1,-8],[-5,-5],[-5,-20],[-5,-9],[14,-4],[4,-18],[-4,-11],[5,-5],[1,-20],[-3,-23],[6,-10],[12,-14],[1,-8],[-9,-4],[0,-14],[-16,-4],[-2,5],[-8,4],[-5,-4],[-12,5],[-3,-7],[2,-6],[-3,-6],[-15,11]],[[4422,2399],[-3,-9],[6,-10],[-4,0],[3,-8],[-3,-3],[0,-10],[-6,3],[3,-12],[-7,-6],[0,-16],[9,-9],[6,1],[11,-7],[-1,-6],[8,-9],[8,-4],[9,4],[9,9],[12,-3],[15,0],[7,-3],[5,4],[32,10],[5,0],[22,-6],[14,8],[4,-5],[15,8],[10,-1],[5,-4]],[[5294,1439],[10,1],[9,7],[-15,13],[-13,5],[-1,7],[-7,3],[5,-7],[-9,-11],[4,-5],[-4,-7],[7,2],[6,-6],[8,-2]],[[5315,1443],[-8,-4],[3,-4],[5,8]],[[5303,1427],[-4,0],[-7,8],[-3,-10],[-10,-5],[11,-2],[4,-6],[9,5],[0,10]],[[5444,1388],[4,7],[-7,6],[-4,13],[-7,9],[-2,9],[3,17],[-1,13],[7,22],[-6,1],[-5,17]],[[5426,1502],[-13,-5],[-10,5],[-9,-8],[-6,-10],[-12,-6],[-7,-6],[-5,-2],[-23,12]],[[5341,1482],[7,-28],[-4,-2],[-8,7],[-10,-5],[-2,-9],[-5,-8],[5,-8],[-5,0],[-2,-8],[2,-15],[8,-5],[8,-1],[7,-10],[7,1],[8,-4],[16,0],[2,-7],[7,0],[24,5],[9,6],[26,2],[3,-5]],[[5858,4182],[-7,21],[4,21],[7,19],[4,3],[3,16],[5,13],[4,2],[10,21],[18,11],[63,44],[2,2],[28,0]],[[5999,4355],[-7,13],[-29,59],[-15,29],[-14,33],[-20,44],[-26,-3],[-13,6],[-14,16],[-6,16],[-22,9],[-3,9]],[[5830,4586],[-19,2],[-13,-19],[-25,24],[-5,16],[-5,7],[-8,-1],[-16,-7],[-15,-3],[-19,-27],[-16,-18],[-21,-1],[-8,-21],[1,-20],[-2,-11],[-8,-4],[-4,3],[-1,-7]],[[5646,4499],[-7,-16],[-3,-16],[-6,-35],[-6,-14],[-6,-6],[-6,-13],[-4,-16],[-7,-10],[-12,-5],[-7,-6],[7,-30],[2,-3],[17,0],[5,-6],[0,-53]],[[5613,4270],[2,-22],[4,-16],[-1,-23],[8,-20],[6,7],[3,-3],[1,-27],[5,-31],[7,-20],[7,-23],[4,-6],[10,-4],[3,-31],[7,-33],[-1,-9],[3,-15]],[[5267,1353],[0,0]],[[5273,1351],[0,0]],[[5282,1338],[7,4],[-5,8],[-5,-7],[3,-5]],[[5277,1340],[0,0]],[[5262,1329],[-4,3],[-1,-9],[5,6]],[[5256,1173],[0,0]],[[5355,1072],[-6,1],[6,-7],[6,3],[-6,3]],[[5471,840],[-14,8],[9,4],[-9,16],[5,20],[19,6],[13,19],[5,3],[-1,9],[-16,20],[-8,13],[0,7],[11,18],[4,15],[8,10],[5,18],[0,6],[-10,3],[2,4],[-6,19],[7,3],[-7,12],[5,10],[8,2],[1,7],[-3,5],[3,11],[11,7],[1,9],[-9,16],[-6,4],[12,13],[16,12],[14,20],[1,4],[-10,23],[-24,30],[-10,15],[-19,24],[-15,13],[-26,30]],[[5438,1328],[-9,5],[-7,-5],[-19,8],[1,-13],[-5,12],[-10,-3],[0,8],[-8,4],[-2,-4],[-14,8],[-16,5],[-8,4],[-16,4],[-7,-1],[-8,8],[-6,1],[7,-11],[-4,-1],[-4,-10],[-4,8],[-9,3],[2,-20],[-8,-2],[-12,-11],[-5,4],[-6,-6],[-2,-19],[4,-12],[3,-23],[-3,-14],[-6,-10],[2,-14],[-5,-11],[-1,-19],[15,-17],[-3,-9],[16,-3],[5,-3],[6,-20],[6,-2],[14,-12],[19,-22],[2,-6],[8,-8],[7,-16],[11,-5],[9,1],[3,-8],[-3,-8],[1,-19],[-2,-4],[-18,-12],[1,-7],[-6,5],[-7,-1]],[[5337,1025],[-4,-15],[-9,-11],[0,-11],[6,-10],[2,-13],[-10,-20],[5,-8],[-2,-5],[-7,-2],[2,-8],[-1,-16],[4,-5],[-22,-24],[-24,-8],[-15,-10],[-7,-8],[-8,-5],[0,-4],[-8,-4]],[[5239,838],[12,0],[0,-10],[6,-3],[10,0],[19,24],[3,8],[11,1],[9,4],[16,-5],[4,-5],[26,12],[8,-2],[2,-8],[4,-5],[10,-3],[2,-9],[0,-9],[9,-27],[13,-13],[17,1],[13,-8],[8,-1],[14,13],[20,9],[6,11],[-14,18],[4,9]],[[9517,6065],[0,0]],[[9701,6006],[0,0]],[[9706,5918],[0,0]],[[9624,5907],[-6,3],[-3,6],[-6,0],[10,-10],[5,1]],[[9671,5906],[0,0]],[[9700,5865],[0,0]],[[9648,5857],[0,0]],[[9694,5851],[0,0]],[[9714,5848],[0,0]],[[9633,5836],[0,0]],[[9618,5816],[9,15],[-1,6],[3,19],[-10,4],[-4,6],[-9,0],[-13,-8],[-4,-12],[5,-9],[2,-12],[9,-9],[12,-4],[1,4]],[[9650,5815],[0,0]],[[9695,5810],[0,0]],[[9589,5802],[0,0]],[[9666,5791],[-3,0],[3,-10],[0,10]],[[9666,5781],[5,0],[-5,9],[0,-9]],[[9666,5767],[0,0]],[[9666,5746],[-11,20],[-1,14],[7,-13],[3,13],[-14,2],[-6,-5],[-14,15],[-6,-11],[2,-9],[7,0],[7,-11],[8,-2],[5,-8],[13,-5]],[[9586,5535],[0,0]],[[3009,7823],[0,0]],[[3043,7811],[0,0]],[[2971,7797],[4,0],[-2,10],[-5,-6],[3,-4]],[[2992,7778],[10,-4],[6,3],[9,-5],[3,5],[-3,7],[-15,24],[-9,0],[-1,6],[-6,7],[-9,-3],[-4,-5],[10,-6],[10,-10],[-9,-4],[9,-5],[-9,-10],[0,-6],[8,6]],[[2997,7774],[-5,-6],[5,1],[0,5]],[[3032,7767],[12,6],[-3,8],[7,5],[-1,-8],[9,-4],[5,8],[-5,4],[4,7],[-9,4],[-15,10],[1,9],[-15,-5],[4,8],[-9,3],[-1,5],[-7,-10],[3,-11],[8,-12],[4,-2],[0,-11],[8,-14]],[[6216,6043],[-7,2],[-7,-9],[-2,-9],[2,-9],[10,0],[5,14],[-1,11]],[[5921,5562],[-3,-5],[1,-13],[3,6],[-1,12]],[[3149,4681],[6,-8],[6,-20],[0,-21],[3,-10],[3,-14],[-8,-18],[-4,-17],[0,-22],[-2,-19],[4,-16],[5,-9]],[[3162,4507],[5,-19],[4,-6],[11,13],[15,8],[12,23],[5,5],[8,17],[2,12],[0,-12],[4,4],[3,29]],[[2977,3980],[-7,2],[2,-8],[-4,-3],[-2,-9],[5,-1],[6,19]],[[2966,3900],[0,0]],[[2956,3893],[-5,-3],[0,-17],[6,5],[-1,15]],[[2963,3880],[-6,0],[2,-17],[8,15],[-4,2]],[[4930,2350],[2,37],[-5,13],[0,15],[-6,16],[-8,-7],[0,-11],[-5,-3],[1,-10],[-5,-17],[4,-19],[12,-10],[4,2],[2,-19],[4,13]],[[4633,2171],[-1,5],[-4,-13],[5,8]],[[4827,1961],[5,5],[8,-2],[2,2]],[[4861,2170],[-6,6],[0,6],[10,19],[-2,8],[-7,6],[-6,1],[3,12],[7,4],[1,9],[-5,10],[4,14],[11,9],[7,-3],[1,8],[-5,15]],[[4874,2294],[-1,1]],[[4873,2295],[-2,1]],[[4871,2296],[-5,4],[-13,17],[-4,10],[-13,7],[-8,-1],[-12,-8],[-2,-6],[-7,-6],[-10,4],[-13,-6],[-5,-7],[-22,23],[-6,16],[1,19],[3,9]],[[4616,2315],[9,-9],[4,-26],[3,-31],[4,-8],[-4,0],[1,-27],[3,-21],[9,12],[-3,-13],[-8,-8],[4,-3],[-4,-33],[-6,-2],[-11,-10],[-8,-17],[1,-13],[-5,-7],[6,-9],[-10,2],[-5,-6],[3,-5],[-10,-3],[1,-5],[-9,-1],[-3,-4],[-20,-8],[-12,1],[-3,-9],[-7,-4],[10,-7],[-7,-8],[8,-3],[-12,0],[0,-11],[18,-9],[10,0],[13,-8],[7,3],[8,15],[7,-7],[10,0],[3,4],[2,-7],[3,4],[10,0],[-3,-10],[-1,-23],[-8,-22],[1,-6],[16,1],[4,17],[17,0],[10,5],[16,-10],[-8,-2],[1,-13],[12,-8],[18,-8],[9,-14],[0,-28],[5,-12],[21,-9]],[[4480,1276],[-6,-9],[4,1],[2,8]],[[4482,1255],[0,0]],[[4467,1236],[0,6],[-7,-6],[7,0]],[[4482,1231],[-1,8],[-4,-3],[2,11],[-8,-8],[-4,-11],[6,-2],[9,5]],[[4488,1229],[-4,3],[0,-8],[4,5]],[[9193,4508],[0,0]],[[9063,4423],[-5,-8],[6,3],[-1,5]],[[8878,4392],[0,0]],[[8885,4387],[0,0]],[[8503,4268],[0,0]],[[4975,5041],[-7,-21],[-6,-9],[-8,-22],[-10,-16],[-8,-16],[8,7],[2,-2],[-12,-10],[-3,-12],[-7,-15],[6,-1],[-6,-4],[-3,-17],[4,6],[6,-2],[-7,-6],[2,-10],[-4,4],[-4,-5],[-10,-41],[3,7],[9,-8],[4,-13],[2,-16],[-1,-20],[4,7],[8,4],[7,-6],[-6,0],[-7,-6],[-6,-18],[6,-3],[2,5],[0,-26]],[[4933,4756],[4,-3],[4,7],[4,-3],[36,1],[0,-68]],[[4637,1896],[-4,5],[-9,-5],[6,-5],[7,5]],[[4550,1744],[4,0],[-9,10],[-6,-15],[7,-1],[4,6]],[[4493,1700],[-11,2],[0,-7],[-5,-2],[-3,-10],[-4,-2],[-3,10],[-5,7],[-14,-6],[-8,-13],[11,-10],[-5,-4],[10,-4],[5,-15],[5,-4]],[[4466,1642],[3,3],[4,-8],[13,-5],[10,3],[12,26],[-5,4],[10,4],[1,10],[-5,-7],[-1,19],[-4,0],[-5,11],[-6,-2]],[[4524,1621],[-6,-1],[-2,-8],[6,-5],[2,14]],[[4496,1594],[2,13],[-5,5],[-2,-10],[-4,5],[0,-8],[9,-5]],[[4500,1600],[-2,-6],[3,-7],[6,-4],[-7,17]],[[4506,1570],[-15,3],[5,-12],[-5,-6],[5,-3],[10,9],[0,9]],[[4483,1556],[0,0]],[[4460,1534],[0,0]],[[4492,1534],[0,0]],[[4465,1525],[-4,0],[-1,-15],[4,0],[1,15]],[[4496,1503],[2,12],[11,4],[-9,11],[-1,-10],[-10,-2],[-2,-5],[-9,-6],[4,-7],[9,-7],[5,10]],[[4466,1493],[1,7],[-10,-3],[9,-4]],[[4494,1454],[-3,10],[-7,5],[4,4],[-16,16],[-3,-4],[7,-7],[-7,-9],[2,-9],[8,4],[-1,-7],[13,-12],[3,9]],[[4580,1445],[0,5],[-25,27],[-1,6],[5,2],[-8,14],[8,-1],[13,-8],[40,3],[5,12],[-5,7],[-9,28],[-6,13],[-8,9],[-10,3],[14,6],[-4,7],[-6,1],[-10,8],[-7,2],[16,3],[12,-5],[13,8],[8,14],[5,5],[10,46],[4,7],[14,9],[8,13],[8,9],[-4,6],[9,23],[-10,-7],[-11,1],[10,2],[12,13],[6,17],[-9,15],[7,6],[8,-10],[14,0],[9,5],[9,12],[1,12],[-5,21],[-7,9],[-1,6],[-9,2],[-6,5],[5,4],[-1,5],[-11,4],[11,8],[15,0],[-2,12],[-9,6],[-2,6],[-5,0],[-16,10],[-11,-3],[-19,3],[-15,-7],[2,4],[-7,5],[-12,0],[0,8],[-15,-1],[-12,-6],[-11,5],[-3,5],[-2,12],[-6,5],[-12,-8],[-17,8],[-11,13],[-6,-5],[-5,2],[1,-7],[7,-3],[21,-30],[2,-12],[6,-3],[3,-9],[9,-3],[20,2],[20,-31],[-9,9],[-7,3],[-7,8],[-9,-1],[-10,-11],[-8,2],[4,-5],[-9,-5],[-6,0],[-8,7],[-6,-5],[-4,-10],[5,-8],[6,-1],[18,-14],[7,-15],[-4,-22],[-7,1],[-9,6],[1,-5],[9,-13],[14,-12],[14,-2],[6,5],[-2,-8],[7,-19],[-3,-10],[4,-3],[1,-12],[-9,3],[-7,-11],[-5,-15],[4,-12],[11,-11],[-10,0],[-13,10],[-7,1],[-3,-4],[-7,5],[-9,-5],[-2,9],[-7,-13],[12,-30],[1,-7],[-6,-8],[2,-20],[-11,9],[1,-13],[-6,9],[1,10],[-5,23],[-5,2],[1,-16],[5,-10],[-3,-1],[0,-13],[6,-27],[5,-14],[-9,11],[-6,2],[-10,-10],[11,-8],[-4,-3],[8,-13],[1,-6],[-7,-9],[5,-30],[13,0],[-7,-8],[1,-10],[10,-3],[-2,-14],[8,-4],[2,4],[41,-8],[6,2],[-2,6]],[[4585,1432],[0,0]],[[4578,1429],[0,0]],[[4581,1415],[7,3],[-1,5],[-9,-1],[-5,-4],[1,-9],[5,0],[2,6]],[[4595,1404],[0,0]],[[4590,1406],[-9,-8],[3,-1],[6,9]],[[4630,1328],[7,9],[-6,29],[0,-13],[-11,-10],[8,-3],[-2,-8],[4,-4]],[[4637,1330],[-3,-5],[2,-7],[1,12]],[[4645,1313],[-4,7],[-1,-7],[5,0]],[[5873,2447],[-7,-5],[-1,-6],[-16,-16],[-2,7],[-16,-2],[-3,4],[-9,-5]],[[5819,2424],[7,-17],[-7,-49],[-11,-10],[-8,-13],[-10,-5],[-13,-16]],[[5777,2314],[4,-8],[14,2],[12,9],[8,2],[6,7],[13,2],[7,-3],[7,5],[6,-1],[8,10],[13,8],[8,7],[0,9],[4,0],[15,-10],[6,2],[2,6],[2,-9],[9,5],[5,9],[10,1],[-2,17],[11,12],[10,6]],[[4596,1964],[0,0]],[[4664,4175],[2,13],[-1,15],[11,23],[0,36],[-3,10],[6,-3],[2,5],[-2,16],[1,15],[-3,6],[8,26],[-3,9],[1,24],[-3,17],[4,5],[-3,31],[6,21],[7,7],[5,13]],[[4699,4464],[-4,6],[-2,11],[-20,3],[-16,14],[-13,16],[-20,11],[-13,16],[-3,0],[-8,-10],[-20,-9]],[[4580,4520],[2,0]],[[4350,4101],[-3,13],[5,9],[11,-11],[7,18],[6,-14],[5,-4],[12,10],[14,-14],[-1,-12],[9,5],[6,27],[0,15],[12,19],[-7,18],[9,2],[0,14],[3,18],[6,7],[0,9]],[[4430,4380],[-2,-7],[-9,24],[-6,3],[-4,-10],[-6,-3],[3,-8],[-4,-35],[0,-10],[-7,-11],[-8,7],[-6,-4]],[[4381,4326],[-6,8],[-6,2],[2,-12],[4,-9],[-4,-22],[-3,-1],[1,-13],[-14,-39],[-20,0],[-6,6],[-4,-3],[-6,4],[-5,22],[-8,13],[-4,12],[-5,0]],[[4297,4294],[1,-7],[-9,-22],[-3,1],[1,-14],[-8,-11],[-3,-10],[-3,1],[-8,-7],[-6,-25],[-6,-17],[-3,10],[-2,-8]],[[4248,4185],[10,-33],[7,-2],[3,-5],[11,-2],[6,-4],[0,-16],[-6,-9],[5,-5],[2,-8],[-1,-16]],[[4285,4085],[18,2],[0,9],[4,-4],[4,6],[14,7],[4,-3],[16,-3],[5,2]],[[4201,4062],[-2,-15],[4,-8],[3,10],[11,1],[0,-6],[20,-5],[-19,2],[-6,6],[-6,-14]],[[4206,4033],[7,-1],[22,1],[7,-12],[9,0],[15,16],[12,-2],[4,12],[-11,5],[-6,-1],[-20,-17],[-3,10],[-15,4],[-1,9],[-22,0],[-3,5]],[[4225,4177],[0,0]],[[4219,4178],[-4,-3],[5,-5],[-1,8]],[[4229,4169],[0,0]],[[4225,4155],[0,0]],[[4234,4151],[0,0]],[[4222,4131],[0,0]],[[4248,4185],[0,-12],[-10,-7],[0,-13],[10,-6],[-2,-4],[-8,3],[-2,-9],[2,-6],[10,-4],[-10,0],[-11,11],[-4,-2],[0,-10],[-5,3],[-4,-4],[1,-15],[-5,2],[-8,-8]],[[4202,4104],[8,-1],[5,-5],[11,1],[8,-3],[10,-11],[41,0]],[[4933,4756],[-6,-6],[5,-24],[2,-1],[5,-21],[-1,-22]],[[4909,4599],[5,0],[1,7],[-5,13],[-2,11],[-6,-3],[-1,-11],[3,-1],[5,-16]],[[5329,2767],[6,-2],[7,14],[11,-4],[21,7],[7,-2],[0,11],[16,-7],[-4,14],[-9,0],[-29,5],[-3,-9],[-6,-4],[-16,-5],[-9,-1],[0,-17],[3,3],[1,-9],[4,6]],[[5421,2772],[0,0]],[[5307,2731],[-4,0],[1,-11],[3,11]],[[5440,2746],[-3,1],[-2,-15],[7,-10],[7,-2],[-3,18],[-6,8]],[[5374,2719],[0,0]],[[5401,2708],[0,0]],[[5440,2710],[0,0]],[[5348,2698],[0,0]],[[5371,2703],[0,0]],[[5415,2700],[6,-10],[5,2],[-11,8]],[[5384,2696],[0,0]],[[5353,2689],[0,0]],[[5417,2686],[0,0]],[[5368,2680],[0,0]],[[5376,2686],[-5,-6],[6,-5],[-1,11]],[[5347,2677],[0,0]],[[5345,2664],[0,0]],[[5359,2656],[0,0]],[[5372,2660],[0,0]],[[5389,2654],[2,-7],[7,-2],[-9,9]],[[5368,2650],[-3,3],[-5,-8],[8,5]],[[5342,2651],[0,0]],[[5411,2637],[7,6],[-6,4],[-8,-5],[7,-5]],[[5246,2638],[-2,8],[-5,-9],[2,-6],[5,7]],[[5360,2640],[0,4],[-8,-15],[7,3],[1,8]],[[5320,2631],[0,0]],[[5239,2604],[4,18],[-7,-2],[-2,-7],[3,-14],[2,5]],[[5243,2607],[0,0]],[[5391,2614],[-6,-2],[3,-6],[-4,-13],[9,2],[-2,19]],[[5241,2591],[-4,2],[2,-14],[3,1],[-1,11]],[[5352,2580],[-6,-5],[0,-5],[6,10]],[[5317,2571],[1,6],[11,10],[7,1],[4,26],[9,5],[-3,9],[-7,-8],[-5,-16],[-11,-3],[-11,-21],[-7,-6],[9,-7],[3,4]],[[5327,2562],[0,0]],[[5330,2560],[0,0]],[[5400,2550],[5,17],[-6,3],[-15,-11],[2,-7],[12,-5],[2,3]],[[5224,2544],[-6,-2],[-6,-17],[5,-3],[3,20],[4,2]],[[5373,2512],[-4,10],[-7,-2],[0,-9],[11,1]],[[5380,2487],[0,0]],[[5354,2476],[-7,-2],[6,-8],[1,10]],[[5389,2469],[-5,-6],[-16,-5],[-5,-4],[-8,8],[-7,-5],[-6,2],[-7,11],[-9,-2],[3,19],[10,5],[2,11],[-4,-8],[-9,-5],[-3,5],[6,7],[2,8],[-5,0],[-5,-12],[-6,-2],[1,11],[6,7],[-8,-2],[-2,-13],[-12,-11],[1,-11],[-8,6],[-2,21],[11,32],[8,12],[2,11],[-6,2],[2,-7],[-5,-4],[-4,4],[3,13],[-4,8],[-7,1],[19,12],[3,8],[6,2],[3,8],[8,5],[3,28],[-3,6],[-11,-19],[-15,6],[6,18],[7,9],[-9,6],[-2,-6],[-9,-9],[-2,3],[10,39],[-1,13],[2,11],[-8,-14],[-1,-6],[-5,1],[-6,15],[0,-11],[-9,-19],[-3,3],[-2,14],[-8,-20],[3,-13],[-4,-13],[-12,-20],[8,-18],[7,1],[4,-8],[4,0],[8,8],[9,4],[6,8],[9,-6],[0,-7],[-5,0],[-14,-14],[-5,5],[-8,-3],[-13,5],[-4,-6],[-4,5],[-6,-18],[-6,-9],[0,-7],[9,2],[1,-8],[-10,1],[-8,-14],[-5,-4],[-3,-13],[-5,-9]],[[5248,2462],[23,-5],[4,-10],[13,0],[9,-4],[1,-7],[5,-2]],[[5397,2412],[8,7],[1,12],[-8,9],[0,16],[-9,13]],[[2952,4123],[0,-10],[3,-2],[0,10],[-3,2]],[[3381,1314],[-3,7],[-11,-7],[16,-9],[-2,9]],[[3638,1041],[-5,0],[-2,-10],[9,2],[-2,8]],[[3249,808],[-5,3],[-4,-19],[4,-4],[15,4],[-8,5],[-2,11]],[[3202,786],[19,7],[3,13],[-5,7],[-18,7],[-24,6],[-6,0],[-10,-8],[15,-5],[-5,-3],[-25,-4],[-5,-6],[3,-14],[13,1],[-9,-4],[-5,-7],[4,-7],[9,-4],[10,1],[18,5],[7,4],[11,11]],[[3231,734],[-12,-2],[4,-5],[8,7]],[[3960,730],[1,16],[-14,4],[-11,7],[-9,-6],[-36,6],[-4,-3],[9,-12],[1,-10],[20,2],[10,-2],[22,-10],[11,8]],[[3179,722],[-10,-1],[-1,-4],[7,-8],[7,6],[-3,7]],[[3137,623],[-14,13],[-19,-9],[7,-4],[16,0],[6,-3],[4,3]],[[4166,472],[3,12],[11,3],[3,5],[-5,4],[-30,-1],[-7,-4],[1,-14],[7,-5],[5,4],[12,-4]],[[4150,434],[-3,3],[-11,-24],[1,-15],[9,3],[4,33]],[[2676,361],[-10,1],[-13,-4],[1,-4],[10,-1],[18,4],[-6,4]],[[4168,343],[-8,-1],[9,-12],[6,1],[-1,8],[-6,4]],[[4139,324],[-4,2],[-5,-14],[0,-9],[10,-5],[2,18],[-3,8]],[[4177,217],[-12,7],[-17,-1],[-10,-4],[-3,-3],[4,-5],[28,-7],[14,1],[2,6],[-6,6]],[[4148,101],[-10,1],[-16,-9],[3,-8],[5,0],[14,10],[4,6]],[[3420,87],[-6,1],[-11,-6],[-35,-10],[-17,-12],[2,-6],[24,-2],[27,7],[15,5],[4,5],[-3,18]],[[3834,2],[27,3],[14,4],[40,4],[31,5],[4,2],[-12,2],[-108,3],[-52,5],[-2,5],[15,0],[31,-6],[12,-1],[50,3],[12,-1],[20,1],[24,-2],[28,-4],[19,17],[15,-1],[6,4],[8,-1],[25,3],[23,6],[2,7],[-24,10],[-39,6],[-158,7],[-9,6],[2,6],[8,0],[17,-3],[30,-3],[22,0],[53,3],[15,7],[8,10],[19,-2],[4,-2],[10,-15],[16,-1],[34,-1],[6,12],[-3,15],[-8,10],[-44,29],[-1,9],[7,-8],[22,-6],[17,-10],[20,-7],[20,-15],[11,-4],[11,0],[2,7],[20,1],[27,6],[9,-3],[6,-6],[18,-12],[20,-4],[52,2],[35,5],[28,12],[-3,4],[-20,7],[-24,13],[-9,3],[-21,1],[-8,2],[7,6],[-6,6],[-21,3],[-9,4],[-22,0],[-12,4],[4,4],[19,5],[0,2],[-16,8],[-10,3],[-34,1],[-31,-6],[-9,2],[-10,6],[-9,12],[2,8],[8,3],[13,0],[3,4],[-4,11],[0,8],[11,5],[1,5],[-21,6],[-4,9],[-9,5],[-11,1],[-16,9],[6,6],[-6,10],[-7,17],[-9,17],[5,8],[11,-12],[9,-3],[15,2],[26,11],[2,4],[-6,2],[-18,-7],[-15,4],[7,10],[6,5],[12,2],[14,6],[11,-4],[13,2],[4,7],[-1,13],[-5,8],[-13,-2],[-30,-8],[-24,4],[-19,11],[-16,-6],[-12,4],[5,5],[15,4],[4,10],[9,8],[15,-3],[9,4],[13,1],[7,6],[-3,7],[11,11],[5,23],[-1,10],[-7,5],[-15,-10],[-8,0],[-11,9],[-10,1],[-5,5],[-13,0],[-9,-5],[12,10],[5,0],[12,-6],[7,1],[4,15],[-7,8],[5,1],[7,-6],[5,-13],[6,-3],[6,3],[13,20],[7,4],[1,9],[-4,7],[-24,0],[0,4],[-11,4],[-15,2],[-22,-8],[6,-14],[-6,-5],[1,8],[-11,7],[4,6],[-4,7],[9,7],[27,1],[19,6],[-4,20],[-4,2],[-19,0],[-24,11],[-22,-4],[-22,-12],[-11,-13],[-11,10],[-10,-3],[-5,-5],[-12,-6],[21,19],[-20,7],[-7,7],[-13,1],[-5,-4],[-22,-3],[16,5],[-3,7],[-15,-1],[-8,3],[6,4],[4,-4],[12,1],[15,-5],[23,-4],[3,-5],[19,-4],[19,2],[29,18],[23,9],[1,17],[-2,13],[-6,3],[0,13],[-25,-12],[-13,-3],[-11,-7],[-8,-10],[-8,-21],[-15,4],[-2,3],[-27,7],[-12,5],[5,2],[22,-7],[9,-1],[15,-5],[5,19],[-2,4],[-14,6],[3,3],[12,-5],[24,14],[35,15],[5,9],[11,2],[-9,10],[-5,2],[2,16],[3,-10],[9,-5],[6,2],[2,8],[0,28],[4,18],[-11,5],[-13,0],[-1,-23],[-3,5],[-4,18],[-18,0],[-13,-6],[-5,-5],[-11,-29],[-11,-8],[-13,-6],[-11,-8],[-16,-4],[-13,0],[-9,-2],[-3,6],[11,2],[18,0],[9,3],[2,10],[-2,5],[-11,7],[-16,7],[-10,0],[-17,-3],[-17,-1],[0,4],[9,3],[-2,10],[-13,10],[-14,5],[13,-1],[15,4],[12,0],[23,-4],[7,4],[-2,2],[-14,5],[-13,9],[-3,6],[8,2],[5,-9],[12,-6],[10,2],[21,-9],[24,4],[20,7],[25,4],[24,-1],[-4,8],[-18,6],[2,5],[-24,3],[5,7],[-7,3],[-10,-1],[2,6],[-15,10],[-10,2],[2,5],[-6,6],[-7,2],[-6,9],[-20,13],[-10,1],[-28,8],[-8,2],[-20,7],[-16,4],[-15,-1],[-6,6],[-15,-3],[3,8],[-10,2],[-12,-3],[-20,-15],[-6,-3],[3,9],[-4,4],[6,13],[-22,17],[-7,4],[-4,11],[-5,5],[-2,9],[-15,27],[-4,6],[-4,-1],[-4,10],[-15,11],[-8,1],[-13,-11],[7,18],[-13,8],[-8,9],[-5,-10],[-2,12],[-9,1],[-3,-5],[-7,5],[-3,8],[-9,3],[-7,-7],[6,-15],[7,-13],[7,-6],[-25,-5],[12,8],[-4,3],[-7,17],[-11,-6],[8,10],[0,7],[-11,5],[-22,3],[-21,1],[0,2],[17,11],[-10,11],[-9,5],[-11,-3],[-13,0],[4,14],[9,-3],[6,14],[7,11],[-8,8],[-6,1],[-3,6],[-22,-4],[16,10],[11,-1],[-1,12],[3,12],[-6,5],[0,6],[-8,1],[-2,14],[-7,12],[-13,-1],[-9,-8],[2,6],[13,8],[-8,14],[-28,1],[13,7],[8,1],[-4,24],[5,8],[1,9],[-4,5],[-10,3],[8,2],[-9,36],[-2,17],[-9,14],[-4,1],[-21,-5],[3,4],[15,5],[4,6],[0,16],[-5,7],[-8,0],[-11,-5],[10,9],[-13,2],[1,-5],[-9,1],[-2,-7],[7,-9],[0,-5],[-9,14],[-23,-10],[0,-10],[5,-1],[9,-8],[3,-8],[-9,9],[-8,4],[-6,-5],[-13,-5],[-3,-9],[9,-24],[-5,5],[-17,8],[-7,8],[-9,2],[-11,-4],[-5,2],[2,5],[-8,1],[-7,-5],[10,-8],[1,-4],[-15,0],[1,-7],[-7,-7],[-9,-1],[-3,-14],[-7,-4],[1,-7],[-3,-11],[9,-8],[6,-2],[-10,-2],[-4,6],[-8,0],[-2,-5],[4,-8],[-7,-3],[-13,-11],[-1,-14],[6,-11],[8,-8],[-8,4],[-8,9],[-6,-11],[-4,-2],[-8,-12],[-12,-22],[-2,-7],[2,-9],[-3,-5],[19,-6],[11,-6],[0,-6],[-16,9],[-15,3],[-3,-6],[8,-15],[5,-5],[8,-1],[3,-4],[14,-2],[5,11],[4,2],[-3,-15],[-5,-4],[-6,1],[-12,-25],[6,23],[-7,8],[-6,2],[2,-9],[-7,9],[-13,23],[-4,-2],[-3,-9],[0,-15],[-4,-28],[-6,-3],[-2,-7],[16,-11],[8,-11],[12,-2],[-4,-2],[-11,5],[-7,8],[-10,6],[-4,0],[-6,-8],[-12,0],[-1,-10],[3,-12],[-8,-4],[25,-18],[9,-6],[10,-12],[8,-3],[7,-10],[-46,38],[-19,5],[0,-21],[5,-9],[11,-10],[15,0],[-2,-5],[-18,0],[-13,-3],[-5,-9],[1,-16],[24,-15],[13,-5],[16,6],[20,1],[14,8],[2,-3],[-16,-8],[9,-5],[-12,0],[-13,3],[-17,-6],[-16,4],[-13,11],[-8,1],[3,-16],[7,-9],[6,-12],[3,-1],[27,8],[13,0],[11,-15],[0,-5],[-8,2],[-5,7],[-20,3],[-11,-5],[-17,0],[5,-7],[5,-11],[4,-3],[16,-2],[18,10],[17,-5],[7,-10],[-12,3],[4,-23],[20,0],[-4,-6],[-15,1],[5,-11],[4,-19],[11,-5],[-4,-6],[5,-5],[-14,1],[-11,-3],[-6,4],[-23,-4],[-22,-14],[-27,-7],[-15,-14],[3,-5],[8,-4],[18,3],[11,0],[20,5],[24,13],[16,5],[8,-2],[-15,-8],[-4,-8],[3,-10],[-15,-9],[21,1],[-10,-7],[-19,0],[-13,-5],[-13,1],[-3,-7],[6,-9],[26,-8],[-19,-4],[-15,8],[-8,-4],[9,-12],[-6,0],[0,-7],[-15,-24],[2,10],[9,11],[1,8],[-10,10],[-5,1],[3,7],[-5,7],[-17,3],[-21,-6],[-6,-9],[10,-28],[13,-14],[-2,-3],[-11,12],[-8,1],[0,-8],[8,-2],[-8,-6],[13,-3],[11,-11],[-2,-13],[-7,-5],[-4,4],[-12,-3],[-2,-7],[10,-5],[2,-7],[-5,-8],[-9,4],[-3,-7],[-6,-3],[5,-19],[-9,-14],[-4,-3],[-23,4],[14,-6],[0,-12],[13,-5],[-17,-10],[-10,-12],[-17,-9],[-12,-13],[-11,-7],[10,-4],[-3,-8],[-7,-6],[-13,-3],[-29,-13],[-33,-11],[-21,-3],[-20,-1],[-13,-7],[-18,10],[-10,-7],[-17,9],[-15,2],[-9,-5],[-10,0],[-9,5],[-11,-5],[-6,2],[11,12],[-4,0],[-37,-5],[-34,-15],[-3,-4],[17,-10],[18,-4],[0,-2],[-28,-1],[-12,-3],[-7,-5],[6,-9],[-20,10],[-10,-3],[2,-5],[-12,-7],[5,-5],[9,-3],[27,-1],[19,1],[11,-8],[13,-2],[33,1],[15,4],[-2,-6],[6,-7],[-12,-9],[-8,0],[-15,8],[-17,1],[-14,-5],[-13,8],[-24,-4],[-10,-9],[-7,-1],[14,-7],[-26,3],[-18,-7],[-11,-2],[-21,-12],[7,-9],[-4,-3],[8,-9],[25,-7],[17,0],[13,-5],[40,-8],[4,-7],[38,-8],[25,-1],[14,1],[6,-3],[12,-10],[8,-14],[7,-22],[12,-6],[8,-1],[-11,-3],[-12,4],[-6,-1],[-21,3],[-10,-2],[-14,0],[-9,-5],[-1,-7],[4,-7],[25,-13],[14,-3],[31,-18],[18,-4],[8,1],[15,9],[-5,-15],[9,-4],[24,3],[11,3],[6,-1],[7,-8],[2,-7],[-3,-20],[10,-7],[12,-3],[14,-2],[27,7],[14,7],[26,10],[18,9],[7,1],[-7,-6],[-28,-11],[-26,-15],[-13,-5],[15,-5],[28,-5],[31,-3],[29,-1],[1,-2],[22,-4],[13,1],[8,3],[10,13],[0,22],[13,-7],[6,-14],[-5,-5],[3,-11],[6,0],[29,14],[11,2],[13,8],[14,-1],[20,1],[-1,-4],[-20,-9],[-15,-15],[-1,-4],[26,-1],[33,4],[42,13],[20,5],[37,15],[16,3],[5,-4],[-3,-15],[3,-9],[8,-6],[-2,-6],[-7,-5],[-27,-10],[13,-3],[68,2],[21,4],[15,-1],[-3,-5],[-78,-4],[-14,-2],[-39,2],[-9,-6],[9,-6],[20,3],[9,-4],[26,-4],[32,-7],[20,2],[17,6],[11,2],[25,-14],[14,2],[16,6],[10,0],[19,12],[7,-3],[3,-7],[-17,-5],[-6,-5],[3,-4],[16,0],[9,-6],[26,3],[4,-4],[34,0],[28,-2],[16,2],[24,-4],[63,0],[21,2]],[[2197,3900],[8,7],[1,-11],[10,12]],[[2216,3908],[-21,35],[-6,5],[-1,11],[2,11],[-6,15]],[[2184,3985],[-6,1],[1,9],[-14,19],[-1,10]],[[2164,4024],[-14,-11],[-15,0],[-7,-4],[-12,-13],[-12,-19]],[[2104,3977],[2,-4],[1,-22],[2,-4],[-4,-9],[13,-48],[34,0],[2,-2],[1,-17],[-5,-4],[-3,-14],[-8,-10],[-12,-22],[12,0],[0,-33],[51,0]],[[8686,4051],[-2,-9],[5,-11],[3,3],[-5,9],[-1,8]],[[3077,4496],[-3,12],[3,9],[-6,10],[-7,0],[-4,5],[0,14],[-6,29],[0,10],[6,18],[4,10],[0,7],[11,1],[2,28],[7,25],[7,24],[6,5]],[[2979,4516],[-18,-41],[7,-15],[0,-16],[-2,-8],[9,-12],[5,1],[9,-10],[2,-11],[-7,0],[-4,-23],[4,-16],[5,-1],[10,-13],[5,-14],[-5,-14]],[[2999,4323],[5,10],[5,1],[13,16],[11,20],[9,23],[0,17],[-3,11],[0,12],[8,-14],[9,5],[12,26],[9,9],[0,5],[0,31],[0,1]],[[7839,3536],[0,0]],[[7832,3536],[-3,-4],[5,-3],[-2,7]],[[7840,3517],[0,14],[-10,-8],[3,-4]],[[6713,7876],[-8,0],[-3,-10],[14,7],[-3,3]],[[2357,3952],[-8,-1],[-12,12],[-16,9],[-6,-1],[-6,-9],[-5,7],[-7,23],[-14,26],[-7,-12],[-9,17],[-10,-1],[0,28],[-4,1],[-3,15],[-10,1]],[[2240,4067],[-4,-21],[-9,-3]],[[2227,4043],[3,-23],[-10,-9],[-11,6],[-1,-7],[-6,-3],[-11,-20],[-7,-2]],[[2216,3908],[2,3],[7,-10],[8,-3],[3,8],[6,-3],[10,4],[16,-1],[16,-13],[8,5],[9,0],[5,-5],[9,7],[11,3],[14,25],[-6,-7],[-4,2],[7,8],[3,7],[7,0],[-4,-8],[8,7],[2,10],[4,5]],[[2266,3872],[0,0]],[[2281,3867],[0,0]],[[5155,2352],[0,0]],[[5129,2339],[15,4],[-10,1],[-5,-5]],[[5178,2364],[3,7]],[[5181,2371],[-20,-21],[-6,-2],[-11,-11],[14,10],[-1,-3]],[[5144,2331],[-15,0],[-8,-5],[23,5]],[[5132,2323],[-8,-1],[-1,-6],[11,2],[-2,5]],[[5093,2282],[0,0]],[[5089,2277],[0,0]],[[5088,2285],[0,0]],[[5088,2262],[-8,-9],[3,-3],[5,12]],[[5078,2237],[0,0]],[[5069,2243],[-5,-14],[-1,-14],[5,10],[1,18]],[[5078,2225],[-4,1],[-7,-8],[4,-8],[7,15]],[[5191,2170],[-2,5],[3,14],[4,5],[-2,6],[11,10],[-9,5],[1,10],[-3,6]],[[5155,2342],[-13,-16],[-6,-10],[-14,-9],[-12,2],[-1,-8],[-8,-9],[-15,-26],[10,-1],[-6,-6],[-10,-19],[-1,-21],[-9,-13],[-6,-2],[-2,10],[-8,19],[-3,0],[-7,-19],[-1,-21]],[[5043,2193],[9,6],[15,-5],[4,-8],[6,10],[5,-2],[10,2],[-2,-14],[11,-8],[-1,-20],[9,-4],[3,-6],[6,-1],[0,-7],[7,1]],[[5125,2137],[10,9],[12,20],[11,10],[18,4],[9,-9],[6,-1]],[[2644,3734],[0,4],[-13,-11],[3,-4],[10,11]],[[2673,3776],[-8,-11],[-14,1],[-9,4],[-14,-7],[-10,4],[-4,9],[-3,-6],[-12,-12],[1,-16],[5,-2],[17,8],[24,5],[3,-6],[6,-1],[2,-6],[-4,-4],[-9,-19],[3,-22],[-10,-9],[-9,-3],[0,-9],[14,-7],[7,2],[11,9],[13,1]],[[2648,3661],[0,0]],[[5281,2027],[12,16],[6,0],[3,11]],[[5302,2054],[-8,10],[-9,2],[-8,13],[-14,46],[-7,13],[-5,14],[-8,-1],[-4,7],[-11,1]],[[5228,2159],[-17,-3],[-11,11],[-4,-2],[-5,5]],[[5125,2137],[-7,-21],[-5,0]],[[5142,2050],[4,0],[14,14],[26,-1],[2,-13],[19,-7],[3,-5],[9,5],[12,-10],[4,-13],[11,-1],[9,2],[7,-2],[9,12],[10,-4]],[[8081,5444],[-4,-9],[10,-7],[6,-9],[1,10],[-13,15]],[[8052,5425],[-5,-2],[3,-7],[5,1],[-3,8]],[[8094,5409],[0,0]],[[8000,5355],[7,16],[5,0],[9,18],[1,8],[-3,6],[-9,5],[-7,-5],[-7,-14],[-8,-11],[-14,-4],[-4,-11],[7,-7],[23,-1]],[[8140,5363],[-3,9],[-15,28],[-7,2],[-9,9],[-7,-4],[3,-8],[-3,-10],[3,-20],[9,-16]],[[8111,5353],[6,5],[6,-13]],[[8123,5345],[13,-15]],[[8136,5330],[0,7],[6,-3],[-1,10],[-4,1],[3,18]],[[7876,5320],[0,0]],[[8082,5307],[0,0]],[[7983,5319],[-1,-1],[1,-16],[4,2],[-4,15]],[[8090,5296],[-7,3],[3,-8],[6,0],[-2,5]],[[7906,5311],[-4,12],[1,4],[-8,2],[-10,-5],[-1,-5],[6,0],[0,-18],[9,-13],[9,7],[-2,16]],[[8117,5295],[-5,13],[-4,-6],[9,-14],[0,7]],[[8108,5292],[-5,1],[-5,16],[-9,-2],[7,-12],[7,-8],[5,5]],[[8524,5298],[-8,-1],[5,-11],[3,12]],[[7930,5297],[-1,-7],[5,-5],[-4,12]],[[7973,5290],[0,0]],[[8126,5284],[16,4],[-1,8],[-18,6],[-3,-4],[6,-14]],[[8217,5282],[7,2],[-2,7],[-6,-4],[1,-5]],[[8077,5311],[-9,7],[-11,1],[-12,9],[-8,-5],[-1,6],[-8,1],[-14,-8],[-11,-1],[-7,4],[-2,-16],[2,-7],[10,-9],[10,-3],[19,13],[6,7],[13,-8],[8,10],[5,-1],[3,-10],[12,-16],[1,10],[-6,9],[0,7]],[[8301,5294],[-3,2],[7,-15],[5,2],[-9,11]],[[7950,5294],[6,-2],[8,3],[5,-2],[4,9],[1,16],[-10,0],[-8,7],[-2,-10],[-5,9],[-9,6],[-23,9],[-7,-5],[1,-27],[9,-10],[12,4],[6,16],[5,1],[7,-8],[-11,-14],[-3,-8],[5,-7],[6,2],[3,11]],[[7873,5285],[7,12],[-1,5],[-9,9],[-4,13],[-3,0],[-1,-15],[-6,-8],[-8,-5],[-2,-13],[13,4],[5,-7],[9,5]],[[8272,5273],[-1,6],[-5,-8],[1,-7],[5,2],[0,7]],[[8188,5257],[-8,11],[-1,5],[-12,-4],[-7,6],[1,-10],[4,-8],[7,2],[11,-8],[5,6]],[[8205,5254],[0,0]],[[8514,5292],[-7,7],[-17,1],[0,-9],[9,-36],[8,-11],[7,-4],[7,1],[6,17],[-6,21],[-7,13]],[[8314,5276],[-6,0],[-1,-8],[5,-23],[11,-20],[1,19],[-3,14],[-6,10],[-1,8]],[[8332,5230],[0,0]],[[7844,5226],[0,0]],[[8240,5229],[0,0]],[[8021,5225],[0,0]],[[7828,5224],[-10,7],[-12,0],[-9,-5],[0,-8],[10,-7],[25,0],[3,7],[-7,6]],[[7871,5217],[-5,-1],[1,-6],[5,-1],[3,6],[-4,2]],[[8407,5204],[0,0]],[[7590,5198],[0,0]],[[8408,5192],[0,0]],[[8411,5186],[0,0]],[[8403,5186],[-5,22],[-4,5],[-4,-8],[2,-20],[-1,-13],[12,14]],[[7649,5161],[1,7],[7,5],[13,5],[4,-2],[7,15],[4,15],[17,5],[6,-4],[8,6],[11,-1],[6,3],[5,-8],[5,-21],[5,0],[6,14],[10,-2],[6,7],[7,2],[2,5],[13,2],[2,15],[5,7],[0,14],[13,10],[14,-1],[9,-4],[9,9],[1,12],[-2,23],[6,21],[-9,-9],[-9,-2],[-19,-17],[-16,8],[-9,-4],[-24,-2],[-25,-9],[-15,-15],[-24,-12],[-13,-1],[-9,7],[-14,-4],[-8,-9],[-15,-7],[-17,-4],[-1,-8],[3,-11],[-19,-12],[-16,0],[3,-10],[3,7],[5,-18],[3,-1],[3,-20],[3,-10],[13,5],[13,3],[3,-10],[10,6]],[[8112,5159],[0,0]],[[8014,5178],[-2,-3],[0,-27],[2,7],[0,23]],[[7796,5150],[0,0]],[[8355,5152],[-4,4],[-1,-18],[5,14]],[[8409,5144],[0,28],[-3,10],[-6,-2],[-8,-18],[4,-1],[2,-17],[7,-16],[4,16]],[[8358,5155],[5,-34],[1,15],[-5,10],[-1,9]],[[7509,5131],[-7,-9],[3,-2],[6,6],[-2,5]],[[8100,5119],[0,0]],[[8056,5128],[-2,2],[-5,-12],[3,-11],[4,5],[0,16]],[[8073,5119],[-4,7],[-6,-1],[3,-22],[-2,-13],[10,-9],[2,18],[-4,12],[1,8]],[[8088,5077],[0,16],[-4,-4],[-2,12],[6,21],[-6,4],[-5,16],[-6,-7],[5,-20],[1,-15],[0,-19],[4,-10],[7,6]],[[8376,5060],[0,0]],[[8089,5052],[-2,7],[-5,-5],[1,-10],[5,1],[1,7]],[[8237,5022],[0,0]],[[8229,5027],[-8,5],[-2,-5],[10,-10],[0,10]],[[8241,5019],[0,0]],[[7900,5015],[0,0]],[[8210,5006],[0,0]],[[7897,5038],[-7,11],[-1,-26],[1,-15],[6,-6],[1,36]],[[8190,4993],[10,17],[0,14],[-8,8],[-8,3],[-12,-12],[-5,-11],[0,-17],[5,2],[9,-5],[9,1]],[[8221,4984],[0,0]],[[7635,4988],[0,0]],[[7650,4982],[0,0]],[[8270,4980],[7,7],[10,0],[6,9],[3,15],[5,10],[-2,16],[-22,-22],[-4,-8],[-9,-1],[-2,8],[-14,-7],[0,-5],[-6,3],[-3,8],[-6,-1],[-8,-15],[-6,20],[-1,-16],[9,-21],[16,0],[6,-2],[3,6],[9,-8],[9,4]],[[7456,4999],[-7,-12],[1,-12],[7,15],[-1,9]],[[7672,4988],[-1,8],[-6,5],[-4,-4],[-6,3],[-1,-17],[3,-20],[11,2],[6,13],[-2,10]],[[7449,4973],[-6,2],[1,-15],[5,13]],[[8398,4937],[0,0]],[[7439,4950],[-6,-5],[0,-14],[6,19]],[[8167,4956],[-2,-2],[-3,-22],[4,-1],[-1,9],[2,16]],[[8106,4928],[0,0]],[[8167,4918],[8,2],[-10,6],[-15,1],[0,-8],[17,-1]],[[8087,4920],[0,0]],[[8287,4913],[1,14],[-4,6],[-10,-3],[-4,-7],[7,-7],[10,-3]],[[8137,4913],[5,0],[5,10],[-9,4],[-5,-3],[-11,7],[-3,-9],[2,-10],[8,-3],[8,4]],[[8429,4907],[14,2],[11,5],[10,1],[4,4],[-7,4],[-11,1],[-10,-8],[-11,-5],[0,-4]],[[7692,4908],[0,0]],[[7612,4911],[3,12],[1,18],[5,16],[12,6],[-6,19],[2,10],[-19,-14],[-1,-19],[-5,-18],[-7,-6],[-5,3],[-6,-9],[7,-9],[0,-9],[6,-8],[3,12],[1,-11],[7,0],[2,7]],[[8099,4913],[-3,-1],[2,-10],[1,11]],[[8226,4911],[-17,4],[-4,-5],[1,-11],[6,-7],[7,6],[7,13]],[[8088,4883],[1,12],[6,-9],[3,6],[-5,10],[-3,-4],[-1,9],[-2,-17],[-8,17],[-2,-9],[3,-15],[8,0]],[[7713,4883],[-7,4],[1,-15],[6,1],[0,10]],[[8415,4879],[-3,0],[1,-10],[2,10]],[[7420,4918],[-8,-7],[-7,-27],[2,-13],[5,-3],[3,8],[8,33],[-3,9]],[[8305,4891],[-5,0],[-3,-8],[-1,-13],[6,-4],[5,5],[-2,20]],[[8302,4860],[-2,5],[-12,3],[2,-5],[12,-3]],[[8426,4853],[15,4],[10,20],[1,6],[-11,0],[-4,-20],[-3,3],[-8,-13]],[[8202,4860],[-4,-1],[3,-8],[1,9]],[[8294,4846],[0,0]],[[8050,4839],[0,0]],[[8582,4965],[0,12]],[[8582,4977],[0,204],[-3,15],[3,17],[0,127]],[[8582,5340],[-9,-15],[-2,-7],[-18,-36],[-17,4],[-2,-11],[-9,16],[-2,-4],[2,-16],[4,-16],[-8,-19],[0,-5],[7,-1],[-9,-8],[-3,-9],[7,-3],[-4,-13],[-8,-16],[-4,-23],[3,-6],[-9,-10],[0,-12],[-21,-26],[-6,-5],[-13,-6],[-18,-17],[-15,-5],[-7,1],[-12,-15],[-1,-14],[-13,-1],[-2,-7],[-6,0],[-7,-14],[-1,-15],[5,-15],[-4,2],[-2,16],[-6,21],[0,7],[-5,12],[-8,2],[-6,-22],[4,-9],[-1,-8],[-8,-16],[-8,-11],[-6,-2],[-2,-7],[7,-6],[14,6],[8,-18],[7,-1],[12,9],[1,-10],[4,-2],[-3,-7],[4,-11],[-6,5],[-21,5],[-21,-5],[-6,-15],[-1,-21],[-6,-1],[-12,-9],[-7,4],[0,-10],[6,-16],[0,-9],[15,-8],[9,-15],[11,-6],[9,4],[17,18],[14,1],[4,6],[-1,9],[5,18],[0,9],[-4,14],[1,28],[9,36],[0,-14],[3,-4],[4,24],[3,-1],[2,17],[5,8],[8,2],[14,-22],[3,-14],[7,-10],[4,-18],[13,-4],[9,-10],[-1,-11],[7,-9],[12,-11],[23,17],[23,25],[11,8],[8,0],[4,4],[9,1],[3,9],[7,0]],[[7568,4834],[2,6],[-1,10],[-4,3],[-3,-11],[6,-8]],[[8209,4834],[4,8],[-3,8],[6,5],[2,7],[-3,4],[-4,-7],[-5,3],[1,-10],[-5,-8],[1,-9],[6,-1]],[[8201,4844],[-4,1],[0,-14],[5,1],[-1,12]],[[7547,4835],[-7,1],[2,-8],[5,7]],[[8300,4815],[5,2],[9,10],[-3,10],[-8,-2],[-7,-15],[-2,0],[8,19],[-4,2],[-2,-9],[-12,-5],[1,-6],[15,-6]],[[7401,4846],[-5,0],[4,-18],[-4,-13],[4,1],[3,14],[-2,16]],[[7576,4825],[7,6],[-3,3],[-6,-7],[-7,-1],[3,-12],[6,11]],[[8264,4826],[0,0]],[[8206,4816],[0,0]],[[7574,4812],[0,0]],[[7535,4784],[-5,0],[4,-9],[1,9]],[[8205,4778],[0,0]],[[8204,4770],[0,0]],[[7540,4777],[0,0]],[[7550,4769],[0,0]],[[7561,4767],[0,0]],[[7528,4772],[-1,2],[-15,-10],[3,-14],[4,8],[8,8],[1,6]],[[7539,4755],[0,0]],[[7532,4765],[-3,1],[-10,-11],[2,-7],[8,9],[3,8]],[[7555,4747],[4,1],[-3,10],[-3,-5],[2,-6]],[[7570,4745],[3,7],[-3,14],[-3,-11],[-5,2],[3,-10],[5,-2]],[[7511,4758],[-5,-9],[0,-14],[6,9],[-1,14]],[[7374,4731],[12,28],[-1,20],[-6,2],[-2,-14],[-5,-6],[-3,-14],[-6,-14],[6,-7],[5,5]],[[7513,4731],[0,8],[-6,-8],[-6,-2],[-1,-7],[12,6],[1,3]],[[8135,4758],[-14,32],[-18,8],[-13,-1],[-5,-10],[-22,0],[-13,3],[-9,-4],[-14,4],[-12,-5],[-6,4],[-6,17],[-3,14],[0,20],[2,13],[5,14],[7,8],[4,19],[10,2],[13,-32],[13,5],[9,-10],[16,0],[-2,-6],[10,-5],[6,5],[2,7],[-1,11],[-5,2],[-5,-8],[-7,4],[-8,24],[-7,12],[-12,8],[-7,12],[-6,-4],[0,6],[6,12],[7,10],[7,25],[6,9],[3,17],[-3,4],[-1,20],[10,17],[2,9],[3,-1],[3,17],[-19,8],[-5,7],[0,13],[-13,-5],[-3,-10],[4,-28],[-8,-10],[-13,-23],[5,-18],[1,-19],[-2,-12],[-10,0],[-11,16],[4,23],[0,23],[-1,20],[1,30],[-3,31],[3,19],[-13,5],[-6,7],[-8,-10],[-2,-12],[5,-25],[2,-20],[1,-28],[-5,-16],[-1,-17],[-13,4],[-1,-3],[-3,-19],[1,-18],[-2,-7],[9,-14],[2,-20],[5,-18],[-1,-9],[1,-24],[5,-20],[5,-13],[4,11],[-4,-45],[4,-4],[-1,-15],[6,-18],[1,-8],[6,-16],[7,9],[6,-12],[3,-13],[6,-4],[10,6],[4,9],[7,-2],[8,4],[12,2],[7,8],[7,-5],[22,6],[11,-11],[8,-12],[2,-9],[5,-4],[6,-14],[5,4],[1,8],[-3,7],[-6,22]],[[7490,4695],[3,8],[-5,13],[-4,-2],[-1,-15],[7,-4]],[[8214,4766],[5,-1],[1,-10],[6,-7],[0,-9],[10,-14],[5,0],[0,26],[-10,12],[-2,10],[11,13],[2,11],[4,6],[-12,-10],[-13,-5],[-2,2],[-1,22],[6,31],[4,14],[5,10],[-10,-11],[-11,-31],[1,-26],[-4,-12],[0,-15],[-4,-29],[4,-12],[-1,-6],[3,-16],[9,-19],[3,1],[-5,14],[4,12],[0,21],[-11,21],[3,7]],[[7369,4696],[-6,-9],[5,1],[1,8]],[[8234,4697],[-4,1],[-3,-15],[4,-10],[7,-7],[3,7],[-4,21],[-3,3]],[[8149,4662],[0,0]],[[7345,4679],[-20,-23],[2,-9],[16,23],[2,9]],[[7690,4648],[0,0]],[[7604,4650],[-2,-11],[4,5],[-2,6]],[[7618,4633],[0,0]],[[7934,4626],[-4,-8],[5,1],[-1,7]],[[8156,4617],[-4,-1],[-1,-16],[5,17]],[[8190,4598],[0,0]],[[8186,4592],[0,0]],[[7940,4574],[2,8],[-6,3],[-2,-10]],[[7934,4575],[6,-1]],[[7675,4603],[-6,-1],[4,-6],[-5,-3],[-2,-11],[7,-10],[3,14],[-1,17]],[[7932,4575],[-3,5],[7,16],[0,9],[-6,-5],[-2,6],[-7,2],[6,13],[-1,10],[7,8],[7,30],[4,9],[0,10],[-6,10],[10,23],[13,18],[9,20],[-5,8],[-16,-2],[-8,-13],[1,15],[-5,6],[-7,29],[-1,32],[3,26],[-9,8],[-7,16],[-6,4],[-14,30],[4,0],[0,15],[-3,5],[6,4],[0,18],[-5,0],[0,18],[-2,8],[-4,1],[3,8],[-3,6],[-5,21],[-35,33],[-2,-3],[-1,-24],[-2,-18],[-2,6],[-10,-12],[-8,10],[-5,-2],[0,-13],[-8,3],[-8,-18],[-2,15],[-10,12],[-10,-5],[-8,12],[-4,1],[0,-31],[-13,-4],[-12,8],[-6,-3],[-4,-7],[-7,5],[-6,-60],[-4,-5],[2,-12],[-2,-27],[-4,-10],[-10,-8],[-3,1],[-2,-9],[2,-5],[-6,-11],[2,-25],[2,-3],[-9,-18],[-2,-32],[5,-31],[6,-15],[2,-13],[8,-6]],[[7711,4698],[-2,8],[3,16],[4,10],[14,26],[6,8],[13,-10],[7,-1],[14,3],[11,-14],[1,-12],[8,-7],[13,0],[2,8],[18,10],[7,-10],[13,-4],[4,3],[5,-23],[4,-8],[-2,-15],[10,-14],[-2,-12],[5,-19],[6,-1],[3,-23],[-1,-11],[1,-18],[3,-14],[6,-9],[7,-1],[8,3],[2,-4],[17,2],[13,10]],[[8189,4583],[-5,-2],[4,-11],[-2,-5],[1,-12],[3,4],[1,11],[-2,15]],[[7346,4514],[10,-3],[10,4],[10,0],[10,19],[2,13],[7,14],[0,13],[11,15],[3,10],[11,10],[16,23],[7,16],[4,15],[7,13],[2,9],[7,8],[5,10],[-2,-14],[7,-4],[7,14],[5,19],[4,1],[11,13],[3,11],[2,14],[10,15],[11,5],[3,10],[-8,11],[3,1],[12,-13],[4,2],[6,11],[3,13],[-10,14],[-1,10],[3,3],[-2,9],[3,11],[11,13],[12,3],[4,45],[8,13],[1,11],[-5,9],[1,12],[9,-14],[11,1],[5,7],[13,35],[0,6],[-5,14],[-1,16],[2,6],[-2,17],[1,51],[-2,38],[-5,7],[-8,-14],[-6,10],[-3,0],[-10,-12],[-1,7],[2,15],[-9,-12],[-15,-35],[-12,-15],[-4,-9],[-9,-11],[-11,-19],[-11,-32],[-9,-12],[-6,-12],[-8,-26],[-4,-3],[-8,-24],[-1,-18],[-10,-37],[-5,-29],[-12,-28],[-7,-24],[-11,-9],[-8,-44],[-6,-39],[-4,-11],[-16,-20],[-8,-7],[-3,-28],[-7,-7],[-10,-35],[-5,-7],[-8,-4],[-8,-17],[-7,-11],[-11,-23],[-6,-18],[-4,-18],[0,-16],[5,-4],[6,1],[14,18],[10,4]],[[7315,4480],[0,0]],[[4544,1694],[-6,8],[-5,-1],[8,-18],[4,-1],[-1,12]],[[7274,4422],[-2,4],[-4,-25],[4,-3],[3,16],[-1,8]],[[7270,4391],[0,0]],[[7262,4361],[0,0]],[[7263,4351],[0,0]],[[6696,4339],[0,0]],[[7253,4340],[0,0]],[[7243,4289],[0,0]],[[7235,4207],[-3,1],[-1,-12],[5,-8],[0,11],[-1,8]],[[6688,4170],[0,0]],[[7241,4160],[0,0]],[[7249,4122],[0,0]],[[7241,4074],[0,0]],[[7242,4151],[-2,0],[-4,-20],[4,-18],[3,-1],[-2,-9],[3,-31],[1,-26],[5,-11],[0,19],[-4,16],[2,5],[1,17],[-4,7],[1,15],[-4,10],[2,5],[-2,22]],[[6853,2979],[0,0]],[[6870,3024],[1,1]],[[6886,3036],[0,0]],[[6886,3036],[3,5]],[[6916,3078],[-3,-1],[-11,16],[-7,27],[0,14],[-3,5],[-3,16],[13,13],[0,-4],[19,19],[8,16],[11,11],[2,-3],[14,13],[7,0],[1,10],[16,9],[3,-6],[12,5],[7,-6],[11,8],[4,5],[1,13],[17,17],[8,-6],[4,4],[2,10],[6,-3],[7,3],[12,10],[10,-8],[1,8],[5,4],[4,-4],[6,2],[6,-3],[4,3],[4,-11],[1,-14],[-5,-15],[2,-28],[3,-17],[-2,0]],[[7369,3190],[0,15],[-10,15],[-2,15],[6,15],[-7,0],[-5,-10],[-17,8],[-5,9],[-12,17],[-9,9],[-2,7],[2,24],[-3,16],[-11,22],[-2,11],[5,9],[-7,24],[-5,18],[-4,26],[-13,-8],[-10,0],[3,28],[-3,29],[-5,2],[-3,16],[4,20],[-6,21],[-6,-9],[-6,10]],[[7140,3543],[0,25],[-10,4],[0,-26],[-2,-5],[-2,17],[1,10],[-4,1],[-5,-7],[-2,7],[-4,-3],[4,-27],[-10,25],[-18,10],[-7,10],[-3,15],[2,9],[1,20],[-3,4],[-2,12],[-7,9],[-6,15],[-20,13],[-3,-12],[-6,8],[-2,10],[7,-2],[-6,7],[-12,22],[-9,25],[-10,23],[-15,16],[-10,23],[-17,19],[-8,17],[2,11],[-6,18],[-11,9],[-13,-2],[-4,23],[-5,12],[-9,-8],[-10,10],[-6,23],[-1,14],[4,29],[-3,21],[7,41],[-4,-13],[-3,11],[8,10],[-3,38],[-3,14],[-8,27],[-4,39],[4,2],[0,55],[-9,-1],[-6,4],[-1,13],[-8,20],[-2,14],[3,7],[7,2],[4,6],[-12,-5],[-16,10],[-6,12],[-4,29],[-15,18],[-6,-4],[-9,-15],[-12,-29],[-2,-16],[-4,-15],[-3,-28],[4,6],[1,17],[2,0],[-3,-22],[-12,-50],[-2,-16],[-9,-37],[-9,-20],[-7,-30],[-6,-29],[-2,-34],[-5,-22],[0,-10],[-5,-20],[-10,-29],[-4,-19],[4,0],[-5,-10],[-8,-28],[-5,-23],[-4,-67],[-3,-17],[-6,-44],[5,-19],[-1,-8],[-4,10],[-1,-16],[5,-1],[-5,-5],[-3,-27],[1,-14],[4,-35],[-1,-25],[-4,-5],[-2,-15],[10,-15],[-12,0],[0,-25],[7,-5],[-17,-2],[4,5],[-2,9],[-6,12],[4,3],[2,13],[-7,23],[-27,24],[-9,0],[-7,-7],[-12,-20],[-8,-18],[-15,-27],[-6,-12],[0,-11],[4,-2],[4,8],[8,-8],[3,0],[14,-10],[7,-22],[-8,1],[-13,11],[-12,-5],[-16,-20],[-6,-21],[9,-17],[-15,15],[-2,-15]],[[6559,3441],[9,-6],[7,0],[0,-19],[23,1],[5,6],[8,-1],[2,-6],[13,-7],[3,10],[4,-1],[6,-10],[-3,-3],[4,-12],[-7,-30],[-4,-13],[-1,-15],[-9,0],[-6,-12],[2,-35],[-3,-4],[-9,-2],[-7,-9],[2,-23],[10,-17],[6,-23],[5,-7],[4,-3],[5,5],[3,13],[4,1],[8,-7],[10,-2],[9,-5],[3,-13],[5,-10],[4,-20],[16,-19],[11,-33],[2,-19],[13,-9],[4,-8],[-2,-8],[12,-30],[9,-8],[-3,-13],[2,-16],[-2,-10],[3,-11],[17,-14],[3,-8],[-10,-11],[-7,1],[-3,-10],[1,-8],[-10,0],[-1,-13],[-8,-14],[5,-13],[-5,-12],[1,-7],[6,-6],[0,-6],[-8,-1],[1,-13],[-5,-5],[4,-19],[9,-6],[19,7],[7,0],[14,8],[9,-10],[12,-5],[4,1],[4,-8],[7,-6],[1,-7]],[[6806,2793],[21,-22]],[[6827,2771],[0,0]],[[6863,2901],[0,4]],[[6866,2940],[1,3]],[[7357,5518],[0,0]],[[7356,5517],[0,0]],[[7603,5420],[0,0]],[[6680,5240],[0,0]],[[4390,1710],[0,0]],[[4493,1700],[-3,8],[6,21],[-1,12],[3,12],[1,14],[-5,15],[0,7],[-7,10],[4,7],[-7,3],[-27,5],[-2,5],[-15,12],[-7,-5],[0,11],[-12,7],[-13,5],[-5,-2],[-10,3],[9,-12],[-17,5],[10,-13],[-9,3],[-8,-5],[12,-16],[-12,0],[5,-8],[12,2],[-4,-9],[9,-9],[22,-7],[-6,-4],[-2,5],[-9,2],[-4,-2],[-6,5],[10,-19],[-2,-2],[7,-12],[8,-3],[-6,-3],[-10,1],[-2,-5],[-14,-5],[-1,-8],[11,-3],[-5,-7],[9,-5],[0,-4],[-9,1],[2,-11],[-3,-1],[-1,-12],[18,-1],[5,5],[4,-5],[12,4],[-1,-7],[5,-8],[6,-1],[2,-9],[-9,3],[-8,-4],[11,-12],[-1,-8],[3,-7],[8,-3],[12,1],[6,-10],[11,7],[-7,8]],[[6227,3265],[-8,10],[-13,9],[-4,-4],[13,-10],[0,-7],[4,2],[9,-5],[-1,5]],[[6024,2601],[0,17],[5,28],[9,8],[16,4],[7,6],[3,11],[6,8],[16,16],[18,7],[11,0],[34,-14],[15,-4],[-8,5],[11,0],[-3,-29]],[[6164,2664],[7,1],[16,-10],[4,-16],[13,-15],[5,-3],[20,1],[5,-10],[21,2],[4,14],[15,6],[10,12],[16,-1],[12,9],[3,11],[6,9],[10,8],[7,12],[4,11],[22,0],[2,26],[-1,12],[3,21]],[[6363,3080],[-8,15]],[[6355,3095],[14,31],[7,26],[9,19],[15,9],[4,9],[5,-1],[2,42],[-2,15],[12,0],[4,8],[-3,7],[-1,19],[-12,1],[-9,5],[-5,12],[-12,8],[-2,23],[-2,2],[-2,34]],[[6377,3364],[-5,5],[-21,-10],[-4,-9],[-4,7],[-10,-4],[-11,-1],[-4,-5],[-12,3],[-7,-7],[-13,-1],[-11,-7],[-16,-5],[-4,-15],[-3,-20],[-3,-30],[-7,-12],[-11,-5],[-11,10],[-8,2],[-6,13],[-4,-1],[-15,17],[-19,-14],[-10,0],[-6,-6],[-1,-6],[-13,-11],[-9,-12],[-5,-15],[-13,-12],[-14,-5],[-8,-13],[-4,-22],[-2,-16],[-5,-8],[1,-8],[-6,-8],[1,-8],[-4,-12],[-10,-21],[-3,-16],[-3,-1],[-11,11],[-16,-20],[7,-3],[-3,-5],[-7,10],[1,12],[-3,5],[-7,4]],[[6015,3089],[-4,-4],[0,-9],[-11,-16],[0,-30],[-9,0],[0,-24],[4,-22],[-9,-21],[-4,-15],[-7,-3],[-15,-21],[-8,-8],[-6,0],[2,-15],[-7,-22],[-4,1],[-10,-21],[4,-11],[-3,-15],[1,-10],[5,1],[0,-10],[8,-16],[6,-6],[-1,-11],[-5,-9],[3,-12],[6,-4],[-2,-4],[-13,-1],[-7,-10],[-3,0],[-3,-20],[-5,-4],[-2,-16],[-3,-5],[-3,-20]],[[5910,2676],[0,-9],[-6,-8],[1,-16],[-7,-9],[-4,-1],[7,-25],[-5,-6],[0,-24],[-3,-5],[0,-12],[-4,-15],[10,-1],[2,-15],[4,-5],[6,6]],[[6015,3089],[-6,1],[-6,-5],[-4,3]],[[5999,3088],[-6,-5],[-12,0],[-7,8],[-5,23],[-10,25]],[[5959,3139],[-5,2],[-46,-7],[-10,-14],[-25,-38],[-11,-13],[-27,-44],[-44,-47],[-13,-7],[-25,-6]],[[5753,2965],[5,-7],[-3,-7],[-4,3],[0,-10],[-9,-51]],[[5742,2893],[53,-55],[10,-6],[6,-22],[0,-27],[4,-30],[-3,-16],[1,-17],[4,-8],[10,-5],[16,-29]],[[5843,2678],[10,-15],[9,0],[13,7],[9,1],[4,-5],[6,4],[1,15],[10,-11],[5,2]],[[4234,1001],[9,-2],[7,-6],[11,-1],[-9,5],[-6,11],[13,6],[-5,12],[12,0],[3,6],[-5,6],[9,-4],[15,7],[-5,9],[4,8],[-3,2],[6,6],[-9,6],[-2,12],[-5,4],[-7,-2],[-1,9],[-6,10],[-11,7],[-13,2],[-16,8],[-16,15],[-33,8],[-3,11],[-20,7],[-16,-2],[-15,-5],[-12,-2],[-11,-10],[-16,-9],[-8,2],[-33,2],[-1,-15],[5,5],[13,-4],[11,-19],[-8,5],[0,-14],[-6,1],[-5,-6],[3,-4],[-7,-5],[-24,-2],[-15,5],[-5,-9],[26,-4],[9,-4],[5,1],[20,-2],[3,-8],[-7,4],[-13,-4],[17,-12],[-3,-5],[-8,1],[-3,-4],[-14,-2],[-28,10],[-16,-7],[4,-4],[8,-1],[-2,-8],[2,-2],[12,6],[8,-5],[-12,-2],[1,-5],[6,1],[-7,-11],[9,-7],[12,7],[0,5],[11,-1],[0,7],[5,-2],[0,-9],[-12,-6],[0,-5],[10,0],[-5,-5],[-12,0],[6,-6],[13,1],[28,23],[-2,4],[6,5],[-2,8],[-8,1],[6,7],[7,19],[7,-17],[5,-6],[8,5],[3,-8],[-1,-14],[5,-8],[5,3],[10,14],[6,2],[2,-18],[15,-6],[16,17],[3,9],[2,-6],[-7,-15],[4,-4],[8,1],[10,11],[11,-14],[11,4],[9,-8],[-2,-13],[13,-2],[9,10],[4,8]],[[5660,2930],[-6,5],[0,14]],[[5654,2949],[-10,-8],[-4,5],[-4,17],[2,20],[6,3],[-5,5],[-4,17],[6,1],[10,-8]],[[5651,3001],[-3,15],[3,5],[-9,42],[0,16],[-4,34]],[[5638,3113],[-3,4]],[[5617,3018],[8,-19],[-1,-3]],[[5624,2996],[9,-35],[5,-37],[3,-14]],[[5641,2910],[8,0],[13,-20]],[[5662,2890],[0,19],[2,7],[-4,14]],[[5001,2698],[0,0]],[[5099,2614],[-10,25],[-3,14],[0,12],[3,5],[2,13],[-5,10],[0,9],[-9,-1],[-8,-5],[-10,-18],[-7,0],[-15,-14],[-5,-8],[-7,-5],[-8,-1],[-5,-11],[3,-16],[5,-7],[3,7],[6,-1],[3,-7],[17,13],[7,-4],[7,1],[10,-3],[4,-5],[9,1],[13,-9],[0,5]],[[4902,2565],[0,0]],[[5053,2471],[0,0]],[[4896,2451],[0,0]],[[4934,2460],[5,22],[-5,14],[2,10],[-4,53],[-14,-4],[-1,11],[-4,8],[-7,-1],[-6,-16],[-1,-16],[2,-15],[3,-5],[-5,-8],[2,-19],[-8,-27],[2,-8],[3,4],[10,-3],[8,-13],[8,-5],[5,3],[5,15]],[[4955,2347],[1,8],[-9,-6],[8,-2]],[[5047,2136],[-9,11],[0,6],[7,2],[-4,8],[3,4],[-1,9],[9,12],[-5,1]],[[5047,2189],[-2,-10],[-5,3],[-7,-3],[-5,8],[-15,10],[-4,-2],[-3,14],[4,12],[4,4],[-8,14],[2,17],[5,17],[12,12],[10,14],[6,4],[6,13],[8,40],[5,11],[19,26],[9,7],[24,0],[3,10],[-7,8],[3,11],[30,21],[11,13],[13,11],[10,16],[5,15],[-4,17],[-8,-7],[-6,-20],[-13,-3],[-6,-10],[-7,3],[-7,18],[-4,16],[2,13],[7,4],[8,11],[1,22],[-2,5],[-9,1],[-6,10],[0,18],[-8,9],[-6,18],[-9,0],[-2,-6],[1,-13],[4,-2],[1,-18],[3,-6],[6,-2],[-5,-35],[-9,-36],[-3,-4],[-8,-1],[-10,-10],[-1,-18],[-4,-6],[-12,4],[4,-8],[-4,-5],[-6,0],[-10,-24],[-14,-3],[-4,3],[-7,-10],[-6,-3],[-12,-20],[-3,-8],[-8,-8],[-5,-12],[-9,-7],[-4,2],[0,-9],[-10,-15],[-2,-8],[-6,-2],[1,-10],[-6,-21],[-2,-20],[-6,-9],[-9,-5],[-12,-13],[-10,-5],[-10,4],[-13,25],[-17,8]],[[5011,2285],[0,0]],[[2520,3752],[10,4],[6,7],[10,7],[3,10],[-8,6],[-9,-6],[-3,7],[-6,0],[-1,8],[-7,-8],[-9,-2],[-7,-17],[-9,-6],[4,-9],[9,-5],[17,4]],[[4610,1980],[0,0]],[[5753,2965],[-4,6],[-41,23],[-15,7],[28,57],[-9,8],[-4,21],[-21,8],[-8,21],[-12,18],[-31,-10]],[[5636,3124],[2,-11]],[[5651,3001],[3,-15],[-1,-13],[1,-24]],[[5660,2930],[15,20],[13,4],[35,-39],[19,-22]],[[8107,3417],[-6,-1],[2,-7],[4,8]],[[8117,3403],[0,9],[-4,-4],[4,-5]],[[8150,3390],[-4,1],[0,-8],[4,7]],[[8615,3282],[0,0]],[[8229,3280],[-11,12],[-2,17],[-4,3],[2,-19],[9,-13],[5,-13],[3,3],[-2,10]],[[8249,3219],[-3,-1],[2,-10],[1,11]],[[8258,3195],[0,0]],[[8262,3190],[-3,5],[-5,-7],[4,-6],[9,-3],[-5,11]],[[8294,3071],[-5,0],[2,-11],[5,6],[-2,5]],[[8304,3064],[-3,1],[2,-16],[4,-8],[-3,23]],[[8269,2991],[0,0]],[[8288,2948],[-4,-3],[6,-4],[-2,7]],[[8279,2959],[-2,2],[0,-20],[5,0],[0,10],[-3,8]],[[8240,2926],[5,2],[-3,10],[-2,-12]],[[8550,2911],[0,0]],[[8251,2924],[-2,-8],[3,-10],[2,9],[-3,9]],[[8263,2901],[0,0]],[[8271,2871],[0,0]],[[8310,2880],[5,2],[6,-5],[4,6],[-5,16],[10,1],[-2,8],[5,13],[-8,17],[-6,27],[-1,26],[-4,15],[-7,-2],[0,11],[-11,14],[3,-15],[-2,-15],[2,-10],[-4,-1],[-3,8],[3,18],[-2,5],[-10,-6],[-2,-7],[4,-2],[1,-9],[-4,-10],[0,-19],[4,-2],[7,-18],[2,-10],[-7,-27],[-4,-5],[-4,4],[2,15],[5,2],[-1,6],[-10,-1],[-5,9],[1,-9],[-4,-9],[0,-10],[4,10],[5,2],[-2,-8],[-10,-14],[3,-8],[5,3],[-1,-7],[15,-11],[3,-12],[7,-5],[6,3],[3,12],[4,4]],[[8340,2860],[0,0]],[[8349,2850],[0,0]],[[8257,2850],[-3,-2],[1,-10],[4,2],[-2,10]],[[8398,2842],[8,2],[1,22],[-12,23],[-2,11],[-6,-11],[-9,-4],[-10,9],[-8,30],[-3,5],[-7,-1],[2,-8],[-6,-1],[-2,-8],[3,-13],[-3,-8],[-11,5],[10,-10],[7,-10],[4,-18],[4,-6],[6,10],[9,-3],[5,-5],[-1,-10],[13,-7],[8,6]],[[8398,2829],[0,0]],[[8414,2840],[-3,5],[-4,-5],[4,-10],[5,-4],[-2,14]],[[8260,2836],[-3,1],[1,-15],[4,-5],[-2,19]],[[8540,2815],[0,0]],[[8371,2730],[-4,1],[1,-9],[3,8]],[[8509,2637],[-3,-15],[7,-14],[-1,14],[3,1],[-6,14]],[[8589,2432],[6,-2],[-1,9],[0,31],[1,6],[10,18],[5,26],[0,24],[-3,18],[-6,8],[-3,13],[-1,15],[-4,7],[-8,2],[-4,11],[-1,11],[3,15],[0,33],[-5,13],[-6,23],[0,25],[7,19],[-7,4],[-5,9],[-1,17],[-10,10],[-4,8],[-3,-3],[1,-20],[7,-15],[-7,-6],[-5,15],[3,9],[-3,6],[-5,-9],[-9,5],[-2,22],[-5,12],[-4,-4],[1,-16],[3,-3],[-5,-6],[-4,2],[-11,28],[-9,-3],[-15,1],[-7,3],[7,-8],[-1,-3],[-11,3],[-2,-19],[-3,4],[-5,18],[9,12],[-1,10],[-7,2],[-8,9],[-5,19],[-5,12],[-6,4],[-7,-3],[-9,-27],[0,-17],[8,-11],[-1,-9],[-9,2],[-8,-8],[-5,-1],[-10,5],[-9,11],[-9,2],[-12,9],[-13,4],[-7,-7],[-5,8],[-2,22],[-11,-12],[-15,6],[-9,-2],[0,-18],[3,-6],[10,-1],[7,-12],[7,-6],[21,-33],[3,-10],[12,-5],[6,5],[23,-5],[7,-4],[12,-2],[8,-5],[4,13],[13,-2],[8,-12],[-2,-6],[1,-14],[9,-14],[9,-22],[1,-26],[3,-11],[13,-8],[1,5],[-5,9],[-7,6],[3,19],[8,5],[5,-10],[23,-17],[9,-14],[7,-22],[10,-9],[4,-8],[3,-20],[7,-17],[4,-25],[4,-11],[1,-12],[-2,-13],[-6,-2],[6,-25],[-1,-20],[9,-10],[0,-19],[2,-4],[7,2],[2,18],[3,3],[4,-6],[5,3],[4,-12],[-2,-8],[-11,6],[2,-20],[5,0],[5,6]],[[8540,2391],[0,0]],[[8591,2216],[0,0]],[[8585,2204],[0,0]],[[8661,2274],[8,1],[10,9],[11,-2],[13,-20],[-7,32],[4,11],[3,16],[4,1],[5,-6],[5,0],[-9,12],[-5,0],[-9,9],[-11,5],[-9,-3],[-9,6],[-11,17],[-6,15],[-1,14],[-6,4],[-17,-14],[-18,-18],[-12,2],[-12,11],[-5,-9],[-7,-4],[-5,5],[-2,9],[6,11],[6,1],[10,16],[-5,6],[-7,-4],[-6,14],[-8,8],[-4,-5],[0,-10],[3,-13],[-2,-9],[-6,-12],[0,-10],[3,-13],[11,-11],[4,-10],[-3,-11],[3,-6],[9,8],[14,0],[3,-11],[1,-21],[4,-9],[5,-46],[-5,-26],[2,-14],[8,-6],[13,22],[8,18],[10,16],[21,24]],[[6806,2793],[-8,-32]],[[6060,2232],[0,0]],[[6064,2225],[0,0]],[[6129,2200],[0,0]],[[6894,2385],[-8,-13],[-14,-4],[-9,-17],[-8,0],[-8,-5],[-14,1],[-6,-3],[-12,0],[-9,-4],[-11,3],[-25,-1],[-3,7],[-7,-1],[-17,-8],[-16,-15],[-7,2],[-11,11],[-4,24],[2,11],[-5,-6],[-13,-3],[-2,-5],[-13,-7],[-15,-3],[-14,5],[-10,22],[1,6]],[[6636,2382],[-6,4],[-3,8],[-7,0],[-7,12],[-15,11],[-5,8],[-10,8],[0,5],[-8,13],[-6,12],[3,10],[-6,3],[-10,-11],[2,-13],[-5,-10],[-33,3],[-4,-11],[-3,-38],[-13,0],[0,-18],[2,-39],[-8,7],[-9,-25],[-9,-11],[-7,-13],[-13,10],[-34,-5],[-21,6],[-13,2],[-25,-43],[-2,-9],[-23,-22],[-45,-45],[-39,17],[-33,16],[0,211]],[[6221,2435],[-12,4],[-3,-2],[-8,-16],[-8,-23],[-16,-18],[-5,-3],[-13,2],[-11,5],[-16,15],[-5,10]],[[6124,2409],[-1,-19],[5,-19],[-1,-19],[-9,-2],[-5,-5],[-4,2],[-9,-18],[-9,-1],[0,-17],[-10,-28],[-3,-13],[-14,-8],[-2,-15],[17,-2],[7,7],[12,-2],[-7,-5],[-7,-11],[0,-10],[5,-8],[5,-13],[8,-3],[23,0],[15,6],[3,-2],[-9,-9],[-2,-5],[10,-35],[-2,-21],[2,-7],[-2,-11],[-4,-5],[-12,-2],[-10,9],[-12,-6],[-2,-6],[-9,-4],[-10,4],[-10,9],[-4,0],[-12,14],[-19,7],[-2,10]],[[6034,2146],[-20,-15],[1,-9],[11,2],[-4,-13],[-7,-21],[-11,-23],[-19,-5],[-5,3],[-6,-12],[1,-10],[-3,-10],[-10,-6],[-1,-10],[2,-13],[8,-13],[2,-7],[-7,-13],[5,-27],[8,-9],[3,-19],[6,-5],[7,8],[9,17],[7,9],[11,-10],[-5,-35],[5,1],[13,-15],[6,-13],[8,-3],[13,-9],[14,-25],[11,4],[4,9],[9,1],[11,-11],[9,-1],[6,12],[19,0],[6,2],[5,11],[9,5],[13,22],[2,14],[3,-3],[0,-11],[-2,-9],[2,-4],[7,4],[9,10],[10,10],[11,-3],[6,-12],[9,-9],[4,2],[10,-5],[13,10],[6,-3],[5,-9],[14,2],[5,5],[8,14],[19,7],[0,6],[7,-2],[5,-15],[5,-3],[5,9],[9,1],[17,-5],[4,-5],[6,-22],[-6,-12],[-25,-12],[-4,-7],[-7,-7],[0,-5],[24,-17],[1,-7],[-6,-16],[8,-17],[10,-1],[16,3],[1,-10],[-10,-7],[-13,-3],[1,-9],[8,-3],[-1,-5],[-7,2],[-7,-4],[4,-8],[0,-12],[5,-5],[17,6],[3,-3],[13,-1],[16,-5],[3,-4],[23,-5],[5,-5],[13,0],[8,-3],[6,2],[2,-9],[7,-6],[30,-5],[19,-7],[12,-2],[15,-8],[0,-10],[8,-2],[13,-10],[14,2],[13,9],[10,1],[4,-6],[8,-1],[5,10],[6,24],[1,15],[-3,11],[8,6],[20,-4],[3,-6],[5,12],[0,9],[7,-3],[0,-7],[7,2],[7,7],[6,1],[11,-5],[-1,7],[-11,13],[3,15],[7,-8],[11,-2],[7,7],[4,-9],[12,-11],[5,1],[9,-8],[1,-7],[7,-1],[17,-12],[6,-1],[9,-7],[-4,15],[-7,2],[4,12],[16,16],[20,23],[17,36],[19,45],[11,28],[12,35],[6,-8],[6,-2],[0,-11],[6,-8],[7,-1],[2,6],[5,0],[-1,14],[8,-1],[2,13],[13,-2],[4,3],[15,-3],[4,-7],[7,0],[4,-6],[12,3],[10,10],[6,14],[2,14],[21,12],[-1,7],[7,17],[27,9],[14,-16],[-2,12],[3,1],[6,13],[8,6],[3,8]],[[5805,4939],[0,0]],[[5830,4586],[-16,45],[-10,20],[0,214],[16,43],[0,5]],[[5820,4913],[-4,10],[-14,9],[1,10],[-3,11],[-5,8],[-7,1],[-6,8],[0,19],[-2,13],[-7,19],[-2,20],[-11,41],[-5,3]],[[5755,5085],[-7,-10],[-33,-50],[-4,-8],[2,-11],[-1,-15],[-15,-17],[-71,-83],[-17,-18],[-1,0]],[[5608,4873],[0,-57],[7,-36],[7,-15],[5,-16],[6,-6],[-1,-7],[3,-10],[3,-18],[-3,-32],[-4,-25],[-4,-4],[-5,-25],[0,-17],[-7,-9],[-6,-24]],[[5609,4572],[19,-38],[18,-35]],[[6711,2543],[-11,4],[-16,0],[-8,2],[-4,8],[-6,-8],[-8,2],[1,-7],[-6,-1],[-4,-9],[-16,12],[-6,-10],[-10,2],[-18,-2],[-8,3],[-2,-18],[2,-8],[5,3],[0,-10],[13,-6],[13,8],[3,6],[3,-8],[8,-9]],[[6636,2497],[13,-2],[8,7],[8,-6],[7,-11],[4,3],[0,-10],[7,3],[4,-7],[11,-9],[-14,-4],[-8,-10],[-5,1],[0,-8],[-9,-2],[-5,-20],[-4,14],[-4,-2],[0,12],[-5,0],[-12,-7],[-4,-12],[-5,3],[-8,-9],[13,-18],[5,-2],[3,-7],[9,-7],[-9,-5]],[[6630,2521],[0,0]],[[6660,2514],[0,0]],[[6644,2517],[1,-9],[-9,-2],[3,11],[5,0]],[[7536,4198],[0,0]],[[7528,4165],[0,0]],[[7567,4216],[-5,-8],[-9,-3],[-8,5],[-3,-6],[5,-16],[-5,-15],[-5,13],[-7,1],[0,-27],[0,-5],[-5,-14]],[[7525,4141],[-5,-22],[0,-20],[-7,-14],[-1,-19],[-4,-16],[0,-15],[6,-2],[0,-5],[6,-10],[8,-24],[14,-9],[8,3],[11,-2],[5,2],[10,-4],[6,4],[3,8],[3,-7]],[[7588,3989],[2,11],[13,4],[5,9],[6,-7],[-4,-17],[10,-6],[3,-7],[10,15],[8,-6],[5,-10],[3,2],[4,-9]],[[7653,3968],[-3,15],[-2,5],[-1,14],[8,39],[-5,24],[4,27],[-4,15],[-6,-1],[-8,14],[-14,7],[0,14],[-12,-3],[-4,7],[0,20],[9,14],[0,14],[-9,-4],[-2,-7],[-11,3],[-2,6],[-8,-3],[0,11],[-6,10],[-7,0],[-3,7]],[[450,5474],[0,0]],[[337,5139],[0,0]],[[9818,5084],[0,0]],[[9882,5075],[0,0]],[[9909,5072],[0,0]],[[362,5051],[0,0]],[[9913,4996],[0,0]],[[9896,4975],[0,0]],[[9521,4885],[0,0]],[[9375,4866],[0,0]],[[9513,4861],[0,0]],[[9472,4757],[0,0]],[[9472,4738],[0,0]],[[9472,4716],[0,0]],[[9472,4709],[0,0]],[[296,4708],[5,7],[-7,-3],[2,-4]],[[9467,4639],[0,0]],[[9470,4635],[0,0]],[[241,4589],[0,0]],[[2929,3828],[0,0]],[[2927,3822],[0,0]],[[8175,2901],[-5,-5],[5,-8],[9,-5],[7,2],[-1,10],[-8,6],[-7,0]],[[8187,2837],[0,0]],[[8172,2836],[-3,-5],[4,-7],[3,4],[-4,8]],[[8216,2821],[0,0]],[[8170,2815],[-4,-8],[2,-3],[2,11]],[[8223,2810],[0,6],[-5,-1],[-1,-9],[6,4]],[[8242,2811],[-3,3],[-4,-7],[6,-9],[1,13]],[[8177,2713],[0,0]],[[8302,2656],[0,0]],[[8180,2642],[-3,5],[0,-10],[3,5]],[[8232,2591],[7,25],[6,17],[6,12],[10,36],[1,34],[-2,8],[0,16],[5,0],[-4,32],[-6,18],[-11,5],[-10,1],[0,12],[-10,-4],[-2,-5],[-9,4],[1,10],[-3,5],[-3,-9],[-4,6],[3,7],[-4,9],[-5,-5],[2,-12],[-6,9],[-3,10],[-4,-5],[-7,10],[-1,-9],[-6,-10],[7,-1],[2,-8],[-4,0],[-4,-19],[6,-20],[-1,-6],[7,-9],[-2,-16],[-3,-7],[0,-18],[-2,-12],[-9,0],[0,-5],[6,-11],[6,-3],[6,4],[1,6],[4,-5],[-6,-13],[1,-8],[-5,-9],[0,-19]],[[8183,2639],[13,-29],[6,-2],[20,1],[4,-3],[6,-15]],[[5265,2382],[-7,7],[-7,-3],[-8,6],[-1,11],[-5,0]],[[5223,2365],[0,-13],[8,-4]],[[5231,2348],[9,-15],[-1,-6],[5,-4],[2,7],[5,3],[9,20],[10,4],[-5,25]],[[6007,3109],[-3,1],[-2,-11],[3,-11],[4,12],[-2,9]],[[6012,3171],[-22,1],[-6,-27],[-25,-6]],[[5999,3088],[4,24],[-4,-3],[-7,13],[9,2],[5,27],[6,20]],[[7503,3526],[12,28],[2,13],[4,-8],[5,7],[-3,20],[1,8],[6,18],[15,11],[11,-14],[9,7],[5,10],[-5,12],[8,6],[1,7],[5,2],[2,9],[-11,24],[-8,-5],[-7,3],[1,9],[-4,8],[20,28],[14,10],[-1,13],[7,15]],[[7592,3767],[3,3]],[[7595,3770],[4,8],[5,20],[16,30],[5,15],[1,13],[5,12],[4,3],[15,22],[-7,10],[3,13],[8,12],[2,9],[-6,15],[3,16]],[[7588,3989],[8,-11],[1,-23],[-1,-12],[0,-13],[4,-7],[0,-12],[-5,-5],[-1,-13],[-11,-10],[-5,-16],[-3,-24],[2,-25],[-2,-10],[-8,-12],[-14,-36],[-16,-6],[-7,12],[-2,11],[-12,11],[-1,-8],[-6,-4],[-7,-10],[-4,7],[-5,3],[-6,12],[-11,19],[-7,-5],[6,-26],[1,-10],[-3,-15],[4,-18],[2,-17],[-3,-29],[-7,-1],[-8,6],[-6,-8],[4,-28],[-6,-15],[-6,3]],[[7447,3644],[2,-15],[4,-12],[6,-1],[-1,-7],[5,-18],[11,-12],[1,-6]],[[5641,2910],[7,-25],[7,-30],[1,-12],[8,-15],[1,-7]],[[5665,2821],[9,-3],[4,4],[-3,5],[5,5],[2,12],[-3,10],[-5,5],[1,8],[-5,-1],[-5,6],[2,10],[-5,8]],[[4457,4565],[-4,-1],[-16,-13],[-24,-27],[-7,-11],[-25,-48],[-12,-10],[-4,-12],[-12,-13],[-6,-13]],[[4347,4417],[6,-18],[11,-18],[6,-13],[4,-21],[4,-2],[3,-19]],[[5360,3548],[0,115],[-28,0],[0,29]],[[5332,3692],[-53,-54],[-13,-14],[-54,-55],[-26,-27],[-40,-41],[-36,-36],[-28,26]],[[5082,3491],[-21,21],[-20,-33],[-42,-18]],[[4931,3074],[8,-6],[7,-14],[5,-18],[0,-8],[-4,-25],[5,-14],[5,-3],[4,-10],[6,-10],[19,-18],[-2,-13],[0,-15],[2,-16]],[[4986,2904],[8,5],[13,14],[13,3],[15,-7],[7,6],[8,1],[12,7],[7,10],[19,7],[5,13],[1,18],[5,18],[7,10],[17,7],[9,0],[16,9],[23,16],[14,22],[7,8],[10,0],[12,-12],[11,-28],[1,-13],[-4,-12],[-2,-23],[1,-12],[4,-12],[7,-13],[19,-20],[10,0],[6,-8],[15,1],[26,17],[0,17],[5,7],[14,3],[9,8],[16,0],[9,8],[4,12]],[[2975,4019],[-2,6],[-3,-11],[4,-11],[1,16]],[[6885,4294],[0,0]],[[6887,4260],[0,0]],[[6888,4250],[7,1],[13,25],[17,51],[3,21],[6,19],[6,28],[0,23],[-4,22],[-9,16],[-19,15],[-6,2],[-12,-12],[-2,-12],[-4,-27],[-2,-56],[-2,-15],[3,1],[1,-21],[3,-16],[-1,-12],[4,-18],[0,-21],[7,6],[2,-5],[-10,-6],[-1,-9]],[[5464,6548],[-9,3],[-11,29],[-7,-3],[-11,-19],[0,-7],[-6,-18],[-1,-13],[7,-9],[11,-30],[6,-4],[6,-10],[12,-6],[9,17],[10,13],[3,10],[-3,16],[-5,9],[-1,11],[-10,11]],[[5248,1631],[-1,0]],[[5247,1631],[1,0]],[[5318,1708],[0,-11],[-16,-15],[-3,2]],[[5299,1684],[-3,-12],[4,-15],[-7,-13],[-14,0],[-23,-12]],[[5256,1632],[0,-11],[-5,-21],[0,-14]],[[5251,1586],[17,-14],[12,-6],[14,2],[8,-1],[23,3],[11,4],[11,-1],[8,-7],[8,12],[14,4],[14,14],[8,11],[6,2]],[[5426,1502],[13,13],[-5,26],[5,-1],[5,15],[3,3],[2,17],[-1,6]],[[5251,1586],[-1,-11],[1,-33],[6,-7],[4,-10],[1,-11],[8,-15],[6,-1],[17,-8],[2,8],[14,15],[4,14],[10,7],[8,-2],[10,-10],[3,-9],[-3,-31]],[[7819,3534],[-1,3]],[[2916,3773],[-3,0]],[[2913,3773],[3,0]],[[4425,3222],[-4,0],[1,31],[-16,1],[-10,14],[-9,-3],[-6,3],[-6,-6],[-12,-3],[-13,8],[2,8],[-6,15],[-5,22],[-9,3],[-6,35],[-5,35],[-18,25],[-4,18],[-3,6],[-14,13],[-6,24],[-3,27],[-2,31],[-11,27],[-1,15],[-5,8],[-17,0],[-8,-2],[-23,1],[-12,3]],[[4194,3581],[2,-27],[7,-22],[5,-3],[4,-15],[4,-30],[12,-39],[-3,-3],[8,-13],[11,-24],[5,-4],[5,-18],[1,-31],[8,-30],[1,-14],[9,-14],[13,-14],[3,-5],[9,-40],[2,-13],[7,-15],[26,-12],[16,-15],[9,-19],[17,-20],[8,-18],[5,-15],[8,-18],[3,-24],[-7,-20],[2,-41],[3,-16],[10,-23],[2,-27],[12,-20],[6,-15],[9,-11],[20,-15],[19,-19],[4,-10],[11,-37],[12,-58],[8,-2],[6,-6],[4,1],[-2,9],[6,16],[8,11],[14,7],[18,-7],[8,4],[5,-2],[7,-9],[3,13],[6,4],[12,0]],[[4873,2295],[-2,1]],[[5449,2197],[-1,-10],[-1,-29],[4,-18],[0,-11],[-5,-20],[-8,-11],[-13,-27],[-3,-11],[-9,-22],[-7,-2]],[[5406,2036],[6,-8],[9,0],[10,-5],[8,3],[7,10],[8,2],[3,7],[8,-2],[6,11],[6,3],[1,9],[-3,16],[12,10],[-1,11],[2,9],[8,6],[1,17],[5,6],[-7,4],[-15,-6],[-3,-4],[-7,6],[2,15],[-4,11],[-10,18],[0,8],[-9,4]],[[6053,5788],[0,0]],[[6009,5585],[-4,1],[3,-11],[1,10]],[[6042,5530],[1,6],[9,25],[5,35],[3,28],[1,40],[6,23],[1,14],[-2,14],[-5,19],[-3,-3],[-7,-27],[-6,7],[2,15],[0,15],[2,10],[0,20],[-1,15],[-6,10],[-3,17],[2,19],[-5,39],[-3,26],[-4,19],[-7,47],[-6,29],[-7,53],[-11,60],[-4,33],[-6,38],[0,6],[-6,28],[-5,32],[-4,11],[-9,10],[-16,4],[-19,20],[-10,-1],[-8,-13],[-10,-2],[-12,-15],[-3,-23],[-7,-18],[-1,-33],[3,-12],[-3,-19],[-8,-24],[-2,-24],[0,-18],[2,-15],[3,-9],[1,-16],[9,-10],[3,-19],[9,-28],[5,-26],[1,-29],[-6,-20],[0,-18],[-7,-27],[-1,-41],[1,-11],[12,-40],[0,-24],[2,-3],[12,-3],[8,-12],[4,5],[7,-3],[1,-10],[15,-5],[4,10],[0,-11],[3,-11],[12,-18],[7,9],[-1,-13],[7,-21],[4,-4],[-1,17],[2,0],[8,-27],[-1,-10],[6,-23],[-4,-9],[4,-11],[6,6],[8,-14],[9,-12],[3,-24],[-4,-23],[4,-1],[8,-20],[9,19]],[[6705,4629],[0,0]],[[6708,4575],[0,0]],[[2120,3739],[0,0]],[[1585,3736],[0,0]],[[2251,3646],[-2,-5],[3,-10],[5,0],[-6,15]],[[2258,3592],[0,0]],[[1708,3569],[0,0]],[[1615,3424],[0,0]],[[1564,3410],[-1,3],[-8,-11],[3,0],[6,8]],[[1595,3375],[0,0]],[[1554,3401],[-7,-14],[4,-28],[-1,25],[4,17]],[[1580,3315],[0,0]],[[1467,3198],[-5,-3],[4,-15],[1,18]],[[1382,3148],[-4,-10],[2,-4],[2,14]],[[1550,3145],[-2,13],[-7,-4],[1,-19],[5,-4],[3,14]],[[1523,3142],[-9,-15],[-3,-15],[3,1],[3,12],[5,2],[1,15]],[[1481,2989],[0,0]],[[1968,3320],[-3,22],[-5,20],[-7,48],[-2,63],[0,24],[-3,15],[6,59],[13,46],[2,11],[11,24],[7,19],[5,30],[8,17],[5,17],[18,3],[4,8],[6,3],[7,19],[10,-1],[18,-13],[12,0],[10,-6],[1,-5],[21,-6],[0,9],[10,7],[9,-11],[-4,-15],[8,-8],[11,-18],[1,-22],[6,-13],[0,-35],[4,-27],[14,-15],[27,-7],[11,-9],[9,-4],[25,10],[3,-10],[9,12],[1,16],[-2,15],[-16,37],[0,22],[-4,5],[-3,11],[7,0],[0,5],[-7,9],[5,3],[-4,28],[-3,9],[0,12],[-3,10],[-6,-15],[1,-18],[-4,7],[-3,14]],[[2104,3977],[-16,-34],[-30,-52],[-14,-14],[0,4],[11,9],[0,3],[-22,-16],[-1,-9],[-5,10],[6,4],[-9,1],[-9,12],[-10,5],[-11,11],[-9,2],[-8,-5],[-10,-10],[-16,-2],[-11,-14],[-10,-6],[-7,-13],[-16,-8],[-10,-3],[-9,-11],[-23,-18],[-21,-25],[-7,-15],[-10,-2],[-13,-6],[-21,-15],[-8,-18],[-10,-16],[-23,-23],[-5,-15],[-12,-23],[-2,-21],[2,-10],[8,-5],[-2,-10],[-6,-1],[8,-19],[1,-22],[-6,-8],[-6,-20],[0,-20],[-4,-17],[-17,-33],[-16,-39],[-3,-8],[-19,-26],[7,6],[0,-7],[-8,-3],[-7,-9],[0,-5],[-6,-17],[5,-1],[-9,-6],[-8,-11],[-2,-9],[-7,4],[-3,-8],[-5,-1],[-3,-24],[4,-11],[4,-4],[-4,-13],[-6,-10],[-7,0],[-4,-10],[-1,-12],[-10,-5],[-8,-16],[-1,-12],[1,-12],[-10,-1],[-10,-14],[-5,-15],[-6,-5],[-13,-31],[-3,-15],[-3,-4],[-1,-11],[-6,-11],[-13,-62],[1,-22],[-16,-9],[-2,-11],[-7,-6],[-1,6],[-7,-1],[-8,-12],[-8,-2],[-2,37],[3,10],[4,27],[0,20],[8,19],[17,27],[7,25],[3,-1],[5,8],[3,17],[6,5],[0,7],[4,18],[0,9],[10,18],[5,19],[5,6],[3,14],[0,10],[6,5],[-4,-10],[1,-7],[6,10],[7,33],[1,20],[7,15],[3,22],[7,16],[-1,16],[4,21],[8,2],[1,-9],[10,18],[6,21],[7,11],[-2,15],[-10,16],[-4,3],[-6,-26],[-4,-15],[-8,-8],[-11,-21],[-15,-20],[-6,-5],[-1,-8],[-7,-10],[-1,-11],[2,-26],[-3,-24],[-6,-18],[-8,-6],[-10,-15],[-3,-9],[-1,-12],[-3,9],[-9,3],[-7,-13],[-7,-8],[-10,-7],[-2,-12],[-13,-17],[-1,-6],[13,3],[8,-5],[4,8],[-1,-16],[3,-24],[-24,-53],[-7,-5],[-14,-19],[-5,-31],[-4,-7],[-1,-22],[-7,-10],[0,-10],[-4,-12],[-5,-8],[0,-20],[-6,-10],[-8,-30]],[[1413,2941],[67,-10],[-3,12],[51,33],[40,25],[14,10],[79,0],[0,-26],[49,0],[5,13],[12,18],[15,25],[10,13],[7,25],[1,17],[5,16],[10,11],[7,5],[16,17],[3,0],[8,-15],[1,-11],[5,-17],[9,-7],[9,4],[16,1],[3,8],[8,10],[0,4],[8,12],[5,21],[5,12],[2,17],[5,8],[7,18],[10,18],[2,30],[6,16],[3,18],[29,22],[8,1],[12,10],[6,-5]],[[9378,4479],[0,0]],[[9432,4409],[0,0]],[[9419,4404],[0,0]],[[9355,4394],[0,0]],[[9302,4173],[0,0]],[[5265,2382],[8,-4],[14,0]],[[4784,3713],[0,123],[-3,37],[-3,10],[-5,28],[-9,12],[0,8],[-14,-4],[0,5],[-26,1],[-22,3],[-9,16],[-7,2],[-12,-2],[-2,4]],[[4350,4101],[-2,-14],[2,-17],[-5,-13],[0,-7],[-5,-6],[-2,4],[-7,-18],[3,-14],[-2,-19],[-4,-10],[0,-16],[-3,-9]],[[4325,3962],[5,4],[5,-8],[5,-31],[8,-12],[14,28],[2,0],[4,-15],[9,-2],[13,4],[14,-5],[0,-10],[7,8],[102,0],[4,-46],[-7,-16],[-2,-28],[0,-15],[-4,-57],[0,-14],[-4,-58],[0,-14],[-4,-57],[0,-15],[-4,-57],[0,-14],[-3,-43],[0,-15],[-4,-57],[-2,-41],[49,-1]],[[5071,2750],[-4,2],[-2,-9],[6,7]],[[5064,2740],[0,0]],[[7393,4243],[0,0]],[[7394,4184],[0,0]],[[7403,4184],[0,0]],[[7394,4154],[0,0]],[[7404,4139],[-1,12],[-3,-2],[-1,-13],[5,3]],[[7390,4142],[0,0]],[[7402,4129],[-1,-10],[4,8],[-3,2]],[[7392,4115],[0,0]],[[7390,4102],[0,0]],[[7400,4090],[1,7],[-5,8],[0,-20],[4,5]],[[7396,4061],[0,0]],[[7299,3903],[0,0]],[[7289,3897],[-1,-4],[6,-11],[-1,11],[-4,4]],[[7376,3878],[-3,-11],[4,0],[-1,11]],[[7268,3739],[-5,-11],[7,1],[-2,10]],[[7269,3689],[7,7],[-4,8],[-5,-12],[2,-3]],[[7263,3669],[0,0]],[[7249,3668],[0,0]],[[7447,3644],[-5,-5],[-8,5],[-6,-1],[2,9],[-3,6],[-9,-1],[-4,19],[-13,5],[-6,0],[-5,-5],[-7,18],[0,19],[-3,8],[1,24],[-11,4],[3,9],[5,4],[3,20],[-1,8],[15,38],[5,9],[1,14],[6,25],[3,-6],[3,6],[-8,15],[-1,6],[0,33],[-11,8],[2,24],[9,26],[10,18],[6,19],[1,27],[-2,13],[3,16],[5,11],[0,9],[6,36],[-4,9],[-8,30],[-12,25],[0,6],[-1,21]],[[7408,4228],[-4,9],[-3,-37],[6,-18],[2,-14],[0,-20],[3,-8],[-6,-1],[1,-35],[-2,-5],[2,-13],[-3,-29],[-4,-18],[-5,-15],[-1,-14],[-2,19],[-2,-19],[1,-10],[-3,-11],[-2,-20],[-3,-10],[0,-18],[-3,-40],[-3,-9],[1,-29],[-8,0],[-4,-21],[-1,-10],[-5,-14],[-4,5],[1,10],[-3,20],[-9,12],[-5,-7],[2,10],[-9,10],[-7,5],[-2,12],[-8,15],[-3,-2],[1,-16],[-4,11],[-7,0],[-2,-11],[-6,6],[1,-25],[-7,15],[-6,5],[2,-30],[4,-35],[4,-10],[0,-22],[-3,-8],[-1,-21],[-10,-40],[-2,-15],[-2,0],[0,15],[-6,-8],[-6,-19],[2,-2],[7,9],[4,-12],[-10,-19],[3,-8],[-8,-7],[-7,0],[1,11],[-6,-13],[1,-18],[-4,13],[0,-8],[-5,-15],[1,15],[-11,-28]],[[5199,2308],[0,3],[10,15],[11,8],[11,11],[0,3]],[[5203,2404],[-12,-22],[-10,-11]],[[7105,1984],[9,-6],[2,-12],[12,-1],[10,1],[7,-10],[4,2],[7,-8],[0,-9],[7,-3],[3,-7],[17,-10],[11,-10],[11,-3],[11,-13],[11,0],[4,-9],[8,10],[4,-6],[5,0],[4,10],[32,3],[3,20],[7,11],[9,-1],[5,6],[11,1],[8,-5],[6,0],[8,6],[11,-1],[8,1],[6,10],[3,-1],[11,-12],[11,-7],[4,-13],[1,-13],[-6,-5],[-3,-14],[-4,-7],[6,-27],[5,-3],[3,-13],[9,-4],[7,-19],[18,13],[5,1],[6,7],[15,2],[20,12],[25,9],[1,14],[5,23],[-1,7],[10,12],[17,7],[1,4],[10,2],[15,0],[5,-7],[28,-11],[14,3],[9,7],[10,-2],[8,5],[11,15],[18,2],[0,15],[4,6],[16,15],[17,0],[27,9],[6,-3],[8,5],[18,-14],[20,-3],[12,-7],[8,2],[7,-7],[3,-10],[12,-11],[20,-16],[9,2],[10,5],[10,14],[10,1],[12,-6],[14,6],[1,4]],[[8701,4000],[0,0]],[[8712,3953],[0,0]],[[8714,3943],[0,0]],[[8713,3873],[0,0]],[[8715,3773],[0,0]],[[8713,3734],[0,0]],[[5580,6361],[-22,0]],[[5558,6361],[0,-19],[-3,-10],[2,-19],[-3,-3]],[[5554,6310],[1,-19],[0,-68],[-4,-23],[-7,-29],[-5,-41],[-4,-25]],[[5535,6105],[4,-5],[26,-57],[0,-11],[3,-11],[0,-14],[6,-11],[8,-30],[0,-11],[-5,-24],[2,-15],[-5,-15],[6,-8],[2,-26],[0,-59],[-3,-21],[1,-11],[-4,0],[-8,-10],[-15,-5],[-7,-12],[-7,-3],[-5,-9],[-23,-2],[-1,-19]],[[5510,5716],[-1,-17],[-3,-9],[0,-11],[8,-8],[28,-16],[5,-5],[16,-10],[25,-19]],[[5588,5621],[12,33],[20,-9],[5,11],[1,40],[-6,24],[-3,6],[5,15],[0,10],[10,17],[3,13],[6,4],[-1,13],[6,3],[0,-19],[-3,-16],[5,-20],[11,-6],[2,-23],[0,-23],[1,-22],[0,-12],[-4,-13],[-19,-46],[-10,-10],[-3,-6],[0,-15],[-2,-25],[-4,-29],[6,-19],[2,-13],[8,-2]],[[5636,5482],[20,0],[8,-7],[7,12],[10,3],[12,-9],[11,9],[5,-2],[7,-11],[2,-10],[9,-2],[8,8],[14,-15],[9,-2],[14,-12],[18,-26]],[[5790,5418],[4,11],[-3,6],[3,4],[-3,10],[0,10],[-3,9],[2,7],[-1,12],[3,20],[-1,28],[2,19],[-4,6],[4,2],[-1,29],[2,21],[0,19],[2,3],[-1,10],[5,3],[1,15],[-7,24],[-1,20],[-13,30],[-3,14],[-6,4],[2,7],[-19,24],[-2,7],[-13,6],[-13,9],[-18,19],[-16,25],[0,5],[-11,25],[-5,15],[-3,-4],[-3,8],[-14,18],[-8,19],[-12,19],[-4,0],[-2,37],[8,20],[4,23],[0,11],[4,14],[1,44],[4,-17],[2,8],[-1,30],[2,11],[-6,44],[5,5],[-1,15],[-9,27],[-16,17],[-21,13],[-14,12],[-15,21],[-6,21],[6,14],[4,0],[-1,35]],[[5628,5507],[0,0]],[[5631,5513],[0,0]],[[4211,3680],[0,0]],[[4325,3962],[-7,-14],[-6,-5],[-5,-18],[-8,-9],[-5,-26],[-4,-5],[-7,1],[-4,-4],[-4,-14],[-6,-8],[-6,-4],[-17,0],[-18,10],[-13,-3],[-7,25],[-1,15]],[[4207,3903],[0,-26],[5,-37],[8,-35],[1,-39],[-5,-45],[-8,-21],[6,-25],[2,-26],[-6,-23],[-5,1],[-8,-26],[-3,2],[-1,14]],[[4193,3617],[-1,-6],[3,-24],[61,0],[6,-1],[43,0],[-2,-38],[0,-29],[-2,-18],[3,-12],[13,-15],[6,-2],[9,-9],[0,-145],[93,0],[0,-74]],[[2940,3851],[0,0]],[[6267,5995],[-7,1],[0,-16],[5,-14],[3,0],[3,20],[-4,9]],[[5588,5621],[-6,1],[-6,-15],[-2,-8],[4,-7],[4,-16],[0,-19],[-1,-5],[1,-10],[12,-7],[3,-9],[-5,-2],[-2,-11],[1,-29],[-2,-4],[4,-22],[-3,-15],[5,-7],[6,-11],[-4,-22],[-6,-10],[2,-10],[-6,-15],[-5,-1],[-1,-10]],[[5581,5357],[11,6],[2,6],[8,-1],[6,4],[1,-10],[11,15],[4,11],[3,22],[-1,6],[3,16],[-2,21],[4,14],[5,8],[0,7]],[[7760,4676],[-3,-1],[0,-19],[3,3],[0,17]],[[7561,4658],[0,0]],[[7480,4643],[0,0]],[[7934,4575],[0,-5],[6,4]],[[7452,4510],[-3,1],[0,-10],[3,9]],[[7439,4443],[2,6],[-5,5],[-2,-9],[5,-2]],[[7502,4456],[7,4],[5,18],[10,17],[3,2],[6,15],[6,24],[1,26],[-1,24],[-2,18],[3,8],[-1,34],[3,9],[8,12],[11,49],[2,18],[-3,3],[-6,-15],[1,9],[-9,1],[-6,7],[-3,-13],[-18,-18],[-5,-10],[-11,-12],[-10,-19],[-7,-6],[-6,-12],[0,-21],[-8,-22],[-5,-8],[-4,-11],[3,-4],[-4,-11],[-1,-25],[-4,-22],[-4,-32],[1,-11],[-4,-23],[-3,-15]],[[7447,4444],[1,-11],[2,-3],[3,8],[13,7],[2,10],[6,5],[0,12],[-3,11],[4,8],[4,-9],[8,-7],[3,8],[6,-3],[1,-9],[5,-15]],[[7711,4698],[6,16],[11,4],[5,-1],[7,9],[8,2],[6,-13],[2,-23],[-1,-3],[1,-14],[6,3],[1,-21],[6,-6],[11,-4],[23,-12],[3,-4],[11,-31],[7,-15],[7,-17],[3,-17]],[[7863,4533],[8,-2],[5,-9],[-4,-19],[4,-11],[1,4],[8,-4],[5,-16],[2,-14],[10,-22],[7,-27],[3,9],[-2,13],[3,-3],[6,-18],[4,3],[1,14],[10,11],[-1,31],[6,0],[4,-6],[4,11],[-5,4],[1,5],[9,-7],[5,5],[3,8],[10,9],[9,4],[-1,12],[-9,8],[-7,3],[-8,-3],[-5,11],[11,21],[-1,5],[-18,7],[-5,-5],[-4,10]],[[7920,4402],[-3,-5],[6,-5],[-3,10]],[[5316,5831],[24,-10],[21,5],[7,14]],[[5221,6241],[0,212],[-12,8],[-8,11],[-3,9],[-15,-5],[-14,1],[-18,-10],[-3,-11],[1,-9],[-9,-17],[-5,5],[-3,18],[-9,9]],[[5123,6462],[-3,-4],[-17,-32],[-11,-34],[-6,-41],[0,-15],[-4,-5],[-1,-21],[-2,-14],[-1,-40],[-6,-28],[-4,-28],[1,-24],[-3,-39],[3,-2],[1,-13],[-2,-15],[-4,-15],[-10,-24],[-3,-17],[-11,-31],[-8,-43],[-4,-9],[-16,-63],[-3,-10],[-7,-13],[-9,-31],[-1,-14],[0,-29]],[[9320,6117],[0,0]],[[9333,6050],[3,0],[0,10],[-5,1],[-4,-15],[5,-3],[1,7]],[[9316,6033],[-8,-6],[-2,-7],[4,-14],[7,21],[-1,6]],[[9292,6006],[0,0]],[[9227,5981],[6,1],[15,24],[6,5],[6,10],[7,19],[18,21],[11,19],[7,7],[1,14],[-6,2],[-16,-17],[-2,-6],[-22,-23],[-11,-16],[-7,-18],[-6,-8],[-8,-20],[0,-9],[-4,-5],[1,-6],[4,6]],[[9109,5926],[0,0]],[[5082,3491],[6,62],[0,21],[12,34],[-1,13],[11,22],[-7,26],[-2,63],[-2,27],[-3,82],[-31,67],[-15,45],[-10,34],[4,39]],[[5044,4026],[-5,0],[-18,18],[-9,17],[-9,0],[-4,-6],[-16,-9],[-12,-1],[-21,5],[-8,9],[-9,18],[-11,0],[-13,-5],[-18,-22],[-8,-3],[-12,13],[-6,1],[-4,6],[-4,-3],[-13,-32],[-25,-16],[-7,7],[-16,1],[-7,5],[-8,11],[-1,22],[-4,17],[-9,13],[0,42],[-1,7]],[[9331,6486],[0,0]],[[4869,4561],[-4,1],[2,-8],[2,7]],[[5044,4026],[13,36]],[[4904,4541],[-4,1],[-5,-10],[3,15],[-1,6],[-18,2],[-4,-4],[-9,-1],[-5,12],[-26,6],[-8,-9],[-6,-11],[-5,-29],[0,-15],[-5,-10],[7,-2],[-10,-2],[-7,-22],[-12,-18],[-8,-4],[-18,0],[7,-10],[-9,3],[-2,8],[-18,1]],[[2357,3952],[-5,11],[4,26],[-7,20],[-4,39],[2,22],[-1,24],[-2,-5],[-4,6],[2,10],[0,17],[-4,10],[3,2],[2,11],[-6,16],[1,13],[5,12]],[[2285,4178],[-6,-15],[-14,-24],[-6,-14],[-2,-10],[-11,-16],[-9,-19],[-6,-8],[4,-8],[5,3]],[[9949,5913],[0,0]],[[2772,4116],[0,0]],[[2917,3807],[0,0]],[[2910,3800],[0,0]],[[4759,1856],[15,1],[10,-2]],[[4776,1835],[0,7],[-7,-6],[7,-1]],[[4802,1758],[0,0]],[[4808,1744],[0,0]],[[4784,1855],[-7,-3],[-11,0],[-3,-8],[7,-1],[11,8],[4,0],[-8,-8],[5,0],[-6,-12],[2,-7],[10,-15],[5,-15],[3,-21],[19,-16],[2,-8],[12,-8],[6,-2],[21,-2],[4,7],[6,2]],[[4833,1891],[-9,0]],[[4814,1739],[0,0]],[[4831,1736],[0,0]],[[4842,1733],[0,0]],[[4853,1729],[0,0]],[[4807,1342],[-2,6],[-2,-12],[4,6]],[[4804,1297],[-5,0],[4,-7],[1,7]],[[4891,1167],[-8,-4],[7,-4],[1,8]],[[4901,1148],[-5,-1],[14,-7],[0,6],[-9,2]],[[4978,1079],[-13,0],[7,-6],[6,6]],[[4999,1035],[0,0]],[[5014,1019],[-3,-3],[10,-2],[-7,5]],[[5011,1011],[3,-9],[2,8],[-5,1]],[[5026,906],[-4,3],[7,-15],[1,7],[-4,5]],[[5052,883],[4,5],[-22,11],[-1,-6],[9,-9],[10,-1]],[[5089,844],[5,9],[-1,7],[-9,4],[-8,-4],[-6,2],[-5,-4],[5,-7],[7,2],[2,-7],[5,1],[0,-6],[5,3]],[[5104,866],[16,-18],[6,9],[-1,5],[-9,5],[-6,7],[-24,8],[-5,-1],[-8,6],[-11,1],[0,-4],[9,-10],[14,-1],[9,-10],[2,-25],[12,-13],[6,3],[-9,12],[4,16],[-5,10]],[[5152,807],[8,1],[8,7],[-4,10],[1,5],[-18,3],[-4,5],[-10,-1],[5,-4],[0,-13],[10,-2],[-3,-6],[7,-5]],[[5498,795],[-5,2],[2,-8],[3,6]],[[5243,778],[-8,1],[-2,-5],[11,-3],[-1,7]],[[5201,779],[2,4],[8,-1],[-8,11],[-5,0],[-7,7],[-3,8],[-14,2],[-2,-7],[5,-7],[8,0],[0,-6],[8,-9],[5,-12],[3,10]],[[5215,771],[9,6],[-8,2],[-5,-8],[4,0]],[[5322,752],[1,5],[-14,10],[-6,-10],[17,-10],[2,5]],[[5333,751],[-8,0],[-2,-7],[4,-4],[8,6],[-2,5]],[[5317,736],[-10,13],[-14,5],[-6,0],[-10,-9],[27,-3],[7,-6],[6,0]],[[5524,796],[1,10],[-8,4],[-13,-7],[-2,13],[-20,7],[-4,12],[-7,5]],[[5239,838],[-14,2],[6,7],[0,8],[-5,9],[-5,3],[7,4],[-10,7],[-23,-9],[-18,-3],[-6,2],[0,19],[-7,14],[-17,-8],[-15,11],[-5,16],[-11,7],[-2,5],[9,15],[-6,10],[-22,28],[1,11],[-9,7],[-17,3],[3,20],[-3,8],[-2,20],[-15,29],[-8,12],[12,7],[2,17],[-5,9],[-18,-3],[-9,1],[-8,5],[-15,21],[1,6],[-5,12],[6,16],[-3,4],[0,20],[5,18],[-4,32],[17,16],[3,5],[-1,8],[-5,10],[-10,3],[0,6],[8,25],[-3,20],[-5,8],[-10,6],[-7,16],[3,17],[-4,21],[-5,1],[-2,-7]],[[4983,1415],[-1,-4],[-15,-5],[-6,-14],[1,-10],[-7,5],[1,14],[-7,15],[-9,3],[-4,-3],[-11,9],[2,3],[-13,14],[-11,15],[-10,8],[-19,8],[-13,0],[-6,-8],[-2,5],[-5,-3],[3,-8],[-7,0],[-10,-6],[-13,-14],[-2,-6],[3,-17],[14,8],[-6,-11],[4,-17],[10,-11],[-15,12],[-8,3],[-3,5],[-8,3],[0,-17],[8,-15],[9,3],[12,-10],[-11,2],[-3,-4],[11,-15],[1,-6],[10,-10],[0,14],[8,-20],[-18,9],[-10,19],[-8,11],[-11,9],[3,-24],[8,1],[5,-3],[-7,-2],[-7,-8],[2,-16],[-6,-7],[-1,-20],[8,0],[19,-4],[12,2],[10,-4],[6,5],[16,-7],[-7,-2],[-4,3],[-14,-2],[-4,3],[-24,0],[-5,3],[-10,-5],[-3,-14],[9,-3],[-11,-13],[0,-10],[15,-1],[15,6],[13,-1],[6,-4],[-16,2],[-18,-6],[-6,1],[-4,-5],[1,-8],[6,0],[5,-9],[10,-6],[5,4],[14,-3],[3,-4],[-15,4],[3,-11],[14,-3],[15,2],[5,4],[2,-8],[15,-3],[-1,-2],[-18,3],[-8,-2],[-11,2],[8,-14],[18,-9],[12,1],[3,6],[12,8],[-13,-18],[3,-7],[9,-2],[0,-6],[-6,-1],[0,-5],[13,-7],[8,3],[1,8],[4,-6],[11,-3],[7,13],[10,-5],[12,1],[-1,-9],[18,-11],[-5,-5],[7,-6],[-4,-3],[-11,7],[4,5],[-3,4],[-17,12],[-11,2],[-9,-15],[7,-7],[4,-10],[7,-5],[9,-14],[29,-23],[-9,3],[5,-12],[19,-12],[4,5],[6,0],[11,-14],[-14,9],[-8,-6],[2,-12],[17,-27],[5,-3],[-6,-5],[17,-5],[8,0],[10,-6],[-2,-2],[-17,5],[-6,0],[-1,-17],[6,-10],[9,-5],[9,0],[-9,-8],[7,-2],[6,-9],[19,-4],[17,-1],[-3,-4],[-23,0],[8,-13],[6,-4],[14,7],[2,6],[4,-10],[-9,-1],[-4,-7],[2,-6],[-7,5],[-7,0],[0,-8],[7,-8],[10,2],[6,-4],[-9,-3],[10,-7],[10,-5],[7,20],[1,-11],[-4,-11],[6,-6],[7,-2],[9,4],[17,-5],[-27,-1],[2,-10],[13,-3],[10,-11],[6,-13],[11,-3],[-1,-10],[5,-9],[11,9],[8,0],[-9,-6],[2,-5],[9,-3],[5,-10],[15,-2],[-2,20],[6,-18],[6,-8],[8,-2],[-1,17],[-8,15],[4,0],[8,-10],[7,1],[-5,-8],[2,-15],[15,2],[3,-7],[5,0],[13,10],[2,0],[-5,-13],[-13,-9],[5,-4],[7,3],[6,-4],[9,1],[10,-5],[5,2],[5,13],[6,7],[4,-2],[-2,-11],[9,-11],[11,-5],[10,-15],[-4,-4],[14,-11],[14,10],[5,-4],[8,5],[-13,15],[-3,14],[-5,6],[2,6],[10,-7],[2,-6],[21,-27],[12,-8],[1,5],[-4,11],[1,15],[11,-6],[5,-14],[11,-4],[-8,-5],[1,-5],[8,-6],[15,2],[7,5],[-2,9],[-10,6],[8,3],[-3,24],[13,-29],[6,-6],[8,0],[8,7],[11,5],[7,-4],[5,5],[-1,5],[10,0],[10,8],[1,7],[-14,5],[-5,4],[-10,2],[-31,-3],[0,3],[22,7],[0,11],[6,2],[10,0],[0,-6],[20,4]],[[5377,718],[10,2],[5,6],[-15,1],[-9,-3],[9,-6]],[[4418,735],[-5,-1],[17,-10],[4,-6],[10,-3],[0,7],[-18,7],[-8,6]],[[5200,530],[-3,3],[-9,-8],[11,-2],[1,7]],[[5266,288],[12,1],[8,20],[19,-1],[13,6],[-9,3],[-1,6],[16,7],[15,-2],[19,9],[-22,5],[-4,6],[-13,9],[-14,2],[-5,4],[-11,-1],[1,-7],[8,-6],[-10,-2],[-4,3],[-33,5],[-5,-7],[9,-4],[1,-5],[10,-12],[-16,-8],[-6,-11],[-8,-4],[1,-6],[-5,1],[0,-6],[34,-5]],[[5413,285],[-12,-4],[4,-5],[8,9]],[[4979,287],[16,10],[8,12],[-4,1],[-11,-10],[-13,-4],[-9,-13],[-5,-4],[-2,-8],[12,3],[8,13]],[[5473,270],[16,-1],[-9,4],[-22,-2],[-13,4],[-4,-2],[14,-6],[12,0],[6,3]],[[5132,213],[5,-3],[17,4],[11,10],[-8,10],[0,9],[17,-13],[8,2],[7,8],[0,7],[7,9],[19,0],[4,6],[7,-5],[8,0],[9,5],[-7,4],[16,7],[8,7],[-8,4],[-10,0],[-27,3],[-17,14],[-5,8],[1,9],[-16,3],[-2,20],[-6,10],[-8,1],[-6,5],[-5,10],[-8,10],[2,5],[-7,9],[2,9],[-3,3],[-14,0],[-6,-7],[-19,-9],[-12,-12],[-21,-8],[-9,-10],[1,-9],[12,-1],[5,3],[7,-10],[35,-5],[23,-1],[-3,-6],[-24,3],[-13,-1],[-13,4],[-28,2],[-9,-5],[-3,-10],[7,-3],[11,4],[-2,-4],[21,-4],[9,-4],[10,-1],[-1,-4],[14,-3],[17,0],[-9,-8],[9,-10],[-7,1],[-16,9],[-15,1],[-4,-6],[4,-11],[-14,8],[-4,-5],[-8,3],[-1,10],[6,5],[-15,8],[-27,2],[-19,-14],[-5,-7],[-9,-2],[-5,-5],[3,-6],[-14,-7],[5,-2],[20,4],[-6,-4],[-4,-10],[5,-6],[-14,-1],[1,4],[-8,6],[-10,-12],[-7,-12],[2,-7],[-3,-7],[5,-2],[8,5],[5,-5],[10,-1],[16,6],[0,-6],[13,1],[10,-2],[17,-2],[6,3],[-4,6],[-21,0],[-13,8],[22,0],[2,6],[17,7],[0,-14],[16,-12],[12,7],[20,29],[15,11],[-1,-8],[-7,-13],[-6,-19],[8,-12],[4,-10],[8,1],[7,8]],[[5569,200],[-27,3],[-1,-3],[52,-7],[5,3],[-29,4]],[[5187,190],[-6,3],[-10,-2],[3,-5],[13,4]],[[5247,193],[18,0],[4,5],[16,7],[5,-9],[-1,-10],[13,-6],[12,3],[-6,14],[16,-2],[7,-5],[13,-4],[6,5],[8,0],[21,4],[2,2],[31,1],[8,6],[1,9],[-32,16],[-8,11],[-14,5],[-13,-2],[-18,10],[-34,-1],[-5,-6],[4,-5],[-26,2],[-29,-1],[-21,-5],[-12,-6],[4,-3],[18,0],[8,-6],[-18,-3],[-13,4],[-20,0],[-14,-6],[-5,-6],[17,-6],[-14,-1],[-12,-5],[5,-2],[19,-1],[15,4],[6,-2],[-10,-7],[2,-3],[14,6],[1,-8],[-5,-5],[7,-1],[14,4],[15,9]],[[9303,4845],[0,0]],[[9365,7838],[0,0]],[[9283,7738],[1,5],[-9,-5],[5,-12],[4,0],[-1,12]],[[9336,7513],[-2,4],[6,6],[-10,9],[-11,5],[8,-20],[-1,-13],[5,0],[5,9]],[[9298,7444],[0,0]],[[9304,7417],[0,0]],[[9772,7367],[0,0]],[[9772,7334],[-9,7],[5,11],[-8,4],[2,-13],[-3,-5],[-6,0],[8,-6],[11,2]],[[9497,7168],[-4,4],[5,-13],[-1,9]],[[9474,7192],[4,0],[14,-16],[7,-4],[-6,20],[3,-3],[3,-13],[6,0],[2,5],[-7,10],[9,-9],[-3,12],[-5,9],[3,5],[-3,6],[6,4],[-1,5],[-10,19],[-1,7],[-9,14],[-5,19],[-4,9],[-9,7],[-5,9],[0,10],[3,10],[8,5],[-2,10],[-8,-4],[-7,1],[-2,-5],[-3,8],[-8,-10],[4,11],[-12,11],[-8,3],[-4,10],[-5,41],[-4,8],[-4,21],[-4,10],[3,10],[-13,6],[-4,10],[-14,23],[-16,5],[-9,-4],[-11,2],[-5,-13],[-10,0],[-8,-14],[-5,6],[-15,-1],[-3,-5],[4,-9],[-6,4],[2,-10],[-6,5],[-1,-8],[15,-7],[-6,0],[5,-10],[-7,0],[4,-13],[8,7],[-4,-18],[13,-20],[8,-10],[4,4],[-2,-10],[17,-26],[10,-3],[14,-16],[14,-10],[0,-5],[19,-25],[6,-3],[9,-16],[6,-16],[6,-35],[10,-9],[5,-11],[3,-29],[4,-11],[10,-14],[3,1],[1,14],[6,4],[3,25]],[[9542,6905],[-6,-4],[2,-9],[4,13]],[[9479,6827],[18,6],[5,5],[0,8],[6,-1],[6,20],[1,11],[-5,0],[11,31],[1,16],[-3,14],[6,0],[9,7],[2,10],[7,0],[-3,-29],[8,6],[3,12],[3,28],[4,6],[-3,2],[8,5],[13,13],[14,6],[8,-6],[12,-20],[8,1],[7,8],[-4,16],[-3,34],[-9,10],[-1,28],[-7,-8],[-7,0],[-8,6],[-5,10],[0,14],[4,3],[-7,28],[-6,17],[-7,13],[-3,12],[-8,19],[-19,24],[-7,-14],[-4,4],[-1,-10],[-6,2],[6,-15],[8,-25],[3,-18],[-7,-20],[-12,-9],[-6,-9],[-12,-7],[-5,-12],[2,-8],[7,-9],[8,-3],[7,-11],[0,-10],[3,-21],[3,-8],[-1,-12],[4,-5],[-6,-20],[0,-14],[6,-7],[-4,-9],[-7,2],[-10,-27],[6,5],[2,-5],[-3,-7],[1,-8],[-11,-5],[5,10],[-2,4],[-4,-13],[-15,-36],[5,-10],[-1,-4],[-5,12],[-7,-18],[2,-10],[-14,-32],[10,-3],[-3,6],[9,24]],[[9911,5354],[0,0]],[[9875,5309],[0,0]],[[6297,3651],[-2,-7],[7,-20],[1,9],[-3,6],[-3,12]],[[6232,3376],[7,30],[8,18],[8,13],[17,10],[8,2],[8,6],[5,-2],[6,8],[7,22],[14,31],[8,5],[0,10],[-5,22],[-8,26],[-13,22],[-6,18],[-7,22],[-6,0],[1,-10],[-4,0],[-7,20],[-1,17],[-3,20],[2,10],[1,24],[-4,3],[-14,3],[-9,9],[-5,10],[-4,23],[-4,10],[-25,9],[-7,20],[2,6],[-7,20],[-8,5],[-5,-5],[-14,3],[-13,14],[-14,6]],[[6141,3856],[-8,-35],[-2,-3],[-17,-80],[-4,-17]],[[6110,3721],[18,-13],[28,-19],[37,-26],[5,-34],[2,-5],[12,-76],[-13,-41]],[[6223,3314],[4,-10],[7,-5],[-2,30],[-2,9]],[[6559,3441],[-1,6],[-7,-9],[-5,6],[-9,-16],[-5,-39],[-13,-6],[0,-21],[-8,-20],[-6,-2],[-3,7],[-13,8],[-6,-1],[-18,4],[-3,7],[-14,-10],[-13,-2],[-4,2],[-1,8],[-23,-3],[-11,7],[-2,-5],[-8,6],[-9,-4]],[[2400,4393],[-7,-7],[3,-10],[1,12],[3,5]],[[2470,4340],[0,0]],[[2475,4339],[-2,-10],[3,0],[-1,10]],[[2382,4275],[0,0]],[[2502,4399],[-7,-18],[-6,-21],[-1,-9],[5,-5],[-1,-6],[4,-8],[-7,-6],[-1,8],[-3,-16],[-15,-21],[-10,-1],[-7,9],[-4,13],[2,2],[-10,14],[-10,8],[0,8],[11,24],[2,9],[-8,4],[-4,9],[-6,3],[-7,-3],[0,-9],[-4,-16],[0,-11],[-4,5],[-2,11],[-7,-6],[-6,-24],[-12,-3],[-14,-7],[-5,4],[-1,10]],[[2373,4264],[5,8],[1,13],[4,-1],[-1,11],[4,6],[9,-2],[-4,-9],[6,6],[4,11],[14,1],[14,-16],[12,-7],[15,-23],[16,5],[2,5],[12,1],[11,10],[7,10],[4,10],[9,13]],[[1103,6220],[0,0]],[[2710,5871],[-14,-24],[-12,-14],[-2,-18],[-19,-22],[-7,-12],[-12,-10],[-16,-17],[-12,-8],[-9,-15],[-7,-5],[-5,-7],[-15,-17],[-12,-30],[-11,-15],[-5,-17],[-5,-11],[-2,-15],[3,-4],[2,-16],[-1,-9],[-6,-15],[-3,-16],[-6,-18],[-2,-10],[-9,-16],[0,-8],[-4,-23],[-9,-14],[-3,-26],[-10,-33],[-10,-51],[-6,-23],[-2,-20],[-5,-13],[-2,-11],[-9,-16],[-12,-50],[-10,-24],[-19,-21],[-10,-13],[2,-14],[6,-3],[-2,-16],[-6,-18],[1,-8],[-6,-21],[3,-25],[12,-29],[13,-20]],[[8006,4512],[-1,5],[-8,6],[-3,-3],[10,-12],[2,4]],[[8031,4465],[6,4],[-13,7],[-1,-7],[8,-4]],[[8057,4445],[-3,1],[-5,-12],[7,-7],[7,6],[-6,12]],[[8160,4414],[-3,-6],[3,-4],[0,10]],[[8081,4388],[0,0]],[[7917,4361],[-2,-1],[2,-10],[0,11]],[[7926,4342],[0,0]],[[8133,4289],[0,0]],[[8102,4283],[-2,8],[-4,-5],[6,-3]],[[8165,4263],[0,0]],[[8166,4278],[4,3],[0,9],[5,16],[-5,12],[6,9],[3,16],[-1,21],[4,9],[0,25],[-8,21],[-4,33],[-2,-25],[-7,-34],[-4,4],[-1,9],[-7,18],[1,11],[4,6],[3,16],[0,14],[-6,18],[-3,4],[-4,-9],[2,-16],[-3,-1],[-4,10],[-3,0],[-15,-14],[-9,-17],[0,-15],[-2,-19],[6,-15],[0,-8],[-7,-15],[-8,-9],[-5,0],[-3,24],[-6,-8],[-2,-9],[-3,9],[-5,-1],[0,-10],[-5,-2],[-4,7],[-8,37],[-3,5],[-5,-9],[4,-17],[2,-26],[6,-13],[16,-7],[5,-18],[7,-5],[3,-8],[8,9],[4,21],[-3,8],[13,-13],[2,-14],[4,-6],[7,3],[2,-18],[2,-6],[8,6],[1,-9],[9,1],[1,-7],[-3,-31],[3,-5],[12,19],[1,6]],[[8168,4253],[-2,-4],[2,-13],[0,17]],[[8146,4240],[0,0]],[[8127,4251],[-5,8],[-13,2],[-5,-11],[11,-19],[5,-1],[6,8],[1,13]],[[8157,4244],[-5,-12],[4,-18],[1,21],[0,9]],[[7996,4211],[-3,2],[2,-11],[1,9]],[[8119,4204],[0,0]],[[8073,4212],[-3,3],[0,-11],[4,-7],[-1,15]],[[8086,4293],[-5,-2],[-2,-13],[-9,-9],[-4,-12],[2,-16],[7,-1],[4,-6],[-2,-24],[5,-15],[0,-7],[7,-6],[8,4],[1,8],[-6,26],[-2,12],[-3,15],[0,15],[3,14],[0,8],[-4,9]],[[8093,4271],[-3,-2],[4,-23],[-1,-5],[4,-10],[9,-34],[5,-31],[1,39],[-3,16],[-6,5],[-7,37],[-3,8]],[[8103,4165],[0,0]],[[7925,4329],[-2,-6],[4,-13],[13,-27],[7,-6],[25,-58],[6,-7],[2,-12],[-1,-9],[4,-26],[4,-1],[-1,20],[5,26],[-12,15],[-2,11],[-12,8],[0,9],[-9,29],[-9,9],[-6,17],[-9,9],[-7,12]],[[7995,4151],[0,0]],[[8126,4162],[7,-4],[6,11],[-1,25],[5,8],[1,22],[-3,3],[-3,-9],[1,19],[-7,-7],[-2,-16],[2,-20],[-3,-10],[-6,2],[-4,-35],[7,11]],[[8127,4153],[-3,1],[-4,-11],[4,-1],[3,11]],[[8134,4147],[0,0]],[[8069,4146],[8,1],[3,9],[7,-5],[-2,19],[-8,12],[-1,10],[-7,7],[-9,4],[-7,11],[0,-18],[3,-20],[2,-31],[-6,-13],[4,-2],[13,16]],[[8000,4141],[-3,2],[-2,-16],[5,2],[0,12]],[[8002,4114],[4,-3],[2,12],[-9,1],[-4,-11],[1,-7],[6,8]],[[8073,4106],[-6,-7],[5,-3],[1,10]],[[8144,4094],[3,11],[6,8],[-2,14],[1,23],[3,10],[-1,8],[3,4],[-7,3],[-6,-2],[-5,-11],[-3,-13],[2,-11],[-3,-1],[-6,-14],[-8,-13],[-4,-19],[9,3],[16,-3],[2,3]],[[8102,4107],[6,7],[4,24],[-15,-25],[-3,0],[-7,15],[3,-27],[-1,-11],[9,8],[4,9]],[[8063,4094],[0,0]],[[8057,4104],[-2,14],[-2,-11],[2,-17],[3,-1],[-1,15]],[[8103,4098],[0,0]],[[8090,4075],[3,9],[-12,-22],[3,-2],[6,15]],[[8019,4039],[7,-1],[7,4],[9,19],[-2,15],[2,11],[-8,24],[-4,-4],[-9,-26],[-3,-22],[-9,-20],[3,-3],[7,3]],[[8052,4035],[6,5],[-3,15],[-5,-5],[2,-15]],[[8007,4023],[0,0]],[[8120,4030],[-5,6],[-4,-8],[3,-7],[0,-11],[3,-6],[5,12],[-2,14]],[[8060,4006],[0,0]],[[8056,3951],[-3,12],[-3,-15],[6,3]],[[8030,3743],[13,14],[10,5],[6,-12],[4,10],[-3,15],[-1,23],[2,13],[5,7],[3,10],[-2,18],[-6,22],[-2,15],[-10,5],[-5,9],[0,16],[-7,17],[2,8],[7,28],[-2,9],[4,24],[4,9],[9,5],[2,-4],[-3,-9],[8,-10],[8,2],[5,6],[4,13],[0,12],[5,-5],[0,-13],[5,6],[8,4],[1,10],[-5,1],[0,10],[4,10],[0,14],[11,4],[-2,27],[-5,-7],[2,-13],[-9,0],[-10,-7],[0,-10],[-3,-13],[-8,-10],[-8,-17],[-3,-1],[1,16],[3,8],[2,15],[-3,3],[-2,-10],[-12,-24],[-8,-9],[-8,6],[-4,11],[-4,1],[-9,-7],[-1,-8],[-6,5],[-1,-22],[10,-21],[-3,-9],[-8,-10],[-1,7],[2,16],[-6,2],[-4,-20],[-5,-3],[-5,-34],[0,-25],[-3,-8],[0,-17],[2,-1],[9,16],[5,-1],[-1,-40],[2,-12],[0,-27],[-1,-13],[7,-49],[6,-5],[8,-1]],[[8053,3727],[0,0]],[[8034,3716],[0,0]],[[8041,3700],[0,0]],[[8054,3642],[0,0]],[[8050,3618],[0,0]],[[8310,4641],[0,0]],[[8405,4390],[-3,-8],[4,-11],[-1,19]],[[8931,5476],[6,7],[-6,2],[-5,-4],[-5,-14],[10,9]],[[8951,5470],[-6,3],[1,-6],[5,3]],[[8857,5424],[0,0]],[[8862,5392],[5,-5],[0,15],[-8,-6],[-5,-18],[8,10],[0,4]],[[8847,5354],[10,9],[0,9],[-12,-2],[2,-6],[-3,-8],[3,-2]],[[8842,5362],[-6,-8],[2,-9],[5,11],[-1,6]],[[8906,5331],[5,1],[5,8],[-1,6],[-7,-3],[-6,-9],[4,-3]],[[8654,5312],[0,0]],[[8863,5318],[0,0]],[[8654,5304],[-7,-7],[7,1],[0,6]],[[8778,5151],[-5,-5],[-2,-14],[7,6],[0,13]],[[8998,5200],[-5,9],[-10,-3],[-6,-15],[0,-13],[-5,-5],[-7,-14],[-2,-13],[1,-17],[10,10],[3,12],[5,8],[2,10],[5,4],[7,15],[2,12]],[[8754,5128],[-5,-7],[4,-7],[1,14]],[[8962,5128],[-3,-16],[3,-6],[2,10],[-2,12]],[[8722,5087],[-4,-3],[2,-7],[2,10]],[[8886,5063],[5,-5],[8,7],[-1,28],[-3,8],[-7,2],[0,9],[4,12],[-8,12],[-9,-1],[-8,21],[-9,6],[-14,15],[-18,1],[-5,-2],[-6,-11],[-8,3],[-10,-15],[-6,-3],[-5,-8],[3,-12],[10,3],[6,-2],[10,6],[13,-4],[3,-4],[3,-24],[3,2],[-3,14],[1,7],[6,6],[3,-4],[6,3],[9,-5],[3,-13],[7,-14],[10,-5],[0,-14],[-3,-17],[1,-8],[9,6]],[[8934,5051],[0,0]],[[8907,4996],[0,0]],[[8891,4985],[0,0]],[[8887,4978],[0,0]],[[8582,4977],[0,-12]],[[8582,4965],[6,2],[21,18],[7,8],[22,15],[14,5],[14,20],[10,1],[16,22],[4,10],[7,2],[12,25],[1,20],[-2,13],[3,4],[16,9],[19,19],[8,0],[5,6],[7,18],[0,19],[-13,3],[-7,-2],[-4,7],[6,31],[15,29],[11,13],[3,13],[0,10],[6,11],[4,21],[6,2],[10,-5],[3,4],[-2,19],[8,10],[15,6],[-7,7],[4,14],[21,12],[-1,5],[-6,0],[6,12],[-4,5],[-10,-1],[-10,-16],[-26,-6],[-5,-5],[-7,2],[-7,-5],[-11,-2],[-6,-9],[-4,-14],[-9,-14],[-4,-10],[0,-9],[-8,-8],[-3,-12],[-14,-39],[-8,-7],[-5,0],[-16,-8],[-3,-10],[-10,-4],[-8,11],[-7,-3],[-6,-9],[5,23],[-4,5],[-7,-3],[2,13],[-14,6],[-11,-2],[-7,2],[9,2],[9,7],[8,17],[0,8],[-5,8],[-16,16],[-11,-9],[-14,3],[-9,-4],[-8,4],[-4,-6]],[[8915,5089],[-2,5],[-6,-20],[0,-21],[-9,-27],[-5,-9],[-6,-3],[-11,-17],[-14,-19],[-9,-5],[2,-10],[28,35],[6,4],[27,50],[3,8],[-4,29]],[[8845,4968],[-6,1],[-8,-11],[8,-5],[5,4],[1,11]],[[8773,4947],[0,0]],[[8751,4928],[9,4],[-5,9],[-13,-2],[-5,3],[1,-11],[7,-4],[6,1]],[[8826,4905],[-6,-5],[1,-7],[5,12]],[[5211,1677],[16,4],[13,0],[58,4],[1,-1]],[[5322,1848],[1,12],[6,10],[7,16],[-4,4],[3,15],[-3,6],[-7,3],[-9,11],[-10,16],[-11,20],[3,15],[-1,7],[3,9],[-8,-3]],[[5292,1989],[-14,-8],[-4,-8],[-7,-4],[-15,0],[-4,6],[-9,-5],[-6,0],[-7,5],[-3,7],[-7,0],[-1,-11],[-3,-1],[-6,-12],[-8,12],[-5,0],[-4,-7]],[[5062,1720],[7,4],[2,-9],[-10,-3]],[[5061,1708],[5,1],[9,-5],[33,-14],[8,-2],[10,-16],[9,-1],[11,-9],[16,-5],[13,0],[12,8],[-9,-3],[4,13],[7,9],[16,-1],[6,-6]],[[2781,3775],[0,0]],[[2849,3772],[0,0]],[[2829,3753],[1,-2],[13,5],[1,7],[-10,17],[-24,1],[-10,-3],[0,-16],[-3,-5],[7,-9],[6,2],[19,1],[0,2]],[[8135,2538],[0,0]],[[8292,2365],[4,14]],[[8296,2379],[-6,0],[-11,14],[-11,26],[2,12],[-1,31],[-10,7],[-7,14],[-11,10],[-5,11],[-6,5],[-6,0],[-6,8],[-9,7],[0,18],[-4,5],[0,10],[10,7],[17,27]],[[8183,2639],[-7,-6],[-7,8],[-10,-14],[-8,15],[-4,-7],[-9,-5],[5,-9],[-14,-2],[6,-6],[2,-14],[10,-11],[-5,-12],[8,-26],[-2,-11],[-18,-13],[-2,7],[-2,-10],[-6,-6],[0,-6]],[[4189,2921],[14,7],[-4,7],[-5,-1],[-7,-8],[2,-5]],[[3971,2686],[0,0]],[[3954,2636],[10,-1],[3,5],[-7,3],[-9,-3],[-3,-6],[6,2]],[[3884,2600],[3,3],[-11,0],[-3,-6],[4,-2],[7,5]],[[3871,2596],[0,0]],[[3895,2594],[-12,-5],[-3,-5],[15,10]],[[3914,2589],[-6,-1],[1,-8],[6,4],[-1,5]],[[3801,2545],[0,0]],[[4460,2674],[-11,10],[-22,-7],[-11,5],[5,-23],[1,-17],[-2,-13],[2,-13],[-2,-15],[2,-4],[-12,4],[-1,-12],[8,-9],[0,-12],[-5,16],[-7,2],[-2,-9],[3,-28],[6,-11],[9,-33],[-2,-4],[6,-33],[1,-19],[-3,-12],[-2,-21],[-2,-6],[3,-11]],[[5616,3011],[8,-15]],[[819,6016],[0,0]],[[881,5882],[0,0]],[[759,5873],[0,0]],[[862,5871],[0,0]],[[755,5862],[0,0]],[[755,5843],[0,0]],[[519,5833],[-7,3],[-1,-11],[6,-2],[2,10]],[[505,5826],[0,0]],[[461,5786],[0,0]],[[682,5771],[0,0]],[[679,5772],[0,0]],[[458,5775],[0,0]],[[625,5756],[0,0]],[[708,5741],[0,0]],[[637,5727],[0,0]],[[815,5421],[0,0]],[[804,5387],[0,0]],[[805,5374],[4,5],[-7,3],[3,-8]],[[776,5358],[0,0]],[[790,5330],[0,0]],[[776,5328],[-4,2],[-1,-9],[5,1],[0,6]],[[6089,3398],[-8,1],[-5,-12]],[[6076,3387],[2,-5],[-3,-32],[8,-31],[6,-10],[9,14],[1,7],[-3,15],[4,27],[-6,24],[-5,2]],[[5449,2197],[7,9],[9,4],[13,-10],[5,-1],[8,9]],[[5491,2208],[-4,24],[-14,5],[1,-12],[-5,3],[1,6],[-4,14],[2,4],[-6,7],[0,23],[-2,14]],[[5297,2267],[-6,-14],[7,-5],[-7,-8],[-11,10],[-5,-8],[-5,0],[-11,-11],[5,-3],[-5,-4],[4,-9],[-13,-10],[-7,-11],[0,-14],[-11,-13],[-4,-8]],[[5302,2054],[7,-9],[7,6],[9,0],[13,5],[11,-2],[9,13],[15,-11],[20,-5],[4,-13],[9,-2]],[[8723,2315],[0,0]],[[8718,2312],[0,0]],[[8731,2302],[0,0]],[[8741,2296],[-3,-3],[6,-4],[-3,7]],[[8727,2252],[10,3],[-7,10],[-4,0],[-16,25],[-1,10],[-4,-8],[15,-27],[4,-13],[3,0]],[[8794,2205],[-10,6],[-9,13],[-8,1],[-2,8],[-19,25],[2,-10],[5,-5],[0,-6],[18,-25],[4,-11],[3,7],[8,-1],[8,-12],[6,0],[-1,10],[-5,0]],[[5999,2195],[0,0]],[[8824,2186],[-7,3],[6,-14],[8,-11],[11,-11],[6,1],[-9,11],[-1,5],[-9,8],[-5,8]],[[8888,2114],[-5,6],[6,-13],[7,-7],[-8,14]],[[8919,2064],[0,0]],[[8946,2005],[0,0]],[[8966,1975],[-5,-4],[5,-15],[3,0],[-3,19]],[[8997,1918],[-9,7],[-6,8],[-4,-3],[-1,-12],[13,-7],[6,-15],[6,-5],[0,12],[-5,15]],[[9010,1896],[-6,-3],[6,-7],[3,5],[-3,5]],[[8989,1888],[0,0]],[[8631,1682],[7,18],[-2,17],[8,27],[3,20],[0,20],[-4,15],[-1,15],[4,27],[5,10],[7,55],[9,35],[6,34],[5,15],[7,10],[1,14],[-5,-15],[-12,-18],[-8,-6],[-12,1],[-8,5],[-13,55],[-3,21],[1,12],[12,26],[6,25],[8,2],[2,20],[-4,22],[0,-11],[-4,-20],[-13,-2],[-7,-6],[-6,14],[-4,22],[-4,9],[-3,-5],[-3,-25],[1,-14],[4,-20],[-2,-32],[6,-24],[-1,-17],[-7,-20],[4,-25],[3,-28],[1,-37],[-3,-17],[4,-41],[-3,-12],[-10,-18],[-2,-11],[0,-25],[4,-11],[2,-29],[-2,-16],[9,-9],[5,5],[6,-2],[-1,-8],[5,-5],[0,-17],[-9,-18],[6,0],[5,-7]],[[9333,1672],[-10,-7],[-6,-9],[12,9],[4,7]],[[8476,1642],[-3,10],[-10,-2],[8,-8],[5,0]],[[8498,1642],[7,3],[-6,12],[-9,10],[-6,-12],[-6,4],[9,-23],[11,6]],[[5211,1677],[9,-15],[1,-10],[15,-5],[11,-16]],[[5248,1631],[-10,16],[8,5],[9,-1],[1,-19]],[[9295,1657],[0,8],[-8,-8],[-7,-11],[-1,-7],[-9,-9],[5,-3],[10,2],[-2,3],[5,15],[7,10]],[[8849,1416],[0,0]],[[9211,1440],[-4,5],[7,-17],[1,-12],[12,-5],[9,-7],[4,15],[-2,4],[-9,3],[-18,14]],[[5661,1061],[-1,12],[-7,-10],[8,-2]],[[6611,985],[-10,-5],[-5,-10],[17,4],[-2,11]],[[5853,973],[0,0]],[[6062,830],[-17,19],[-20,7],[-13,-4],[-5,-14],[1,-13],[14,-13],[11,-1],[27,15],[2,4]],[[6537,810],[-3,5],[-6,-2],[5,-5],[4,2]],[[9151,847],[0,-6],[-9,-6],[1,-13],[-2,-9],[11,-10],[3,4],[-2,9],[-5,1],[0,13],[4,10],[-1,7]],[[9366,807],[-8,1],[-16,-5],[-15,-10],[7,-8],[8,-3],[29,8],[1,6],[-6,11]],[[6345,787],[0,11],[-17,3],[-7,-3],[-2,-7],[-10,-3],[-4,2],[-9,-10],[-7,-13],[10,-10],[7,0],[8,5],[9,10],[22,15]],[[6515,752],[0,0]],[[9130,736],[-8,-2],[4,-4],[4,6]],[[6136,705],[7,12],[-4,10],[-8,-12],[-15,-6],[3,-4],[17,0]],[[8498,696],[-7,5],[-12,-2],[-6,-4],[6,-4],[16,0],[3,5]],[[9666,695],[8,-4],[16,0],[21,4],[15,11],[7,3],[1,7],[-8,6],[-37,7],[-10,1],[-6,-3],[-11,0],[-6,5],[-14,0],[-10,4],[-4,-10],[7,-14],[18,-12],[13,-5]],[[6822,651],[-20,0],[19,-19],[19,4],[3,4],[-16,10],[-5,1]],[[6874,627],[-17,-2],[-7,-8],[15,-12],[10,10],[-1,12]],[[6740,618],[-16,-9],[3,-5],[15,0],[6,3],[-6,2],[-2,9]],[[8006,605],[-13,3],[-4,-5],[12,-2],[5,4]],[[6203,593],[22,3],[9,3],[-8,12],[-3,12],[-9,1],[-3,10],[-7,7],[4,17],[-6,14],[5,4],[4,10],[11,20],[12,14],[12,10],[21,11],[-14,8],[-14,-3],[-4,-5],[-6,1],[7,7],[-2,2],[-8,-6],[-10,2],[-3,-5],[-13,3],[-18,-1],[-10,-5],[-23,-7],[6,-1],[0,-9],[7,0],[-1,-4],[8,0],[-22,-15],[3,-8],[-14,2],[-14,-2],[-13,3],[-10,-5],[-4,-12],[0,-9],[4,-8],[8,-5],[11,2],[11,-12],[7,-19],[-11,-4],[11,-10],[13,-1],[-4,-3],[0,-12],[17,-7],[7,2],[19,-7],[15,5]],[[6629,605],[-8,3],[-13,-2],[3,-8],[-2,-8],[11,-7],[19,-2],[16,13],[1,7],[-8,0],[-19,4]],[[6798,585],[-15,-2],[0,-4],[15,6]],[[6763,584],[2,-5],[14,0],[-7,5],[-9,0]],[[8615,559],[13,5],[20,14],[3,6],[1,12],[-9,2],[-44,-5],[-11,-5],[-15,-4],[-18,6],[-9,-4],[19,-3],[6,-5],[8,-12],[6,-5],[16,-3],[14,1]],[[8125,562],[-5,-5],[8,2],[-3,3]],[[6987,549],[-4,2],[-17,-3],[10,-4],[11,5]],[[6963,548],[-9,-1],[7,-3],[2,4]],[[8449,558],[-4,-1],[-17,-14],[-1,-5],[18,10],[6,6],[-2,4]],[[8583,553],[-14,5],[-9,-5],[0,-14],[18,-2],[7,4],[-2,12]],[[7020,526],[-1,4],[-10,-3],[9,-4],[2,3]],[[7816,530],[-6,9],[-10,8],[-18,-2],[-19,-12],[13,-2],[3,-10],[24,4],[13,5]],[[7073,496],[11,0],[-3,9],[-15,-1],[-4,-3],[11,-5]],[[6949,471],[0,5],[-7,5],[-2,-4],[-6,2],[-5,-5],[7,-5],[12,-3],[1,5]],[[8743,474],[8,0],[10,-4],[28,2],[1,8],[12,2],[5,-2],[28,2],[12,8],[8,-4],[-5,13],[-8,4],[-21,5],[-36,-1],[-15,-8],[-17,-4],[-12,-6],[-16,-5],[6,-16],[5,-6],[6,4],[1,8]],[[8442,472],[-14,0],[7,-25],[13,13],[-5,5],[-1,7]],[[8913,431],[-9,-2],[6,-2],[3,4]],[[8556,448],[10,1],[2,7],[9,3],[4,-5],[-1,-10],[3,-6],[13,-8],[14,4],[13,9],[13,5],[21,-2],[44,16],[3,3],[-10,2],[-8,7],[4,6],[-18,12],[-6,0],[-23,-3],[-10,-9],[-2,-16],[7,-5],[-2,-5],[-10,0],[-13,3],[1,12],[13,18],[15,10],[-14,8],[-10,-1],[-8,-8],[-19,4],[-29,4],[-14,-7],[-4,1],[-5,12],[-9,5],[-28,-8],[-12,-12],[-13,-8],[-7,-7],[1,-6],[8,1],[-2,-12],[4,-14],[10,3],[-6,-9],[4,-5],[10,-2],[6,-5],[17,-5],[26,13],[8,9]],[[7347,422],[-6,9],[-28,-6],[2,-4],[32,1]],[[7356,426],[-3,-3],[3,-7],[6,4],[-6,6]],[[7790,401],[5,5],[-3,5],[-11,-5],[-4,-5],[13,0]],[[7377,403],[-5,1],[-2,-8],[7,7]],[[8809,400],[-21,0],[9,-5],[19,-2],[-7,7]],[[6548,424],[-24,10],[-35,9],[-38,11],[-17,3],[-44,14],[-12,6],[-9,0],[-4,5],[-14,10],[-12,5],[8,4],[-15,9],[-6,0],[0,6],[-5,2],[-9,-5],[-4,11],[-6,2],[-10,-2],[4,12],[-7,10],[-18,6],[3,10],[-8,4],[-8,-4],[5,11],[-10,8],[-5,8],[-9,4],[-30,-3],[-15,-6],[-12,2],[-8,4],[-5,-7],[3,-4],[-13,-13],[18,-9],[5,-1],[21,-27],[20,-4],[-11,-4],[-3,-4],[10,-10],[16,-9],[-13,-3],[-6,-8],[6,-3],[14,6],[10,-9],[-2,-5],[8,-4],[14,4],[5,-10],[9,-5],[-1,-4],[10,-3],[13,-8],[32,-7],[6,-7],[10,-1],[5,3],[7,-3],[-1,-7],[5,-3],[16,0],[13,3],[20,0],[16,-4],[26,-4],[13,-6],[6,-1],[20,-8],[5,-6],[21,-10],[23,-7],[23,5],[11,9],[1,13],[-19,15],[-13,4]],[[7341,378],[-12,4],[-5,-4],[-12,0],[17,-3],[18,-7],[1,5],[-7,5]],[[7152,368],[-10,-1],[4,-4],[9,-1],[-3,6]],[[7650,366],[-4,-3],[6,-3],[5,5],[-7,1]],[[6034,2146],[-5,9],[-11,6],[2,11],[-7,-3],[-9,12],[-13,3],[-2,6],[-3,-6],[0,11],[-4,4],[-4,23],[-4,12],[-2,-4],[-7,13],[-2,9],[15,18],[4,11],[2,25],[3,-16],[-2,26],[1,10],[-2,10],[7,13],[1,8],[10,19],[7,23],[6,6]],[[5777,2314],[-13,-17],[-5,-10],[-17,-23],[-15,-7],[-9,-16],[-5,2],[-8,-4],[-5,-14],[-17,-12],[9,-6],[-6,-5],[3,-3],[11,9],[1,-3],[11,-3],[0,-16],[10,-23],[2,6],[3,-9],[8,0],[-11,-17],[-3,1],[-6,-15],[6,1],[7,-5],[8,2],[-2,-8],[19,-12],[5,-5],[-3,-9],[-5,-1],[-3,6],[-10,1],[1,-5],[-10,9]],[[5728,2103],[-1,-13],[2,-14],[13,-9],[2,-7],[24,0],[3,-3],[3,-16],[-1,-22],[-6,-3],[2,-11],[8,-1],[-8,-6],[-1,-6],[6,-3],[7,-14],[-3,-16],[-7,1],[-18,-16],[-3,2],[-10,-8],[-13,-7],[-4,9],[-10,-11],[-3,-11],[-8,-7],[-4,4],[-11,3],[-4,5],[-8,-4],[-6,-8],[-7,-1],[-5,5],[-9,-15],[3,-7],[-10,-26],[-9,1],[-14,-8],[-4,-21],[8,-6],[-8,-12],[-8,-19],[-19,-3],[-10,7],[-9,-4],[-3,2],[-2,10],[-9,3],[-6,-3]],[[5444,1388],[0,-13],[4,-3],[5,5],[5,-9],[13,0],[4,-9],[14,3],[13,5],[2,-5],[-12,-14],[-18,0],[-12,-10],[-4,-7],[4,-7],[-4,-4],[-10,6],[-10,2]],[[5524,796],[16,5],[9,-8],[6,0],[0,-7],[27,12],[0,7],[-6,1],[-16,-4],[-1,5],[6,6],[17,0],[0,7],[11,-5],[2,3],[-3,14],[3,1],[7,-10],[18,0],[15,5],[11,-3],[16,5],[21,11],[31,18],[20,19],[11,1],[20,15],[7,0],[-3,-5],[23,22],[12,4],[4,25],[7,4],[-2,16],[-21,28],[-12,8],[-24,10],[-16,4],[-29,-4],[-18,-8],[-18,-2],[-22,-5],[-20,-12],[-9,3],[-2,-7],[-18,-5],[-9,0],[-8,-5],[-8,-10],[2,-5],[-15,-3],[-14,0],[9,3],[7,5],[0,5],[13,13],[7,2],[1,8],[12,5],[-2,7],[23,11],[8,10],[3,8],[-5,18],[-6,7],[7,13],[5,14],[1,21],[4,7],[10,5],[7,-2],[14,11],[5,11],[18,5],[13,6],[15,-8],[3,-5],[-4,-17],[-6,-4],[-12,1],[-7,-6],[-12,-15],[-2,-11],[7,-3],[3,-11],[7,-1],[11,5],[16,15],[8,0],[18,8],[14,8],[4,0],[4,-7],[6,-4],[11,-1],[-5,-13],[-11,-14],[-5,-11],[3,-9],[14,-9],[9,-12],[23,-9],[9,-8],[12,-15],[9,5],[19,1],[12,9],[-4,8],[6,-2],[10,8],[0,-13],[3,-10],[8,-15],[-2,-20],[-4,-5],[-12,-5],[0,-14],[11,-32],[-2,-20],[-21,-16],[2,-4],[15,8],[29,-2],[13,2],[10,4],[7,11],[15,17],[0,8],[-32,5],[-17,17],[0,7],[18,9],[5,12],[5,8],[17,2],[26,-7],[5,-3],[3,-17],[3,-10],[-1,-8],[29,-8],[-4,-10],[11,2],[22,-12],[8,-6],[17,-10],[7,0],[25,-11],[8,5],[1,7],[12,-8],[-5,-7],[-6,-1],[9,-7],[32,-15],[19,0],[-17,4],[1,3],[-5,14],[5,6],[-3,8],[-13,3],[-2,4],[19,1],[14,-2],[7,6],[4,-1],[2,-10],[13,-11],[17,-5],[17,2],[14,4],[9,-5],[20,-15],[25,-6],[1,6],[7,9],[-7,7],[0,10],[14,5],[7,-2],[2,-5],[-2,-13],[17,-1],[13,-15],[-3,-9],[-5,2],[-14,-28],[24,-15],[21,5],[24,1],[20,4],[23,8],[21,12],[2,3],[20,8],[2,3],[17,8],[16,4],[4,7],[14,10],[2,4],[18,10],[4,-1],[9,-12],[9,-22],[-11,2],[-7,-3],[-11,-16],[-3,-14],[-26,-12],[-5,7],[-2,-16],[3,-10],[6,0],[3,-5],[-3,-11],[3,-11],[1,-14],[-4,-6],[-9,2],[-4,-6],[5,-9],[-2,-4],[4,-9],[10,-3],[19,-12],[8,-8],[10,-19],[6,-21],[5,-16],[11,-17],[8,-1],[-1,4],[28,1],[23,-2],[11,6],[6,-1],[20,8],[-2,20],[-5,19],[-8,19],[-11,8],[-1,5],[6,9],[14,9],[4,10],[-1,30],[-6,10],[2,6],[2,22],[0,18],[-2,5],[1,25],[7,9],[20,13],[1,6],[-9,11],[-4,11],[2,6],[-3,13],[-13,10],[-21,33],[-5,5],[-9,-2],[6,12],[-18,12],[-5,2],[-10,-5],[-14,-14],[-4,2],[-14,-2],[-7,3],[6,12],[21,11],[11,3],[22,-1],[12,1],[9,5],[12,-4],[3,-15],[30,-16],[8,-9],[5,-18],[3,-5],[18,-20],[0,-13],[-3,-13],[-7,-12],[6,-19],[15,-6],[13,-2],[14,-5],[10,0],[8,12],[10,10],[4,7],[0,31],[-3,9],[17,12],[6,1],[26,-2],[-2,-2],[-35,-7],[-2,-9],[3,-16],[11,-4],[-1,-7],[-10,-31],[-45,-19],[-16,0],[-10,6],[-8,3],[-11,-3],[-11,0],[-6,-5],[4,-11],[-10,-17],[7,-27],[14,-23],[-1,-4],[-15,-24],[-4,-9],[-12,-9],[-2,-4],[16,-23],[17,-6],[20,-11],[3,-7],[-2,-21],[-8,-11],[12,-2],[6,3],[6,13],[3,16],[-13,28],[7,9],[-1,7],[-6,6],[3,5],[21,7],[41,3],[14,11],[12,4],[12,-1],[3,-4],[-13,0],[-6,-5],[-4,-11],[-9,-3],[-12,1],[-10,-6],[-19,-8],[-7,-8],[-4,-13],[11,-5],[12,-2],[19,11],[6,1],[12,-5],[-2,-7],[-9,-4],[-8,2],[3,-7],[10,-8],[14,-4],[26,1],[15,9],[21,7],[4,8],[17,13],[17,2],[13,-3],[15,2],[4,3],[-9,15],[-16,9],[-3,15],[3,11],[-5,12],[2,12],[1,-9],[9,-20],[8,-5],[5,9],[-1,14],[-9,21],[5,6],[7,0],[-1,-10],[16,-8],[2,-7],[-4,-13],[-12,-19],[3,-10],[8,-16],[0,-6],[-10,-13],[-12,-1],[-12,-10],[-4,-10],[-11,-5],[-19,-3],[-8,-6],[-5,-13],[6,-14],[-10,-7],[-3,-16],[6,-7],[-2,-5],[36,-5],[48,-1],[33,-5],[9,2],[11,-1],[4,-5],[27,-4],[9,0],[3,4],[-18,12],[-16,7],[0,10],[14,7],[12,4],[-21,-12],[-1,-7],[12,-6],[21,-3],[12,-11],[-10,-4],[-17,-21],[-16,-4],[5,-6],[10,-2],[10,7],[9,-2],[-22,-13],[-18,-3],[3,-6],[8,-4],[13,8],[6,-2],[15,-13],[2,-4],[-16,-6],[7,-5],[14,3],[23,-8],[6,-5],[17,-6],[8,1],[15,-8],[24,-3],[13,0],[10,-4],[48,-8],[14,-3],[2,-4],[-20,4],[-7,-4],[-8,4],[2,-10],[8,-1],[11,2],[13,-3],[10,1],[3,-3],[13,2],[15,-1],[14,3],[-12,11],[24,-7],[-1,7],[10,-2],[13,-6],[5,3],[5,-6],[28,-9],[25,7],[4,5],[-3,13],[7,-7],[-1,-12],[-6,-6],[-23,-14],[2,-2],[20,3],[21,-1],[14,-4],[6,4],[15,1],[1,-1],[-20,-4],[5,-10],[-5,-6],[2,-9],[15,-13],[30,-17],[14,-7],[13,0],[12,-6],[22,5],[5,2],[20,5],[10,8],[-9,2],[-10,6],[-33,7],[31,2],[10,-2],[1,7],[18,-3],[16,1],[14,5],[-14,13],[-8,9],[-6,3],[11,2],[10,-2],[15,0],[5,-3],[4,-9],[36,-1],[18,1],[14,-2],[25,4],[10,5],[10,7],[-5,6],[9,-3],[10,3],[6,18],[9,-6],[-5,-4],[8,-1],[5,8],[3,13],[9,-2],[-3,12],[-5,9],[-5,-7],[-8,-2],[-14,-7],[10,15],[8,-2],[3,5],[9,4],[-2,8],[-19,17],[-21,10],[-9,6],[-16,5],[-25,11],[-4,5],[-12,3],[0,9],[-8,5],[-12,3],[-25,20],[-12,4],[-13,0],[-17,16],[-13,2],[-15,20],[-14,10],[15,-3],[10,-7],[7,-9],[22,-4],[18,1],[17,-8],[20,-4],[7,-7],[13,1],[17,-9],[10,-3],[-1,-5],[-18,4],[-9,-1],[-3,-5],[5,-7],[12,-5],[22,4],[2,-6],[12,1],[-9,4],[4,8],[21,7],[18,-2],[4,-6],[-3,-7],[10,7],[6,11],[-7,11],[9,7],[0,17],[-10,12],[5,10],[11,0],[-11,-4],[-3,-4],[10,-15],[0,-10],[9,-6],[-9,-5],[-1,-5],[15,-4],[21,-1],[15,-6],[32,2],[22,4],[32,1],[12,3],[2,3],[-14,1],[0,12],[14,8],[13,3],[9,5],[24,0],[11,2],[21,-2],[8,4],[14,2],[6,-2],[-7,-4],[3,-3],[15,4],[13,-14],[-7,-8],[-3,-11],[6,-8],[8,2],[7,-5],[14,-2],[30,14],[0,4],[18,-6],[0,7],[8,5],[14,-12],[25,6],[9,6],[0,4],[9,0],[8,5],[5,8],[-13,9],[12,1],[6,5],[0,5],[-12,6],[-11,3],[4,3],[15,0],[9,10],[0,9],[-4,4],[-10,1],[-12,-10],[-19,-11],[1,7],[14,13],[16,19],[6,-11],[9,12],[-14,2],[-1,6],[6,0],[17,28],[8,3],[14,10],[8,-3],[2,8],[7,4],[8,-5],[13,-22],[9,-25],[12,-17],[4,10],[9,9],[15,10],[12,3],[17,-1],[8,-7],[24,-7],[15,4],[25,12],[9,9],[8,4],[-2,-5],[13,-6],[-11,-3],[5,-11],[12,0],[7,-4],[12,11],[21,-3],[-8,-12],[1,-10],[-10,-4],[8,-3],[5,-8],[10,-3],[-16,-2],[-12,4],[-1,-10],[13,-9],[23,0],[18,-6],[-3,-7],[-9,-7],[1,-3],[17,2],[6,4],[15,4],[40,1],[47,7],[29,8],[0,5],[-37,-3],[-9,6],[-11,2],[8,5],[16,-5],[49,-2],[0,3],[-11,12],[-11,5],[6,-11],[-15,-4],[-1,8],[3,8],[-10,2],[-10,-2],[-2,10],[6,4],[17,-3],[16,-10],[14,-16],[10,-8],[5,-1],[27,2],[31,9],[7,4],[7,11],[-4,3],[-23,3],[-2,6],[15,1],[11,4],[3,5],[16,0],[2,3],[-12,11],[20,-6],[17,5],[15,15],[-10,3],[21,8],[36,-3],[17,-5],[17,-3],[16,-2],[8,-2],[43,1],[17,1],[18,7],[18,8],[11,9],[5,8],[2,17],[-3,3],[-4,17],[3,5],[25,7],[5,3],[3,29],[8,7],[-5,19],[-8,7],[7,-2],[7,-15],[6,-5],[-3,-18],[2,-10],[17,-12],[29,-6],[8,1],[19,-3],[10,8],[34,1],[6,1],[25,4],[21,-14],[6,0],[9,10],[4,17],[28,11],[3,10],[5,7],[26,-2],[13,-13],[0,-5],[-8,-15],[-4,-11],[-12,-2],[10,-13],[-1,-15],[22,2],[36,6],[20,8],[4,-7],[15,5],[10,-1],[13,2],[27,-3],[10,2],[22,12],[13,3],[15,6],[26,6],[3,5],[9,3],[16,14],[35,15],[5,12],[17,7],[1,9],[7,-4],[-14,-10],[1,-2],[24,17],[57,33],[3,13],[-4,6],[11,-5],[4,5],[-3,14],[5,10],[0,9],[-4,9],[11,5],[4,11],[8,-9],[1,15],[8,-11],[-9,-6],[-4,-6],[5,-3],[-1,-15],[-13,-7],[3,-2],[16,0],[5,-2],[15,4],[-6,13],[5,-1],[-1,-6],[19,2],[-1,-3],[22,3],[12,15],[12,8],[12,12],[-3,4],[10,-1],[0,6],[13,1],[-2,9],[-9,-1],[-11,8],[0,13],[-12,-1],[-11,-8],[7,10],[1,7],[-7,-1],[-16,2],[-10,-5],[-4,-5],[-10,-1],[16,15],[-3,8],[-9,2],[10,2],[2,10],[-11,8],[-11,1],[-2,4],[8,1],[-4,5],[2,6],[12,5],[1,6],[-10,0],[-5,-5],[-2,12],[-8,0],[-1,-14],[-8,10],[-11,-5],[-8,-11],[-20,-10],[-10,1],[-13,-12],[1,-6],[-3,-14],[-5,-7],[-27,-8],[-17,7],[-20,0],[-3,-3],[0,-12],[-5,-3],[-7,-13],[6,1],[6,-22],[-10,12],[-6,-3],[0,-6],[-7,3],[-2,9],[-7,-3],[-3,10],[1,12],[8,7],[3,10],[-10,19],[-13,8],[-11,13],[-8,2],[-12,9],[-27,-5],[-16,-18],[-8,-3],[-15,2],[17,1],[8,9],[-5,5],[-6,-4],[-8,1],[-14,-7],[-7,6],[-11,4],[-8,0],[-16,6],[16,-4],[16,-2],[10,-7],[5,3],[3,8],[-5,7],[10,-5],[6,3],[9,-6],[11,-1],[-1,17],[7,8],[8,5],[5,-1],[3,-7],[4,6],[2,14],[5,3],[2,17],[-8,4],[10,3],[4,12],[13,11],[-4,8],[7,8],[2,11],[-11,12],[-2,9],[-30,-13],[-20,-3],[1,-11],[-9,0],[-2,7],[6,6],[-13,3],[-10,9],[-30,14],[-2,4],[-19,12],[-10,2],[-9,7],[-5,-3],[-14,18],[-8,-3],[2,9],[-5,0],[-4,7],[-5,1],[-1,6],[-13,12],[-5,1],[-22,18],[-9,5],[-7,27],[-11,-6],[-2,-8],[-8,-13],[-11,-9],[-15,2],[-15,-1],[-25,10],[-7,6],[-18,25],[-4,1],[-1,-8],[6,-29],[-30,21],[-6,2],[-1,13],[-7,0],[-3,-8],[-6,-4],[-10,10],[1,-5],[-10,-3],[-10,12],[-3,7],[-1,23],[-7,17],[-16,18],[-8,15],[-5,21],[3,12],[11,6],[1,-8],[4,-3],[16,10],[-3,13],[-10,10],[1,33],[3,5],[10,2],[-1,7],[3,19],[-8,11],[-6,-1],[-6,-10],[12,-16],[-11,1],[-5,6],[1,8],[-12,10],[-8,25],[-2,17],[3,12],[5,8],[3,15],[-11,12],[-12,1],[-4,-5],[-10,4],[-20,20],[-4,10],[-2,13],[3,14],[-2,10],[4,13],[-7,-5],[-5,0],[-13,7],[-11,12],[-5,-9],[-3,5],[5,5],[-4,15],[0,19],[-10,28],[-8,12],[-10,11],[-17,23],[-3,2],[-2,-14],[-4,-5],[-1,-36],[-4,-33],[-4,-7],[-3,-22],[-4,-42],[-7,-45],[-4,-39],[0,-9],[4,-41],[9,-40],[14,-16],[9,-15],[3,-10],[-5,-16],[5,-5],[13,1],[6,-12],[17,1],[5,-9],[21,-20],[11,-17],[7,-18],[14,-16],[5,-9],[9,-4],[16,-23],[9,-7],[7,-16],[7,-7],[13,-7],[7,-7],[10,-1],[10,-7],[-4,-6],[9,-12],[3,-10],[-5,-3],[2,-10],[4,-4],[1,-19],[4,-15],[11,-10],[15,3],[7,-4],[-17,-5],[-6,-6],[-9,-1],[-25,8],[-3,6],[-6,38],[7,5],[-8,9],[-3,-9],[-13,3],[-38,40],[-8,12],[-11,2],[-5,5],[1,-12],[5,-11],[-6,-1],[-11,5],[5,-10],[-2,-9],[8,-14],[4,-15],[-4,-6],[-17,10],[-10,-12],[-18,7],[-6,-1],[-5,4],[-19,-2],[-11,7],[-11,11],[-1,12],[-16,16],[-6,13],[-12,13],[-12,10],[-11,16],[-4,12],[-4,3],[-4,17],[3,4],[9,-4],[11,5],[5,5],[0,10],[-10,0],[-3,3],[-7,-5],[-6,7],[-6,2],[-9,-9],[-9,1],[-3,7],[-5,0],[-5,8],[-9,0],[-5,-5],[-9,7],[-10,3],[-11,-1],[-5,-12],[10,-5],[14,1],[7,-4],[-13,-6],[-8,-11],[-13,-4],[-5,7],[-10,-2],[5,-3],[-28,-12],[-7,0],[-10,8],[4,7],[-7,2],[-4,-4],[-1,9],[6,1],[-2,5],[-11,1],[-7,-9],[-11,2],[-10,6],[-29,-9],[-5,12],[-10,1],[-4,-10],[-6,-2],[-30,2],[-17,-2],[-9,4],[-10,-1],[-17,7],[-15,14],[-8,15],[-11,12],[-10,6],[-8,12],[-7,23],[-12,7],[-4,8],[-12,13],[-7,4],[-6,10],[-8,7],[-13,19],[-2,8],[-12,21],[-25,25],[-10,7],[-8,13],[-11,10],[-6,4],[-9,11],[1,10],[16,9],[27,-2],[-3,40],[1,7],[12,-1],[3,-12],[-4,-9],[7,-5],[8,0],[-9,10],[8,8],[6,1],[-6,5],[-3,9],[-8,9],[20,-3],[8,-7],[4,-11],[5,-2],[0,7],[-9,17],[6,0],[6,-12],[1,-28],[-1,-6],[18,8],[11,-5],[13,13],[4,14],[10,12],[19,18],[1,6],[-6,10],[-9,-3],[11,13],[-3,27],[9,10],[-3,15],[-12,18],[-7,22],[-1,14],[-4,11],[-1,15],[2,25],[-2,11],[1,19],[-6,31],[2,5],[-4,11],[-3,20],[-21,31],[-10,29],[-12,19],[-5,18],[-1,11],[-4,5],[-3,12],[-12,25],[-15,25],[-9,12],[-15,29],[-3,11],[-8,6],[-11,31],[-10,18],[-12,14],[-27,26],[-15,8],[-5,-6],[-14,-6],[-5,1],[0,-25],[-8,12],[-4,1],[4,-11],[-8,5],[-9,22],[-7,11],[-12,-2],[3,8],[-4,13]],[[7657,315],[-5,4],[-30,-5],[32,-2],[3,3]],[[7618,311],[-6,-4],[8,0],[3,-4],[7,1],[-12,7]],[[7524,250],[-13,24],[5,-2],[10,-10],[20,-6],[7,2],[3,6],[10,2],[1,6],[20,3],[5,13],[-1,6],[-13,8],[-15,1],[-16,5],[-20,0],[-6,4],[-5,-2],[-40,1],[-17,9],[-20,5],[-9,-1],[-7,-4],[8,-8],[13,-9],[5,-11],[3,-9],[6,-6],[12,0],[-3,-6],[9,-18],[11,-3],[2,-7],[5,0],[5,7],[7,0],[1,-10],[14,2],[9,6],[-6,2]],[[6783,227],[32,6],[6,3],[-26,1],[0,-3],[-14,-2],[2,-5]],[[7447,230],[-6,0],[1,-6],[10,2],[-5,4]],[[7240,224],[-14,0],[-30,-11],[0,-5],[19,-4],[57,9],[-6,5],[-26,6]],[[6094,211],[-26,1],[-11,-4],[24,-6],[8,3],[5,6]],[[6324,210],[-10,2],[-12,-4],[3,-4],[15,-4],[9,8],[-5,2]],[[7379,198],[10,7],[-11,11],[3,3],[9,-6],[6,2],[9,-11],[18,1],[16,8],[6,6],[-8,8],[-2,19],[-4,3],[-14,-1],[13,9],[9,2],[3,8],[-14,7],[-28,3],[-33,-4],[-12,-7],[-13,-2],[-15,1],[-7,-6],[-15,3],[-10,-4],[-12,-16],[-33,-6],[11,-7],[12,-5],[11,-7],[3,-6],[16,-9],[10,3],[6,-5],[18,2],[42,-4]],[[6056,203],[-13,-5],[9,-4],[12,3],[-8,6]],[[6207,191],[-14,2],[11,-4],[3,2]],[[6252,186],[0,16],[-25,1],[-13,-3],[8,-4],[0,-8],[30,-2]],[[6153,197],[-25,0],[-13,-6],[12,-1],[7,-6],[13,0],[5,5],[10,2],[-9,6]],[[6275,200],[-15,-1],[-9,-20],[40,2],[12,2],[9,5],[-24,1],[-4,7],[-9,4]],[[6178,180],[-4,3],[-13,-3],[2,-8],[14,4],[1,4]],[[5984,158],[12,3],[13,-1],[6,2],[3,9],[-17,-2],[-10,-6],[-11,9],[-17,3],[-5,5],[-10,1],[-6,-6],[-8,1],[-21,-4],[7,-2],[33,-5],[13,-1],[6,-4],[12,-2]],[[6393,159],[2,3],[-5,10],[-22,6],[-6,5],[-22,-4],[-17,2],[-10,-4],[0,-5],[8,-12],[14,-2],[5,3],[29,-3],[8,-2],[16,3]],[[6062,154],[18,2],[22,12],[-20,8],[-20,1],[-14,3],[-5,6],[-19,0],[-6,4],[7,1],[2,7],[-11,-2],[-7,6],[-7,-2],[-10,3],[-3,-3],[10,-5],[-10,-2],[-10,4],[-8,0],[-9,-7],[28,-11],[22,-4],[5,3],[13,0],[4,-18],[7,-3],[21,-3]],[[6889,158],[-27,3],[-2,-3],[6,-6],[17,-1],[17,3],[-11,4]],[[6364,153],[-9,1],[-21,-3],[15,-6],[24,-1],[1,5],[-10,4]],[[6186,143],[21,6],[19,-1],[39,12],[0,4],[-35,7],[-16,0],[-5,-4],[-13,-3],[-11,1],[-4,-3],[-13,-2],[-1,-3],[9,-2],[10,-12]],[[6294,147],[8,12],[-1,3],[-26,0],[-5,-6],[-9,-1],[-6,-6],[13,-1],[11,-5],[15,4]],[[6075,147],[-10,-4],[6,-3],[8,1],[-4,6]],[[6426,167],[-10,-1],[-13,-6],[16,-8],[27,-2],[6,-10],[14,-2],[10,3],[6,5],[2,8],[-12,6],[-13,4],[-33,3]],[[7209,142],[-9,4],[-35,-3],[3,-6],[39,2],[2,3]],[[7347,145],[7,7],[31,11],[-2,4],[-16,3],[-6,6],[7,12],[-3,5],[-36,4],[-36,3],[-19,7],[-7,0],[-18,-7],[-22,-3],[-4,-3],[-13,-3],[-2,-5],[11,-6],[18,-3],[20,-15],[-20,0],[4,-5],[9,-7],[13,-3],[37,-5],[7,-3],[2,-5],[18,0],[20,11]],[[6314,132],[-17,0],[5,-5],[11,2],[1,3]],[[6272,118],[1,3],[16,2],[4,3],[-20,3],[5,6],[-7,5],[-9,2],[-18,-6],[-9,4],[-8,-3],[-13,2],[-7,-7],[19,0],[7,-5],[9,-2],[7,-5],[20,-3],[3,1]],[[6434,115],[-21,0],[-22,-4],[18,-3],[26,1],[-1,6]],[[6285,109],[-10,0],[6,-7],[31,-1],[3,5],[-30,3]],[[5514,4877],[-1,3],[9,25],[0,24],[2,10],[-2,12],[-7,2]],[[5488,4895],[7,-3],[3,8],[6,-9],[5,-14],[5,0]],[[4193,3617],[-2,-3],[3,-33]],[[5832,3852],[-5,-4],[4,-8],[1,12]],[[5691,3353],[0,0]],[[5683,3334],[0,0]],[[6012,3171],[5,24],[5,13],[0,10],[3,6],[9,8],[-2,3],[6,15],[4,0],[5,13],[8,7],[0,13],[6,17],[-4,20],[5,23],[6,7],[2,20],[6,17]],[[6089,3398],[5,2],[-3,13],[8,3]],[[6110,3721],[-45,13],[-17,4],[-20,7],[-24,23],[-16,42],[-4,20],[-8,8],[-5,0],[-7,-17],[-12,2],[-25,-5],[-7,-7],[-27,2],[-6,4],[-7,-2],[-8,-9],[-6,9],[-2,23],[1,15],[-10,19]],[[5855,3872],[-4,-25],[-8,-19],[-2,-17],[-15,-26],[-7,-22],[-2,-11],[-6,-13],[-3,-18],[-5,-28],[-5,-16],[-7,-13],[-12,-16],[-5,-2],[-8,-13],[-3,-12],[-7,-14],[-4,-19],[2,-12],[-5,-22],[3,-30],[-2,-20],[-6,-16],[-2,-9],[-7,-30],[-6,-11],[-10,-16],[-10,-6],[-10,-30],[2,-15],[-9,-33],[-5,-6],[-2,-17],[-4,-3],[-8,-29],[-11,-28],[-2,-10],[-6,-10],[-5,-17],[-8,-21],[-10,-2],[-3,4],[4,-26],[4,-49]],[[5689,3548],[3,24],[8,22],[-2,5],[2,32],[-1,25],[2,31],[3,29],[3,15],[7,7],[10,17],[3,8],[11,10],[1,5]],[[5613,4270],[-6,0],[1,-22],[0,-20],[-15,-26],[-7,-6],[2,-6],[-3,-42],[2,-14],[1,-23],[-13,0],[0,12],[-18,1],[8,18],[-1,21],[3,12],[-14,26],[-2,11],[-18,39],[-13,3],[-7,-14],[-13,-17],[-12,12],[-3,18],[-7,2],[-11,15],[0,8],[-22,0],[-4,-16],[-23,-1],[-9,7],[-5,-1],[-11,-26],[-8,-13],[-3,-13],[-20,7],[-1,14],[-6,16],[0,14],[-3,6],[-4,31],[-7,4],[-4,9]],[[5301,4186],[2,-24],[-8,-10],[-2,-9],[0,-21],[-3,-2],[-3,-34],[-3,-4],[-10,2],[-2,-7],[5,-17],[7,-13],[-4,-27],[2,-6],[10,-15],[-4,-22],[7,-8],[3,-18],[5,-9],[0,-21],[5,-10],[17,-3],[7,2],[0,-218]],[[5609,4572],[-10,24],[-4,3],[-8,-1],[-5,-6],[-7,6],[-11,4],[-5,10],[-6,-5],[-4,-11],[-8,7],[-10,-6],[-6,9],[-2,8]],[[4202,4104],[-2,-7],[6,-8],[-1,-7],[-4,8],[0,-28]],[[4206,4033],[-5,-15],[-1,-15],[-5,-17],[-8,-18],[-8,-3],[11,-9],[8,-23],[9,-30]],[[7554,4738],[-4,4],[-5,-3],[5,-7],[4,6]],[[3937,8180],[0,0]],[[3636,7928],[7,1],[6,7],[-1,5],[9,-2],[5,8],[2,10],[5,0],[2,11],[-8,6],[-12,-20],[-5,-2],[-22,-19],[-3,-5],[-10,-4],[17,0],[8,4]],[[4508,5736],[0,0]],[[4267,5274],[0,0]],[[9303,5487],[0,0]],[[9126,5495],[-5,-1],[-3,-7],[-8,-5],[2,-5],[11,12],[3,6]],[[9281,5435],[-7,5],[-3,-4],[3,-6],[7,5]],[[9158,5413],[8,6],[3,-2],[7,22],[-7,0],[-16,-15],[-1,-12],[-6,-2],[3,-7],[9,10]],[[9153,5370],[0,8],[-4,-5],[1,-10],[3,7]],[[9103,5349],[6,10],[11,-1],[8,9],[5,16],[-5,4],[-9,-6],[-13,-2],[-5,-9],[-2,-16],[4,-5]],[[9115,5333],[7,9],[-4,1],[-3,-10]],[[9088,5341],[-5,-3],[3,-5],[2,8]],[[9045,5320],[0,0]],[[9060,5323],[0,0]],[[9058,5315],[-3,5],[-4,-6],[4,-9],[3,10]],[[9038,5317],[-5,-11],[4,-6],[1,17]],[[9102,5305],[0,0]],[[9131,5294],[7,17],[-2,11],[6,9],[5,37],[-4,-12],[-9,-13],[-7,-48],[4,-1]],[[9048,5290],[4,15],[-2,6],[-7,-9],[-2,-11],[-8,3],[6,-19],[5,1],[0,9],[4,5]],[[9016,5286],[0,0]],[[9032,5282],[-6,-5],[2,-9],[3,1],[1,13]],[[9018,5272],[-5,-13],[2,-8],[7,9],[-4,12]],[[9107,5307],[-7,-10],[-8,-6],[-14,-17],[-7,-12],[-4,-12],[8,3],[10,17],[9,8],[12,17],[1,12]],[[8995,5224],[-5,-1],[2,-6],[3,7]],[[9040,5237],[-1,6],[-9,-6],[-6,-8],[-6,-16],[-5,-8],[-1,-9],[16,16],[3,13],[5,10],[4,2]],[[4318,4387],[-12,-8],[10,-4],[3,3],[-1,9]],[[4347,4417],[-12,-16],[-16,-11],[2,-9],[-1,-12],[-6,2],[-6,-8],[-3,-20],[-4,-1],[-3,-16],[5,4],[5,-13],[-8,4],[-1,-15],[4,-1],[-6,-11]],[[2227,4043],[-3,13],[-7,1],[-14,-7],[5,6],[-10,-6],[-11,-11],[-15,-5],[-8,-10]],[[6025,4167],[0,104],[-8,28],[-6,16],[-12,40]],[[5867,4153],[6,9],[5,18],[6,14],[12,18],[3,2],[15,0],[11,-12],[14,-11],[21,5],[11,-10],[11,-14],[9,3],[9,-1],[15,-11],[10,4]],[[6025,4167],[13,-5],[7,-6],[13,-5],[10,-11],[5,-13],[3,-2],[13,9],[-4,28],[2,39],[-3,13],[4,-7],[5,5],[-12,8],[-3,36],[0,16],[-5,19],[-6,15],[-9,37],[-7,14],[-5,28],[-10,28],[-6,33],[-1,14],[-12,39],[-11,31],[-7,26],[-13,31],[-18,39],[-23,47],[-6,9],[-25,29],[-16,24],[-18,31],[-27,59],[-5,9],[-9,24],[-7,13],[-10,35],[-2,7]],[[3107,2122],[0,0]],[[3103,2117],[-3,-13],[3,0],[0,13]],[[4851,4808],[-3,4],[-2,-10],[4,-10],[4,4],[-3,12]],[[4872,4725],[0,0]],[[3077,4496],[4,-23],[3,-3],[13,3],[14,8],[2,-5],[8,-6],[7,2],[15,-2],[13,5],[8,6],[0,11],[-2,15]],[[5292,1989],[-7,22],[-4,7],[0,9]],[[5043,2193],[4,-4]],[[5125,1573],[-3,-1],[0,-15],[6,-18],[3,-1],[8,-26],[3,2],[-10,29],[-7,30]],[[5196,1484],[-7,6],[-1,14],[3,5],[-5,9],[-7,5],[-3,10],[-6,4],[4,-10],[-5,-12],[1,-15],[7,-12],[13,-8],[6,4]],[[5198,1479],[0,0]],[[5178,1415],[0,0]],[[5183,1390],[0,0]],[[5337,1025],[-13,-1],[-13,2],[-3,3],[-10,-8],[-6,5],[-2,-5],[-5,7],[0,8],[-5,0],[-6,11],[-9,1],[1,14],[-13,20],[4,5],[5,20],[-12,12],[-7,18],[-16,11],[-8,3],[-5,9],[-10,-1],[-9,14],[-12,3],[-4,17],[-16,3],[4,14],[-11,8],[-6,-3],[0,10],[4,7],[-4,14],[1,16],[-7,-2],[-2,9],[2,15],[1,35],[9,3],[3,6],[8,-3],[1,5],[16,15],[-1,5],[7,5],[6,14],[-1,4],[-19,19],[-9,4],[5,3],[10,-6],[3,5],[-5,2],[-1,7],[-16,13],[-10,5],[-3,5],[-10,7],[-19,-1],[14,5],[3,4],[-7,4],[3,13],[-2,17],[-3,1],[0,19],[2,4],[-5,14],[1,11],[-3,15],[-7,18],[-4,16],[-5,5],[-9,-3],[-5,2],[-15,-1],[-1,7],[-5,0],[-9,9],[-1,9],[4,12],[-5,7],[-10,-2],[-14,5],[-12,-3],[2,-4],[0,-19],[-10,-19],[-3,-9],[9,1],[-4,-10],[5,0],[1,-10],[-5,-2],[-8,-15],[-7,-18],[-3,-14],[-3,3],[-2,-15],[-4,-3],[-1,-15],[-7,-7],[0,-13],[-5,-2],[-1,-28],[-2,-11],[7,1]],[[5558,6361],[-3,-1],[-1,27],[-14,-1],[-12,-10],[-4,-19],[-2,0],[-1,-19],[12,-35],[6,-6],[12,14],[3,-1]],[[2916,3773],[-3,0]],[[6209,5085],[0,6],[-5,-10],[5,4]],[[5665,2821],[-3,-13],[3,-22],[-5,-20],[2,-20]],[[5662,2746],[8,5],[5,-10],[1,-9],[8,-4],[-3,-13],[3,-20],[8,3],[4,6],[10,1],[21,-15],[7,2],[8,10],[17,0],[19,-8],[18,-16],[16,2],[14,-3],[14,-9],[3,10]],[[2657,3557],[0,0]],[[2676,3562],[0,0]],[[2670,3557],[0,0]],[[4711,4457],[-12,7]],[[7434,4440],[0,0]],[[7418,4378],[0,0]],[[7405,4358],[0,0]],[[7400,4360],[-4,7],[0,-20],[4,2],[0,11]],[[7396,4294],[0,0]],[[7446,4263],[-3,10],[-1,-10],[4,0]],[[7446,4257],[0,0]],[[7516,4143],[0,0]],[[7511,4125],[0,0]],[[7525,4141],[-9,-29],[-2,6],[-8,-17],[-14,-17],[-8,3],[-16,-5],[2,-26],[-1,-16],[-9,-6],[-11,5],[-5,7],[-1,6],[3,12],[-3,16],[1,24],[-2,17],[-9,34],[-4,33],[-8,33],[-1,34],[3,18],[0,9],[4,2],[12,-4],[2,10],[2,30],[4,10],[2,0],[7,57],[-6,-9],[3,-7],[-5,-1],[1,13],[8,20],[3,-1],[12,18],[8,-3],[9,9],[5,16],[8,14]],[[7447,4444],[-7,-18],[-5,-7],[1,-13],[-5,-7],[2,-7],[-7,-1],[-5,-20],[-3,0],[-1,-10],[-8,-10],[-1,-11],[-6,-4],[-2,8],[-4,-3],[-2,-18],[2,-24],[1,-19],[5,-16],[6,-36]],[[6629,2457],[0,0]],[[6548,2674],[3,-23],[12,-26],[2,-11],[-9,-15],[0,-11],[3,-13],[-5,-6],[-8,0],[-3,-9],[-6,-5],[2,-13],[8,-9],[21,5],[5,-17],[4,-5],[0,-8],[4,-5],[-8,-2],[8,-3],[9,2],[1,-8],[-3,-13],[6,-14],[8,8],[17,-13],[3,-8],[7,11],[2,9],[-10,13],[6,14],[9,-2]],[[6141,2580],[0,0]],[[6164,2664],[-3,-33],[2,-54],[-5,-14],[0,-6],[-12,-8],[-4,5],[0,-10],[3,-10],[10,3],[-4,-7],[1,-14],[-14,-4],[-3,4],[-4,-17],[0,-11],[6,-37],[5,13],[8,2],[3,-3],[9,11],[9,-4],[6,1],[-1,-10],[10,-1],[0,-10],[-4,-7],[-11,-14],[-4,-12],[-5,-26],[-7,-3],[-14,4],[-4,5],[-4,16],[2,3],[-1,26],[-7,-19],[-3,-14]],[[6221,2435],[28,3],[4,-6],[-4,-4],[-1,-24],[5,-5],[4,-10],[15,-4],[6,-17],[6,2],[4,9],[3,-1],[-10,-18],[3,-4],[8,1],[2,-6],[8,14],[8,3],[6,11],[13,0],[4,6],[-2,13],[5,3],[2,8],[-3,22],[10,10],[11,-2],[11,4],[5,-5],[6,2],[8,8],[7,32],[3,4],[6,29],[11,15],[17,19],[6,13],[12,12],[4,-2],[9,13],[13,12],[15,18],[10,-1],[17,18],[-2,9],[0,25]],[[8111,5353],[12,-8]],[[8136,5330],[7,-17],[17,-9],[21,-1],[12,-9],[9,6],[-11,17],[-8,4],[-4,8],[-9,4],[-6,8],[-15,8],[-9,14]],[[8156,5284],[0,0]],[[9807,6041],[0,0]],[[9800,6033],[0,7],[-5,-7],[5,0]],[[9834,5888],[0,0]],[[2972,4231],[-5,4],[-20,0],[10,-11],[2,-20],[-5,-5],[8,-6],[12,-2],[-3,10],[1,30]],[[2979,4171],[0,0]],[[4971,2873],[-7,-1],[1,-9],[5,0],[1,10]],[[4979,2813],[0,0]],[[4904,2688],[7,-4],[9,-11],[15,-9],[5,5],[9,3],[0,10],[6,17],[5,-8],[13,-11],[0,13],[-7,20],[-7,10],[-2,9],[3,16],[12,15],[1,17],[2,5],[-7,21],[-9,19],[-12,16],[-2,13],[3,11],[9,11],[7,-1],[0,10],[10,-3],[3,18],[9,4]],[[5388,2503],[-7,2],[5,-7],[2,5]],[[5662,2746],[3,-4],[-4,-18],[10,-20],[0,-9],[-4,-6],[-11,15],[-8,5],[-15,-13],[-6,0],[-8,11],[-11,18],[-6,6],[-25,9],[-12,-9],[-10,-20],[-21,-17],[-17,-2],[-4,32],[-7,0],[-15,9],[-10,-6],[-6,-8],[-2,-17],[-6,1],[-10,-8],[-5,0],[-8,10],[2,-7],[-12,5],[-5,-2],[5,-5],[10,-2],[7,-12],[-29,3],[2,-8],[7,-2],[0,-5],[-10,-8],[-3,-18],[3,-2],[1,-14],[-9,-5],[-6,-8],[-2,3],[-10,-8],[5,-5],[-1,-14],[6,3],[2,13],[12,-4],[-4,-2],[-6,-11],[0,-6],[8,-9],[-6,-4],[1,-9],[-5,-10],[7,-13],[-3,-3],[-20,6],[2,-11],[0,-19],[4,-2],[11,-22],[16,-3],[5,8],[11,-4],[-3,-7],[7,1],[-1,7],[9,-2],[9,2],[11,-1],[-6,-9],[5,-5],[24,-8],[-13,-2],[-8,-9],[0,-13],[7,-2],[16,4],[12,-3],[13,7],[15,-4],[3,-10],[29,-28],[24,-12],[38,4],[8,-7],[5,16],[10,9],[14,-3],[3,15],[9,10],[4,-6],[10,5],[2,5],[19,6],[4,5],[13,4],[29,-10],[11,7],[13,1],[15,-13],[7,-4],[12,-15]],[[5444,2398],[1,14],[3,10],[22,17],[3,1],[-3,13],[-4,2],[-18,-6],[-6,5],[-12,1],[-8,17],[-13,11],[-15,24],[1,-14],[13,-13],[1,-5],[-18,1],[-2,-7]],[[7955,3403],[0,0]],[[8027,3512],[-4,14],[0,26],[-5,-6],[0,-7],[-5,-16],[-5,-6],[-7,-35],[2,-9],[0,-20],[14,-48],[11,-32],[15,-14],[7,10],[3,8],[-3,8],[0,17],[-6,28],[-2,22],[-5,35],[-10,25]],[[5768,5275],[-2,-3],[9,-16],[-7,19]],[[5763,5171],[2,12],[-10,-6],[-1,-6],[1,-14],[3,-12],[3,22],[2,4]],[[5773,5098],[0,20],[-4,11],[-2,-5],[1,-14],[0,-11],[5,-1]],[[5755,5085],[-6,48],[-5,21],[2,26],[9,20],[1,8],[7,3],[2,9],[-4,10],[-5,18],[0,16],[5,1],[1,12],[-4,19],[4,34],[5,15],[0,12],[4,25],[-2,9],[19,21],[2,6]],[[5581,5357],[-17,-16],[-11,-4],[0,-7],[-9,-4],[-2,-9],[-5,-6],[-9,0],[-4,-8],[-4,-16]],[[5514,4877],[6,-4],[88,0]],[[5555,2154],[0,0]],[[5728,2103],[-19,1],[-7,9],[-7,2],[-7,10],[-10,-2],[-4,5],[-13,2],[-13,14],[-2,6],[-1,-10],[-5,10],[-6,5],[0,11],[5,17],[12,22],[10,-5],[5,2],[5,-5],[11,4],[-6,19],[-14,3],[-5,-6],[-6,1],[-10,17],[-11,-1],[-6,5],[-6,11],[-10,9],[-7,-3],[-6,-7],[5,-20],[-2,-11],[-4,-6],[-6,0],[-7,-9],[-9,1],[-4,-4],[19,-20],[4,-1],[10,-10],[-2,-9],[-4,2],[-7,-6],[-20,5],[-19,-14],[6,-6],[-13,-7],[23,4],[6,-8],[-6,3],[-10,-4],[-2,-9],[-2,8],[-9,-1],[-20,7],[-4,16],[-12,23],[-18,11],[4,19],[-1,5]],[[3184,6758],[-5,17],[-6,12],[-2,8],[-9,17],[-21,15],[-10,-2],[-3,-5],[-8,-3],[-12,9],[-8,-4],[-3,-5],[-10,-5],[-10,-12],[-17,1],[-16,-34],[-1,-10],[1,-31],[7,-6],[2,-10],[-3,-25]],[[345,3720],[-3,3],[-6,-9],[0,-15],[-4,-21],[6,-16],[-2,-8],[2,-7],[18,17],[3,14],[8,13],[-7,11],[-8,4],[-7,14]],[[310,3619],[-4,0],[-2,-8],[5,0],[1,8]],[[320,3609],[6,-1],[8,11],[-4,7],[-9,2],[-1,-11],[-6,-6],[1,-7],[5,5]],[[300,3593],[13,3],[-4,6],[-12,-3],[3,-6]],[[283,3579],[5,9],[-5,1],[-4,-5],[-3,4],[-6,-16],[9,-8],[4,15]],[[216,3557],[0,0]],[[240,3552],[-7,1],[-5,-7],[6,-12],[7,5],[-1,13]],[[2395,3401],[0,0]],[[2401,3398],[0,0]],[[2407,3395],[0,0]],[[2415,3392],[0,0]],[[2421,3387],[0,0]],[[2426,3381],[0,0]],[[2434,3367],[-6,11],[9,-23],[-3,12]],[[2388,3292],[0,0]],[[2386,3285],[0,0]],[[1967,3308],[-6,-38],[1,0],[5,38]],[[1962,3243],[0,0]],[[2439,3244],[0,0]],[[1972,3208],[0,0]],[[1979,3194],[6,-11],[3,0],[-9,11]],[[2025,3136],[0,0]],[[2117,3116],[-6,-4],[6,-2],[0,6]],[[2308,3108],[0,0]],[[2197,3104],[0,0]],[[2199,3098],[0,0]],[[2188,3082],[0,0]],[[2207,3075],[0,0]],[[2220,3073],[0,0]],[[2405,3031],[0,0]],[[1378,2924],[-2,0],[-3,-11],[5,11]],[[1348,2901],[0,0]],[[1378,2891],[0,0]],[[1332,2862],[-6,-6],[5,-1],[1,7]],[[1325,2855],[0,0]],[[1336,2852],[9,4],[-7,3],[-2,-7]],[[2540,2819],[0,0]],[[2541,2820],[0,0]],[[2561,2788],[0,0]],[[2568,2785],[0,0]],[[2565,2750],[0,0]],[[2574,2633],[0,0]],[[2607,2530],[0,0]],[[2606,2481],[0,0]],[[2652,2454],[0,5],[6,-7],[6,1],[-7,7],[-24,14],[-23,4],[4,-12],[9,-8],[10,0],[19,-4]],[[2723,2438],[0,0]],[[2708,2432],[-8,3],[4,-8],[4,5]],[[2684,2426],[0,0]],[[2687,2425],[0,0]],[[2760,2270],[0,0]],[[2772,2262],[-6,2],[3,-9],[3,7]],[[1254,2096],[0,0]],[[1267,2085],[0,0]],[[1264,2074],[0,0]],[[1262,2041],[5,14],[-6,-6],[-4,-12],[3,-9],[3,5],[-5,4],[4,4]],[[1255,2026],[0,0]],[[1250,2022],[0,0]],[[1256,2012],[0,0]],[[2802,2214],[0,16],[4,3],[-6,9],[-5,-1],[-6,7],[-7,0],[-6,11],[-5,-8],[-7,1],[-1,14],[-12,-10],[-3,19],[-5,7],[-8,5],[-5,-4],[-3,11],[-7,-4],[-6,10],[2,2],[-9,16],[-8,31],[5,11],[-5,4],[-6,13],[8,6],[7,24],[6,5],[8,-6],[-5,-16],[6,8],[1,15],[-14,5],[-6,5],[-2,-11],[-7,10],[-6,3],[1,-14],[-6,-3],[-4,24],[-27,6],[-12,-1],[-3,4],[-16,11],[-17,24],[-1,9],[8,3],[0,9],[-6,30],[-8,22],[-4,3],[-5,17],[-5,3],[2,-12],[-7,-3],[-10,-16],[2,-18],[-4,9],[0,9],[5,12],[0,11],[9,18],[-1,8],[2,14],[-3,0],[-6,19],[-6,25],[-5,9],[-5,18],[-2,-6],[3,-21],[7,-19],[-6,-1],[2,-7],[-4,-4],[2,-11],[-5,4],[-5,-4],[-1,-14],[7,0],[-8,-13],[4,-2],[-2,-19],[6,-13],[-11,11],[-5,-2],[5,11],[-4,19],[4,27],[-1,5],[-12,-6],[-4,-9],[-8,3],[7,2],[4,9],[10,6],[8,12],[-2,12],[-4,0],[-12,-20],[10,21],[7,5],[1,12],[-4,4],[-6,-2],[6,7],[3,9],[-3,4],[-7,-11],[5,16],[7,-3],[7,5],[7,44],[-5,-27],[-2,8],[4,18],[-9,-9],[0,7],[-6,1],[-5,7],[-4,-4],[-1,7],[18,-1],[0,16],[6,-15],[3,3],[0,15],[-12,17],[-12,-7],[-10,0],[11,8],[2,4],[-6,19],[8,-3],[2,3],[-4,9],[-6,4],[-11,0],[-6,5],[-1,6],[-8,9],[-5,12],[-2,12],[-14,2],[-12,11],[-8,18],[-2,13],[-10,10],[-6,12],[-4,-1],[0,9],[-12,9],[-6,-2],[3,7],[-10,17],[-2,10],[-6,4],[-1,20],[-6,11],[2,4],[-4,11],[-2,20],[2,5],[5,49],[10,43],[11,32],[-3,-1],[-2,10],[0,-15],[-4,-9],[2,21],[15,68],[3,7],[2,30],[-3,40],[-4,15],[-2,15],[-3,7],[-7,4],[-11,1],[0,-13],[-7,-27],[-9,-8],[-7,-30],[3,-11],[-5,7],[-2,-8],[2,-15],[-6,7],[-6,-12],[-7,-27],[2,0],[7,-18],[-5,-7],[-3,14],[-5,-9],[5,-36],[1,-23],[-4,-9],[-14,-23],[-11,-27],[-10,-11],[-9,5],[-1,7],[-11,7],[-15,6],[0,-12],[-9,-14],[2,-9],[-7,4],[-17,-11],[9,0],[-1,-4],[-8,-1],[-6,5],[-15,4],[6,-7],[-5,-5],[-3,12],[-5,-3],[-5,6],[-4,-1],[-7,-22],[-3,18],[-15,0],[-6,-3],[-12,3],[-7,12],[-18,-13],[-5,14],[7,7],[12,-9],[-2,10],[6,5],[5,-7],[1,13],[-9,8],[0,8],[5,7],[9,5],[5,7],[-4,11],[-6,2],[-4,-16],[-8,-4],[-2,-8],[-8,-4],[3,6],[-1,14],[-3,5],[-5,-11],[-6,1],[-4,8],[-15,-9],[3,-3],[-3,-9],[-7,-3],[-4,-11],[-6,-5],[-7,8],[2,6],[-5,2],[-12,-3],[-14,-10],[-14,0],[-4,3],[2,-13],[-5,8],[1,7],[-5,1],[-14,11],[-5,-4],[1,-11],[-8,2],[4,19],[-7,12],[-4,12],[-16,19],[-11,8],[4,-7],[-15,-5],[3,12],[3,1],[-7,8],[-3,-5],[-1,12],[-9,4],[2,9],[-5,7],[-5,2],[4,8],[-4,20],[-3,2],[-6,-8],[2,9],[6,2],[-2,17],[3,28],[8,30]],[[1413,2941],[-3,-7],[-2,-25],[-4,-13],[-17,-23],[-10,-1],[1,-7],[-3,-9],[-9,-1],[-12,-8],[0,-5],[-10,-9],[-16,-4],[-8,1],[-5,-7],[1,-28],[-7,-8],[0,-10],[-11,-17],[-5,-14],[-12,-23],[-1,-14],[3,-10],[-2,-11],[-8,-3],[-6,-13],[-4,-32],[11,13],[-7,-24],[5,-5],[19,-1],[-14,-4],[-4,4],[-9,-3],[1,16],[-13,-13],[-5,-22],[-5,-5],[-12,-22],[0,-12],[-3,-14],[0,-24],[-8,-18],[-6,-9],[-1,-14],[4,-12],[4,-44],[-2,-15],[-3,-4],[1,-11],[-4,-8],[-2,-15],[1,-12],[-4,-13],[5,-30],[6,-20],[1,-37],[2,-6],[-1,-20],[4,-36],[-1,-25],[2,-20],[10,-2],[9,4],[-13,-9],[-11,2],[1,-19],[3,10],[1,-13],[-5,-5],[-1,-7],[7,-6],[-7,-4],[-5,-21],[-2,-15],[-7,-14],[-3,-28],[21,13],[26,5],[7,-3],[3,14],[-11,19],[9,-8],[6,-13],[0,9],[-4,9],[3,8],[0,10],[-10,0],[-3,9],[11,0],[8,-13],[-2,-24],[5,-13],[-5,-10],[-3,-13],[0,-20],[-4,-2],[-3,-12]],[[9650,1856],[-4,0],[-17,-16],[6,2],[15,14]],[[9769,1832],[0,0]],[[9777,1831],[0,0]],[[9725,1840],[-6,-2],[3,-4],[-6,-7],[7,-3],[8,6],[-6,10]],[[9745,1836],[-14,3],[-1,-3],[10,-3],[6,-9],[-1,12]],[[9760,1828],[5,6],[-15,9],[7,-22],[5,2],[-2,5]],[[9626,1824],[0,0]],[[9658,1826],[-5,0],[2,-8],[3,8]],[[9776,1819],[0,0]],[[9594,1827],[-5,-1],[12,-12],[-2,9],[-5,4]],[[9845,1812],[14,4],[-12,2],[-11,-1],[-3,-4],[12,-1]],[[9875,1804],[0,0]],[[9814,1818],[-18,1],[28,-11],[-4,-6],[8,-6],[3,3],[-2,13],[-15,6]],[[9491,1799],[-9,-2],[8,-6],[1,8]],[[9923,1787],[0,0]],[[9952,1771],[0,0]],[[9466,1762],[8,1],[9,8],[-14,6],[-5,-8],[-7,-3],[9,-4]],[[9999,1743],[-8,6],[-4,9],[-18,14],[8,-13],[0,-5],[6,-7],[6,-3],[2,-10],[8,-4],[0,13]],[[0,1730],[5,3],[-5,10],[0,-13]],[[50,1721],[0,0]],[[38,1711],[6,-5],[5,3],[-9,13],[5,-1],[-11,13],[-11,5],[-10,8],[-8,-3],[18,-12],[4,-10],[8,-1],[-12,-7],[5,-7],[10,-2],[0,6]],[[60,1701],[-6,1],[-2,-7],[7,-2],[5,5],[-4,3]],[[68,1697],[-3,-7],[7,4],[-4,3]],[[151,1682],[-5,0],[-2,-6],[7,6]],[[158,1656],[0,0]],[[125,1647],[3,10],[9,9],[-8,-4],[-6,7],[-18,1],[-5,9],[-12,2],[-2,-11],[4,-3],[5,-13],[9,-2],[11,-8],[10,3]],[[240,1649],[0,0]],[[236,1639],[0,0]],[[1017,1642],[4,8],[-6,2],[1,-5],[-5,-1],[1,-14],[5,10]],[[226,1640],[-10,11],[0,-11],[7,-4],[3,4]],[[976,1652],[6,0],[-2,13],[-8,-9],[-7,-19],[-5,-7],[4,-1],[5,6],[7,17]],[[213,1627],[0,0]],[[203,1629],[6,8],[-10,0],[1,-12],[3,4]],[[964,1616],[-10,16],[1,-16],[9,0]],[[345,1600],[0,0]],[[1028,1619],[-3,13],[-8,0],[-2,-6],[-8,11],[-3,-15],[6,-8],[0,-15],[10,-7],[8,13],[0,14]],[[956,1570],[10,1],[4,8],[-1,6],[10,5],[16,30],[-9,-8],[-4,8],[5,-1],[7,6],[0,9],[7,1],[0,16],[-4,13],[-7,-12],[-10,-6],[-11,-19],[3,-1],[-1,-14],[-6,0],[-13,-10],[9,-1],[4,-7],[-3,-7],[-10,5],[-1,-2],[6,-9],[-1,-11]],[[977,1575],[-6,-5],[3,-6],[8,1],[-5,10]],[[997,1583],[-1,9],[-14,-7],[0,-9],[7,-15],[8,15],[0,7]],[[370,1565],[2,-8],[3,3],[-5,5]],[[383,1560],[0,0]],[[9950,1553],[8,1],[-3,4],[-5,-5]],[[979,1559],[-5,0],[3,-15],[7,13],[-5,2]],[[945,1541],[7,11],[-5,4],[0,17],[-2,11],[-6,1],[0,-19],[3,-3],[-6,-7],[-2,-15],[6,-6],[5,6]],[[962,1532],[5,0],[7,9],[-3,13],[-9,-12],[5,12],[-1,9],[-11,0],[-3,-19],[-7,-12],[2,-4],[15,4]],[[416,1525],[-8,7],[0,-12],[10,2],[-2,3]],[[9939,1520],[0,0]],[[917,1512],[3,6],[7,28],[-1,31],[-5,-6],[-4,-11],[3,-9],[-4,1],[-9,-14],[4,-8],[-9,-12],[-2,10],[-5,1],[-1,-14],[5,-3],[3,-10],[5,-2],[10,12]],[[410,1483],[0,0]],[[418,1485],[9,-2],[6,2],[0,10],[5,2],[-5,8],[-15,-2],[8,9],[-23,10],[-7,18],[-6,5],[-3,-3],[8,-9],[-7,-8],[-6,-1],[0,13],[-7,-7],[-6,-17],[1,-8],[11,-10],[7,0],[5,15],[0,-15],[4,-1],[-6,-7],[7,-4],[4,7],[8,-3],[2,-12],[9,5],[-3,5]],[[896,1460],[4,5],[0,10],[7,-8],[10,5],[0,13],[-10,3],[10,2],[3,8],[-3,6],[-15,-10],[-2,1],[-3,13],[-6,-3],[-4,-12],[-11,-11],[-4,-7],[8,-13],[5,7],[1,-6],[10,-3]],[[936,1460],[-4,3],[-6,-5],[4,-3],[6,5]],[[925,1465],[12,0],[10,22],[2,10],[-7,-13],[-5,-12],[0,8],[9,19],[1,11],[-10,14],[-8,5],[-2,-5],[4,-20],[-5,-9],[-4,-30],[-5,-10],[8,10]],[[433,1454],[8,-1],[4,7],[-4,5],[-4,-5],[-1,7],[-9,2],[-10,6],[-11,-6],[11,-12],[5,2],[-1,-9],[6,-1],[6,5]],[[431,1447],[-4,-4],[5,-4],[-1,8]],[[196,1441],[-5,1],[0,-6],[10,-7],[-5,12]],[[651,1370],[3,-8],[6,-4],[-9,12]],[[555,1356],[-7,0],[5,-5],[2,5]],[[563,1370],[-4,-1],[7,-12],[8,-8],[6,-11],[4,7],[-10,10],[-5,11],[-6,4]],[[52,1337],[10,4],[2,14],[3,9],[-15,4],[-1,5],[-28,-14],[-7,-12],[16,0],[3,-6],[7,-4],[10,0]],[[636,1340],[0,0]],[[600,1333],[7,4],[-13,7],[0,-12],[6,1]],[[565,1333],[-2,14],[-4,-1],[2,-13],[4,0]],[[443,1338],[0,0]],[[9867,1333],[10,3],[4,6],[-11,-2],[-12,-9],[4,-7],[5,9]],[[557,1312],[0,0]],[[9903,1150],[12,3],[17,-7],[8,5],[3,7],[16,8],[12,0],[8,3],[-4,8],[-14,0],[-9,12],[-5,-11],[-9,-3],[-6,-9],[-15,-6],[-12,7],[-10,-3],[-2,-5],[2,-13],[8,4]],[[52,1001],[0,0]],[[9999,1038],[0,0]],[[1055,1596],[-4,14],[3,20],[-4,16]],[[1039,1661],[-7,-4],[-6,-20],[9,-7],[-3,-3],[-2,-22],[-6,-13],[3,-7],[-22,12],[-1,13],[-4,6],[-4,-4],[-2,-8],[6,-10],[4,-14],[8,-2],[-10,-2],[-3,-8],[-8,-8],[-5,-14],[-6,-4],[-5,-13],[-16,-7],[1,-9],[-3,-21],[10,8],[-7,-10],[-3,-11],[-3,5],[-12,-14],[0,-12],[-5,2],[-6,-7],[-5,-1],[-12,-23],[-3,-17],[-4,-9],[0,-10],[-5,12],[13,50],[-3,5],[-5,0],[-6,-10],[-9,2],[0,-11],[-5,-18],[-3,7],[-8,-4],[-4,-6],[-11,-5],[3,9],[8,4],[5,7],[-2,4],[7,1],[5,14],[-11,1],[-4,5],[-13,-8],[-13,-11],[-19,-27],[-31,-19],[-14,-10],[9,-8],[-2,-9],[3,-7],[7,9],[7,-1],[-15,-11],[-9,11],[-10,6],[-18,-1],[-15,-9],[0,-8],[-8,4],[-24,-7],[-27,2],[-8,3],[-9,-1],[1,-4],[-7,-6],[-8,-2],[-7,-6],[5,-19],[-15,16],[-18,-5],[6,-10],[-13,-1],[-3,-5],[-7,3],[3,-6],[-7,-5],[1,-9],[9,-4],[-8,-1],[-11,9],[-8,0],[-3,4],[-5,-5],[-9,6],[-4,-4],[7,-15],[-12,11],[-4,10],[-6,3],[8,6],[-1,7],[10,5],[-7,6],[0,13],[-6,10],[-12,2],[-8,-5],[-8,2],[-5,14],[-3,-9],[-2,10],[-13,9],[-7,3],[-10,11],[-3,6],[-6,-3],[-15,6],[-7,-6],[3,-7],[13,-6],[6,-7],[3,-9],[-9,8],[-10,-2],[-3,-5],[7,-18],[5,-6],[3,-16],[0,-15],[25,-17],[9,6],[13,-2],[13,5],[1,-4],[-9,-1],[-17,-12],[9,-11],[12,-8],[-9,1],[-7,6],[-2,6],[-14,1],[-4,-3],[-25,17],[-8,9],[-2,7],[-11,12],[0,7],[-11,10],[-8,-4],[9,12],[-4,10],[-12,4],[4,7],[-8,4],[-2,-5],[-12,16],[-7,6],[-1,14],[10,3],[10,6],[2,8],[-9,10],[-10,8],[-1,7],[-6,5],[1,8],[-9,5],[-12,4],[-9,11],[-6,3],[-8,12],[-5,0],[-12,10],[-1,15],[-12,10],[-6,7],[-7,1],[-6,11],[-5,-2],[-8,8],[-10,5],[-4,7],[5,0],[3,6],[-6,8],[-3,-7],[-5,11],[-25,12],[-5,-3],[-18,17],[-12,1],[-5,7],[-10,0],[3,-9],[-2,-4],[-7,6],[-1,8],[-9,14],[-10,5],[-3,-12],[-3,0],[1,10],[-7,8],[-4,-5],[-8,12],[0,-17],[11,-5],[20,-29],[13,-11],[13,-8],[2,5],[6,-2],[-2,6],[7,8],[0,-7],[12,4],[1,-4],[-8,-8],[8,-17],[14,-15],[13,-7],[9,-10],[9,4],[0,-14],[10,-15],[13,-13],[11,1],[-7,-10],[4,-28],[10,-2],[-8,-3],[-1,-10],[13,-20],[7,-21],[-9,15],[-15,7],[-10,7],[-8,0],[-5,-12],[2,-9],[10,1],[-10,-6],[-10,11],[-2,10],[2,16],[-5,1],[-11,-17],[-9,-11],[-7,5],[-13,-13],[-11,10],[-12,4],[-4,8],[-11,3],[-10,-2],[11,-8],[-2,-9],[5,-9],[-7,2],[-4,-12],[3,-5],[2,-13],[-11,-34],[-5,-6],[8,-19],[-4,1],[-5,12],[-6,7],[5,8],[-2,8],[-5,0],[-13,8],[-13,3],[-13,-6],[0,-5],[-9,-9],[-5,-9],[-11,-6],[1,-6],[-9,-2],[15,-20],[11,5],[4,5],[-4,7],[10,-10],[9,10],[8,-9],[-13,-6],[9,-3],[-5,-4],[-8,6],[-11,0],[-21,-5],[9,-9],[-6,1],[-9,-7],[1,7],[-5,0],[-4,-12],[-5,-2],[2,-9],[-9,0],[-1,-9],[10,-2],[-9,-7],[14,-3],[-4,-6],[2,-8],[14,-21],[5,-4],[6,3],[-1,-18],[4,-13],[8,-2],[-3,-4],[3,-5],[13,-2],[16,12],[8,-2],[12,-11],[10,-15],[8,4],[13,0],[11,-6],[10,-15],[-6,-25],[-7,-8],[-7,-2],[2,-5],[13,-3],[2,-13],[-9,-7],[-8,7],[-8,-1],[-16,12],[-13,13],[-2,-8],[-9,-8],[-3,3],[7,5],[-2,5],[-16,-9],[-16,0],[-19,8],[-37,-10],[-5,-6],[2,-11],[-14,-14],[11,0],[2,-5],[9,-1],[-35,-9],[-17,-8],[2,-7],[9,-4],[6,-7],[9,0],[9,-10],[9,-6],[18,2],[6,-3],[-8,-4],[2,-5],[9,-5],[11,-2],[16,-8],[21,-2],[-5,19],[-4,4],[10,8],[22,-1],[8,3],[22,0],[7,-12],[14,4],[-2,-9],[-12,-4],[-8,2],[-1,-7],[-12,-15],[-4,0],[-4,-8],[7,-3],[12,21],[9,7],[15,-2],[7,7],[16,-2],[-5,-12],[-7,1],[-6,-4],[-15,7],[-12,-9],[-1,-6],[7,-10],[-9,-4],[-12,2],[-1,-5],[-5,5],[-11,0],[-15,-5],[-5,-5],[-6,-16],[-5,-8],[-35,-25],[-16,-7],[-8,-6],[-15,-5],[11,-4],[2,-9],[3,-17],[19,1],[34,-4],[12,-7],[19,-20],[2,-12],[4,-9],[30,-33],[2,5],[-5,5],[10,-4],[18,-4],[24,-17],[1,15],[5,0],[4,-12],[-9,-5],[11,-10],[10,-5],[0,8],[23,-5],[14,0],[11,-6],[11,-9],[6,-8],[14,-10],[0,7],[19,6],[6,4],[-6,7],[-10,4],[5,5],[11,-3],[11,-12],[14,6],[-3,6],[16,5],[8,-5],[19,-2],[16,2],[12,5],[-7,9],[6,5],[14,0],[-5,6],[20,2],[16,-5],[14,3],[7,-3],[17,0],[16,5],[6,6],[7,-3],[10,4],[5,5],[18,3],[8,-2],[26,2],[17,9],[16,1],[6,-3],[19,-4],[14,0],[14,4],[12,10],[17,6],[8,6],[11,0]],[[5012,2402],[0,0]],[[2963,4084],[0,0]],[[2966,4067],[0,0]],[[2967,4057],[-3,-7],[4,-4],[-1,11]],[[2972,4304],[-2,-4],[4,-7],[2,7],[-4,4]],[[2977,4289],[0,0]],[[2855,4187],[0,0]],[[2893,4174],[1,8],[-3,6],[-14,-5],[5,-6],[2,4],[9,-7]],[[2684,4132],[-3,8],[-11,5],[-2,13],[9,39],[-1,17],[-4,7],[-9,29],[4,15],[6,12],[2,16],[11,-3],[6,-13],[1,-21],[-6,-25],[-4,-7],[-4,-30],[2,-10],[6,-2],[12,-12],[8,-3],[10,-10],[4,-6],[3,5],[3,-13],[-10,3],[-3,-15],[2,-13],[6,-4],[5,10],[0,9],[5,21],[11,-2],[12,5],[11,15],[2,21],[6,18],[7,1],[25,-8],[20,-1],[11,21],[20,11],[7,-1],[19,-21],[10,0],[3,-3],[-16,-7],[12,-2],[11,1],[8,-4],[13,-2],[13,3],[11,-2],[-14,11],[-15,1],[5,11],[2,8],[4,1],[5,23],[5,-12],[4,2],[7,16],[0,-8],[5,-5],[7,15],[9,5],[5,11],[-7,15],[-1,15],[-5,14],[-9,0],[8,11],[14,-11],[9,3],[4,-5],[9,5]],[[2872,3755],[0,0]],[[2877,3752],[0,0]],[[2881,3736],[0,0]],[[2867,3790],[3,5],[-6,1],[3,-6]],[[2870,3758],[0,0]],[[2864,3759],[0,0]],[[7628,4315],[0,0]],[[7556,4217],[-1,21],[-4,-18],[5,-3]],[[7643,4216],[0,0]],[[7639,3619],[0,0]],[[7634,3616],[0,0]],[[7653,3609],[0,0]],[[7655,3593],[-6,6],[1,-10],[5,4]],[[7665,3576],[-15,13],[-2,13],[-5,7],[-14,-3],[2,15],[-5,12],[-1,14],[-10,17],[-5,3],[-5,20],[0,17],[-5,19],[7,26],[5,11],[10,15],[1,20],[8,20],[10,18],[2,9],[5,6],[12,22],[6,3],[7,15],[9,30],[7,10],[5,35],[2,5],[1,19],[5,30],[-1,33],[3,19],[0,13],[-4,5],[2,14],[-3,-1],[1,23],[-1,17],[-4,7],[-2,15],[-4,1],[-12,16],[-8,9],[-3,10],[-4,1],[-17,17],[-6,-9],[-4,10],[-4,-9],[-4,4],[5,8],[-9,2],[9,10],[-6,15],[-12,-21],[1,5],[11,25],[-3,9],[-7,-7],[-10,-19],[9,24],[0,11],[-19,17],[-4,17],[-6,10],[-10,2],[4,-9],[-2,-3],[-1,-22],[1,-24],[2,-12],[5,-5],[0,-6],[-8,-11],[-4,1],[-6,-13]],[[7595,3770],[-3,-3]],[[9385,5977],[0,0]],[[9374,5941],[-2,5],[-5,-5],[0,-13],[7,13]],[[9369,5906],[-2,2],[-7,-7],[1,-13],[3,-1],[5,19]],[[9345,5826],[3,7],[-5,8],[-6,-5],[3,-10],[5,0]],[[9345,5781],[-8,1],[-1,-10],[9,9]],[[9341,5756],[-8,-1],[-3,-5],[7,-9],[4,15]],[[9316,5741],[12,21],[-11,6],[-4,-26],[-4,-1],[1,-11],[4,1],[2,10]],[[9311,5721],[0,0]],[[9338,5735],[-2,-18],[2,-10],[2,27],[-2,1]],[[9330,5704],[-7,1],[9,-10],[-2,9]],[[9338,5697],[-2,0],[0,-20],[2,20]],[[9298,5669],[1,18],[4,-1],[1,-10],[4,10],[2,20],[-3,6],[-7,4],[-6,-14],[1,-11],[-4,-20],[3,-14],[4,12]],[[9321,5636],[-5,1],[3,-7],[2,6]],[[9318,5616],[-2,-10],[4,3],[-2,7]],[[9720,5640],[0,0]],[[9772,5582],[0,0]],[[9903,5624],[-13,-3],[-3,-5],[5,-6],[11,10],[0,4]],[[9879,5591],[3,5],[0,14],[-9,0],[-7,-16],[13,-3]],[[6159,4087],[12,-1],[9,6],[-11,11],[-11,3],[-11,-14],[3,-6],[5,-4],[4,5]],[[5854,4026],[0,0]],[[5855,4010],[0,0]],[[5848,3933],[0,0]],[[6141,3856],[-18,15],[-7,12],[-1,13],[1,17],[-24,25],[-22,10],[-10,12],[-8,1],[-10,6],[-12,13],[-9,22],[-3,4],[-11,3],[-8,-3],[-10,11],[-7,11],[-16,12],[-17,2],[-15,5],[-7,15],[-6,5],[-5,10],[-7,3],[-4,-3],[-9,10],[-8,2],[-10,-8],[-4,3],[0,-8],[-7,-25],[1,-21],[-1,-13],[-5,-9],[0,-11],[-5,-54],[-6,-5],[4,-2],[-2,-23],[3,-21],[-1,-20]],[[5718,7518],[-7,0],[2,-6],[5,6]],[[5580,6361],[-1,14],[-6,30],[-4,33],[-6,25],[-9,15],[-5,3],[-12,25],[-5,14],[-19,63],[-14,35],[-7,9],[-17,30],[-7,18],[-28,43],[-22,28],[-18,14],[-18,-3],[-3,8],[-2,11],[-12,-5],[-4,1],[-6,10],[-6,1],[-11,-6],[-17,-5],[-9,5],[-14,-4],[-14,4],[-13,18],[-15,2],[-5,-2],[-15,5],[-14,18],[-10,-1],[-15,-24],[-8,0],[0,-13],[-8,-3],[-2,15],[-4,-15],[4,-15],[-6,-22],[-3,-3],[-7,-24],[-1,-7],[11,-10],[2,-10],[0,-21],[-4,-28],[-7,-15],[-7,-21],[-9,-33],[-11,-60],[-6,-22],[-8,-24]],[[5482,6093],[7,-2],[23,10],[13,-3],[10,7]],[[5510,5716],[-18,0],[-7,3],[-12,12],[-5,8],[0,15],[-3,12],[-17,15],[-6,6],[-8,21],[-17,42],[-8,3],[-11,-6],[-13,1],[-7,-7],[-10,-1]]],"transform":{"scale":[0.096009600960096,0.04629785895256193],"translate":[0,-2.842170943040401e-14]},"bbox":[2.4868995751603507e-14,-3.552713678800501e-14,960,462.93229166666674]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment