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
{"type":"Topology","transform":{"scale":[0.003962496249624962,0.0016317631763176322],"translate":[-10.636,35.891]},"objects":{"lcroutes":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[6],[7],[8],[9],[10,11,12,13,14,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":1,"priority":1,"expense":2.102,"duration":21.952,"length":2878.544}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":1,"priority":1,"expense":2.139,"duration":20.856,"length":2878.064}},{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[6],[7],[8],[9],[10,11,-48,-47,-46,14,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":2,"priority":1,"expense":2.104,"duration":21.971,"length":2878.278}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":2,"priority":1,"expense":2.155,"duration":21.013,"length":2878.064}},{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[6],[7],[8],[9],[52,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":3,"priority":1,"expense":2.08,"duration":21.728,"length":2879.204}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":3,"priority":1,"expense":2.24,"duration":21.867,"length":2878.064}},{"type":"MultiLineString","arcs":[[6],[54,55,56,57,5],[58],[59,60,61,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":4,"priority":1,"expense":2.071,"duration":21.636,"length":2784.744}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[76,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":4,"priority":1,"expense":2.388,"duration":23.351,"length":2785.972}},{"type":"MultiLineString","arcs":[[6],[54,79,57,5],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":5,"priority":1,"expense":2.132,"duration":22.266,"length":2785.204}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":5,"priority":1,"expense":2.451,"duration":23.996,"length":2785.047}},{"type":"MultiLineString","arcs":[[6],[54,55,56,57,5],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":6,"priority":1,"expense":2.133,"duration":22.268,"length":2785.182}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,82,83,84,85,86],[-36],[36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":6,"priority":1,"expense":2.466,"duration":24.119,"length":2859.549}},{"type":"MultiLineString","arcs":[[6],[54,79,57,5],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":7,"priority":1,"expense":2.269,"duration":23.627,"length":2785.169}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,82,97,84,85,86],[-36],[36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":7,"priority":1,"expense":2.522,"duration":24.686,"length":2864.316}},{"type":"MultiLineString","arcs":[[6],[54,79,57,5],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":8,"priority":1,"expense":2.213,"duration":23.08,"length":2785.169}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,82,97,84,85,86],[-36],[36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":8,"priority":1,"expense":2.522,"duration":24.685,"length":2864.316}},{"type":"MultiLineString","arcs":[[6],[54,79,57,5],[58],[59,60,98,81,62],[63],[64],[65,66,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":9,"priority":1,"expense":2.09,"duration":21.838,"length":2784.715}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":9,"priority":1,"expense":2.443,"duration":23.885,"length":2785.047}},{"type":"MultiLineString","arcs":[[6],[-76,56,57,5],[58],[59,60,98,81,62],[63],[64],[65,-79,67,68],[69],[70],[71],[72],[10,99,100,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":10,"priority":1,"expense":2.008,"duration":21.006,"length":2785.458}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":10,"priority":1,"expense":2.227,"duration":21.736,"length":2785.934}},{"type":"MultiLineString","arcs":[[6],[54,79,57,5],[58],[59,60,61,62],[63],[64],[65,-79,67,68],[69],[70],[71],[72],[10,11,-48,-47],[73],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":11,"priority":1,"expense":1.975,"duration":20.682,"length":2784.564}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[76,77,-60],[63],[64],[-69,-68,78,-66],[-70],[-71],[-72],[-73],[46,47,-12,-11],[-74],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,-26,-25],[27],[-29],[29],[-35,-34,-33,50,51,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":11,"priority":1,"expense":2.179,"duration":21.248,"length":2785.949}},{"type":"MultiLineString","arcs":[[0],[1],[2,-45,101,4,5],[6],[7],[8],[9],[10,11,-48,-47,-46,14,15],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[-41],[41]],"properties":{"pair":50129,"direction":1,"month":12,"priority":1,"expense":2.157,"duration":22.489,"length":2878.058}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,102,-25],[27],[-29],[29],[-35,-34,-33,-32,-31],[-36],[36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":12,"priority":1,"expense":2.11,"duration":20.547,"length":2878.079}},{"type":"MultiLineString","arcs":[[103],[104,105,106,107,108],[109,110],[111,112,113],[114],[115],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[129],[130,131,132],[133],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":1,"priority":1,"expense":15.393,"duration":90.608,"length":3127.678}},{"type":"MultiLineString","arcs":[[142,143,144,-110],[114],[-116],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[129],[-133,-132,-131],[133],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[6]],"properties":{"pair":50235,"direction":1,"month":1,"priority":1,"expense":13.285,"duration":82.043,"length":2947.752}},{"type":"MultiLineString","arcs":[[109,-145,-144,-143],[145,114],[146],[147],[148],[149],[150],[-1],[-2],[-6,42,43,44,-3],[151],[6],[7],[-9],[152],[153,154],[-10],[155],[63],[64],[-69],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168]],"properties":{"pair":50235,"direction":0,"month":2,"priority":1,"expense":18.244,"duration":78.585,"length":4403.533}},{"type":"MultiLineString","arcs":[[142,143,144,-110],[145,114],[146],[147],[148],[149],[150],[0],[1],[2,3,4,5],[-152],[6],[7],[8],[152],[169,-154],[-10],[-156],[63],[64],[68],[156],[-158],[-159],[-160],[-161],[-162],[-163],[-164],[-165],[-166],[166],[-168],[168]],"properties":{"pair":50235,"direction":1,"month":2,"priority":1,"expense":19.445,"duration":97.448,"length":4401.933}},{"type":"MultiLineString","arcs":[[109,-145,-144,-143],[114],[115],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[129],[130,131,132],[133],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":3,"priority":1,"expense":12.375,"duration":86.638,"length":2947.752}},{"type":"MultiLineString","arcs":[[142,143,144,-110],[114],[-116],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[133],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[6]],"properties":{"pair":50235,"direction":1,"month":3,"priority":1,"expense":13.294,"duration":82.143,"length":2947.752}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,174,175],[176,177],[178,106,179,-143],[180],[181,182,183],[184],[-113],[185,186,187,188,189,131,190,191,192,193,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":4,"priority":1,"expense":7.805,"duration":26.51,"length":2965.669}},{"type":"MultiLineString","arcs":[[201],[202],[203,-172],[170],[-176,-175,-174],[204],[205],[176,177],[142,-180,-107],[105],[184],[-195,-194,206,207,208,209,-186],[-200,-199,-198,-197,-196,5],[200],[6]],"properties":{"pair":50235,"direction":1,"month":4,"priority":1,"expense":8.724,"duration":37.138,"length":3045.206}},{"type":"MultiLineString","arcs":[[210],[211,212,213,214,215,216,217,218],[219,220,221,222,223],[224,225,226],[227],[228],[229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[245],[246,247,248,249,250],[170],[171,172],[178,106,179,-143],[180],[181,182,183],[-113],[251],[-6,42,252,253,254,255,256],[6]],"properties":{"pair":50235,"direction":0,"month":5,"priority":1,"expense":3.894,"duration":38.405,"length":5259.283}},{"type":"MultiLineString","arcs":[[-211],[-219,-218,-217,257,-214,-213,-212],[-224,-223,-222,-221,-220],[258,259,-225],[-228],[228],[-245,260,261,262,263,264,265,266,267,268,269,270,271,-231,-230],[-246],[-251,272,273,-249,-248,-247],[201],[202],[203,-172],[-171],[204],[205],[142,-180,-107],[105],[251],[-257,-256,274,275,-196,5],[6]],"properties":{"pair":50235,"direction":1,"month":5,"priority":1,"expense":3.599,"duration":36.911,"length":5331.121}},{"type":"MultiLineString","arcs":[[210],[211,212,276,217,218],[219,220,221,222,223],[224,225,277,-259],[-228],[228],[229,230,231,232,233,278,279,237,238,239,240,241,242,243,244],[245],[280,281,282,-273,250],[170],[171,172],[178,106,179,-143],[180],[181,182,183],[-113],[251],[-6,42,252,283,-275,255,256],[6]],"properties":{"pair":50235,"direction":0,"month":6,"priority":1,"expense":3.874,"duration":38.207,"length":5280.385}},{"type":"MultiLineString","arcs":[[-211],[-219,284,285,-215,-214,-213,-212],[-224,-223,-222,-221,-220],[258,259,-225],[-228],[228],[-245,-244,-243,-242,-241,-240,-239,-238,-237,286,287,267,268,288,-230],[-246],[-251,272,273,-249,-248,-247],[201],[202],[203,-172],[-171],[204],[205],[142,-180,-107],[105],[251],[-257,-256,274,-284,-253,-43,5],[6]],"properties":{"pair":50235,"direction":1,"month":6,"priority":1,"expense":3.872,"duration":39.643,"length":5446.52}},{"type":"MultiLineString","arcs":[[210],[211,289,290,291,292,293,294,295,296,297,298,299,300,301,-285,218],[219,302,303,304,223],[224,225,277,-259],[-228],[228],[229,230,231,232,305,306,307,308,241,242,243,244],[245],[280,281,282,-273,250],[170],[171,172],[178,106,179,-143],[180],[181,182,183],[-113],[251],[-6,42,252,253,309,256],[6]],"properties":{"pair":50235,"direction":0,"month":7,"priority":1,"expense":3.977,"duration":39.23,"length":5409.619}},{"type":"MultiLineString","arcs":[[-211],[-219,-218,-217,257,-214,-213,-212],[-224,-223,-222,-221,-220],[-227,-226,-225],[-228],[-229],[-245,-244,-243,310,311,-240],[-239,-238,-237,286],[312],[-246],[-251,272,273,-249,-248,-247],[-171],[-173,-172],[287,267,313],[314],[315],[316],[317],[142,-180,-107,-179],[318],[-181],[-184,319,320],[321],[322,209,-186],[-113],[-200,-199,-198,-197,-196,5],[200],[6]],"properties":{"pair":50235,"direction":1,"month":7,"priority":1,"expense":3.999,"duration":40.916,"length":5399.007}},{"type":"MultiLineString","arcs":[[210],[211,289,323,324,325,326,327,328,329,330,331,332,333,301,-285,218],[219,302,303,304,223],[224,225,226],[-228],[228],[229,230,231,232,305,306,307,308,241,242,243,244],[245],[280,281,282,-273,250],[-202],[-203],[171,-204],[-171],[204],[-206],[106,179,-143],[-106],[251],[-6,42,252,253,309,256],[6]],"properties":{"pair":50235,"direction":0,"month":8,"priority":1,"expense":3.864,"duration":38.117,"length":5430.334}},{"type":"MultiLineString","arcs":[[-211],[-219,-218,-217,257,-214,-213,-212],[-224,-223,-222,-221,-220],[-227,-226,-225],[-228],[228],[-245,-244,261,334,335,-238,-237,286,287,267,268,288,-230],[-246],[-251,272,273,-249,-248,-247],[-171],[-173,-172],[142,-180,-107,-179],[-181],[-184,319,336,-182],[-113],[251],[-257,-256,274,275,-196,5],[6]],"properties":{"pair":50235,"direction":1,"month":8,"priority":1,"expense":4.023,"duration":41.155,"length":5375.749}},{"type":"MultiLineString","arcs":[[210],[211,212,276,217,218],[219,220,221,222,223],[224,225,226],[-228],[228],[229,230,231,232,305,306,307,308,241,242,243,244],[245],[246,247,337,282,-273,250],[170],[171,172],[178,106,179,-143],[180],[-321,-320,183],[-113],[251],[-6,42,252,253,254,255,256],[6]],"properties":{"pair":50235,"direction":0,"month":9,"priority":1,"expense":3.789,"duration":37.341,"length":5282.92}},{"type":"MultiLineString","arcs":[[-211],[-219,284,285,-215,-214,-213,-212],[-224,-223,-222,-221,-220],[-227,-226,-225],[-228],[228],[-245,260,261,262,338,339,340,271,-231,-230],[-246],[-251,272,-283,-282,341,-247],[-171],[-173,-172],[142,-180,-107,-179],[-181],[-184,319,336,-182],[-113],[251],[-257,-256,-255,-254,-253,-43,5],[6]],"properties":{"pair":50235,"direction":1,"month":9,"priority":1,"expense":3.734,"duration":38.285,"length":5264.898}},{"type":"MultiLineString","arcs":[[109,-145,-144,-143],[114],[115],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[129],[130,131,132],[133],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":10,"priority":1,"expense":12.372,"duration":86.601,"length":2947.752}},{"type":"MultiLineString","arcs":[[142,143,144,-110],[114],[-116],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[133],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[6]],"properties":{"pair":50235,"direction":1,"month":10,"priority":1,"expense":13.304,"duration":82.246,"length":2947.752}},{"type":"MultiLineString","arcs":[[109,-145,-144,-143],[114],[115],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[129],[130,131,132],[133],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":11,"priority":1,"expense":12.382,"duration":86.688,"length":2947.752}},{"type":"MultiLineString","arcs":[[142,143,144,-110],[114],[-116],[116],[117,118],[119,120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[133],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[6]],"properties":{"pair":50235,"direction":1,"month":11,"priority":1,"expense":13.274,"duration":81.946,"length":2947.752}},{"type":"MultiLineString","arcs":[[342],[343],[344,345,346],[347,348],[349],[350],[351],[115],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":12,"priority":1,"expense":25.313,"duration":75.362,"length":2359.676}},{"type":"MultiLineString","arcs":[[342],[343],[344,345,346],[347,348],[349],[350],[351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[6]],"properties":{"pair":50235,"direction":1,"month":12,"priority":1,"expense":24.73,"duration":53.404,"length":2359.676}},{"type":"MultiLineString","arcs":[[103],[344,352],[353,180,181,182,183,112,-344,105,106,107,108],[347,348],[349],[350],[351,354,355,356,357,358,359,360,361],[115],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":1,"priority":0,"expense":31.43,"duration":41.826,"length":2435.814}},{"type":"MultiLineString","arcs":[[142,-180,-107,-179,112],[-347,362],[363,351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[129],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[364]],"properties":{"pair":50235,"direction":1,"month":1,"priority":0,"expense":24.461,"duration":35.071,"length":2246.753}},{"type":"MultiLineString","arcs":[[109,-145,-144,-143],[145,114],[365],[366,367],[368],[369],[370],[371],[372],[139,373],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":2,"priority":0,"expense":22.621,"duration":39.686,"length":2322.438}},{"type":"MultiLineString","arcs":[[142,-180,-107,-179,112],[-347,362],[363,351],[374],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[375],[-368],[-367],[370],[-372],[372],[-374,-140],[-141,5],[-142],[364]],"properties":{"pair":50235,"direction":1,"month":2,"priority":0,"expense":30.662,"duration":39.881,"length":2197.132}},{"type":"MultiLineString","arcs":[[178,106,179,-143],[344,352],[353,180,-321,-320,183],[-113],[347,348],[349],[350],[351,354,355,356,357,358,359,360,361],[115],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":3,"priority":0,"expense":28.505,"duration":38.793,"length":2391.4}},{"type":"MultiLineString","arcs":[[142,-180,-107,-179,112],[-347,362],[363,351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[364]],"properties":{"pair":50235,"direction":1,"month":3,"priority":0,"expense":24.471,"duration":35.185,"length":2246.753}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,174,175],[176,177],[178,106,179,-143],[180],[181,182,183],[184],[-113],[185,186,187,188,189,131,190,191,192,193,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":4,"priority":0,"expense":7.805,"duration":26.51,"length":2965.669}},{"type":"MultiLineString","arcs":[[201],[202],[203,-172],[170],[-176,-175,-174],[204],[205],[376,377],[142,-180,-107],[378],[379],[105],[184],[-195,-194,206,207,208,209,-186],[-200,-199,-198,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":4,"priority":0,"expense":15.685,"duration":28.68,"length":2991.493}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,174,175],[176,177],[178,106,179,-143],[180],[181,182,183],[184],[-113],[185,-210,-209,380,194],[-6,195,196,197,381,382,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":5,"priority":0,"expense":7.796,"duration":26.441,"length":2974.743}},{"type":"MultiLineString","arcs":[[201],[202],[203,-172],[170],[-176,-175,-174],[204],[205],[376,377],[142,-180,-107],[378],[379],[105],[184],[-195,-194,206,207,208,209,-186],[-200,-383,383,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":5,"priority":0,"expense":15.752,"duration":29.349,"length":2991.956}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,384,175],[176,177],[178,106,179,-143],[180],[181,182,183],[184],[-113],[185,186,385,-207,193,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":6,"priority":0,"expense":7.815,"duration":26.63,"length":2973.89}},{"type":"MultiLineString","arcs":[[201],[202],[203,-172],[170],[-176,-175,-174],[204],[205],[376,377],[142,-180,-107],[378],[379],[105],[184],[-195,-194,-193,-192,-191,-132,-190,-189,-188,-187,-186],[-200,-199,-198,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":6,"priority":0,"expense":15.737,"duration":29.214,"length":2983.051}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,384,175],[176,177],[178,106,179,-143],[180],[181,182,183],[184],[-113],[185,186,187,188,386,191,192,193,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":7,"priority":0,"expense":7.869,"duration":27.15,"length":2967.596}},{"type":"MultiLineString","arcs":[[-171],[-173,-172],[-176,-175,-174],[376,377],[142,-180,-107,-179],[-181],[-184,319,320],[378],[379],[184],[-113],[-195,-194,-193,-192,-191,-132,-190,-189,-188,-187,-186],[-200,-199,-198,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":7,"priority":0,"expense":15.793,"duration":29.761,"length":2911.94}},{"type":"MultiLineString","arcs":[[-202],[-203],[171,-204],[-171],[173,384,175],[204],[-206],[176,177],[106,179,-143],[-106],[184],[185,-210,-209,380,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":8,"priority":0,"expense":7.803,"duration":26.496,"length":3045.707}},{"type":"MultiLineString","arcs":[[-171],[-173,-172],[-176,-175,-174],[376,377],[142,-180,-107,-179],[-181],[-184,319,336,-182],[378],[379],[184],[-113],[-195,-194,-193,-192,-191,-132,-190,-189,-188,-187,-186],[-200,-199,-198,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":8,"priority":0,"expense":15.783,"duration":29.655,"length":2911.948}},{"type":"MultiLineString","arcs":[[170],[171,172],[173,174,175],[176,177],[178,106,179,-143],[180],[-321,-320,183],[184],[-113],[185,186,187,387,192,193,194],[-6,195,196,197,198,199],[200],[6]],"properties":{"pair":50235,"direction":0,"month":9,"priority":0,"expense":7.748,"duration":25.955,"length":2972.225}},{"type":"MultiLineString","arcs":[[-171],[-173,-172],[-176,-175,-174],[376,377],[142,-180,-107,-179],[-181],[-184,319,336,-182],[378],[379],[184],[-113],[-195,-194,-193,-192,-191,-132,-190,-189,-188,-187,-186],[-200,-199,-198,-197,-196,5],[200],[364]],"properties":{"pair":50235,"direction":1,"month":9,"priority":0,"expense":15.715,"duration":28.989,"length":2911.948}},{"type":"MultiLineString","arcs":[[178,106,179,-143],[344,352],[353,180,-321,-320,183],[-113],[347,348],[349],[350],[351,354,355,356,357,358,359,360,361],[115],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":10,"priority":0,"expense":28.508,"duration":38.806,"length":2391.4}},{"type":"MultiLineString","arcs":[[142,-180,-107,-179,112],[-347,362],[363,351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[364]],"properties":{"pair":50235,"direction":1,"month":10,"priority":0,"expense":24.483,"duration":35.31,"length":2246.753}},{"type":"MultiLineString","arcs":[[178,106,179,-143],[344,352],[353,180,-321,-320,183],[-113],[347,348],[349],[350],[351,354,355,356,357,358,359,360,361],[115],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":11,"priority":0,"expense":28.503,"duration":38.743,"length":2391.4}},{"type":"MultiLineString","arcs":[[142,-180,-107,-179,112],[-347,362],[363,351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[364]],"properties":{"pair":50235,"direction":1,"month":11,"priority":0,"expense":24.457,"duration":35.049,"length":2246.753}},{"type":"MultiLineString","arcs":[[342],[343],[344,345,346],[347,348],[349],[350],[351,354,355,356,357,358,359,360,361],[115],[129],[130,131,132],[134],[135],[136],[137],[138],[139],[-6,140],[141],[6]],"properties":{"pair":50235,"direction":0,"month":12,"priority":0,"expense":35.551,"duration":44.359,"length":2301.077}},{"type":"MultiLineString","arcs":[[342],[343],[-347,362],[363,351],[-116],[116],[117,118],[120,121,122,123,124,125,126,127,128,118],[-130],[-133,-132,-131],[-135],[-136],[136],[-138],[138],[-140],[-141,5],[141],[364]],"properties":{"pair":50235,"direction":1,"month":12,"priority":0,"expense":28.188,"duration":38.478,"length":2227.481}},{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[364],[7],[8],[9],[10,11,12,13,14,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":1,"priority":0,"expense":2.744,"duration":19.867,"length":2873.662}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-31,-30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":1,"priority":0,"expense":4.883,"duration":20.732,"length":2950.509}},{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[364],[7],[8],[9],[10,11,-48,-47,-46,14,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":2,"priority":0,"expense":2.746,"duration":19.886,"length":2873.396}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[-31,-30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":2,"priority":0,"expense":4.899,"duration":20.889,"length":2950.509}},{"type":"MultiLineString","arcs":[[0],[1],[2,3,4,5],[364],[7],[8],[9],[52,15],[16],[17],[18],[19],[20],[21,22,23],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":3,"priority":0,"expense":2.722,"duration":19.643,"length":2874.322}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,49,-22],[-27,-26,-25],[27],[29,30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":3,"priority":0,"expense":4.981,"duration":21.714,"length":2950.509}},{"type":"MultiLineString","arcs":[[54,55,56,57,5],[364],[58],[59,60,61,62],[63],[64],[65,66,67,68],[391],[70],[74,-49,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":4,"priority":0,"expense":3.377,"duration":18.533,"length":2567.583}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[76,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,49,-22],[-27,-26,-25],[27],[29,30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":4,"priority":0,"expense":5.6,"duration":20.241,"length":2646.146}},{"type":"MultiLineString","arcs":[[54,79,57,5],[364],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[391],[70],[21,22,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":5,"priority":0,"expense":3.436,"duration":19.116,"length":2568.043}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[29,30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":5,"priority":0,"expense":5.662,"duration":20.86,"length":2645.221}},{"type":"MultiLineString","arcs":[[54,55,56,57,5],[364],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[391],[70],[74,-49,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":6,"priority":0,"expense":3.427,"duration":19.03,"length":2568.021}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[30],[86],[-86],[388],[-35,82,83,84],[389],[29],[390],[-37,-36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":6,"priority":0,"expense":5.659,"duration":20.821,"length":2719.723}},{"type":"MultiLineString","arcs":[[54,79,57,5],[364],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[391],[70],[74,-49,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":7,"priority":0,"expense":3.545,"duration":20.206,"length":2568.008}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[30],[86],[-86],[388],[-35,82,97,84],[389],[29],[390],[-37,-36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":7,"priority":0,"expense":5.704,"duration":21.266,"length":2724.49}},{"type":"MultiLineString","arcs":[[54,79,57,5],[364],[58],[59,-78,80,81,62],[63],[64],[65,66,67,68],[391],[70],[74,-49,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":8,"priority":0,"expense":3.495,"duration":19.714,"length":2568.008}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[30],[86],[85],[388],[-35,82,97,84],[389],[-30],[390],[-37,-36],[87,88,89,90,91,92,93],[38],[39],[40],[94,95,96]],"properties":{"pair":50129,"direction":0,"month":8,"priority":0,"expense":5.706,"duration":21.295,"length":2724.49}},{"type":"MultiLineString","arcs":[[54,79,57,5],[364],[58],[59,60,98,81,62],[63],[64],[65,66,67,68],[391],[70],[74,-49,23,18,392,393,394,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":9,"priority":0,"expense":3.384,"duration":18.607,"length":2567.554}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-80,-55],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[-31,-30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":9,"priority":0,"expense":5.642,"duration":20.647,"length":2645.221}},{"type":"MultiLineString","arcs":[[-76,56,57,5],[364],[58],[59,60,98,81,62],[63],[64],[65,-79,67,68],[391],[70],[74,-49,23,18,392,393,397,395],[396],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":10,"priority":0,"expense":3.326,"duration":18.007,"length":2568.298}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[-63,-82,-81,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[-31,-30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":10,"priority":0,"expense":5.625,"duration":20.481,"length":2646.108}},{"type":"MultiLineString","arcs":[[54,79,57,5],[364],[58],[59,60,61,62],[63],[64],[65,-79,67,68],[391],[70],[74,-49,23,18,392,393,397,395],[396],[24,25,26],[27],[28],[29],[30,-52,53,33,34],[35],[36],[37],[38],[39],[40],[41]],"properties":{"pair":50129,"direction":1,"month":11,"priority":0,"expense":3.295,"duration":17.711,"length":2567.427}},{"type":"MultiLineString","arcs":[[6],[-6,-58,-57,75],[58],[76,77,-60],[63],[64],[-69,-68,78,-66],[-392],[-71],[-396,-395,-394],[-397],[-393,-19,-24,48,-75],[-27,-26,-25],[27],[29,30],[-35,-34,-33,50,51],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":11,"priority":0,"expense":5.582,"duration":20.047,"length":2646.123}},{"type":"MultiLineString","arcs":[[0],[1],[2,-45,101,4,5],[364],[7],[8],[9],[10,11,-48,-47,-46,14,15],[16],[17],[18],[19],[20],[74,-49,23],[24,25,26],[27],[28],[29],[30,31,32,33,34],[35],[36],[37],[38],[39],[-41],[41]],"properties":{"pair":50129,"direction":1,"month":12,"priority":0,"expense":2.799,"duration":20.404,"length":2873.176}},{"type":"MultiLineString","arcs":[[-1],[-2],[-6,42,43,44,-3],[6],[7],[-9],[-10],[-16,-15,45,46,47,-12,-11],[-17],[-18],[18],[19],[-21],[-24,48,-75],[-27,102,-25],[27],[-31,-30],[-35,-34,-33,-32],[-86,388],[389],[390],[-37,-36],[-38],[38],[39],[40],[-42]],"properties":{"pair":50129,"direction":0,"month":12,"priority":0,"expense":4.854,"duration":20.423,"length":2950.524}}]}},"arcs":[[[5728,1286],[-1,-12]],[[5804,1164],[-25,61],[-26,61],[-25,0]],[[5728,1286],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61]],[[5728,2451],[25,61],[26,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61]],[[5779,3309],[0,61],[0,61],[0,62],[0,61]],[[5779,3554],[5,39]],[[5832,3676],[0,-1],[-2,-4],[0,-3],[1,-6],[0,-3],[-3,-3],[0,-2],[1,-3],[-5,-9],[-2,-3],[-2,1],[-2,-2],[0,-4],[-1,-2],[-1,-6],[-2,-2],[-3,0],[-2,-2],[-2,1],[-2,1],[-1,1],[-1,-1],[-2,0],[-2,2],[-1,-2],[-1,-4],[-1,0],[-2,0],[-2,0],[-2,1],[-2,-2],[-1,-4],[-3,-1],[-2,-4],[-1,-6],[0,-1],[0,-2],[0,-2],[2,-4],[-3,-3]],[[5822,1168],[-18,-4]],[[6511,490],[-26,-62],[-25,62],[-25,0],[-25,0],[-26,0],[-25,0],[-25,61],[-25,61],[-26,62],[-25,61],[-25,0],[-25,0],[-26,0],[-25,0],[-25,61],[-25,0],[-25,61],[-26,0],[-25,62],[-25,0],[-25,61],[-26,0],[-25,0],[-25,0],[-25,0],[-26,61],[-25,62],[-25,61]],[[6504,484],[7,6]],[[8353,306],[-25,61]],[[8328,367],[-26,61]],[[8302,428],[-25,0]],[[8277,428],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,62]],[[7697,490],[-26,0],[-25,0]],[[7646,490],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0]],[[8529,306],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[8353,306],[4,-1]],[[8529,1225],[-8,23]],[[8539,336],[-10,-30]],[[8529,1225],[26,-61],[25,-61],[25,-62],[25,-61],[-25,-61],[-25,-62],[-25,-61],[-26,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61]],[[9059,919],[-25,0],[-25,0]],[[9009,919],[-25,0],[-26,61]],[[8958,980],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,61],[-25,0],[-25,0],[-26,0],[-25,62],[-25,61],[-25,0],[-26,0],[-25,0],[-25,61],[-25,0],[-26,0]],[[9539,1225],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0]],[[9362,1225],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,-61]],[[9160,1164],[-25,-61],[-25,-62],[-25,-61],[-26,-61]],[[9061,924],[-2,-5]],[[9413,2757],[-25,-61],[-51,-123],[-50,-61]],[[9296,2524],[-9,-12]],[[9287,2512],[-26,-61],[-25,-61]],[[9236,2390],[-25,-62],[-25,-61],[0,-61],[0,-62],[0,-61]],[[9186,2083],[0,-61]],[[9186,2022],[25,-61],[25,-62],[25,-61],[26,-61],[25,-62]],[[9312,1715],[0,-61],[0,-61],[0,-61],[0,-62],[25,-61],[25,0],[26,-61],[25,0],[25,0],[25,-62],[25,0],[26,0],[25,-61]],[[9514,2819],[-26,0],[-25,0],[-25,0],[-25,-62]],[[9413,2757],[7,-24]],[[9741,3125],[-25,-61],[-26,0],[-25,0],[-25,0],[-25,-62],[-26,-61],[-25,-61],[-25,0],[-25,-61]],[[9515,2775],[-1,44]],[[9539,1225],[46,30]],[[9741,3125],[-2,-9]],[[9999,3142],[-6,-17],[-25,-61],[-25,0],[-26,0],[-25,61],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[5779,3554],[-26,-61],[-25,-62]],[[5728,3431],[0,-61],[0,-61],[0,-61],[0,-62]],[[5728,3186],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61]],[[7697,490],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0]],[[8201,490],[26,0],[25,0]],[[8252,490],[25,0],[25,-62]],[[8958,980],[26,0]],[[8984,980],[25,-61]],[[9186,2083],[25,61],[25,62]],[[9236,2206],[0,61],[0,61],[0,62]],[[8353,306],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,61],[-26,61],[-25,62]],[[9236,2206],[0,-62],[-25,-61],[-25,-61]],[[6435,2635],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61],[-26,61],[-25,0],[-25,0],[-25,62],[-26,61],[-25,61],[-25,62],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,61],[-25,61],[-25,0],[-25,0],[-26,61]],[[5854,3431],[-25,0]],[[5829,3431],[-25,62]],[[5804,3493],[-25,61]],[[6452,2674],[-17,-39]],[[6611,1348],[0,184]],[[6611,1532],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61]],[[6611,2144],[0,62],[-25,61],[-25,61],[-25,62],[-25,61],[-26,61],[-25,61]],[[6460,2573],[-25,62]],[[6610,1410],[1,-62]],[[6611,1348],[20,10]],[[8050,1103],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[7899,1103],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,61],[-26,61]],[[7671,1225],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[6738,1225],[-26,0],[-25,0],[-25,0],[-25,0],[-26,61],[0,62]],[[8100,1041],[-25,0],[-25,62]],[[8050,1103],[14,-26]],[[8100,1041],[-3,12]],[[8201,490],[-25,61],[-25,61],[-25,62],[0,61],[0,61],[0,61],[0,62],[0,61],[-26,61]],[[8201,490],[4,18]],[[9059,919],[-25,61],[-25,0],[-25,0]],[[5829,3431],[25,-61],[26,-61],[25,-61],[25,0],[25,-62],[26,-61],[25,0],[25,-61],[25,0],[26,-62],[25,0],[25,-61],[25,-61],[25,0],[26,-61],[25,0],[25,-62],[25,0],[26,-61],[25,-61],[25,0],[25,0],[26,0],[25,0]],[[6435,2635],[0,-62],[0,-61],[25,-61]],[[6460,2451],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[25,-61],[26,-61],[25,-62],[25,-61],[25,-61],[25,-61]],[[7671,1225],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,-61],[26,-61]],[[5854,3431],[-25,62],[-25,0]],[[6460,2451],[0,61]],[[6460,2512],[0,61]],[[9312,1715],[25,62],[25,61],[26,61],[25,62],[0,61]],[[9413,2022],[-25,61],[-26,61]],[[9362,2144],[-25,0],[-25,0],[-25,0],[-26,62],[0,61],[0,61]],[[9261,2328],[-25,62]],[[9236,2390],[0,61],[0,61],[25,0],[26,0]],[[9514,2819],[0,61],[25,0]],[[9539,2880],[25,0]],[[9564,2880],[25,0],[0,61]],[[9589,2941],[26,0],[0,61]],[[9615,3002],[0,62],[25,0]],[[9640,3064],[25,0],[25,0],[26,0]],[[9716,3064],[25,0],[0,61]],[[9741,3125],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,-61],[26,0],[25,0]],[[9968,3064],[25,0],[0,61]],[[9993,3125],[6,17]],[[9413,2022],[0,61],[-25,61],[-26,0]],[[6611,2144],[-25,62],[-25,61],[-25,61],[-25,62],[-26,61],[-25,61]],[[8328,367],[-26,0],[-25,61]],[[8277,428],[-25,62]],[[5728,3186],[25,62],[26,61]],[[9160,1164],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,61]],[[2663,9578],[42,18],[18,8],[11,4],[11,6],[17,17],[19,28],[12,20],[7,16],[5,14],[7,12],[9,10],[11,9],[9,5],[12,18],[13,19],[5,13],[16,4],[15,2],[8,4]],[[3089,9096],[-73,348]],[[3016,9444],[37,-7]],[[3053,9437],[-25,61],[-25,62]],[[3003,9560],[-26,61],[-25,61]],[[2952,9682],[-25,62],[-17,61]],[[3794,9993],[-9,-4],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[3457,9989],[-25,-62],[-26,-61],[-25,-61],[-25,-61],[-25,-62],[-26,-61],[-25,-61],[-25,-62],[-25,-61],[-25,-61],[-26,-61],[-25,-62],[-25,-61],[-25,-61],[-15,-35]],[[3089,9096],[-11,-27]],[[3078,9069],[13,21]],[[3091,9090],[-2,6]],[[4579,7217],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,3],[1,0],[0,1],[1,2],[1,1],[2,4],[0,1],[1,1],[0,1],[1,0],[0,1],[0,2],[1,0],[0,2],[0,3],[-1,1],[0,1],[-1,1],[0,2],[0,1],[-1,2],[0,2],[-1,2],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[2,3],[1,3],[0,1],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,3],[0,2],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,7],[1,1],[0,2],[1,3],[0,1],[0,1],[0,4],[1,1],[0,3],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[2,4],[1,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[-2,3],[-2,3],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[0,2],[0,2],[1,3],[1,4],[0,2],[0,3],[0,3],[0,2],[-1,5],[0,5],[0,3],[0,1],[1,3],[0,2],[2,5],[0,3],[-1,4],[0,2],[0,3],[0,1],[1,2],[1,1],[0,1],[1,1],[1,1],[1,1],[0,2],[1,2],[-1,2],[0,1],[0,1],[0,2],[2,8],[1,4],[1,1],[1,3],[1,0],[1,3],[1,3],[0,1],[1,4],[1,4],[1,1],[0,2],[1,2],[0,1],[1,1],[1,4],[1,3],[1,3],[1,4],[0,3],[1,3],[0,3],[2,2],[0,5],[0,2],[0,3],[1,0],[0,3],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,7],[1,4],[1,3],[2,3],[1,1],[4,2],[2,1],[0,1],[1,1],[1,2],[0,1],[1,2],[0,2],[0,1],[1,2],[0,7],[-1,15],[-1,7],[-1,7],[2,13],[0,4],[0,2],[2,11],[4,22],[1,8],[2,2],[4,4],[2,3],[0,4],[1,5],[-1,5],[0,1],[0,10],[0,7],[0,7],[-1,2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[1,3],[1,3],[0,2],[1,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,2],[0,3],[0,2],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[2,2],[1,1],[1,1],[1,1],[1,1],[1,0],[0,2],[1,0],[0,1],[0,1],[1,1],[1,2],[0,1],[0,2],[1,1],[0,2],[1,1],[1,2],[0,1],[1,0],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,2],[2,4],[0,1],[1,1],[2,3],[0,1],[1,2],[0,1],[0,2],[0,4],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[1,2],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,2],[1,1],[0,2],[0,1],[1,3],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,2],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,2],[2,3],[1,2],[0,1],[0,1],[1,2],[0,2],[1,2],[0,2],[0,3],[0,1],[0,1],[0,1],[2,5],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,4],[1,4],[1,4],[0,2],[0,1],[1,0],[0,1],[1,5],[1,4],[0,1],[1,0],[0,1],[0,2],[1,1],[1,5],[2,3],[0,2],[1,1],[1,2],[1,2],[1,3],[1,1],[0,2],[1,0],[0,1],[1,2],[0,2],[1,1],[0,3],[1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[2,1],[1,1],[1,0],[1,1],[1,0],[2,1],[0,1],[4,4],[3,4],[2,3],[1,1],[0,1],[2,2],[1,2],[2,3],[2,6],[0,5],[2,13],[0,1],[0,1],[2,11],[3,6],[2,1],[1,2],[1,2],[2,3],[1,5],[0,1],[1,3],[2,21],[1,6],[0,2],[0,5],[-1,4],[0,2],[1,5],[1,3],[1,3],[2,7],[0,6],[0,3],[0,2],[0,3],[0,9],[2,7],[2,3],[2,2],[2,2],[5,5],[3,5],[1,5],[1,2],[1,1],[0,1],[5,3],[2,2],[0,2],[0,2],[0,2],[-1,1],[-4,3],[-1,1],[-2,2],[-1,3],[-1,2],[1,5],[0,2],[1,3],[3,3],[1,2],[2,1],[2,5],[1,2],[1,3],[1,5],[0,5],[0,3],[0,3],[-1,3],[0,5],[0,5],[2,8],[1,6],[-1,2],[-2,1],[-1,3],[-4,0],[-1,0],[-4,0],[-1,1],[-2,2],[-1,3],[0,3],[2,2],[2,2],[1,5],[-1,3],[-2,2],[-2,8],[-1,4],[-1,7],[-1,5],[-2,4],[0,3],[-2,9],[-1,4],[0,4],[3,7],[-1,6],[-1,3],[-1,3],[0,1],[0,1],[-1,3],[-1,4],[-1,2],[-2,2],[-3,6],[-1,4],[-1,5],[0,5],[0,9],[-2,3],[-1,3],[-1,7],[0,4],[1,3],[1,4],[2,2],[3,2],[10,6],[1,1],[3,4],[5,8],[5,9],[0,2],[0,3],[-1,3],[-4,0],[-4,-2],[-4,1],[-1,3],[-1,4],[-1,5],[-2,10],[-1,3],[-8,13],[0,6],[2,9],[0,1],[0,3],[-2,2],[-3,3],[-1,1],[-2,4],[-2,4],[0,6],[2,13],[0,5],[-1,4],[0,8],[-1,4],[-1,5],[-5,12],[-3,5],[-1,2],[-2,3],[-1,1],[-2,3],[-2,4],[0,1],[0,2],[-1,3],[-1,2],[-1,3],[-6,5],[-7,4],[-2,0],[-2,0],[-6,-1],[-3,-3],[-10,-5],[-4,-2],[-19,-9],[-1,-2],[-5,-3],[-1,-3],[-2,-1],[-3,-2],[-3,-2],[-4,-2],[-2,0],[-12,-3],[-5,1],[-4,7],[0,2],[0,7],[-1,5],[-2,3],[-1,2],[-3,3],[-4,7],[-3,5],[-4,3],[-3,5],[0,3],[0,4],[0,2],[0,2],[0,3],[-2,2],[-2,5],[-7,12],[-1,1],[-1,3],[0,2],[3,5],[0,5],[-2,4],[-1,5],[-3,5],[-3,6],[-1,2],[-2,1],[-2,-1],[-3,2],[-1,1],[-4,4],[0,2],[0,3],[0,4],[-1,1],[0,2],[-5,6],[-1,2],[-1,5],[-1,3],[-2,3],[-4,1],[-1,0],[-2,4],[1,4],[1,2],[1,0],[4,0],[3,-1],[5,-1],[0,1],[2,2],[1,2],[0,3],[0,3],[-4,8],[-1,1],[0,1],[-2,4],[-2,2],[-4,11],[-1,0],[0,2],[0,1],[-1,3],[1,5],[0,4],[1,4],[2,10],[1,6],[1,6],[1,2],[0,3],[1,3],[-1,4],[-2,2],[-4,4],[-5,6],[-5,5],[-4,1],[-3,0],[-1,-1],[-1,0],[-2,-3],[-2,-2],[-3,0],[-3,1],[-4,3],[-1,2],[-2,6],[-1,4],[-1,1],[-2,1],[-2,1],[-2,-2],[-4,0],[-3,2],[-1,2],[-2,2],[-6,9],[-1,3],[-4,7],[-3,7],[-4,7],[-2,7],[-1,2],[-1,4],[-1,3],[-1,3],[-3,18],[-1,3],[-3,3],[-5,2],[-3,3],[-3,4],[0,3],[0,3],[1,2],[0,3],[-1,9],[0,7],[0,5],[0,4],[-1,2],[-1,3],[-1,2],[-1,1],[-1,1],[-2,8],[-2,6],[-1,3],[-2,9],[-1,3],[-2,2],[-5,4],[-2,2],[-1,2],[-2,7],[-2,7],[0,3],[-1,1],[-3,3],[-1,1],[-5,6],[-2,2],[-3,3],[-2,4],[-1,5],[0,1],[0,3],[0,4],[-1,4],[-1,1],[-1,2],[0,1],[-3,1],[-3,1],[-3,2],[-1,3],[0,3],[0,1],[1,1],[2,2],[4,5],[2,3],[1,3],[3,3],[2,1],[2,3],[0,3],[0,4],[-1,2],[-2,2],[-2,1],[-4,0],[-1,0],[-2,0],[-2,2],[-1,3],[-1,0],[-3,7],[0,3],[-2,4],[-1,4],[-1,4],[2,6],[1,2],[5,8],[1,4],[-1,2],[-1,3],[-4,-1],[-2,5],[-1,4],[0,4],[0,3],[2,7],[0,4],[-2,5],[-2,2],[-1,1],[-5,7],[-4,4],[-14,11],[-1,1],[0,1],[0,1],[-1,2],[1,1],[0,2],[0,1],[0,1],[3,3],[3,1],[1,4],[0,3],[-1,2],[-3,7],[-1,2],[-2,3],[-1,2],[-1,4],[1,4],[1,4],[0,2],[0,1],[-1,1],[-2,1],[-1,0],[-1,0],[-4,-9],[-3,-1],[-1,2],[-1,0],[-1,4],[2,5],[0,5],[-2,1],[0,1],[0,2],[0,1],[-1,2],[-2,1],[-4,-1],[-2,0],[-1,0],[-4,3],[-1,4],[-1,7],[0,3],[-1,6],[1,5],[1,0],[2,0],[1,0],[2,-3],[1,0],[1,1],[1,3],[0,3],[-1,4],[-1,3],[-2,2],[-1,3],[-6,5],[-1,1],[-3,3],[0,3],[0,6],[2,3],[0,1],[4,9],[1,4],[0,4],[-1,3],[-2,4],[-4,4],[-11,7],[-1,1],[-1,3],[2,8],[0,1],[2,2],[2,2],[7,0],[2,2],[3,5],[3,5],[1,3],[1,3],[0,3],[-1,2],[-2,5],[-4,5],[-1,5],[0,3],[0,5],[3,5],[-1,4],[-2,2],[-6,6],[-1,4],[0,3],[4,5],[3,2],[2,6],[-1,4],[-1,3],[-1,1],[-5,4],[-1,3],[-1,5],[0,3],[2,5],[0,2],[0,2],[0,3],[-1,4],[-2,3],[-4,1],[-3,-1],[-2,-1],[-2,-3],[-1,0],[-5,-1],[-1,1],[-1,2],[0,6],[0,4],[-1,4],[-2,10],[0,4],[0,4],[2,3],[0,2],[1,2],[1,3],[-1,6],[-3,3],[-2,2],[-4,0],[-2,0],[-4,0],[-5,2],[-6,0],[-3,3],[-2,2],[-1,2],[0,4],[0,4],[-1,2],[-1,4],[-1,3],[-1,1],[-2,1],[-2,2],[-3,1],[-1,0],[-3,2],[-1,3],[0,4],[1,4],[2,4],[-1,6],[-1,3],[-2,1],[-2,1],[-2,0],[-11,0],[-4,7],[-1,5],[-1,5],[-2,9],[-3,5],[-6,8],[-8,5],[-7,1],[-10,6],[-4,2],[-1,1],[0,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,3],[-1,0],[-1,1],[-1,1],[-7,7],[-2,6],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-2,1],[-2,2],[-1,1],[-1,4],[-2,3],[0,1],[-2,4],[-1,1],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,2],[-1,1],[-1,2],[-2,1],[0,1],[-1,1],[0,1],[-1,1],[0,3],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,3],[-2,2],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-2,-3],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-3,-4],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-4,0],[-2,2],[-1,1],[-3,4],[-2,0],[-1,0],[-1,-1],[-2,-4],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-5,1],[-1,1],[-2,2],[-1,1],[0,1],[-2,0],[-3,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[-3,2],[-3,1],[-2,1],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-4,-2],[-2,-3],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,3],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-4],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[-2,2],[-2,1],[-2,0],[-2,0],[0,1],[-1,1],[-1,0],[-1,0],[0,2],[0,1],[-2,5],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[1,1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,-2],[-2,-5],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-2],[-1,-1],[-1,-3],[-1,0],[-2,-1],[-3,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,1],[-1,-1],[-1,1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-2],[-2,-2],[-1,-2],[-11,-7],[-1,0],[-1,0],[-1,-1],[-1,-2],[-7,-4],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[-6,-6],[-3,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[0,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[0,-1],[-1,2],[0,-1],[-1,0],[-1,3],[1,2],[1,2],[2,2],[1,1],[-1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,-1],[0,1],[0,1],[0,1],[2,1],[0,2],[1,1],[1,0],[1,0],[1,2],[0,1],[0,2],[1,3],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,1],[-1,0],[0,2],[0,3],[1,1],[1,1],[1,0],[1,1],[1,2],[1,0],[1,1],[1,0],[1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,2],[1,0],[1,1],[0,1],[1,0],[0,3],[0,1],[0,2],[-1,0],[0,1],[-1,2],[-1,1],[0,4],[-1,0],[-1,1],[-1,0],[0,2],[-1,1],[-1,2],[0,3],[0,3],[0,5],[1,6],[-1,3],[-1,4],[1,3],[0,4],[0,1],[0,2],[0,1],[0,1],[1,3],[0,3],[1,4],[0,3],[1,1],[0,1],[0,3],[-1,1],[-1,0],[0,2],[-1,2],[1,2],[0,3],[-1,2],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-4,2],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[-3,0],[-1,0],[-1,2],[-1,1],[-1,2],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,4],[-1,1],[-1,1],[-1,0],[-2,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[-1,0],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,2],[0,2],[1,1],[-3,4],[0,1],[-3,2]],[[4012,4534],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,62],[16,181]],[[3874,5046],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-4],[0,-5],[0,-2],[0,-1],[1,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-4],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-3,-2],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-2],[0,-2],[-1,-1],[-1,-2],[-1,-3],[-1,-2],[-1,-3],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[-1,0],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-2,0],[-2,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[1,-3],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-3],[0,-2],[-1,0],[0,-1],[0,-5],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3895,5066],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0]],[[3874,5047],[0,-1]],[[4198,6945],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,1],[-2,3],[-2,3],[-1,1],[-1,-1],[-1,-2],[1,-2],[1,-2],[1,0],[1,-1],[0,-2],[0,-2],[-1,-1],[-2,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,1],[-2,1],[-1,1],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[-3,-4],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,2],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1]],[[3906,6674],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-2],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-3],[0,-1],[1,-4],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-2],[-1,-1],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[0,-2],[1,-2],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-2],[1,-2],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-2,-3],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2]],[[3899,6046],[-1,0],[0,-1],[0,-1]],[[3898,6044],[0,-1],[-1,-2],[0,-1]],[[3897,6040],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-6],[1,-3],[0,-3],[1,-2],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-5],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-2,-6],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1]],[[3889,5942],[0,-1],[1,-3]],[[3890,5938],[2,-2],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[-1,-1],[2,0],[2,-2],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,-2],[0,-2],[-2,-4],[0,-1],[-2,-4],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[3899,5878],[-1,0],[-2,-3],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-4],[0,-2],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-5],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-6],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1]],[[3902,5676],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-3],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-3],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-4,-4],[-1,-1],[-2,-1],[0,-2],[-1,-3],[-1,-3],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-3],[-1,-1],[1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[0,-3],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-4],[0,-6],[0,-2],[-1,-12],[-1,0],[0,-1]],[[3888,5363],[0,-1],[-1,-4],[-1,-2],[-1,-3],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-4],[-1,1],[-6,-6],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-4],[-1,-2],[-1,-1],[0,-8],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[2,-3],[1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,0],[-1,0],[-2,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-6],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-4],[1,0],[0,-2],[-1,-1],[1,-1],[0,-3],[1,-6],[-1,-5],[1,-7],[0,-5],[0,-1],[-1,-3],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,1],[0,-1],[0,-6],[1,-1],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-3],[1,-2],[2,-11],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3]],[[4037,4543],[-25,-9]],[[5097,3799],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[-25,62],[-25,61],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,-61]],[[4164,4351],[-26,61]],[[4138,4412],[-25,61],[-25,0],[-25,0],[-26,0],[-25,61]],[[4199,6945],[10,17],[6,14],[15,15],[33,25],[32,25],[18,11],[28,12],[23,13],[16,5],[10,-1],[6,-1],[7,3],[12,10],[14,18],[26,21],[28,21],[27,18],[26,22],[19,13],[21,10]],[[5097,3799],[-9,20]],[[5274,4167],[-25,-62],[-26,-61],[-25,0],[-25,-61],[-25,-61],[-25,-62],[-26,-61]],[[5274,4167],[-6,32]],[[5324,4351],[0,-62],[0,-61],[-25,-61],[-25,0]],[[5333,4354],[-9,-3]],[[5526,3983],[-25,61],[-25,61],[-25,62],[-26,0],[-25,61],[-25,61],[-25,0],[-26,62]],[[5779,3554],[-26,61],[-25,62],[-25,61],[-25,0],[-25,61],[-26,61],[-25,62],[-25,0],[-25,61],[-26,0]],[[5526,3983],[6,9]],[[2663,9577],[138,-17],[25,0],[25,0],[25,0],[26,0]],[[2902,9560],[25,61],[25,61]],[[2952,9682],[25,0],[26,62],[25,61],[25,61],[25,0],[26,61],[25,62],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0]],[[4634,7141],[-2,0],[-5,-3],[-2,-1],[-6,-2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,2],[0,3],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,2],[-1,2],[0,1],[0,2],[0,1],[-1,3],[1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,3],[-2,4],[-1,3],[-1,2],[-1,1],[-1,0],[-1,2],[-1,3],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1]],[[5138,7111],[-4,4],[-4,7],[-10,5],[-18,0],[-16,3],[-7,0],[-8,10],[-10,10],[-6,14],[-12,20],[-20,19],[-7,4],[-8,5],[-5,2],[-4,4],[-5,1],[-3,-1],[-7,3],[-8,4],[-7,2],[-9,1],[-8,-4],[-6,-7],[-6,-6],[-5,-2],[-3,-1],[-3,0],[-4,2],[-6,4],[-3,3],[-3,5],[-3,2],[-2,0],[-3,0],[-4,1],[-3,3],[-3,3],[-4,2],[-6,0],[-3,0],[-2,1],[-2,1],[-2,-2],[-3,-3],[-1,0],[-2,2],[-2,4],[-3,2],[-3,0],[-1,-2],[-1,-4],[0,-3],[-2,-2],[0,-3],[-1,-5],[1,-3],[2,-5],[1,-5],[0,-3],[-1,-2],[-2,-1],[-1,2],[-1,3],[1,2],[0,2],[-1,0],[-1,-2],[-1,-4],[0,-3],[0,-6],[1,-3],[0,-4],[0,-5],[-1,-4],[-2,-3],[-2,-3],[-1,-2],[-1,-3],[0,-3],[-2,-4],[0,-1],[0,-3],[-1,-4],[-1,-2],[-1,1],[-3,6],[-1,3],[-4,3],[-1,1],[-2,1],[-3,2],[-4,-2],[-3,-1],[-4,-2],[-3,-1],[-2,-1],[-1,-1],[-3,1],[-3,2],[-2,2],[-1,0],[-2,-3],[-2,-2],[-2,-1],[-3,1],[-3,0],[-3,1],[-3,3],[-1,4],[-3,4],[-2,1],[-1,2],[0,2],[0,5],[-1,2],[-2,1],[-3,1],[-1,-1],[-2,2],[-1,3],[-1,0],[-2,-2],[-3,-1],[-2,-2],[-1,2],[-1,4],[-2,2],[-1,0],[-1,-2],[-2,-2],[-2,-4],[-1,-3],[-2,-2],[-4,-4],[-3,-1],[-2,-2],[-1,-2],[-3,-2],[-3,-1],[-1,0],[-1,-2],[-1,-3],[0,-3],[-1,-3],[0,-2],[-2,-2],[-2,2],[-1,1],[-2,1],[-2,1],[-1,-1],[-1,-4],[-1,-1],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-2,1],[-2,2],[-3,0],[-4,0],[-3,0],[-1,-1],[-1,-2],[-1,-3],[-2,0],[-2,0],[-2,3],[-2,1],[-1,3],[0,6],[-1,6],[-1,3],[-2,2],[-3,1],[-3,0],[-3,-2],[-4,-1],[-2,1],[-2,0],[-2,0],[-1,-1],[0,-2],[-1,-5],[-1,-2],[-2,-4],[-2,-3],[-2,-1],[-5,-2],[-4,-1],[-3,-2],[-1,0],[0,-1],[-1,-1],[0,-2]],[[4976,6079],[-2,2],[-2,1],[-2,2],[0,3],[1,3],[1,5],[0,3],[1,4],[0,2],[2,2],[2,2],[0,3],[1,2],[1,2],[2,3],[3,2],[2,2],[2,4],[0,2],[1,2],[-1,3],[0,3],[-1,2],[-1,3],[1,3],[0,7],[-1,4],[-1,3],[0,4],[1,4],[2,4],[2,3],[4,4],[3,2],[3,2],[1,1],[1,0],[1,2],[1,2],[2,1],[1,2],[1,0],[2,1],[1,2],[1,1],[0,4],[1,8],[0,5],[0,4],[0,5],[0,1],[1,2],[1,1],[1,1],[1,2],[1,4],[0,2],[2,4],[1,2],[1,4],[1,3],[0,5],[0,2],[0,10],[0,4],[1,9],[2,5],[7,9],[2,6],[4,3],[4,4],[5,2],[3,0],[4,-2],[2,-3],[2,-2],[5,6],[3,6],[0,10],[0,11],[-2,7],[-4,11],[-2,7],[-2,11],[-1,10],[0,7],[-1,5],[-1,6],[-1,3],[-5,3],[-4,9],[-1,7],[1,9],[-1,18],[-1,7],[-2,14],[-2,14],[-1,12],[0,13],[0,16],[0,8],[3,3],[3,3],[8,2],[4,3],[4,2],[4,5],[4,18],[3,14],[0,15],[0,13],[1,16],[0,11],[-2,11],[-3,15],[-2,16],[-1,7],[-1,8],[2,10],[4,5],[4,4],[7,3],[4,3],[5,1]],[[4977,6079],[-2,-5],[1,-6],[3,-10],[5,-12],[4,-9],[6,-12],[5,-12],[3,-7],[1,-9],[2,-14],[0,-11],[0,-11],[-2,-11],[-1,-13],[-1,-11],[0,-16],[-1,-17],[0,-12],[1,-6],[1,-9]],[[5019,5875],[1,-4],[-1,-4],[1,-4],[2,-2],[1,-6],[1,-5],[1,-3],[3,-4],[2,-4],[2,-10],[2,-9],[4,-8],[1,-3],[4,-12],[5,-17],[6,-13],[-1,-3],[4,-7],[0,-2],[0,-2],[1,-6],[2,-2],[0,-3],[0,-7],[2,-2],[-1,-4],[1,-1],[1,3],[4,-2],[1,-4],[1,-1],[1,-4],[1,-2],[2,-6],[4,-8],[5,-5],[3,0],[1,-3],[2,-1],[0,-2],[1,-1],[4,-16],[-2,-15],[2,0],[1,-1],[1,-6],[2,-7],[3,-4],[2,1],[4,2],[3,3],[1,5],[0,7],[1,3],[3,-6],[0,-5],[0,-7],[-1,-9],[1,-4],[2,-2],[4,0],[4,-1],[3,-1],[4,-5],[3,-2],[2,-1],[5,6],[2,5],[0,3],[1,3],[1,2],[-1,4],[-2,1],[-1,2],[1,5],[3,-1],[2,-1],[4,-13],[3,-2],[1,-3],[2,-1],[2,-1],[2,-3],[0,-6],[1,-4],[1,1],[0,18],[2,5],[3,1],[3,-2],[3,-4],[1,-7],[2,-1],[2,2],[1,3],[0,2],[1,4],[3,3],[3,2],[2,2],[2,4],[2,6],[4,3],[1,5],[2,2],[1,0],[3,-2],[2,-4],[2,-3],[1,-5],[3,-6],[2,-2],[1,-9],[3,-7],[0,-5],[1,-4],[2,-11],[2,-3],[0,-3],[2,1],[3,-1],[2,-4],[2,0],[1,2],[1,1],[2,-3],[4,2],[4,4],[1,4],[3,1],[4,-1],[4,-3],[9,-7],[9,-11],[12,-16],[15,-5],[4,2],[5,1],[2,0],[2,-5],[2,-6],[-1,-2],[0,-1],[3,-2],[2,-4],[4,-3],[1,-1],[3,-4],[1,0],[2,-1],[1,0],[2,-5],[7,-4],[3,1],[3,1],[2,-1],[1,0],[8,1],[3,2],[3,3],[2,6],[2,5],[2,6],[5,10],[6,6],[5,2],[4,3],[2,2],[1,0],[0,-5],[2,-4],[2,2],[3,3],[2,1],[2,-2],[2,0],[1,1],[1,1],[1,3],[0,3],[-1,3],[-2,2],[-2,2],[-1,2],[-1,3],[1,2],[0,2],[2,1],[1,0],[1,1],[1,1],[2,1],[2,-1],[1,-2],[1,-4],[2,0],[2,1],[2,2],[0,3],[1,2],[1,1],[1,-1],[3,-2],[1,0],[2,0],[2,3],[2,3],[2,6],[0,1],[0,1],[1,2],[-1,4],[1,7],[0,3],[3,1],[4,-1],[3,-3],[3,-2],[3,1],[2,1],[4,-4],[1,-1],[1,-2],[1,-1],[2,-3],[4,-2],[2,-3],[3,-2],[2,-1],[1,-2],[3,2],[3,4],[1,3],[3,2],[5,7],[2,0],[2,-2],[1,-6],[2,-1],[4,-6],[1,-1],[4,4],[4,3],[2,-1],[2,0],[3,-5],[3,-5],[3,2],[0,5],[1,1],[2,2],[0,-2],[1,-4],[-2,-6],[-1,-5],[2,-5],[3,-2],[4,-1],[1,-3],[2,-2],[4,-5],[3,-6],[5,-3],[5,-6],[6,-4],[5,-1],[4,-5],[0,-3],[-1,-5],[1,-6],[0,-2],[2,2],[4,0],[4,3],[5,0],[2,2],[2,-2],[6,1],[3,-2],[1,-2],[6,-8],[2,-3],[1,-3],[1,-3],[1,-6],[1,-5],[2,-1],[-1,-8],[-1,-20],[1,-1],[4,-5],[3,-5],[6,0],[3,0],[1,1],[6,5],[7,5],[3,4],[3,-1],[3,0],[4,1],[3,-3],[5,-1],[4,-4],[4,1],[1,-1],[2,-6],[2,-2],[1,-1],[1,-5],[4,-3],[1,-2],[-1,-4],[0,-5],[2,-3],[3,-3],[4,1],[2,-5],[3,-1],[2,1],[2,3],[2,-1],[1,-19],[1,-1],[3,1],[6,-4],[1,0],[2,-1],[3,0],[4,-4],[5,-5],[5,-2],[3,-1],[3,-10],[2,-2],[2,0],[4,2],[1,-1],[3,1],[2,-1],[4,-1],[1,-5],[2,-14],[-3,-4],[-4,-4],[-10,2],[0,-8],[-2,-7],[0,-5],[0,-9],[1,-18],[5,-9],[6,-16],[5,-12],[2,-14],[4,-16],[2,-11],[0,-6],[2,-10]],[[5138,7111],[3,-22],[1,-11],[-1,-8],[-1,-12],[-3,-14],[-2,-10],[-6,-10],[-6,-8],[-3,-7],[-4,-15],[-1,-17],[-3,-10],[-5,-8],[-11,-24],[-8,-18],[-3,-6],[-1,-3],[0,-6],[1,-6],[3,-21],[1,-7],[-1,-4],[-3,-4],[-1,-2],[-3,-3],[-1,-3],[0,-5],[0,-6],[4,-10],[4,-12],[5,-10],[1,-4],[2,-28],[2,-15],[0,-6],[0,-5],[-5,-16],[-3,-11],[-1,-9]],[[6107,4718],[-25,62],[-26,61],[-25,61],[-25,61],[-25,62],[-26,61],[-25,61],[-25,62],[-25,0],[-26,0],[-25,0],[-25,0],[-38,19]],[[6107,4718],[-12,15]],[[6940,3248],[0,61],[-26,61],[-25,61],[-25,62],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61],[-26,61]],[[6712,3860],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,62],[-25,61],[-26,61],[-25,61],[-25,62],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61]],[[6511,490],[0,61],[25,61],[25,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[25,61],[25,62]],[[6737,1249],[1,-24]],[[6738,1225],[25,61],[0,62],[25,61]],[[6787,1439],[1,-30]],[[6788,1409],[25,61],[26,0],[25,62],[25,61],[25,61],[26,61],[25,62],[25,61],[25,0],[26,61]],[[7217,2941],[-25,61],[-25,62],[-26,61],[-25,61],[-25,62],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[6940,3248],[1,-39]],[[7024,1923],[17,-24]],[[7041,1899],[25,62],[25,61],[25,61],[25,61],[26,62],[25,61],[25,61],[25,62],[26,0],[25,0],[25,0]],[[7217,2941],[-6,-34]],[[7369,2635],[-26,61],[-25,61],[-25,62],[-25,61],[-26,61],[-25,0]],[[7318,2390],[-1,5]],[[7318,2390],[25,61],[0,61],[26,61],[0,62]],[[7350,2610],[19,25]],[[6107,4718],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,-61],[26,-61],[25,-62],[25,-61],[25,-61],[26,-61],[25,-62],[25,-61],[25,-61],[25,-62],[26,-61],[25,-61],[25,-61],[25,-62]],[[2290,6939],[-95,47],[-50,0],[-26,-61]],[[2119,6925],[-25,0],[-25,0],[-25,61],[-26,61],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,61],[-25,62],[-25,61],[-26,0],[-25,0],[-25,61],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,62],[-25,61],[0,61],[-25,61],[-26,62],[-25,61],[0,61],[25,61],[26,62],[25,61],[25,61],[25,62],[26,61],[25,61],[25,61],[25,62],[26,61],[25,61],[25,62],[25,61]],[[1791,8518],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,-61],[25,-62]],[[2536,5494],[-139,-102],[-25,0],[-25,62]],[[2347,5454],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[-26,61],[0,61],[-25,62],[-25,61]],[[2271,6373],[-25,61],[-26,62],[-25,61],[-25,61],[-25,61],[0,62],[0,61],[0,61],[-26,62]],[[3039,4731],[0,1],[-1,1],[0,2],[-1,3],[0,1],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[-1,2],[0,2],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,2],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,5],[-1,1],[-1,0],[0,2],[0,1],[0,1],[0,3],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,3],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,3],[0,2],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-2,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[-1,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,2],[-1,0],[-3,3],[-2,1],[-1,2],[-1,0],[-1,0],[-2,3],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,2],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-5,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-3,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-2,6],[-2,5],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,0],[0,1],[-1,2],[-2,1],[-1,2],[-2,2],[-1,1],[-1,0],[-4,2],[-4,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,3],[0,5],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[-1,5],[0,1],[0,4],[-1,2],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,8],[-2,5],[0,1],[-1,2],[0,1],[0,2],[-1,0],[0,1],[0,1]],[[2765,5149],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[1,0],[0,6],[1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,10],[-1,4],[0,2],[0,1],[1,6],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,6],[-1,2],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-3],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[-1,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,5],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,3],[0,2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-3,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-2],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,5],[-3,3],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-3,4],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,3],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,3],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[-2,4],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[-1,5],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[-1,0],[0,3],[-1,2],[0,1],[-1,2],[-4,10],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0]],[[3078,9069],[0,62],[0,61],[0,61],[0,62],[0,61],[-25,61]],[[3003,9560],[-26,0],[-25,0],[-25,0],[-25,0]],[[2819,8355],[7,40]],[[2826,8395],[25,62]],[[2851,8457],[25,61],[0,61]],[[2876,8579],[26,61],[25,62],[25,61],[25,61],[26,62],[25,61],[25,61],[25,61]],[[3046,4734],[1,-16],[8,-16],[11,-11],[8,-11],[6,-17],[7,-18],[11,-16],[11,-11],[8,-15],[4,-4],[4,-5],[5,-4],[9,-8],[8,-7],[8,-7],[6,-7],[6,-6],[10,-5],[4,-3],[4,-7],[18,-17],[11,-10],[9,-8],[11,-7],[9,-5],[18,-3],[11,-4],[11,-7],[11,-6],[11,-6],[13,0],[11,-2],[9,0],[9,0],[7,0],[13,3],[7,6],[4,2],[9,-3],[12,-5],[9,-2],[25,4],[4,0],[1,4],[3,3]],[[4971,3370],[-25,0]],[[4946,3370],[-25,61]],[[4921,3431],[-26,62],[-25,61]],[[4870,3554],[-25,61],[-25,62],[-26,61],[-25,61],[-25,61],[-25,62],[-25,61],[-26,61],[-25,61]],[[4643,4105],[-25,62],[-25,61],[-26,61],[-25,62],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0]],[[4138,4412],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0]],[[3810,4412],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0]],[[3583,4412],[-25,0],[-25,0]],[[3533,4412],[-26,0]],[[3507,4412],[-25,0],[-41,65]],[[5779,3554],[-26,0]],[[5753,3554],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0]],[[5324,3554],[-25,0]],[[5299,3554],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,-61],[-25,-62],[-25,-61],[-26,-61]],[[4996,3309],[-25,61]],[[4995,3368],[-24,2]],[[2347,9008],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[2069,9008],[0,73]],[[2069,9008],[-25,0],[-26,0],[-25,0],[-25,-61],[-25,-61],[-26,-62],[-25,-61],[-25,-61],[-25,-62],[-25,-61],[-26,-61]],[[2350,9300],[-3,-169],[0,-123]],[[3053,9437],[0,-61],[-25,-61],[-25,0],[-26,-62],[-25,0],[-25,-61],[-25,0],[-26,0],[-25,-61],[-25,0],[-25,0],[-25,0],[-26,-62],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,-61],[-25,-61],[-25,61]],[[3533,4412],[25,-61],[25,-62],[25,-61],[26,-61],[25,-62],[25,-61],[25,-61],[26,-61],[25,-62],[25,-61],[25,-61],[25,-61],[26,-62],[25,-61],[25,-61],[25,-62]],[[3936,3431],[26,-61]],[[3962,3370],[25,0],[25,0],[25,0]],[[4037,3370],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0]],[[376,1737],[2,-22]],[[378,1715],[-25,0],[-25,-61],[-26,61],[-25,62]],[[277,1777],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61]],[[277,2144],[0,62],[0,61],[0,61]],[[277,2328],[0,62]],[[277,2390],[25,61],[26,61]],[[328,2512],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62]],[[328,4351],[0,61]],[[328,4412],[25,61],[25,61],[25,62],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0]],[[1085,367],[-26,61],[-25,62],[-25,61],[-25,61],[-26,62],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,61],[0,61]],[[403,796],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61]],[[403,1286],[0,62],[0,61]],[[403,1409],[0,61],[-25,62],[-25,61],[0,61]],[[353,1654],[25,61]],[[555,4596],[25,61],[25,61],[25,62],[26,61],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0]],[[1337,4841],[25,0]],[[1362,4841],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,-61],[25,-62],[25,-61]],[[565,4583],[-10,13]],[[1085,367],[11,23]],[[4971,2022],[0,-61],[0,-62],[-25,-61],[-25,-61]],[[4921,1777],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[4391,1777],[-26,-62],[-25,-61],[-25,-61],[-25,-61],[-26,-62],[-25,-61],[-25,-61],[-25,-62],[-25,-61],[-26,-61],[-25,-61],[-25,-62],[-25,-61],[-26,-61],[-25,-62],[-25,-61],[-25,-61],[-26,-61],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0]],[[2952,674],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[2826,674],[-25,0],[-25,0],[-26,0]],[[2750,674],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0]],[[2321,674],[-25,0],[-25,0],[-25,0],[-26,0]],[[2220,674],[-25,-62],[-25,-61],[-25,-61]],[[2145,490],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[1615,490],[-26,0],[-25,0]],[[1564,490],[-25,-62],[-25,-61]],[[1514,367],[-26,0],[-25,0],[-25,0],[-25,-61]],[[1413,306],[-25,0],[-26,-61],[-25,-62]],[[1337,183],[-25,-61],[-25,-61]],[[1287,61],[-26,0],[-25,0]],[[1236,61],[-25,61],[-25,0],[-26,0],[-25,61],[0,62],[-25,61],[-25,61]],[[1665,4657],[-2,-36]],[[1665,4657],[25,61],[26,62],[25,61],[25,61],[25,61],[26,62]],[[1817,5025],[25,61]],[[1842,5086],[25,61],[25,62],[25,61],[26,61],[25,61],[25,62],[25,61],[26,61]],[[2044,5576],[25,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61]],[[2069,6802],[25,61],[25,62]],[[4983,2037],[-12,-15]],[[5728,3431],[-25,-61],[-25,-61],[-25,-61],[-26,-62],[-25,-61],[-25,-61],[-25,-62],[-26,-61],[-25,-61]],[[5501,2880],[-25,-61],[-25,-62],[-26,-61],[-25,-61],[-25,-62],[-25,-61],[-26,-61]],[[5324,2451],[-25,0]],[[5299,2451],[-25,-61],[-25,-62],[-26,-61],[-25,-61],[-25,-62]],[[5173,2144],[-25,-61],[-25,-61],[-26,-61],[-25,0],[-25,0],[-25,0],[-26,0],[-25,61]],[[328,2512],[0,-61],[-26,-61],[-25,-62]],[[1665,4657],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[1438,4657],[-25,0],[-25,61],[-26,62],[-25,61]],[[1236,61],[25,-61],[26,61]],[[1287,61],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0]],[[1438,61],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0]],[[2069,61],[25,61],[25,61],[26,62],[25,61]],[[2170,306],[25,61],[25,61],[26,62]],[[2246,490],[25,61],[25,61],[25,62]],[[2321,674],[26,61],[25,61],[25,61],[25,62],[25,61]],[[2447,980],[26,0],[25,61],[25,62],[25,61],[26,61],[25,61],[25,62],[25,61],[26,61],[25,62]],[[2700,1532],[25,61],[25,61]],[[2750,1654],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0]],[[3356,1654],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,61],[25,62]],[[4012,1777],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0]],[[2069,6802],[-25,-61]],[[2044,6741],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62]],[[5299,2451],[25,61],[26,61],[25,62],[25,61],[25,61],[26,62],[25,61]],[[5476,2880],[25,61],[25,61],[26,62],[25,61],[25,61],[25,62],[26,61],[25,61],[25,61],[25,62],[25,61]],[[277,2144],[25,62],[26,61],[25,61],[25,62],[25,61],[26,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[-26,61],[-25,61],[0,62],[0,61],[-25,61],[-25,62]],[[1362,4841],[26,-61],[25,-62],[25,-61]],[[2750,674],[-25,-62],[-25,-61],[-25,-61],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0]],[[2246,490],[-26,0],[-25,0],[-25,0],[-25,0]],[[1665,4657],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[25,62],[26,61],[25,61],[25,62],[25,61],[26,61]],[[1817,6189],[25,61]],[[1842,6250],[25,62],[25,61],[25,61],[26,62],[25,61],[25,61],[25,61],[26,62]],[[5501,2880],[-25,0]],[[328,4412],[-26,-61],[-25,-62]],[[277,4289],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61]],[[2220,674],[26,61],[25,61],[25,61],[25,62],[26,61],[25,0],[25,0],[25,0]],[[2422,980],[25,0]],[[2750,1654],[26,61],[25,62],[25,61],[25,61],[25,62],[26,61],[25,61],[25,61],[25,62],[26,61],[25,61],[25,62],[25,61],[26,61],[25,61],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,-61],[25,-61],[25,-61],[25,-62],[26,-61],[25,-61],[25,-62],[25,-61],[25,-61],[26,-61],[25,-62],[25,-61],[25,0],[26,-61]],[[277,1777],[-25,61],[-25,61],[-26,62],[-25,61],[-25,61],[-25,61]],[[126,2144],[25,62],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61]],[[25,2512],[0,61],[25,62],[25,61],[25,61],[26,62],[25,61],[25,61]],[[176,2941],[-25,61],[25,62]],[[176,3064],[-25,61],[25,61]],[[176,3186],[-25,62],[25,61]],[[176,3309],[-25,61],[25,61]],[[176,3431],[-25,62],[25,61]],[[176,3554],[-25,61],[25,62]],[[176,3677],[-25,61],[25,61]],[[176,3799],[-25,61],[25,62]],[[176,3922],[-25,61],[25,61]],[[176,4044],[25,61],[26,62],[25,61],[25,61]],[[403,796],[26,61],[25,62],[-25,61],[25,61],[-25,62],[25,61],[-25,61],[-26,61]],[[403,1286],[26,62],[-26,61]],[[403,1409],[-25,61],[-25,62],[-25,61],[25,61]],[[2826,674],[-25,-62],[-25,-61],[-26,-61],[-25,-62],[-25,-61],[-25,-61],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[2170,306],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0]],[[1539,306],[-25,0],[-26,0]],[[1488,306],[-25,0],[-25,0],[-25,0]],[[5324,2451],[-25,-61],[-25,-62],[-25,-61],[-26,-61],[-25,-62],[-25,0]],[[1337,183],[25,0],[26,0],[25,0],[25,0],[25,62],[25,61]],[[1488,306],[26,61]],[[1568,504],[-4,-14]],[[2700,1532],[0,61],[0,61],[25,61],[25,62],[-25,61],[-25,0]],[[2422,980],[11,70]],[[2624,2267],[-8,46]],[[2624,2267],[25,61],[26,62],[25,61],[25,61],[25,61],[26,62],[25,61],[25,61],[25,62],[25,61],[26,61],[25,61],[25,62],[25,61],[26,61]],[[2700,1838],[0,61],[0,62],[0,61],[0,61],[-25,61],[-26,62],[-25,61]],[[2709,1805],[-9,33]],[[2876,8579],[-25,-61]],[[2851,8518],[-25,-61],[0,-62]],[[3003,3186],[-4,17]],[[3003,3186],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,62],[25,61],[25,61]],[[126,2144],[-26,62],[-25,61],[-25,61],[-25,62],[-25,61],[25,61]],[[25,2512],[25,61],[25,62],[25,61],[26,61],[25,62],[25,61],[0,61]],[[176,2941],[0,61],[0,62]],[[176,3064],[0,61],[0,61]],[[176,3186],[0,62],[0,61]],[[176,3309],[0,61],[0,61]],[[176,3431],[0,62],[0,61]],[[176,3554],[0,61],[0,62]],[[176,3677],[0,61],[0,61]],[[176,3799],[0,61],[0,62]],[[176,3922],[0,61],[0,61]],[[1438,61],[25,61],[25,61],[26,62],[25,61]],[[1539,306],[25,61],[25,61],[26,62]],[[2851,8518],[0,-61]],[[1842,5086],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61]],[[2069,61],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,61],[25,61],[26,62],[25,61],[25,61],[25,61],[25,62],[26,61],[25,61],[25,62]],[[2952,674],[25,61],[26,61],[25,61],[25,62],[25,61],[26,61],[25,62],[25,61],[25,61],[26,61],[25,62],[25,61],[25,61],[25,62],[26,61],[25,61]],[[3356,1654],[25,61],[25,62],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0],[25,0],[26,0],[25,0],[25,0]],[[1817,6189],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61],[0,-61],[0,-62],[0,-61],[0,-61]],[[2663,9578],[-2,-11],[2,-7],[5,-12],[5,2],[13,0],[16,-4],[27,-7],[35,-13],[7,-4],[18,-15],[10,-7],[36,-18],[22,-13],[54,-27],[30,-15],[9,-3],[11,1],[9,1],[5,4],[6,5],[5,3],[8,2],[6,-1],[5,-1],[5,3],[7,3]],[[3016,9444],[75,-354]],[[3274,7942],[4,25],[3,29],[0,16]],[[3281,8012],[2,5],[13,28],[12,29],[13,35],[7,25],[5,16],[3,14],[-9,3],[-13,10],[-32,44],[-28,39],[-18,24],[-10,10],[-9,4],[-5,3],[3,14],[12,53],[10,48],[2,17],[8,50],[4,29],[5,32],[4,23],[1,13]],[[3261,8580],[3,10],[1,6],[-20,29],[-22,36],[-8,18],[-18,48],[-25,75],[-11,37],[-5,36],[-16,63],[-15,48],[-17,50],[-10,33],[-7,21]],[[3340,7737],[-1,0]],[[3339,7737],[-1,0],[0,1],[-1,0],[-1,2],[0,1],[0,2],[-1,0],[0,1],[-1,2],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,2],[0,1],[1,0],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,2],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[0,2],[0,1],[0,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,3],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0]],[[3713,7610],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[1,1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,-1],[1,-1],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[1,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,-2],[-2,0],[-2,-2],[-2,-1],[-1,0],[-3,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-2,-2],[-2,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,1],[-2,-1],[-2,0],[-2,0],[-2,-1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,2],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,3],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-4,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,4],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[-1,1],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[-1,-1],[-1,0]],[[3340,7737],[-1,0],[1,0]],[[3710,7608],[-18,-52],[-19,-58],[-15,-29],[-14,-14],[-14,-13],[-3,-6],[-8,-54],[-6,-33],[-12,-26],[-16,-15],[-2,-4],[-1,-26],[-1,-16],[-3,-7],[12,-9],[9,-19],[15,-19],[15,-17],[14,-20],[7,-22],[8,-14],[9,-10],[12,-13],[19,-33],[14,-31],[16,-28],[10,-19],[6,-13],[8,-34],[3,-34],[6,-28],[2,-33],[0,-36],[2,-35],[14,-11],[18,-7],[22,-12],[12,-9],[13,-9],[16,-13],[24,-22],[9,-14],[6,-10],[6,-7]],[[3281,8012],[-1,6],[-20,15],[-18,11],[-14,13],[-15,11],[-9,10],[-20,11],[-12,10],[-10,11],[-6,5],[-8,6],[-10,8],[-10,9],[-9,10],[-8,10],[-11,9],[-15,14],[-11,12],[-17,20],[-11,12],[-11,10],[-19,19],[-14,15],[-25,25],[-12,12],[-4,2],[-15,14],[-8,10],[-12,8],[-14,6],[-29,10],[-17,-3]],[[2866,8354],[-47,1]],[[3905,6674],[6,-31],[7,-36],[3,-27],[-3,-42],[1,-17],[-4,-29],[-3,-30],[-5,-39],[-3,-26],[-5,-15],[-7,-33],[-5,-17],[-2,-29],[-3,-19],[-4,-20],[-3,-19],[0,-15],[1,-19],[0,-19],[-2,-14],[0,-16],[6,-13],[11,-18],[7,-16],[3,-13],[-4,-17],[0,-16],[1,-16],[2,-6],[-1,-1]],[[3899,6046],[-1,-2],[-1,-4]],[[3897,6040],[0,-3],[0,-4],[0,-4],[2,-7],[1,-4],[1,-3],[1,-3],[0,-3],[0,-8],[-2,-8],[-1,-4],[-1,-5],[-3,-6],[-1,-3],[-1,-6],[-1,-8],[-1,-5],[-3,-8],[0,-3],[1,-3]],[[3889,5942],[1,-4]],[[3890,5938],[1,-3],[2,-3],[3,-5],[3,-7],[3,-5],[3,-3],[2,-2],[1,-2],[2,-1],[0,-1],[2,-1],[3,-1],[-5,-10],[-6,-8],[-3,-5],[-2,-3]],[[3899,5878],[0,-3],[0,-5],[0,-4],[-1,-13],[-1,-5],[0,-5],[1,-3],[-1,-3],[-1,-2],[0,-6],[-2,-4],[-2,-6],[-1,-2],[0,-4],[1,-4],[5,-32],[1,-10],[1,-6],[1,-14],[0,-6],[0,-8],[-1,-10],[0,-11],[0,-6],[0,-10],[1,-5],[1,-3],[1,-4],[1,-4],[-1,-4]],[[3902,5676],[-2,-8],[0,-3],[0,-2],[0,-3],[1,-6],[2,-12],[1,-6],[1,-5],[1,-4],[1,-2],[2,-2],[1,-3],[0,-2],[1,-2],[6,-9],[3,-5],[3,-5],[1,-3],[1,-2],[-1,-3],[-3,-9],[-2,-6],[-1,-3],[-1,-16],[0,-10],[1,-6],[-4,-11],[-2,-21],[-5,-29],[-4,-26],[-2,-12],[-4,-10],[-3,-12],[-3,-13],[-2,-17],[-2,-14],[1,-11]],[[3888,5363],[2,-13],[-3,-8],[-5,-19],[-5,-12],[0,-13],[-1,-23],[2,-9],[4,-8],[-1,-5],[-2,-17],[-3,-29],[-1,-37],[1,-20],[3,-12],[8,-7],[8,-11],[0,-19],[0,-30],[3,-17],[2,-13],[1,-19],[2,-17],[4,-10],[7,-9],[-1,-8],[-2,-16],[-4,-16],[-5,-4],[-5,-2],[-3,-16],[-7,-26],[-11,-41],[-12,-41],[-10,-31],[-2,-7]],[[3261,8580],[13,-7],[22,-20],[23,-26],[27,-26],[34,-30],[23,-26],[17,-25],[28,-41],[19,-32],[19,-26],[20,-23],[13,-18],[3,-6],[1,-7],[8,-6],[5,-4],[7,-3],[8,3],[10,4],[7,1],[11,-6],[8,-13],[8,-10],[4,-4],[5,-1],[5,-4],[4,-3],[11,-1],[9,-1],[10,-7],[9,-7],[7,-7],[8,1],[8,-4],[11,-6],[5,-3],[4,3],[6,5]],[[3701,8194],[24,-20],[8,-5],[6,-21],[10,-23],[6,-15],[8,-19],[7,-25],[8,-22],[6,-21],[2,-6],[-6,-19],[-7,-21],[-9,-29],[-9,-25],[-6,-19],[-3,-20],[-2,-27],[-3,-29],[-4,-27],[-3,-23],[-4,-23],[-2,-13],[-1,-22],[-2,-28],[-3,-28],[-3,-29],[-1,-16],[-3,-9],[-5,-2]],[[5835,3677],[-2,-4],[-1,-4],[0,-5],[-1,-9],[-1,-4],[-2,-4],[-3,-5],[-3,-6],[-3,-6],[-2,-4],[-1,-4],[0,-2],[-2,0],[-1,0],[-2,0],[-1,0],[-4,-4],[-8,-6],[-8,-9],[-2,-2],[-3,-6]],[[4634,7141],[0,-11],[0,-19],[-1,-15],[-7,-19],[-4,-13],[-5,-19],[-4,-18],[-9,-26],[-10,-28],[-11,-27],[-5,-12],[-15,-16],[-20,-24],[-19,-20],[-7,-15],[-6,-17],[-4,-14],[-4,-17],[-2,-12],[-4,-9],[-6,-14],[-7,-11],[-11,-11],[-8,-8],[-7,-11],[-2,-4],[-5,-8],[-4,-9],[-5,-12],[-6,-11],[-5,-10],[-4,-8],[-5,-13],[-5,-13],[-4,-11],[-4,-10],[-5,-12],[-4,-12],[0,-4],[1,-9],[2,-8],[1,-9],[0,-9],[1,-13],[0,-13],[0,-12],[0,-8],[2,-11],[1,-14],[2,-10],[4,-3],[7,-9],[4,-4],[4,-5],[2,-7],[0,-6],[0,-4],[-1,-5],[-3,-6],[-1,-4],[0,-4],[1,-7],[0,-7],[1,-7],[3,-8],[3,-8],[2,-8],[0,-5],[1,-4],[0,-7],[2,-9],[3,-12],[3,-7],[3,-7],[2,-5],[1,-8],[1,-10],[2,-8],[2,-8],[1,-2],[2,-3],[3,-2],[2,-3],[2,-1],[1,-4],[2,-5],[1,-3],[1,-3],[-2,-4],[-2,-1],[-1,-1],[0,-3],[-1,-2],[-1,-3],[0,-1],[0,-3],[0,-2],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,1],[1,2],[2,1],[2,1],[1,-1],[4,-1],[3,-2],[1,0],[1,-1],[1,-2],[-1,-1],[0,-4],[0,-5],[0,-4],[-1,-3],[0,-3],[0,-2],[1,-2],[1,-1],[3,-5],[1,-3],[1,-3],[1,-2],[0,-3],[1,-3],[3,-5],[2,-4],[1,-3],[1,-2],[0,-4],[0,-1],[-1,-4],[1,-4],[0,-3],[0,-5],[0,-3],[-1,-3],[0,-3],[-1,-4],[-1,-4],[0,-5],[-1,-2],[-2,-2],[-1,-2],[0,-4],[-1,-2],[-1,-2],[0,-2],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-2],[0,-2],[1,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,-4],[0,-4],[1,-1],[1,0],[2,0],[2,0],[3,-2],[2,-1],[1,-4],[3,-4],[3,-2],[3,-2],[5,-3],[2,-4],[2,-3],[1,-3],[1,-2],[2,-5],[0,-5],[1,-5],[0,-11],[7,5],[7,1],[3,0],[5,1],[3,0],[3,0],[4,0],[3,1],[6,1],[3,1],[2,1],[4,-1],[4,0],[5,0],[6,0],[3,0],[5,0],[3,1],[2,1],[3,0],[2,-1],[3,-1],[2,-3],[1,-3],[1,-5],[1,-6],[1,-7],[0,-7],[0,-7],[2,-10],[3,-7],[6,-7],[4,-9],[3,-9],[2,-3],[3,-3],[3,-3],[3,-1],[2,-2],[1,-2],[3,-9],[3,-9],[3,-11],[1,-9],[2,-12],[3,-14],[2,-5],[2,-5],[2,-3],[4,-3],[10,-11],[8,-10],[5,-8],[5,-5],[3,-3],[4,-3],[7,-4],[8,-4],[9,-6],[14,-8],[12,-7],[8,-5],[9,-5],[6,-4],[5,-1],[4,0],[5,0],[8,0],[14,-24],[11,-16],[9,-13],[7,-16],[7,-12],[10,-11],[7,-5],[7,-7],[8,-6],[8,-8],[3,-3],[3,-3],[2,-1],[6,3],[13,9],[11,7],[9,6],[5,4],[4,3],[2,0],[2,0],[6,-4],[4,-1],[6,-1],[5,1],[7,2],[3,2],[3,2],[0,3]],[[5223,4963],[-25,0],[-25,0],[-25,0],[-25,62],[-26,61],[-25,0],[-25,61],[-25,0],[-26,0],[-25,0],[-25,62]],[[4946,5209],[-8,9]],[[4990,5696],[0,-6],[0,-11],[-1,-11],[-1,-7],[-1,-9],[-1,-10],[0,-4],[1,-3],[1,-3],[1,-4],[1,-3],[0,-5],[-1,-4],[0,-4],[0,-3],[-1,-6],[0,-4],[0,-2],[-8,-4],[-5,-4],[-7,-4],[-3,-1],[-3,0],[-6,-2],[-2,-2],[-3,-2],[-3,-3],[-3,-4],[-4,-5],[-3,-6],[-4,-8],[-6,-14],[-5,-12],[-2,-7],[-2,-7],[-2,-14],[0,-5],[0,-8],[1,-12],[1,-8],[2,-10],[0,-8],[-1,-7],[-1,-4],[-2,-4],[-2,-3],[0,-5],[0,-5],[1,-4],[2,-5],[1,-3],[2,-3],[-2,-5],[-2,-7],[-4,-9],[-1,-6],[-1,-5],[1,-3],[1,-5],[3,-9],[3,-12],[1,-4],[1,-4],[1,-2],[2,-4],[1,-2],[0,-1],[0,-2],[0,-11],[0,-8],[1,-12],[1,-8],[1,-5],[0,-3],[0,-2],[0,-3],[-1,-3],[1,-2],[1,-5],[0,-3],[-1,-5],[-2,-6],[-2,-6],[2,-3],[5,-7],[5,-7],[2,-7]],[[4995,5696],[-2,3],[-2,1],[-1,-4]],[[5215,5009],[8,-46]],[[5274,4780],[0,61],[-25,61],[-26,61]],[[5274,4780],[33,14]],[[5324,4351],[0,61],[0,61],[0,61],[-25,62],[-25,61],[0,61],[0,62]],[[3852,4778],[3,-5],[4,-6],[4,-6],[7,-5],[7,-3],[8,-3],[8,1],[23,2],[14,0],[13,2],[8,0],[15,-12],[15,-10],[12,-4],[14,-6],[13,-4],[8,-4],[8,-6],[6,-8],[7,-10],[8,-7],[4,-3],[12,-6],[7,-3],[10,-4],[15,-4],[14,-3],[10,-4],[4,-2],[3,-4],[3,-3],[3,-5],[6,-9],[7,-8],[5,-3],[3,-2],[5,0],[3,-3],[6,-3],[5,-3],[3,0],[3,0],[2,-1],[2,0],[2,-1],[2,0],[3,-1],[2,0],[3,1],[3,0],[4,1],[3,-1],[8,-1],[7,0],[16,1],[10,2],[4,2],[2,0],[0,-2],[1,0],[2,-3],[1,0],[4,-2],[2,0],[3,-1],[4,-1],[4,-1],[4,0],[7,2],[4,3],[5,3],[3,3],[6,8],[5,5],[8,7],[8,7],[8,7],[2,2],[3,-1],[3,0],[3,-1],[2,-2],[2,-1],[2,0],[3,-1],[5,-2],[4,-2],[2,-3],[3,-4],[2,-4],[3,-2],[1,-2],[3,1]],[[4382,4626],[9,-30],[25,0],[25,61],[25,0],[26,61],[25,62],[25,0],[25,0],[26,0],[25,61],[25,0],[25,0],[26,0],[25,61],[25,61],[25,62],[25,0],[26,61],[25,61],[25,62],[25,0],[26,0],[25,0]],[[2842,5094],[-10,16],[-20,8],[-2,1],[-23,10],[-22,20]],[[2765,5149],[-2,1],[-12,23],[-7,15],[-7,19],[-17,28],[-21,32],[-15,21],[-6,9],[-21,10],[-20,6],[-10,-3],[-6,-3],[-3,-5],[-4,3],[-8,9],[-10,21],[-8,19],[-7,18],[-9,15],[-9,12],[-7,12],[-5,14],[-6,26],[-4,21],[-3,15],[-2,7]],[[2842,5094],[-1,1]],[[3046,4734],[-19,21],[-20,19],[-15,20],[-27,30],[-19,13],[-18,16],[-19,9],[-16,17],[-16,17],[-14,20],[-14,19],[-4,0],[-1,16],[0,14],[2,17],[5,24],[5,13],[1,12],[-3,16],[-2,6],[1,5],[2,5],[-4,13],[-5,12],[-4,6]],[[3962,3370],[-26,0],[-25,61],[-25,62],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61],[-25,61],[-26,62],[-25,61],[-25,61],[-25,61],[-26,62],[-25,61],[-25,61],[-25,62],[-26,61]],[[5299,3554],[-25,-61],[-25,-62],[-26,-61],[-25,-61]],[[5198,3309],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0]],[[5198,3309],[25,0],[26,61],[25,61],[25,62],[25,61]],[[2347,5454],[-26,61],[-25,61],[-25,62],[0,61],[0,61],[0,61],[0,62],[0,61],[0,61],[0,62],[0,61],[0,61],[0,61],[0,62],[0,61]],[[4921,3431],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0]],[[4643,4105],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,62],[-25,61],[-25,61],[-26,62],[-25,61]],[[4870,3554],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,0],[-25,0],[-25,0],[-26,0],[-25,61],[-25,62],[-25,61],[-26,61],[-25,61],[-25,62],[-25,61],[-25,61],[-26,61],[-25,62],[-25,61],[-25,61],[-26,62],[-25,61]],[[9261,2328],[23,43]],[[9284,2371],[1,9],[2,13],[2,19],[1,8],[4,12],[5,19],[5,16],[5,11],[3,8],[8,16],[8,15],[0,4],[0,5],[1,5],[1,3],[2,3],[1,3],[0,4],[2,3],[1,2],[1,5],[1,5],[0,5],[1,4],[1,2],[3,5],[3,5],[2,4],[1,3],[1,4],[0,2],[0,7],[0,4],[1,7],[0,8],[0,8],[0,6],[0,7],[2,-2],[3,-2],[4,-1],[4,1],[4,2],[4,3],[3,3],[3,5],[3,5],[2,6],[3,5],[2,6],[2,5],[3,5],[2,2],[3,3],[3,3],[2,5],[1,5],[2,4],[2,5],[3,5],[2,4],[1,3],[2,2],[2,3],[1,4],[1,4]],[[9420,2733],[1,0]],[[8151,1470],[-25,0],[-26,0],[-25,-61],[-25,-61],[-25,-62],[-25,-61],[25,-61],[25,-61]],[[8521,1248],[0,-1],[-3,-1],[-3,-1],[-2,-1],[-4,1],[-2,1],[-3,0],[-4,1],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,3],[-1,2],[-2,1],[-1,-1],[-1,0],[-2,0],[-1,1],[-2,1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-2,1],[-3,-11],[-2,-6],[-5,1],[-1,1]],[[8459,1238],[-5,48],[-25,62],[-26,61]],[[8403,1409],[-25,61],[-25,0],[-25,0]],[[8328,1470],[-26,0],[-25,0],[-25,62],[-25,0],[-76,-62]],[[8151,1470],[19,-19]],[[8403,1409],[-25,0],[-25,0],[-25,61]]]}
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.
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