Skip to content

Instantly share code, notes, and snippets.

@emeeks
Forked from anonymous/index.html
Last active April 27, 2017 09:00
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save emeeks/4414107 to your computer and use it in GitHub Desktop.
Save emeeks/4414107 to your computer and use it in GitHub Desktop.
Parallel Coordinates wired to a map of routes from ORBIS
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Route Probability Exploration with Parallel Coordinates</title>
<style type="text/css">
svg {
font: 10px sans-serif;
}
path {
stroke-linejoin: round;
stroke-linecap: round;
}
.routes {
stroke-dasharray: 4, 7, 3, 8;
stroke-width: 2.5;
}
.background path {
fill: none;
stroke: #ccc;
stroke-opacity: .4;
shape-rendering: crispEdges;
}
.foreground path {
fill: none;
stroke: #e04242;
stroke-opacity: .5;
stroke-width: 2;
}
.brush .extent {
fill-opacity: .3;
stroke: #fff;
shape-rendering: crispEdges;
}
.axis line, .axis path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis text {
text-shadow: 0 1px 0 #fff;
cursor: pointer;
}
</style>
</head>
<body>
<div id="map" style="border:0px solid gray; background-color:#fdfbf1;">
</div>
<div id="parallel" style="border:0px solid gray; background-color:#fdfbf1;">
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script type="text/javascript">
pathRamp=d3.scale.linear().domain([1,5,9,13]).range(["blue","green","orange","blue"]);
var m = [30, 10, 10, 10],
w = 1280 - m[1] - m[3],
h = 300 - m[0] - m[2];
var x = d3.scale.ordinal().rangePoints([0, w], 1),
y = {},
dragging = {};
var line = d3.svg.line(),
axis = d3.svg.axis().orient("left"),
background,
foreground;
mapsvg = d3.select("#map").append("svg:svg")
.attr("width", 1280)
.attr("height", 400)
;
var svg = d3.select("#parallel").append("svg:svg")
.attr("width", w + m[1] + m[3])
.attr("height", h + m[0] + m[2])
.append("svg:g")
.attr("transform", "translate(" + m[3] + "," + m[0] + ")");
d3.csv("sites.csv", function(csvin) {
sitesdata = csvin;
d3.json("lcroutes.json", function(error, lcroutes) {
pathdata = topojson.object(lcroutes, lcroutes.objects.lcroutes).geometries;
// Extract the list of dimensions and create a scale for each.
x.domain(dimensions = d3.keys(pathdata[0]["properties"]).filter(function(d) {
return d != "type" && d != "geometry" && (y[d] = d3.scale.linear()
.domain(d3.extent(pathdata, function(p) { return +p["properties"][d]; }))
.range([h, 0]));
// .range([h, 0]));
}));
foreground = svg.append("svg:g")
.attr("class", "foreground")
.selectAll("path")
.data(pathdata)
.enter().append("svg:path")
.attr("d", parallelPath)
.style("stroke", function(d) {return (pathRamp(d.properties.month))})
;
// Add a group element for each dimension.
var g = svg.selectAll(".dimension")
.data(dimensions)
.enter().append("svg:g")
.attr("class", "dimension")
.attr("transform", function(d) { return "translate(" + x(d) + ")"; })
.on("click", titleClick)
// Add an axis and title.
g.append("svg:g")
.attr("class", "axis")
.each(function(d) { d3.select(this).call(axis.scale(y[d])); })
.append("svg:text")
.attr("text-anchor", "middle")
.attr("y", -9)
.attr("class", "dimensionText")
.text(String);
// Add and store a brush for each axis.
g.append("svg:g")
.attr("class", "brush")
.each(function(d) { d3.select(this).call(y[d].brush = d3.svg.brush().y(y[d]).on("brush", brush)); })
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
createMap();
})
});
function titleClick(d) {
var pmax = d3.max(pathdata, function(p) { return p["properties"][d]; })
var pmin = d3.min(pathdata, function(p) { return p["properties"][d]; })
var pq1 = (pmax * .25) + (pmin * .75);
var pq2 = (pmax * .5) + (pmin * .5);
var pq3 = (pmax * .75) + (pmin * .25);
pathRamp=d3.scale.linear().domain([pmin,pq1,pq2,pq3,pmax]).range(["blue","green","gold","orange","red"]);
foreground.style("stroke", function(p) {return (pathRamp(p["properties"][d]))});
d3.selectAll("path.routes").style("stroke", function(p) {return (pathRamp(p["properties"][d]))});
}
function position(d) {
var v = dragging[d];
return v == null ? x(d) : v;
}
function transition(g) {
return g.transition().duration(500);
}
// Returns the path for a given data point.
function parallelPath(d) {
return line(dimensions.map(function(p) { return [position(p), y[p](d["properties"][p])]; }));
}
// Handles a brush event, toggling the display of foreground lines.
function brush() {
var actives = dimensions.filter(function(p) { return !y[p].brush.empty(); }),
extents = actives.map(function(p) { return y[p].brush.extent(); });
foreground.style("display", function(d) {
return actives.every(function(p, i) {
return extents[i][0] <= d["properties"][p] && d["properties"][p] <= extents[i][1];
}) ? null : "none";
});
d3.selectAll("path.routes").style("display", function(d) {
return actives.every(function(p, i) {
return extents[i][0] <= d["properties"][p] && d["properties"][p] <= extents[i][1];
}) ? null : "none";
});
}
/////////////THE MAP
function createMap(){
rankRamp=d3.scale.linear().domain([0,.005]).range([1,10]).clamp(true);
projection = d3.geo.satellite()
.distance(1.1)
.scale(1000)
.rotate([-15, -43, -10])
.center([-3, -4.5])
.tilt(25)
.clipAngle(1000);
var graticule = d3.geo.graticule()
.extent([[180, 180], [-180, -180]])
.step([5, 5]);
path = d3.geo.path()
.projection(projection);
siteLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 20)
.text("Click site for details");
sprLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 40)
.text("PS");
smLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 60)
.text("PSM");
map = mapsvg.append("svg:g").attr("class", "map")
.attr("transform", "translate(2,3)")
d3.json("rltopo.json", function(error, rltopo) {
/*
map.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
*/
embossed = map.selectAll("path.routes")
.data(topojson.object(rltopo, rltopo.objects.romeland).geometries)
.enter().insert("path")
.attr("d", path)
.attr("class", "countries")
.style("fill", "ghostwhite")
.style("stroke", "lightgray")
.style("stroke-width", 2)
sites = map.selectAll("g.sites")
.data(sitesdata)
.enter()
.append("svg:g")
.attr("class", "foreground")
.attr("transform", function(d) {return "translate(" + projection([d.xcoord,d.ycoord]) + ")";})
.style("cursor", "pointer")
.on("click", siteClick)
;
circleRamp=d3.scale.linear().domain([0,4,7,11,15,19,23]).range(["red","purple","orange","blue","steelblue","green","yellow"]);
sites.append("svg:circle")
.attr('r', function(d) {return (rankRamp(d.ES))})
.attr("class", "sites")
.style("fill", function(d) {return (circleRamp(d.EM))})
.style("stroke", "white")
.style("opacity", 0)
.transition()
.delay(300)
.duration(1000)
.style("opacity", .35)
;
baseRoads = map.selectAll("path.routes")
.data(pathdata)
.enter().insert("path")
.attr("class", "lcroutes")
.attr("d", path)
.style("fill", "none")
.style("stroke-width", 2)
//.style("stroke", 2)
.style("stroke", function(d) {return (pathRamp(d.properties.month))})
.attr("class", "routes")
/* baseRoads = map.selectAll("path.routes")
.data(pathdata)
.enter().append("svg:path")
.style("fill", "none")
.style("stroke", function(d) {return (pathRamp(d.month))})
.attr("d", path)
.attr("class", "routes")
.style("opacity", 0)
.transition()
.duration(1000)
.style("opacity", .2)
;
*/
}
)
}
function siteClick(d,i) {
siteLabel.text(d.name);
sprLabel.text("Ranking - Economic: " + d.ES + " - Military: " + d.MS + " - Rapid: " + d.RS );
smLabel.text("Modules - Economic: " + d.EM + " - Military: " + d.MM + " - Rapid: " + d.RM );
}
mapsvg.on("click", function() {
p = projection.invert(d3.mouse(this));
console.log(p);
projection.rotate([-(p[0]), -(p[1])]);
mapsvg.selectAll("path").transition().duration(1000).attr("d", path);
sites.transition().duration(1000).attr("transform", function(d) {return "translate(" + projection([d.xcoord,d.ycoord]) + ")";})
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.006014601460146015,0.0041424142414241425],"translate":[-12.74,17.69]},"objects":{"romeland":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2]]},{"type":"Polygon","arcs":[[3]]},{"type":"Polygon","arcs":[[4]]},{"type":"Polygon","arcs":[[5]]},{"type":"Polygon","arcs":[[6]]},{"type":"Polygon","arcs":[[7]]},{"type":"Polygon","arcs":[[8]]},{"type":"Polygon","arcs":[[9]]},{"type":"Polygon","arcs":[[10]]},{"type":"Polygon","arcs":[[11]]},{"type":"Polygon","arcs":[[12]]},{"type":"Polygon","arcs":[[13]]},{"type":"Polygon","arcs":[[14]]},{"type":"Polygon","arcs":[[15]]},{"type":"Polygon","arcs":[[16]]},{"type":"Polygon","arcs":[[17]]},{"type":"Polygon","arcs":[[18]]},{"type":"Polygon","arcs":[[19]]},{"type":"Polygon","arcs":[[20]]},{"type":"Polygon","arcs":[[21]]},{"type":"Polygon","arcs":[[22]]},{"type":"Polygon","arcs":[[23]]},{"type":"Polygon","arcs":[[24]]},{"type":"Polygon","arcs":[[25]]},{"type":"Polygon","arcs":[[26]]},{"type":"Polygon","arcs":[[27]]},{"type":"Polygon","arcs":[[28]]},{"type":"Polygon","arcs":[[29]]},{"type":"Polygon","arcs":[[30]]},{"type":"Polygon","arcs":[[31]]},{"type":"Polygon","arcs":[[32]]},{"type":"Polygon","arcs":[[33]]},{"type":"Polygon","arcs":[[34]]},{"type":"Polygon","arcs":[[35]]},{"type":"Polygon","arcs":[[36]]},{"type":"Polygon","arcs":[[37]]},{"type":"Polygon","arcs":[[38]]},{"type":"Polygon","arcs":[[39]]},{"type":"Polygon","arcs":[[40]]},{"type":"Polygon","arcs":[[41]]},{"type":"Polygon","arcs":[[42]]},{"type":"Polygon","arcs":[[43]]},{"type":"Polygon","arcs":[[44]]},{"type":"Polygon","arcs":[[45]]},{"type":"Polygon","arcs":[[46]]},{"type":"Polygon","arcs":[[47]]},{"type":"Polygon","arcs":[[48]]},{"type":"Polygon","arcs":[[49]]},{"type":"Polygon","arcs":[[50]]},{"type":"Polygon","arcs":[[51]]},{"type":"Polygon","arcs":[[52]]},{"type":"Polygon","arcs":[[53]]},{"type":"Polygon","arcs":[[54]]},{"type":"Polygon","arcs":[[55]]},{"type":"Polygon","arcs":[[56]]},{"type":"Polygon","arcs":[[57]]},{"type":"Polygon","arcs":[[58]]},{"type":"Polygon","arcs":[[59]]},{"type":"Polygon","arcs":[[60]]},{"type":"Polygon","arcs":[[61]]},{"type":"Polygon","arcs":[[62]]},{"type":"Polygon","arcs":[[63]]},{"type":"Polygon","arcs":[[64]]},{"type":"Polygon","arcs":[[65]]},{"type":"Polygon","arcs":[[66]]},{"type":"Polygon","arcs":[[67]]},{"type":"Polygon","arcs":[[68]]},{"type":"Polygon","arcs":[[69]]},{"type":"Polygon","arcs":[[70]]},{"type":"Polygon","arcs":[[71]]},{"type":"Polygon","arcs":[[72]]},{"type":"Polygon","arcs":[[73]]},{"type":"Polygon","arcs":[[74]]},{"type":"Polygon","arcs":[[75]]},{"type":"Polygon","arcs":[[76]]},{"type":"Polygon","arcs":[[77]]},{"type":"Polygon","arcs":[[78]]},{"type":"Polygon","arcs":[[79]]},{"type":"Polygon","arcs":[[80]]},{"type":"Polygon","arcs":[[81]]},{"type":"Polygon","arcs":[[82]]},{"type":"Polygon","arcs":[[83]]},{"type":"Polygon","arcs":[[84]]},{"type":"Polygon","arcs":[[85]]},{"type":"Polygon","arcs":[[86]]},{"type":"Polygon","arcs":[[87]]},{"type":"Polygon","arcs":[[88]]},{"type":"Polygon","arcs":[[89]]},{"type":"Polygon","arcs":[[90]]},{"type":"Polygon","arcs":[[91]]},{"type":"Polygon","arcs":[[92]]},{"type":"Polygon","arcs":[[93]]},{"type":"Polygon","arcs":[[94]]},{"type":"Polygon","arcs":[[95]]},{"type":"Polygon","arcs":[[96]]},{"type":"Polygon","arcs":[[97]]},{"type":"Polygon","arcs":[[98]]},{"type":"Polygon","arcs":[[99]]},{"type":"Polygon","arcs":[[100]]},{"type":"Polygon","arcs":[[101]]},{"type":"Polygon","arcs":[[102]]},{"type":"Polygon","arcs":[[103]]},{"type":"Polygon","arcs":[[104]]},{"type":"Polygon","arcs":[[105]]},{"type":"Polygon","arcs":[[106]]},{"type":"Polygon","arcs":[[107]]},{"type":"Polygon","arcs":[[108]]},{"type":"Polygon","arcs":[[109]]},{"type":"Polygon","arcs":[[110]]},{"type":"Polygon","arcs":[[111]]},{"type":"Polygon","arcs":[[112]]},{"type":"Polygon","arcs":[[113]]},{"type":"Polygon","arcs":[[114]]},{"type":"Polygon","arcs":[[115]]},{"type":"Polygon","arcs":[[116]]},{"type":"Polygon","arcs":[[117]]},{"type":"Polygon","arcs":[[118]]},{"type":"Polygon","arcs":[[119]]},{"type":"Polygon","arcs":[[120]]},{"type":"Polygon","arcs":[[121]]},{"type":"Polygon","arcs":[[122]]},{"type":"Polygon","arcs":[[123]]},{"type":"Polygon","arcs":[[124]]},{"type":"Polygon","arcs":[[125]]},{"type":"Polygon","arcs":[[126]]},{"type":"Polygon","arcs":[[127]]},{"type":"Polygon","arcs":[[128]]},{"type":"Polygon","arcs":[[129]]},{"type":"Polygon","arcs":[[130]]},{"type":"Polygon","arcs":[[131]]},{"type":"Polygon","arcs":[[132]]},{"type":"Polygon","arcs":[[133]]},{"type":"Polygon","arcs":[[134]]},{"type":"Polygon","arcs":[[135]]},{"type":"Polygon","arcs":[[136]]},{"type":"Polygon","arcs":[[137]]},{"type":"Polygon","arcs":[[138]]},{"type":"Polygon","arcs":[[139]]},{"type":"Polygon","arcs":[[140]]},{"type":"Polygon","arcs":[[141]]},{"type":"Polygon","arcs":[[142]]},{"type":"Polygon","arcs":[[143]]},{"type":"Polygon","arcs":[[144]]},{"type":"Polygon","arcs":[[145]]},{"type":"Polygon","arcs":[[146]]},{"type":"Polygon","arcs":[[147]]},{"type":"Polygon","arcs":[[148]]},{"type":"Polygon","arcs":[[149]]},{"type":"Polygon","arcs":[[150]]},{"type":"Polygon","arcs":[[151]]},{"type":"Polygon","arcs":[[152]]},{"type":"Polygon","arcs":[[153]]},{"type":"Polygon","arcs":[[154]]},{"type":"Polygon","arcs":[[155]]},{"type":"Polygon","arcs":[[156]]},{"type":"Polygon","arcs":[[157]]},{"type":"Polygon","arcs":[[158]]},{"type":"Polygon","arcs":[[159]]},{"type":"Polygon","arcs":[[160]]},{"type":"Polygon","arcs":[[161]]},{"type":"Polygon","arcs":[[162]]},{"type":"Polygon","arcs":[[163]]},{"type":"Polygon","arcs":[[164]]},{"type":"Polygon","arcs":[[165]]},{"type":"Polygon","arcs":[[166]]},{"type":"Polygon","arcs":[[167]]},{"type":"Polygon","arcs":[[168]]},{"type":"Polygon","arcs":[[169]]},{"type":"Polygon","arcs":[[170]]},{"type":"Polygon","arcs":[[171]]},{"type":"Polygon","arcs":[[172]]},{"type":"Polygon","arcs":[[173]]},{"type":"Polygon","arcs":[[174]]},{"type":"Polygon","arcs":[[175]]},{"type":"Polygon","arcs":[[176]]},{"type":"Polygon","arcs":[[177]]},{"type":"Polygon","arcs":[[178]]},{"type":"Polygon","arcs":[[179]]},{"type":"Polygon","arcs":[[180]]},{"type":"Polygon","arcs":[[181]]},{"type":"Polygon","arcs":[[182]]},{"type":"Polygon","arcs":[[183]]},{"type":"Polygon","arcs":[[184]]},{"type":"Polygon","arcs":[[185]]},{"type":"Polygon","arcs":[[186]]},{"type":"Polygon","arcs":[[187]]},{"type":"Polygon","arcs":[[188]]},{"type":"Polygon","arcs":[[189]]},{"type":"Polygon","arcs":[[190]]},{"type":"Polygon","arcs":[[191]]},{"type":"Polygon","arcs":[[192]]},{"type":"Polygon","arcs":[[193]]},{"type":"Polygon","arcs":[[194]]},{"type":"Polygon","arcs":[[195]]},{"type":"Polygon","arcs":[[196]]},{"type":"Polygon","arcs":[[197]]},{"type":"Polygon","arcs":[[198]]},{"type":"Polygon","arcs":[[199]]},{"type":"Polygon","arcs":[[200]]},{"type":"Polygon","arcs":[[201]]},{"type":"Polygon","arcs":[[202]]},{"type":"Polygon","arcs":[[203]]},{"type":"Polygon","arcs":[[204]]},{"type":"Polygon","arcs":[[205]]},{"type":"Polygon","arcs":[[206]]},{"type":"Polygon","arcs":[[207]]},{"type":"Polygon","arcs":[[208]]},{"type":"Polygon","arcs":[[209]]},{"type":"Polygon","arcs":[[210]]},{"type":"Polygon","arcs":[[211]]},{"type":"Polygon","arcs":[[212]]},{"type":"Polygon","arcs":[[213]]},{"type":"Polygon","arcs":[[214]]},{"type":"Polygon","arcs":[[215]]},{"type":"Polygon","arcs":[[216]]},{"type":"Polygon","arcs":[[217]]},{"type":"Polygon","arcs":[[218]]},{"type":"Polygon","arcs":[[219]]},{"type":"Polygon","arcs":[[220]]},{"type":"Polygon","arcs":[[221]]},{"type":"Polygon","arcs":[[222]]},{"type":"Polygon","arcs":[[223]]},{"type":"Polygon","arcs":[[224]]},{"type":"Polygon","arcs":[[225]]},{"type":"Polygon","arcs":[[226]]},{"type":"Polygon","arcs":[[227]]},{"type":"Polygon","arcs":[[228]]},{"type":"Polygon","arcs":[[229]]},{"type":"Polygon","arcs":[[230]]},{"type":"Polygon","arcs":[[231]]},{"type":"Polygon","arcs":[[232]]},{"type":"Polygon","arcs":[[233]]},{"type":"Polygon","arcs":[[234]]},{"type":"Polygon","arcs":[[235]]},{"type":"Polygon","arcs":[[236]]},{"type":"Polygon","arcs":[[237]]},{"type":"Polygon","arcs":[[238]]},{"type":"Polygon","arcs":[[239]]},{"type":"Polygon","arcs":[[240]]},{"type":"Polygon","arcs":[[241]]},{"type":"Polygon","arcs":[[242]]},{"type":"Polygon","arcs":[[243]]},{"type":"Polygon","arcs":[[244]]},{"type":"Polygon","arcs":[[245]]},{"type":"Polygon","arcs":[[246]]},{"type":"Polygon","arcs":[[247]]},{"type":"Polygon","arcs":[[248]]},{"type":"Polygon","arcs":[[249]]},{"type":"Polygon","arcs":[[250]]},{"type":"Polygon","arcs":[[251]]},{"type":"Polygon","arcs":[[252]]},{"type":"Polygon","arcs":[[253]]},{"type":"Polygon","arcs":[[254]]},{"type":"Polygon","arcs":[[255]]},{"type":"Polygon","arcs":[[256]]},{"type":"Polygon","arcs":[[257]]},{"type":"Polygon","arcs":[[258]]}]}},"arcs":[[[7593,3249],[-5,-3],[-10,-9],[-15,-7],[-14,-5],[7,0],[-2,-3],[5,0],[4,3],[3,0],[10,7],[10,5],[5,-3],[-2,-2],[2,0],[3,2],[0,3],[-5,0],[4,2],[1,0],[5,-5]],[[7599,3234],[2,-4],[-3,0],[8,-3],[2,3],[-2,2],[0,2],[8,3],[-1,2],[1,5],[-5,-5],[-1,0],[1,-2],[-6,0],[-7,2],[5,0],[8,12],[9,5],[5,5],[3,0],[0,-3],[-5,0],[0,-2],[10,-14],[-5,-5],[-2,2],[4,-7],[-2,-7],[10,2],[5,0],[-2,3],[-3,0],[12,7],[1,0],[-1,-3],[1,0],[4,0],[1,-2],[0,5],[4,0],[-7,2],[18,0],[-1,5],[4,2],[0,5],[2,-2],[3,0],[10,-5],[15,-5],[0,3],[10,0],[34,9],[33,17],[28,24],[10,12],[3,8],[9,7],[3,7],[12,15],[28,57],[17,44],[5,22],[0,4],[3,3],[13,51],[12,70],[2,17],[3,19],[2,22],[1,4],[2,3],[5,-3],[5,0],[6,10],[2,10],[0,2],[-2,0],[2,19],[3,12],[-1,5],[3,3],[-2,5],[5,7],[4,2],[3,7],[-2,3],[2,-3],[5,13],[2,7],[-4,7],[5,7],[4,12],[1,12],[5,8],[-1,4],[13,13],[8,31],[-1,2],[3,3],[2,9],[3,3],[0,2],[7,20],[0,16],[-2,8],[3,2],[5,-2],[9,2],[3,7],[0,3],[3,9],[5,3],[-1,5],[0,4],[3,20],[-3,7],[0,12],[3,5],[0,14],[3,8],[4,4],[3,-2],[7,17],[10,5],[1,5],[-1,7],[1,0],[13,5],[14,14],[1,19],[-10,29],[0,13],[-3,7],[-7,24],[2,5],[-2,9],[5,10],[-1,10],[0,12],[11,22],[-6,21],[1,7],[-1,25],[-10,14],[-5,3],[-2,4],[-6,-2],[-2,0],[2,10],[-7,4],[0,5],[-3,0],[6,5],[4,2],[0,5],[-2,10],[5,2],[7,17],[0,10],[-7,14],[11,0],[4,10],[15,27],[0,4],[-5,17],[-17,29],[-1,8],[-7,9],[-2,5],[0,5],[5,10],[7,2],[1,7],[7,5],[2,7],[3,3],[8,5],[9,14],[25,14],[5,15],[-4,10],[0,17],[-1,7],[-10,17],[-12,12],[-7,2],[-6,-2],[-15,-22],[-7,-2],[-6,-10],[-22,-5],[-5,-2],[-7,-8],[2,3],[-2,2],[-6,-9],[1,-3],[2,3],[5,0],[0,2],[2,-2],[1,2],[-1,5],[3,0],[2,-5],[6,2],[2,0],[-15,-9],[-2,-5],[0,-2],[10,12],[5,2],[-6,-7],[-5,-12],[0,-5],[-2,-3],[-3,-2],[-7,0],[-10,7],[-2,-2],[-1,-3],[8,-4],[-13,4],[-17,-14],[-5,5],[-56,38],[-5,3],[-9,-3],[2,5],[-10,10],[-13,10],[0,-3],[-5,3],[-9,-3],[-23,-9],[-3,-8],[-5,-2],[-14,-17],[-23,-17],[-15,-22],[-1,-7],[-17,-14],[0,-20],[-3,-2],[-10,-5],[-2,-5],[2,3],[0,-3],[-5,-7],[-2,-10],[-3,0],[1,8],[0,7],[-3,5],[-10,4],[-7,-9],[-3,0],[2,-3],[-4,-7],[-10,-5],[-5,-7],[-3,-10],[-5,12],[-2,0],[-5,0],[-11,-14],[-4,0],[2,2],[-13,5],[-12,-5],[-10,3],[-3,-5],[-17,-2],[-8,4],[-5,-2],[-7,-12],[-25,5],[-11,-7],[-12,-10],[-22,5],[-16,12],[-10,0],[-12,9],[-3,5],[-8,5],[-9,12],[-5,3],[-1,12],[-5,7],[-10,10],[-4,9],[-3,7],[-3,3],[-5,12],[-14,14],[-5,0],[-3,3],[-10,0],[-3,5],[-5,2],[-7,0],[-8,5],[-5,7],[-7,0],[-11,7],[-5,8],[-32,14],[-5,3],[0,4],[-7,5],[-66,12],[-27,-2],[-5,2],[-10,7],[-15,-12],[-5,-14],[-1,-15],[3,-9],[-3,-5],[0,-5],[0,-5],[3,-7],[0,2],[-2,-16],[-8,-10],[-2,-10],[-6,-12],[1,-5],[4,-4],[-2,-3],[5,-2],[-7,-8],[-1,-4],[3,0],[-7,-8],[-3,-7],[-5,-5],[0,10],[0,5],[-3,0],[-4,0],[-18,9],[-15,-2],[-2,-2],[-1,-10],[-2,5],[-2,-5],[-1,0],[0,-2],[-10,4],[-3,-2],[5,0],[-12,-7],[-12,0],[-6,-5],[-9,-3],[2,-2],[-7,-2],[0,-3],[4,0],[-7,-5],[-3,0],[3,5],[-5,-2],[-2,2],[-3,0],[-5,-5],[-3,-4],[0,4],[-7,5],[-2,5],[4,-2],[0,4],[-10,0],[1,3],[5,0],[-3,2],[-18,0],[-10,8],[-2,-3],[-2,10],[0,-3],[-3,3],[-2,-3],[-5,-7],[-3,5],[-2,0],[-9,12],[-5,5],[-10,5],[-2,5],[-3,-3],[0,7],[-4,0],[-3,3],[2,5],[3,0],[-2,2],[2,5],[-2,2],[-3,5],[0,3],[3,2],[-1,14],[-2,0],[-3,3],[-7,-3],[-5,0],[3,0],[2,3],[-3,7],[3,7],[3,-2],[7,7],[-2,-2],[4,0],[1,0],[-3,9],[-12,8],[-11,7],[-4,5],[-8,-10],[2,-2],[-7,-3],[0,-5],[-2,0],[2,-4],[0,-3],[3,-2],[2,7],[-2,2],[4,-2],[0,-5],[-7,-5],[2,-2],[-7,-3],[-2,5],[4,3],[0,2],[-5,5],[-4,-2],[-1,7],[-5,5],[-9,2],[-6,-5],[0,5],[-2,2],[-5,-4],[-3,7],[3,10],[-2,4],[-1,0],[1,8],[-1,0],[0,-8],[-4,8],[-5,0],[-5,-3],[2,-5],[-7,3],[2,2],[0,3],[-7,0],[0,2],[-1,5],[3,0],[-3,7],[-2,-5],[-10,-2],[2,-3],[3,0],[2,-2],[-3,-10],[-4,0],[-11,8],[0,-8],[-5,3],[0,2],[5,3],[0,2],[-7,5],[-2,0],[-3,-10],[0,-2],[2,-3],[0,-4],[6,-8],[2,-5],[-5,3],[-3,0],[0,-5],[-4,2],[0,-2],[0,-2],[-11,-8],[-9,-17],[-3,-2],[-5,2],[-3,-4],[1,-3],[-1,-2],[-4,2],[-1,3],[-2,-5],[-3,2],[-2,3],[0,2],[-2,2],[12,0],[3,3],[7,7],[-2,5],[-5,-5],[2,5],[0,5],[-3,2],[-2,-5],[-5,3],[-3,0],[-2,2],[7,3],[-2,2],[5,0],[2,2],[8,3],[0,-5],[2,0],[3,2],[0,3],[-7,5],[5,7],[4,-7],[-2,12],[-5,0],[-7,-10],[-3,5],[-2,-5],[-8,-2],[-3,2],[-5,-5],[-2,3],[-3,-3],[-4,3],[-1,-3],[-9,5],[-3,-2],[0,2],[-12,0],[-6,-7],[1,-5],[-3,-12],[-8,5],[-10,-3],[-2,5],[-10,-5],[-3,-4],[-3,4],[-9,0],[-1,3],[-4,0],[-1,2],[1,3],[-1,2],[3,0],[5,0],[3,7],[4,3],[26,5],[2,7],[5,2],[6,-7],[4,2],[8,-2],[7,7],[16,0],[7,-2],[8,0],[7,-5],[0,2],[5,5],[-3,5],[-5,0],[1,2],[-1,5],[8,3],[-7,9],[2,-2],[2,2],[-2,5],[5,0],[-3,0],[0,3],[20,-3],[1,-5],[0,5],[-1,5],[5,-2],[3,7],[0,2],[-2,0],[2,5],[5,-2],[2,0],[0,4],[13,5],[0,3],[-5,2],[-28,-2],[-4,-3],[0,-5],[-20,8],[-6,-5],[-10,2],[-15,-7],[-2,2],[-2,-4],[-6,0],[-4,4],[-5,0],[-5,-2],[-3,-5],[-8,5],[-3,0],[-2,-7],[-5,5],[-10,0],[-5,9],[-5,-2],[-2,2],[-3,-9],[0,9],[-8,-5],[0,-2],[0,-2],[-5,-5],[1,-3],[-3,0],[-2,3],[-3,-3],[-5,25],[2,4],[3,3],[5,5],[-2,2],[-3,-2],[-2,2],[2,0],[2,2],[5,-2],[3,0],[0,10],[3,-3],[0,-5],[4,5],[3,-2],[0,2],[2,-5],[6,-2],[2,0],[-2,0],[5,-7],[14,9],[5,0],[1,3],[-5,-3],[0,8],[-3,7],[10,2],[-2,-5],[5,5],[-3,3],[0,5],[3,4],[2,5],[-5,3],[0,-3],[-7,0],[-1,-5],[-5,-4],[-2,0],[3,4],[0,3],[-1,2],[-4,0],[-5,-5],[0,5],[5,7],[0,8],[-3,2],[0,-5],[-3,-2],[-5,0],[-4,2],[-1,8],[1,4],[7,5],[-2,5],[-3,0],[-7,0],[-3,-10],[-5,0],[0,-2],[3,0],[-1,-2],[-10,0],[-4,-3],[-3,3],[-2,-3],[-1,5],[-2,-2],[-2,2],[4,5],[0,5],[3,2],[-2,5],[0,12],[-1,-3],[-4,3],[-1,-3],[1,10],[-1,7],[0,5],[3,-2],[2,2],[0,10],[-12,7],[-22,10],[2,5],[18,0],[14,4],[6,8],[2,14],[0,5],[-3,7],[0,3],[3,4],[2,5],[-2,5],[2,3],[-5,14],[-5,-2],[-12,2],[-3,0],[-4,5],[-5,2],[-1,5],[0,3],[-14,4],[-15,-2],[-3,-5],[-5,10],[2,5],[-2,7],[-8,9],[-2,0],[-1,10],[-2,3],[-20,-5],[-3,-15],[-2,0],[0,-5],[-3,-4],[-4,9],[0,-5],[-1,0],[-7,8],[0,4],[0,3],[-5,-3],[-8,10],[-4,3],[0,-5],[-5,5],[0,9],[-1,0],[0,-7],[-5,0],[-4,2],[-6,5],[-10,3],[1,7],[5,-3],[4,8],[3,0],[0,2],[-3,3],[0,4],[0,3],[3,-3],[2,5],[1,-7],[-3,-2],[7,-3],[1,-2],[5,0],[0,2],[-1,3],[6,0],[10,7],[0,5],[-5,9],[7,-5],[2,0],[1,5],[-11,10],[-4,0],[-1,-5],[-4,0],[2,10],[-5,12],[2,-3],[-5,27],[1,5],[7,5],[12,-3],[6,-5],[9,-9],[3,-12],[8,-10],[2,-12],[-2,-3],[-3,3],[-3,-3],[3,-2],[-3,-7],[3,0],[2,-3],[8,-24],[3,0],[2,5],[-3,3],[-2,12],[3,7],[2,2],[3,0],[2,0],[7,-17],[3,3],[2,-3],[8,3],[11,2],[15,7],[9,0],[5,-2],[11,12],[-1,2],[-2,-2],[0,2],[-12,-2],[-3,2],[-5,0],[-13,-7],[1,5],[-3,2],[-5,8],[-8,5],[-7,7],[10,-7],[3,0],[-1,4],[-7,5],[2,12],[-4,3],[-6,-3],[2,3],[-9,2],[2,5],[-7,2],[5,5],[-5,12],[12,5],[5,5],[1,-3],[12,-4],[0,4],[3,3],[2,0],[2,2],[-2,5],[-2,-2],[-3,9],[7,3],[0,-5],[3,0],[2,2],[-2,5],[8,7],[4,-2],[5,2],[0,5],[-4,0],[4,8],[0,2],[-4,2],[-5,-4],[-5,0],[-3,4],[-5,-2],[-2,2],[-8,-7],[-5,7],[-5,3],[-1,5],[0,7],[1,5],[-3,0],[6,7],[7,2],[2,3],[0,5],[-10,14],[-13,12],[-4,15],[-18,4],[3,8],[4,2],[0,-2],[-2,-3],[3,-2],[2,-3],[-2,5],[2,3],[3,2],[4,5],[16,14],[-1,3],[0,5],[8,2],[1,2],[-1,3],[3,2],[10,5],[3,12],[-1,7],[-9,3],[-10,-5],[-3,2],[-58,-12],[-17,-9],[-11,2],[-5,-2],[-2,-3],[-3,0],[-14,-2],[-6,0],[-7,2],[0,8],[7,24],[6,7],[2,5],[0,12],[-3,14],[1,5],[0,12],[0,3],[-1,0],[3,14],[-2,7],[4,10],[5,10],[8,-5],[10,7],[8,10],[2,9],[3,3],[2,7],[0,7],[2,5],[15,5],[10,14],[8,5],[22,27],[19,0],[7,2],[5,-5],[10,0],[3,0],[15,15],[20,0],[12,5],[2,-3],[5,-12],[-7,0],[8,-9],[19,-13],[16,-2],[10,5],[13,-5],[4,2],[8,0],[5,0],[3,8],[10,5],[2,4],[-10,3],[-5,-3],[0,5],[-5,5],[-2,7],[-3,0],[-8,10],[6,7],[5,-2],[2,5],[3,-5],[4,0],[28,-5],[7,-2],[3,-5],[-2,-5],[-20,-12],[2,-7],[5,0],[15,0],[13,7],[40,0],[9,0],[14,0],[-3,-3],[-2,-2],[7,2],[8,0],[15,-4],[17,4],[5,3],[18,-3],[10,-4],[19,0],[3,2],[3,12],[5,-2],[5,2],[-6,10],[-7,2],[-10,0],[-7,-5],[-8,3],[-15,9],[-10,3],[3,7],[19,10],[15,12],[48,7],[18,10],[5,-5],[7,2],[1,5],[4,2],[6,-2],[2,-2],[2,-5],[1,0],[32,7],[20,2],[8,-2],[4,5],[-2,5],[-7,0],[-18,-3],[-7,5],[-11,3],[-40,0],[-9,-5],[-3,0],[-3,7],[-2,0],[2,2],[0,3],[-4,2],[-1,0],[-2,0],[-8,-2],[0,2],[3,0],[0,5],[3,-2],[0,2],[-4,7],[-4,3],[-3,0],[-3,2],[-10,5],[-10,12],[-9,5],[0,2],[-1,0],[-2,10],[3,2],[5,10],[5,14],[-3,3],[10,14],[7,5],[6,0],[2,3],[2,0],[64,-15],[44,-7],[43,-3],[5,3],[8,5],[3,5],[2,0],[5,7],[10,-5],[5,-5],[55,-14],[8,-8],[14,-2],[43,2],[5,3],[8,-3],[7,3],[3,-3],[3,5],[12,5],[12,15],[5,21],[-4,5],[-1,0],[1,5],[12,0],[5,7],[27,12],[34,24],[20,12],[9,8],[20,7],[3,7],[10,12],[3,7],[15,3],[5,7],[4,-5],[8,10],[13,7],[5,3],[3,-3],[5,7],[5,0],[7,0],[13,5],[7,0],[7,3],[3,0],[12,2],[13,10],[27,9],[25,15],[36,-3],[12,-4],[36,-3],[4,0],[3,-2],[22,2],[54,-7],[25,7],[14,-7],[21,0],[19,2],[15,12],[8,15],[2,7],[8,-2],[2,0],[1,0],[5,-5],[-1,-5],[6,-5],[8,-2],[7,5],[8,-5],[-13,0],[-3,-3],[-4,-9],[-1,-10],[6,-12],[5,-7],[9,-10],[0,-2],[-2,0],[3,-10],[5,-2],[9,-8],[16,-7],[15,-9],[15,-5],[7,0],[10,7],[10,0],[25,12],[6,5],[5,2],[-1,-5],[-4,-2],[0,-5],[-3,-7],[2,-2],[1,9],[7,10],[12,-10],[0,3],[13,-17],[2,-8],[0,-9],[-2,-7],[0,-10],[2,-7],[8,-10],[3,-2],[7,-12],[10,-8],[5,-2],[2,-7],[5,-3],[5,-5],[8,-4],[12,4],[10,12],[3,8],[2,7],[1,2],[9,-2],[14,0],[14,-5],[23,-14],[7,-5],[1,-7],[2,-15],[17,-7],[20,0],[6,-3],[5,-4],[12,-3],[7,-7],[6,-2],[4,-8],[3,0],[10,0],[5,3],[5,12],[8,9],[2,-4],[3,-3],[2,0],[3,5],[2,-2],[3,0],[2,-15],[1,-5],[12,-5],[5,-9],[5,5],[45,-15],[12,3],[3,0],[7,-8],[9,3],[10,-3],[2,0],[13,3],[9,7],[8,5],[2,0],[5,-7],[6,0],[7,7],[3,5],[17,4],[5,5],[22,0],[13,5],[8,5],[8,-2],[5,-5],[4,0],[13,5],[13,9],[10,-2],[7,-10],[17,-12],[6,-2],[10,4],[5,-4],[7,0],[10,-10],[7,-2],[16,7],[15,-12],[7,-3],[11,5],[17,7],[27,20],[6,-3],[10,0],[12,10],[12,5],[10,14],[11,10],[15,-2],[7,4],[13,5],[13,15],[12,2],[17,12],[16,7],[5,8],[4,9],[11,12],[19,32],[9,7],[10,22],[0,7],[5,7],[0,24],[-1,24],[-14,22],[-3,3],[-2,24],[-8,34],[-8,9],[-8,61],[-4,9],[-3,7],[-7,8],[-6,5],[-12,2],[-13,7],[-4,0],[-8,-2],[-2,2],[-8,12],[-3,15],[-10,19],[-10,-2],[-5,0],[-5,9],[-2,0],[-5,10],[-13,5],[-17,2],[-15,0],[-11,10],[-7,0],[-13,7],[-7,3],[-3,-8],[-7,12],[-5,8],[0,7],[-2,7],[-6,10],[-15,5],[-7,7],[-21,5],[-5,4],[-4,5],[-6,17],[-25,17],[-5,10],[-12,7],[-8,12],[-19,19],[-11,20],[-10,12],[-35,29],[-13,17],[-5,2],[-5,12],[-7,2],[-12,3],[-1,2],[-17,22],[-27,15],[-48,9],[-3,5],[-12,0],[-6,5],[-12,22],[-8,4],[0,10],[-9,-2],[-5,2],[-8,12],[-2,0],[4,5],[-12,14],[-15,10],[7,-14],[0,-5],[-4,-3],[-10,0],[-18,8],[-5,0],[-3,-3],[-12,5],[-1,-2],[-4,2],[-6,10],[-12,7],[-8,24],[-5,5],[3,5],[0,5],[-20,19],[-8,2],[-19,12],[-13,5],[-18,10],[-7,0],[-10,-3],[-7,0],[-9,8],[-9,7],[-1,7],[1,3],[20,0],[13,7],[9,0],[20,12],[1,5],[-3,5],[-27,-8],[-3,8],[-2,7],[4,2],[3,-12],[2,3],[0,7],[6,2],[0,3],[-6,0],[-5,4],[-9,-4],[-6,-10],[-3,0],[0,2],[6,12],[20,12],[3,-2],[9,0],[28,-19],[12,-3],[-5,-7],[0,-10],[-7,-2],[2,-5],[26,5],[2,5],[12,-3],[-4,5],[-5,0],[-16,3],[-4,5],[2,2],[32,0],[3,-2],[2,-3],[1,3],[7,0],[15,12],[-3,-10],[6,5],[10,-5],[2,-5],[-7,-2],[3,-3],[4,3],[5,7],[1,-5],[10,-2],[5,2],[-6,7],[10,15],[-7,-3],[0,5],[-3,12],[6,-5],[0,3],[-8,7],[2,15],[0,4],[-9,5],[-1,8],[-4,-3],[0,-2],[4,-5],[3,0],[0,-3],[-3,-2],[3,-10],[-3,-2],[0,-10],[-4,-9],[-1,0],[-4,2],[0,12],[0,29],[2,10],[2,5],[3,2],[0,-2],[0,-3],[-3,-2],[5,0],[5,-7],[1,0],[0,4],[4,-2],[0,2],[-4,5],[-1,5],[26,19],[5,15],[7,34],[7,17],[5,4],[11,5],[10,0],[-8,-5],[-3,-2],[3,0],[3,0],[0,-5],[-3,-5],[-2,-7],[2,-2],[5,0],[-2,-10],[-8,-12],[-3,-7],[1,-3],[5,0],[4,3],[-2,2],[0,2],[3,8],[5,17],[4,4],[3,15],[3,7],[2,15],[13,4],[4,0],[8,-12],[21,-14],[14,2],[5,-2],[3,14],[-2,3],[-1,5],[-43,24],[-2,2],[-3,10],[-30,31],[-19,0],[0,-5],[7,-2],[-3,-5],[-5,3],[-10,12],[-9,9],[-5,8],[-11,41],[-5,2],[0,2],[1,3],[19,-15],[5,3],[6,-3],[10,0],[10,3],[14,14],[15,3],[10,7],[6,-12],[25,-7],[22,2],[1,5],[-5,7],[-16,7],[-7,0],[-7,-2],[-1,-5],[-2,12],[5,5],[0,10],[7,7],[5,2],[13,-2],[10,2],[13,0],[19,8],[11,12],[12,2],[23,19],[4,0],[1,-5],[7,5],[18,-5],[3,0],[4,17],[5,5],[10,5],[-7,2],[-3,0],[-9,-9],[-3,2],[0,3],[2,7],[-4,2],[0,8],[2,2],[3,2],[0,3],[0,7],[-3,5],[-12,2],[-4,3],[-4,-3],[-8,5],[-13,-10],[-12,0],[-2,-7],[2,-7],[-8,-2],[-7,-5],[-13,0],[-20,-5],[-17,0],[3,-5],[-8,0],[-7,5],[9,10],[5,9],[5,3],[31,4],[7,8],[0,2],[-2,0],[-5,-7],[-31,-5],[-7,-2],[-5,-5],[-3,-7],[-7,-5],[-2,-5],[-3,-3],[-26,-2],[-9,-2],[-13,-17],[-5,-3],[3,8],[0,2],[-10,7],[-6,-5],[-12,5],[-2,-2],[-15,2],[-18,-5],[-7,-2],[-21,5],[-5,-3],[-12,-9],[-23,-39],[-5,0],[2,5],[-4,5],[-11,5],[-12,-8],[-22,-7],[-8,-7],[-7,-3],[-8,-9],[-7,0],[2,-5],[-5,-12],[-3,-12],[-4,-7],[-3,-3],[-5,0],[0,3],[5,-3],[3,7],[2,12],[-7,10],[-10,5],[-3,-2],[-8,2],[-7,-5],[-11,0],[-7,-5],[-13,-5],[-17,-14],[-3,-5],[0,-7],[-2,0],[0,5],[-3,-3],[0,-2],[-2,7],[-3,5],[-5,2],[-10,-2],[-12,2],[-27,-4],[-21,-12],[-23,-25],[-24,-12],[-6,-9],[-12,-10],[-20,-31],[-8,-17],[-9,-10],[-26,-14],[-3,2],[6,7],[5,5],[-1,2],[18,5],[8,5],[15,27],[8,12],[2,5],[-7,-5],[-3,0],[-3,2],[-2,5],[3,17],[-5,0],[-6,5],[-4,7],[0,5],[-3,-5],[5,-12],[2,-7],[0,-3],[-17,-24],[-5,-7],[-8,-5],[-17,-2],[-3,0],[-2,4],[-1,-2],[-2,-7],[-7,-3],[-3,-4],[-2,-5],[2,-22],[8,-36],[7,-10],[8,-24],[14,-29],[48,-72],[25,-17],[6,0],[29,7],[5,2],[3,5],[2,7],[3,0],[3,5],[2,10],[5,5],[5,0],[-2,-10],[0,-5],[17,-9],[6,-3],[5,3],[5,7],[4,7],[8,7],[22,0],[5,5],[3,-2],[2,-3],[-2,-5],[7,5],[11,-5],[14,0],[6,-7],[9,5],[5,-5],[5,-14],[-2,-3],[-7,-2],[-6,5],[-9,0],[-1,-3],[-2,-4],[3,-5],[-1,-3],[-7,0],[-2,-5],[-3,-9],[-2,-20],[0,-4],[9,-10],[-2,-2],[-2,-3],[-11,-5],[-17,-2],[-2,0],[-3,-7],[-3,0],[-14,2],[-10,7],[0,-2],[-5,2],[-10,-12],[-11,0],[-12,-2],[-3,2],[-3,8],[-5,7],[-12,7],[-20,7],[-13,-2],[-7,-3],[-10,-9],[-2,-5],[0,-5],[7,-2],[0,-3],[-12,0],[-1,-2],[1,-12],[-8,7],[-3,-2],[-5,2],[-2,-2],[-5,-8],[-2,-4],[-11,-3],[-7,-19],[-5,-7],[-6,2],[-5,10],[-10,0],[-10,-5],[-5,0],[-5,-3],[-12,3],[-25,-12],[-18,-7],[-4,-5],[-1,2],[-10,-14],[-5,-10],[-9,-19],[-10,0],[-5,-10],[-9,-5],[-5,-9],[-9,-5],[-26,-12],[-15,4],[-19,0],[-15,8],[-3,0],[-2,7],[-6,10],[-10,-3],[-23,17],[-2,5],[0,2],[6,0],[5,5],[22,3],[-8,2],[-2,5],[5,7],[2,5],[-5,22],[1,0],[4,12],[1,2],[7,2],[2,3],[1,14],[-1,15],[-4,7],[-5,17],[-3,7],[-23,17],[-7,0],[-16,-7],[-4,5],[-11,5],[-9,9],[-3,3],[-3,4],[-24,17],[-6,3],[-29,2],[-11,-9],[-12,0],[-13,4],[-5,17],[3,7],[5,5],[18,15],[10,2],[10,7],[12,0],[0,10],[7,7],[11,8],[40,19],[0,5],[-3,2],[2,3],[10,-8],[6,0],[17,12],[6,8],[12,4],[8,-2],[4,2],[5,5],[6,3],[4,0],[3,-5],[5,0],[0,12],[3,0],[12,5],[-7,5],[-10,2],[-3,0],[-5,-5],[-2,3],[5,7],[-3,2],[2,5],[-2,15],[3,4],[-6,15],[-2,2],[-5,-2],[-7,-7],[0,-3],[5,-5],[-8,-2],[-2,-2],[4,-5],[-17,0],[-10,12],[-5,2],[-3,-5],[-3,0],[5,8],[0,2],[-5,2],[-14,-2],[4,5],[1,17],[-5,-3],[-5,-14],[-10,-3],[-16,8],[1,-8],[-1,-2],[-20,-2],[-22,4],[-10,-4],[-20,-5],[-8,-5],[-7,0],[-40,12],[-3,12],[3,3],[2,2],[-10,-2],[-13,4],[-14,15],[-5,-3],[-21,15],[0,-10],[-2,0],[-10,0],[-5,3],[-3,7],[5,5],[6,2],[9,-2],[13,2],[10,10],[5,0],[-8,14],[-17,3],[-27,9],[-6,0],[-3,-4],[0,-13],[-5,10],[-24,22],[-1,7],[11,-10],[30,0],[17,-7],[15,0],[13,-2],[13,0],[19,-3],[10,-7],[6,-2],[14,5],[5,4],[-4,5],[5,5],[14,12],[11,3],[7,7],[3,5],[-13,-8],[-5,0],[-22,-12],[-11,-2],[-12,7],[-3,5],[-5,-5],[-9,-2],[-3,-5],[-3,2],[-2,10],[-17,5],[-6,12],[-2,7],[-5,12],[0,10],[7,14],[5,15],[0,2],[-2,3],[-8,2],[-2,0],[0,5],[7,9],[-2,3],[-5,0],[-10,0],[-2,2],[4,10],[1,5],[-3,7],[-5,2],[-3,15],[-12,7],[-2,3],[0,7],[-1,0],[-3,-7],[1,-3],[5,-5],[8,-2],[2,-2],[0,-15],[8,-7],[-5,-10],[0,-10],[5,-2],[14,0],[-5,-5],[-4,-9],[2,-3],[3,-2],[7,5],[0,-5],[-3,-15],[-9,-5],[-3,-2],[-3,-5],[1,-7],[7,-10],[-2,-12],[2,-7],[-3,-5],[-5,-2],[-9,-3],[-23,8],[-11,-3],[-4,-5],[-3,-2],[-5,5],[-7,0],[-1,5],[1,2],[10,17],[2,7],[10,12],[-2,5],[-5,-10],[-5,-2],[-5,-7],[-1,0],[-5,2],[-4,10],[-3,0],[3,-12],[9,-8],[-5,-9],[-10,-12],[-14,-7],[-10,2],[-3,2],[-17,3],[-28,-7],[-5,-5],[-5,0],[-10,-5],[-11,0],[-2,-3],[-7,-7],[5,-14],[4,-3],[-4,-5],[-1,-7],[-10,-12],[-9,0],[-1,-2],[6,-5],[-1,-5],[-20,-34],[-7,-7],[-5,-12],[-20,-19],[-18,-24],[-20,-20]],[[7129,6790],[0,17],[-2,0],[-3,-2],[-3,-17],[-4,2],[-1,-2],[-12,9],[-3,-2],[-4,-17],[-3,5],[2,5],[-2,0],[-2,-7],[4,-8],[-2,-7],[-7,12],[-3,-5],[-8,0],[-4,-2],[0,-5],[0,-5],[7,-2],[5,-5],[-2,0],[-8,-5],[-3,3],[-2,-3],[2,-2],[-10,-7],[0,7],[-2,7],[-2,5],[-5,2],[0,12],[2,8],[-8,12],[-2,-3],[0,-2],[3,-5],[-5,-10],[0,-2],[4,-7],[-7,-5],[0,-22],[-2,-10],[10,-2],[4,0],[6,5],[-8,-10],[-3,-5],[-2,-2],[-3,-2],[0,-3],[1,-7],[4,-3],[1,0],[2,8],[2,2],[1,-7],[4,2],[1,-5],[4,10],[3,-5],[2,-7],[-2,-5],[-3,3],[3,-8],[2,-16],[-5,-15],[0,-5],[-7,-5],[-12,0],[9,-14],[5,0],[-4,-5],[-3,-5],[0,-21],[-7,-25],[2,-4],[-3,-8],[1,-5],[-1,-2],[-5,-2],[-4,-5],[-3,2],[-63,-12],[-17,-9],[-10,-13],[-5,13],[22,9],[7,5],[0,7],[0,3],[-7,9],[0,-9],[-2,0],[-5,-3],[-3,10],[0,14],[2,3],[8,5],[2,2],[-9,7],[-13,3],[-2,0],[-1,-5],[-7,-3],[-8,-9],[-2,-5],[3,-5],[-3,-2],[2,-3],[13,-12],[-5,-5],[3,0],[-1,-7],[3,-2],[-13,-5],[-12,-7],[-2,-8],[4,3],[-2,-5],[-2,0],[-1,-7],[11,0],[4,2],[6,10],[-1,5],[11,-5],[2,-3],[2,-2],[-5,-10],[-4,-2],[5,10],[2,4],[-5,3],[2,-5],[-4,0],[-3,0],[-12,-12],[-13,-7],[3,7],[-5,0],[-1,-5],[3,0],[-2,-2],[5,-3],[-10,-5],[0,-4],[4,4],[3,-4],[-3,-15],[0,-5],[1,0],[4,10],[13,14],[5,3],[5,10],[-2,-10],[-11,-22],[-7,-5],[-15,-21],[-3,-8],[-2,0],[-3,0],[-4,-7],[-1,-14],[6,-15],[-1,-5],[1,-2],[-3,0],[-3,-5],[6,-36],[-5,-19],[-5,-13],[-5,-16],[2,-3],[-2,-14],[-1,-29],[5,-15],[0,-2],[-4,-15],[-3,-7],[-13,-12],[-2,-7],[-13,9],[-12,5],[-13,-5],[-13,0],[-7,-4],[-5,-8],[-12,-31],[-20,-7],[9,-7],[-7,-25],[-5,-9],[3,-22],[0,-17],[0,-2],[-3,-3],[3,-17],[-1,-17],[-27,0],[-2,-4],[0,-5],[4,-3],[-15,-4],[-4,-3],[0,-7],[4,-10],[-18,3],[-5,-5],[-5,-17],[-4,2],[-1,-2],[0,-2],[3,-3],[0,-7],[0,7],[7,-5],[5,5],[3,-2],[2,2],[5,-2],[4,2],[2,0],[0,-2],[2,-8],[3,0],[3,3],[2,-5],[3,0],[-3,-2],[3,-3],[-1,-7],[3,-5],[8,0],[-1,-5],[3,-2],[-5,-3],[-2,-4],[2,-5],[3,-5],[-1,0],[6,-5],[9,-9],[-2,-3],[5,-5],[3,-7],[15,-12],[0,-5],[4,-2],[-2,-3],[3,-5],[-1,-7],[3,-17],[3,-2],[-1,-2],[-5,0],[-5,0],[-2,-10],[0,-7],[8,-12],[4,-10],[8,-12],[-2,-5],[4,-7],[6,-8],[7,-9],[8,-10],[25,-17],[88,-43],[19,-7],[5,4],[3,-2],[7,-2],[-4,-12],[-3,-5],[-5,-3],[5,-7],[-5,-14],[-8,-10],[0,-5],[0,-2],[-7,2],[-8,-7],[-9,0],[-5,-5],[-5,2],[-3,3],[-23,-3],[-5,3],[0,7],[-4,2],[0,8],[-1,5],[-4,2],[-3,2],[5,-12],[0,-7],[-3,-5],[-5,0],[-9,10],[-3,2],[-18,8],[-12,0],[-3,4],[-10,-2],[-2,2],[-26,-12],[-4,-5],[-5,-4],[0,-5],[-3,-3],[-13,3],[-7,5],[-7,2],[-43,-5],[-5,-2],[-3,-10],[-3,-19],[-5,-7],[-15,-17],[-7,-15],[-15,-12],[-3,-5],[-7,0],[-3,-4],[-12,0],[-10,-13],[-13,-2],[-15,-12],[-10,0],[-13,-10],[-2,-7],[-7,-7],[-1,-10],[-4,-2],[-10,-12],[-6,-3],[-12,-14],[-13,-7],[0,-5],[5,-8],[-24,-19],[-10,-5],[-3,3],[0,2],[5,5],[3,14],[9,10],[1,10],[0,7],[-8,10],[2,2],[-4,2],[2,3],[5,5],[12,5],[3,4],[15,12],[10,5],[12,10],[10,5],[8,-3],[5,5],[5,7],[5,-2],[5,2],[5,5],[1,5],[-6,15],[-18,-5],[-12,0],[-17,-10],[-11,5],[-7,-5],[-5,3],[-12,-3],[-35,3],[-1,0],[-5,12],[1,4],[0,5],[-5,10],[4,0],[-4,14],[-3,0],[0,3],[7,2],[1,0],[-1,3],[-7,-3],[0,5],[-2,0],[2,-5],[-2,0],[-8,7],[-5,0],[-3,-2],[-17,5],[-11,-3],[-22,8],[-5,-3],[-5,0],[-8,8],[-12,2],[-13,7],[-7,3],[-5,-5],[-15,2],[-8,5],[2,5],[4,5],[-4,2],[-17,0],[0,-5],[-8,-5],[1,-4],[-1,-3],[-7,0],[-10,-5],[-15,-17],[-5,5],[-10,-5],[-3,3],[1,2],[-6,3],[-5,-5],[-5,10],[0,2],[-4,5],[-1,5],[-10,2],[-7,-2],[-2,-3],[-6,3],[-5,-3],[-4,-7],[-9,-7],[3,-5],[-3,-3],[0,-2],[1,-2],[3,0],[-38,-25],[-6,-2],[-14,2],[-20,13],[-5,0],[-5,0],[-13,-8],[-5,-7],[-2,-5],[2,-7],[3,-2],[7,-3],[2,-5],[3,-9],[10,-8],[7,0],[3,-4],[2,-3],[-2,0],[-12,-2],[-3,-3],[0,-4],[2,-8],[6,-12],[9,-5],[6,-2],[7,2],[2,3],[-4,7],[2,2],[-2,3],[4,0],[6,-15],[7,-4],[3,-3],[4,3],[8,-5],[3,-8],[5,0],[15,-21],[10,-12],[2,-8],[-5,-4],[-10,0],[-2,7],[-8,7],[-12,22],[-6,2],[-19,5],[-13,15],[-18,0],[-12,-5],[-5,2],[-5,-7],[-2,-5],[5,-12],[7,-7],[3,-7],[15,-8],[5,0],[7,-7],[7,-2],[1,-3],[-1,-7],[3,-5],[0,-2],[-3,-3],[1,-2],[4,0],[1,-5],[-5,-7],[2,-5],[-5,0],[3,-2],[0,-3],[-8,0],[-3,3],[0,2],[-4,0],[0,5],[-6,5],[-4,2],[-3,0],[2,-2],[-7,14],[0,5],[-2,2],[-3,8],[-13,21],[-7,5],[-17,0],[-9,7],[-7,3],[-7,0],[-5,-5],[-5,-7],[0,-5],[4,-15],[6,-2],[17,-24],[16,-10],[12,-2],[2,-7],[3,-5],[8,-3],[-8,-4],[-13,2],[-25,12],[-3,0],[-15,-2],[3,9],[-5,15],[-7,9],[2,17],[0,10],[-3,7],[-22,10],[-3,0],[-9,7],[-11,5],[-4,5],[-8,7],[-5,2],[-7,0],[2,3],[-2,5],[-11,19],[20,5],[6,7],[0,5],[-6,5],[1,5],[-3,4],[-3,3],[-5,2],[-5,-2],[1,-5],[-1,-7],[-5,-5],[-7,2],[-3,-2],[-4,-7],[2,-5],[-2,2],[0,-2],[-3,0],[0,-3],[-2,0],[-3,5],[-3,0],[-2,-2],[0,-5],[4,0],[-4,-2],[-1,-5],[-9,2],[-3,-2],[3,-8],[2,-7],[5,-7],[3,0],[0,-2],[-6,-15],[-5,-19],[-7,-15],[0,-7],[3,-12],[0,-10],[4,-2],[1,-5],[12,-12],[6,-2],[0,-8],[4,-9],[11,-12],[9,-12],[3,-17],[12,-34],[26,-19],[5,-13],[14,-16],[1,-5],[9,-10],[3,-12],[8,-19],[0,-3],[-6,-7],[-15,-5],[3,-2],[-5,-5],[-5,2],[-8,-4],[-12,2],[3,5],[0,5],[2,2],[5,2],[-2,-14],[12,7],[2,5],[0,2],[3,-2],[3,7],[-6,12],[0,5],[-2,5],[-7,7],[-5,3],[-13,2],[-3,10],[-10,0],[0,-5],[-2,-5],[2,-5],[-17,-2],[-2,-5],[0,-12],[4,-15],[5,5],[0,3],[3,-5],[0,2],[3,-12],[4,-5],[0,3],[0,2],[3,-2],[7,-12],[-2,-3],[2,-2],[-7,-5],[0,-5],[13,7],[5,0],[-8,-7],[-2,-9],[-5,-5],[-6,0],[0,-5],[-7,-2],[-8,2],[-2,-7],[-7,-3],[-1,-2],[-10,-3],[-2,5],[-5,-2],[-11,7],[-14,-7],[-1,2],[0,-7],[6,0],[-3,-2],[2,-3],[3,-2],[3,2],[-1,-2],[8,0],[10,5],[8,-12],[5,-5],[8,2],[7,-7],[3,2],[4,3],[6,-5],[15,-3],[4,-4],[5,-20],[1,-2],[4,0],[6,2],[4,0],[3,5],[-5,3],[3,2],[10,-7],[10,-3],[4,-4],[0,-8],[-7,-5],[0,-4],[2,2],[1,0],[5,-5],[7,-2],[0,-3],[-7,-2],[-1,-2],[0,-3],[15,0],[16,-2],[3,5],[10,-10],[-5,-3],[0,-2],[5,0],[-1,-5],[6,-5],[7,-12],[7,-4],[11,0],[29,-13],[20,-21],[0,-8],[1,0],[-3,-2],[0,-7],[-2,5],[-1,-3],[-9,-5],[4,-19],[3,-7],[-3,-10],[0,-9],[3,-3],[3,-2],[-6,-5],[3,-3],[3,0],[0,-2],[4,-2],[-2,-3],[2,-2],[-4,-5],[5,-2],[2,-5],[-2,-10],[-3,-5],[2,0],[0,-2],[-2,0],[2,-5],[-2,2],[0,-2],[2,-2],[-7,-10],[-13,7],[-2,3],[0,9],[-3,-2],[-4,14],[-1,-2],[-4,10],[-3,2],[-3,0],[-2,2],[-2,0],[0,-4],[-3,0],[-2,-3],[0,3],[-3,2],[2,2],[0,3],[-5,5],[0,4],[-7,13],[0,2],[-3,2],[-9,-4],[2,4],[-2,0],[-3,3],[-7,2],[-3,3],[8,9],[-3,8],[-10,-3],[-5,-2],[-6,-3],[-9,-7],[5,-2],[-3,-3],[-13,3],[-17,-3],[-23,-14],[-7,5],[-5,0],[-2,-8],[-1,-5],[1,-7],[4,0],[6,-2],[7,2],[12,-9],[0,-5],[0,-5],[-9,-2],[-1,-5],[5,-3],[5,-2],[-4,-10],[4,-9],[-4,0],[2,-8],[10,-7],[2,2],[5,-7],[11,-5],[4,3],[0,5],[-4,7],[-5,2],[0,3],[7,2],[8,3],[2,-3],[-2,-7],[-5,-10],[5,-5],[4,0],[0,-2],[-4,-2],[0,-3],[14,-5],[8,-7],[-2,-2],[2,-3],[-13,-7],[-24,0],[0,-2],[-8,0],[0,-3],[-5,-2],[0,-3],[5,0],[-2,-2],[5,-2],[-15,-3],[2,-10],[-5,0],[-5,3],[0,2],[3,0],[-6,0],[-2,5],[3,-2],[-1,5],[-4,2],[-1,-2],[-4,2],[0,10],[4,-3],[3,3],[0,7],[5,-5],[-2,10],[-5,2],[-6,-2],[-2,2],[2,2],[-2,5],[-8,-7],[-4,12],[-3,3],[-3,0],[0,4],[-4,0],[-3,0],[3,-2],[-5,0],[-6,-5],[-5,7],[1,3],[-5,2],[0,5],[-3,5],[-7,-5],[-1,-2],[-2,-8],[3,-4],[-1,-8],[3,-5],[0,-7],[2,-2],[0,-7],[10,-15],[-2,-2],[3,0],[-1,-3],[15,-31],[0,-3],[-2,-2],[0,-10],[0,-2],[10,0],[0,-2],[0,-3],[3,-5],[-3,0],[7,-12],[1,-9],[-3,0],[2,-5],[1,0],[0,-7],[7,-15],[0,-2],[7,-12],[1,-3],[-3,-5],[5,-2],[-3,-5],[0,-7],[-7,5],[-3,-5],[0,-3],[1,-2],[-1,-5],[5,0],[-5,-5],[1,-4],[7,-17],[13,-10],[-3,-2],[2,-3],[-4,-2],[4,-5],[8,-7],[0,-8],[-7,5],[-3,-5],[-8,3],[-4,7],[0,5],[-3,7],[-2,3],[-11,-3],[-7,19],[-10,8],[3,2],[-1,3],[-7,9],[-3,-5],[-2,0],[2,12],[-4,15],[-1,2],[-4,3],[-13,2],[-11,-2],[-7,-5],[0,-10],[-5,-5],[-3,-7],[3,-2],[0,-7],[-3,4],[-2,0],[-2,-4],[4,-5],[0,-5],[-4,-3],[-1,5],[-4,-2],[2,-19],[3,-15],[0,-5],[-3,-5],[2,-7],[0,3],[-2,-5],[-2,2],[-1,12],[-9,5],[-1,5],[-5,-2],[-5,7],[3,9],[2,-2],[1,5],[-3,5],[3,4],[-3,0],[0,10],[3,0],[0,3],[-3,2],[3,12],[-5,-2],[-8,19],[0,2],[-3,8],[-12,19],[-3,2],[-4,-5],[-6,8],[-2,2],[3,7],[0,15],[-16,5],[-17,-10],[-2,-2],[-3,-32],[2,-7],[0,-2],[6,-5],[0,-3],[-3,0],[-2,-4],[-10,-10],[-1,0],[-8,19],[-10,-5],[-7,8],[-2,0],[-3,7],[0,9],[3,10],[0,3],[-1,4],[-2,0],[-3,0],[1,3],[-1,0],[-2,-3],[-2,8],[-8,14],[-3,7],[-2,10],[0,17],[3,7],[15,15],[4,9],[-2,10],[-3,10],[-10,24],[-10,14],[-19,15],[-6,9],[-10,3],[-4,-3],[0,-4],[-1,0],[0,7],[-2,0],[2,5],[0,9],[-5,15],[-9,5],[-20,7],[0,9],[4,17],[5,-4],[8,4],[12,12],[1,0],[7,5],[-2,5],[-6,-5],[15,24],[0,25],[6,-8],[-1,5],[3,-2],[8,0],[9,-8],[13,-4],[3,0],[9,7],[5,7],[10,22],[15,10],[11,-3],[7,3],[10,-8],[5,-9],[6,-3],[4,3],[5,-5],[3,-10],[8,-2],[2,-3],[15,-5],[3,3],[14,-10],[3,0],[13,-2],[29,-15],[16,-17],[3,-4],[12,-10],[13,2],[5,8],[-5,4],[-8,8],[-3,0],[1,0],[-6,2],[5,3],[5,2],[5,5],[13,-3],[3,0],[5,-2],[17,5],[3,2],[5,3],[-5,7],[-1,0],[0,2],[6,3],[0,2],[-15,2],[4,5],[-5,5],[-2,0],[-7,-7],[-6,2],[3,0],[-3,8],[-14,2],[-3,-2],[-2,-3],[5,0],[4,-5],[-10,0],[-2,12],[-3,-2],[-2,2],[-10,-2],[-8,5],[6,7],[-16,10],[-3,5],[0,4],[-2,5],[-3,3],[-4,-5],[2,0],[2,-3],[-2,0],[-5,0],[-3,-4],[0,-3],[3,-2],[-2,-5],[-1,-3],[-5,0],[-2,3],[-3,7],[1,3],[-1,4],[-10,15],[-12,7],[2,-7],[-7,-7],[3,-3],[0,3],[2,-3],[-3,-5],[1,-2],[-1,-2],[-10,2],[-7,0],[-2,2],[-8,0],[-3,-4],[-2,-5],[-3,7],[-4,0],[0,2],[-3,3],[-13,7],[-7,-2],[-3,4],[-5,0],[-14,-7],[-3,0],[-3,5],[-2,0],[-8,-10],[-2,-7],[-1,0],[-7,7],[-10,0],[-8,-4],[-2,2],[-10,-10],[-3,-2],[-7,2],[-8,5],[3,0],[7,-5],[-2,3],[2,5],[-2,0],[0,2],[2,2],[-4,0],[2,3],[-10,-3],[2,5],[-2,3],[-7,2],[-1,2],[-2,15],[-7,7],[-1,-2],[6,-15],[-1,0],[1,0],[-1,-7],[-9,-5],[2,-2],[-2,-3],[-3,3],[0,-5],[-3,-2],[-7,-3],[-3,3],[-2,-3],[3,-2],[-3,-3],[-2,-2],[-1,0],[-4,10],[-8,0],[3,2],[0,5],[-3,-3],[3,8],[-1,-3],[1,-2],[5,7],[-3,2],[-2,-2],[-3,0],[-2,5],[2,5],[3,-3],[2,0],[0,3],[-2,-3],[0,12],[-5,3],[4,0],[-2,2],[2,7],[-2,3],[-7,-7],[-3,0],[-1,9],[0,15],[-4,5],[-3,9],[-7,0],[-5,5],[-6,27],[-2,0],[-2,0],[-6,-10],[-2,2],[-5,-2],[-2,5],[-5,7],[4,12],[10,2],[-9,5],[0,5],[0,7],[2,5],[2,-5],[6,-4],[4,2],[3,7],[2,0],[0,-2],[0,-5],[5,0],[3,2],[0,3],[3,-3],[7,3],[8,-5],[0,-7],[10,-10],[2,7],[-2,3],[2,2],[3,0],[7,-7],[3,0],[0,2],[-2,5],[-3,0],[-2,7],[2,8],[2,0],[0,7],[-12,14],[-3,-2],[1,-3],[-3,0],[-3,-4],[3,-3],[-10,3],[-5,4],[-3,-2],[-3,7],[3,3],[-5,-3],[-3,5],[-5,-7],[3,-3],[-8,0],[3,0],[0,5],[-2,3],[0,-3],[0,5],[-3,-2],[2,5],[-2,4],[-2,0],[-1,-2],[0,2],[-5,-4],[0,-3],[1,0],[-1,-7],[-4,-7],[-3,2],[2,-5],[1,3],[10,-10],[2,-5],[-10,5],[-5,-7],[-7,12],[4,5],[-2,7],[-3,5],[-15,12],[-14,19],[-6,7],[0,8],[0,4],[-4,0],[-1,3],[-5,-3],[-5,5],[-4,-2],[-8,2],[-5,8],[0,7],[-3,7],[-2,2],[-3,0],[0,3],[-4,7],[9,2],[-2,3],[-7,7],[7,0],[0,5],[-7,2],[0,-2],[-4,2],[1,3],[-3,0],[-8,0],[3,5],[0,4],[2,-2],[1,5],[0,5],[4,0],[-2,5],[-15,12],[-13,4],[-4,0],[0,8],[2,7],[-3,2],[5,17],[0,10],[-9,2],[0,3],[-3,2],[-5,3],[5,7],[-3,2],[-10,24],[-9,0],[-1,3],[-4,5],[-1,-5],[-7,12],[-13,5],[-14,12],[-10,2],[-5,5],[-16,22],[-2,4],[-5,13],[-8,12],[0,2],[5,2],[5,-2],[6,-10],[4,-14],[1,0],[9,5],[1,24],[-10,10],[-5,7],[0,5],[2,-5],[2,0],[3,-3],[3,0],[0,10],[-1,5],[-4,2],[-5,0],[0,-7],[-14,24],[10,15],[1,21],[2,3],[5,2],[-4,5],[4,7],[-5,10],[3,2],[7,8],[-2,-3],[2,-7],[-2,-10],[2,5],[0,-5],[1,5],[10,5],[2,2],[2,8],[-5,12],[-2,-5],[-7,-15],[0,3],[4,7],[0,10],[-5,4],[3,22],[-3,7],[3,3],[2,10],[6,12],[2,4],[-2,5],[-3,7],[-10,0],[-2,3],[-1,14],[-4,8],[4,-3],[3,0],[3,5],[-1,5],[8,7],[3,5],[2,5],[-2,5],[-6,4],[-5,10],[15,-2],[6,2],[2,7],[2,0],[1,-5],[2,3],[-2,7],[-1,-2],[-5,7],[3,7],[-2,20],[4,0],[1,2],[-1,10],[-27,12],[-10,-5],[-10,10],[-23,12],[-2,7],[-3,5],[0,12],[-10,9],[-2,5],[2,3],[-3,2],[-2,5],[-7,0],[-1,5],[-4,2],[-1,5],[-10,7],[-4,15],[-6,2],[-4,-2],[-1,2],[-7,-5],[-12,15],[0,2],[-3,3],[2,4],[-4,5],[-3,0],[-2,-5],[-5,0],[-8,5],[2,3],[-5,4],[0,5],[2,0],[16,-5],[7,-7],[1,7],[-5,10],[2,5],[-7,-7],[-6,0],[-18,2],[0,-2],[3,-3],[-2,-7],[4,-2],[-4,2],[-6,7],[-10,5],[0,5],[-29,19],[-3,5],[0,7],[0,3],[-23,7],[-4,5],[4,0],[-7,7],[-2,-2],[-11,9],[-10,5],[-4,5],[2,5],[-3,0],[-7,5],[-3,0],[-5,-3],[-10,7],[5,-7],[1,-5],[-1,-2],[0,5],[-3,2],[-49,17],[0,7],[-3,3],[-12,2],[-13,10],[-10,5],[-18,0],[-12,4],[-2,3],[2,5],[-5,5],[12,-8],[15,3],[13,-3],[25,-9],[10,-10],[2,-5],[3,0],[5,-2],[2,0],[1,2],[5,-2],[14,-8],[1,-2],[4,2],[8,-9],[3,0],[-6,7],[1,2],[0,3],[-5,-3],[-20,13],[10,-3],[-3,3],[-8,7],[-4,-3],[-5,5],[-5,10],[5,5],[-1,0],[-10,-3],[5,3],[-5,2],[0,7],[-5,-4],[-14,19],[-25,12],[-10,7],[-1,5],[-5,2],[-2,5],[-2,5],[-3,0],[-17,22],[-8,9],[-21,3],[-20,7],[-17,12],[-2,3],[-3,-3],[-18,3],[0,2],[6,0],[7,5],[-7,2],[-15,0],[-16,-5],[-20,-2],[6,-5],[2,-2],[-10,0],[0,-3],[-11,3],[-5,2],[-7,0],[0,3],[-2,-3],[0,5],[4,0],[1,5],[-5,0],[-1,2],[-4,3],[2,0],[0,2],[-3,0],[1,5],[-1,0],[1,2],[-1,3],[1,0],[-1,5],[8,0],[0,2],[-12,2],[9,0],[-4,5],[4,0],[0,5],[-2,2],[0,-4],[-2,0],[-6,4],[-4,0],[-5,8],[-8,5],[-13,2],[-5,10],[-9,2],[-1,5],[6,-5],[4,0],[0,2],[-19,10],[-10,12],[-8,5],[-17,24],[-6,5],[-7,10],[-11,9],[0,5],[-12,12],[3,3],[-1,7],[-7,5],[5,4],[3,0],[4,-7],[3,3],[2,2],[-4,5],[4,0],[-2,2],[8,-5],[5,-7],[3,0],[-3,10],[3,2],[-3,3],[-3,5],[26,-15],[14,-2],[5,0],[0,2],[-14,5],[-6,7],[-17,7],[-25,29],[-13,17],[-12,7],[-18,29],[-3,8],[3,5],[-3,24],[6,29],[-13,36],[-12,7],[-18,15],[-8,9],[-5,5],[-2,5],[2,2],[-9,5],[5,-2],[-3,-5],[-23,14],[-12,3],[-3,-3],[-7,-12],[-6,-34],[-4,-4],[-5,0],[4,-3],[-2,-2],[-5,-7],[0,2],[0,-10],[-3,3],[5,-10],[-2,-5],[-2,-5],[-1,-2],[-7,0],[-5,-5],[2,10],[0,2],[-5,5],[0,5],[-2,0],[0,-10],[5,-2],[2,-3],[-7,-7],[-2,3],[2,-8],[-2,-2],[-1,0],[1,-2],[-1,-3],[-9,0],[4,-5],[0,-2],[-4,-5],[0,-5],[4,0],[1,-5],[-6,0],[-5,3],[-2,-3],[0,5],[-5,0],[-2,0],[4,-2],[0,-5],[3,-5],[-3,-2],[0,9],[-9,5],[2,3],[-3,0],[1,2],[-1,0],[-4,2],[-5,5],[5,-2],[2,0],[2,5],[-4,-3],[-5,3],[4,7],[-7,10],[-15,21],[-7,5],[-3,0],[3,5],[-4,7],[4,3],[15,0],[-8,2],[-13,0],[0,7],[-2,3],[0,2],[-1,3],[1,2],[0,5],[2,5],[-3,2],[3,7],[-3,5],[5,3],[-9,2],[-3,5],[0,2],[2,0],[0,3],[-2,2],[-5,14],[2,5],[-4,10],[2,2],[13,-4],[2,7],[-3,0],[-2,5],[3,0],[27,2],[-7,10],[3,5],[14,0],[-12,9],[3,0],[-1,5],[-4,7],[-16,17],[-10,5],[-3,0],[-4,-2],[-1,-5],[1,-5],[4,0],[-25,-15],[-4,0],[5,3],[4,5],[-2,2],[-7,2],[-1,3],[-4,0],[-16,5],[-5,5],[-9,-3],[-3,-5],[-5,5],[-2,-2],[2,-5],[-7,-3],[-1,-4],[1,-3],[2,-2],[10,2],[-8,-7],[-4,-7],[-23,-3],[-26,-19],[-60,-27],[-2,0],[5,8],[-2,2],[4,0],[0,5],[3,-2],[2,0],[-4,2],[7,2],[2,-2],[-4,0],[0,-2],[5,0],[0,7],[7,2],[3,5],[-6,-2],[-5,4],[0,3],[-9,-5],[-3,-5],[2,-5],[-5,3],[-4,0],[0,5],[-3,-5],[2,-3],[5,-2],[-5,-2],[-2,0],[0,2],[-5,0],[-7,-2],[-6,-8],[-4,-5],[2,-2],[-2,-5],[2,-2],[-2,-3],[0,-7],[-5,-2],[2,-3],[-2,-4],[-5,-3],[-6,0],[0,-5],[3,-7],[2,0],[3,2],[0,8],[3,-3],[0,-9],[-1,-3],[1,-2],[0,-3],[2,-4],[7,0],[-2,0],[8,7],[-1,-3],[3,-12],[2,-17],[-4,3],[0,5],[-1,-10],[1,-2],[4,0],[-2,2],[3,-2],[7,-10],[0,-2],[-3,-3],[1,-2],[4,7],[-4,7],[7,-7],[0,-2],[13,-13],[2,0],[-2,0],[0,3],[2,0],[5,-5],[-3,-12],[-2,0],[-2,-15],[-8,-9],[-3,7],[3,7],[0,5],[-2,0],[-3,-2],[-3,-8],[5,-2],[-2,-2],[-2,-3],[4,-2],[0,-5],[-7,-2],[-13,12],[-5,-3],[0,-2],[1,0],[-5,-27],[0,-9],[7,-17],[-2,-27],[7,-34],[3,-4],[2,-10],[7,-17],[20,-27],[10,-4],[10,-15],[10,-10],[18,-4],[10,-8],[11,-4],[4,-5],[50,-49],[25,-14],[11,-7],[5,5],[4,0],[3,-5],[7,-10],[6,-2],[0,-3],[0,-5],[27,-70],[1,-12],[7,-14],[7,-29],[11,-51],[10,-24],[10,-19],[4,-5],[23,-31],[28,-25],[7,-12],[21,-21],[25,-12],[4,-20],[1,-5],[7,0],[15,-12],[20,-5],[10,-9],[12,-10],[8,0],[18,0],[28,-5],[27,5],[27,-2],[43,5],[18,-5],[3,-7],[4,0],[0,-3],[1,-14],[0,-8],[-6,-9],[-7,-3],[-13,-14],[-17,-10],[-5,-7],[-1,-7],[1,-10],[2,-10],[3,-4],[15,-13],[12,-4],[3,-5],[32,-15],[26,-17],[10,-2],[12,-10],[40,-14],[3,-5],[2,2],[5,-4],[28,-10],[23,-15],[14,-9],[11,-17],[10,-7],[12,-12],[12,-8],[13,-4],[20,-8],[15,-14],[13,-3],[7,-2],[-2,-5],[10,0],[2,-5],[3,-7],[0,-10],[13,-14],[20,-10],[4,-7],[6,-7],[7,-12],[5,-3],[12,-17],[10,-29],[3,-2],[-2,-2],[2,-8],[-5,-4],[-2,-5],[-8,-10],[-3,-10],[-4,-14],[2,-10],[-2,-14],[-3,-5],[-3,0],[-12,7],[-12,3],[-23,17],[-12,21],[4,3],[0,7],[-9,5],[5,2],[2,7],[-2,5],[-11,15],[-2,12],[-3,5],[1,0],[0,2],[-8,7],[-58,3],[-12,7],[-6,0],[-5,5],[-27,14],[-2,3],[7,4],[2,5],[-4,3],[4,2],[8,-2],[3,2],[0,5],[-10,-2],[2,2],[-3,0],[-10,-5],[-5,7],[-19,3],[-11,-7],[-12,-10],[-21,-36],[-9,-24],[-1,-3],[-7,-10],[-10,-9],[-3,-7],[0,-13],[5,-14],[-7,-12],[-8,-7],[-9,-20],[0,-7],[2,-7],[5,-7],[-2,-8],[5,-7],[12,-7],[22,-2],[5,-3],[6,-5],[5,-9],[10,-5],[7,-7],[10,-3],[8,-12],[5,-5],[5,-2],[7,0],[-7,-17],[-2,-15],[2,-4],[5,-12],[-5,-22],[0,-7],[7,-13],[8,-2],[-7,-5],[0,-12],[-6,-7],[-5,-7],[-2,5],[-3,0],[-9,-3],[-6,7],[-7,0],[-16,-4],[-19,-10],[-23,-19],[-8,-20],[-2,-5],[3,-2],[2,-22],[3,-17],[-1,-24],[-10,-14],[-7,-5],[-22,-12],[-5,-5],[-23,-34],[-3,-7],[-4,-27],[-3,-7],[-8,-9],[-10,-3],[-10,3],[-30,0],[-13,4],[-5,10],[-2,5],[0,5],[3,2],[-6,12],[5,12],[-4,20],[4,4],[23,10],[3,5],[4,12],[11,29],[4,12],[0,7],[-4,7],[-10,13],[0,4],[0,3],[10,5],[17,12],[20,-3],[5,3],[5,4],[3,8],[3,19],[-1,15],[-4,4],[-6,5],[-12,29],[-8,63],[-13,36],[-14,17],[-5,22],[-5,12],[-3,24],[0,-2],[-3,9],[1,10],[-1,5],[-5,9],[-2,8],[-17,24],[-1,5],[-15,0],[-4,-3],[-15,-17],[-1,0],[-5,0],[-14,10],[-6,-3],[3,5],[-3,5],[-5,7],[-7,5],[-10,12],[-3,0],[-10,0],[-15,15],[-8,2],[0,5],[3,7],[2,5],[-2,5],[7,5],[3,9],[-2,10],[-15,34],[-8,14],[-10,10],[-5,2],[-10,-7],[-10,0],[-10,-7],[-5,-2],[-8,4],[-12,-2],[-13,-12],[-2,2],[0,8],[2,2],[8,5],[2,5],[11,9],[2,3],[-2,4],[-4,8],[-9,2],[-16,17],[-12,-2],[-3,-8],[-4,0],[-13,8],[-3,-3],[0,-9],[-7,4],[2,10],[-2,10],[-12,29],[-8,4],[-2,10],[-5,10],[-15,24],[-11,12],[-10,0],[0,2],[-12,-2],[-5,-2],[4,-8],[-7,0],[-5,5],[-2,-2],[-3,5],[-27,12],[-5,2],[-16,-5],[-14,-7],[-3,-5],[-3,-2],[-5,2],[-4,10],[-6,14],[-15,17],[-9,5],[-14,0],[-17,12],[-2,-5],[-15,22],[-16,22],[-20,19],[-15,7],[-4,8],[-1,14],[-7,12],[-3,5],[-19,17],[-3,5],[-7,2],[-9,10],[-15,-3],[-4,10],[-10,14],[-1,10],[-14,27],[-20,17],[-8,2],[-15,7],[0,3],[-3,2],[-9,-2],[-11,4],[-9,0],[-5,-12],[-3,0],[-5,3],[-3,2],[-5,12],[7,3],[8,0],[1,7],[2,10],[-5,9],[-5,0],[-5,12],[-3,0],[0,5],[-12,10],[-3,9],[-8,8],[-9,5],[-26,9],[5,5],[0,5],[1,9],[2,3],[-3,7],[-14,7],[-8,3],[-8,0],[-7,-3],[2,-4],[-5,0],[-4,2],[-3,12],[7,7],[3,15],[0,7],[2,10],[-4,24],[-15,34],[-11,14],[-7,7],[-1,3],[-5,19],[-5,58],[-2,10],[-7,17],[-5,9],[-6,5],[-9,12],[-16,7],[-5,-4],[-12,12],[-2,0],[-6,4],[-2,0],[0,-2],[-2,-2],[5,-5],[-3,-5],[3,0],[-3,-2],[-2,4],[-8,5],[-15,15],[-10,2],[-8,10],[-12,7],[-3,5],[-7,0],[-3,5],[-8,2],[0,5],[-24,14],[-3,-4],[0,-5],[-10,5],[0,2],[-3,5],[-5,2],[-17,5],[-13,5],[-12,0],[-3,5],[-12,0],[-3,0],[-10,-10],[-3,0],[-12,-7],[-5,0],[-15,-15],[-5,-5],[2,-4],[-2,-5],[-5,-3],[0,-9],[-3,-3],[-19,-7],[-3,-5],[-5,-7],[0,-7],[-2,-5],[-8,-10],[-3,-7],[3,-5],[-5,-2],[-3,-5],[-5,-2],[-4,-5],[-6,-3],[-12,-9],[-28,-8],[-8,-4],[-34,-5],[-6,2],[-4,-2],[0,-5],[-6,0],[-4,-5],[-11,-2],[-2,-8],[-3,0],[1,3],[-8,-3],[-5,3],[-7,-7],[-8,-5],[-3,-5],[-2,-17],[-2,-2],[-1,4],[-13,-4],[-4,2],[-5,-5],[-5,-7],[0,-2],[-6,-12],[-4,-3],[0,-2],[-3,0],[-2,0],[-1,-3],[-9,0],[-6,3],[-4,-3],[-3,-14],[-8,-5],[-4,-10],[-10,-5],[0,-2],[17,2],[-3,-12],[1,-2],[-8,-7],[2,-5],[-7,-2],[-2,7],[-6,0],[-9,-7],[-8,0],[-12,-3],[-3,-5],[0,-5],[2,-4],[-7,0],[-2,4],[-6,3],[-15,0],[-3,-3],[-4,-12],[5,0],[0,-2],[-13,0],[-3,0],[0,2],[6,0],[0,8],[-13,0],[-8,4],[-10,-2],[1,5],[-3,0],[-7,-3],[9,-7],[-7,0],[-2,-5],[-6,0],[-10,5],[0,3],[1,2],[5,2],[-6,3],[0,2],[-15,8],[0,4],[-4,0],[-8,3],[-2,-5],[-1,0],[-4,2],[-6,10],[-9,-5],[-1,3],[-12,0],[-8,0],[-2,2],[4,12],[-4,5],[0,12],[-5,2],[-21,-4],[-20,0],[-5,2],[-4,5],[-1,5],[3,4],[5,3],[18,2],[7,8],[3,4],[-1,5],[-9,-5],[-5,3],[-3,2],[-2,7],[-10,3],[-3,5],[-3,-10],[0,-5],[6,-5],[2,-7],[-2,-5],[-3,-2],[-5,0],[-3,0],[-9,5],[-10,-5],[-3,-5],[3,-7],[-13,7],[-5,5],[-3,7],[0,17],[-2,10],[-7,4],[7,-12],[0,-16],[2,-10],[13,-12],[-5,-3],[-25,0],[-12,5],[4,10],[0,5],[-4,5],[-63,4],[-5,3],[-5,14],[-3,5],[-20,0],[-7,-2],[4,2],[18,5],[3,5],[-15,-3],[-6,-5],[-15,-7],[-12,-9],[-3,-10],[-13,-5],[0,-2],[4,0],[5,5],[24,21],[5,3],[0,-3],[-34,-29],[-18,-9],[-5,-5],[-15,-20],[-3,0],[-7,3],[-10,-5],[-23,-17],[-7,-14],[-5,-5],[-6,-10],[0,-2],[-5,5],[5,4],[-2,3],[-7,-3],[2,-7],[7,-7],[-4,-7],[-3,-12],[-3,-8],[-2,3],[2,7],[-4,0],[-1,-2],[3,-8],[5,-7],[-3,-2],[-5,0],[0,-8],[-9,-7],[4,-7],[8,-2],[3,-3],[0,-14],[-1,-12],[0,-3],[-4,5],[-1,-5],[1,-2],[2,0],[2,-3],[1,-21],[2,-5],[18,-19],[-1,-17],[5,-10],[1,-2],[7,0],[3,-3],[5,0],[4,-2],[-4,-8],[-1,-7],[-4,-5],[-20,3],[-1,-3],[-2,-4],[-2,-10],[2,-10],[10,-9],[2,-5],[0,-10],[1,-12],[5,-5],[0,-5],[-6,-14],[-47,-41],[-13,-3],[-10,-12],[-5,0],[-22,-14],[-33,-17],[-13,-12],[-12,-5],[-5,-5],[-13,-21],[-10,-15],[-18,-7],[-12,-3],[-17,-4],[-5,0],[-31,-10],[-14,-2],[-43,-17],[-11,-3],[-7,-12],[-5,5],[-15,-2],[-12,-8],[-43,-50],[-3,-8],[10,-4],[3,2],[-3,2],[5,0],[5,-7],[10,-10],[0,-2],[-7,-7],[-10,-5],[-13,-14],[-7,-10],[-5,0],[-3,7],[6,-2],[5,5],[9,7],[-4,2],[-5,0],[-13,-5],[-7,-7],[-10,-24],[-8,-12],[-2,-7],[-3,-5],[-11,-24],[-24,-29],[-11,-22],[-5,-5],[-10,-7],[-12,-24],[-15,-22],[-17,-31],[-1,-12],[-9,-12],[-5,-10],[-6,-15],[-2,-9],[2,-22],[5,-17],[11,-31],[-3,-5],[0,-7],[8,-25],[15,-24],[17,-17],[20,-4],[7,-5],[6,-7],[-3,0],[7,-8],[1,0],[0,-7],[0,-2],[-10,-3],[-5,-7],[-3,-2],[-7,-5],[-1,-3],[1,-4],[-3,0],[-13,-3],[-4,-2],[-3,-3],[0,-12],[-3,-2],[-17,-3],[-25,-14],[-11,-15],[-4,-12],[-6,0],[-4,-4],[-5,0],[-1,-10],[0,-22],[-2,-2],[-13,0],[-5,-8],[-2,-7],[-2,-14],[0,-22],[-6,-7],[-9,-24],[0,-15],[-5,5],[-3,-12],[-7,-2],[-1,-5],[1,-5],[7,-12],[10,-7],[3,0],[0,2],[4,-2],[1,-3],[-1,-2],[-5,-5],[-2,0],[-15,-5],[-8,-2],[-7,-3],[-7,5],[-16,0],[-7,-2],[-2,-5],[4,-3],[-14,5],[-8,5],[-18,-5],[-7,-2],[-6,-10],[-10,-5],[-2,-12],[-2,-2],[-3,2],[-5,-5],[-12,-4],[-10,-8],[-8,-19],[-15,-19],[-7,-32],[-8,-21],[0,-10],[-7,-2],[-6,-8],[-4,-5],[-1,-9],[-7,-7],[-3,-10],[-5,-2],[-2,-5],[-1,-3],[-7,-2],[-7,2],[-13,20],[-5,2],[-8,2],[-12,-4],[-8,4],[-14,-4],[-3,0],[-3,-8],[-5,-12],[-4,-5],[-3,-2],[-8,-5],[-4,3],[-3,-3],[-10,7],[-3,-2],[-10,10],[-10,0],[-43,2],[-17,-2],[-8,-8],[-7,-2],[-7,0],[-25,7],[-3,3],[-18,-3],[-20,5],[-17,-5],[-20,3],[-23,-10],[-30,2],[-5,-2],[-12,-24],[-19,-15],[-4,-7],[-3,-2],[-10,-5],[-32,5],[-15,-10],[-11,-2],[-9,-5],[-11,-5],[-10,-17],[-5,-12],[-7,-5],[2,-7],[-8,-15],[-2,-14],[2,0],[-2,-5],[-3,12],[-10,3],[-4,-8],[2,-4],[-2,-3],[4,-7],[-4,-7],[-25,-10],[-16,15],[-4,-3],[-13,7],[-7,8],[-13,16],[-12,-2],[-6,2],[-12,22],[-8,7],[-2,13],[-10,21],[-8,17],[-5,5],[3,0],[5,-5],[2,-2],[0,-3],[3,-4],[4,2],[5,7],[-7,0],[-2,3],[2,7],[-2,5],[-6,7],[-17,2],[-2,5],[-3,10],[-5,12],[2,5],[3,5],[10,4],[2,8],[0,9],[0,5],[6,7],[14,-2],[5,7],[-9,-5],[-5,0],[-1,5],[-10,-7],[-2,-5],[0,-14],[0,-3],[-7,0],[-5,7],[-8,25],[-5,4],[-40,34],[-12,5],[-13,12],[-3,5],[-2,7],[12,19],[-14,-16],[-5,0],[5,-15],[-1,0],[-20,10],[-13,2],[8,-2],[-40,-3],[-5,-5],[-3,0],[-5,3],[1,-3],[-1,-4],[-7,4],[-7,0],[-23,-16],[-31,-27],[-22,2],[-2,-2],[-5,2],[2,-4],[-3,4],[-7,8],[-12,7],[-6,2],[-24,0],[-8,3],[-22,0],[-11,7],[-7,0],[-10,0],[-8,-10],[-10,0],[-8,-4],[-10,0],[-7,-8],[-8,-5],[-5,5],[-4,-2],[2,10],[13,26],[-1,7],[5,8],[3,26],[8,19],[2,12],[0,22],[-3,10],[5,24],[3,2],[3,0],[2,5],[-5,-2],[-5,0],[-2,5],[2,26],[-2,12],[-5,8],[-6,4],[3,5],[12,48],[0,22],[-5,34],[-4,5],[-5,7],[-10,7],[2,3],[5,0],[5,-8],[12,-4],[0,-3],[6,0],[17,-5],[8,3],[-8,0],[-13,7],[-2,10],[2,7],[-4,5],[0,5],[-1,2],[-4,-10],[-3,0],[0,-2],[3,0],[2,-2],[0,-5],[-2,-3],[-6,3],[-14,5],[-5,0],[-20,-13],[-20,-4],[-8,-5],[0,2],[5,17],[0,12],[-3,12],[-12,20],[18,4],[12,-9],[0,5],[10,2],[-2,5],[2,5],[5,7],[13,5],[-5,14],[2,3],[-5,0],[-3,14],[11,27],[5,4],[14,3],[6,5],[4,7],[-12,-10],[-13,-2],[-4,-3],[-10,-19],[-10,-22],[-6,-9],[-4,-22],[-5,-5],[-11,-5],[-14,0],[-6,-2],[-10,2],[-15,3],[2,7],[-4,17],[4,5],[8,29],[0,9],[-2,10],[5,24],[5,10],[5,17],[0,19],[-10,15],[13,2],[9,10],[3,0],[3,0],[2,-5],[2,0],[1,2],[-5,7],[7,13],[10,7],[5,12],[2,19],[18,44],[20,67],[3,5],[4,-5],[8,0],[0,3],[-7,4],[-13,3],[-2,10],[7,19],[12,46],[3,31],[5,10],[2,2],[0,-7],[5,7],[3,0],[-2,5],[2,2],[3,-2],[4,2],[1,3],[-5,5],[2,2],[10,5],[5,5],[-12,-5],[-5,2],[-1,8],[5,9],[-2,5],[0,-7],[-2,0],[-1,2],[-2,-5],[-3,-21],[-7,-15],[15,82],[-2,34],[4,5],[-7,2],[-8,22],[1,2],[-1,10],[0,7],[-2,3],[-3,0],[1,2],[-3,10],[-2,22],[-3,9],[0,3],[5,-3],[-2,5],[-8,27],[0,4],[2,3],[15,5],[6,4],[-18,-4],[-5,0],[-5,0],[-5,17],[2,4],[3,15],[18,19],[2,10],[-8,-10],[-5,-5],[-5,-4],[-4,0],[-3,55],[3,2],[9,0],[1,3],[0,2],[-5,3],[5,2],[2,7],[7,5],[23,19],[1,10],[-1,3],[-3,-3],[-4,-10],[-18,-9],[-15,0],[3,9],[4,-2],[0,2],[0,10],[10,0],[6,12],[12,10],[0,2],[-5,0],[-12,-7],[-13,-2],[-5,2],[-3,12],[-9,3],[4,4],[6,3],[4,-5],[-2,-2],[7,-3],[0,7],[3,3],[-3,9],[1,8],[7,7],[8,22],[-1,0],[-2,-8],[-5,-4],[-3,2],[-7,10],[-3,-10],[1,-2],[-3,-5],[-2,-3],[-1,3],[0,2],[-2,0],[-7,-5],[4,-5],[-9,-2],[-1,-7],[-5,-5],[-4,2],[0,10],[-6,5],[0,5],[5,9],[1,12],[4,8],[8,5],[7,7],[3,2],[3,5],[-1,5],[-4,2],[0,-7],[-6,-5],[-17,0],[0,-5],[-3,-2],[-5,-2],[-2,2],[-3,12],[3,0],[2,5],[-2,2],[-5,3],[-2,7],[2,2],[2,5],[-7,3],[-5,7],[2,-5],[-2,-2],[-2,0],[0,4],[-1,0],[-4,-4],[-5,-8],[-3,8],[7,21],[-4,5],[-1,5],[3,2],[2,5],[5,5],[0,2],[5,-2],[5,2],[3,5],[5,3],[-8,0],[-9,-3],[-1,5],[8,7],[5,5],[7,-2],[8,0],[3,5],[4,7],[3,-3],[10,3],[2,2],[-5,0],[-2,5],[-5,2],[27,15],[6,-7],[17,-3],[16,8],[5,-3],[9,3],[3,7],[5,2],[3,3],[9,2],[1,-7],[5,-3],[2,3],[0,7],[2,5],[10,-5],[3,-7],[5,-7],[2,-3],[1,3],[-1,14],[5,7],[-14,3],[-8,5],[3,2],[19,5],[1,2],[-15,-2],[4,2],[-4,0],[-1,-2],[-4,-3],[-6,0],[1,12],[2,0],[3,3],[-3,5],[0,4],[8,0],[5,3],[24,19],[3,-5],[3,0],[-3,0],[3,5],[-3,3],[0,2],[2,7],[13,3],[5,2],[7,10],[5,0],[5,-12],[0,-3],[-4,3],[-1,-5],[1,-3],[-1,-2],[-2,2],[-3,-4],[8,0],[2,2],[-4,5],[5,2],[4,-2],[-2,2],[3,5],[17,7],[3,10],[3,-7],[-5,-5],[0,-5],[4,0],[1,5],[5,0],[5,-10],[-1,-5],[5,8],[3,0],[5,2],[7,0],[21,-14],[12,-15],[7,-5],[-2,-5],[2,-2],[6,5],[10,-3],[10,0],[4,3],[6,-3],[2,-2],[0,-5],[-3,-9],[1,-3],[4,10],[1,2],[2,5],[10,2],[28,3],[12,-3],[8,5],[8,-2],[15,-5],[9,0],[-2,5],[8,-3],[19,3],[15,5],[6,-5],[18,0],[9,5],[18,0],[2,2],[-2,3],[2,2],[-2,2],[8,3],[2,5],[8,-3],[15,-19],[2,0],[0,2],[3,-5],[9,-2],[35,2],[5,-2],[0,-2],[-5,-8],[1,-2],[7,5],[2,5],[9,0],[20,-12],[15,-3],[4,0],[1,-2],[2,0],[12,-3],[6,3],[17,-5],[18,-7],[37,-5],[5,-5],[3,5],[5,0],[8,-5],[4,5],[8,-3],[20,3],[5,5],[10,2],[12,3],[3,2],[5,-2],[3,0],[-1,4],[5,5],[8,0],[10,3],[10,-3],[-12,-9],[4,-3],[-2,-2],[3,0],[7,7],[5,-2],[0,2],[-3,5],[5,-3],[1,3],[-1,2],[6,0],[5,5],[13,5],[5,-3],[-1,-2],[3,0],[5,-5],[13,-5],[0,-4],[-6,2],[-5,-5],[3,0],[3,-5],[2,5],[2,-2],[8,0],[20,-5],[10,-3],[5,-7],[8,-2],[4,0],[3,2],[13,-9],[-3,12],[15,12],[-2,2],[7,3],[16,0],[7,2],[8,-7],[5,-12],[2,7],[3,2],[30,-9],[4,-5],[21,-12],[9,0],[13,2],[5,-2],[5,0],[2,-3],[5,3],[23,9],[1,0],[5,-4],[4,2],[-5,2],[20,12],[5,-4],[5,4],[15,3],[6,2],[5,5],[7,12],[8,7],[2,3],[7,31],[8,39],[3,14],[5,32],[17,101],[0,15],[-2,14],[5,5],[4,17],[3,5],[15,-3],[6,0],[4,3],[0,2],[-5,5],[1,0],[-1,5],[-12,12],[-5,2],[-10,-17],[-5,-19],[10,118],[7,39],[3,51],[8,19],[5,0],[0,-10],[4,-5],[11,-9],[9,-5],[25,-29],[8,-48],[7,-12],[5,-10],[13,-10],[2,-5],[0,-14],[5,-7],[-4,14],[2,7],[-2,5],[-8,5],[10,0],[8,-5],[-5,8],[-13,4],[-7,5],[-3,7],[-10,63],[-5,15],[-8,14],[-7,7],[-23,20],[-2,5],[-7,2],[-8,10],[-12,4],[-6,8],[-7,-3],[-3,3],[3,19],[12,5],[3,0],[13,-17],[12,-5],[-23,22],[-4,14],[7,8],[7,0],[0,7],[-4,5],[4,2],[-5,7],[-2,8],[7,-3],[1,3],[2,4],[-5,5],[-3,10],[-5,5],[1,2],[-5,2],[0,5],[-8,0],[-1,3],[3,7],[0,5],[1,2],[12,7],[2,3],[-2,7],[-3,5],[-9,2],[-4,-4],[0,-8],[-5,0],[-7,10],[-3,0],[-12,7],[-13,-2],[-4,12],[-1,5],[-4,2],[-21,2],[1,3],[-1,2],[-10,3],[-5,5],[-7,2],[-5,10],[2,-8],[-4,-2],[0,2],[-5,20],[2,2],[-3,3],[-4,9],[-6,7],[-2,5],[-8,3],[-5,12],[-10,9],[-12,8],[-1,7],[0,10],[5,7],[0,2],[8,7],[6,17],[4,3],[-2,7],[-5,5],[-10,7],[-20,2],[-5,3],[5,5],[7,2],[2,7],[-2,10],[2,7],[5,5],[19,3],[2,-3],[8,-2],[4,0],[-2,2],[3,-2],[4,-3],[-4,0],[7,-5],[7,-2],[6,-5],[12,-2],[-10,5],[-8,7],[-12,7],[-17,7],[-23,-2],[-5,-2],[-5,-8],[-11,-5],[-7,0],[-8,10],[-5,0],[-4,-5],[-5,0],[-15,8],[0,2],[4,-2],[6,-3],[5,0],[2,5],[-7,10],[-1,-3],[0,-2],[-2,-3],[0,8],[-2,2],[-8,5],[13,9],[7,-2],[-2,-2],[2,0],[8,4],[-10,3],[2,2],[-8,5],[1,5],[-1,2],[1,3],[20,2],[-11,0],[-15,5],[-17,-5],[-2,3],[5,2],[4,5],[-2,-3],[-8,0],[3,0],[0,-2],[-8,0],[0,-5],[-2,-2],[-5,2],[-18,-2],[-4,2],[-4,7],[-7,5],[7,3],[3,-5],[3,0],[2,0],[1,5],[4,-3],[8,-2],[3,2],[-1,3],[6,7],[2,5],[-5,5],[2,-5],[-2,0],[2,-3],[-2,-2],[-12,7],[9,-2],[-4,2],[-6,3],[1,0],[-11,-3],[-3,-5],[-9,-2],[2,2],[-5,-2],[0,5],[2,5],[-5,0],[-2,4],[2,-14],[5,-7],[-2,-3],[-8,10],[0,-5],[-2,0],[-2,7],[-1,-4],[0,-3],[-4,3],[-5,-3],[-5,0],[2,3],[-5,2],[-2,-2],[2,-3],[-2,-7],[2,-7],[7,-10],[-9,0],[-3,10],[3,9],[-1,10],[-5,5],[-5,5],[1,9],[14,5],[-2,7],[-3,-2],[0,7],[-2,-2],[-7,2],[4,-2],[1,-8],[-8,-2],[3,-5],[-3,0],[-2,-5],[-6,5],[-17,5],[7,0],[6,-2],[-3,2],[-10,2],[0,3],[2,0],[1,5],[4,0],[6,12],[-8,-10],[-8,-2],[3,-5],[-15,-5],[-2,2],[-5,8],[-6,9],[-2,-2],[-15,2],[-3,3],[-10,2],[-2,3],[-10,-5],[-1,2],[-10,0],[-7,10],[0,5],[-3,0],[-2,2],[-7,7],[-5,0],[2,-4],[-5,-8],[-3,3],[3,0],[2,2],[-5,-2],[-2,0],[-3,2],[-9,3],[-3,7],[0,2],[-2,-2],[5,-10],[-6,-2],[-4,5],[-3,-3],[0,-2],[3,0],[-1,-5],[5,0],[0,-3],[-7,-4],[-7,-3],[-23,3],[0,4],[3,3],[0,5],[-3,14],[-10,15],[-16,12],[-7,-5],[-5,5],[-8,0],[-14,2],[5,7],[4,0],[53,12],[10,-4],[1,4],[2,5],[-2,8],[-1,7],[-12,5],[-2,2],[-3,0],[-10,5],[-5,-3],[-6,-14],[-5,0],[3,7],[-3,5],[1,5],[0,2],[-13,3],[0,4],[8,0],[0,5],[4,8],[1,2],[4,-2],[-2,-10],[3,0],[15,0],[7,-3],[21,3],[-5,-3],[4,0],[13,3],[0,2],[-5,0],[-2,0],[0,3],[-5,-3],[-3,3],[-7,0],[9,9],[-9,-2],[0,2],[-3,-2],[-2,0],[-5,-2],[-5,0],[2,0],[-2,2],[-6,-2],[8,12],[18,9],[-11,-5],[-12,-2],[-15,-7],[-13,-5],[-15,2],[-2,-4],[-11,2],[-2,7],[3,0],[-1,3],[-2,7],[0,5],[2,7],[3,0],[0,2],[-3,3],[1,7],[4,7],[3,5],[3,-2],[-1,2],[6,3],[5,0],[10,-3],[-5,7],[4,3],[10,-3],[-5,3],[1,2],[-1,3],[11,0],[13,2],[-3,2],[0,3],[15,5],[3,0],[4,-5],[-2,-5],[12,5],[8,-3],[0,3],[-3,0],[6,7],[7,2],[7,-2],[1,2],[4,-4],[1,4],[-1,3],[15,5],[0,-5],[1,-3],[-1,-2],[3,-2],[0,-5],[7,5],[3,0],[-3,-5],[10,-7],[1,4],[-3,8],[3,-3],[0,10],[2,2],[2,-2],[1,5],[2,-3],[12,0],[6,-5],[8,0],[0,-2],[10,-2],[2,2],[-2,10],[9,2],[-9,7],[0,5],[7,5],[3,7],[17,-5],[-2,-2],[5,0],[5,2],[15,8],[4,0],[5,5],[3,0],[0,-8],[-3,-7],[1,-5],[2,7],[5,5],[13,10],[4,-5],[-2,-5],[2,-2],[-9,-17],[2,0],[8,14],[7,3],[3,-3],[-1,-2],[1,0],[-5,-5],[7,-5],[12,0],[0,-4],[-4,-5],[20,-17],[3,-12],[0,-3],[17,-9],[-3,-8],[3,0],[5,-4],[0,7],[10,0],[8,12],[19,12],[-5,2],[8,3],[3,0],[2,-5],[3,2],[10,8],[2,4],[2,-4],[5,0],[0,-3],[-9,-9],[4,-3],[10,7],[1,-7],[4,-5],[1,-4],[2,2],[2,7],[3,-9],[2,2],[-2,2],[2,3],[3,2],[3,-2],[-3,7],[15,2],[5,-12],[3,-2],[-2,-2],[5,-8],[0,-2],[0,-7],[7,4],[-5,5],[2,0],[-4,10],[5,-2],[-3,2],[-5,2],[-5,10],[2,5],[5,2],[0,5],[8,0],[-2,2],[19,3],[-2,-3],[2,-2],[-4,-7],[0,-5],[4,-5],[6,0],[27,0],[10,5],[13,0],[19,2],[5,-2],[-2,5],[-3,2],[-7,0],[-2,-2],[-3,5],[-7,4],[-3,8],[-5,5],[-3,16],[-2,5],[-3,0],[0,3],[3,2],[3,15],[0,2],[2,-2],[2,4],[-2,3],[-2,2],[2,17],[3,3],[4,-3],[-7,3],[-3,-3],[-2,-5],[-2,5],[0,12],[-1,0],[-2,5],[2,7],[5,3],[-2,2],[-2,-2],[-3,19],[2,2],[8,-2],[0,2],[-12,3],[0,-5],[-3,2],[-3,10],[-2,2],[2,3],[-7,5],[-2,5],[4,0],[0,2],[-2,5],[-2,0],[0,-5],[-11,7],[1,3],[-6,0],[-2,0],[0,17],[-3,9],[-7,10],[0,2],[7,7],[0,13],[-5,9],[-14,5],[2,10],[5,2],[7,-5],[5,3],[3,-3],[0,-5],[33,-7],[2,-2],[7,2],[5,0],[5,0],[8,10],[8,2],[25,-2],[5,-19],[-3,-3],[-2,-5],[-6,-2],[-2,-5],[8,-17],[13,-17],[2,-7],[-3,-5],[1,-2],[5,0],[5,-3],[4,0],[-2,5],[0,3],[7,4],[21,-2],[20,-7],[29,0],[11,-3],[5,3],[12,-5],[12,0],[8,-2],[8,-3],[15,-10],[5,5],[27,5],[6,3],[10,7],[5,5],[10,9],[42,8],[8,4],[5,5],[-11,-7],[-14,0],[-13,0],[-27,7],[-3,7],[0,3],[8,17],[7,21],[12,10],[25,12],[1,0],[33,20],[12,4],[15,0],[68,20],[9,4],[6,8],[22,17],[11,9],[5,17],[5,5],[7,2],[15,-7],[3,0],[0,3],[-1,0],[-4,2],[5,0],[0,2],[-6,0],[-4,3],[-3,7],[-8,5],[1,17],[4,7],[6,-2],[0,2],[-8,5],[2,12],[1,19],[5,5],[-5,10],[-3,26],[8,22],[-5,19],[4,3],[8,2],[13,12],[40,17],[27,3],[31,9],[10,0],[15,3],[19,7],[23,17],[66,38],[69,22],[1,0],[10,-7],[17,-5],[10,-5],[11,-2],[22,7],[3,10],[9,-3],[6,-7],[9,-2],[6,0],[4,4],[3,0],[7,-4],[3,-8],[7,-7],[1,-5],[-1,-2],[3,2],[2,5],[-7,3],[-2,9],[-3,5],[-3,10],[-2,2],[-5,-2],[-15,0],[-7,2],[-8,7],[-10,3],[-3,-3],[-7,-12],[-12,-2],[-6,5],[-10,5],[-7,4],[-13,0],[-12,3],[-8,9],[-5,5],[-2,7],[19,10],[48,5],[5,-2],[5,-8],[-7,-2],[0,-3],[17,-2],[8,-2],[7,-5],[6,-15],[14,0],[3,-2],[13,2],[4,5],[-2,5],[-3,5],[-20,7],[-10,0],[-17,12],[13,5],[15,0],[9,-5],[-2,5],[-2,2],[-8,0],[-5,5],[0,7],[5,3],[7,2],[-7,3],[-12,5],[-1,2],[-2,7],[-3,5],[-9,7],[-18,-5],[-2,8],[17,7],[15,-5],[5,2],[-8,10],[0,5],[1,2],[-5,17],[2,3],[8,0],[7,0],[5,5],[23,24],[22,26],[17,29],[9,27],[2,7],[3,7],[7,46],[5,24],[7,15],[3,24],[3,2],[10,-2],[2,2],[0,-2],[-2,-7],[4,-5],[6,-3],[7,3],[12,7],[16,2],[39,32],[11,5],[3,4],[9,25],[8,9],[7,3],[8,7],[12,2],[5,5],[48,19],[48,0],[7,-2],[6,2],[24,8],[40,5],[20,-5],[3,-3],[5,-19],[8,-5],[12,-5],[3,0],[3,-2],[5,2],[-3,-2],[2,-7],[18,-5],[7,5],[1,5],[-1,2],[3,5],[7,0],[13,-5],[-5,5],[-7,2],[-36,3],[-7,2],[-3,7],[0,17],[5,15],[1,2],[10,0],[4,5],[-2,5],[-7,2],[0,5],[2,2],[22,17],[13,3],[25,4],[7,-4],[74,9],[14,-2],[-2,-10],[5,-7],[7,-10],[6,-2],[-1,-5],[6,-2],[2,-3],[-2,-5],[-6,-4],[-10,-3],[5,-9],[1,-3],[4,0],[5,0],[10,-10],[5,0],[5,3],[8,12],[0,10],[-5,4],[-10,0],[3,15],[4,5],[10,2],[3,-2],[7,-7],[26,-10],[-6,-7],[-4,-5],[-1,-22],[3,-10],[0,27],[2,7],[8,5],[2,7],[-10,20],[-4,9],[0,7],[14,39],[6,5],[7,2],[5,0],[10,-9],[6,-3],[14,-2],[26,2],[4,3],[11,5],[14,-3],[3,3],[10,0],[7,-8],[15,-24],[13,-12],[3,-7],[12,-15],[21,-9],[22,-5],[-2,5],[-6,2],[-15,3],[-19,7],[-5,5],[-3,19],[-15,10],[-5,7],[-1,12],[-7,2],[-17,12],[-28,0],[-10,5],[-3,-5],[-5,3],[-10,9],[-15,25],[10,2],[15,-7],[3,2],[2,7],[1,10],[-8,7],[2,5],[-5,0],[-5,0],[-10,-5],[-9,12],[7,12],[-2,8],[14,2],[6,12],[-13,-7],[2,2],[-20,-2],[-5,0],[-10,-5],[-10,5],[-3,5],[0,7],[1,2],[15,3],[0,2],[-8,3],[-3,-3],[0,3],[0,2],[3,5],[3,-3],[13,3],[24,2],[18,12],[2,10],[-19,17],[-3,7],[-8,-2],[-2,2],[5,3],[-7,16],[-20,13],[0,4],[-6,15],[-2,5],[5,26],[-5,17],[0,10],[7,17],[-20,2],[0,-10],[-10,-7],[-5,3],[-2,4],[2,20],[3,5],[7,0],[7,-3],[3,-2],[-7,-5],[2,-2],[18,-3],[3,0],[-6,34],[2,12],[-5,22],[-2,5],[-5,2],[-25,2],[-7,8],[-15,17],[0,2],[4,0],[0,2],[-4,0],[-6,0],[-5,-4],[0,-3],[5,-5],[-5,-2],[8,-5],[5,-2],[2,-5],[-4,0],[-20,14],[-13,3],[-2,2],[-1,3],[10,21],[5,20],[0,9],[-9,53],[4,-2],[5,-19],[1,-8],[0,-4],[-1,-5],[1,-5],[27,14],[7,5],[0,5],[-4,7],[-8,12],[0,8],[-2,7],[-5,7],[-5,2],[-16,5],[-2,-2],[0,-24],[-2,-3],[-1,3],[-2,5],[-2,19],[5,26],[-1,83],[10,28],[5,10],[3,-5],[-5,-12],[5,-2],[3,-5],[10,-2],[-3,-3],[2,-7],[3,0],[-2,5],[14,2],[8,-2],[12,-10],[10,10],[5,-12],[0,-8],[6,-4],[15,0],[2,4],[1,13],[2,2],[0,2],[-8,5],[-2,5],[-3,2],[0,3],[10,0],[11,17],[9,2],[10,0],[-14,3],[7,9],[13,10],[9,0],[8,2],[8,-2],[2,-10],[7,-7],[3,-5],[-5,-2],[-5,-5],[-5,-3],[2,-2],[-7,-7],[-2,-5],[2,-10],[5,3],[3,7],[9,0],[-4,5],[-3,-3],[5,10],[2,0],[-2,-5],[22,-2],[1,-3],[-1,-2],[-5,-7],[11,-12],[2,0],[3,5],[2,-3],[2,3],[0,4],[-4,0],[-6,-2],[-4,0],[2,12],[5,14],[-3,8],[-4,0],[-3,0],[-12,-5],[-3,0],[-2,2],[2,3],[8,5],[2,7],[-7,5],[-5,9],[2,3],[5,7],[0,2],[-2,5],[-6,3],[6,12],[9,7],[5,2],[1,5],[25,5],[5,0],[20,-5],[-3,-5],[6,-2],[14,17],[11,5],[9,-3],[18,3],[-10,7],[-10,5],[-12,-10],[-3,-2],[-5,4],[-17,-7],[-14,0],[-40,-12],[-24,15],[2,-3],[-2,-2],[-11,-5],[-2,0],[-3,2],[-2,0],[-17,-9],[-1,2],[-7,0],[-3,0],[3,-2],[-7,-5],[-8,-3],[-5,0],[-8,-2],[-2,0],[-1,-5],[-7,-9],[-2,-10],[-6,-7],[-5,-3],[-9,-5],[-1,-2],[1,-12],[-1,-2],[8,0],[0,-5],[-5,-3],[-8,3],[-7,-3],[0,-2],[8,2],[7,-5],[12,5],[3,0],[0,-9],[3,-5],[-5,-5],[-5,-2],[2,-3],[-3,0],[-5,5],[-7,10],[-5,2],[-12,5],[-3,2],[-5,8],[-3,9],[-10,5],[3,-14],[0,-3],[-2,-2],[-1,17],[1,9],[4,8],[30,38],[8,7],[15,20],[5,2],[26,-5],[22,8],[12,7],[41,-5],[15,2],[15,5],[15,7],[12,10],[36,53],[19,17],[5,10],[6,5],[39,2],[13,5],[11,7],[20,15],[14,-3],[-15,-17],[-5,-14],[5,-10],[8,-12],[7,-10],[-5,-12],[0,-12],[3,-24],[-15,-14],[-8,-15],[-4,-12],[-3,-10],[-5,-7],[-15,-2],[-13,7],[-12,10],[-16,7],[-4,0],[-3,-7],[-3,0],[3,0],[8,4],[32,-21],[20,-3],[-5,-5],[-2,-12],[5,-31],[4,-10],[3,-4],[-3,-3],[-14,3],[-6,-5],[-9,5],[-33,-15],[-23,-2],[0,-3],[6,0],[25,5],[9,2],[1,5],[7,-2],[3,2],[2,5],[3,0],[5,0],[0,-2],[10,-3],[7,0],[8,3],[3,-5],[2,-7],[-3,-8],[-22,-14],[-1,-10],[1,-2],[0,-5],[-5,-5],[9,3],[0,14],[1,3],[15,12],[3,0],[4,-10],[16,-10],[14,0],[45,3],[8,-5],[5,-7],[10,-8],[0,-2],[-3,-2],[-2,-5],[-2,-12],[-1,-8],[-15,-17],[-10,-7],[-2,-12],[-2,-7],[-5,0],[-6,5],[-4,5],[7,2],[0,5],[-10,5],[-13,-15],[3,-17],[-3,-2],[-5,0],[-5,10],[6,2],[-1,2],[-9,5],[-10,-5],[-10,10],[14,5],[8,-5],[2,5],[-4,2],[2,3],[3,9],[-3,0],[-7,5],[-3,-2],[-3,2],[-2,-5],[-5,-2],[-3,-10],[-13,-9],[-5,-5],[-2,-5],[7,-12],[1,-7],[-1,-5],[-5,-7],[6,0],[2,0],[-5,-8],[0,-19],[-5,-5],[-7,-5],[4,-4],[-4,-5],[-5,2],[-5,7],[-3,3],[-17,0],[-5,-5],[-5,-2],[-11,0],[3,-3],[27,-7],[-5,-10],[0,-2],[6,0],[0,-3],[-6,-2],[-2,-2],[2,-5],[-2,-3],[-5,3],[-32,-10],[-10,5],[-6,5],[-19,0],[-3,2],[-2,-5],[4,0],[15,-2],[8,-7],[5,-8],[18,0],[-15,-14],[-8,-2],[0,-5],[-17,-5],[-8,0],[2,0],[-4,-3],[-8,-4],[5,-3],[12,5],[10,-5],[0,-2],[-2,-7],[-10,-3],[3,-10],[-1,-4],[8,-8],[0,-2],[-3,-2],[8,-12],[5,0],[0,-5],[-5,-12],[-7,-3],[-11,0],[-4,-5],[-9,-2],[0,-2],[3,-3],[0,-2],[-8,0],[9,-3],[7,-7],[-7,-7],[-14,-5],[1,-5],[4,0],[14,5],[5,2],[14,-9],[10,-3],[1,0],[2,-5],[3,-19],[-1,-2],[-7,2],[-2,-2],[7,-5],[2,-5],[0,-2],[-4,-3],[-5,8],[-6,0],[-7,2],[2,2],[-4,5],[5,3],[0,2],[-3,2],[-5,0],[-7,-12],[-5,0],[-9,-9],[-4,-3],[0,-5],[12,5],[11,10],[0,-10],[25,-5],[12,-7],[3,-5],[14,3],[-2,5],[5,0],[5,-3],[3,-5],[4,-9],[5,-5],[-2,0],[-7,0],[-6,-3],[0,-4],[11,2],[2,-2],[3,0],[2,0],[-2,-5],[2,-7],[-2,-15],[-3,-7],[-7,-5],[-6,-5],[-15,-2],[6,-5],[40,10],[4,-3],[10,-7],[-4,-2],[4,-10],[-2,-3],[-8,-7],[1,0],[-1,-2],[3,-5],[-3,-5],[6,5],[7,17],[8,2],[9,5],[6,0],[13,-7],[27,-10],[15,-12],[7,-2],[8,2],[15,10],[12,5],[13,2],[0,-2],[-7,0],[5,0],[4,-3],[11,5],[7,0],[-8,-10],[-4,3],[4,-19],[0,-3],[0,-10],[0,-4],[-4,-8],[-20,-9],[-10,-10],[-8,-2],[-3,2],[-2,-2],[-10,-12],[5,-8],[3,-2],[14,0],[1,-10],[2,0],[3,0],[7,8],[15,4],[21,3],[2,-3],[2,-4],[8,-3],[-2,-7],[9,-3],[6,5],[5,-5],[7,0],[8,-7],[2,0],[2,5],[1,5],[-1,5],[5,2],[-2,5],[7,5],[-2,5],[5,-3],[3,3],[4,7],[5,2],[1,7],[5,8],[5,5],[7,0],[13,-3],[40,7],[7,3],[0,-20],[5,-2],[-4,12],[2,3],[3,2],[2,2],[-7,-2],[2,2],[13,15],[17,10],[8,4],[17,24],[10,17],[5,5],[0,-2],[3,-5],[7,-2],[38,0],[7,-3],[3,3],[5,-3],[2,-2],[-9,-3],[-29,3],[-4,-3],[-8,0],[-2,-2],[-1,0],[-4,0],[2,-5],[2,0],[-2,0],[-7,0],[-3,-5],[-7,5],[-8,0],[-3,-7],[0,-5],[-4,2],[-1,-2],[1,-2],[-1,-3],[-5,-2],[3,-7],[-2,-3],[12,-5],[3,3],[-8,2],[3,5],[7,5],[2,5],[13,7],[-3,2],[5,0],[0,3],[3,-3],[15,5],[-2,5],[2,0],[7,0],[-5,-3],[-2,-7],[3,7],[5,-4],[4,2],[3,-2],[3,2],[5,-7],[5,0],[5,2],[3,7],[5,3],[14,7],[3,-2],[-2,0],[2,-8],[12,-7],[-4,-5],[0,-2],[5,-7],[0,-7],[10,0],[0,-3],[-5,-2],[7,0],[18,-8],[5,-9],[5,-3],[-5,-2],[10,2],[4,-2],[-4,-5],[7,0],[8,-12],[7,-2],[-5,9],[20,3],[18,7],[0,-2],[-2,0],[0,-3],[19,-12],[-7,-12],[-3,-2],[8,-10],[7,-2],[1,-8],[10,-5],[0,-2],[-3,-5],[-12,-7],[-1,-2],[1,-5],[7,-3],[7,-7],[1,0],[12,-10],[7,0],[3,-2],[25,-5],[3,0],[4,5],[5,-2],[1,-3],[-1,-2],[-9,-5],[4,-3],[6,0],[5,3],[2,2],[-3,3],[1,0],[-1,2],[0,3],[6,-5],[2,-5],[12,-7],[19,-5],[10,-15],[2,8],[3,2],[0,2],[-6,3],[-7,9],[7,17],[1,-2],[5,2],[0,5],[2,15],[-7,-8],[2,-2],[-2,0],[-3,2],[3,5],[-1,3],[-5,2],[-18,3],[-2,2],[2,5],[-2,2],[-2,-2],[-5,0],[-5,-5],[9,-2],[1,0],[0,-5],[-5,-3],[-1,0],[-9,-2],[0,-3],[2,0],[-2,0],[-10,3],[-6,10],[-5,2],[-19,-2],[-6,2],[-9,-7],[-10,-3],[-16,3],[-4,5],[19,7],[1,7],[-6,10],[0,7],[11,-2],[-1,-13],[5,5],[6,0],[-3,-2],[7,-3],[-2,3],[2,7],[0,7],[-2,3],[-5,0],[-5,9],[-5,3],[-5,-3],[0,-4],[-5,-8],[-5,-2],[0,5],[3,5],[-3,2],[-7,-2],[-5,-5],[-3,0],[7,14],[0,5],[0,5],[-10,7],[5,5],[5,0],[8,-12],[3,-5],[24,-10],[28,-26],[8,-5],[22,-2],[7,0],[18,12],[43,14],[38,10],[47,17],[63,14],[32,12],[26,3],[18,5],[-9,-5],[3,-3],[15,3],[-2,5],[8,0],[-1,0],[1,4],[-13,-2],[12,7],[11,10],[-8,-10],[15,7],[3,3],[-3,2],[-2,0],[-5,-2],[7,9],[20,22],[-2,-5],[2,0],[5,3],[2,5],[-2,0],[-3,-3],[3,5],[5,5],[12,7],[35,5],[26,7],[17,15],[50,19],[63,10],[28,7],[43,5],[32,-3],[7,-2],[61,-32],[10,-12],[3,-4],[2,-5],[-3,0],[-7,5],[-12,19],[-10,2],[0,3],[-24,12],[-9,5],[-3,-3],[-2,-7],[-1,-5],[6,-2],[4,-8],[0,-4],[1,-3],[0,-5],[2,-2],[3,0],[2,5],[0,-5],[8,-19],[0,-15],[0,-9],[3,-5],[17,-8],[5,-4],[28,-8],[5,0],[5,3],[9,-5],[63,10],[25,7],[10,10],[6,2],[0,2],[17,15],[17,17],[8,14],[3,0],[0,7],[5,8],[5,12],[-1,12],[-5,17],[3,9],[7,8],[3,2],[5,-5],[30,3],[26,-3],[7,0],[12,7],[25,17],[31,32],[30,43],[7,15],[6,19],[4,24],[-2,7],[0,17],[0,5],[5,-5],[2,-9],[0,-22],[-2,-10],[0,-9],[-5,-12],[3,-5],[-6,-8],[-5,-14],[-8,-10],[0,-4],[-9,-5],[0,-3],[-5,-2],[-13,-19],[-23,-25],[-27,-19],[0,-2],[5,-5],[33,2],[9,-2],[8,-7],[18,-3],[12,0],[3,3],[3,-3],[5,3],[20,7],[2,5],[-3,12],[-7,43],[3,5],[7,-2],[5,2],[0,5],[-2,12],[5,2],[0,3],[-3,7],[-2,2],[0,8],[-1,0],[-10,-8],[-2,3],[7,12],[5,5],[0,5],[-5,19],[-4,7],[0,10],[-6,12],[-2,9],[-8,13],[-5,2],[-5,31],[0,12],[3,8],[-2,31],[-3,17],[-8,14],[-2,10],[2,10],[-2,24],[5,10],[2,12],[-2,7],[2,2],[2,-2],[3,-12],[-2,-3],[2,-2],[0,-5],[-2,-2],[5,-5],[3,2],[-1,5],[0,12],[-2,7],[-5,5],[-5,3],[-1,5],[3,12],[5,9],[4163,-611],[220,-8791],[-1028,255],[5,20],[-2,5],[-5,2],[-6,2],[-2,10],[-3,7],[0,5],[6,27],[-5,4],[-13,10],[-5,12],[2,10],[-2,10],[-3,2],[-2,7],[-2,3],[-6,7],[0,7],[-4,12],[0,3],[4,7],[-4,12],[-16,10],[-10,12],[-3,2],[1,0],[4,-2],[1,21],[-1,5],[-9,17],[-1,2],[-14,0],[0,-2],[2,-5],[-5,7],[-2,8],[-1,2],[-9,15],[-5,4],[2,8],[-2,4],[-13,13],[-10,12],[-13,7],[-14,17],[2,5],[-3,2],[-10,2],[-5,12],[-9,8],[-5,2],[-8,-2],[-2,-3],[-14,10],[1,-5],[7,-7],[-2,0],[-21,17],[-9,5],[-3,7],[-15,19],[-10,22],[-3,5],[0,2],[3,0],[0,3],[-3,2],[-5,5],[-2,12],[-7,10],[0,2],[4,7],[-9,3],[4,-5],[-4,0],[-6,7],[1,5],[-1,2],[0,3],[3,-3],[3,-2],[-1,10],[-4,0],[-3,4],[0,-4],[-8,7],[-4,7],[0,5],[4,-3],[-2,5],[-3,3],[-5,-3],[-7,15],[0,9],[-3,5],[0,5],[-12,12],[-1,15],[1,4],[-15,32],[14,14],[1,5],[-1,15],[-2,4],[2,3],[0,5],[-4,7],[-1,-5],[-2,0],[-3,7],[1,0],[-3,8],[0,19],[-2,7],[0,5],[4,2],[1,8],[-1,2],[-2,-7],[-3,0],[-2,5],[-3,4],[-2,8],[-8,12],[-7,17],[7,-3],[3,-2],[2,-15],[3,-2],[-2,7],[-1,36],[0,10],[3,5],[2,14],[1,5],[-1,0],[-2,-7],[-2,2],[2,10],[0,10],[2,7],[5,7],[1,10],[10,19],[0,3],[-1,4],[-4,0],[-3,-12],[-3,20],[0,29],[-5,12],[-9,24],[0,5],[4,4],[0,3],[-10,14],[-2,0],[3,-9],[4,-10],[-2,0],[-12,22],[-5,17],[-3,4],[5,-2],[5,-14],[7,-3],[1,5],[-3,10],[-5,4],[-3,10],[-10,5],[-4,-2],[-1,4],[-4,10],[4,5],[1,7],[-3,10],[2,5],[-2,4],[-2,5],[-1,-5],[-2,5],[2,5],[-4,-2],[-6,9],[0,8],[-4,7],[2,9],[-2,3],[-3,19],[-2,-2],[-3,17],[-7,12],[0,5],[-3,0],[-3,0],[0,-3],[6,-5],[0,-2],[-6,0],[-4,12],[-5,22],[-6,12],[-4,17],[-3,7],[-7,0],[-8,17],[-6,5],[-7,12],[-12,7],[-6,12],[-14,14],[-1,0],[-4,-2],[-3,0],[-10,15],[-7,7],[5,2],[-3,3],[-2,-3],[2,10],[0,2],[-7,-5],[2,-7],[-2,-2],[-11,2],[-12,20],[-5,2],[-7,7],[-8,-5],[0,-4],[-15,4],[-5,5],[-6,15],[-4,5],[2,7],[3,0],[-26,55],[-15,24],[0,15],[-2,0],[-3,-3],[-4,3],[-5,12],[12,0],[3,0],[4,5],[0,12],[3,10],[-5,21],[2,15],[-4,17],[-21,33],[-4,5],[0,12],[-5,8],[4,2],[-10,14],[-5,15],[-4,5],[0,5],[-5,14],[-10,5],[-10,22],[-3,0],[0,-8],[-2,-2],[-11,7],[-4,7],[-1,10],[-2,3],[-3,7],[0,5],[8,14],[0,7],[-2,12],[-4,8],[-5,2],[-17,5],[-5,7],[-10,34],[-12,19],[-11,41],[-14,32],[-8,12],[-13,17],[-4,12],[-5,9],[-3,17],[-3,-2],[-2,2],[-3,10],[-12,12],[-13,22],[-5,14],[2,10],[-5,12],[-14,19],[-10,10],[-8,17],[-5,7],[-8,19],[-2,20],[-10,17],[-3,14],[-5,7],[-7,5],[-5,19],[-12,20],[-11,9],[-2,0],[-2,3],[10,7],[2,-2],[-2,4],[-8,5],[-2,-2],[-3,5],[-5,0],[-10,9],[-5,-2],[2,-2],[-5,2],[-10,-5],[-2,-2],[-1,2],[-10,0],[-2,-5],[-2,3],[0,2],[2,0],[-2,3],[5,2],[-5,2],[-1,-2],[0,-2],[-4,-3],[-1,-5],[-2,3],[5,5],[0,2],[-5,0],[-2,-5],[-1,0],[0,5],[-2,-2],[-2,2],[-1,0],[-2,0],[-3,7],[-4,-2],[-1,2],[-2,-7],[-3,-2],[3,-8],[-2,0],[-1,0],[-2,-9],[-5,0],[2,2],[-2,5],[0,10],[-2,0],[-5,-3],[2,5],[-2,0],[10,12],[-1,2],[1,3],[2,0],[-2,-3],[5,0],[0,3],[-1,5],[3,2],[0,15],[3,-3],[0,5],[-1,-2],[-2,2],[7,12],[5,19],[3,8],[3,9],[4,5],[0,5],[-2,41],[2,10],[5,12],[-2,2],[3,10],[-1,5],[1,9],[-1,0],[0,3],[5,14],[0,12],[-2,10],[3,10],[7,33],[5,5],[-2,10],[2,2],[2,0],[1,3],[-1,7],[0,2],[1,3],[2,21],[5,17],[0,3],[-7,7],[-8,-17],[-3,0],[-5,-5],[-4,-9],[-1,0],[0,-3],[-2,-2],[0,-3],[-2,0],[0,-2],[-11,-19],[1,-5],[-3,-10],[0,-12],[-7,-10],[0,-7],[-3,-5],[0,-19],[3,-5],[0,-5],[-6,-4],[-2,-5],[2,-22],[-5,-2],[1,-8],[-1,-7],[1,-5],[-1,-2],[0,-5],[-7,-17],[-2,-10],[-10,-21],[2,-7],[-2,-5],[-6,-8],[1,-2],[-5,-5],[-1,-14],[-5,-15],[1,-12],[-1,-7],[8,-15],[-3,-14],[0,-27],[-2,-4],[-5,-3],[-5,-12],[-7,-2],[2,0],[-3,-12],[-2,-3],[-3,3],[-2,0],[-3,-10],[1,-2],[-1,-3],[-8,-2],[1,-5],[7,0],[-2,-3],[2,-4],[-2,0],[2,0],[0,-3],[-2,0],[-3,7],[-7,8],[-18,2],[-5,3],[-10,19],[-3,0],[-12,12],[-3,-3],[-2,8],[-2,0],[-10,9],[-1,3],[-5,2],[0,7],[-7,8],[0,2],[-8,15],[0,2],[-2,2],[-2,0],[-3,3],[-2,12],[-1,2],[-9,15],[-21,17],[-10,19],[-10,10],[-5,9],[-3,3],[0,2],[0,-2],[1,0],[-1,9],[-2,0],[-2,-2],[4,-5],[-5,5],[-2,14],[-5,13],[7,19],[-4,7],[-1,5],[-4,2],[-1,5],[0,15],[1,4],[-1,15],[1,2],[-5,10],[-3,0],[-8,7],[-4,10],[-16,24],[-7,5],[-5,5],[-3,14],[-5,5],[-4,10],[0,12],[-13,12],[2,0],[-4,2],[0,3],[-1,-3],[1,-2],[-3,0],[2,19],[-2,10],[-5,5],[2,4],[-2,10],[2,12],[0,5],[-7,15],[-8,7],[5,7],[0,5],[-10,14],[1,3],[0,2],[2,0],[-5,7],[3,0],[0,8],[-1,0],[-2,-8],[2,-9],[-2,0],[-1,5],[-4,0],[-3,0],[-5,-8],[-2,-2],[0,-10],[7,-2],[-3,-5],[-17,-29],[-5,-10],[0,-14],[-3,-10],[8,-14],[8,-8],[10,-14],[5,-5],[5,-5],[5,-12],[3,-14],[4,-12],[0,-5],[5,-27],[0,-4],[-7,-10],[2,-3],[0,-16],[6,-13],[2,-9],[12,-19],[5,0],[5,-5],[10,-49],[10,-7],[6,-12],[5,-2],[9,-20],[-2,-2],[12,-12],[0,-5],[3,-10],[12,-19],[1,-5],[5,-5],[2,-7],[5,-2],[7,-7],[3,-3],[0,-7],[0,-3],[5,0],[0,-2],[11,-5],[12,-14],[7,-15],[5,-12],[1,-14],[-3,0],[-2,5],[-11,9],[-2,0],[-2,-7],[9,-17],[6,2],[-1,-7],[-2,-5],[5,-7],[3,-7],[-5,7],[-1,0],[1,-5],[-1,0],[-2,5],[-2,0],[-5,-7],[4,-3],[6,-16],[0,-8],[12,-9],[2,-12],[5,-8],[3,-19],[5,-7],[18,-12],[2,-5],[0,-12],[-3,-3],[3,-14],[10,-15],[2,-4],[-4,0],[2,-8],[8,-19],[7,-5],[2,-2],[0,-12],[0,-3],[-4,0],[-3,3],[-2,-5],[0,-22],[-3,-14],[2,-8],[10,-4],[1,-5],[2,-7],[8,-17],[5,-20],[14,-29],[13,-41],[6,-12],[7,-21],[13,-25],[2,-9],[12,-22],[8,-10],[13,-38],[4,-12],[3,-10],[2,-12],[10,-19],[5,-12],[3,-12],[3,-10],[22,-51],[0,-7],[7,-12],[3,-24],[10,-15],[3,-5],[5,-24],[8,-14],[2,-3],[-5,-9],[2,-3],[6,-7],[14,-26],[20,-25],[8,-21],[10,-17],[2,-3],[-2,8],[7,-3],[8,-7],[5,-17],[5,-2],[7,0],[6,-5],[9,-7],[6,-15],[-3,0],[-5,7],[-3,0],[-9,-2],[-6,2],[-7,-2],[-5,7],[-7,0],[2,5],[-3,2],[-5,-2],[-4,-7],[-1,-29],[1,-8],[4,0],[-2,-14],[3,-10],[-1,-14],[-2,-19],[-2,-15],[10,-26],[0,-15],[2,-5],[2,-14],[11,-32],[7,-36],[3,-5],[7,-17],[3,-2],[-6,14],[6,-2],[4,-22],[8,-12],[5,-5],[11,-7],[5,-7],[4,-2],[23,-3],[13,-7],[5,-3],[7,-12],[7,-19],[10,-14],[0,-5],[16,-27],[5,-2],[9,-3],[26,-31],[7,-2],[1,4],[4,-4],[6,-12],[12,-15],[2,-7],[-4,-10],[-6,-2],[5,-8],[0,-28],[5,-34],[-2,-8],[2,-2],[1,-5],[4,-7],[8,-29],[22,-46],[15,-19],[18,-34],[-2,-10],[-1,-2],[-4,2],[-3,-2],[-3,2],[-7,20],[3,0],[4,-8],[3,-4],[3,0],[-3,9],[-3,10],[-2,2],[-3,0],[-4,5],[-1,-2],[-2,0],[-2,5],[2,9],[-2,3],[-5,0],[-3,-3],[0,-12],[3,-5],[-1,-4],[1,-8],[-3,-5],[-2,-2],[0,-5],[5,-9],[5,-15],[2,-14],[2,-32],[1,-17],[9,-26],[0,-17],[-2,-7],[-2,-3],[-5,0],[0,-2],[0,-24],[0,-15],[0,-17],[5,-34],[-3,-9],[0,-7],[12,-46],[1,-8],[-1,-21],[-4,-10],[0,-19],[9,-24],[1,-15],[-8319,2069],[13,2],[25,0],[28,12],[47,10],[6,7],[88,51],[7,5],[10,19],[8,12],[2,10],[10,7],[10,17],[7,5],[18,26],[50,34],[31,24],[20,25],[22,41],[10,4],[1,5],[9,15],[3,12],[7,5],[8,19],[3,12],[4,10],[6,9],[4,8],[6,12],[22,29],[17,38],[10,32],[5,38],[3,17],[0,10],[-10,14],[-5,20],[-5,2],[-5,10],[-12,9],[-6,0],[-4,5],[0,10],[12,24],[2,10],[-2,4],[-2,54],[-3,12],[2,4],[5,37],[0,12],[0,7],[-7,7],[10,17],[3,15],[7,9],[0,5],[7,10],[3,24],[28,38],[4,8],[18,26],[3,7],[3,17],[7,10],[2,7],[3,32],[-5,4],[2,10],[5,15],[0,4],[-5,15],[0,5],[3,7],[25,24],[18,29],[22,19],[20,32],[20,29],[1,2],[0,7],[15,25],[4,0],[3,-3],[7,0],[11,10],[10,17],[7,5],[7,2],[21,7],[25,12],[12,5],[3,7],[28,12],[5,8],[10,0],[14,4],[5,5],[6,10],[5,2],[4,8],[3,0],[3,-3],[4,0],[20,20],[13,7],[8,2],[5,5],[7,2],[16,17],[19,24],[15,29],[10,29],[18,34],[45,111],[13,58],[32,92],[1,14],[7,27],[3,5],[2,19],[5,7],[7,0],[16,-2],[7,7],[7,3],[1,0],[7,2],[7,-5],[10,7],[8,12],[7,5],[13,0],[10,-5],[5,3],[-2,-5],[-8,-7],[-2,-7],[5,-32],[3,-2],[4,0],[0,-7],[5,-20],[16,-14],[14,-24],[13,-8],[13,-19],[7,-2],[10,-10],[7,-5],[64,-22],[9,0],[10,8],[23,5],[13,9],[15,3],[7,4],[3,-9],[4,-5],[6,0],[9,0],[5,2],[1,10],[4,5],[5,2],[4,0],[14,-14],[11,-3],[5,-2],[7,0],[7,-2],[8,-3],[7,3],[20,9],[13,12],[7,0],[5,5],[6,19],[5,8],[0,4],[2,3],[3,-5],[-1,-14],[1,-10],[9,-17],[-2,-5],[0,-12],[5,-10],[3,-4],[18,-3],[-6,7],[-13,17],[-2,5],[0,3],[20,-27],[15,-7],[18,-3],[7,0],[5,0],[8,12],[3,0],[34,-14],[3,2],[2,-2],[5,2],[18,-4],[10,0],[5,0],[5,2],[15,5],[5,5],[8,0],[8,9],[12,5],[2,5],[20,22],[25,4],[5,8],[6,2],[4,7],[3,17],[11,29],[5,0],[5,10],[12,10],[3,4],[5,3],[14,9],[1,-2],[2,-2],[2,2],[6,2],[4,10],[5,0],[3,-2],[12,-5],[3,-5],[10,0],[7,5],[1,7],[7,0],[3,3],[7,19],[0,7],[10,-2],[11,7],[4,-5],[5,-2],[0,-10],[1,-2],[24,-10],[11,0],[7,5],[12,12],[13,36],[3,10],[15,17],[10,2],[7,7],[3,12],[7,3],[11,0],[19,14],[5,3],[8,9],[18,3],[9,5],[10,4],[11,10],[4,7],[10,5],[5,5],[13,0],[10,5],[15,2],[16,7],[14,-4],[11,2],[34,2],[6,3],[7,0],[10,2],[8,0],[10,-2],[15,2],[45,17],[7,-2],[3,-3],[2,-5],[8,-2],[25,2],[5,3],[17,14],[10,5],[5,5],[5,10],[13,14],[8,3],[5,-3],[7,-5],[8,-9],[7,-3],[6,0],[5,5],[4,7],[0,5],[18,-7],[23,0],[12,2],[3,5],[7,0],[7,3],[14,16],[22,8],[7,-3],[6,-5],[14,3],[11,-5],[10,5],[9,-3],[8,5],[10,-2],[20,2],[10,-5],[8,-2],[5,2],[35,3],[27,-15],[3,-4],[7,0],[6,-8],[9,-2],[-4,-12],[2,-3],[25,-16],[10,-3],[26,7],[5,5],[10,5],[2,10],[5,5],[12,4],[11,10],[24,-2],[28,7],[27,12],[6,5],[3,7],[-1,12],[3,5],[12,12],[13,5],[7,0],[6,-3],[7,-4],[2,-5],[3,-3],[2,-9],[3,-5],[2,2],[10,-5],[25,-2],[8,-5],[2,-2],[0,-5],[5,-3],[11,0],[18,10],[12,-5],[13,15],[2,5],[0,7],[-12,14],[7,3],[8,-5],[4,2],[8,-2],[7,2],[3,-7],[10,-2],[5,2],[17,-14],[6,-3],[7,3],[7,-8],[10,3],[5,5],[-5,-15],[3,-2],[-3,-8],[6,-4],[10,-5],[7,0],[23,7],[30,19],[10,-7],[12,0],[1,-2],[4,0],[6,-5],[12,0],[31,17],[22,2],[18,15],[5,7],[5,12],[9,7],[20,10],[5,10],[3,0],[22,2],[6,2],[7,8],[5,-3],[11,5],[5,5],[4,-3],[3,0],[10,8],[15,5],[5,-5],[15,0],[0,-15],[-12,-7],[-3,-7],[3,-8],[5,-7],[10,0],[5,7],[4,5],[-2,3],[-10,5],[-7,0],[9,7],[1,0],[17,-3],[13,3],[4,-5],[11,0],[5,-7],[12,-5],[3,-3],[-10,-4],[0,4],[-5,0],[-5,-2],[-3,-2],[2,-5],[3,-3],[8,3],[4,-5],[-2,-5],[0,3],[-8,-8],[1,-12],[7,-12],[8,-9],[7,-5],[6,-10],[-8,-14],[-1,0],[-4,2],[2,2],[-5,3],[-7,-5],[-3,-7],[10,-3],[3,8],[9,-17],[6,-5],[7,0],[13,5],[7,5],[8,21],[2,5],[18,0],[7,5],[10,12],[5,0],[1,5],[10,9],[2,5],[-2,3],[2,2],[12,3],[6,4],[4,3],[3,-3],[2,-4],[-2,-5],[0,-5],[7,-15],[0,-9],[5,-8],[-4,-9],[-10,-7],[-10,-15],[-6,-14],[-12,-25],[-8,-26],[-5,-5],[-15,-5],[-24,-14],[-5,-5],[-5,-7],[-5,-20],[-1,-19],[1,-29],[5,-10],[4,-9],[6,-10],[4,-5],[5,-14],[16,-19],[15,2],[4,-2],[1,0],[-3,-5],[2,-5],[3,-10],[7,-5],[15,-2],[6,-2],[4,-5],[-4,-15],[0,-5],[5,-9],[4,-3],[-4,-12],[-3,-14],[2,-15],[3,-7],[12,-14],[5,0],[0,-3],[-5,0],[-7,-12],[-8,-10],[-5,-24],[-10,-14],[-4,-7],[-1,-8],[1,-5],[-10,-19],[-1,-5],[-5,-2],[-10,-12],[-5,-17],[-5,-5],[-12,-7],[-2,-7],[-5,-5],[-1,-7],[-2,-3],[-23,-9],[-17,-22],[-6,0],[-7,-10],[-23,-14],[-14,-24],[0,-8],[-3,-2],[2,-10],[0,-14],[5,-22],[3,-7],[15,-27],[28,-34],[20,-9],[7,-3],[6,0],[29,17],[3,-2],[0,-5],[-2,-24],[-5,-7],[-1,-3],[5,-12],[6,-5],[7,3],[13,7],[9,5],[3,7],[-3,12],[5,5],[3,-3],[3,3],[10,-5],[5,-7],[7,-12],[0,-41],[3,0],[7,-10],[20,-10],[-2,-2],[-17,7],[-8,0],[-1,-7],[6,-10],[3,-7],[12,3],[20,-10],[8,0],[2,2],[0,5],[-8,5],[-5,7],[15,-14],[20,-8],[1,-2],[4,-7],[8,-5],[20,-5],[5,-2],[-3,5],[-10,4],[-4,5],[9,-7],[18,-7],[38,-29],[7,-10],[6,-2],[24,-17],[8,-3],[63,-7],[15,0],[42,17],[15,10],[16,2],[15,-5],[37,-24],[8,-2],[28,2],[7,-2],[27,-12],[33,-8],[22,-19],[21,-24],[3,-2],[27,-5],[17,-12],[30,-3],[33,-7],[12,-2],[3,-3],[5,-10],[8,-7],[3,-14],[10,-22],[2,-2],[-2,-29],[0,-17],[2,-10],[20,-65],[22,-39],[11,-14],[12,-12],[47,-27],[53,-12],[61,-2],[35,-10],[37,-14],[28,-8],[7,0],[16,-14],[24,-10],[28,-12],[11,-5],[7,-9],[7,-5],[15,-5],[31,-17],[19,-26],[41,-39],[13,-19],[12,-8],[10,-2],[25,-22],[7,-2],[15,-3],[15,-2],[15,2],[16,8],[13,7],[19,17],[15,5],[21,21],[27,41],[12,24],[10,10],[10,29],[8,27],[0,9],[0,32],[-3,5],[-5,16],[-14,22],[-11,39],[0,22],[-5,16],[0,10],[1,31],[4,10],[-2,7],[22,53],[31,39],[12,17],[10,5],[28,31],[40,20],[22,19],[19,12],[9,2],[31,-2],[20,5],[7,5],[27,29],[18,4],[3,-4],[9,-3],[14,-5],[37,5],[3,5],[5,2],[4,-2],[1,-5],[5,-7],[7,-3],[15,0],[7,-2],[21,-19],[12,-3],[38,-14],[10,-7],[10,-3],[8,0],[10,-7],[12,-2],[2,-3],[0,-2],[-5,-10],[1,-14],[2,-5],[7,-5],[-4,-19],[-3,0],[0,4],[-3,5],[-2,-26],[20,-10],[5,-10],[2,-7],[8,-5],[3,-9],[-1,14],[10,0],[8,-7],[20,-3],[23,0],[28,-7],[27,-14],[-5,-5],[5,-5],[12,-10],[3,0],[32,0],[44,-4],[15,4],[5,5],[7,0],[3,0],[10,-5],[32,-9],[7,-5],[1,-7],[-1,-17],[1,-3],[15,-24],[7,-19],[-2,-2],[2,-17],[1,-8],[4,-4],[11,-3],[7,-2],[12,0],[5,-3],[70,27],[8,2],[17,0],[64,-24],[49,-7],[5,-3],[11,0],[20,-9],[7,0],[10,2],[5,-5],[8,-4],[12,-5],[11,-3],[7,-2],[3,2],[14,0],[1,-2],[0,-5],[4,-5],[5,-19],[10,-7],[23,-8],[3,3],[8,-5],[10,2],[22,13],[3,-5],[5,-27],[5,-2],[37,-3],[8,-4],[5,0],[15,-3],[10,5],[7,0],[10,-7],[8,0],[47,-22],[5,-12],[31,-19],[32,2],[46,29],[17,12],[3,5],[25,22],[2,7],[5,-3],[5,3],[7,9],[0,3],[-4,0],[4,2],[3,-2],[13,14],[4,8],[8,4],[-2,3],[5,2],[0,-7],[4,-2],[13,-5],[-5,-5],[1,-2],[-1,0],[5,-5],[6,5],[-1,-3],[3,-2],[5,7],[2,-2],[1,7],[2,0],[0,-5],[2,-2],[1,7],[-1,2],[-9,-2],[2,2],[-12,-2],[0,2],[12,5],[10,12],[3,7],[4,10],[0,10],[-2,9],[2,0],[1,-9],[4,-3],[3,-2],[-5,5],[-2,7],[0,5],[17,-12],[13,0],[24,9],[48,22],[0,-2],[-17,-8],[-40,-29],[-11,-2],[-4,-5],[0,-2],[4,0],[3,0],[3,0],[5,0],[4,2],[5,5],[3,0],[5,-7],[5,7],[7,7],[6,-5],[5,0],[4,0],[-2,-2],[2,0],[8,5],[-2,2],[2,3],[6,-5],[4,2],[1,5],[-1,2],[3,5],[2,5],[6,0],[5,-5],[0,-2],[4,0],[1,2],[-3,3],[3,2],[-3,5],[-7,7],[-8,3],[-7,0],[5,4],[15,3],[20,-7],[27,-15],[7,-7],[23,-12],[7,0],[24,9],[20,15],[7,-2],[5,-3],[3,-10],[10,-19],[7,-5],[7,-4],[5,-5],[11,-10],[-5,0],[-16,12],[3,0],[-2,3],[-3,0],[-8,9],[-2,-2],[-2,7],[-3,5],[3,0],[-11,19],[-5,3],[-2,-3],[-2,3],[0,-5],[-3,2],[-2,-5],[5,0],[-1,-2],[3,-7],[-2,-3],[2,-2],[-2,0],[2,-3],[-2,0],[-1,5],[-4,3],[-1,0],[-2,-5],[3,2],[4,-2],[-2,0],[0,-5],[5,0],[-3,-2],[-4,2],[-1,-2],[1,-5],[-1,-5],[5,-2],[0,-3],[-10,3],[-2,-5],[2,-3],[-2,0],[2,-5],[-5,-2],[0,-5],[1,-2],[4,2],[-2,3],[5,-3],[2,-2],[0,-5],[10,-7],[3,7],[-2,-2],[2,-5],[-3,0],[3,0],[-2,-5],[2,2],[2,-2],[0,2],[1,0],[0,-5],[2,3],[8,7],[4,-2],[-2,0],[2,-3],[1,3],[4,0],[-2,-8],[2,3],[0,-5],[-2,0],[2,-7],[-4,-5],[4,0],[1,2],[0,-4],[4,-3],[-4,-2],[-1,-3],[3,-2],[3,0],[2,0],[-2,-2],[5,-5],[2,0],[2,5],[-4,0],[-1,4],[8,-2],[-2,2],[4,0],[-2,5],[3,0],[2,0],[0,3],[2,2],[3,-5],[3,-2],[7,5],[2,4],[0,3],[-4,5],[5,0],[2,9],[-5,12],[2,3],[-5,2],[-7,0],[0,5],[20,-7],[2,-7],[8,-3],[15,-19],[5,-10],[10,-9],[5,-3],[15,0],[11,5],[29,19],[0,-2]],[[7599,3234],[2,0],[2,-4],[-4,4]],[[1561,9887],[6,0],[19,3],[8,-5],[17,2],[5,-2],[-5,-12],[-5,-10],[-7,-5],[-2,-4],[0,-3],[2,-5],[3,0],[7,0],[2,-2],[-5,-5],[-2,-9],[-7,-10],[-15,-15],[-26,-12],[-10,-5],[-5,-12],[-9,-4],[-36,-25],[-12,-4],[-3,-3],[-3,-9],[-24,-10],[-1,-5],[-4,0],[0,2],[-10,3],[-1,0],[1,-5],[10,-2],[5,-5],[-3,-5],[0,-5],[-10,0],[-5,-5],[-20,5],[-13,-2],[-9,9],[-6,3],[8,-10],[5,-5],[7,0],[10,3],[10,-7],[3,0],[-2,4],[17,-7],[10,5],[5,0],[3,-2],[-3,-5],[7,0],[5,2],[13,12],[2,0],[1,-2],[-1,-7],[-34,-32],[-5,0],[-1,3],[1,2],[-3,5],[-7,-3],[-15,-9],[-20,-3],[-3,-7],[-15,-10],[-5,-7],[8,3],[9,9],[21,10],[5,-3],[12,0],[15,8],[2,-3],[-5,-5],[-9,-9],[-6,-7],[3,-3],[-12,-2],[-3,-3],[2,-2],[-14,0],[0,-3],[9,0],[-7,-9],[10,-3],[3,3],[4,5],[5,0],[6,4],[7,5],[-7,8],[40,0],[27,14],[8,2],[-3,-4],[3,0],[7,0],[-4,7],[12,-3],[5,5],[2,3],[0,2],[1,3],[5,0],[9,2],[21,0],[12,-7],[22,-5],[8,0],[18,7],[27,0],[5,-2],[11,2],[20,-5],[2,-2],[5,2],[12,-2],[0,2],[5,-2],[6,2],[5,-2],[5,7],[15,-5],[17,5],[18,0],[5,-5],[7,0],[16,-17],[4,-12],[1,-5],[0,-2],[7,-7],[-3,0],[0,-5],[3,-2],[-12,-10],[-3,-5],[0,-5],[-17,-12],[-5,-5],[-9,-21],[-5,-15],[0,-7],[3,-2],[0,-3],[-23,-34],[-2,-7],[2,-10],[-4,-2],[-1,-7],[-9,-5],[-8,-12],[-18,-12],[-2,-5],[-2,-10],[-6,-9],[1,-5],[-5,-10],[-18,-12],[-3,-5],[-10,-5],[-5,-7],[-5,3],[-50,-8],[-12,-4],[-18,-15],[-7,-2],[-6,2],[5,-5],[10,3],[46,17],[4,4],[6,3],[7,-5],[6,0],[2,-2],[-2,-10],[-5,-5],[5,0],[2,-5],[5,-5],[15,0],[17,-12],[-12,-12],[-12,-2],[-15,-7],[-13,4],[-11,0],[-4,-4],[-10,-5],[-8,-10],[-7,-2],[-5,-15],[-15,0],[-15,-7],[-13,-2],[-27,7],[-15,0],[-13,5],[-11,9],[-4,0],[14,-9],[6,-10],[5,0],[5,-5],[13,3],[29,-8],[13,0],[5,-2],[30,-3],[7,-4],[10,0],[13,4],[10,10],[3,0],[-1,5],[8,7],[3,0],[27,0],[11,-9],[-1,-5],[8,0],[3,2],[34,-17],[28,-7],[2,-5],[8,-5],[11,-19],[22,-24],[5,-7],[3,-3],[2,-5],[7,5],[3,-5],[2,-2],[-4,0],[0,-2],[12,0],[12,-5],[0,-7],[1,-3],[-1,-2],[5,-5],[-2,-3],[3,-2],[2,-5],[0,-14],[-2,-10],[2,-7],[3,-5],[0,-5],[-1,-7],[1,-5],[7,-7],[-2,-3],[4,-7],[-2,-5],[0,-2],[3,-7],[4,-10],[3,-2],[8,-20],[9,-9],[0,-15],[13,-36],[7,-7],[11,-5],[0,-3],[-3,0],[5,-9],[-8,-5],[1,0],[3,-2],[2,2],[2,-5],[1,0],[2,10],[7,-7],[51,-15],[39,-19],[6,-7],[0,-8],[10,-7],[2,-5],[5,-12],[2,-5],[3,-4],[-2,-3],[5,-5],[15,-7],[3,-10],[5,-4],[20,-8],[5,-5],[-13,-7],[-5,-5],[-5,-9],[3,-7],[9,-22],[46,-63],[4,-7],[-4,-10],[-3,-2],[5,12],[-3,2],[-15,7],[-14,-4],[-6,0],[-7,4],[-17,17],[-5,5],[-8,0],[-20,-7],[-18,0],[-7,5],[-10,0],[-15,-8],[7,-2],[2,2],[10,3],[15,-7],[6,2],[30,5],[5,0],[15,-22],[8,-2],[7,-7],[8,-3],[9,-7],[16,-12],[9,-3],[3,-4],[2,-5],[6,-5],[-1,-3],[3,-2],[5,-5],[13,-36],[4,-10],[0,-9],[-5,-15],[-9,-5],[-15,-12],[-5,-2],[-13,-17],[-10,-7],[-2,-3],[0,-2],[17,0],[10,-7],[13,-15],[2,0],[12,0],[8,-7],[0,5],[10,12],[3,12],[5,10],[5,7],[8,2],[17,0],[-2,3],[4,2],[11,-5],[15,0],[22,-5],[7,3],[-7,2],[50,-9],[21,-10],[40,-27],[5,-4],[5,-8],[9,-24],[-2,-7],[2,-17],[3,-10],[-3,-4],[-4,-13],[0,-4],[-8,-20],[-8,-12],[0,-17],[-9,-29],[-13,-4],[-2,-3],[-3,3],[-2,-5],[-6,-10],[-15,-14],[-12,12],[-5,2],[-6,7],[-5,0],[0,-2],[8,-7],[10,-3],[0,-5],[-10,-2],[-7,5],[-16,-5],[5,0],[26,-2],[3,2],[0,-5],[-13,-12],[10,-5],[5,5],[0,-5],[-2,-5],[-18,-12],[-16,-2],[-5,0],[-10,14],[0,-4],[-4,-3],[-11,-7],[-4,-7],[-5,-5],[-11,2],[-12,-4],[8,-3],[2,-5],[5,5],[10,3],[13,4],[4,-2],[-2,-5],[2,-7],[-2,-5],[-2,-5],[-3,-5],[5,3],[2,-3],[-5,-7],[-9,-7],[-16,-7],[-20,2],[-14,-7],[-3,2],[-15,-2],[-5,-10],[-8,-5],[11,3],[4,5],[10,2],[26,-2],[4,-3],[1,-5],[-5,-2],[-8,0],[-5,-2],[-10,-5],[7,-5],[20,-3],[-2,8],[2,2],[3,0],[2,-7],[3,-7],[37,-3],[20,5],[53,5],[5,-3],[-2,-7],[-2,-5],[-8,0],[5,-26],[-2,-10],[-3,-7],[-3,-5],[-17,-7],[-6,0],[-5,-5],[-14,0],[-6,-5],[-7,-5],[-10,-14],[2,-15],[-5,-2],[-25,7],[-7,-2],[-17,-15],[-6,-2],[-42,-10],[-5,-5],[-5,-4],[-6,-8],[-25,3],[-4,5],[-11,0],[-34,12],[-6,0],[-4,-3],[-6,3],[-22,-8],[-28,0],[-27,-7],[-5,3],[-1,-3],[0,-5],[0,-2],[-4,-2],[-18,9],[-2,3],[0,2],[9,2],[0,3],[-7,5],[-5,-3],[2,5],[-4,0],[-13,0],[-7,-14],[-3,0],[-3,4],[5,10],[-4,2],[-11,-2],[6,-5],[0,-7],[-5,-2],[-6,2],[-2,5],[-10,5],[-6,2],[-7,7],[-22,12],[0,-2],[7,-2],[18,-17],[2,-5],[-2,-3],[-16,-2],[3,-5],[-15,-2],[-5,0],[-7,-10],[-6,3],[-15,2],[-14,-5],[-15,3],[-6,-3],[-7,-7],[-2,5],[-11,2],[-3,5],[-7,-10],[7,3],[6,-8],[8,0],[0,-2],[0,-5],[4,-2],[-7,-5],[0,-5],[-16,0],[-15,5],[-30,2],[-7,5],[-3,0],[-7,-2],[-3,-7],[-2,-5],[2,-3],[5,-2],[0,-3],[-4,-7],[-1,0],[0,10],[-4,5],[-35,24],[-28,10],[-16,-3],[-7,-2],[-10,0],[-12,-5],[-6,0],[-15,-5],[-7,-7],[-12,-5],[-8,2],[-5,10],[-2,2],[-1,-2],[1,-2],[5,-12],[-8,-10],[-5,-12],[3,-15],[-6,-2],[-4,0],[-1,-5],[1,-2],[10,-3],[0,-2],[-1,-5],[-4,-2],[-1,-5],[-2,-3],[-5,5],[-2,-7],[-6,-2],[-2,-3],[-3,-14],[0,-5],[-2,-3],[-10,-2],[-8,2],[-3,-2],[-15,17],[-14,10],[-11,-8],[-4,3],[-3,2],[2,3],[-9,4],[-1,3],[3,5],[-7,0],[-5,2],[-3,10],[5,9],[-3,-2],[-4,2],[-1,-4],[-4,0],[2,-5],[-2,-5],[-10,0],[4,-5],[8,2],[5,-2],[-7,-2],[0,-3],[5,0],[-1,0],[5,0],[-4,-5],[2,-4],[-5,0],[-3,7],[-2,2],[-15,3],[-7,0],[-20,-10],[-26,-2],[-2,0],[-3,4],[-12,-4],[0,-5],[-3,-5],[0,-5],[-3,-7],[-9,0],[-8,-5],[-8,-2],[-9,-15],[-1,5],[-2,7],[-2,3],[-3,0],[0,-5],[-2,-5],[4,-5],[-7,-2],[-2,-5],[-6,-3],[10,-2],[1,-7],[-6,-12],[-9,0],[-5,-5],[-1,-7],[-10,7],[0,10],[-9,12],[-28,12],[-8,-3],[-3,-2],[1,-7],[-5,-5],[-18,-5],[-7,2],[-1,8],[3,2],[2,2],[-4,8],[5,7],[29,14],[3,0],[8,-7],[4,3],[5,9],[6,0],[7,3],[18,19],[8,5],[0,5],[0,7],[17,7],[2,5],[1,17],[2,5],[12,4],[3,-9],[2,2],[13,-5],[-3,5],[-9,3],[-1,2],[0,5],[0,5],[21,2],[7,10],[0,7],[3,0],[12,10],[3,7],[10,7],[5,10],[0,22],[2,9],[3,7],[-1,5],[0,5],[14,0],[7,-2],[10,0],[7,2],[15,17],[-4,12],[-5,5],[9,0],[0,5],[-4,5],[14,4],[30,3],[10,2],[11,0],[12,5],[21,-5],[14,0],[21,-5],[9,-4],[18,0],[18,4],[17,0],[5,3],[2,-3],[-4,-2],[4,-2],[3,4],[0,5],[-2,5],[0,15],[-1,2],[5,0],[0,7],[5,5],[-2,2],[3,5],[5,-2],[20,22],[13,4],[4,3],[15,24],[5,2],[3,10],[15,17],[12,2],[3,5],[0,3],[-3,2],[0,-5],[-4,-2],[-10,-3],[-6,-7],[-10,-7],[-22,-22],[-8,-2],[-17,-8],[-13,-2],[-5,5],[-8,-7],[-15,-8],[-4,-4],[-3,-5],[-3,-3],[1,-4],[-1,-5],[-2,-3],[-7,0],[-11,-5],[-42,5],[-3,3],[-7,9],[-10,8],[-6,-3],[-7,5],[-2,2],[2,3],[-5,12],[-10,14],[-3,0],[-19,0],[-5,-2],[-1,-5],[5,-7],[-9,0],[-1,-3],[-4,5],[-3,-2],[-8,2],[-9,-7],[-5,2],[0,-2],[-15,5],[-1,2],[3,3],[-2,9],[5,0],[5,5],[0,-2],[2,-3],[22,5],[3,5],[0,5],[-7,-5],[-6,2],[-9,5],[-15,-5],[-5,3],[-8,7],[-2,5],[10,-2],[2,2],[-8,2],[-2,3],[2,5],[-2,4],[-5,-7],[-5,5],[-3,-2],[3,-5],[-5,-3],[-18,0],[-13,-2],[-5,-2],[0,-8],[-2,0],[-3,-9],[-4,2],[-5,-5],[-16,0],[-14,-9],[-18,7],[2,2],[-2,5],[-8,0],[-4,5],[2,2],[12,-2],[0,2],[8,0],[20,8],[5,-3],[-5,7],[-2,5],[4,5],[6,2],[0,3],[-18,-5],[3,-2],[2,-3],[-2,-2],[4,-3],[-2,-2],[-2,-2],[-13,-3],[-27,3],[-3,-3],[2,-2],[-4,-3],[0,5],[-11,5],[6,2],[5,5],[9,3],[3,2],[0,12],[-3,7],[-2,0],[-2,0],[-11,5],[-15,-5],[1,3],[0,5],[2,2],[-2,2],[2,3],[10,0],[7,7],[11,2],[5,5],[0,5],[4,0],[-2,5],[2,2],[6,0],[12,-4],[8,0],[-1,4],[13,-4],[2,2],[-2,7],[10,3],[10,12],[8,-3],[-1,7],[6,3],[23,0],[4,5],[8,2],[7,7],[11,5],[20,15],[15,21],[2,5],[3,15],[4,9],[0,5],[0,5],[6,-2],[12,7],[0,2],[-3,0],[-14,-5],[-13,15],[2,7],[1,5],[9,7],[0,5],[11,7],[-10,-2],[-13,14],[-3,8],[0,2],[5,2],[-2,10],[0,5],[12,7],[-4,3],[-3,-5],[-3,5],[-4,-5],[-15,2],[-18,-7],[-12,0],[-11,-10],[0,-2],[-4,-3],[0,-4],[2,-3],[-5,-2],[-11,7],[-10,-5],[-9,0],[-8,-5],[-2,3],[2,2],[-2,3],[5,4],[22,25],[13,2],[13,10],[4,5],[10,7],[1,7],[2,12],[2,0],[1,-2],[4,7],[6,5],[5,2],[9,15],[10,2],[8,0],[17,7],[16,8],[7,0],[-2,4],[-6,8],[6,-3],[5,-2],[4,0],[3,0],[8,-7],[20,0],[7,0],[31,14],[7,0],[35,-22],[5,-7],[2,12],[-19,24],[0,3],[5,4],[12,3],[5,2],[3,0],[5,-2],[10,-24],[7,-5],[5,-2],[5,0],[1,2],[10,0],[5,2],[0,3],[2,5],[7,2],[-10,0],[-4,-2],[0,-3],[-3,-2],[-15,2],[-5,5],[-10,10],[-20,41],[2,7],[12,14],[11,15],[9,7],[-14,0],[-6,3],[-5,4],[-2,8],[3,19],[-3,7],[3,3],[4,2],[15,5],[6,0],[5,5],[-1,2],[6,5],[0,5],[-11,-5],[-4,7],[10,12],[5,3],[5,9],[-8,15],[6,5],[2,4],[0,5],[-2,-5],[-1,-2],[-13,-7],[-4,-7],[-3,0],[-7,-3],[-3,3],[-3,7],[1,2],[-1,3],[-4,4],[-1,-2],[1,-2],[-3,-12],[-10,-13],[-5,-2],[0,-10],[-7,10],[-5,0],[-3,2],[2,13],[-4,2],[5,2],[2,8],[0,12],[-3,-3],[-2,-7],[2,-5],[-14,-2],[-16,22],[0,2],[1,7],[-1,5],[-5,2],[-5,10],[-27,29],[3,5],[4,7],[5,19],[6,17],[4,5],[5,3],[5,4],[1,5],[-1,5],[8,19],[5,5],[3,0],[5,-2],[10,2],[-11,5],[6,5],[12,2],[5,-2],[10,-3],[17,5],[-12,0],[0,3],[8,2],[4,0],[0,2],[-5,0],[-15,-2],[-52,2],[-8,3],[-5,-3],[-7,5],[-2,-7],[2,-12],[-2,-10],[-3,0],[-20,0],[-3,-4],[-12,2],[2,-2],[-2,0],[-3,2],[2,2],[1,-2],[-1,5],[-4,-5],[0,-5],[-3,-2],[7,-5],[-24,-12],[-8,0],[-5,0],[0,2],[-3,0],[1,7],[0,3],[-1,2],[-5,-5],[0,-4],[1,-3],[-6,-2],[-9,5],[-6,9],[1,10],[-6,-7],[-5,0],[-15,7],[-5,7],[-2,3],[-5,-10],[2,-5],[3,-7],[7,0],[3,-7],[-3,-5],[3,-3],[-3,-4],[1,-10],[-5,-5],[-13,5],[-7,0],[-16,19],[-18,10],[-12,2],[-3,8],[-10,2],[-12,-7],[-3,-10],[0,-5],[3,-5],[5,-14],[5,-3],[0,-9],[2,-5],[-14,5],[-3,7],[0,2],[2,3],[-2,2],[2,5],[-7,3],[-2,7],[-5,2],[-16,17],[-5,7],[-4,8],[0,9],[2,15],[2,2],[6,0],[0,3],[9,-10],[1,-15],[5,-4],[4,0],[1,2],[2,2],[-5,12],[-5,13],[0,7],[5,9],[2,10],[10,7],[11,12],[2,0],[2,5],[3,10],[0,10],[2,2],[10,10],[3,9],[5,5],[12,5],[3,5],[2,7],[-2,5],[-3,5],[-7,0],[3,5],[0,4],[-3,8],[-5,2],[-17,5],[2,2],[-10,7],[-8,8],[6,7],[4,5],[-2,7],[-2,7],[-1,17],[0,7],[3,5],[3,3],[9,2],[21,-7],[27,-3],[5,3],[-25,5],[-7,2],[-8,10],[-10,5],[-5,4],[-2,10],[-3,0],[0,-2],[0,-5],[10,-15],[-2,-2],[-1,0],[-9,2],[-1,3],[-2,17],[7,12],[11,17],[0,4],[-3,-4],[-12,-20],[-3,0],[-2,3],[0,7],[-1,5],[-4,2],[-1,-2],[5,-22],[0,-5],[-2,-2],[2,-15],[-4,0],[-6,3],[0,-3],[5,-5],[1,-2],[-1,-2],[-5,-8],[-4,-9],[-3,-3],[-7,0],[-1,3],[-5,19],[-7,7],[-2,5],[-3,-2],[8,-17],[2,-5],[-2,-2],[-13,9],[-2,3],[0,4],[-3,-4],[-2,-8],[-5,-7],[7,-14],[-17,5],[-1,2],[0,7],[-5,3],[0,7],[3,7],[-3,10],[5,2],[18,27],[17,7],[10,17],[16,7],[4,7],[-10,-7],[-12,-2],[-2,-3],[-8,-14],[-20,-10],[-13,-17],[-7,-2],[-1,-7],[-2,-3],[-10,0],[-2,5],[-1,-17],[3,-2],[3,-12],[2,-3],[-2,-2],[4,-3],[-4,0],[10,-9],[4,-5],[1,-7],[0,-3],[-11,-5],[-7,-7],[-5,-7],[-2,-10],[-3,-2],[2,-3],[0,-4],[5,-5],[-2,-3],[-5,-2],[2,-5],[-5,-7],[0,-10],[-2,0],[-7,-9],[-3,-3],[0,-2],[3,0],[4,-3],[5,-9],[-4,-3],[-6,-9],[-9,-3],[-10,0],[-8,-2],[-7,0],[-1,2],[-4,17],[2,5],[12,12],[0,14],[1,8],[-1,5],[8,19],[0,5],[-2,2],[9,7],[3,8],[5,7],[13,7],[5,7],[4,8],[-17,-17],[-8,-5],[-2,0],[0,5],[-8,4],[-2,13],[7,7],[1,5],[9,7],[-17,-10],[-3,0],[-2,7],[18,22],[2,3],[0,2],[2,2],[-2,0],[-8,-4],[0,-3],[-7,-7],[0,-5],[-3,-5],[-4,0],[2,10],[20,29],[8,-3],[0,3],[-3,2],[-2,5],[9,15],[-5,-3],[-12,-9],[3,9],[7,10],[-2,2],[2,3],[10,2],[0,2],[-3,3],[-14,-5],[-1,5],[5,14],[5,5],[6,0],[9,3],[0,2],[-15,-2],[5,9],[5,3],[0,2],[3,5],[7,2],[16,0],[13,-2],[5,2],[15,15],[10,14],[-5,-2],[-6,-12],[-12,-12],[-7,0],[-18,2],[-5,-2],[-1,2],[-4,7],[-5,-2],[-1,-5],[-4,3],[7,14],[5,-5],[7,0],[19,12],[-6,-4],[-5,0],[-10,-5],[-7,2],[9,17],[9,10],[-3,0],[0,2],[5,2],[7,0],[5,5],[11,-2],[25,10],[-26,-5],[-14,5],[2,4],[13,10],[5,10],[-10,-8],[-3,-4],[-5,-3],[-2,-5],[-5,-7],[-6,0],[-5,-5],[-8,-7],[-7,-5],[-3,-5],[-5,-2],[-20,-19],[-12,-8],[-3,3],[-14,7],[4,7],[-7,-7],[-10,3],[-25,16],[-2,5],[5,3],[9,0],[10,-3],[5,-2],[1,0],[-6,5],[0,2],[18,10],[3,0],[15,-5],[10,0],[9,5],[-17,-3],[-18,5],[-25,-7],[-10,2],[-10,0],[-14,3],[-3,0],[-6,-5],[-10,5],[-4,5],[2,2],[2,0],[6,5],[25,2],[10,5],[20,-7],[-2,5],[-5,2],[9,0],[6,2],[7,-2],[-12,7],[-3,3],[0,2],[2,3],[18,0],[7,2],[5,5],[-5,2],[-4,-2],[-1,-5],[-4,0],[-6,2],[6,8],[-6,2],[-15,-2],[-9,0],[12,2],[0,2],[-5,3],[3,2],[5,17],[7,5],[5,2],[5,-2],[7,-7],[5,-3],[5,0],[18,5],[-15,-2],[-3,0],[-10,5],[1,7],[-3,0],[-7,0],[-8,5],[12,14],[8,0],[3,3],[15,-8],[17,0],[2,3],[8,0],[-3,2],[-20,-2],[-7,5],[-15,4],[-2,3],[2,2],[7,12],[-2,3],[3,4],[7,5],[7,0],[15,-12],[6,3],[0,2],[-8,2],[-7,8],[7,7],[3,0],[0,2],[-5,0],[-6,-4],[-12,-5],[-13,2],[-10,-2],[-2,5],[5,7],[8,5],[2,-3],[5,0],[18,7],[7,5],[2,8],[-4,0],[-15,-15],[-13,2],[5,5],[-2,8],[-15,-15],[-11,-2],[-5,0],[-2,9],[2,3],[-2,5],[-2,2],[4,2],[-9,3],[-1,9],[3,8],[0,9],[3,0],[-1,5],[6,0],[12,-7],[3,-3],[4,-2],[8,-5],[-2,5],[12,2],[10,-2],[2,2],[-5,5],[-9,0],[-6,0],[-5,-5],[-5,8],[1,2],[-5,0],[-8,12],[-8,3],[0,4],[0,3],[3,2],[0,5],[10,3],[3,-5],[4,0],[3,5],[-8,4],[-14,3],[0,14],[-1,8],[1,4],[4,5],[5,0],[8,0],[5,-2],[0,-7],[3,-13],[7,-2],[-3,5],[8,-3],[-2,5],[0,8],[-10,12],[2,2],[-2,0],[7,10],[3,-3],[7,0],[-2,-7],[5,-5],[7,-2],[7,-3],[-2,3],[2,2],[1,7],[2,3],[3,0],[7,-3],[13,-9],[12,-3],[-5,5],[-5,0],[-7,7],[-11,5],[0,5],[3,-2],[0,2],[11,-7],[7,2],[10,-5],[7,-4],[6,-3],[5,-7],[4,-2],[-5,9],[-17,12],[-3,0],[0,3],[3,0],[2,2],[-2,5],[-15,5],[-6,7],[-5,0],[1,2],[-3,3],[-10,0],[3,5],[-6,7],[3,5],[7,-3],[3,-5],[5,3],[6,-3],[4,5],[0,5],[-2,3],[2,0],[0,2],[-4,0],[10,5],[0,2],[-8,0],[-2,0],[0,3],[-4,2],[1,5],[-5,2],[-6,7],[0,5],[1,0],[15,-5],[12,5],[8,-2],[7,5],[10,-5],[11,0],[12,-7],[-8,7],[8,2],[-13,3],[-4,-3],[-3,0],[-8,5],[-7,7],[-3,5],[-2,5],[3,0],[-1,5],[1,5],[2,5],[13,-5],[7,0],[-5,5],[-2,2],[-6,-2],[1,4],[-3,3],[10,2],[8,-2],[-18,12],[0,5],[2,2],[11,5],[2,5],[3,14],[2,3],[25,-5],[3,-5],[4,-7],[-4,-10],[5,5],[0,10],[4,2],[-2,5],[8,-7],[12,-5],[-2,-8],[-6,-4],[-9,-15],[4,0],[11,10],[0,2],[10,5],[5,12],[4,3],[6,0],[15,-8],[0,-7],[-3,-2],[-9,-15],[7,3],[5,4],[0,5],[8,5],[10,7],[15,-7],[-3,2],[5,5],[7,0],[5,5],[11,-2],[5,7],[4,2],[5,-7],[16,0],[15,0],[19,10],[16,5],[10,-3],[-3,-2],[5,-3],[13,3],[15,-3],[2,5],[-7,3],[-3,7],[6,5],[2,0],[2,-8]],[[468,8753],[9,2],[10,-5],[0,-4],[3,0],[0,7],[-3,5],[-4,0],[2,-5],[-2,2],[-3,10],[-5,0],[-3,7],[0,7],[6,3],[-3,2],[5,3],[-2,2],[5,2],[-5,3],[-3,-3],[0,-2],[-3,0],[1,-2],[-5,-5],[-5,0],[-3,2],[-3,5],[13,5],[-7,5],[-1,2],[5,0],[-9,7],[5,-2],[2,5],[-12,7],[-3,-2],[3,-3],[-1,-2],[-5,0],[1,-5],[-8,-2],[3,-5],[0,-3],[-3,-2],[3,-5],[0,-2],[-8,2],[-2,2],[0,5],[5,10],[2,5],[5,7],[-5,0],[-5,5],[3,0],[5,7],[12,7],[5,-4],[5,-3],[3,3],[2,-5],[3,2],[2,-2],[-3,-5],[-5,-3],[-4,0],[-5,3],[0,-5],[12,-5],[7,7],[-2,3],[0,5],[7,5],[11,-5],[-5,5],[7,0],[-12,4],[-3,5],[2,3],[8,2],[13,-5],[29,-2],[8,2],[5,-5],[13,0],[8,5],[10,-5],[4,-4],[5,0],[1,0],[-1,-8],[3,-2],[-3,-3],[1,-2],[10,-10],[2,-7],[2,0],[0,10],[0,5],[6,4],[7,15],[15,-2],[3,2],[14,-7],[8,0],[7,5],[5,-5],[10,2],[5,-2],[3,-8],[3,0],[7,-7],[10,3],[-9,4],[-1,5],[-9,3],[5,5],[5,0],[4,0],[11,0],[-5,4],[-10,0],[-1,3],[0,2],[6,-2],[4,2],[-2,3],[-7,2],[-16,0],[-2,2],[2,3],[31,17],[0,9],[5,-4],[10,4],[15,3],[14,5],[0,2],[-5,0],[-5,2],[8,8],[0,5],[8,4],[-1,8],[6,-3],[4,10],[-2,0],[-7,-3],[-10,-2],[-10,-5],[2,5],[-3,2],[-22,-16],[-5,-3],[5,7],[8,5],[-1,3],[-2,2],[-3,-2],[0,4],[-2,0],[-5,-9],[-5,7],[-10,-2],[-2,-3],[-6,3],[-12,0],[-3,2],[2,2],[-2,0],[-17,5],[2,5],[-3,2],[0,3],[6,2],[5,5],[15,10],[17,0],[13,-3],[-12,3],[-3,2],[3,3],[9,0],[6,-8],[2,0],[3,0],[-8,8],[-17,7],[2,2],[5,0],[5,5],[3,-2],[12,0],[12,-3],[0,3],[-7,2],[-2,3],[0,2],[2,2],[10,0],[-5,5],[-5,3],[-2,-5],[-5,0],[-6,7],[-2,5],[2,2],[5,-5],[8,5],[-8,5],[-7,7],[3,3],[4,-3],[3,5],[-2,0],[2,3],[5,2],[3,5],[2,0],[0,-5],[3,-2],[2,7],[-2,9],[7,15],[12,-2],[11,2],[-3,-5],[0,-5],[8,8],[15,9],[4,7],[3,0],[5,-2],[-2,-2],[-6,-5],[0,-3],[6,5],[2,-2],[7,2],[3,-5],[-2,-2],[7,2],[-2,-4],[-3,0],[0,-3],[5,0],[5,5],[-5,7],[-2,5],[12,12],[1,-2],[-4,-15],[3,-2],[5,2],[8,-5],[3,-9],[0,-8],[5,13],[-5,16],[-3,0],[0,-2],[2,-10],[-14,10],[5,12],[5,-2],[12,7],[3,-2],[5,-8],[-1,-9],[1,0],[7,-5],[2,-5],[5,-7],[0,-3],[-2,-7],[-17,-10],[0,-2],[10,2],[4,-2],[-2,-5],[-10,-5],[-8,-9],[0,-3],[6,5],[17,12],[2,3],[10,2],[3,7],[0,5],[-5,2],[3,5],[0,5],[-13,15],[-2,4],[0,3],[4,2],[1,3],[2,5],[-2,4],[7,-2],[3,2],[-1,3],[6,-3],[4,0],[6,5],[4,0],[3,0],[3,-5],[-5,0],[4,-2],[6,0],[4,0],[-15,14],[0,5],[-9,5],[4,2],[28,-9],[13,-15],[25,-9],[5,0],[2,-3],[0,-5],[-15,-4],[-12,-8],[-11,-7],[-10,-12],[-5,-10],[13,3],[13,-5],[9,2],[5,5],[1,7],[7,10],[1,12],[14,-5],[21,3],[19,7],[11,0],[9,7],[6,3],[10,-5],[7,5],[5,-3],[18,-7],[14,2],[9,-2],[10,-10],[0,-14],[-3,-10],[2,0],[10,-2],[3,-5],[-3,-15],[10,-2],[6,-7],[4,-7],[8,-8],[3,-14],[9,-5],[5,-5],[-2,7],[-12,8],[4,5],[5,0],[8,-10],[2,-7],[0,-5],[-4,-7],[-3,-3],[-20,-7],[-7,-7],[-6,-10],[1,0],[2,-5],[3,-2],[9,12],[15,7],[10,-2],[20,2],[1,-5],[4,0],[5,-14],[5,-7],[1,-13],[7,-7],[-2,-2],[2,-5],[-5,-7],[0,-5],[0,-5],[-5,-5],[3,-2],[-8,-5],[-2,2],[-3,8],[-5,4],[2,8],[3,2],[2,5],[-4,12],[-3,5],[-10,10],[-10,2],[0,-7],[-3,-3],[15,-5],[-7,-2],[5,-2],[0,-8],[2,-2],[0,-2],[0,-3],[-5,-14],[-9,-8],[22,8],[5,-3],[2,-9],[-2,-8],[-5,-4],[-5,-5],[-3,0],[-2,-5],[-3,-3],[-4,5],[-10,0],[-20,-5],[-1,-16],[-4,-15],[-25,-14],[-10,0],[-1,2],[5,2],[-15,3],[-3,5],[-12,2],[-2,0],[19,-14],[4,-3],[4,-5],[0,-2],[-5,-5],[-3,-2],[-10,7],[-24,5],[0,-3],[2,-2],[-3,-10],[-2,-9],[2,-5],[3,-5],[5,-2],[13,0],[-1,-13],[1,-2],[4,-2],[-4,-5],[-1,-5],[1,-17],[2,-7],[2,-3],[5,-4],[3,-5],[13,-7],[2,-8],[0,-5],[-9,-16],[-1,2],[-3,0],[-5,-2],[9,-5],[4,-8],[-4,-2],[14,-2],[-2,-5],[-12,5],[-14,-8],[0,-2],[10,-12],[9,-2],[-1,-5],[1,-10],[5,-12],[-1,-2],[8,-15],[-2,-2],[2,-10],[-3,-12],[10,-12],[-4,-3],[-5,-7],[-5,-12],[2,-2],[-8,-5],[-4,-5],[-3,-12],[0,-5],[-11,-19],[0,-5],[1,-14],[0,-10],[-11,-19],[-7,-5],[-7,-10],[-1,-5],[0,-12],[-4,5],[-13,0],[2,5],[-7,-5],[7,-5],[1,-5],[0,-2],[5,0],[2,-5],[7,7],[-4,-4],[4,-8],[8,-7],[-5,-10],[-3,-4],[-5,2],[3,5],[-3,0],[-5,-5],[-7,0],[0,2],[3,0],[-3,3],[-18,-7],[-4,0],[-6,4],[-14,5],[-15,-2],[0,2],[5,3],[4,7],[-5,-5],[-4,0],[-3,0],[-2,-2],[0,-5],[4,2],[-2,-7],[2,0],[-2,0],[2,-2],[-14,-8],[-5,-7],[-3,2],[8,8],[0,2],[-3,10],[-8,9],[-5,10],[2,-10],[3,-7],[-2,-5],[0,-2],[3,0],[0,-2],[-9,-10],[-15,-3],[6,10],[-6,0],[-2,0],[2,-5],[-7,3],[-3,-5],[-4,-3],[-8,3],[-33,-3],[-17,-7],[-5,-5],[-2,5],[-3,0],[-5,-5],[0,-4],[5,2],[8,-5],[0,-2],[-5,-3],[-1,-9],[-9,-3],[-8,0],[-3,-2],[-2,-7],[-18,2],[-2,7],[-1,0],[-2,-9],[-2,-3],[-5,-5],[-3,0],[7,-4],[-2,-3],[-20,-5],[-2,-5],[4,-2],[-4,-2],[-18,-5],[-20,0],[0,2],[5,3],[-2,4],[5,0],[4,5],[-4,0],[4,5],[-2,3],[-3,-3],[-12,3],[-2,2],[-23,-5],[13,-2],[4,-3],[-4,-7],[9,0],[-2,-2],[3,-3],[-5,-2],[7,0],[-5,-5],[2,-2],[-9,-12],[-10,-3],[-5,-5],[-3,5],[-3,0],[3,-2],[-2,-5],[-1,0],[-2,5],[-12,2],[2,-2],[5,-3],[3,3],[0,-3],[-3,-2],[-3,-7],[1,-10],[-6,7],[-12,0],[-20,0],[5,-2],[7,0],[0,-3],[-2,0],[4,-2],[-4,-2],[0,-5],[-6,0],[-5,2],[-14,3],[-6,-10],[-7,-3],[0,-2],[-10,5],[-13,-3],[-9,3],[2,-3],[-2,-2],[-3,-5],[-8,0],[0,-2],[-2,0],[-3,-5],[-7,0],[-2,5],[-5,-3],[0,-2],[-8,-5],[-5,0],[5,7],[-5,-2],[3,7],[7,5],[-2,0],[-11,-10],[-2,3],[2,9],[-7,3],[-3,0],[2,-5],[-17,-2],[-2,-5],[-3,0],[-5,-5],[-3,0],[0,2],[-5,5],[-10,-9],[3,-3],[-12,-5],[0,3],[-1,0],[-7,-3],[2,5],[-4,5],[7,2],[8,8],[10,2],[10,10],[12,7],[-7,0],[-31,-15],[-12,0],[10,5],[3,5],[27,12],[3,5],[22,5],[3,10],[-3,0],[-5,-3],[-7,5],[0,5],[-5,2],[0,-7],[2,-2],[-13,-8],[-40,-7],[-10,-5],[-2,-5],[-15,-4],[-7,0],[-8,0],[-7,-5],[0,2],[4,5],[13,5],[-2,7],[-5,0],[2,2],[10,0],[12,10],[-7,0],[3,5],[15,7],[-1,-5],[5,3],[1,2],[2,5],[10,-2],[0,2],[-3,0],[0,2],[10,8],[1,4],[12,0],[15,8],[0,2],[-12,-2],[-18,-5],[-5,-5],[-8,-2],[1,0],[-5,-5],[-1,0],[0,5],[-2,0],[-3,-3],[-9,-2],[-11,-7],[-4,2],[-6,-5],[-10,-5],[1,3],[-15,7],[5,2],[2,5],[-2,7],[-6,3],[-7,-7],[-11,-8],[-2,3],[3,7],[-1,2],[-9,3],[2,7],[-3,0],[24,7],[-1,5],[-5,5],[-3,0],[0,2],[8,3],[-2,5],[23,9],[17,3],[7,5],[3,7],[2,0],[0,-5],[1,-2],[4,0],[0,2],[3,14],[5,-2],[18,0],[-3,5],[5,2],[-33,0],[3,-7],[-2,-2],[-3,4],[-5,3],[-5,0],[-27,-7],[-5,4],[-3,-2],[-6,5],[-5,-3],[0,-2],[6,0],[0,-2],[-16,2],[3,-2],[-15,-3],[-3,0],[-4,12],[5,5],[-1,3],[1,2],[7,2],[-2,-2],[7,-5],[2,3],[0,4],[1,3],[-3,0],[2,5],[8,0],[7,9],[18,5],[1,-2],[-1,-12],[11,2],[10,7],[0,5],[-3,5],[8,0],[-1,-2],[1,-13],[10,-2],[14,-2],[6,7],[4,0],[-4,-3],[4,-2],[11,2],[-1,3],[-20,2],[-2,8],[5,-5],[3,2],[-5,3],[5,2],[-1,5],[1,12],[-3,2],[-13,3],[-4,2],[5,5],[12,0],[17,7],[8,5],[12,-2],[-2,4],[-2,0],[-5,0],[0,3],[0,5],[2,2],[-2,5],[5,5],[5,2],[20,-2],[5,-3],[5,5],[28,0],[37,12],[2,-2],[5,0],[8,7],[35,5],[2,0],[-22,5],[-10,0],[-5,0],[0,2],[2,3],[0,4],[0,3],[-4,2],[5,7],[-13,-7],[-2,-5],[-5,-7],[-15,-19],[-16,-3],[-7,-4],[-7,2],[9,7],[0,3],[-17,-8],[-8,0],[-8,3],[-2,2],[-5,3],[-3,2],[1,2],[-1,3],[-7,0],[5,-7],[-23,-8],[-4,-7],[-3,0],[-5,-2],[-30,-3],[10,8],[10,2],[33,27],[-1,4],[6,3],[9,0],[6,2],[4,7],[-2,5],[7,7],[3,8],[0,5],[10,7],[3,5],[-21,2],[14,17],[-1,2],[21,32],[4,0],[15,-10],[10,5],[5,-3],[0,3],[-10,5],[0,2],[10,3],[11,-5],[-8,5],[7,0],[3,2],[2,0],[0,-2],[1,-3],[5,-2],[-3,7],[5,7],[7,3],[-7,-3],[-20,3],[15,4],[-5,0],[0,3],[8,2],[0,3],[-13,2],[-10,-5],[-53,-2],[-8,-5],[-10,0],[-4,0],[-6,7],[3,5],[0,3],[-3,0],[-4,-10],[-1,-3],[-2,0],[-3,3],[3,7],[-2,10],[4,2],[3,-2],[3,5],[-6,4],[8,8],[-12,-3],[2,-2],[0,-5],[-2,-5],[-1,0],[-4,3],[2,9],[0,3],[-2,0],[-5,-3],[-10,-17],[-11,-2],[-5,5],[-9,0],[-1,0],[1,9],[9,3],[8,5],[0,2],[-5,0],[0,2],[3,0],[0,3],[-5,0],[-5,-7],[-3,2],[0,2],[5,5],[-5,-2],[-5,2],[-3,-5],[1,-4],[-6,-3],[-9,0],[-6,7],[-2,0],[-12,0],[-1,3],[-7,-3],[3,8],[4,2],[11,-2],[4,2],[0,3],[-4,2],[-3,2],[12,-2],[1,2],[-16,3],[-4,5],[0,4],[-3,3],[-7,0],[-1,0],[3,5],[12,-3],[-2,5],[8,0],[7,-2],[3,-5],[7,5],[-13,9],[6,0],[14,0],[10,5],[8,-2],[20,-3],[-2,3],[-11,0],[-22,9],[-2,10],[4,12],[-2,5],[20,7],[7,-2],[30,5],[-9,4],[4,0],[-2,5],[3,3],[5,5],[-5,0],[4,2],[0,5],[-4,-3],[-5,3],[-23,0],[-17,-7],[-8,-3],[-5,5],[2,2],[0,5],[3,3],[0,7],[-2,0]],[[7129,6790],[-38,-36],[-17,-14],[-13,-5],[11,7],[2,5],[8,2],[37,34],[10,7]],[[3689,6032],[0,-7],[-2,-2],[4,-3],[0,-2],[0,-3],[3,-7],[5,-2],[-3,9],[4,-7],[2,-10],[0,-19],[3,-5],[-3,-17],[5,-19],[-2,-41],[-24,-41],[-2,-24],[2,-17],[0,-17],[-5,-7],[0,-3],[1,0],[0,-2],[-3,-5],[-2,0],[0,-5],[-10,3],[0,-3],[-1,-5],[1,-2],[10,2],[0,-4],[-3,-5],[-5,-3],[-3,-4],[-4,0],[2,-3],[-2,-5],[4,-2],[-4,-2],[2,-3],[-10,-5],[2,-5],[-2,-4],[7,4],[-4,-12],[-3,-2],[-7,5],[-11,2],[1,7],[2,0],[-8,8],[1,5],[-6,-5],[-2,2],[2,3],[-4,-3],[-3,3],[-10,2],[-5,5],[-5,0],[-2,2],[-5,3],[2,2],[-10,5],[2,5],[-4,2],[4,12],[3,-2],[8,5],[4,4],[5,5],[-22,5],[-2,2],[0,5],[-13,-2],[0,2],[-6,3],[6,2],[3,3],[0,4],[-1,3],[6,2],[5,3],[-1,4],[-4,3],[7,2],[-2,3],[5,9],[-8,5],[-25,-7],[0,2],[2,5],[-2,3],[-3,7],[12,2],[1,5],[-1,0],[0,2],[13,8],[1,5],[-5,2],[-3,10],[-6,0],[-5,4],[-7,0],[0,5],[-5,0],[5,5],[-3,0],[1,5],[-1,5],[0,2],[-4,3],[0,2],[7,0],[10,5],[6,2],[0,3],[-9,4],[0,5],[-4,-2],[-1,2],[5,5],[-4,3],[-10,-3],[2,3],[-2,7],[0,2],[4,-2],[3,2],[2,0],[3,7],[7,3],[0,5],[3,5],[-3,2],[1,7],[2,3],[6,2],[-1,12],[1,0],[0,-2],[4,0],[5,-3],[3,0],[3,7],[0,3],[0,2],[5,0],[12,5],[18,5],[5,2],[0,5],[12,12],[8,3],[12,-5],[3,-3],[5,-9],[9,19],[-2,5],[2,5],[0,5],[-5,7],[3,7],[0,5],[0,2],[5,8],[0,4],[-2,3],[-1,7],[1,2],[2,3],[10,2],[7,-7],[-2,-7],[3,-5],[0,-5],[2,-22],[0,-7],[-5,-22],[0,-7]],[[4171,6696],[-5,0],[0,2],[2,5],[3,0],[2,-2],[0,-3],[-2,-2]],[[6091,4306],[5,-2],[19,0],[1,2],[2,5],[5,0],[-2,10],[7,2],[7,0],[3,-2],[3,-12],[-1,-5],[-9,-3],[-10,0],[-1,0],[0,-2],[20,-12],[5,2],[5,5],[1,-12],[2,-14],[11,-5],[15,5],[5,-3],[22,7],[15,8],[7,2],[20,-7],[10,5],[10,-5],[1,5],[9,0],[1,-5],[4,0],[0,-5],[1,-5],[4,-5],[19,3],[4,-3],[15,0],[6,0],[2,0],[2,0],[1,0],[9,-9],[3,-3],[35,15],[8,-3],[10,0],[-8,-12],[2,0],[0,-7],[1,0],[0,5],[2,0],[2,-5],[-5,-2],[1,-3],[-3,-7],[0,-5],[-2,-2],[4,-12],[3,0],[8,-3],[5,0],[4,7],[5,3],[3,5],[13,5],[13,7],[10,-3],[-1,-2],[3,-2],[8,2],[4,2],[-2,3],[12,12],[5,2],[0,3],[1,0],[-1,4],[5,0],[-2,-4],[-7,-10],[5,-17],[4,3],[-5,-13],[0,-2],[0,-5],[-9,-19],[-18,-10],[-3,0],[-5,5],[-10,0],[-7,5],[-3,-3],[-7,0],[-6,0],[-12,-4],[-35,0],[-15,-8],[-15,3],[-12,0],[-8,-3],[-13,-7],[-12,3],[-6,-5],[-5,0],[-10,-3],[-7,3],[-40,-3],[3,8],[-1,9],[1,7],[-3,13],[-5,4],[-25,3],[-5,7],[-5,2],[-7,0],[-10,8],[0,2],[-18,-2],[-11,2],[-4,5],[-3,-2],[-17,0],[0,-3],[-5,0],[-10,10],[-15,0],[-6,2],[-5,3],[-9,-5],[-11,2],[-5,-2],[-2,2],[-13,0],[-2,5],[-5,2],[-5,5],[2,3],[-2,2],[5,2],[-2,5],[2,5],[-2,3],[5,14],[-1,5],[3,12],[-2,2],[0,3],[0,2],[2,5],[0,7],[3,7],[2,-14],[2,-7],[3,0],[0,-3],[3,-2],[7,0],[5,7],[0,5],[-3,14],[1,3],[-1,7],[3,5],[3,5],[5,-5],[-1,-7],[1,-8],[0,-7],[4,-9],[3,-3],[13,0]],[[4505,5033],[-1,0],[-2,2],[3,0],[0,-2]],[[7844,4318],[-15,-14],[-35,-24],[-8,-12],[-5,-13],[-4,0],[-11,0],[-4,-2],[-6,-12],[-2,-24],[8,-10],[5,-7],[12,-15],[3,-9],[5,-5],[-11,0],[-4,5],[-8,-3],[-8,-2],[-9,-7],[-10,7],[-6,2],[-7,0],[-7,-2],[-5,-10],[-3,-7],[0,-12],[-2,0],[-1,-7],[-12,0],[-5,-7],[-12,-8],[-3,0],[-3,3],[0,-5],[-5,-5],[-12,-2],[-6,-5],[-15,2],[-14,-5],[-10,-9],[-3,-8],[0,-4],[3,-8],[-15,0],[0,5],[-3,12],[-2,5],[-13,3],[-20,-5],[-7,0],[-18,12],[-11,2],[-5,3],[-9,7],[-5,24],[-8,10],[-2,4],[2,3],[-3,7],[0,12],[-5,12],[0,10],[1,2],[14,-14],[6,0],[7,5],[5,5],[8,19],[4,5],[3,-3],[13,5],[17,-2],[13,-8],[7,3],[6,10],[4,7],[1,26],[-3,15],[3,-3],[9,-4],[13,-3],[32,-2],[28,-5],[38,7],[13,10],[22,2],[32,15],[13,9],[7,10],[5,0],[4,0],[20,14],[39,20],[-2,-3],[-2,-9],[-5,0],[-16,-15]],[[4168,9279],[13,-7],[13,0],[22,-15],[-8,-9],[-10,-17],[0,-3],[6,-9],[5,-12],[4,-8],[-2,-16],[2,-5],[-10,-15],[-7,-5],[-2,-4],[-5,0],[-10,2],[-11,-5],[-14,-12],[-8,-14],[3,-15],[9,-5],[16,-2],[10,-10],[5,-17],[-11,-7],[-35,-7],[-10,-10],[-2,-5],[2,-4],[-4,-3],[-3,3],[2,4],[-2,3],[-3,2],[-9,-5],[0,-2],[7,-5],[20,-2],[2,-5],[-2,-3],[-8,-7],[6,-12],[0,-5],[-1,-2],[-20,-5],[-5,2],[-10,8],[-5,0],[2,-3],[-4,0],[0,-5],[-3,-9],[2,-3],[5,-2],[1,2],[-1,3],[6,2],[3,-7],[7,-5],[3,-2],[10,2],[12,-14],[-17,-12],[-8,-12],[-10,-13],[2,-28],[-3,0],[-4,2],[-1,5],[-9,14],[0,5],[7,10],[-5,2],[-2,3],[2,4],[-12,10],[-3,10],[-7,7],[-1,14],[-5,3],[0,2],[8,5],[7,-5],[6,5],[2,-2],[2,0],[3,4],[-7,13],[-13,4],[-5,3],[-10,2],[-8,5],[35,-10],[-4,5],[-11,7],[-4,8],[14,0],[1,5],[-3,2],[-10,-2],[-3,4],[3,5],[0,3],[-2,2],[-3,0],[-8,-7],[-24,7],[-3,-2],[-12,4],[-8,-2],[-12,0],[0,-2],[4,-3],[-10,3],[-2,2],[-2,7],[5,0],[4,5],[-9,-2],[0,7],[-14,12],[6,2],[0,3],[-8,0],[-3,-5],[-2,0],[-3,7],[0,3],[6,0],[5,2],[7,2],[1,3],[0,5],[-1,0],[0,2],[0,5],[-7,12],[-3,5],[-8,-3],[-2,0],[2,5],[8,3],[2,5],[-4,9],[-6,7],[-9,3],[-18,5],[0,2],[27,-2],[-4,4],[-15,5],[-3,5],[-12,3],[-1,2],[25,-2],[21,4],[0,-2],[-6,0],[6,-7],[5,-3],[5,3],[-7,5],[2,2],[10,-2],[17,7],[1,2],[4,10],[-5,7],[8,-2],[7,5],[6,-3],[5,7],[0,10],[-5,7],[-30,7],[-3,3],[-2,5],[22,-10],[5,2],[25,-4],[3,-3],[7,0],[22,7],[1,-2],[-6,-10],[1,-2],[-1,-2],[-5,2],[1,2],[-5,0],[-5,-2],[12,-19],[-2,-5],[-10,0],[-5,-5],[-3,0],[0,-2],[10,0],[8,4],[4,0],[3,-12],[-13,-2],[-4,-2],[4,-3],[11,3],[2,-3],[5,-7],[-2,-7],[5,4],[9,13],[-4,7],[5,9],[12,8],[2,5],[-7,16],[2,3],[1,0],[12,-7],[-2,-8],[7,-12],[3,-9],[0,-10],[-3,-5],[-10,0],[-2,-7],[-8,-7],[8,2],[3,2],[2,3],[2,2],[5,-2],[1,-5],[-5,2],[0,-2],[9,-5],[5,15],[1,5],[-8,26],[0,12],[-3,12],[-7,5],[-20,-5],[-3,3],[3,4],[23,15],[27,17],[13,7],[14,0]],[[6813,4523],[-2,-2],[2,-12],[-5,-2],[0,-10],[-5,-7],[-3,-12],[-2,-3],[-3,-10],[-5,0],[0,-4],[-2,-3],[-5,-9],[7,-5],[-4,-5],[2,-5],[-8,3],[-9,-3],[-10,-7],[-11,-22],[-5,-7],[-9,-5],[-8,7],[-3,8],[3,4],[3,17],[2,10],[-8,12],[0,2],[-5,5],[15,10],[0,2],[5,15],[6,2],[10,15],[10,5],[27,16],[10,-2],[5,10],[3,-3],[2,-5]],[[6743,4569],[0,-2],[2,0],[1,-3],[5,5],[2,0],[-3,-5],[1,3],[2,-12],[-3,0],[3,-5],[-8,-2],[3,4],[-10,5],[3,3],[-8,0],[5,7],[0,2],[2,0],[6,5],[4,3],[0,-3],[-7,-5]],[[1027,9393],[-10,-5],[-8,0],[-2,-5],[-3,7],[5,0],[3,3],[10,12],[5,4],[8,5],[10,0],[-6,-12],[-7,-2],[-5,-7]],[[3654,5687],[3,0],[2,-2],[0,-10],[2,0],[-2,2],[3,3],[0,-5],[4,0],[3,-2],[2,4],[8,-7],[0,3],[5,-3],[-2,-5],[5,-7],[0,-2],[0,-8],[5,10],[-1,2],[1,3],[7,-3],[1,3],[2,-3],[-2,-2],[5,-2],[2,2],[2,-2],[-2,-5],[-2,-5],[-1,2],[-5,-17],[3,0],[-2,3],[4,2],[1,-2],[2,0],[-2,-5],[2,2],[2,-2],[3,2],[5,0],[7,-4],[-2,-3],[-8,3],[-2,0],[-2,-10],[-1,-2],[0,-5],[-10,0],[-2,0],[2,-3],[5,0],[5,-2],[8,2],[3,0],[-5,-7],[9,-2],[0,-5],[3,2],[3,-5],[4,-2],[-7,-2],[2,-5],[-4,0],[-1,-3],[1,-2],[0,2],[5,-9],[2,-8],[5,-12],[3,-19],[4,-5],[1,-5],[7,-7],[-3,-14],[-9,-20],[-1,-2],[-7,-2],[-5,-13],[-5,-4],[-3,-10],[0,-14],[3,-15],[13,-14],[-6,-22],[0,-7],[1,-8],[2,3],[2,-3],[-2,-2],[-2,0],[-3,-7],[2,-5],[-2,0],[3,-5],[-3,-2],[-2,-12],[2,-17],[-5,-17],[0,-20],[-3,-16],[1,-5],[-6,-29],[0,-7],[5,-8],[-4,-2],[-5,-5],[-1,-7],[0,-7],[1,-5],[-1,-10],[-9,-7],[0,-5],[-1,2],[0,3],[-2,2],[-10,-2],[-15,19],[-10,5],[0,-2],[-11,4],[-4,-2],[-5,-7],[-5,0],[-11,14],[-2,-2],[-3,5],[-5,0],[3,0],[-2,-5],[4,-3],[6,-2],[0,-2],[-6,-8],[-4,-7],[0,-12],[4,-12],[-2,-5],[-2,-7],[2,0],[-2,-3],[-3,3],[-18,-24],[-2,0],[-5,-5],[-7,7],[0,-5],[-6,8],[-9,2],[-8,-5],[-3,-5],[2,-5],[-4,-2],[-1,2],[1,5],[-6,3],[3,5],[0,7],[-3,2],[-4,0],[-3,24],[-3,-2],[-7,2],[3,5],[-3,3],[-3,-3],[-2,10],[-3,0],[-2,0],[0,12],[-3,2],[-2,0],[2,-2],[-2,0],[-2,7],[-3,3],[-2,2],[2,5],[8,9],[0,5],[-1,5],[0,5],[-7,5],[-2,5],[7,12],[-3,9],[8,15],[3,12],[0,5],[-3,26],[0,12],[2,0],[3,-2],[8,-12],[4,0],[5,0],[-12,5],[2,4],[6,10],[-5,-5],[5,12],[2,10],[-2,7],[-5,5],[-5,3],[-5,0],[-3,-3],[0,-2],[3,2],[-3,-5],[0,-5],[-2,3],[2,2],[-8,8],[1,7],[-1,12],[3,7],[-3,5],[-2,-3],[3,5],[12,3],[3,9],[-5,15],[0,14],[4,10],[0,7],[-7,10],[-3,5],[-2,-3],[-3,3],[0,17],[-2,12],[-2,5],[-6,4],[-4,17],[-3,5],[-3,-2],[-9,-5],[-3,2],[3,8],[-5,2],[-1,-2],[-4,-13],[-1,8],[-2,9],[5,3],[5,12],[-5,2],[-3,7],[-4,0],[15,37],[-1,7],[-5,5],[0,5],[3,7],[2,0],[0,-5],[3,0],[2,-2],[-2,-10],[8,-10],[5,-5],[29,-4],[6,0],[14,4],[5,8],[1,5],[12,4],[8,-2],[10,10],[12,16],[-2,0],[7,5],[3,5],[8,10],[4,5],[16,4],[5,5],[0,-2],[4,7],[0,12],[1,3],[10,4],[2,-2]],[[4718,4965],[-3,0],[-9,-7],[-1,-7],[3,0],[-8,-15],[-5,-14],[-19,-24],[-19,-41],[-5,-3],[-5,-9],[0,-3],[1,-10],[-3,-4],[-7,-29],[-10,-20],[-1,-7],[1,-29],[2,-5],[12,-7],[6,-2],[5,-5],[2,-7],[-3,4],[-4,-7],[0,5],[-1,0],[-4,0],[2,-2],[-3,-5],[1,-8],[5,-4],[2,0],[3,0],[0,-3],[-3,0],[3,-7],[8,-5],[0,-9],[-1,2],[-2,-5],[7,-2],[1,-8],[-3,3],[-6,-5],[0,-2],[-2,0],[2,-5],[-5,0],[-12,-7],[-2,-5],[-8,-27],[-3,-2],[5,-12],[1,-17],[-6,-7],[-4,2],[-6,7],[-4,3],[-5,-3],[-16,10],[-5,0],[-12,-7],[-2,2],[-1,0],[-4,2],[-10,3],[-3,5],[-13,7],[-2,0],[-13,2],[-17,39],[-3,5],[-15,17],[-12,9],[-13,8],[-7,2],[-18,-2],[-7,-3],[-8,0],[-10,10],[-18,7],[-25,24],[-20,7],[-28,22],[-5,10],[-10,9],[-4,5],[-20,3],[-3,-3],[-3,5],[-2,7],[-5,5],[-5,3],[-13,2],[-33,-2],[-4,2],[-10,17],[-10,2],[-5,5],[-5,10],[0,10],[-5,9],[0,3],[5,2],[4,14],[-4,8],[5,9],[2,12],[0,3],[-2,2],[5,3],[10,9],[5,-2],[7,7],[2,7],[6,-2],[5,5],[-1,12],[1,2],[2,-2],[3,0],[5,-15],[5,-9],[13,-12],[7,0],[15,7],[5,5],[2,5],[-4,9],[7,7],[-2,0],[4,5],[18,-2],[3,0],[2,7],[2,-2],[11,5],[2,-5],[7,-8],[0,-7],[3,-9],[20,2],[5,-5],[2,-7],[16,-15],[10,-2],[0,-2],[13,-3],[19,7],[6,8],[12,2],[2,3],[10,-8],[11,3],[20,-3],[19,3],[8,5],[5,-3],[8,0],[20,10],[7,5],[10,14],[11,0],[19,7],[5,-2],[5,-5],[13,-2],[3,-5],[4,0],[15,7],[10,19],[0,5],[1,-2],[0,-7],[7,-3],[18,5],[22,17],[20,-5],[-2,-5]],[[6186,4765],[2,-5],[0,-5],[-4,0],[-1,-2],[-2,-7],[-5,-8],[-7,-2],[4,12],[1,2],[-1,3],[0,7],[-4,0],[0,7],[12,12],[-2,-9],[7,-5]],[[4543,5038],[-6,0],[-2,7],[7,-3],[1,-4]],[[6015,5120],[3,-10],[4,-5],[6,-5],[8,-7],[4,0],[0,-5],[3,3],[2,-3],[6,-2],[2,0],[2,0],[3,2],[3,-2],[4,-3],[1,-7],[10,-7],[24,-5],[3,0],[2,5],[5,-2],[10,0],[15,-8],[-5,-2],[-2,-7],[2,-3],[16,-19],[-3,-2],[-3,-10],[-2,-7],[3,-8],[-1,0],[3,-7],[0,-9],[7,-13],[1,-7],[-1,-5],[0,-2],[13,-10],[1,-7],[9,0],[5,-2],[10,-3],[18,5],[-2,-19],[2,-5],[-3,-17],[-10,-7],[-5,0],[-5,12],[-4,2],[-5,-2],[-1,-3],[1,-2],[0,-2],[-1,-3],[-4,0],[-5,7],[-4,8],[3,2],[-3,5],[-4,2],[0,5],[-6,3],[-9,-3],[2,3],[0,4],[-3,3],[-2,2],[5,7],[-3,13],[-5,2],[-4,0],[2,-5],[-3,3],[0,4],[5,8],[-2,2],[-3,-2],[0,-3],[-4,0],[0,5],[-1,0],[3,7],[-7,5],[-8,0],[5,3],[2,2],[-2,2],[0,5],[-3,5],[-22,-2],[-12,4],[-8,-2],[-13,2],[-10,0],[-7,12],[-3,-2],[8,12],[-2,3],[2,4],[-5,8],[-2,2],[-10,2],[-5,5],[-1,8],[-8,7],[0,5],[-12,7],[-7,7],[-3,5],[-20,17],[-10,5],[-12,0],[-5,4],[-11,5],[-2,0],[0,-2],[3,-3],[2,-2],[0,-2],[-2,0],[-20,-5],[-5,-3],[2,8],[5,4],[28,15],[2,5],[7,0],[1,5],[-1,4],[6,5],[12,0],[17,7],[13,-9],[-2,-5],[2,-2],[8,-5],[2,-12]],[[979,9709],[-4,2],[5,3],[0,2],[-10,0],[-8,5],[-10,0],[-5,0],[0,5],[-5,-3],[-6,5],[6,5],[4,0],[-2,2],[10,3],[11,5],[-21,-3],[2,3],[5,0],[0,2],[-5,0],[5,5],[-10,-5],[-5,10],[0,2],[-4,3],[2,4],[2,3],[0,2],[3,3],[-3,2],[15,2],[-5,3],[-2,2],[2,5],[3,2],[8,-2],[3,0],[9,-2],[0,-3],[-5,0],[1,-2],[5,-7],[2,-8],[5,-7],[0,5],[-5,10],[2,0],[1,4],[12,3],[8,-5],[2,-2],[5,4],[-5,3],[-3,7],[-4,0],[-5,7],[4,3],[-2,2],[-3,3],[16,12],[4,0],[3,2],[10,0],[10,5],[7,5],[28,17],[13,12],[5,0],[5,-8],[7,-14],[-3,-2],[-5,-10],[3,-3],[5,-2],[-10,-7],[-3,-3],[0,-2],[-5,-2],[-2,-5],[-5,0],[0,-8],[-8,0],[3,-4],[13,0],[5,0],[9,7],[6,2],[-3,-7],[2,-2],[-12,-10],[-10,5],[-8,0],[-10,2],[5,-12],[-2,-2],[2,-3],[-12,-2],[-8,-7],[-5,2],[-5,-5],[-12,0],[0,-2],[7,0],[28,7],[5,-5],[0,-5],[2,-2],[-5,-2],[8,-3],[-8,-7],[-4,-2],[-20,4],[-1,-2],[13,-5],[2,-5],[-9,-7],[-6,0],[1,-5],[-3,0],[-5,0],[-7,10],[-1,-3],[1,-2],[4,-5],[-2,0],[-8,3],[-5,12],[-2,5],[3,7],[4,2],[13,3],[0,2],[-17,0],[0,-5],[-11,-9],[5,-10],[10,-7],[-5,-3],[5,-2],[1,-7],[-21,4],[-4,-4],[9,-3],[3,-7],[0,-2],[-8,0],[1,-5],[-11,5],[-2,0],[3,-5],[-8,-8],[3,0],[-16,-12],[-23,22],[-2,3],[-2,2],[5,0],[4,-7],[16,12],[12,2],[-9,5],[9,5],[10,0]],[[3837,9154],[11,-8],[5,-7],[14,-5],[-7,0],[-2,-2],[4,-5],[0,-2],[-5,0],[-7,-8],[3,-4],[5,0],[4,7],[20,5],[-2,4],[-5,3],[0,2],[5,-2],[2,2],[-4,12],[4,-4],[0,12],[3,0],[5,-5],[7,-10],[1,-5],[5,-5],[0,-4],[-6,-5],[-7,-3],[-15,0],[-3,-4],[1,0],[5,0],[0,2],[2,2],[13,-2],[20,-22],[5,-12],[0,-5],[-5,5],[-3,-2],[-2,-3],[7,-12],[0,-12],[-3,-7],[-2,-10],[-8,-12],[-4,-2],[-18,0],[-10,-7],[-10,2],[-15,2],[-5,3],[-8,0],[-13,7],[-4,0],[-1,0],[0,-7],[-10,7],[-10,0],[-2,0],[12,10],[3,2],[-8,10],[-4,2],[-8,-2],[-7,5],[-1,-3],[0,-5],[6,-7],[0,-2],[-6,0],[0,5],[-4,7],[2,7],[-12,5],[-5,5],[4,7],[-4,7],[0,10],[-8,0],[-5,2],[-3,5],[8,2],[2,3],[-9,2],[5,0],[-5,5],[-8,3],[-7,7],[15,-7],[4,0],[-17,12],[-5,2],[13,10],[12,2],[2,-7],[8,-3],[8,3],[17,10],[22,4],[6,5],[10,3],[2,-5],[3,2],[-1,5],[8,-2]],[[2646,5378],[2,-2],[2,2],[1,-2],[-11,-8],[-4,-4],[-3,2],[-2,-7],[7,-3],[13,5],[-3,-10],[-10,-4],[-2,-5],[4,-7],[3,-3],[10,-5],[12,0],[10,8],[15,-8],[5,0],[0,-2],[0,-7],[-2,-3],[2,-5],[-5,-9],[-5,-3],[-2,-2],[0,-5],[2,-2],[-15,-17],[-5,-12],[-2,-12],[-2,0],[-3,-10],[-5,-5],[-15,-12],[-10,-10],[-2,0],[-5,8],[-5,2],[-1,7],[-5,5],[-22,0],[-6,3],[-5,7],[-2,12],[-2,2],[2,10],[-2,5],[-10,7],[-3,2],[-15,-7],[-2,-2],[-3,-7],[-3,-5],[-5,0],[-4,7],[2,2],[-5,5],[-2,-2],[-1,2],[-7,-2],[-5,7],[-2,5],[2,10],[18,12],[9,9],[8,3],[8,9],[2,5],[3,0],[10,10],[7,5],[10,9],[5,0],[15,10],[25,5],[16,7]],[[1562,9999],[55,-8],[4,-2],[-4,0],[4,-3],[-12,-2],[-5,-7],[-7,-3],[12,-4],[8,7],[7,-5],[7,2],[5,-4],[3,2],[-2,-5],[5,-2],[12,5],[1,-3],[0,-2],[-10,-5],[2,-3],[7,-2],[1,0],[-3,7],[12,3],[3,-3],[0,-7],[-13,-5],[-5,-7],[-18,5],[-9,14],[-6,-5],[-10,0],[1,-2],[-5,0],[-1,0],[-2,-2],[-3,0],[-10,0],[-5,2],[-2,5],[0,5],[5,9],[-3,8],[-4,-3],[2,-5],[-7,0],[2,0],[2,-7],[-5,-7],[-5,2],[-5,5],[-4,10],[5,7],[-1,12],[1,3]],[[8224,1902],[9,-7],[1,-5],[14,-15],[1,-2],[0,-3],[-8,8],[0,2],[-5,2],[-5,5],[0,3],[-5,2],[-2,5],[-1,2],[-7,-4],[2,7],[6,0]],[[8239,1875],[17,-7],[0,-2],[-3,0],[0,-3],[0,-5],[6,8],[4,-3],[-4,-2],[-6,-10],[-17,22],[0,2],[-3,10],[6,-10]],[[8198,1914],[7,-7],[3,0],[2,-5],[3,0],[0,2],[3,-2],[0,-5],[-1,0],[-17,12],[-3,0],[-2,-2],[-7,7],[-1,7],[1,2],[7,10],[-3,-12],[8,-7]],[[8201,1936],[4,0],[-2,-3],[-3,0],[-5,5],[-2,10],[0,9],[3,10],[5,5],[-3,-7],[-2,-8],[0,-5],[7,-4],[-2,-8],[0,-4]],[[7463,6872],[3,-2],[-11,5],[-60,12],[-27,9],[-5,5],[-5,8],[-3,14],[3,0],[5,-17],[5,-5],[7,-5],[75,-19],[13,-5]],[[4590,6385],[-5,0],[-3,2],[0,5],[3,-5],[3,0],[2,-2]],[[6321,4690],[-4,-10],[4,-2],[0,-2],[-2,0],[0,-3],[2,0],[-2,0],[-7,-10],[-5,-4],[-8,0],[-8,4],[2,13],[8,7],[-3,0],[6,9],[10,5],[-3,-5],[6,-2],[2,5],[0,2],[3,0],[-1,-7]],[[6645,4374],[-3,-7],[1,-13],[-5,-7],[-5,-12],[0,-7],[10,-17],[-3,-5],[7,-9],[-2,-5],[-3,2],[-5,-2],[-4,-5],[0,-7],[2,2],[0,-2],[-5,-5],[0,5],[-5,2],[-3,5],[0,2],[3,3],[-2,2],[4,0],[-2,10],[0,7],[0,2],[-7,5],[0,5],[4,7],[5,3],[1,12],[4,7],[1,7],[0,12],[2,3],[2,-3],[6,8],[2,-3],[0,-2]],[[4833,6230],[8,-2],[-8,-3],[-9,3],[-5,-3],[-6,3],[1,2],[4,-2],[1,2],[0,3],[2,0],[12,-3]],[[6602,4671],[6,-5],[0,-5],[2,2],[3,0],[0,-9],[-1,-5],[3,2],[-2,-2],[-8,0],[-2,-5],[-5,0],[-3,3],[-3,2],[3,5],[0,2],[3,10],[0,5],[-5,0],[-5,9],[0,3],[2,-3],[15,-7],[0,-2],[-3,0]],[[6638,4615],[-10,-12],[-8,0],[-5,5],[-10,-7],[-2,-3],[2,-5],[-3,0],[0,-2],[0,-7],[-5,2],[-4,7],[2,13],[2,-3],[3,5],[5,-2],[5,9],[7,7],[16,12],[20,5],[2,-5],[8,-2],[4,-5],[-29,-12]],[[6374,4685],[-3,-19],[-5,-12],[-4,-3],[-6,-7],[-7,-2],[-3,5],[-2,7],[-5,5],[0,2],[-2,5],[0,5],[-1,5],[-5,4],[1,3],[2,-3],[8,10],[10,10],[5,7],[5,2],[7,-5],[3,-4],[2,-15]],[[6356,4511],[-4,-9],[-3,0],[-15,5],[8,0],[5,7],[-1,9],[-2,0],[0,5],[-8,5],[1,3],[7,-3],[5,-5],[5,-7],[2,-5],[0,-5]],[[6341,4596],[1,-5],[-3,-2],[2,-5],[-5,-7],[-5,4],[-12,12],[2,3],[-5,0],[1,10],[9,4],[6,-9],[9,-5]],[[6600,4845],[2,-3],[0,3],[-4,7],[4,-3],[3,5],[0,-5],[13,-2],[-6,-2],[0,-3],[3,-5],[2,0],[1,-2],[-1,-3],[-4,0],[-6,0],[-15,-7],[-5,-7],[-4,-2],[-11,2],[-5,10],[-8,4],[-9,-2],[-5,-2],[-1,-3],[-2,3],[-2,-3],[-3,10],[0,5],[2,5],[8,2],[3,5],[19,5],[11,0],[20,-12]],[[6494,4813],[-19,-14],[-13,-3],[-12,-9],[-13,0],[-1,4],[1,3],[5,7],[5,10],[5,5],[22,-3],[8,5],[5,7],[13,3],[-6,-15]],[[6452,4637],[0,-3],[-3,3],[-7,-3],[-15,-12],[-6,-12],[-14,-4],[-6,0],[-4,4],[2,0],[3,5],[7,-2],[7,2],[1,7],[-1,-2],[0,5],[20,12],[-4,5],[8,5],[7,-8],[5,-2]],[[6517,4564],[2,-4],[-2,0],[-3,2],[-4,-5],[-8,0],[-3,-7],[0,-5],[-2,-2],[-7,0],[-3,7],[-2,2],[0,3],[-1,2],[1,7],[2,-2],[2,2],[8,-7],[5,5],[5,0],[-3,2],[1,5],[-5,3],[0,2],[5,0],[12,-10]],[[6169,4828],[5,-8],[0,-9],[-14,-20],[-4,-2],[-1,0],[0,22],[1,7],[4,2],[1,0],[2,0],[0,3],[-2,0],[0,2],[2,0],[5,0],[0,3],[1,0]],[[4555,6426],[-3,0],[-7,9],[7,-4],[3,-5]],[[6183,4601],[3,0],[10,5],[3,-5],[0,-15],[-11,-5],[-20,-2],[-5,-2],[0,12],[1,2],[-1,2],[3,8],[5,-5],[3,2],[2,-7],[3,-2],[5,0],[2,0],[-2,7],[-5,0],[-3,7],[2,3],[5,-5]],[[6332,4784],[5,-10],[2,5],[2,0],[10,-5],[0,-4],[-4,-3],[-5,0],[-1,-5],[-15,-2],[0,7],[1,0],[2,5],[-2,2],[-1,0],[0,5],[6,5]],[[6189,4712],[7,-3],[0,-7],[0,-10],[0,3],[-2,0],[0,-5],[-3,-2],[-2,2],[2,0],[-3,2],[-4,-2],[0,5],[-1,-3],[-4,0],[-1,-2],[0,5],[1,0],[-1,2],[3,7],[0,3],[8,5]],[[6268,4758],[-14,-10],[2,10],[-5,0],[3,7],[-1,0],[3,2],[2,3],[0,7],[0,7],[5,0],[3,-5],[2,-7],[-4,-5],[4,-5],[0,-4]],[[6249,4881],[5,0],[12,0],[2,-3],[-4,-14],[7,-5],[-2,-2],[0,-3],[-1,-7],[5,0],[0,-5],[-5,-10],[0,-4],[-7,7],[-5,12],[-3,0],[-9,12],[-3,0],[-2,5],[-8,12],[-3,-3],[0,5],[-7,8],[3,2],[-1,5],[1,2],[14,7],[1,-2],[0,-2],[7,-5],[2,-7],[1,-5]],[[6288,4818],[1,-2],[2,2],[3,0],[5,-5],[2,5],[15,-7],[-2,0],[2,-3],[1,-5],[-5,-7],[0,-5],[-10,0],[-8,5],[-3,5],[-3,2],[-5,8],[-9,5],[-3,7],[0,2],[3,0],[9,0],[3,-2],[-2,-3],[4,-2]],[[6218,4673],[5,-5],[1,3],[9,-12],[1,-8],[0,-2],[-8,-12],[-7,19],[2,5],[-7,7],[2,3],[-2,2],[4,0]],[[6452,5042],[7,-9],[1,5],[2,2],[2,-2],[3,-5],[-2,-3],[-1,-9],[-4,0],[4,-5],[1,0],[-1,-5],[0,-7],[1,-19],[2,-10],[-3,0],[-5,-5],[-2,-5],[2,-9],[-12,-5],[-2,-8],[-3,-2],[-8,2],[-7,8],[-1,7],[-4,-2],[0,7],[-3,-3],[0,3],[0,2],[3,5],[5,2],[2,3],[5,0],[3,10],[2,0],[0,9],[0,3],[-2,0],[-5,4],[2,5],[-3,5],[-10,7],[-7,10],[-2,5],[4,9],[24,5],[10,-2],[2,-3]],[[3935,3913],[10,-15],[10,-7],[2,-2],[-15,-15],[-2,-10],[-2,0],[2,8],[-5,-3],[-8,-12],[-2,-7],[-2,2],[-1,12],[-4,8],[-6,0],[-7,-5],[-3,0],[-2,5],[0,31],[3,5],[5,5],[22,-5],[5,5]],[[4309,5069],[-5,0],[0,2],[3,5],[5,-2],[-3,-5]],[[6509,5221],[-5,-10],[6,-7],[9,-5],[5,-9],[6,-5],[-1,-3],[0,-2],[3,-2],[0,-5],[3,0],[0,-5],[2,-5],[5,-7],[0,-7],[-2,-3],[-5,3],[-3,0],[-5,4],[2,0],[-2,3],[2,7],[-4,7],[-3,0],[-8,-2],[18,-22],[0,-5],[-10,-4],[-13,0],[-12,2],[-10,7],[-20,3],[-7,12],[-5,2],[2,3],[10,2],[3,5],[9,2],[10,12],[-4,5],[-6,3],[-10,-3],[-12,-22],[-7,-4],[-16,7],[-12,5],[-10,9],[4,5],[1,5],[-3,2],[2,3],[1,5],[4,2],[6,7],[4,-5],[11,3],[3,-3],[4,5],[1,-2],[5,5],[12,2],[2,5],[-2,10],[33,0],[-1,-5],[11,-7],[-1,-3]],[[6041,5195],[2,0],[10,-10],[10,-5],[0,-5],[7,0],[3,-2],[-8,-10],[-4,0],[-8,3],[-2,2],[2,5],[-8,9],[-5,13],[1,0]],[[6091,5182],[-6,-4],[-5,2],[6,7],[4,10],[8,14],[3,3],[-1,-3],[3,-2],[0,-5],[-5,-7],[-3,-7],[-4,-8]],[[6203,5117],[1,-5],[14,-9],[3,-7],[0,-5],[-3,-3],[-4,3],[-1,-3],[-7,5],[-3,-2],[0,-5],[-7,10],[7,2],[-2,10],[-2,-3],[-3,3],[-3,-3],[0,5],[-5,0],[0,5],[-2,-3],[-3,3],[-2,0],[0,5],[3,2],[0,15],[5,2],[12,-10],[2,-2],[0,-10]],[[6386,5504],[5,-8],[-2,-2],[2,-5],[-4,-2],[-15,-5],[-10,5],[-10,9],[-5,5],[4,0],[15,10],[5,-3],[15,-4]],[[6347,5390],[2,-7],[-8,-7],[-2,-5],[0,-5],[-5,0],[-2,-2],[4,-3],[-5,-5],[0,-2],[3,0],[-3,-5],[5,-7],[-2,-3],[-2,-4],[-8,4],[-2,5],[-3,3],[-2,4],[-3,0],[7,8],[0,2],[-5,5],[-2,0],[-7,-7],[5,0],[-6,-5],[-2,-5],[2,0],[1,-2],[4,-8],[-2,-2],[-11,5],[4,7],[-1,2],[-3,-4],[-2,0],[-2,4],[-11,-4],[3,4],[-3,3],[0,2],[1,3],[-1,2],[3,3],[-2,0],[2,2],[-3,7],[0,7],[-4,3],[0,2],[17,3],[5,-3],[11,3],[5,-5],[5,-7],[0,-3],[10,7],[0,3],[5,7],[5,0],[7,5],[-2,-5]],[[6238,5535],[0,-2],[-4,2],[-3,-2],[-10,-3],[-7,-7],[-3,7],[-3,0],[0,3],[-2,2],[-12,5],[-1,7],[3,12],[7,10],[11,9],[15,-4],[2,-5],[7,-5],[1,0],[-3,-3],[-2,-2],[2,-2],[3,0],[0,-5],[-3,-3],[0,-2],[2,-12]],[[6434,5424],[2,-3],[6,5],[0,-5],[-25,-9],[-15,-3],[-18,8],[5,7],[12,12],[28,7],[7,-5],[0,-12],[-2,-2]],[[4439,5557],[-4,-3],[-3,0],[-5,-2],[-7,7],[4,7],[-2,3],[3,0],[15,-5],[0,-5],[-1,-2]],[[4109,4620],[2,0],[2,2],[8,-12],[0,-4],[-3,-8],[-5,0],[-7,8],[-5,7],[-1,7],[5,2],[4,-2]],[[3995,4120],[-2,-2],[-18,-12],[-5,-5],[-3,-2],[0,2],[0,5],[6,14],[3,-2],[4,2],[1,10],[5,7],[10,-7],[-3,0],[-2,-2],[0,-5],[4,-3]],[[4648,5091],[-1,0],[-4,2],[4,5],[3,0],[2,-2],[-4,-5]],[[1115,9397],[3,-4],[7,-15],[2,-2],[18,-3],[3,-2],[7,2],[5,-7],[8,-2],[5,-8],[5,0],[0,-4],[-6,0],[5,-8],[-7,-2],[-3,2],[0,3],[-4,0],[0,-3],[-6,-7],[11,2],[2,0],[0,-4],[-18,-10],[-7,-2],[-5,4],[5,3],[0,2],[-3,3],[-5,-3],[-2,-2],[-22,-7],[-5,-5],[-5,2],[-8,-5],[-15,0],[-5,-5],[-5,3],[-8,5],[-3,7],[1,5],[4,0],[8,2],[7,-9],[3,2],[0,2],[-3,0],[10,0],[6,3],[12,2],[10,7],[-5,0],[-17,-4],[-5,0],[-3,2],[0,2],[2,5],[5,3],[4,9],[9,0],[10,3],[1,2],[2,5],[-3,2],[-19,-7],[-6,12],[-23,5],[-5,3],[8,4],[-7,10],[7,0],[5,2],[5,-2],[2,0],[0,5],[5,2],[11,3],[10,-3],[0,-5],[5,0]],[[1637,9928],[-5,-2],[2,-7],[-3,0],[3,-7],[-2,-3],[-3,-2],[-8,7],[3,2],[-8,10],[6,0],[2,0],[0,2],[-12,0],[0,3],[15,2],[7,0],[5,-2],[-2,-3]],[[1577,9948],[10,-12],[-3,0],[0,-3],[3,0],[4,-5],[-9,-2],[-5,-5],[20,5],[-5,-5],[-8,-2],[-15,0],[-5,9],[-5,3],[-3,5],[1,5],[-1,0],[-9,0],[0,2],[2,7],[12,5],[16,-7]],[[1419,8596],[10,0],[4,5],[13,-5],[-10,-12],[-17,-7],[-3,-5],[0,-5],[-10,-7],[-12,-5],[-6,2],[-4,-2],[0,7],[4,5],[-4,0],[-6,-5],[-5,5],[-4,0],[0,7],[-11,17],[2,19],[-2,8],[23,9],[18,-2],[7,-5],[2,-7],[6,-3],[-1,-4],[5,-5],[1,-5]],[[1075,9494],[0,-2],[5,0],[-3,-10],[-3,-5],[-4,-2],[-10,2],[-3,5],[-13,7],[16,15],[5,0],[14,-8],[-4,-2]],[[1069,9658],[13,-14],[10,-8],[3,-4],[3,-27],[-3,-12],[-6,-10],[5,5],[4,0],[2,-2],[-3,-8],[0,-2],[6,-7],[-8,-5],[17,0],[1,-2],[-6,-5],[11,2],[5,-5],[10,0],[4,-7],[1,0],[4,5],[8,0],[8,5],[5,0],[4,-5],[11,0],[-1,-5],[0,-7],[-12,-10],[-8,0],[-4,-12],[-8,-5],[-13,-14],[-14,-3],[-1,0],[-2,3],[0,5],[5,4],[0,5],[2,5],[8,7],[15,8],[0,2],[-8,-2],[-15,-3],[-2,7],[-7,8],[4,-8],[-5,-7],[1,-2],[-5,-7],[-3,0],[-2,2],[-1,12],[-4,2],[-1,-2],[-3,2],[-2,0],[2,-2],[-4,-2],[-23,-5],[0,2],[7,7],[-5,0],[-7,-2],[-5,7],[5,5],[-10,0],[-8,10],[-4,7],[10,5],[5,0],[9,-7],[5,0],[-2,2],[-15,10],[-8,0],[1,0],[0,2],[-5,2],[4,0],[-4,3],[0,5],[-6,-5],[0,5],[-2,5],[-2,-5],[-5,-3],[2,-9],[-3,-3],[-15,5],[-7,5],[-3,10],[-7,2],[-2,7],[10,0],[-5,5],[0,2],[5,5],[14,-14],[5,-3],[0,5],[1,3],[-5,4],[0,3],[4,2],[8,-2],[-2,5],[-5,4],[-8,3],[3,7],[0,3],[-1,4],[3,0],[8,-7],[4,-7],[8,-3],[7,-7],[6,3],[-3,-8],[2,0],[3,3],[2,5],[15,-15],[-4,5],[2,5],[-8,7],[-4,5],[5,10],[-6,2],[0,2],[-2,5],[-2,5],[10,5],[4,7],[5,0]],[[3503,5653],[1,-5],[-1,-7],[-10,0],[-4,-5],[0,-12],[-6,3],[3,9],[8,8],[0,9],[4,0],[5,5],[0,-5]],[[3155,6114],[0,-2],[-2,-3],[-4,-2],[-7,5],[7,0],[6,5],[0,-3]],[[922,9648],[4,-2],[5,2],[8,-2],[3,0],[0,-5],[-5,-5],[-11,8],[-9,0],[0,-3],[4,0],[0,-5],[6,0],[2,-4],[7,0],[-4,-5],[-3,-3],[-15,-2],[-3,5],[-9,-5],[0,-3],[12,0],[10,3],[7,0],[1,-3],[-5,-7],[-10,0],[-3,-2],[-12,2],[-6,7],[5,3],[-5,0],[-15,7],[-5,-2],[-12,5],[0,2],[3,2],[7,12],[3,0],[12,0],[-3,-2],[1,-2],[15,12],[-3,-8],[12,-2],[0,2],[-4,0],[17,8],[2,-5],[-4,-3]],[[896,9588],[15,-10],[-7,0],[13,-4],[0,-3],[-5,-2],[-13,7],[-7,7],[-3,-2],[3,-5],[9,-2],[5,-5],[8,0],[5,-7],[2,2],[0,-5],[-5,-5],[-5,-7],[-4,-2],[-11,2],[10,-2],[3,-3],[2,-9],[0,-5],[-2,-3],[-7,3],[-6,-3],[11,0],[7,-7],[3,0],[-3,-5],[-13,3],[-5,-3],[-7,8],[-5,12],[2,9],[-9,5],[5,2],[4,10],[1,3],[2,2],[-7,19],[14,5]],[[468,8753],[-3,-7],[0,-8],[-3,-2],[-10,7],[-7,0],[0,12],[-2,3],[-3,0],[-12,-3],[-18,3],[0,2],[8,3],[4,2],[1,5],[4,-3],[1,3],[5,-5],[12,5],[17,0],[3,-7],[-3,0],[1,-5],[-1,-5],[5,2],[1,-2]],[[891,9487],[1,-3],[-6,0],[-5,-5],[0,-2],[-2,0],[-2,-2],[-16,2],[3,5],[3,2],[2,5],[-2,3],[10,4],[2,8],[7,-5],[-4,-5],[7,-2],[2,-5]],[[4344,8922],[-2,-3],[2,-4],[0,-5],[5,-3],[8,-2],[22,2],[6,0],[5,-4],[2,-8],[-5,-5],[-11,-7],[0,-5],[1,-7],[4,-7],[14,-5],[7,-10],[5,-2],[-7,-5],[-1,-9],[-5,0],[3,2],[0,2],[-5,-2],[-5,2],[7,3],[3,5],[-8,0],[-7,-3],[12,5],[0,2],[-5,0],[-5,-2],[-5,2],[-17,-2],[-11,-7],[-4,-5],[-8,-2],[0,-8],[2,3],[-2,0],[10,2],[0,-10],[-2,0],[-10,3],[-6,2],[5,8],[-5,-3],[0,-2],[-7,0],[-10,5],[-2,0],[0,4],[-8,-2],[-2,2],[2,0],[5,0],[0,3],[-10,7],[5,10],[3,0],[9,-3],[8,5],[-5,0],[0,7],[-5,3],[-8,0],[3,5],[13,4],[2,3],[-7,2],[0,3],[0,4],[-6,-2],[-4,2],[-1,5],[-4,0],[20,3],[5,-3],[2,-5],[2,3],[-2,5],[5,5],[7,4],[-5,-9],[3,-3],[-2,-5],[5,3],[2,2],[-5,3],[3,2],[7,-10],[-2,-2],[4,-5],[13,0],[-2,3],[4,4],[-4,10],[4,0],[0,3],[-5,-3],[-9,0],[-3,3],[-3,2],[-5,7],[-17,-12],[-3,0],[1,7],[4,8],[1,4],[-11,-2],[1,5],[4,5],[23,4],[10,-2],[0,-2],[-10,-5]],[[4650,6368],[3,-5],[0,-7],[-5,7],[-1,0],[-2,2],[-2,-2],[-11,10],[-9,9],[2,3],[-3,4],[28,-21]],[[6708,4473],[-13,-3],[-2,3],[0,2],[5,3],[12,0],[-2,-5]],[[613,5103],[-5,-3],[3,8],[4,4],[-2,-9]],[[6020,4639],[-2,0],[-1,5],[3,-5]],[[3990,8994],[13,-7],[5,-10],[37,-17],[-4,10],[4,3],[11,2],[-3,5],[2,5],[13,-10],[0,-2],[5,-5],[5,-3],[-3,-2],[3,-3],[10,-9],[2,-7],[-9,-8],[7,-2],[-2,-5],[-5,-5],[-6,-2],[-27,5],[-17,-5],[-6,-5],[-4,0],[-43,24],[-26,7],[-4,3],[-1,5],[1,2],[4,2],[10,0],[3,5],[-5,3],[-10,12],[0,2],[2,5],[6,7],[4,-2],[23,5],[5,-3]],[[3838,8982],[7,0],[2,0],[-2,5],[7,-12],[5,0],[0,2],[-2,5],[8,-7],[0,-2],[4,-3],[-14,-2],[-5,-5],[-5,2],[-28,27],[-3,9],[17,-9],[9,-10]],[[3745,9026],[10,-10],[14,-2],[10,-8],[6,-9],[5,-20],[-6,0],[-9,-4],[-16,7],[5,2],[15,-7],[0,2],[-9,5],[-8,3],[-7,-3],[-6,0],[-5,5],[-4,5],[0,9],[12,-7],[3,0],[-3,5],[2,0],[-9,7],[2,5],[-15,-2],[-7,2],[0,3],[5,4],[-8,-2],[-3,2],[0,3],[15,5],[11,0]],[[3920,8992],[-18,-48],[-7,0],[-2,0],[-3,14],[-10,10],[7,0],[6,12],[4,-3],[3,3],[0,5],[-3,-3],[-4,3],[4,4],[16,17],[9,10],[1,7],[7,12],[5,10],[5,-2],[-8,-29],[-12,-22]],[[3883,9219],[4,-3],[5,5],[0,-2],[-7,-7],[-2,-15],[-1,-2],[-5,-5],[-5,2],[-5,5],[-2,10],[2,5],[8,7],[2,7],[-2,5],[-8,5],[0,7],[1,2],[2,3],[3,0],[0,-12],[4,-3],[8,-5],[-2,-4],[0,-5]],[[3990,8881],[8,-17],[-20,5],[-3,-3],[1,-2],[-11,2],[-2,0],[0,8],[-6,2],[-5,-2],[0,2],[-4,-2],[0,4],[4,10],[6,5],[9,2],[14,-7],[9,-7]],[[3980,9564],[-22,-5],[2,-2],[0,-3],[-3,-7],[-14,-5],[-8,10],[-10,-3],[-3,3],[0,2],[15,10],[6,0],[9,5],[23,0],[3,0],[2,-5]],[[1903,6834],[7,0],[3,-3],[0,-7],[2,-2],[0,-3],[6,-7],[0,-12],[-4,-12],[-4,2],[-5,15],[-13,14],[-7,10],[2,5],[-5,12],[10,-3],[8,-9]],[[2939,8579],[-5,-5],[-5,3],[18,17],[10,4],[9,0],[0,-2],[-10,-2],[-17,-15]],[[4492,4424],[-7,-2],[-6,5],[-4,0],[0,7],[14,5],[8,-7],[3,-5],[-8,-3]],[[3238,8664],[4,-5],[-5,5],[-5,-3],[-4,3],[-3,4],[20,5],[3,-5],[-13,-2],[0,-2],[3,0]],[[3140,8637],[-3,-5],[0,3],[0,2],[-2,2],[5,3],[10,5],[17,0],[5,0],[0,-3],[-32,-7]],[[6535,4750],[5,-2],[2,-5],[-7,3],[-3,-5],[3,-5],[0,-10],[-1,0],[-5,7],[1,10],[-1,5],[1,2],[5,0]],[[3599,9479],[0,-2],[2,-7],[-4,-12],[-1,0],[-2,5],[-2,0],[-5,-3],[0,-2],[4,-12],[3,-3],[-5,-2],[3,-3],[-5,-7],[-5,-7],[-6,-2],[0,-5],[-18,-5],[-12,14],[-5,0],[-8,0],[1,5],[5,3],[0,4],[4,3],[11,2],[5,5],[-8,0],[7,10],[-2,5],[23,4],[3,0],[10,12],[4,-2],[5,7],[1,0],[-3,-5]],[[3513,8980],[8,0],[35,0],[-3,-3],[-22,3],[-8,-5],[-12,0],[-7,2],[-5,-2],[-3,-10],[2,-17],[-4,-4],[0,9],[2,27],[2,5],[11,29],[9,9],[6,-5],[-11,-2],[5,0],[1,-2],[-1,-3],[-7,-5],[-5,-7],[2,-5],[-2,-9],[7,-5]],[[3543,8931],[-4,0],[-6,0],[-4,0],[-16,5],[8,10],[18,0],[5,0],[2,-5],[-3,-10]],[[1902,7985],[26,-9],[5,0],[2,0],[0,-5],[3,0],[3,-5],[-11,-5],[-5,-5],[0,-2],[-2,-10],[-18,-5],[-7,3],[-30,19],[-11,-2],[3,7],[7,5],[15,5],[-2,-3],[5,0],[10,10],[7,2]],[[1695,7662],[-21,0],[3,5],[-2,2],[2,0],[5,2],[7,5],[10,7],[3,-2],[-3,-7],[-2,-10],[-2,-2]],[[1765,7621],[2,-3],[5,3],[10,-5],[0,-3],[1,-4],[-1,-3],[0,-7],[-13,2],[-7,8],[-2,-3],[-3,-5],[-5,3],[-5,-3],[0,8],[-2,12],[10,-3],[5,5],[5,-2]],[[3100,8637],[7,-2],[-15,-3],[-18,0],[-12,-5],[-5,0],[-2,5],[0,3],[4,2],[41,0]],[[3020,8622],[-36,-14],[-5,0],[-2,5],[2,5],[12,4],[26,3],[5,5],[25,2],[-5,-5],[-13,0],[0,-5],[-9,0]],[[2931,8550],[0,-2],[3,0],[-3,-5],[-4,-7],[-8,-5],[-3,-7],[-7,-3],[-5,3],[-3,7],[0,5],[3,7],[5,7],[8,5],[7,14],[7,-2],[0,-2],[3,-10],[0,-3],[-3,-2]],[[3852,6066],[1,-5],[-1,-2],[-7,-7],[7,-5],[0,-5],[-2,-3],[-2,3],[-5,0],[-3,7],[-3,3],[-2,0],[-3,-5],[-2,5],[-5,-5],[-3,5],[-2,-5],[-15,0],[-6,5],[-2,4],[2,5],[8,5],[13,-5],[5,0],[-1,3],[1,2],[0,2],[10,0],[-1,-4],[4,0],[5,4],[4,10],[1,0],[4,-2],[1,-3],[-1,-7]],[[3508,5173],[5,-3],[8,-2],[3,-7],[4,0],[-4,-5],[0,-3],[-5,-19],[-3,0],[-10,24],[0,8],[0,2],[2,5]],[[6231,4806],[-3,-3],[-10,5],[11,5],[2,0],[0,-7]],[[4351,5576],[-4,0],[4,2],[0,-2]],[[2804,5402],[4,-2],[0,-5],[1,0],[4,5],[0,2],[0,3],[1,-8],[15,-12],[2,-7],[-3,-2],[6,-3],[2,-7],[5,-10],[-5,5],[-2,-17],[-8,0],[-43,29],[-20,-2],[-7,2],[2,10],[1,2],[-3,3],[-3,2],[0,7],[3,3],[12,2],[3,-2],[23,2],[9,5],[1,-5]],[[2359,5086],[10,-17],[13,0],[0,-5],[-3,-5],[-19,10],[-10,-7],[-1,7],[1,0],[-1,0],[1,7],[-1,0],[6,5],[2,7],[2,-2]],[[2382,5173],[3,-5],[4,-15],[-5,-2],[-4,-7],[-5,-5],[-6,-10],[-7,-7],[-3,5],[-5,-10],[-4,-12],[-8,10],[-5,-3],[-2,3],[-3,2],[-3,-2],[0,-3],[-8,8],[0,5],[3,9],[-2,3],[2,2],[5,-2],[6,2],[-1,17],[10,10],[3,-3],[3,5],[2,-2],[8,7],[9,0],[3,2],[10,-2]],[[4540,4383],[-2,-4],[-1,2],[-4,-5],[0,-5],[-18,5],[-6,5],[-7,10],[0,17],[-3,4],[5,5],[5,0],[-5,-5],[13,0],[13,-9],[0,-8],[7,-2],[1,-5],[2,-5]],[[4538,6653],[7,-3],[-3,0],[0,-2],[6,-12],[-3,-3],[7,-2],[5,0],[0,-5],[-2,-7],[2,-5],[5,-5],[6,0],[0,-7],[10,-7],[2,-8],[-5,-2],[-3,2],[-2,-2],[2,-2],[0,-3],[-9,0],[-13,7],[-2,17],[-3,-2],[3,-5],[-18,3],[-3,2],[-8,7],[-2,5],[2,2],[3,0],[1,5],[10,3],[-1,4],[3,5],[0,8],[2,4],[-2,5],[-2,0],[5,3]],[[4570,6556],[2,-2],[-4,-5],[14,-12],[5,-7],[1,-5],[-1,-5],[-19,19],[2,-5],[-5,3],[-3,0],[-7,7],[8,-2],[-1,4],[5,-2],[-7,12],[7,-2],[-2,2],[5,0]],[[4587,6496],[5,-5],[0,7],[3,0],[7,-5],[10,-12],[6,-2],[7,-12],[-12,5],[0,4],[-6,5],[-7,3],[-3,0],[10,-8],[13,-19],[8,-5],[-6,5],[-4,10],[7,-5],[28,-29],[-1,0],[-12,7],[0,-2],[8,-5],[2,-2],[-3,0],[1,-5],[-15,5],[7,-8],[-7,3],[-5,7],[0,2],[2,0],[-3,5],[3,3],[2,2],[-7,2],[-5,-2],[-5,10],[-10,9],[-10,5],[0,3],[3,0],[-6,14],[-20,24],[-5,10],[8,-7],[12,-17]],[[5589,5042],[-1,0],[0,3],[3,10],[2,2],[8,2],[0,-2],[-2,-2],[-6,-5],[-4,-8]],[[5574,5064],[4,-2],[-4,-5],[-5,0],[0,-2],[7,-8],[-8,8],[-2,4],[2,3],[5,2],[1,0]],[[4590,6385],[-3,9],[1,0],[14,-12],[1,-7],[7,-2],[3,0],[-1,-3],[3,-2],[2,-7],[1,-3],[9,-10],[3,-2],[5,-7],[13,-10],[0,-2],[-3,0],[-8,5],[-4,0],[9,-8],[3,0],[-2,-5],[-11,10],[-14,19],[-6,15],[-7,7],[-15,15]],[[4685,6327],[1,-3],[-6,3],[-2,2],[-7,3],[-1,2],[1,2],[-8,5],[-8,12],[6,0],[9,-7],[5,-2],[1,-8],[5,-2],[4,-7]],[[5568,4866],[5,-2],[5,2],[6,-2],[7,-7],[5,-10],[12,-10],[1,-7],[-8,5],[-10,2],[-8,-7],[1,-7],[0,-5],[-6,2],[-19,20],[0,2],[-10,15],[-3,2],[2,10],[-2,0],[12,17],[3,0],[5,-17],[2,-3]],[[4523,6580],[-3,-7],[2,0],[-2,-5],[0,-12],[3,-12],[-3,0],[3,-7],[0,-10],[0,-5],[7,-12],[0,-2],[3,0],[0,-5],[-3,-2],[-7,0],[-6,9],[-7,12],[2,10],[-5,2],[-2,15],[-5,2],[-3,15],[-3,5],[1,2],[-1,5],[1,0],[5,0],[5,-7],[5,0],[2,4],[-2,8],[2,-3],[2,3],[-5,7],[-7,17],[-10,12],[0,5],[3,7],[5,5],[5,-3],[0,-2],[0,-17],[5,-12],[5,-10],[8,-5],[0,-2],[0,-5]],[[4906,6102],[8,-2],[10,0],[7,2],[18,3],[13,-5],[4,2],[11,-12],[-1,-2],[-4,2],[-10,-2],[-15,5],[-8,0],[-20,-8],[-26,8],[-4,-3],[-1,3],[-4,0],[12,7],[0,2],[-13,3],[3,2],[12,0],[8,-5]],[[5007,6061],[-1,-2],[20,-3],[5,-4],[13,-3],[-2,-2],[12,0],[12,-8],[3,-4],[-60,19],[-3,-2],[-9,7],[12,2],[-2,0]],[[4871,6165],[3,-2],[7,0],[7,0],[5,-8],[0,-2],[6,-5],[20,0],[2,3],[7,-5],[19,-3],[24,0],[5,-2],[-87,0],[-18,2],[-32,15],[2,0],[7,0],[3,2],[2,-2],[1,5],[0,-3],[7,3],[8,-8],[5,0],[-10,10],[7,0]],[[4913,6192],[3,2],[5,-5],[5,-2],[0,-3],[-2,-5],[-3,0],[-2,-4],[-36,-3],[-22,5],[-13,10],[-2,2],[3,0],[2,0],[-2,5],[4,0],[-4,10],[4,0],[6,-3],[34,0],[20,-7],[-2,0],[2,-2]],[[6120,5228],[1,0],[2,0],[0,-4],[-2,-8],[-3,0],[-2,3],[2,0],[-3,5],[3,7],[2,0],[0,-3]],[[6713,5499],[3,-3],[0,-2],[-9,2],[-4,3],[0,2],[5,7],[5,-4],[0,-5]],[[4257,4383],[-3,3],[0,2],[3,0],[0,-5]],[[5538,5016],[10,-31],[0,-3],[-5,-7],[5,-10],[1,-2],[7,7],[-2,-2],[4,-3],[3,-7],[7,-7],[1,-8],[7,-9],[2,-7],[-4,-8],[-11,0],[-7,8],[-12,4],[-5,0],[-3,-7],[-8,5],[-2,2],[-2,10],[-3,7],[7,-5],[0,3],[-4,2],[-6,22],[-2,0],[-2,-5],[2,-12],[-2,-7],[-8,-7],[-2,4],[-3,3],[-2,5],[4,7],[-2,5],[5,5],[2,7],[1,14],[2,-4],[3,4],[5,-9],[0,2],[4,-5],[8,8],[2,7],[-2,5],[3,0],[-1,9],[0,7],[0,3],[5,0]],[[5559,5067],[2,0],[2,7],[0,-19],[-4,2],[0,-5],[-1,0],[-2,-5],[-5,3],[-2,-3],[2,-5],[-3,3],[0,2],[-4,3],[-1,5],[-2,-3],[-7,-12],[-1,0],[3,29],[7,22],[8,12],[7,5],[5,-8],[1,-9],[-1,-3],[1,-9],[-5,-8],[0,-4]],[[5554,5018],[-1,-5],[3,0],[5,-2],[-7,-17],[9,-2],[-4,5],[4,0],[3,-3],[3,-2],[-3,0],[0,-7],[3,-3],[0,-2],[-8,0],[-3,5],[1,0],[-5,7],[-3,9],[-2,10],[-5,5],[2,2],[3,-2],[0,2],[2,5],[3,0],[0,-5]],[[5431,5335],[0,-3],[4,3],[0,-8],[-4,-5],[-15,-9],[0,-5],[4,-2],[0,-3],[-4,0],[0,-2],[15,-5],[-1,-7],[-4,0],[2,-5],[5,-27],[15,-7],[8,2],[7,-16],[-2,-5],[-13,9],[-5,0],[-8,8],[-7,2],[2,0],[1,2],[-8,3],[0,-3],[-5,10],[-2,15],[-1,4],[-14,13],[-5,12],[-6,2],[-2,10],[-3,-3],[0,7],[-4,3],[7,10],[22,2],[8,5],[13,-7]],[[6030,4898],[3,-8],[3,0],[-5,-2],[0,-2],[-3,-5],[0,-3],[-3,3],[-5,-8],[-8,3],[-4,5],[2,2],[5,5],[5,-2],[5,9],[-7,-5],[-6,3],[6,2],[-5,5],[7,-2],[0,2],[5,2],[5,-2],[1,0],[-1,-2]],[[5950,4468],[0,-15],[-7,3],[-3,-3],[0,3],[-7,2],[0,5],[-3,0],[-3,7],[1,20],[-3,12],[7,12],[3,-3],[8,-17],[14,-14],[1,-2],[-5,-3],[-3,-7]],[[2786,8210],[3,-3],[10,-5],[0,-4],[-8,-5],[-15,-3],[-10,5],[-2,7],[-13,8],[-2,0],[-5,-5],[-8,0],[-3,0],[-2,2],[0,10],[7,2],[13,3],[25,-3],[10,-9]],[[3431,8808],[-3,3],[1,0],[2,-3]],[[4216,4297],[-2,0],[-13,7],[5,0],[10,-3],[0,-4]],[[4126,4893],[0,-3],[-3,0],[-5,8],[3,2],[5,-7]],[[3692,5673],[0,-5],[-5,5],[4,12],[1,0],[2,-5],[-2,-7]],[[3687,5680],[-10,-3],[-1,5],[3,3],[2,4],[1,0],[4,-2],[1,-7]],[[3834,5950],[-2,-5],[-3,3],[1,2],[2,3],[2,-3]],[[3797,6008],[-5,-2],[-3,2],[5,7],[3,-5],[0,-2]],[[6635,4555],[-5,0],[-2,5],[2,4],[5,5],[3,0],[4,-7],[-2,-5],[-5,-2]],[[6577,4707],[5,0],[-2,-7],[3,-3],[5,-9],[-5,-3],[-3,0],[2,5],[-5,0],[-2,2],[2,5],[-7,5],[-1,2],[1,3],[4,0],[1,2],[2,-2]],[[4573,6416],[-3,-2],[-2,4],[2,0],[2,3],[5,-5],[-4,0]],[[4580,6435],[-2,-2],[-1,2],[-5,3],[1,5],[-1,9],[3,0],[3,-2],[0,-7],[2,-8]],[[4490,6498],[-6,5],[1,7],[5,5],[2,0],[-2,-5],[-1,0],[0,-5],[1,-7]],[[8269,1878],[2,-5],[2,2],[0,-2],[1,-7],[2,-3],[-2,0],[0,-2],[-5,2],[0,5],[-3,0],[-2,5],[-3,-3],[2,10],[6,-2]],[[8246,1895],[-3,0],[-2,2],[0,2],[2,3],[5,-3],[0,-2],[-2,-2]],[[8258,1904],[-4,0],[4,-12],[-2,-2],[-3,7],[0,12],[1,2],[2,-2],[2,-5]],[[3559,8886],[-8,-3],[-3,5],[0,5],[3,2],[13,5],[-2,-10],[-3,-4]],[[1343,8079],[-2,0],[-1,3],[1,7],[2,-10]],[[1725,7659],[-3,-2],[0,7],[3,3],[2,-5],[-2,-3]],[[1752,7729],[-5,0],[5,3],[5,2],[-5,-5]],[[1072,7778],[-3,0],[1,7],[4,-5],[-2,-2]],[[1065,7787],[0,-2],[-1,0],[-2,5],[3,0],[0,-3]],[[485,8195],[3,0],[-1,-2],[-14,-5],[-5,2],[0,3],[7,2],[10,0]],[[400,8265],[5,-2],[-10,-7],[-11,-3],[0,3],[3,2],[10,7],[3,0]],[[497,8557],[5,0],[8,-2],[2,-3],[-2,-2],[5,-2],[0,-3],[-3,0],[-25,12],[1,3],[4,0],[5,-3]],[[8313,738],[-2,0],[-2,5],[0,7],[2,8],[3,7],[2,-7],[-3,-20]],[[7544,6848],[24,-2],[16,2],[5,-5],[12,3],[3,-3],[9,0],[1,-2],[-3,-5],[-70,12],[2,3],[1,-3]],[[6296,4579],[-7,-5],[-3,0],[5,15],[8,4],[7,0],[-2,-2],[-8,-12]],[[6412,4690],[2,-2],[0,-3],[-3,0],[-2,0],[-2,0],[-3,5],[8,5],[0,-5]],[[4612,4992],[-2,-3],[-7,10],[0,2],[2,5],[2,0],[0,-2],[5,-7],[1,-3],[-1,-2]],[[3508,8936],[-5,-5],[8,-12],[3,-2],[-8,-2],[-10,12],[8,9],[4,0]],[[6607,4280],[1,-5],[-8,-3],[-12,-9],[-5,0],[-1,5],[6,9],[2,3],[3,0],[15,4],[0,-2],[-1,-2]],[[6131,4135],[-5,0],[-10,7],[0,2],[5,3],[9,-3],[-2,-4],[3,-5]],[[6386,4632],[-10,0],[6,7],[5,-5],[-1,-2]],[[6668,4533],[2,-7],[3,0],[-1,-5],[1,-2],[7,2],[0,-5],[-2,-2],[-8,-3],[-3,8],[0,2],[-2,2],[-5,-4],[-3,4],[0,10],[1,-2],[9,5],[1,-3]],[[6351,4618],[-5,0],[-2,2],[5,7],[5,3],[-2,-3],[2,0],[0,-5],[-3,-4]],[[6417,4507],[-1,-3],[-5,3],[-7,-3],[-7,3],[-1,4],[6,5],[5,-2],[7,-5],[3,-2]],[[6204,4622],[4,0],[1,-2],[-6,-12],[-5,0],[-4,10],[2,2],[5,5],[3,-3]],[[6286,4651],[2,-2],[-5,5],[-4,5],[0,4],[4,5],[6,3],[-5,-17],[2,-3]],[[6218,4601],[-4,0],[-5,7],[2,2],[3,0],[5,-4],[-1,-5]],[[6268,4564],[-7,0],[-12,13],[-1,4],[5,0],[13,-12],[2,-5]],[[6372,5050],[5,-8],[-1,0],[-2,-9],[-5,0],[-2,0],[0,5],[-6,9],[1,3],[4,-3],[1,3],[4,-3],[0,3],[1,0]],[[6273,5257],[-2,0],[-2,10],[2,7],[3,3],[0,2],[2,0],[7,-2],[-2,-8],[-8,-12]],[[6026,5187],[0,-5],[-3,3],[-1,-3],[-4,-7],[-5,5],[-5,0],[0,2],[5,5],[2,5],[5,3],[5,-5],[1,-3]],[[6447,5349],[3,-2],[4,0],[0,-3],[-2,-12],[-12,7],[-3,5],[2,3],[8,2]],[[6711,5545],[5,-3],[7,0],[5,-2],[0,-3],[-3,-4],[-9,0],[-9,-8],[-10,5],[0,5],[-2,5],[2,5],[1,0],[0,-3],[10,3],[3,0]],[[3953,4089],[-11,5],[-2,2],[2,3],[3,0],[18,0],[-1,-3],[-9,-7]],[[7593,3249],[3,2],[25,20],[27,-5],[-4,0],[-15,2],[-8,0],[-28,-19]],[[7676,3254],[8,-8],[-30,17],[-5,3],[5,0],[22,-12]],[[1355,8787],[-4,-8],[-1,3],[-7,-3],[-7,5],[-11,-5],[-4,0],[0,3],[4,2],[0,5],[5,5],[1,5],[0,7],[4,12],[8,2],[10,13],[12,21],[14,7],[12,5],[3,-2],[-5,-12],[0,-3],[4,-7],[6,-2],[2,-5],[-7,-7],[-3,-5],[-5,-5],[2,-7],[-15,-10],[1,-2],[-9,-5],[-4,-5],[-6,-2]],[[1190,9327],[-5,-7],[2,-5],[-4,0],[-3,0],[-2,5],[4,5],[8,2]],[[1285,9183],[-4,-3],[-3,7],[-12,8],[-3,14],[-7,5],[-3,10],[0,2],[5,2],[15,-9],[0,-5],[5,-2],[5,-10],[2,-10],[-4,-5],[4,-4]],[[1203,9349],[-6,-7],[-7,0],[3,5],[10,2]],[[1266,9113],[-16,0],[-7,2],[-15,7],[-1,12],[1,5],[-6,10],[-2,5],[2,9],[1,5],[10,10],[5,0],[-2,2],[7,0],[13,-7],[5,-10],[4,-9],[-2,-5],[8,-5],[0,-7],[-6,0],[1,-5],[9,-3],[-4,-2],[2,-10],[-7,-4]],[[1185,9310],[0,-2],[-5,-14],[-5,7],[3,9],[7,0]],[[1103,9207],[2,-10],[7,-5],[-2,-7],[5,-2],[0,-5],[2,-8],[-5,-2],[-2,-2],[0,2],[-8,-7],[-8,-3],[-7,0],[-3,0],[-2,-7],[-5,-5],[-5,0],[-3,0],[-4,8],[2,4],[13,8],[-6,9],[-9,5],[2,3],[12,12],[-4,0],[-10,0],[-3,-3],[-7,-12],[-5,-2],[-6,-10],[-5,0],[-2,2],[0,5],[2,5],[-2,0],[8,15],[-5,2],[4,2],[1,13],[7,2],[13,7],[2,0],[-3,-9],[1,-5],[4,-3],[-2,5],[3,7],[27,17],[3,-2],[3,-24]],[[1092,9079],[-2,-5],[-1,-5],[0,5],[-4,5],[-11,0],[6,2],[12,-2]],[[1165,9286],[-3,0],[5,8],[5,2],[1,-2],[2,-3],[-10,-5]],[[1098,9274],[-6,-7],[-2,-5],[2,-5],[-8,-2],[-9,2],[4,0],[3,10],[3,5],[7,2],[-2,3],[7,0],[1,-3]],[[1157,9253],[-14,-22],[-5,-10],[-1,0],[-9,-7],[-1,-15],[-5,-2],[-7,2],[-5,3],[-3,5],[-2,12],[2,9],[13,8],[13,2],[5,5],[-15,-3],[-3,5],[3,5],[4,5],[6,7],[9,3],[20,17],[5,2],[5,0],[0,-10],[-9,-7],[-6,-14]],[[1094,9361],[-14,0],[-3,3],[3,4],[4,0],[10,-7]],[[1343,8601],[5,0],[7,-5],[5,-12],[0,-3],[-7,3],[-5,7],[-8,3],[-2,2],[0,2],[3,3],[2,0]],[[1034,9501],[-15,0],[11,5],[9,-2],[-5,-3]],[[977,9791],[5,-5],[3,0],[4,-5],[-14,0],[2,3],[-2,2],[-3,5],[2,2],[3,-2]],[[926,9663],[-9,-2],[7,4],[3,3],[2,-3],[-3,-2]],[[1125,9617],[0,-2],[-2,0],[-1,2],[1,7],[0,3],[4,2],[0,-2],[-2,-10]],[[1123,9610],[-6,-19],[0,-8],[5,-9],[-10,-5],[-4,0],[2,5],[-3,2],[0,2],[3,20],[7,2],[-4,7],[4,3],[3,-3],[-2,5],[5,-2]],[[1132,9559],[-5,-2],[-4,2],[-5,3],[0,4],[4,3],[5,-3],[5,-2],[0,-5]],[[974,9354],[-15,5],[-3,9],[36,13],[5,0],[2,-5],[-2,-3],[-10,-2],[-2,-3],[-10,-4],[-3,-5],[2,-5]],[[954,9711],[0,-7],[-2,0],[-5,2],[-3,-4],[-3,0],[0,2],[6,7],[4,0],[3,0]],[[512,8579],[-5,0],[-4,2],[-1,8],[3,2],[5,0],[5,-7],[-3,-5]],[[906,9607],[5,-2],[-2,0],[2,-2],[3,2],[7,-5],[-10,-2],[1,-3],[7,-2],[0,-2],[-13,-5],[-5,2],[-14,5],[-1,5],[3,7],[3,2],[14,0]],[[708,9001],[-12,-2],[-3,2],[0,5],[3,0],[0,3],[2,2],[6,-5],[4,-5]],[[4588,5035],[0,-2],[-11,7],[3,2],[10,0],[2,-2],[-4,-5]],[[4306,8907],[-2,0],[0,-2],[-2,0],[0,5],[-3,-3],[-3,-14],[-4,-5],[-1,-10],[-2,0],[0,10],[7,22],[1,0],[7,0],[2,-3]],[[4203,9006],[1,-7],[-1,-5],[-32,3],[-12,-8],[-8,-9],[-3,0],[-15,5],[1,0],[0,4],[4,3],[-4,2],[5,5],[4,0],[0,2],[0,3],[8,-3],[10,3],[-2,5],[2,2],[-7,5],[0,2],[2,3],[3,0],[4,-5],[6,-2],[27,-3],[7,-5]],[[4036,8779],[-1,5],[15,7],[-12,-9],[-2,-3]],[[4209,9139],[-3,0],[-5,5],[-2,7],[0,5],[9,7],[6,12],[10,-24],[-5,-5],[-10,-7]],[[4030,8770],[-7,-15],[-2,0],[0,10],[-3,-2],[2,-5],[-4,0],[-6,2],[1,5],[7,5],[7,2],[5,-2]],[[4043,9412],[-10,0],[-2,5],[0,2],[24,5],[0,-2],[-5,-3],[-7,-7]],[[3192,8659],[8,-5],[-2,0],[-10,2],[0,3],[4,0]],[[3596,8878],[-12,0],[-2,3],[4,2],[-4,3],[12,7],[13,-3],[0,-2],[-8,-7],[-3,-3]],[[3516,9113],[8,-3],[-1,-10],[5,-9],[-5,-3],[-4,5],[-10,17],[-1,5],[1,2],[7,3],[0,-7]],[[1961,7990],[0,-2],[-13,2],[0,2],[3,0],[5,8],[2,0],[2,-3],[-2,-5],[3,-2]],[[2274,8130],[-5,-2],[-20,2],[-5,5],[-5,5],[3,7],[4,2],[21,-7],[5,-5],[2,-5],[0,-2]],[[1873,6894],[0,-2],[-6,2],[3,-7],[13,5],[0,-3],[-3,0],[0,-2],[20,-3],[7,-7],[3,-5],[-5,0],[-10,3],[-15,9],[-10,-2],[-12,12],[10,2],[5,-2]],[[1601,7155],[6,0],[2,-3],[-2,-4],[-3,0],[-13,0],[-9,2],[-3,2],[0,5],[-3,10],[3,5],[10,-8],[12,-9]],[[1278,7430],[2,0],[-9,-5],[-3,-2],[0,2],[3,0],[-1,3],[-5,0],[0,2],[10,5],[3,-5]],[[1754,7070],[8,-5],[0,-9],[0,-3],[-3,3],[-5,9],[-5,3],[-5,-3],[-2,5],[-3,10],[-4,2],[10,3],[7,-5],[0,-7],[2,-3]],[[1739,7005],[1,-2],[-16,0],[-2,4],[0,3],[7,0],[10,-5]],[[3415,8712],[-9,-5],[-5,0],[-5,2],[-1,-2],[-4,0],[5,5],[7,2],[13,-2],[-1,0]],[[3386,8705],[-20,0],[0,-5],[-5,0],[-1,5],[0,2],[3,0],[20,0],[3,-2]],[[3351,8700],[4,0],[-4,-3],[-8,3],[2,0],[6,0]],[[3296,8690],[-36,-5],[7,3],[23,2],[6,0]],[[3436,8714],[5,-2],[-13,2],[-2,-2],[-3,0],[5,2],[8,0]],[[3476,8700],[-3,-5],[-5,0],[1,5],[4,2],[8,-2],[-5,0]],[[3340,8697],[-9,-2],[-21,-3],[-7,3],[8,2],[9,3],[20,-3]],[[3754,6124],[1,0],[-3,-10],[-3,0],[-4,5],[4,7],[3,3],[2,-5]],[[3933,5948],[-1,0],[-9,9],[4,5],[5,-2],[3,-7],[-2,-5]],[[3499,5168],[-3,0],[-7,2],[2,3],[-7,9],[2,3],[13,5],[0,-17],[0,-5]],[[4607,5011],[-4,0],[-8,7],[2,10],[1,0],[9,0],[-2,-5],[3,-5],[-5,0],[4,-7]],[[1995,4830],[1,-7],[-3,2],[0,22],[3,-5],[-1,-5],[0,-7]],[[811,4656],[-7,-2],[-10,0],[0,2],[10,-2],[7,7],[2,-2],[-2,-3]],[[4166,4888],[8,-2],[-1,-5],[-9,5],[-1,-3],[-2,0],[-3,5],[6,2],[2,-2]],[[4725,6266],[10,-4],[-12,2],[-12,7],[2,3],[7,-3],[5,-5]],[[4673,6300],[5,-5],[-15,10],[-10,10],[-3,4],[2,3],[21,-22]],[[4166,6677],[2,5],[6,12],[4,2],[6,-2],[-8,0],[-10,-17]],[[4505,6493],[4,3],[0,5],[-5,9],[-2,15],[10,-8],[-2,-7],[4,-14],[19,-24],[0,-5],[-3,0],[-11,14],[0,3],[4,-3],[-4,5],[-7,5],[0,-3],[-5,0],[-2,0],[2,3],[-2,2]],[[4932,6054],[2,-2],[-3,-5],[-7,-3],[0,3],[-3,0],[-5,-3],[-2,3],[-1,2],[1,3],[0,2],[-3,-2],[2,4],[8,0],[11,-2]],[[4809,6126],[7,3],[2,-3],[1,3],[0,-3],[-6,-9],[-20,-5],[-5,2],[3,3],[2,2],[-2,3],[-3,0],[-2,4],[13,5],[7,0],[5,-2],[-2,-3]],[[4828,6206],[0,-2],[5,0],[10,-10],[-2,-5],[-5,3],[-12,7],[-11,5],[-2,4],[3,3],[10,-3],[4,-2]],[[5475,5192],[1,-5],[-5,0],[-5,8],[-1,7],[1,0],[9,-10]],[[5594,5035],[-3,0],[0,3],[7,9],[1,0],[-5,-9],[0,-3]],[[6033,4746],[-7,0],[0,-5],[-1,-3],[-22,-5],[0,3],[15,12],[22,2],[-7,-4]],[[5968,4719],[-5,0],[-6,7],[6,5],[5,-5],[0,-7]],[[6026,4784],[-8,0],[-3,5],[3,0],[4,7],[3,-7],[5,0],[-4,-5]],[[6023,4825],[-1,0],[-4,3],[2,4],[-7,5],[0,10],[20,0],[2,0],[-4,-5],[2,-5],[-3,0],[0,-9],[-7,-3]],[[5997,4379],[-5,7],[-5,9],[10,-9],[0,-7]],[[5739,4593],[0,-4],[-3,4],[-2,-2],[2,10],[3,0],[0,-8]],[[5729,4613],[2,-3],[-2,-2],[-3,-10],[0,12],[1,3],[2,0]],[[7860,2488],[-5,-2],[-1,-2],[5,-3],[6,0],[9,-10],[0,-2],[-12,0],[-5,2],[-3,8],[-2,9],[5,5],[3,-5]],[[7772,2370],[4,-2],[3,-12],[-3,0],[-4,7],[-5,2],[-3,3],[-5,-3],[-3,8],[3,4],[5,-2],[8,-5]],[[7771,2182],[0,-5],[-2,2],[-5,17],[3,0],[4,-14]]]}
name xcoord ycoord rank MS ES RS MM EM RM
Marcianopolis 27.44 43.31 90 0.0012 0.0015 0.0012 24 18 9
Malaca -4.42 36.72 80 0.0012 0.0008 0.0011 15 1 12
Augustoritum 1.25 45.83 80 0.0006 0.0013 0.0006 15 8 4
Mutina 10.92 44.65 80 0.0018 0.0017 0.0015 16 11 16
Doclea 19.28 42.48 80 0.0012 0.0015 0.0012 20 13 14
Tripolis 35.85 34.43 90 0.0017 0.0013 0.0017 21 20 15
Gades -6.29 36.53 90 0.0019 0.001 0.0018 15 1 12
Clysma 32.57 29.96 80 0.0007 0.0012 0.0006 22 19 19
Zeugma 37.88 37.06 80 0.0019 0.0018 0.0022 4 5 11
Tyana 34.62 37.83 80 0.0022 0.0027 0.0022 21 12 15
Thebai 32.65 25.7 80 0.0021 0.0031 0.0026 22 10 19
Troesmis 28.2 45.16 80 0.0002 0.0013 0.0014 0 7 9
Aulon 19.42 40.51 70 0.0007 0.0005 0.0007 20 13 14
Mytilene 26.31 39.21 80 0.0017 0.0014 0.0017 14 15 5
Sestus 26.42 40.23 80 0.0025 0.0017 0.0024 14 18 5
Horreum Margi 21.39 43.93 70 0.0012 0.0012 0.0012 13 7 9
Clusium 11.95 43.02 90 0.0014 0.0013 0.0013 16 3 16
Melitene 38.37 38.43 90 0.0014 0.0024 0.0014 4 12 11
Sufetula 9.13 35.26 80 0.001 0.0015 0.001 12 14 3
Palantia -5.38 42.45 60 0.0022 0.0015 0.002 15 1 12
Catabathmus Maior 25.16 31.56 80 0.0018 0.0025 0.0018 22 23 19
Halicarnassus 27.43 37.04 80 0.0015 0.0013 0.0015 14 20 5
Canusium 16.07 41.22 80 0.0012 0.0014 0.0012 9 13 7
Theodosia 35.38 45.05 80 0.0013 0.0012 0.0012 24 12 11
Laodicea 35.79 35.52 80 0.0019 0.0025 0.002 21 20 15
Ticinum 9.16 45.19 70 0.0014 0.0011 0.0014 10 22 2
Placentia 9.7 45.05 90 0.0008 0.0012 0.001 16 11 16
Viminacium 21.23 44.74 80 0.0022 0.002 0.0022 13 7 13
Hadrianoupolis 26.57 41.68 60 0.0011 0.0015 0.0011 13 18 9
Ichthys Pr. 21.32 37.65 60 0.0022 0.0019 0.0022 18 20 14
Mons Porphyrites 33.35 27.21 60 0.0009 0.001 0.0008 22 19 19
Lauriacum 14.47 48.22 80 0.0013 0.0018 0.0019 17 2 13
Ancona 13.52 43.62 90 0.0027 0.0017 0.0026 16 13 18
Savaria 16.62 47.23 80 0.0012 0.0014 0.0011 17 2 13
Bovianum 14.47 41.49 80 0.0013 0.0013 0.0013 9 13 7
Aquincum 19.05 47.57 90 0.0016 0.001 0.001 6 13 13
Myos Hormos 34.24 26.16 70 0.0008 0.001 0.0008 22 19 19
Forum Iulii 6.73 43.44 80 0.0016 0.0015 0.0015 10 21 2
Iulia Concordia 12.84 45.76 80 0.0014 0.002 0.0014 17 11 18
Kallipolis 26.68 40.41 60 0.0014 0.0013 0.0013 14 18 5
Flaviopolis 32.2 40.81 70 0.0012 0.0013 0.0012 24 12 11
Augusta Praetoria 7.31 45.74 80 0.0019 0.0024 0.0019 10 22 2
Portus 12.26 41.78 90 0.0007 0.0005 0.0007 9 3 7
Dura 40.73 34.75 80 0.001 0.0004 0.001 4 5 11
Luca 10.5 43.85 90 0.0009 0.0008 0.0008 16 3 16
Lilybaeum 12.44 37.8 80 0.0036 0.0033 0.0035 12 14 8
Durnonovaria -2.44 50.71 80 0.0015 0.0014 0.0014 7 9 1
Prusias 29.16 40.43 80 0.0012 0.0007 0.0012 14 18 5
Aquae Sextiae 5.44 43.53 80 0.0015 0.0018 0.0015 10 21 2
Servitium 17.26 45.13 70 0.0013 0.0024 0.0012 17 13 13
Ancyra 32.87 39.95 90 0.0022 0.0041 0.0024 24 12 11
Caesarodunum 0.7 47.38 80 0.0013 0.0007 0.0013 19 8 4
Tolosa 1.43 43.62 80 0.0016 0.0019 0.0016 15 21 4
Corycus 34.15 36.46 80 0.0017 0.0014 0.0017 21 20 15
Augusta Raurica 7.73 47.54 80 0.0018 0.0016 0.0017 10 22 18
Ulpia Traiana Tricensimae 6.44 51.67 80 0.0012 0.0009 0.0012 19 8 10
Narbo 3 43.2 90 0.0025 0.0025 0.0024 10 21 2
Aeclanum 15.01 41.06 80 0.0013 0.0013 0.0012 9 17 7
Condate -1.69 48.13 70 0.0015 0.0019 0.0015 19 8 4
Legio VII -5.57 42.6 70 0.001 0.0007 0.0009 15 1 12
Tyrus 35.2 33.28 90 0.0013 0.0011 0.0013 23 20 15
Metagonium Pr. 6.47 37.09 60 0.0023 0.0014 0.0021 5 14 3
Capua 14.24 41.09 90 0.0012 0.0015 0.0013 9 17 7
Apollonia Pontica 27.7 42.42 80 0.0012 0.0009 0.0011 24 18 9
Gorgippia 37.31 44.89 80 0.0013 0.0012 0.0013 24 12 11
Pella 22.52 40.77 80 0.0011 0.0013 0.0011 14 17 5
Comana 36.33 38.34 80 0.0012 0.0017 0.0012 21 12 15
Themiskyra 36.97 41.22 70 0.0013 0.0008 0.0012 24 12 11
Corfinium 13.84 42.12 80 0.0018 0.0019 0.0018 9 13 7
Chersonesos 33.49 44.61 90 0.0017 0.0017 0.0017 24 12 11
Neapolis (Thrace) 24.47 40.95 80 0.0018 0.0023 0.0018 14 18 5
Soura 38.8 35.91 70 0.0016 0.0016 0.0017 4 4 11
Kardamis 25.04 31.92 70 0.001 0.0007 0.001 22 23 19
Ptolemais Hermiou 31.8 26.48 80 0.0016 0.001 0.0016 22 19 19
Segusio 7.01 45.12 70 0.0014 0.0015 0.0013 10 21 2
Nuceria 14.67 40.74 80 0.0013 0.0011 0.0013 9 3 7
Berytus 35.52 33.9 90 0.0017 0.0015 0.0017 21 20 15
Castulo -3.63 38.04 80 0.0013 0.0014 0.0012 15 16 12
Populonium 10.5 43 80 0.0018 0.0013 0.0017 9 3 16
Vorgium -3.58 48.3 70 0.0008 0.0011 0.0009 19 8 4
x 22.98 45.58 6 0.0019 0.0017 0.0017 13 7 9
Tubusuctu 4.83 36.67 80 0.0012 0.0011 0.0012 5 14 3
Mampsoukrenai 34.89 37.08 60 0.0013 0.001 0.0013 21 12 15
Lacobriga -4.6 42.35 70 0.0014 0.0011 0.0014 15 1 4
Mamucio -2.33 53.46 70 0.0016 0.0019 0.0016 7 9 1
Divodurum 6.19 49.12 70 0.0016 0.0021 0.0014 19 8 10
Samarobriva 2.29 49.89 70 0.0016 0.0021 0.0016 19 8 10
Caudium 14.64 41.06 80 0.0013 0.0012 0.0013 9 17 7
Epidaurum 18.22 42.58 80 0.0017 0.0011 0.0016 20 13 14
Banasa -6.12 34.61 80 0.0014 0.0017 0.0014 5 14 3
Hydruntum 18.49 40.15 70 0.0015 0.0011 0.0015 20 17 14
Sinuessa 13.83 41.16 80 0.0017 0.0016 0.0017 9 17 7
Eburacum -1.11 53.95 90 0.0021 0.0027 0.0019 7 9 1
Augusta Taurinorum 7.69 45.07 80 0.0014 0.0011 0.0014 10 21 2
Iuvavum 13.06 47.8 80 0.0013 0.0013 0.0011 17 2 13
Gythion 22.57 36.76 80 0.0011 0.0011 0.0011 18 20 5
Beneharnum -0.44 43.33 70 0.0019 0.0016 0.0018 15 21 4
Oescus 24.48 43.7 80 0.0019 0.0029 0.0019 13 7 9
Gaza 34.46 31.51 90 0.0018 0.0017 0.0018 23 4 17
Lamasba 5.91 35.6 80 0.0015 0.0011 0.0015 5 14 3
Genua 8.93 44.41 70 0.0019 0.0015 0.0018 9 11 16
Salmantica -5.66 40.96 80 0.0009 0.0017 0.001 15 1 12
Astypaleia 26.35 36.55 60 0.0014 0.0013 0.0013 14 20 5
Tyras 30.35 46.2 80 0.0018 0.0016 0.0018 24 7 11
Sebasteia 37.03 39.75 90 0.0018 0.0021 0.0017 24 12 11
Emerita Augusta -6.35 38.91 90 0.0019 0.0028 0.0019 15 1 12
Valentia 4.89 44.93 80 0.0017 0.0016 0.0017 10 21 2
Salernum 14.77 40.68 80 0.0015 0.0028 0.0016 9 3 7
Asturica -6.05 42.46 90 0.0018 0.003 0.0019 15 1 12
Siscia 16.37 45.48 90 0.0014 0.0027 0.0014 17 13 13
Argentorate 7.77 48.59 80 0.0017 0.0015 0.0015 19 8 10
Limonum 0.35 46.57 80 0.0012 0.0016 0.0012 15 8 4
Virovesca -3.32 42.55 70 0.0016 0.0021 0.0017 15 21 4
Odessus 27.91 43.21 80 0.0019 0.0015 0.0018 24 18 9
x 19.15 44.29 6 0.0017 0.0023 0.0018 13 13 13
Alba Fucens 13.41 42.08 80 0.0013 0.0014 0.0013 9 13 7
Proconnesus 27.56 40.59 60 0.0012 0.0007 0.0012 14 18 5
Kriou Metopon Pr. 23.58 35.27 60 0.0015 0.0015 0.0015 18 20 5
Tabia 34.53 39.86 80 0.001 0.0017 0.0011 24 12 11
Oea 13.17 32.9 90 0.0012 0.0006 0.0012 12 23 8
Bononia 11.35 44.49 80 0.0017 0.0021 0.002 16 3 16
Ilerda 0.62 41.61 80 0.0012 0.0016 0.0012 15 21 12
Xanthos 29.33 36.36 80 0.001 0.0013 0.0011 14 15 5
Tanais 39.26 47.27 80 0.0007 0.0007 0.0007 24 12 11
Senia 14.92 44.99 80 0.0018 0.0019 0.0017 16 13 18
x 19.63 42.01 6 0.0017 0.0017 0.0017 20 7 14
Thabraca 8.75 36.95 80 0.0021 0.0013 0.0019 5 14 3
Maritima 12.06 37.97 60 0.0007 0.0006 0.0007 12 14 8
Samonion Pr. 26.25 35.28 60 0.0012 0.001 0.0012 18 20 5
Perge 30.86 36.97 90 0.0013 0.002 0.0014 21 12 15
Gadara 35.73 32.06 80 0.0012 0.001 0.0012 23 4 17
Genava 6.14 46.2 70 0.0018 0.0023 0.0018 10 22 2
x 19.66 41.08 6 0.0012 0.0031 0.0013 20 17 14
Kos 27.29 36.89 70 0.0018 0.0015 0.0018 14 20 5
Aelana 35 29.53 80 0.0008 0.0009 0.0007 23 4 17
Porolissum 23.19 47.17 80 0.0009 0.0011 0.0009 13 7 9
Pantikapaion 36.41 45.24 90 0.0024 0.0022 0.0024 24 12 11
Cabilonnum 4.84 46.78 70 0.0019 0.0012 0.0018 10 8 2
Italica -6.03 37.44 80 0.0016 0.0019 0.0016 15 1 12
Tibur 12.8 41.96 80 0.0012 0.0013 0.0012 9 13 7
Malea Pr. 23.2 36.44 60 0.002 0.0019 0.0019 18 20 5
Nisibis 41.24 37.08 80 0.002 0.0027 0.0021 4 5 11
Caesarea (Phrygia) 31.18 38.3 90 0.0015 0.0023 0.0015 21 12 15
Ocriculum 12.47 42.41 80 0.0013 0.001 0.0013 9 3 7
Emmaus 34.99 31.84 80 0.0013 0.001 0.0013 23 4 17
Diana Veteranorum 5.89 35.79 80 0.0014 0.0013 0.0014 5 14 3
X 23.5 46.02 6 0.0018 0.0022 0.0017 13 7 9
Titius (river) 15.86 43.72 60 0.001 0.0006 0.001 16 13 18
Ad fl. Tigrim 42.19 37.34 60 0.0009 0.0007 0.0007 4 5 11
Claudiopolis 31.6 40.74 80 0.0012 0.0013 0.0011 24 12 11
Narnia 12.52 42.52 80 0.0014 0.0011 0.0013 9 3 7
Heliopolis 31.3 30.12 80 0.0013 0.0017 0.0011 22 19 19
Germa 31.62 39.51 90 0.0013 0.0012 0.0012 24 12 11
Praetorium 15.97 31.29 70 0.0015 0.0023 0.0015 12 23 8
Alexandria 29.91 31.2 100 0.002 0.0009 0.0018 22 19 19
x -8.71 39.21 6 0.002 0.0012 0.0018 15 1 12
Byblos 35.64 34.12 80 0.0012 0.0009 0.0012 21 20 15
Portus Magnus -0.27 35.81 70 0.002 0.0013 0.0018 5 14 3
Parma 10.33 44.8 80 0.0018 0.0022 0.0015 16 11 16
Tingi -5.8 35.79 90 0.0022 0.0024 0.0022 5 14 3
Burdigala -0.59 44.86 90 0.0027 0.002 0.0026 15 8 4
Tenedos 26.05 39.82 60 0.002 0.0014 0.002 14 15 5
Durocortorum 4.03 49.26 80 0.0022 0.0027 0.002 19 8 10
Sinope 35.04 42.05 90 0.0026 0.0021 0.0024 24 12 11
Dertosa 0.52 40.81 80 0.0013 0.0007 0.0012 15 16 12
Sardis 28.06 38.48 90 0.001 0.0026 0.0012 14 15 5
Amaseia 35.82 40.65 80 0.0011 0.0018 0.0011 24 12 11
Burrio -2.93 51.74 80 0.0011 0.0012 0.0011 7 9 1
Poetovio 15.87 46.42 80 0.0015 0.002 0.0019 17 2 13
Palmyra 38.28 34.56 90 0.0011 0.002 0.0011 4 4 17
Alpheos (river) 21.45 37.61 60 0.0012 0.0011 0.0012 18 20 14
Latopolis 32.55 25.29 80 0.0002 0.0008 0.0015 1 10 19
Naissus 21.9 43.33 90 0.0021 0.0026 0.0021 13 7 9
Boubastis 31.52 30.58 70 0.0012 0.0016 0.0017 22 19 19
Phasis 41.67 42.15 80 0.0014 0.001 0.0014 24 12 11
Musti 9.14 36.34 80 0.0015 0.0019 0.0016 12 14 3
Caesarea Maritima 34.9 32.51 80 0.0023 0.0022 0.0023 23 4 17
Lugdunum Convenarum 0.56 43.04 80 0.0012 0.0014 0.0012 15 21 4
Camarina 14.45 36.85 80 0.0013 0.0012 0.0013 12 14 8
Maiensis Statio 11.17 46.66 60 0.0011 0.0017 0.0011 17 2 18
Narona 17.63 43.05 80 0.002 0.0013 0.0019 20 13 14
Dorylaion 30.53 39.81 80 0.0012 0.0028 0.0014 24 15 11
Mouth of Pontus 29.12 41.21 60 0.001 0.0009 0.0008 24 18 9
Scodra 19.51 42.07 80 0.0013 0.001 0.0013 20 13 14
Melita 14.4 35.88 80 0.0007 0.0007 0.0007 12 14 8
Lixus -6.11 35.21 80 0.0021 0.0014 0.0021 5 14 3
Cuicul 5.73 36.32 80 0.0012 0.0011 0.0012 5 14 3
Heraclea Pontica 31.42 41.28 90 0.0018 0.0019 0.0016 24 12 11
Acroceraunia Pr. 19.32 40.44 60 0.0028 0.002 0.0027 20 13 14
Minturnae 13.77 41.24 90 0.0018 0.0014 0.0018 9 17 7
Isca -2.97 51.62 80 0.002 0.0012 0.0018 7 9 1
Amphipolis 23.84 40.81 90 0.0019 0.0019 0.0019 14 15 5
Myndos 27.24 37.08 70 0.0015 0.0014 0.0015 14 15 5
Aesuris -7.45 37.22 70 0.0019 0.0011 0.0022 15 1 12
Noviomagus 8.44 49.31 70 0.0016 0.002 0.0015 19 2 10
Glevum -2.26 51.87 80 0.0021 0.002 0.002 7 9 1
Dioscurias 41 42.99 90 0.0014 0.0012 0.0013 24 12 11
Perinthus 27.96 40.98 80 0.0028 0.0025 0.0028 14 18 5
Edessa 38.79 37.16 90 0.0024 0.0025 0.0021 4 5 11
Lepcis Magna 14.29 32.64 100 0.0026 0.003 0.0025 12 23 8
Nicopolis (Pontus) 38.15 40.15 80 0.0012 0.0016 0.0012 24 12 11
Kimaros Pr. 23.6 35.63 60 0.0018 0.0018 0.0018 18 20 5
Lacinium Pr. 17.2 39.03 60 0.0016 0.0013 0.0016 20 17 14
Sirmium 19.61 44.97 90 0.0017 0.0018 0.0021 13 13 13
Beneventum 14.76 41.14 90 0.0024 0.0023 0.0023 9 17 7
Novae 25.38 43.62 80 0.0015 0.001 0.0013 13 7 9
Arae Philaenorum 18.79 30.29 70 0.0013 0.0008 0.0013 12 23 8
Nicaea 29.72 40.44 90 0.0009 0.0017 0.001 14 12 5
Ascalon 34.55 31.67 90 0.0024 0.0019 0.0024 23 4 17
Portus Blendium -4.04 43.43 70 0.0018 0.001 0.0016 15 21 4
Carnuntum 16.92 48.12 80 0.0014 0.0014 0.0017 17 2 13
Bostra 36.48 32.52 90 0.0017 0.0017 0.0016 23 4 17
Aesernia 14.23 41.59 80 0.0013 0.0014 0.0013 9 13 7
Nicomedia 29.92 40.77 90 0.0027 0.002 0.0027 14 18 5
Palma 2.65 39.57 80 0.0009 0.0008 0.0009 15 16 12
Cephalae Pr. 15.21 32.37 60 0.0012 0.0007 0.0012 12 23 8
Thessalonica 22.97 40.64 90 0.0026 0.0031 0.0025 14 15 5
Augustodunum 4.28 46.97 80 0.0018 0.0021 0.0016 10 8 2
Emesa 36.72 34.73 80 0.0016 0.0014 0.0013 23 4 17
x 36.11 32.63 6 0.0018 0.0014 0.0017 23 4 17
x -8.67 39.22 6 0.0012 0.0013 0.0016 15 1 12
Parium 27.07 40.42 70 0.002 0.0012 0.002 14 18 5
Athenae 23.72 37.97 90 0.0014 0.0013 0.0014 18 15 5
Herdoniae 15.62 41.32 70 0.0013 0.0013 0.0013 9 13 7
Chersonesos Akra 23.12 32.61 60 0.0008 0.0004 0.0008 12 23 8
Castrum Truentinum 13.9 42.9 80 0.0016 0.0011 0.0016 16 3 7
Cossyra 11.94 36.83 70 0.0012 0.0009 0.0011 12 14 8
Arausio 4.81 44.14 80 0.0012 0.0007 0.0012 10 21 2
Samosata 38.52 37.53 90 0.0013 0.0011 0.0016 4 5 11
Vesontio 6 47.22 80 0.0012 0.0015 0.0011 10 8 2
Tacape 10.1 33.88 90 0.002 0.004 0.0022 12 14 8
Lampsacus 26.69 40.35 80 0.0014 0.0016 0.0013 14 15 5
Claudia Aprensis 27.07 40.98 90 0.0012 0.0027 0.0013 14 18 5
Isthmia 23.13 37.93 90 0.0022 0.0022 0.0021 18 20 5
Magnesia 27.53 37.86 80 0.0012 0.0009 0.0012 14 15 5
Ioppe 34.75 32.05 6 0.0014 0.001 0.0014 23 4 17
Lokroi Epizephyrioi 16.26 38.24 80 0.0013 0.001 0.0012 12 17 8
Ovilava 14.03 48.16 80 0.0023 0.0026 0.0019 17 2 13
Sisapo -4.52 38.64 70 0.0011 0.0015 0.0011 15 16 12
Beroia 37.15 36.22 80 0.0013 0.0014 0.0012 4 5 11
Ammon 25.54 29.2 80 0.0005 0.0026 0.0008 22 10 19
Regina Castra 12.1 49.01 80 0.0012 0.0008 0.0011 17 2 13
Side 31.4 36.78 90 0.0019 0.0014 0.0018 21 12 15
Taliata 22.15 44.46 70 0.0024 0.0015 0.0022 13 7 9
Barium 16.87 41.13 70 0.0019 0.0017 0.0019 9 13 7
Conimbriga -8.5 40.08 80 0.0011 0.0013 0.0011 15 1 12
Sitifis 5.39 36.19 90 0.0018 0.0016 0.0018 5 14 3
Cenabum 1.91 47.91 80 0.0017 0.002 0.0017 19 8 4
Carrhae 39.02 36.88 80 0.0008 0.0007 0.0008 4 5 11
Dertona 8.86 44.9 80 0.0008 0.0009 0.0008 9 11 16
Pyramos (river) 35.56 36.57 60 0.0022 0.0016 0.0022 21 20 15
Virunum 14.41 46.7 90 0.0016 0.0025 0.0018 17 2 13
Bononia (Moesia) 22.9 44.01 80 0.0016 0.0018 0.002 13 7 9
Rusaddir -2.94 35.28 80 0.0014 0.0007 0.0013 5 14 3
Formiae 13.61 41.26 80 0.0012 0.0009 0.0012 9 3 7
Antiochia 36.17 36.21 100 0.0014 0.0022 0.002 21 20 15
x 25.86 42.07 6 0.0016 0.0021 0.0016 13 18 9
Calagurris -1.97 42.3 80 0.0012 0.0014 0.0012 15 21 4
Krane 20.57 38.22 80 0.0012 0.0011 0.0012 18 20 14
Cetium 15.62 48.2 70 0.0013 0.0013 0.0011 17 2 13
Nemetacum 2.76 50.3 70 0.0012 0.0013 0.0012 19 8 10
Sala -6.81 34.01 80 0.0014 0.0013 0.0014 5 14 3
Eusperides 20.07 32.12 80 0.0002 0.0002 0.0002 2 0 0
Terenouthis 30.82 30.43 70 0.0014 0.0009 0.0013 22 19 19
Venusia 15.81 40.96 80 0.0011 0.002 0.0011 9 17 7
Nemausus 4.36 43.84 80 0.0011 0.0013 0.0011 10 21 2
Drobeta 22.66 44.64 80 0.0012 0.0016 0.0015 13 7 9
Salsovia 29.12 45.07 70 0.0008 0.0011 0.0015 24 7 9
Pompelo -1.65 42.8 70 0.0017 0.0019 0.0017 15 21 4
Histria 28.77 44.55 80 0.0021 0.0015 0.0021 24 7 9
Igilgili 5.77 36.82 80 0.0012 0.0006 0.0011 5 14 3
Selinous 23.68 39.14 70 0.0016 0.0014 0.0015 14 15 5
Hermopolis Magna 30.8 27.78 90 0.0015 0.0012 0.0015 22 19 19
Patara 29.32 36.26 80 0.0022 0.0017 0.0022 14 20 5
Bracara Augusta -8.42 41.55 90 0.0012 0.0025 0.0013 15 1 12
Satala 39.66 40.02 80 0.0011 0.0019 0.0012 24 12 11
Tarsus 34.9 36.92 90 0.0013 0.0013 0.0013 21 12 15
Meninge 10.92 33.68 80 0.002 0.001 0.0019 12 14 8
Naupactus 21.83 38.4 80 0.0016 0.0011 0.0016 18 17 14
Sufasar 2.51 36.19 80 0.0013 0.0029 0.0015 5 14 3
Pedalion Pr. 34.08 34.96 60 0.002 0.0018 0.002 21 20 15
Deva -2.9 53.19 80 0.0021 0.0016 0.0019 7 9 1
Lissus 19.66 41.79 80 0.0017 0.001 0.0016 20 7 14
Amastris 32.38 41.75 80 0.0012 0.0009 0.0011 24 12 11
Segedunum -1.53 54.99 60 0.0008 0.0007 0.0012 7 8 1
Penne Locos 6.92 46.4 60 0.0014 0.0012 0.0014 10 22 2
Singidunum 20.47 44.82 90 0.0013 0.0009 0.0017 13 13 13
Caralis 9.11 39.21 80 0.001 0.001 0.0009 9 3 16
Barcino 2.16 41.36 90 0.0013 0.0008 0.0013 15 21 12
Lutetia 2.34 48.85 70 0.0017 0.0023 0.0021 19 8 10
Chalcedon 29.03 40.99 80 0.0011 0.001 0.0012 14 18 5
Raphia 34.25 31.29 80 0.0014 0.0007 0.0013 23 19 17
x -6.11 38.96 6 0.0019 0.0015 0.0018 15 16 12
Bonna 7.09 50.74 80 0.0015 0.0007 0.0013 19 8 10
Interpromium 13.93 42.24 70 0.0012 0.001 0.0012 9 13 7
Mursa 18.67 45.55 80 0.0015 0.002 0.0023 17 13 13
Potaissa 23.76 46.56 80 0.0017 0.0018 0.0016 13 7 9
Emporiae 3.1 42.15 80 0.0013 0.0008 0.0012 10 21 2
Kellis 29.09 25.52 80 0.0018 0.0013 0.0016 22 10 19
Brundisium 17.94 40.64 80 0.0024 0.002 0.0023 20 17 14
Ara Agrippinensium 6.94 50.94 90 0.0018 0.002 0.0017 19 8 10
Trapezus 39.72 41 80 0.0022 0.002 0.0022 24 12 11
Domavium 19.38 44.14 80 0.0008 0.0005 0.0008 13 13 13
Augusta Vindelicum 10.89 48.36 90 0.0018 0.0017 0.0016 17 2 13
Karambis Pr. 33.37 42.01 60 0.0017 0.0015 0.0017 24 12 11
Cibyra 29.52 37.16 80 0.0014 0.0024 0.0015 21 15 15
Kotyora 37.88 41 70 0.0017 0.0012 0.0017 24 12 11
Batnae 38.42 36.98 80 0.0022 0.0015 0.0019 4 5 11
Mothis 28.95 25.51 80 0.0016 0.0013 0.0016 22 10 19
Deultum 27.31 42.4 80 0.0012 0.0032 0.0014 24 18 9
Cumae 14.04 40.85 80 0.0017 0.0013 0.0017 9 3 7
x 15.39 46.36 6 0.0019 0.0014 0.0016 17 2 13
Gesoriacum 1.61 50.72 70 0.0033 0.0024 0.003 19 8 10
Portus Pachyni 15.14 36.68 70 0.0027 0.0025 0.0027 12 14 8
Heraklea 21.34 41.02 80 0.0015 0.0023 0.0015 14 17 5
Mouth of Witham 0.01 52.96 6 0.0014 0.001 0.0017 7 9 1
x 18.49 45.28 6 0.0017 0.0014 0.0016 17 13 13
Dyrrhachium 19.45 41.32 90 0.0021 0.0014 0.002 20 17 14
Attalea 30.7 36.89 80 0.002 0.0018 0.002 21 15 15
Boiodurum 13.45 48.57 60 0.0013 0.0015 0.002 17 2 13
Aufidena 16.19 41.34 60 0.0016 0.0013 0.0016 9 13 7
Caeciliana 38.12 36.66 70 0.0024 0.0018 0.0023 4 5 11
Corcyra 19.92 39.59 80 0.0015 0.0011 0.0015 18 17 14
Petuaria -0.59 53.69 70 0.0024 0.0012 0.002 7 8 1
x 11.64 46.78 6 0.0017 0.002 0.0016 17 2 18
Olbia 9.5 40.93 80 0.0018 0.0017 0.0017 9 3 16
Auzia 3.68 36.15 80 0.001 0.0018 0.0011 5 14 3
Coriosopitum -2 54.98 70 0.0011 0.0018 0.0016 7 9 1
Camulodunum 0.9 51.89 80 0.0013 0.0013 0.0012 7 9 1
Palinurus Pr. 14.93 40.26 60 0.0015 0.0013 0.0014 9 3 7
Fregellanum 13.51 41.55 60 0.0014 0.0012 0.0013 9 17 7
Abodiacum 10.91 47.91 60 0.0022 0.0027 0.0021 17 2 18
Summuntorium 10.79 48.64 70 0.0016 0.0021 0.0015 17 2 13
Seleukeia Pieria 35.93 36.12 90 0.0023 0.0016 0.0024 21 20 15
Corduba -4.78 37.88 100 0.0012 0.0012 0.0012 15 16 12
Cyrene 21.87 32.82 90 0.0016 0.0019 0.0016 12 23 8
Roma 12.49 41.89 100 0.0042 0.005 0.0042 9 3 7
Tridentum 11.12 46.07 80 0.0016 0.0021 0.0015 17 11 18
Pistoriae 10.89 43.93 80 0.0016 0.0013 0.0014 16 3 16
Massilia 5.36 43.31 80 0.0022 0.0012 0.002 10 21 2
Paphos 32.41 34.76 90 0.0011 0.0009 0.0011 21 20 15
Ulpiana 21.19 42.6 80 0.001 0.0017 0.0011 13 7 9
Patrae 21.74 38.26 90 0.0016 0.0013 0.0016 18 20 14
Verona 10.99 45.44 90 0.0021 0.0033 0.0023 17 11 18
Spinis -1.23 51.4 60 0.0015 0.0017 0.0016 7 9 1
Loium 0.72 49.52 60 0.0015 0.0007 0.0014 19 8 10
Reate 12.86 42.4 80 0.0011 0.0017 0.0011 9 3 7
Caunus 28.63 36.83 80 0.0014 0.0011 0.0014 14 20 5
Saldae 5.07 36.76 80 0.002 0.0021 0.002 5 14 3
Misenum 14.08 40.78 80 0.0012 0.0009 0.0012 9 3 7
Caput Vada 11.16 35.23 60 0.0013 0.0007 0.0012 12 14 8
Lambaesis 6.26 35.49 90 0.0014 0.0012 0.0014 5 14 3
Apollonia 34.82 32.21 80 0.0014 0.001 0.0013 23 4 17
Puteoli 14.11 40.83 90 0.003 0.0024 0.003 9 3 7
x 11.62 44.82 6 0.0002 0.0012 0.0014 3 11 16
Pisae 10.4 43.72 90 0.0017 0.0014 0.0021 9 3 16
Potidaion 27.21 35.51 70 0.0011 0.0009 0.0011 18 20 5
Iulium Carnicum 13.01 46.45 70 0.0014 0.0011 0.0013 17 2 18
Lydda 34.89 31.96 90 0.0017 0.0019 0.0017 23 4 17
Cirta 6.59 36.36 90 0.0019 0.0027 0.002 5 14 3
Qasr Farafra 27.93 27.04 60 0.0013 0.0018 0.0013 22 10 19
Adramyttium 26.94 39.5 80 0.0015 0.001 0.0015 14 15 5
Volubilis -5.56 34.09 80 0.0006 0.0016 0.0007 5 14 3
Volsinii 11.99 42.64 80 0.0012 0.0016 0.0012 16 3 16
Syene 32.9 24.09 80 0.0019 0.0012 0.0016 22 10 19
Veldidena 11.39 47.26 60 0.0018 0.0015 0.0016 17 2 18
Dianium 0.1 38.84 80 0.002 0.0012 0.0019 15 16 12
Messana 15.56 38.19 90 0.0025 0.0023 0.0025 12 14 8
Augusta Treverorum 6.68 49.76 90 0.0013 0.0015 0.0015 19 8 10
Corinthus 22.89 37.91 100 0.0015 0.0013 0.0015 18 20 14
Perdices 5.37 35.84 70 0.0018 0.002 0.0018 5 14 3
Euesperides 20.08 32.12 80 0.0021 0.0014 0.002 12 23 8
Myriandros 36.19 36.59 80 0.0015 0.0012 0.0016 21 20 15
Augustobriga -5.68 39.81 70 0.0013 0.0013 0.0012 15 16 12
Serdica 23.33 42.73 90 0.0015 0.0023 0.0015 13 7 9
Neapolis 14.23 40.84 90 0.0018 0.0015 0.0018 9 3 7
Tomis 28.64 44.19 80 0.0014 0.001 0.0014 24 18 9
Archelais 34.05 38.38 80 0.0011 0.0015 0.0011 21 12 15
Akitas Pr. 21.88 36.72 60 0.0012 0.0012 0.0012 18 20 5
Fanum Fortunae 13.02 43.84 80 0.0015 0.0018 0.0015 16 3 18
Londinium -0.08 51.52 90 0.0029 0.002 0.0027 7 9 1
Cambete 7.5 47.67 60 0.0018 0.0017 0.0016 10 8 18
Aquae Sulis -2.37 51.39 70 0.0015 0.0019 0.0015 7 9 1
Iuliobona 0.54 49.53 70 0.0018 0.0009 0.0016 19 8 10
Calleva -1.08 51.37 80 0.0017 0.0016 0.0016 7 9 1
Ephesus 27.35 37.94 100 0.003 0.0023 0.003 14 15 5
Brigantium 9.72 47.5 70 0.0018 0.0016 0.0018 17 2 18
Aquileia 13.36 45.77 90 0.0029 0.0024 0.0027 17 13 18
Apollonia-Sozousa 21.75 32.93 80 0.0022 0.0013 0.0022 12 23 8
Thaenae 10.7 34.67 80 0.0013 0.0007 0.0012 12 14 8
Pax Iulia -7.85 38 90 0.0013 0.0011 0.0012 15 1 12
Durostorum 27.26 44.12 80 0.0008 0.0013 0.0013 13 7 9
Kallipolis-Anxa 17.99 40.06 70 0.0011 0.0008 0.0011 20 17 14
Kalos Limen 32.7 45.52 80 0.0018 0.0017 0.0018 24 7 11
Zarai 5.68 35.8 80 0.0015 0.0011 0.0014 5 14 3
Arupium 15.29 44.83 70 0.001 0.0011 0.001 16 13 18
Aleria 9.53 42.12 80 0.0015 0.0014 0.0015 9 3 16
Pons Aeni 12.12 47.88 70 0.0017 0.002 0.0019 17 2 13
Spoletium 12.74 42.74 90 0.0011 0.0019 0.0011 9 3 7
Pompeii 14.48 40.75 80 0.0013 0.0008 0.0013 9 3 7
Venonis -1.3 52.49 60 0.0016 0.0022 0.0015 7 9 1
Tergeste 13.77 45.65 80 0.0018 0.0017 0.0017 16 13 18
Pergamum 27.18 39.14 90 0.0013 0.0019 0.0014 14 15 5
Geraistos 24.55 37.98 70 0.0017 0.0014 0.0016 14 15 5
Burnum 16 44.01 80 0.0013 0.0017 0.0014 16 13 18
Circesium 40.45 35.17 90 0.002 0.0019 0.0025 4 5 11
Coptos 32.81 26.01 80 0.0043 0.005 0.004 22 19 19
Ad Publicanos 6.37 45.67 60 0.0013 0.0015 0.0013 10 22 2
Apamea (Pisidia) 30.17 38.07 90 0.0013 0.0012 0.0012 21 15 15
Theveste 8.14 35.41 80 0.0022 0.0024 0.0022 12 14 3
Syracusae 15.29 37.07 90 0.0012 0.001 0.0012 12 14 8
x 30.61 38.33 6 0.0018 0.0017 0.0017 21 15 15
Iuliobriga -4.11 43 80 0.0013 0.0011 0.0013 15 21 4
Albulae -1.16 35.29 70 0.0009 0.0021 0.0011 5 14 3
Iol Caesarea 2.2 36.61 90 0.0021 0.0014 0.0019 5 14 3
Tibiscum 22.19 45.46 80 0.0017 0.002 0.0017 13 7 9
Thebae 23.32 38.32 80 0.001 0.0016 0.0011 18 15 5
Naucratis 30.61 30.85 80 0.002 0.0016 0.0019 22 19 19
Laodicea ad Lycum 29.12 37.84 90 0.0016 0.0022 0.0016 21 15 15
Ebusus 1.42 38.91 80 0.0023 0.0019 0.0022 15 16 12
Herakleopolis 30.94 29.09 80 0.0024 0.0012 0.0022 22 19 19
Tiliaventum (river) 13.1 45.64 60 0.0012 0.0007 0.0011 17 11 18
Venta -1.32 51.07 80 0.0017 0.0012 0.0016 7 9 1
Lindum -0.54 53.24 80 0.0011 0.0018 0.0016 7 9 1
Aequum Tuticum 15.07 41.26 70 0.0018 0.002 0.0018 9 13 7
Hadrumetum 10.64 35.84 90 0.0021 0.0037 0.0022 12 14 8
Salapia 16.02 41.39 70 0.0011 0.0007 0.0011 9 13 7
Vienna 4.88 45.52 90 0.0019 0.0016 0.0018 10 22 2
Larinum 14.92 41.81 80 0.0009 0.0017 0.001 9 13 7
Aginnum 0.63 44.2 80 0.0016 0.0018 0.0017 15 8 4
Rhodos 28.23 36.44 80 0.0038 0.0035 0.0036 14 20 5
x 15.69 44.37 6 0.0014 0.0017 0.0014 16 13 18
Aguntum 12.82 46.84 80 0.0012 0.0015 0.0012 17 2 18
Kadiston Mons 25.77 35.34 60 0.0021 0.0019 0.0021 18 20 5
Atria 12.05 45.05 70 0.0011 0.0013 0.0011 17 11 18
Iuliomagus -0.55 47.46 80 0.0019 0.0015 0.002 19 8 4
Lancia -5.42 42.53 80 0.0017 0.0011 0.0016 15 1 12
Cinolis 34.16 41.96 60 0.0012 0.001 0.0012 24 12 11
Lugdunum Batavorum 4.4 52.2 70 0.0012 0.0008 0.0012 19 8 10
Celeia 15.26 46.23 80 0.0013 0.0009 0.0011 17 13 13
Thamugadi 6.47 35.5 80 0.0016 0.0019 0.0017 5 14 3
Civitas Namnetum -1.56 47.21 70 0.0021 0.0017 0.002 15 8 4
Trogilion Pr. 27.02 37.67 60 0.0022 0.0019 0.0022 14 15 5
Endidae 11.27 46.32 60 0.0014 0.0009 0.0013 17 11 18
Viroconium -2.65 52.66 80 0.0016 0.0018 0.0016 7 9 1
Lugdunum 4.82 45.76 100 0.0019 0.0017 0.0019 10 8 2
Mediolanum (Aquitania) -0.63 45.75 80 0.0016 0.0022 0.0016 15 8 4
Berenice 35.48 23.9 80 0.0003 0.0018 0.0005 22 19 19
Arelate 4.63 43.69 90 0.003 0.0027 0.003 10 21 2
Demetrias 22.92 39.3 90 0.0016 0.0014 0.0016 14 15 5
Cnidus 27.37 36.69 80 0.0014 0.0012 0.0014 14 20 5
Iader 15.23 44.11 80 0.0026 0.0021 0.0025 16 13 18
Ammaedara 8.46 35.57 80 0.0012 0.0012 0.0012 12 14 3
Mediolanum 9.19 45.46 100 0.0013 0.0015 0.0012 17 11 18
Summus Pyreneus (West) -1.36 43.01 60 0.0013 0.001 0.0013 15 8 4
Azotus Paralios 34.65 31.8 80 0.0014 0.001 0.0013 23 4 17
Rusicade 6.91 36.88 80 0.0018 0.0021 0.0019 5 14 3
Philadelpheia 35.93 31.95 90 0.0021 0.0026 0.0021 23 4 17
Lousonna 6.63 46.52 60 0.0014 0.001 0.0014 10 22 2
Katabolos 35.98 36.92 70 0.0016 0.0015 0.0016 21 12 15
Omboi 32.95 24.47 80 0.0017 0.002 0.0021 22 10 19
Selinus 12.83 37.58 90 0.0012 0.0011 0.0012 12 14 8
Mercurii Pr. 11.01 37.06 60 0.0016 0.0011 0.0015 12 14 8
Nicopolis 20.74 39.01 80 0.0018 0.0026 0.0018 18 17 14
Sarmizegethusa 22.78 45.52 80 0.0014 0.0008 0.0013 13 7 9
Constantinopolis 28.99 41.02 100 0.0032 0.003 0.0031 14 18 5
Pelusium 32.57 31.04 90 0.0029 0.0036 0.003 22 19 19
x 7.88 49.96 6 0.002 0.0017 0.0017 19 8 10
Saguntum -0.27 39.67 80 0.0023 0.0018 0.0022 15 16 12
Thelseai 36.7 33.64 60 0.0013 0.0014 0.0012 23 4 17
Sigeion 26.2 40.01 70 0.0021 0.0017 0.0021 14 15 5
Bargylia 27.59 37.19 80 0.0011 0.0009 0.0011 14 15 5
Heracleum Pr. 16.06 37.93 60 0.0013 0.001 0.0013 12 3 8
Chios 26.14 38.37 80 0.002 0.0014 0.0019 14 15 5
Gallicum Fretum 9.16 41.39 60 0.0017 0.0016 0.0016 9 3 16
Athos Mons 24.22 40.26 60 0.0015 0.001 0.0014 14 15 5
x 13.13 46.37 6 0.0019 0.0015 0.0018 17 2 18
Bilbilis -1.6 41.38 80 0.001 0.0016 0.0011 15 16 4
Curia 9.53 46.85 70 0.0013 0.0017 0.0013 17 2 18
Amathous 33.13 34.71 80 0.0011 0.001 0.0011 21 20 15
Aphroditopolis 31.25 29.41 80 0.0015 0.0009 0.0014 22 19 19
Hierasykaminos 32.68 23.07 70 0.001 0.0009 0.0008 22 10 19
Carthago Nova -0.99 37.6 90 0.0017 0.0017 0.0017 15 16 12
Cosa 11.29 42.41 80 0.002 0.0021 0.0019 9 3 16
Asculum 13.57 42.85 90 0.0011 0.0014 0.0011 16 3 7
Toletum -4.02 39.86 80 0.0014 0.0026 0.0015 15 16 12
Damascus 36.31 33.51 90 0.0023 0.0025 0.0022 23 4 17
Summus Pyreneus (East) -0.73 42.85 60 0.0012 0.0012 0.0012 15 21 4
Regium 15.64 38.11 80 0.0022 0.0016 0.0022 12 3 8
Ostia/Portus 12.29 41.75 90 0.0024 0.0018 0.0023 9 3 7
Brundulum 12.31 45.19 60 0.0011 0.0009 0.0015 17 11 18
Scythopolis 35.5 32.51 90 0.0021 0.0026 0.0021 23 4 17
Hierakonpolis 30.48 31.02 70 0.0014 0.0011 0.0018 22 19 19
Eleusis 23.54 38.05 80 0.0015 0.0015 0.0015 18 15 5
Hippo Regius 7.75 36.89 90 0.0025 0.002 0.0024 5 14 3
Brigetio 18.15 47.74 80 0.0016 0.0009 0.0011 6 2 13
Colubraria 0.69 39.9 60 0.0009 0.0008 0.0009 15 16 12
Philippi 24.29 41.02 80 0.0011 0.001 0.0011 14 15 5
Mounesis 30.61 24.68 70 0.0014 0.0021 0.0013 22 10 19
Casinum 13.83 41.49 90 0.0013 0.0013 0.0013 9 17 7
Petras Megas 25.09 31.75 70 0.0018 0.001 0.0017 22 23 19
Singara 41.86 36.33 90 0.0013 0.0016 0.0013 4 5 11
Oxyrhynchus 30.63 28.67 80 0.0015 0.001 0.0015 22 19 19
Memphis 31.28 30 90 0.0021 0.0017 0.0023 22 19 19
Aternum 14.21 42.46 80 0.0023 0.0022 0.0023 9 13 7
Scarbantia 16.6 47.69 80 0.0019 0.0017 0.0017 17 2 13
Automalax 19.13 30.25 70 0.0013 0.0008 0.0013 12 23 8
Arretium 11.86 43.47 90 0.0013 0.0014 0.0012 16 3 16
Cyrrhus 36.91 36.78 80 0.0013 0.0013 0.0012 4 5 11
Olisipo -9.15 38.73 80 0.0021 0.0019 0.0024 15 1 12
Ariminum 12.56 44.06 80 0.0016 0.0012 0.0016 16 3 18
Thasos 24.71 40.78 80 0.0007 0.0005 0.0007 14 18 5
x -7.68 37.94 6 0.0013 0.0015 0.0016 15 1 12
x -2.81 52.09 6 0.0016 0.0019 0.0016 7 9 1
Iconium 32.51 37.87 80 0.0011 0.0017 0.0011 21 12 15
Epiphaneia 36.75 35.14 80 0.0018 0.001 0.0013 23 20 17
Capsa 8.79 34.41 80 0.0011 0.0014 0.0012 12 14 3
Augusta Suessionum 3.32 49.38 70 0.0013 0.0011 0.0012 19 8 10
Klaudianon 33.49 26.81 80 0.0009 0.0009 0.0008 22 19 19
x 18.36 42.79 6 0.0017 0.0018 0.0017 20 13 14
Vibo Valentia 16.1 38.67 80 0.0009 0.0024 0.001 12 3 8
Augustonemetum 3.08 45.78 80 0.0007 0.0011 0.0007 10 8 2
Darnis 22.64 32.77 80 0.002 0.0031 0.0021 12 23 8
Sounion Pr. 24.03 37.65 60 0.0021 0.0018 0.0021 14 15 5
Luguvalium -2.94 54.89 80 0.0017 0.0015 0.0016 7 9 1
Kleides Pr. 34.59 35.7 60 0.0027 0.0021 0.0027 21 20 15
Alexandria ad Issum 36.2 36.58 6 0.0002 0.0002 0.0002 8 6 6
Leucas 20.71 38.83 80 0.0017 0.0013 0.0016 18 20 14
Confluentes 7.59 50.36 70 0.0014 0.0015 0.0022 19 8 10
Dessobriga -4.33 42.41 60 0.0019 0.0016 0.0019 15 21 4
Stobi 21.97 41.55 80 0.0011 0.0015 0.0011 14 7 5
Tarracina 13.25 41.29 90 0.0016 0.0013 0.0016 9 3 7
Pons Drusi 11.34 46.48 60 0.002 0.0013 0.0018 17 2 18
Augustobona 4.06 48.31 70 0.0011 0.002 0.0013 19 8 10
Aquae Terebellicae -1.06 43.73 70 0.0017 0.0018 0.0017 15 8 4
Hephaistia 25.23 39.93 70 0.0007 0.0006 0.0007 14 15 5
Panormus 13.32 38.12 90 0.0011 0.001 0.0011 12 14 8
Galacum -2.59 54.17 60 0.0011 0.0014 0.0011 7 9 1
Aventicum 7.03 46.88 80 0.0013 0.0016 0.0012 10 22 2
Decetia 3.46 46.85 70 0.0017 0.0022 0.0017 10 8 4
Sipontum 15.9 41.61 80 0.0023 0.0022 0.0023 9 13 7
Bulla Regia 8.74 36.56 80 0.0011 0.0014 0.0011 5 14 3
Emona 14.51 46.05 80 0.0014 0.0022 0.0013 17 13 13
x 17.89 43.14 6 0.0015 0.0022 0.0016 20 13 14
Caesaraugusta -0.87 41.65 90 0.0028 0.003 0.0028 15 21 4
Florentia 11.26 43.77 80 0.0022 0.0031 0.0025 16 3 16
Eleutheropolis 34.89 31.62 90 0.0012 0.0012 0.0012 23 4 17
Avaricum 2.4 47.08 90 0.0012 0.0015 0.0012 10 8 4
Thuburnica 8.46 36.53 80 0.0011 0.0011 0.0011 5 14 3
Faventia 11.88 44.29 70 0.0016 0.0019 0.0015 16 3 16
Ad Tricensium 13.22 46.16 60 0.0012 0.001 0.0012 17 13 18
Salamis 33.91 35.18 90 0.0011 0.0009 0.0011 21 20 15
Apollonopolis Magna 32.87 24.98 80 0.0002 0.0009 0.0015 11 10 19
Larissa 22.42 39.64 90 0.001 0.0019 0.001 18 15 14
Cibalae 18.8 45.28 80 0.0018 0.0012 0.0018 17 13 13
Pola 13.84 44.87 80 0.0018 0.0011 0.0017 16 13 18
Philippopolis 24.73 42.15 90 0.0016 0.0021 0.0015 13 7 9
Siga -1.47 35.26 80 0.0021 0.001 0.002 5 14 3
Ake-Ptolemais 35.08 32.93 80 0.0013 0.001 0.0013 23 20 15
Clipea 11.11 36.84 70 0.0017 0.0011 0.0016 12 14 8
Mariana -2.93 38.56 70 0.0021 0.0031 0.0021 15 16 12
Ferentinum 13.25 41.69 80 0.0013 0.0014 0.0012 9 3 7
Verulamium -0.36 51.75 80 0.0012 0.0013 0.0011 7 9 1
Oasis Parva 28.85 28.34 80 0.0014 0.0031 0.0016 22 10 19
Dierna 22.4 44.71 80 0.0013 0.0009 0.0012 13 7 9
Ilium 26.26 39.95 80 0.001 0.0014 0.001 14 15 5
Tarraco 1.23 41.12 100 0.0024 0.0017 0.0023 15 21 12
Lamia 22.44 38.9 80 0.0011 0.0016 0.0011 18 15 14
Altinum 12.41 45.54 80 0.0022 0.0015 0.0021 17 11 18
Jerusalem 35.23 31.78 100 0.0017 0.0019 0.0017 23 4 17
Zacynthus 20.9 37.78 70 0.0013 0.0011 0.0012 18 20 14
Agrigentum 13.58 37.31 80 0.0013 0.0012 0.0013 12 14 8
Luna 10.03 44.07 90 0.0017 0.0016 0.0016 9 11 16
x 12.16 45.42 6 0.0017 0.0014 0.0017 17 11 18
Caesarea (Cappadocia) 35.5 38.72 90 0.0014 0.0013 0.0013 21 12 15
Anemurium 32.8 36.02 60 0.0021 0.0016 0.0021 21 20 15
Mogontiacum 8.26 50.01 90 0.0014 0.0011 0.0017 19 8 10
Galata 8.93 37.53 60 0.0007 0.0005 0.0007 5 14 3
Heliopolis (Baalbek) 36.2 34.01 90 0.0014 0.0016 0.0012 23 4 17
Tainaron Pr. 22.48 36.39 80 0.0022 0.0021 0.0022 18 20 5
Samos 26.94 37.69 80 0.0011 0.0008 0.0011 14 15 5
Thelepte 8.6 34.99 80 0.0013 0.0011 0.0013 12 14 3
Kaudos 24.06 34.86 70 0.0009 0.0009 0.0009 18 20 5
Petra 35.46 30.33 90 0.0015 0.003 0.0016 23 4 17
Phiara 36.6 39.86 60 0.0018 0.0021 0.0017 24 12 11
Delos 25.27 37.4 70 0.0017 0.0015 0.0016 14 15 5
Vivisco 6.84 46.47 60 0.0021 0.0014 0.002 10 22 2
Paraetonium 27.23 31.36 80 0.0017 0.0018 0.0017 22 10 19
Chalcis 23.59 38.46 90 0.0016 0.0015 0.0015 14 15 5
Comum 9.08 45.81 80 0.0013 0.0015 0.0013 17 2 18
Salona 16.5 43.53 90 0.0032 0.0033 0.0031 16 13 18
Hispalis -6 37.38 90 0.0025 0.0011 0.0024 15 1 12
Phaselis 30.55 36.52 80 0.0011 0.0007 0.0011 21 20 15
Flavium Brigantium -8.4 43.37 70 0.0018 0.0021 0.0016 15 1 12
Santicum 13.87 46.64 70 0.0013 0.0012 0.0011 17 2 13
Chersonasos 25.39 35.32 80 0.0012 0.0011 0.0012 18 20 5
Ravenna 12.21 44.42 90 0.0024 0.0021 0.0028 16 11 18
Vappincum 6.03 44.55 70 0.0015 0.0028 0.0015 10 21 2
Carthago 10.31 36.85 100 0.0033 0.0038 0.0032 12 14 8
Krokodilopolis 30.84 29.32 80 0.0014 0.0014 0.0014 22 10 19
Cambodunum 10.33 47.73 80 0.0014 0.0011 0.0013 17 2 18
Apamea 36.41 35.42 90 0.001 0.001 0.0011 23 20 17
Delphi 22.5 38.48 80 0.002 0.0023 0.002 18 15 14
Tarentum 17.24 40.47 90 0.002 0.0026 0.002 20 17 14
Alexandria Troas 26.15 39.76 80 0.002 0.0014 0.002 14 15 5
Akamas Pr. 32.28 35.11 60 0.0026 0.002 0.0025 21 20 15
x 17.89 45.4 6 0.0016 0.0016 0.0015 17 13 13
Vindobona 16.37 48.21 80 0.0019 0.0018 0.0021 17 2 13
Bagacum 3.81 50.3 70 0.0015 0.0026 0.0015 19 8 10
Ad Aras -0.98 38.74 60 0.0014 0.0028 0.0015 15 16 12
Teanum 14.06 41.25 80 0.0017 0.0021 0.0017 9 17 7
Sallentinum Pr. 18.36 39.8 60 0.0021 0.0016 0.002 20 17 14
Lapethos 33.17 35.33 80 0.0014 0.0011 0.0014 21 20 15
Sicca Veneria 8.71 36.18 80 0.0012 0.001 0.0012 12 14 3
Cyzicus 27.89 40.38 90 0.0022 0.0012 0.0022 14 18 5
Ilva 10.24 42.74 70 0.0014 0.0012 0.0014 9 3 16
Sabratha 12.48 32.8 90 0.0014 0.0018 0.0015 12 14 8
Lykopolis 31.19 27.18 80 0.0017 0.0011 0.0016 22 19 19
Smyrna 27.14 38.43 90 0.0022 0.002 0.0023 14 15 5
Kapitolias 35.86 32.61 70 0.0017 0.0016 0.0017 23 4 17
Arca 36.04 34.53 80 0.001 0.0016 0.0011 21 20 15
Myra 29.99 36.24 80 0.0018 0.0014 0.0017 21 20 15
Olbia (Borysthenes) 31.9 46.69 90 0.0013 0.0012 0.0013 24 7 11
Patavium 11.88 45.41 90 0.0012 0.0011 0.0011 17 11 18
Venta Icenorum 1.29 52.58 80 0.0013 0.0013 0.0012 7 9 1
Osca -0.41 42.14 80 0.0013 0.0013 0.0013 15 21 4
Tralles 27.84 37.86 80 0.0012 0.0014 0.0012 14 15 5
Hibis 30.55 25.44 80 0.0016 0.0016 0.0015 22 10 19
Apollonia (Epirus) 19.43 40.77 90 0.0016 0.0011 0.0015 20 17 14
Parthanum 11.08 47.49 60 0.0013 0.0012 0.0012 17 2 18
Vercellae 8.42 45.33 80 0.0014 0.0015 0.0014 10 22 2
Amisus 36.33 41.3 80 0.0022 0.0019 0.0021 24 12 11
Rutupiae 1.32 51.3 70 0.0012 0.0008 0.0011 7 9 1
Ptolemais 20.95 32.71 90 0.0016 0.0015 0.0016 12 23 8
Thagaste 7.98 36.29 80 0.0015 0.002 0.0015 5 14 3
Rotomagus 1.1 49.45 70 0.0013 0.0008 0.0013 19 8 10
Apulum 23.59 46.07 90 0.0017 0.0011 0.0016 13 7 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment