Skip to content

Instantly share code, notes, and snippets.

@ginseng666
Last active October 14, 2015 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ginseng666/fbb41ed194e9fba74afd to your computer and use it in GitHub Desktop.
Save ginseng666/fbb41ed194e9fba74afd to your computer and use it in GitHub Desktop.
voting districts encoded as same-sized rectangles
<!DOCTYPE html>
<head>
<title>displaying voting districts</title>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="chart"></div>
<script>
var color={};
color.spoe="rgb(200, 61, 68)";
color.oevp="rgb(25, 25, 25)";
color.fpoe="rgb(38,87,168)";
color.gruene="rgb(0, 153, 51)";
color.neos="rgb(184, 37, 147)";
var b,box,s;
var projection = d3.geo.mercator().scale(1);
var path = d3.geo.path().projection(projection);
var map;
var margins={};
margins.top=15;
margins.bottom=15;
margins.left=15;
margins.right=15;
var width=window.innerWidth - margins.left - margins.right;
var height=window.innerHeight - margins.top - margins.bottom;
var svg=d3.select("#chart").append("svg").attr("width",width).attr("height",height);
svg.attr("transform","translate("+margins.left+","+margins.top+")");
//row version
var radius=12;
if (height%radius!=0) var rows=Math.floor(height/radius)+1; else var rows=height/radius;
var grid=[];
for (var i=0;i<rows;i++)
{
grid[i]=[];
}
queue().defer(d3.json, "sprengel_wien2015.json").defer(d3.csv, "wien_grw2015.csv").awaitAll(function(error,arguments)
{
var raw=arguments[0];
var map=topojson.feature(arguments[0],arguments[0].objects.sprengel);
arguments[1].forEach(function(d)
{
if (d.iso.length<5) d.iso="0"+d.iso; else d.iso=d.iso;
});
var result=d3.nest().key(function(d){return d.iso;}).map(arguments[1]);
b=path.bounds(map);
box=d3.geo.bounds(map);
s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height);
projection.scale(s).center([(box[0][0]+box[1][0])/2,(box[0][1]+box[1][1])/2]).translate([width/2,height/2]);
map.features.forEach(function(d)
{
d.x=path.centroid(d)[0];
d.y=path.centroid(d)[1];
d.r=Math.floor(d.y/radius); //rows
d.c=Math.floor(d.x/radius); //columns
grid[Math.floor(d.y/radius)].push(d);
});
var rowlength=[];
grid=grid.filter(function(d){return d.length>0;});
grid.forEach(function(d,i)
{
d.sort(function(a,b){return d3.ascending(a.c,b.c);});
if (d.length>0) rowlength.push(d.length);
});
var cols=d3.max(grid,function(d){return d.length;});
for (var j=0;j<grid.length;j++)
{
svg.append("g").selectAll("rect").data(grid[j])
.enter()
.append("rect")
.attr("x",function(d,i){return radius*(cols/2-rowlength[j]/2)+i*radius;}) //d.c*radius for accurate position
.attr("y",function(d){return d.r*radius;})
.attr("width",radius)
.attr("height",radius)
.style("fill","green")
.attr("class","rectis")
.style("stroke","white")
.style("fill",function(d){return color[result[d.properties.iso][0].winner];})
.append("title")
.text(function(d){return d.properties.iso;});
}
zoom = d3.behavior.zoom().on("zoom",function() {
svg.selectAll("g").attr("transform","translate("+d3.event.translate.join(",")+")scale("+d3.event.scale+")");
svg.selectAll(".bezirke").attr("transform","translate("+d3.event.translate.join(",")+")scale("+d3.event.scale+")");
});
svg.call(zoom);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.000039572136118031844,0.000020478280552811752],"translate":[16.181822542508847,48.11789767624906]},"objects":{"sprengel":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3]],"properties":{"iso":"22116"}},{"type":"Polygon","arcs":[[4,5,6,7,8]],"properties":{"iso":"21123"}},{"type":"Polygon","arcs":[[9,10,11,12,13,14,15,16]],"properties":{"iso":"21097"}},{"type":"Polygon","arcs":[[17,18,19,20,21,22,23,24,25,26]],"properties":{"iso":"22076"}},{"type":"Polygon","arcs":[[27,28,29,30,31,32,33]],"properties":{"iso":"21091"}},{"type":"Polygon","arcs":[[34,35,36,37]],"properties":{"iso":"13020"}},{"type":"Polygon","arcs":[[38,39,40,41,42,43]],"properties":{"iso":"21012"}},{"type":"Polygon","arcs":[[44,45,46,47,48,49,50,51,52]],"properties":{"iso":"14017"}},{"type":"Polygon","arcs":[[53,54,55,56,57,58]],"properties":{"iso":"11033"}},{"type":"Polygon","arcs":[[59,60,61,62,63]],"properties":{"iso":"22121"}},{"type":"Polygon","arcs":[[64,65,66,67,68,69]],"properties":{"iso":"22131"}},{"type":"Polygon","arcs":[[70,71,72,73,74,75,76,77,78,79,80]],"properties":{"iso":"03057"}},{"type":"Polygon","arcs":[[81,82,83,84]],"properties":{"iso":"16066"}},{"type":"Polygon","arcs":[[85,86,87,88,89]],"properties":{"iso":"09007"}},{"type":"Polygon","arcs":[[90,91,92,93,94]],"properties":{"iso":"03031"}},{"type":"Polygon","arcs":[[95,96,97,98]],"properties":{"iso":"20054"}},{"type":"Polygon","arcs":[[99,100,101,102]],"properties":{"iso":"06014"}},{"type":"Polygon","arcs":[[103,104,105]],"properties":{"iso":"02077"}},{"type":"Polygon","arcs":[[106,-92,107,108,109]],"properties":{"iso":"03028"}},{"type":"Polygon","arcs":[[110,111,112,113]],"properties":{"iso":"07030"}},{"type":"Polygon","arcs":[[114,115,116,117]],"properties":{"iso":"19056"}},{"type":"Polygon","arcs":[[118,119,120,121,122]],"properties":{"iso":"16017"}},{"type":"Polygon","arcs":[[123,124,125,126,127,128,129]],"properties":{"iso":"05014"}},{"type":"Polygon","arcs":[[130,131,132,133,134,135]],"properties":{"iso":"22023"}},{"type":"Polygon","arcs":[[136,137,138,139,-129]],"properties":{"iso":"05015"}},{"type":"Polygon","arcs":[[140,141,142,143]],"properties":{"iso":"10017"}},{"type":"Polygon","arcs":[[144,145,146,147,148]],"properties":{"iso":"06018"}},{"type":"Polygon","arcs":[[149,150,151,152,153]],"properties":{"iso":"06002"}},{"type":"Polygon","arcs":[[154,155,156,157]],"properties":{"iso":"21024"}},{"type":"Polygon","arcs":[[158,159,160]],"properties":{"iso":"15043"}},{"type":"Polygon","arcs":[[161,162,163,164,165,166,167,168,169]],"properties":{"iso":"02028"}},{"type":"Polygon","arcs":[[170,171,172,173]],"properties":{"iso":"16069"}},{"type":"Polygon","arcs":[[174,175,176,177]],"properties":{"iso":"10051"}},{"type":"Polygon","arcs":[[178,179,180,181,182,183,-70]],"properties":{"iso":"22129"}},{"type":"Polygon","arcs":[[184,185,186]],"properties":{"iso":"22132"}},{"type":"Polygon","arcs":[[187,188,189,190,191,192,193]],"properties":{"iso":"22016"}},{"type":"Polygon","arcs":[[194,195,196,197,198,199,200,201,202,203,204,-6,205]],"properties":{"iso":"21065"}},{"type":"Polygon","arcs":[[206,207,208,209,210,-1]],"properties":{"iso":"22103"}},{"type":"Polygon","arcs":[[211,212,213,214,215,216,217]],"properties":{"iso":"14020"}},{"type":"Polygon","arcs":[[218,219,220,221,222,223,224,225]],"properties":{"iso":"12014"}},{"type":"Polygon","arcs":[[226,-36,227,228,229,230,231,232]],"properties":{"iso":"13019"}},{"type":"Polygon","arcs":[[233,234,235,236,237,238]],"properties":{"iso":"14011"}},{"type":"Polygon","arcs":[[239,240,241,242,243]],"properties":{"iso":"22013"}},{"type":"Polygon","arcs":[[244,245,246,-232,247,248]],"properties":{"iso":"13036"}},{"type":"Polygon","arcs":[[249,250,251,252,253]],"properties":{"iso":"10093"}},{"type":"Polygon","arcs":[[254,255,256,257,258,259,260,261,262]],"properties":{"iso":"23051"}},{"type":"Polygon","arcs":[[263,264,265,266,267,268]],"properties":{"iso":"16076"}},{"type":"Polygon","arcs":[[269,270,271,272,273,274,275,276]],"properties":{"iso":"11048"}},{"type":"Polygon","arcs":[[277,278,279,280,281,282,283]],"properties":{"iso":"22037"}},{"type":"Polygon","arcs":[[284,285,286,287,288,289]],"properties":{"iso":"22084"}},{"type":"Polygon","arcs":[[290,291,292]],"properties":{"iso":"22137"}},{"type":"Polygon","arcs":[[293,294,295,296]],"properties":{"iso":"20039"}},{"type":"Polygon","arcs":[[297,298,299,300]],"properties":{"iso":"16025"}},{"type":"Polygon","arcs":[[301,302,303,304]],"properties":{"iso":"07024"}},{"type":"Polygon","arcs":[[305,306,307,308]],"properties":{"iso":"05006"}},{"type":"Polygon","arcs":[[309,310,311,312]],"properties":{"iso":"10056"}},{"type":"Polygon","arcs":[[313,314,315,316]],"properties":{"iso":"16027"}},{"type":"Polygon","arcs":[[317,318,319,320,321]],"properties":{"iso":"02010"}},{"type":"Polygon","arcs":[[322,323,324,-164,325,326]],"properties":{"iso":"02016"}},{"type":"Polygon","arcs":[[327,328,329,330]],"properties":{"iso":"22060"}},{"type":"Polygon","arcs":[[331,332,333,334,335]],"properties":{"iso":"02023"}},{"type":"Polygon","arcs":[[336,337,338,339]],"properties":{"iso":"10053"}},{"type":"Polygon","arcs":[[340,341,342,343,344]],"properties":{"iso":"15005"}},{"type":"Polygon","arcs":[[345,346,347,348,349]],"properties":{"iso":"10071"}},{"type":"Polygon","arcs":[[350,351,352,353,354,355,356]],"properties":{"iso":"10034"}},{"type":"Polygon","arcs":[[357,-261,358,359,360,361,362]],"properties":{"iso":"23011"}},{"type":"Polygon","arcs":[[363,364,365,366]],"properties":{"iso":"20021"}},{"type":"Polygon","arcs":[[367,368,369]],"properties":{"iso":"12011"}},{"type":"Polygon","arcs":[[370,371,372,373]],"properties":{"iso":"02072"}},{"type":"Polygon","arcs":[[374,375,376,377]],"properties":{"iso":"20049"}},{"type":"Polygon","arcs":[[378,379,380,381,382,383]],"properties":{"iso":"15007"}},{"type":"Polygon","arcs":[[384,385,386,-172,387]],"properties":{"iso":"16068"}},{"type":"Polygon","arcs":[[-204,388,389,390,391]],"properties":{"iso":"21059"}},{"type":"Polygon","arcs":[[392,393,394,395,396]],"properties":{"iso":"23065"}},{"type":"Polygon","arcs":[[397,398,-278,399,400,401]],"properties":{"iso":"22014"}},{"type":"Polygon","arcs":[[402,403,404,405,406,407,408]],"properties":{"iso":"23035"}},{"type":"Polygon","arcs":[[409,410,411,412,413,-348,414,415,416,417,418,419,420]],"properties":{"iso":"10010"}},{"type":"Polygon","arcs":[[421,422,423,424,425,426,427,428,429,430,431]],"properties":{"iso":"01012"}},{"type":"Polygon","arcs":[[432,433,434,435,436,437,438,439]],"properties":{"iso":"19040"}},{"type":"Polygon","arcs":[[440,441,442,443,444]],"properties":{"iso":"22112"}},{"type":"Polygon","arcs":[[445,-343,446,-382,447,448,449,450,451,452,-314,453,454]],"properties":{"iso":"15003"}},{"type":"Polygon","arcs":[[455,456,457,458,459,460,461,462]],"properties":{"iso":"03052"}},{"type":"Polygon","arcs":[[463,464,465,466]],"properties":{"iso":"14021"}},{"type":"Polygon","arcs":[[467,468,469,470,471,472,473]],"properties":{"iso":"23040"}},{"type":"Polygon","arcs":[[474,475,476,477,478,479,480]],"properties":{"iso":"22107"}},{"type":"Polygon","arcs":[[481,482,483,484,485,486,487]],"properties":{"iso":"23047"}},{"type":"Polygon","arcs":[[-255,488,489,490,491]],"properties":{"iso":"12058"}},{"type":"Polygon","arcs":[[492,493,-275,494,495,496]],"properties":{"iso":"11071"}},{"type":"Polygon","arcs":[[497,498,499]],"properties":{"iso":"17031"}},{"type":"Polygon","arcs":[[500,501,502,503,504,505]],"properties":{"iso":"02036"}},{"type":"Polygon","arcs":[[506,507,508,509]],"properties":{"iso":"03060"}},{"type":"Polygon","arcs":[[510,511,512,513]],"properties":{"iso":"02062"}},{"type":"Polygon","arcs":[[514,515,516,517]],"properties":{"iso":"20055"}},{"type":"Polygon","arcs":[[518,519,520,521]],"properties":{"iso":"21030"}},{"type":"Polygon","arcs":[[522,523,524]],"properties":{"iso":"11001"}},{"type":"Polygon","arcs":[[525,526,527,528]],"properties":{"iso":"02094"}},{"type":"Polygon","arcs":[[529,530,-501,531,532]],"properties":{"iso":"02035"}},{"type":"Polygon","arcs":[[-88,533,534,535]],"properties":{"iso":"09005"}},{"type":"Polygon","arcs":[[536,537,538]],"properties":{"iso":"22031"}},{"type":"Polygon","arcs":[[539,540,541,542,543,-321]],"properties":{"iso":"02009"}},{"type":"Polygon","arcs":[[544,545,546,547]],"properties":{"iso":"03018"}},{"type":"Polygon","arcs":[[548,549,550]],"properties":{"iso":"14059"}},{"type":"Polygon","arcs":[[551,552,553,554,555,556,557]],"properties":{"iso":"16031"}},{"type":"Polygon","arcs":[[558,559,560,561]],"properties":{"iso":"16033"}},{"type":"Polygon","arcs":[[562,563,564,565]],"properties":{"iso":"06024"}},{"type":"Polygon","arcs":[[566,567,568,569,570,571,572,573,574,575,576]],"properties":{"iso":"23088"}},{"type":"Polygon","arcs":[[577,578,579,580,581,582,583,584,585,-45]],"properties":{"iso":"14018"}},{"type":"Polygon","arcs":[[586,587,588,589,590,591]],"properties":{"iso":"19036"}},{"type":"Polygon","arcs":[[-372,592,593,594,595,596,597,598,599,600,601]],"properties":{"iso":"02068"}},{"type":"Polygon","arcs":[[602,603,604,605,-289,606,607]],"properties":{"iso":"22098"}},{"type":"Polygon","arcs":[[608,609,610,611,612,613,614,615,616,617,618,619,620]],"properties":{"iso":"09015"}},{"type":"Polygon","arcs":[[-64,621,-442,622,623,624]],"properties":{"iso":"22119"}},{"type":"Polygon","arcs":[[-30,625,626,627,628,629,630,631]],"properties":{"iso":"21089"}},{"type":"Polygon","arcs":[[632,-257,633,634,635,636,637,638,639]],"properties":{"iso":"23060"}},{"type":"Polygon","arcs":[[-430,640,641,642,643,644,645]],"properties":{"iso":"01011"}},{"type":"Polygon","arcs":[[646,647,648,-444,649,650,651]],"properties":{"iso":"22108"}},{"type":"Polygon","arcs":[[-247,652,653,-233]],"properties":{"iso":"13037"}},{"type":"Polygon","arcs":[[654,-600,655,656,657]],"properties":{"iso":"22006"}},{"type":"Polygon","arcs":[[658,659,660,661,662,-253]],"properties":{"iso":"10096"}},{"type":"Polygon","arcs":[[663,664,665,666,667,668,669,670,-620,671]],"properties":{"iso":"19025"}},{"type":"Polygon","arcs":[[672,673,674,675,676,677]],"properties":{"iso":"11023"}},{"type":"Polygon","arcs":[[678,679,680,681,682,683,684,685]],"properties":{"iso":"21045"}},{"type":"Polygon","arcs":[[-326,686,687]],"properties":{"iso":"02018"}},{"type":"Polygon","arcs":[[688,689,690,691,692]],"properties":{"iso":"02059"}},{"type":"Polygon","arcs":[[693,694,695,696,697]],"properties":{"iso":"20030"}},{"type":"Polygon","arcs":[[698,699,-509,700,701]],"properties":{"iso":"03063"}},{"type":"Polygon","arcs":[[702,703,704,705,706]],"properties":{"iso":"10041"}},{"type":"Polygon","arcs":[[707,708,709,710]],"properties":{"iso":"18024"}},{"type":"Polygon","arcs":[[711,712,-670,713]],"properties":{"iso":"20025"}},{"type":"Polygon","arcs":[[714,715,716,717]],"properties":{"iso":"02090"}},{"type":"Polygon","arcs":[[718,719,720,-333,721,722]],"properties":{"iso":"02032"}},{"type":"Polygon","arcs":[[723,724,725,726,727]],"properties":{"iso":"10068"}},{"type":"Polygon","arcs":[[728,-594,729,730]],"properties":{"iso":"02070"}},{"type":"Polygon","arcs":[[731,732]],"properties":{"iso":"03036"}},{"type":"Polygon","arcs":[[-309,733,734,735,736]],"properties":{"iso":"04010"}},{"type":"Polygon","arcs":[[737,738,739,740]],"properties":{"iso":"02002"}},{"type":"Polygon","arcs":[[741,742,743,744]],"properties":{"iso":"02099"}},{"type":"Polygon","arcs":[[745,746,747]],"properties":{"iso":"07002"}},{"type":"Polygon","arcs":[[748,749,-541,750,751,752]],"properties":{"iso":"02006"}},{"type":"Polygon","arcs":[[753,754,-598,755,756]],"properties":{"iso":"02067"}},{"type":"Polygon","arcs":[[757,758,-197,759]],"properties":{"iso":"21074"}},{"type":"Polygon","arcs":[[760,761,762,763]],"properties":{"iso":"07016"}},{"type":"Polygon","arcs":[[-593,-371,764,-730]],"properties":{"iso":"02071"}},{"type":"Polygon","arcs":[[765,766,767,768,769]],"properties":{"iso":"08019"}},{"type":"Polygon","arcs":[[770,771,772,773,774]],"properties":{"iso":"12016"}},{"type":"Polygon","arcs":[[775,776]],"properties":{"iso":"22146"}},{"type":"Polygon","arcs":[[777,778,-398,779,-191,780,781,-243,782,783,784]],"properties":{"iso":"22010"}},{"type":"Polygon","arcs":[[785,786,787,788,789,790,791,792]],"properties":{"iso":"21016"}},{"type":"Polygon","arcs":[[793,794,795,796,797,798,799]],"properties":{"iso":"10131"}},{"type":"Polygon","arcs":[[-48,800,801,802,803,804,805,806]],"properties":{"iso":"14066"}},{"type":"Polygon","arcs":[[807,-216,808]],"properties":{"iso":"14023"}},{"type":"Polygon","arcs":[[809,-248,-231,810,811,812,813]],"properties":{"iso":"13027"}},{"type":"Polygon","arcs":[[814,815,816,-188]],"properties":{"iso":"22079"}},{"type":"Polygon","arcs":[[817,818,819,820,821,822]],"properties":{"iso":"13038"}},{"type":"Polygon","arcs":[[823,-822,824,825,826,827,-249]],"properties":{"iso":"13033"}},{"type":"Polygon","arcs":[[828,829,830,831,832,833]],"properties":{"iso":"23024"}},{"type":"Polygon","arcs":[[834,835,-648,-2,-211]],"properties":{"iso":"22109"}},{"type":"Polygon","arcs":[[836,-639,837,838,839]],"properties":{"iso":"23061"}},{"type":"Polygon","arcs":[[840,841,842,843,844,845]],"properties":{"iso":"19061"}},{"type":"Polygon","arcs":[[846,-102,847,848,849]],"properties":{"iso":"06015"}},{"type":"Polygon","arcs":[[850,-559,-552,851,852]],"properties":{"iso":"16032"}},{"type":"Polygon","arcs":[[853,854,855,856,857,-722,-332]],"properties":{"iso":"02024"}},{"type":"Polygon","arcs":[[-506,-723,-858,858,859,-532]],"properties":{"iso":"02031"}},{"type":"Polygon","arcs":[[860,-680,861,862]],"properties":{"iso":"21046"}},{"type":"Polygon","arcs":[[863,864,865,-726,866,867]],"properties":{"iso":"10066"}},{"type":"Polygon","arcs":[[868,869,870,871]],"properties":{"iso":"03024"}},{"type":"Polygon","arcs":[[-860,872,-168,873,874,-533]],"properties":{"iso":"02030"}},{"type":"Polygon","arcs":[[875,876,-697]],"properties":{"iso":"20031"}},{"type":"Polygon","arcs":[[877,878,879,-350,880]],"properties":{"iso":"10070"}},{"type":"Polygon","arcs":[[881,882,883,884]],"properties":{"iso":"10008"}},{"type":"Polygon","arcs":[[-495,-274,885]],"properties":{"iso":"11049"}},{"type":"Polygon","arcs":[[886,887,888]],"properties":{"iso":"12019"}},{"type":"Polygon","arcs":[[-859,-857,889,-169,-873]],"properties":{"iso":"02027"}},{"type":"Polygon","arcs":[[-504,890,891,892,893]],"properties":{"iso":"02037"}},{"type":"Polygon","arcs":[[894,895,-98,896]],"properties":{"iso":"20053"}},{"type":"Polygon","arcs":[[897,898,899,900]],"properties":{"iso":"05034"}},{"type":"Polygon","arcs":[[901,902,903,904]],"properties":{"iso":"16038"}},{"type":"Polygon","arcs":[[905,906,-868,907]],"properties":{"iso":"10065"}},{"type":"Polygon","arcs":[[-894,908,-719,-505]],"properties":{"iso":"02034"}},{"type":"Polygon","arcs":[[909,910,911,912]],"properties":{"iso":"02021"}},{"type":"Polygon","arcs":[[913,914,915,916,917,918,919,920,921]],"properties":{"iso":"11060"}},{"type":"Polygon","arcs":[[922,923,924,925,926,927,928,929,930,931,932,933,934,935,936]],"properties":{"iso":"21100"}},{"type":"Polygon","arcs":[[937,938,939,-797,940,941]],"properties":{"iso":"10133"}},{"type":"Polygon","arcs":[[942,943,944,945,946,947,-183]],"properties":{"iso":"22152"}},{"type":"Polygon","arcs":[[948,949,-208,950,951]],"properties":{"iso":"22102"}},{"type":"Polygon","arcs":[[-239,952,953,-583,954,955,956]],"properties":{"iso":"14039"}},{"type":"Polygon","arcs":[[957,958,-500,959,960,961,962]],"properties":{"iso":"17030"}},{"type":"Polygon","arcs":[[-932,963,964,965,966,967]],"properties":{"iso":"22065"}},{"type":"Polygon","arcs":[[-475,968,969,970]],"properties":{"iso":"22094"}},{"type":"Polygon","arcs":[[971,-585,972,973,974]],"properties":{"iso":"16078"}},{"type":"Polygon","arcs":[[975,976,977]],"properties":{"iso":"14055"}},{"type":"Polygon","arcs":[[978,979,980,981,982,983]],"properties":{"iso":"19070"}},{"type":"Polygon","arcs":[[984,985,986]],"properties":{"iso":"10029"}},{"type":"Polygon","arcs":[[987,988,989]],"properties":{"iso":"10092"}},{"type":"Polygon","arcs":[[990,991,992,993]],"properties":{"iso":"16073"}},{"type":"Polygon","arcs":[[994,995,996,-300]],"properties":{"iso":"16029"}},{"type":"Polygon","arcs":[[997,998,-146,999]],"properties":{"iso":"06019"}},{"type":"Polygon","arcs":[[1000,1001,1002,1003,1004,1005]],"properties":{"iso":"23004"}},{"type":"Polygon","arcs":[[1006,1007]],"properties":{"iso":"23086"}},{"type":"Polygon","arcs":[[1008,1009,1010]],"properties":{"iso":"16050"}},{"type":"Polygon","arcs":[[1011,1012,1013,1014]],"properties":{"iso":"05026"}},{"type":"Polygon","arcs":[[1015,1016,1017,-706]],"properties":{"iso":"10046"}},{"type":"Polygon","arcs":[[1018,1019,1020,1021,1022,1023]],"properties":{"iso":"16046"}},{"type":"Polygon","arcs":[[1024,1025,1026,1027]],"properties":{"iso":"02048"}},{"type":"Polygon","arcs":[[1028,1029,1030]],"properties":{"iso":"02081"}},{"type":"Polygon","arcs":[[1031,1032,1033,-1029,1034]],"properties":{"iso":"02075"}},{"type":"Polygon","arcs":[[-865,1035,1036,1037,1038]],"properties":{"iso":"10077"}},{"type":"Polygon","arcs":[[-912,1039,-163,1040]],"properties":{"iso":"02020"}},{"type":"Polygon","arcs":[[-764,1041,1042,1043]],"properties":{"iso":"07015"}},{"type":"Polygon","arcs":[[1044,1045,-339,1046]],"properties":{"iso":"10054"}},{"type":"Polygon","arcs":[[-223,1047,1048]],"properties":{"iso":"12012"}},{"type":"Polygon","arcs":[[1049,1050,1051]],"properties":{"iso":"23098"}},{"type":"Polygon","arcs":[[-754,1052,1053,1054,1055]],"properties":{"iso":"02054"}},{"type":"Polygon","arcs":[[1056,1057,-355]],"properties":{"iso":"10025"}},{"type":"Polygon","arcs":[[1058,-170,-890,-856]],"properties":{"iso":"02026"}},{"type":"Polygon","arcs":[[1059,1060,1061]],"properties":{"iso":"22067"}},{"type":"Polygon","arcs":[[1062,1063,1064,-282]],"properties":{"iso":"22020"}},{"type":"Polygon","arcs":[[1065,1066,1067]],"properties":{"iso":"21004"}},{"type":"Polygon","arcs":[[-1041,-162,-1059,-855,-913]],"properties":{"iso":"02025"}},{"type":"Polygon","arcs":[[1068,1069,1070,1071]],"properties":{"iso":"03015"}},{"type":"Polygon","arcs":[[-595,-729]],"properties":{"iso":"02069"}},{"type":"Polygon","arcs":[[1072,1073,1074,-744]],"properties":{"iso":"02102"}},{"type":"Polygon","arcs":[[-513,1075,1076,1077]],"properties":{"iso":"02063"}},{"type":"Polygon","arcs":[[1078,1079,1080,1081]],"properties":{"iso":"19032"}},{"type":"Polygon","arcs":[[1082,1083,-1056]],"properties":{"iso":"02092"}},{"type":"Polygon","arcs":[[1084,1085,1086,1087,1088,1089,1090,1091,1092]],"properties":{"iso":"21116"}},{"type":"Polygon","arcs":[[1093,1094,1095,-27,1096,1097,1098,1099,1100]],"properties":{"iso":"22144"}},{"type":"Polygon","arcs":[[1101,-947,1102,-945,1103,-210,1104,-477,1105]],"properties":{"iso":"22150"}},{"type":"Polygon","arcs":[[1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116]],"properties":{"iso":"23070"}},{"type":"Polygon","arcs":[[1117,1118,1119,1120,1121,-626,-29,1122,1123,-965]],"properties":{"iso":"21099"}},{"type":"Polygon","arcs":[[1124,-825,-821,1125,1126]],"properties":{"iso":"13002"}},{"type":"Polygon","arcs":[[1127,1128,1129,1130]],"properties":{"iso":"03069"}},{"type":"Polygon","arcs":[[1131,1132,1133,1134,1135,1136,1137,1138,1139]],"properties":{"iso":"21112"}},{"type":"Polygon","arcs":[[1140,1141,1142,1143,1144]],"properties":{"iso":"10118"}},{"type":"Polygon","arcs":[[1145,-467,1146,-212]],"properties":{"iso":"14022"}},{"type":"Polygon","arcs":[[1147,-262,-358,1148,1149,1150,1151,1152]],"properties":{"iso":"23052"}},{"type":"Polygon","arcs":[[1153,1154,1155,1156,-717]],"properties":{"iso":"03005"}},{"type":"Polygon","arcs":[[1157,1158,1159,1160]],"properties":{"iso":"07025"}},{"type":"Polygon","arcs":[[1161,1162,1163,1164]],"properties":{"iso":"12037"}},{"type":"Polygon","arcs":[[1165,-522,1166,1167,1168]],"properties":{"iso":"21029"}},{"type":"Polygon","arcs":[[-1157,1169,1170,1171,1172,-718]],"properties":{"iso":"03004"}},{"type":"Polygon","arcs":[[1173,1174,1175,1176,-111]],"properties":{"iso":"07013"}},{"type":"Polygon","arcs":[[1177,1178,1179,1180]],"properties":{"iso":"10006"}},{"type":"Polygon","arcs":[[1181,1182,-93,-107,1183]],"properties":{"iso":"03032"}},{"type":"Polygon","arcs":[[-383,-447,-342,1184,1185]],"properties":{"iso":"15006"}},{"type":"Polygon","arcs":[[1186,1187,1188,1189]],"properties":{"iso":"11056"}},{"type":"Polygon","arcs":[[-449,1190,1191,1192]],"properties":{"iso":"15023"}},{"type":"Polygon","arcs":[[-298,1193,1194,1195,-455,1196]],"properties":{"iso":"16024"}},{"type":"Polygon","arcs":[[1197,1198,1199,-1002,1200]],"properties":{"iso":"23005"}},{"type":"Polygon","arcs":[[-328,1201,1202]],"properties":{"iso":"22063"}},{"type":"Polygon","arcs":[[1203,1204,1205,1206,-753]],"properties":{"iso":"02005"}},{"type":"Polygon","arcs":[[1207,1208,1209]],"properties":{"iso":"20041"}},{"type":"Polygon","arcs":[[1210,1211]],"properties":{"iso":"23095"}},{"type":"Polygon","arcs":[[1212,-1206,1213,1214,-739]],"properties":{"iso":"02003"}},{"type":"Polygon","arcs":[[1215,-1057,-354,1216]],"properties":{"iso":"10023"}},{"type":"Polygon","arcs":[[-618,1217,1218]],"properties":{"iso":"19001"}},{"type":"Polygon","arcs":[[-140,1219,1220,-130]],"properties":{"iso":"05040"}},{"type":"Polygon","arcs":[[1221,-734,-308,1222,1223,1224]],"properties":{"iso":"05007"}},{"type":"Polygon","arcs":[[1225,-891,-503,1226]],"properties":{"iso":"02043"}},{"type":"Polygon","arcs":[[1227,1228,1229]],"properties":{"iso":"02057"}},{"type":"Polygon","arcs":[[1230,1231,1232,1233]],"properties":{"iso":"05020"}},{"type":"Polygon","arcs":[[1234,1235,1236,1237]],"properties":{"iso":"22038"}},{"type":"Polygon","arcs":[[1238,1239,1240,1241,1242,1243,1244,1245,-225,1246]],"properties":{"iso":"10105"}},{"type":"Polygon","arcs":[[1247,1248,1249,1250,1251,1252]],"properties":{"iso":"23020"}},{"type":"Polygon","arcs":[[1253,1254,1255,1256,-1085,1257,1258,1259,1260,-1137]],"properties":{"iso":"21108"}},{"type":"Polygon","arcs":[[-987,1261,1262,-678,1263,-254,-663,1264,1265,-988,1266]],"properties":{"iso":"10028"}},{"type":"Polygon","arcs":[[1267,1268,1269,1270,1271,1272,-193,1273,1274,1275]],"properties":{"iso":"22028"}},{"type":"Polygon","arcs":[[-1144,1276,1277,1278,1279,1280,1281,1282,1283]],"properties":{"iso":"10117"}},{"type":"Polygon","arcs":[[1284,-653,-246,1285,1286,1287]],"properties":{"iso":"13035"}},{"type":"Polygon","arcs":[[1288,1289,-953,-238,1290]],"properties":{"iso":"14030"}},{"type":"Polygon","arcs":[[-1253,1291,1292,1293]],"properties":{"iso":"23025"}},{"type":"Polygon","arcs":[[-209,-950,1294,1295,-478,-1105]],"properties":{"iso":"22104"}},{"type":"Polygon","arcs":[[1296,1297,1298,1299]],"properties":{"iso":"11027"}},{"type":"Polygon","arcs":[[1300,1301,1302,1303,1304]],"properties":{"iso":"22073"}},{"type":"Polygon","arcs":[[1305,1306,1307,1308,1309,1310]],"properties":{"iso":"02045"}},{"type":"Polygon","arcs":[[1311,1312,-758,1313]],"properties":{"iso":"21075"}},{"type":"Polygon","arcs":[[1314,1315,-995,1316,-316]],"properties":{"iso":"16028"}},{"type":"Polygon","arcs":[[1317,1318,1319,1320,1321]],"properties":{"iso":"08011"}},{"type":"Polygon","arcs":[[1322,1323,-305,1324,-1161]],"properties":{"iso":"07023"}},{"type":"Polygon","arcs":[[1325,1326,1327,1328,1329]],"properties":{"iso":"04015"}},{"type":"Polygon","arcs":[[1330,1331,-1216,1332,1333,1334]],"properties":{"iso":"10022"}},{"type":"Polygon","arcs":[[1335,1336,1337,1338,1339]],"properties":{"iso":"09002"}},{"type":"Polygon","arcs":[[1340,1341,1342,-39]],"properties":{"iso":"21026"}},{"type":"Polygon","arcs":[[-330,1343,1344,1345]],"properties":{"iso":"22059"}},{"type":"Polygon","arcs":[[1346,-165,-325,1347]],"properties":{"iso":"02015"}},{"type":"Polygon","arcs":[[1348,1349]],"properties":{"iso":"20027"}},{"type":"Polygon","arcs":[[-105,1350,1351]],"properties":{"iso":"02078"}},{"type":"Polygon","arcs":[[-1150,1352,1353,1354,1355,1356,1357]],"properties":{"iso":"23009"}},{"type":"Polygon","arcs":[[-1204,-752,1358,1359]],"properties":{"iso":"02007"}},{"type":"Polygon","arcs":[[1360,1361,1362]],"properties":{"iso":"05029"}},{"type":"Polygon","arcs":[[-1022,1363,-315,1364]],"properties":{"iso":"16045"}},{"type":"Polygon","arcs":[[1365,-1053,-757,1366,-692]],"properties":{"iso":"02055"}},{"type":"Polygon","arcs":[[-527,1367,1368,1369,1370]],"properties":{"iso":"02095"}},{"type":"Polygon","arcs":[[1371,1372,1373,1374]],"properties":{"iso":"10083"}},{"type":"Polygon","arcs":[[-1233,1375,1376,1377]],"properties":{"iso":"05021"}},{"type":"Polygon","arcs":[[1378,1379,1380]],"properties":{"iso":"11019"}},{"type":"Polygon","arcs":[[1381,1382,1383]],"properties":{"iso":"12005"}},{"type":"Polygon","arcs":[[1384,-297,1385,1386,1387]],"properties":{"iso":"20038"}},{"type":"Polygon","arcs":[[1388,1389,1390,1391,-892,-1226]],"properties":{"iso":"02042"}},{"type":"Polygon","arcs":[[1392,-52,1393,1394]],"properties":{"iso":"14014"}},{"type":"Polygon","arcs":[[1395,1396,-417,1397]],"properties":{"iso":"10012"}},{"type":"Polygon","arcs":[[1398,-1315,-1364,-1021]],"properties":{"iso":"16044"}},{"type":"Polygon","arcs":[[1399,1400,1401,1402,1403]],"properties":{"iso":"21052"}},{"type":"Polygon","arcs":[[-983,1404,1405,1406,1407]],"properties":{"iso":"18039"}},{"type":"Polygon","arcs":[[1408,1409,-835,-1104,-944,1410,1411,1412]],"properties":{"iso":"22115"}},{"type":"Polygon","arcs":[[-1244,-568,1413,1414,1415,-838,-638,1416]],"properties":{"iso":"23063"}},{"type":"Polygon","arcs":[[1417,1418,1419,1420,1421,1422,1423,-790,1424,1425]],"properties":{"iso":"21008"}},{"type":"Polygon","arcs":[[1426,1427,-390,1428,1429,1430]],"properties":{"iso":"21058"}},{"type":"Polygon","arcs":[[-474,1431,-489,-263,-1148,1432,1433]],"properties":{"iso":"23048"}},{"type":"Polygon","arcs":[[-402,1434,-1274,-192,-780]],"properties":{"iso":"22015"}},{"type":"Polygon","arcs":[[1435,1436,1437,1438,1439]],"properties":{"iso":"18037"}},{"type":"Polygon","arcs":[[1440,-201,1441,1442,1443,1444,1445]],"properties":{"iso":"21060"}},{"type":"Polygon","arcs":[[1446,1447,1448,1449]],"properties":{"iso":"02039"}},{"type":"Polygon","arcs":[[1450,1451,-1155,1452]],"properties":{"iso":"03006"}},{"type":"Polygon","arcs":[[1453,1454,1455,1456]],"properties":{"iso":"22054"}},{"type":"Polygon","arcs":[[1457,1458,1459,1460]],"properties":{"iso":"16011"}},{"type":"Polygon","arcs":[[1461,1462,1463,-269]],"properties":{"iso":"16064"}},{"type":"Polygon","arcs":[[1464,1465,1466,1467]],"properties":{"iso":"10060"}},{"type":"Polygon","arcs":[[1468,1469,1470,1471]],"properties":{"iso":"16035"}},{"type":"Polygon","arcs":[[1472,-908,-867,-725,1473,-1017]],"properties":{"iso":"10067"}},{"type":"Polygon","arcs":[[1474,1475,1476]],"properties":{"iso":"02079"}},{"type":"Polygon","arcs":[[-849,1477,1478,1479]],"properties":{"iso":"06026"}},{"type":"Polygon","arcs":[[1480,1481,1482,1483,-113,1484]],"properties":{"iso":"07020"}},{"type":"Polygon","arcs":[[-1366,-691,1485,-1228,1486]],"properties":{"iso":"02056"}},{"type":"Polygon","arcs":[[-1011,1487,1488,-853,1489,1490,1491,1492]],"properties":{"iso":"16041"}},{"type":"Polygon","arcs":[[1493,1494,1495,1496,1497]],"properties":{"iso":"14050"}},{"type":"Polygon","arcs":[[1498,-882,1499,1500,1501]],"properties":{"iso":"10015"}},{"type":"Polygon","arcs":[[1502,1503,-895,1504,-375,1505]],"properties":{"iso":"20052"}},{"type":"Polygon","arcs":[[-361,1506,-1201,-1001,1507]],"properties":{"iso":"23008"}},{"type":"Polygon","arcs":[[1508,-1506,-378,1509]],"properties":{"iso":"20051"}},{"type":"Polygon","arcs":[[1510,1511]],"properties":{"iso":"22142"}},{"type":"Polygon","arcs":[[1512,1513]],"properties":{"iso":"23043"}},{"type":"Polygon","arcs":[[1514,1515,1516,-116]],"properties":{"iso":"19057"}},{"type":"Polygon","arcs":[[1517,1518,-1238]],"properties":{"iso":"22029"}},{"type":"Polygon","arcs":[[1519,1520,-1353,-1149,-363]],"properties":{"iso":"23010"}},{"type":"Polygon","arcs":[[-1006,1521,-1520,-362,-1508]],"properties":{"iso":"23007"}},{"type":"Polygon","arcs":[[1522,-1307,1523]],"properties":{"iso":"02049"}},{"type":"Polygon","arcs":[[1524,1525,-259,1526,-1199]],"properties":{"iso":"23006"}},{"type":"Polygon","arcs":[[1527,1528,1529,1530,-1517]],"properties":{"iso":"19058"}},{"type":"Polygon","arcs":[[1531,1532]],"properties":{"iso":"22003"}},{"type":"Polygon","arcs":[[-554,1533]],"properties":{"iso":"16032"}},{"type":"Polygon","arcs":[[-360,1534,-1525,-1198,-1507]],"properties":{"iso":"23009"}},{"type":"Polygon","arcs":[[1535,-553,-562,1536]],"properties":{"iso":"16032"}},{"type":"Polygon","arcs":[[-1521,-1522,-1005,1537,-1354]],"properties":{"iso":"23006"}},{"type":"Polygon","arcs":[[1538,1539]],"properties":{"iso":"11021"}},{"type":"Polygon","arcs":[[1540]],"properties":{"iso":"23014"}},{"type":"Polygon","arcs":[[-189,-817,1541,1542,1543,-951,-207,-4,1544,1545,1546,1547,1548]],"properties":{"iso":"22101"}},{"type":"Polygon","arcs":[[-38,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558]],"properties":{"iso":"13009"}},{"type":"Polygon","arcs":[[-218,1559,1560,1561,-464,-1146]],"properties":{"iso":"14046"}},{"type":"Polygon","arcs":[[1562,1563,-7,-205,-392,1564,1565]],"properties":{"iso":"21119"}},{"type":"Polygon","arcs":[[1566,-1548,1567,1568,1569,1570,1571,1572,1573]],"properties":{"iso":"02084"}},{"type":"Polygon","arcs":[[1574,1575,1576,1577,-1558,1578,-809,-215,1579]],"properties":{"iso":"13017"}},{"type":"Polygon","arcs":[[1580,1581,1582,-589,1583,1584,1585,1586]],"properties":{"iso":"19045"}},{"type":"Polygon","arcs":[[-1408,1587,1588,-984]],"properties":{"iso":"19071"}},{"type":"Polygon","arcs":[[1589,1590,1591,-1110,-487,1592,1593,1594,1595]],"properties":{"iso":"23056"}},{"type":"Polygon","arcs":[[1596,-870,1597,1598,1599,1600,1601]],"properties":{"iso":"02085"}},{"type":"Polygon","arcs":[[1602,1603,1604,1605,1606,1607,-698,-877,1608,-1350,1609,1610,1611,1612]],"properties":{"iso":"20028"}},{"type":"Polygon","arcs":[[1613,-1602,1614,-1572,1615,1616,1617,1618,1619,-461,1620,-733,1621,1622]],"properties":{"iso":"03034"}},{"type":"Polygon","arcs":[[-1588,-1407,1623,1624,1625]],"properties":{"iso":"19072"}},{"type":"Polygon","arcs":[[-1559,-1578,1626,1627,1628,-228,-35]],"properties":{"iso":"13018"}},{"type":"Polygon","arcs":[[1629,1630,-1447,1631,-874,-167,1632,-749,-1207,-1213,-738]],"properties":{"iso":"02029"}},{"type":"Polygon","arcs":[[1633,-213,-1147,-466,1634,1635,-977]],"properties":{"iso":"14056"}},{"type":"Polygon","arcs":[[1636,1637,1638]],"properties":{"iso":"12027"}},{"type":"Polygon","arcs":[[-1633,-166,-1347,1639,-542,-750]],"properties":{"iso":"02014"}},{"type":"Polygon","arcs":[[1640,1641,1642,1643,1644]],"properties":{"iso":"10003"}},{"type":"Polygon","arcs":[[1645,1646,1647,1648,1649]],"properties":{"iso":"09019"}},{"type":"Polygon","arcs":[[1650,1651,1652,1653,1654]],"properties":{"iso":"10037"}},{"type":"Polygon","arcs":[[1655,1656,-1363,1657,1658]],"properties":{"iso":"05012"}},{"type":"Polygon","arcs":[[1659,1660,1661,1662,-109]],"properties":{"iso":"03029"}},{"type":"Polygon","arcs":[[1663,1664,1665,1666]],"properties":{"iso":"12007"}},{"type":"Polygon","arcs":[[-851,-1489,1667,1668,1669,-560]],"properties":{"iso":"16040"}},{"type":"Polygon","arcs":[[1670,1671,1672,1673,1674]],"properties":{"iso":"03048"}},{"type":"Polygon","arcs":[[1675,-918,1676,1677,1678]],"properties":{"iso":"11062"}},{"type":"Polygon","arcs":[[1679,1680,-745,-1075,1681,-528,-1371]],"properties":{"iso":"02098"}},{"type":"Polygon","arcs":[[1682,1683,-614,1684]],"properties":{"iso":"09013"}},{"type":"Polygon","arcs":[[1685,1686,1687,1688]],"properties":{"iso":"10043"}},{"type":"Polygon","arcs":[[1689,1690,-366,1691]],"properties":{"iso":"20023"}},{"type":"Polygon","arcs":[[-1177,1692,1693,1694,-1485,-112]],"properties":{"iso":"07017"}},{"type":"Polygon","arcs":[[1695,1696,1697,1698]],"properties":{"iso":"19004"}},{"type":"Polygon","arcs":[[1699,-124,-1221,1700,1701]],"properties":{"iso":"05011"}},{"type":"Polygon","arcs":[[-1670,1702,-1470,1703,-561]],"properties":{"iso":"16034"}},{"type":"Polygon","arcs":[[1704,1705,1706,1707,1708]],"properties":{"iso":"08013"}},{"type":"Polygon","arcs":[[-1047,-338,1709,-352,1710,1711]],"properties":{"iso":"10033"}},{"type":"Polygon","arcs":[[1712,-799,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,-661,1724,1725,-251,1726,1727,1728,-794]],"properties":{"iso":"10129"}},{"type":"Polygon","arcs":[[-237,1729,-1561,1730,1731,1732,-1291]],"properties":{"iso":"14034"}},{"type":"Polygon","arcs":[[1733,1734,1735,-777,1736,1737]],"properties":{"iso":"22145"}},{"type":"Polygon","arcs":[[1738,-831,1739,-1293,1740,-1556,1741,1742]],"properties":{"iso":"23021"}},{"type":"Polygon","arcs":[[-1445,1743,1744,-1401,1745,-1427,1746]],"properties":{"iso":"21055"}},{"type":"Polygon","arcs":[[1747,1748,-396,1749,-571,1750,1751,-1141]],"properties":{"iso":"23064"}},{"type":"Polygon","arcs":[[-654,1752,-1550,-37,-227]],"properties":{"iso":"13034"}},{"type":"Polygon","arcs":[[1753,1754,1755,-523,1756,1757,1758,-1131,1759,1760]],"properties":{"iso":"11004"}},{"type":"Polygon","arcs":[[-955,-582,1761,1762,1763,1764]],"properties":{"iso":"14038"}},{"type":"Polygon","arcs":[[1765,-681,-861,1766,1767,1768,1769,1770,-1744,-1444,1771]],"properties":{"iso":"21047"}},{"type":"Polygon","arcs":[[-1724,1772,1773,1774,1775,1776,1777,1778,-1265,-662]],"properties":{"iso":"10090"}},{"type":"Polygon","arcs":[[1779,1780,1781,1782]],"properties":{"iso":"10062"}},{"type":"Polygon","arcs":[[-550,1783,-806,1784,1785]],"properties":{"iso":"14067"}},{"type":"Polygon","arcs":[[-381,1786,1787,-1191,-448]],"properties":{"iso":"15022"}},{"type":"Polygon","arcs":[[1788,-1694,1789,-1325,-304]],"properties":{"iso":"07029"}},{"type":"Polygon","arcs":[[1790,-1195,1791,1792]],"properties":{"iso":"16023"}},{"type":"Polygon","arcs":[[1793,-1574]],"properties":{"iso":"02083"}},{"type":"Polygon","arcs":[[1794,1795,1796,1797,1798]],"properties":{"iso":"16009"}},{"type":"Polygon","arcs":[[-1068,1799,1800,1801]],"properties":{"iso":"21005"}},{"type":"Polygon","arcs":[[1802,1803,1804,1805]],"properties":{"iso":"12023"}},{"type":"Polygon","arcs":[[1806,1807,1808,1809,-1224]],"properties":{"iso":"05001"}},{"type":"Polygon","arcs":[[1810,1811,-1482,1812,1813,-770]],"properties":{"iso":"07019"}},{"type":"Polygon","arcs":[[1814,-1459,-1798,1815,1816]],"properties":{"iso":"16010"}},{"type":"Polygon","arcs":[[1817,1818,1819,-1657,1820,-1702]],"properties":{"iso":"05008"}},{"type":"Polygon","arcs":[[1821,1822,1823,1824,1825]],"properties":{"iso":"16061"}},{"type":"Polygon","arcs":[[-1646,1826,1827]],"properties":{"iso":"09020"}},{"type":"Polygon","arcs":[[-187,1828,1829,1830,-1412,1831,-181,1832]],"properties":{"iso":"22133"}},{"type":"Polygon","arcs":[[1833,1834,-941,-796]],"properties":{"iso":"10132"}},{"type":"Polygon","arcs":[[1835,-1728,1836,1837,-271,1838,1839,-921]],"properties":{"iso":"11054"}},{"type":"Polygon","arcs":[[1840,-844,1841,-979,-1589,-1626,1842,-1581]],"properties":{"iso":"19062"}},{"type":"Polygon","arcs":[[-1833,-180,1843,-68,1844,-1738,1845,-185]],"properties":{"iso":"22127"}},{"type":"Polygon","arcs":[[-1031,1846,-781,-190,-1549,-1567,-1794,-1573,-1615,-1601,1847,-1035]],"properties":{"iso":"02082"}},{"type":"Polygon","arcs":[[-1554,1848,1849,1850,1851,1852]],"properties":{"iso":"23026"}},{"type":"Polygon","arcs":[[1853,1854,-1437,1855,-1405,-982,1856,1857]],"properties":{"iso":"18038"}},{"type":"Polygon","arcs":[[1858,1859,1860,1861,1862,1863,1864,-1241,1865]],"properties":{"iso":"10106"}},{"type":"Polygon","arcs":[[1866,-577,1867,1868,1869,-394]],"properties":{"iso":"23066"}},{"type":"Polygon","arcs":[[1870,-290,-606,1871,-1543]],"properties":{"iso":"22100"}},{"type":"Polygon","arcs":[[1872,1873,1874,1875,1876,1877,-18,-1096,1878,-1512,1879,-1094,1880,1881]],"properties":{"iso":"22139"}},{"type":"Polygon","arcs":[[1882,-925,1883,-1259,1884,-1092,1885,1886,-32,1887]],"properties":{"iso":"21093"}},{"type":"Polygon","arcs":[[-69,-1844,-179]],"properties":{"iso":"22130"}},{"type":"Polygon","arcs":[[1888,1889,1890,1891,1892,1893,1894,1895,-793,1896,1897]],"properties":{"iso":"21021"}},{"type":"Polygon","arcs":[[-1551,-1753,-1285,1898]],"properties":{"iso":"13010"}},{"type":"Polygon","arcs":[[1899,-40,1900,1901,1902,-156,1903,1904,-1169]],"properties":{"iso":"21027"}},{"type":"Polygon","arcs":[[1905,1906,-1619,1907,-1617,1908]],"properties":{"iso":"11011"}},{"type":"Polygon","arcs":[[1909,-682,-1766,1910,1911,-1312,1912,1913]],"properties":{"iso":"21072"}},{"type":"Polygon","arcs":[[1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926]],"properties":{"iso":"09034"}},{"type":"Polygon","arcs":[[-1853,1927,1928,-1742,-1555]],"properties":{"iso":"23028"}},{"type":"Polygon","arcs":[[-957,1929,-1580,-214,-1634,-976,1930,-234]],"properties":{"iso":"14041"}},{"type":"Polygon","arcs":[[1931,1932,1933,1934,-832,-1739]],"properties":{"iso":"23031"}},{"type":"Polygon","arcs":[[-1812,1935,1936,1937,1938,1939,-1483]],"properties":{"iso":"07006"}},{"type":"Polygon","arcs":[[1940,1941,1942,1943,1944,1945]],"properties":{"iso":"20007"}},{"type":"Polygon","arcs":[[1946,1947,1948,-768,1949]],"properties":{"iso":"08018"}},{"type":"Polygon","arcs":[[-884,1950,1951,-1181,1952]],"properties":{"iso":"10007"}},{"type":"Polygon","arcs":[[-1940,1953,1954,1955]],"properties":{"iso":"07007"}},{"type":"Polygon","arcs":[[1956,1957,1958,1959]],"properties":{"iso":"14048"}},{"type":"Polygon","arcs":[[1960,-847,1961,1962,1963,1964]],"properties":{"iso":"06013"}},{"type":"Polygon","arcs":[[1965,1966,-1026,-1524,-1306]],"properties":{"iso":"02046"}},{"type":"Polygon","arcs":[[1967,-1815,1968,-345,1969]],"properties":{"iso":"16020"}},{"type":"Polygon","arcs":[[1970,-1937,1971,1972,1973]],"properties":{"iso":"08007"}},{"type":"Polygon","arcs":[[-906,-1473,-1016,-705,1974,1975]],"properties":{"iso":"10047"}},{"type":"Polygon","arcs":[[-996,-1316,-1399,-1020,1976,1977,1978]],"properties":{"iso":"16043"}},{"type":"Polygon","arcs":[[1979,1980,1981,-1013,1982,1983]],"properties":{"iso":"05027"}},{"type":"Polygon","arcs":[[1984,-151,1985,1986,1987,1988,-1965]],"properties":{"iso":"06007"}},{"type":"Polygon","arcs":[[1989,-1028,1990,1991,1992,1993]],"properties":{"iso":"02051"}},{"type":"Polygon","arcs":[[1994,-1822,1995]],"properties":{"iso":"16060"}},{"type":"Polygon","arcs":[[1996,1997,1998,1999]],"properties":{"iso":"16007"}},{"type":"Polygon","arcs":[[2000,2001,-152,-1985,-1964]],"properties":{"iso":"06008"}},{"type":"Polygon","arcs":[[2002,2003,-1970,-344]],"properties":{"iso":"16021"}},{"type":"Polygon","arcs":[[-1471,2004,-904,2005,2006]],"properties":{"iso":"16036"}},{"type":"Polygon","arcs":[[2007,-158,2008,2009]],"properties":{"iso":"21023"}},{"type":"Polygon","arcs":[[-1481,-1695,-1789,-303,2010,-1813]],"properties":{"iso":"07021"}},{"type":"Polygon","arcs":[[2011,2012,2013,2014,-590,-1583,2015,-1404]],"properties":{"iso":"19038"}},{"type":"Polygon","arcs":[[-276,-494,2016,-1570,2017,2018,2019,2020,2021]],"properties":{"iso":"11050"}},{"type":"Polygon","arcs":[[-1909,-1616,-1571,-2017,-493,2022,-59,2023,-57,2024,2025]],"properties":{"iso":"11032"}},{"type":"Polygon","arcs":[[-1734,-1845,-67,2026,-1873,2027,2028,2029,-1100,2030]],"properties":{"iso":"22124"}},{"type":"Polygon","arcs":[[2031,2032,-65,-184,2033,2034,2035]],"properties":{"iso":"22128"}},{"type":"Polygon","arcs":[[-41,2036,2037,-923,2038,-15,2039]],"properties":{"iso":"21095"}},{"type":"Polygon","arcs":[[2040,-2013,2041,2042,2043,2044]],"properties":{"iso":"21054"}},{"type":"Polygon","arcs":[[2045,2046,-1260,-1884,-924,-2038,2047,2048,2049,2050,2051]],"properties":{"iso":"21107"}},{"type":"Polygon","arcs":[[-1419,2052,-1607,2053,-1800,-1067,2054,2055,2056]],"properties":{"iso":"21007"}},{"type":"Polygon","arcs":[[-1914,2057,2058,2059,-2048,-2037,-1900,-1168,2060]],"properties":{"iso":"21069"}},{"type":"Polygon","arcs":[[-488,-1109,2061,2062,2063,2064]],"properties":{"iso":"23001"}},{"type":"Polygon","arcs":[[2065,2066,2067,2068,-2054,-1606,-2045]],"properties":{"iso":"21038"}},{"type":"Polygon","arcs":[[2069,2070,-1849,-1553,2071]],"properties":{"iso":"13011"}},{"type":"Polygon","arcs":[[2072,2073,2074,2075,2076,2077,2078,2079,2080]],"properties":{"iso":"18022"}},{"type":"Polygon","arcs":[[-2034,-948,-1102,2081,-970,2082]],"properties":{"iso":"22092"}},{"type":"Polygon","arcs":[[2083,2084,-2018,-1569]],"properties":{"iso":"11051"}},{"type":"Polygon","arcs":[[2085,2086,-591,-2015]],"properties":{"iso":"19034"}},{"type":"Polygon","arcs":[[-1042,-763,-1175,2087,2088]],"properties":{"iso":"07014"}},{"type":"Polygon","arcs":[[2089,-1373,2090,2091]],"properties":{"iso":"10082"}},{"type":"Polygon","arcs":[[2092,2093,-1944,2094]],"properties":{"iso":"20004"}},{"type":"Polygon","arcs":[[-888,2095,2096,-771,2097]],"properties":{"iso":"12018"}},{"type":"Polygon","arcs":[[-2009,-157,-1903,2098]],"properties":{"iso":"21022"}},{"type":"Polygon","arcs":[[2099,2100,2101,2102]],"properties":{"iso":"08012"}},{"type":"Polygon","arcs":[[2103,2104,2105,-1376,-1232,2106]],"properties":{"iso":"05022"}},{"type":"Polygon","arcs":[[2107,-144,2108,2109,-703,2110,2111,-1501]],"properties":{"iso":"10039"}},{"type":"Polygon","arcs":[[-704,-2110,2112,2113,-1975]],"properties":{"iso":"10040"}},{"type":"Polygon","arcs":[[2114,2115,2116,2117,2118,2119,2120]],"properties":{"iso":"11014"}},{"type":"Polygon","arcs":[[2121,-701,-508,2122,2123]],"properties":{"iso":"03062"}},{"type":"Polygon","arcs":[[2124,2125,2126,-149,2127]],"properties":{"iso":"06022"}},{"type":"Polygon","arcs":[[2128,2129,2130,2131]],"properties":{"iso":"18012"}},{"type":"Polygon","arcs":[[2132,-699,2133,2134]],"properties":{"iso":"03064"}},{"type":"Polygon","arcs":[[2135,2136,2137,2138]],"properties":{"iso":"16005"}},{"type":"Polygon","arcs":[[2139,2140,2141,2142,2143]],"properties":{"iso":"18015"}},{"type":"Polygon","arcs":[[-1735,-2031,-1099,2144,2145,-1202,2146,-966,-1124,2147]],"properties":{"iso":"22066"}},{"type":"Polygon","arcs":[[2148,-919,-1676,2149,-2084,-1568,-1547]],"properties":{"iso":"11061"}},{"type":"Polygon","arcs":[[-786,-1896,2150,-279,-399,-779,2151,2152,2153,-656,2154,2155,2156],[-1533,2157],[2158]],"properties":{"iso":"22004"}},{"type":"Polygon","arcs":[[-1832,-1411,-943,-182]],"properties":{"iso":"22120"}},{"type":"Polygon","arcs":[[2159,2160,2161,-1129,2162,2163,-78,2164,-2135,2165]],"properties":{"iso":"03068"}},{"type":"Polygon","arcs":[[2166,-280,-2151,-1895,2167,2168,2169,2170,2171,-538,2172,-1236,2173]],"properties":{"iso":"22033"}},{"type":"Polygon","arcs":[[2174,2175,-2145,-1098,2176,2177,2178]],"properties":{"iso":"22044"}},{"type":"Polygon","arcs":[[2179,-1449,2180,-2093,2181,2182,2183,-515,2184]],"properties":{"iso":"20005"}},{"type":"Polygon","arcs":[[2185,2186,-840,2187,-1415,2188,2189,-1591]],"properties":{"iso":"23057"}},{"type":"Polygon","arcs":[[-1440,2190,2191,2192,2193]],"properties":{"iso":"17035"}},{"type":"Polygon","arcs":[[-1402,-1745,-1771,2194,2195]],"properties":{"iso":"21051"}},{"type":"Polygon","arcs":[[-1693,-1176,-762,2196,-1158,-1790]],"properties":{"iso":"07018"}},{"type":"Polygon","arcs":[[2197,2198,2199,-2116,2200]],"properties":{"iso":"11015"}},{"type":"Polygon","arcs":[[2201,2202,2203,2204]],"properties":{"iso":"10079"}},{"type":"Polygon","arcs":[[2205,-114,-1484,-1956,2206]],"properties":{"iso":"07008"}},{"type":"Polygon","arcs":[[2207,2208,-1463,2209,2210]],"properties":{"iso":"16055"}},{"type":"Polygon","arcs":[[-1977,-1019,2211,2212,-1491,2213]],"properties":{"iso":"16048"}},{"type":"Polygon","arcs":[[2214,2215,-1214,-1205,-1360,2216]],"properties":{"iso":"02004"}},{"type":"Polygon","arcs":[[-2134,-702,-2122,2217,-2166]],"properties":{"iso":"03065"}},{"type":"Polygon","arcs":[[-1609,-876,-696,2218,2219]],"properties":{"iso":"20032"}},{"type":"Polygon","arcs":[[2220,-283,-1065]],"properties":{"iso":"22021"}},{"type":"Polygon","arcs":[[2221,2222,2223]],"properties":{"iso":"20045"}},{"type":"Polygon","arcs":[[2224,-138,2225,-1962]],"properties":{"iso":"06028"}},{"type":"Polygon","arcs":[[-2198,2226,2227,2228]],"properties":{"iso":"11016"}},{"type":"Polygon","arcs":[[2229,-450,-1193,2230]],"properties":{"iso":"15004"}},{"type":"Polygon","arcs":[[2231,-153,-2002,2232,2233]],"properties":{"iso":"06004"}},{"type":"Polygon","arcs":[[-434,2234,2235,2236]],"properties":{"iso":"19028"}},{"type":"Polygon","arcs":[[2237,-1830,2238,-60,-625]],"properties":{"iso":"22117"}},{"type":"Polygon","arcs":[[-1749,2239,-942,-1835,2240,-397]],"properties":{"iso":"10137"}},{"type":"Polygon","arcs":[[-991,2241,2242,2243,-267,2244,-973,-584,-954,-1290,2245,-958,2246,2247]],"properties":{"iso":"16075"}},{"type":"Polygon","arcs":[[2248,2249,-1732,2250,2251,-2193]],"properties":{"iso":"17037"}},{"type":"Polygon","arcs":[[2252,-1635,-465,-1562,-1730,-236]],"properties":{"iso":"14019"}},{"type":"Polygon","arcs":[[2253,2254,2255,-19,-1878,2256]],"properties":{"iso":"22095"}},{"type":"Polygon","arcs":[[2257,2258,2259,2260,-286,2261,-815,-194,-1273,2262,2263,2264,2265,2266]],"properties":{"iso":"22081"}},{"type":"Polygon","arcs":[[2267,2268,2269,2270,2271,-1837,-1727,-250,-1264,-677,2272,2273]],"properties":{"iso":"11034"}},{"type":"Polygon","arcs":[[2274,-1545,-3,-647]],"properties":{"iso":"22110"}},{"type":"Polygon","arcs":[[2275,2276,-2254,2277,2278,-2035,-2083,-969,-481]],"properties":{"iso":"22093"}},{"type":"Polygon","arcs":[[2279,-845,-1841,-1587,2280,2281]],"properties":{"iso":"19047"}},{"type":"Polygon","arcs":[[2282,2283,2284,2285,-1641,2286,-2163,-1128,-1759]],"properties":{"iso":"10139"}},{"type":"Polygon","arcs":[[-1929,2287,2288,2289,-1932,-1743]],"properties":{"iso":"23030"}},{"type":"Polygon","arcs":[[-443,-622,-63,2290,-650]],"properties":{"iso":"22113"}},{"type":"Polygon","arcs":[[-2240,-1748,-1145,2291,2292,2293]],"properties":{"iso":"10120"}},{"type":"Polygon","arcs":[[2294,-1874,-2027,-66,-2033,2295,2296,-293]],"properties":{"iso":"22149"}},{"type":"Polygon","arcs":[[2297,2298,2299,2300,2301,2302]],"properties":{"iso":"03050"}},{"type":"Polygon","arcs":[[-1058,-1332,2303,-2285,2304,-356]],"properties":{"iso":"10024"}},{"type":"Polygon","arcs":[[2305,2306,-1140,2307]],"properties":{"iso":"21102"}},{"type":"Polygon","arcs":[[-767,2308,2309,2310,-1950]],"properties":{"iso":"08020"}},{"type":"Polygon","arcs":[[2311,2312]],"properties":{"iso":"03046"}},{"type":"Polygon","arcs":[[-2154,2313,2314,-657]],"properties":{"iso":"22005"}},{"type":"Polygon","arcs":[[-2126,2315,-565,2316]],"properties":{"iso":"06023"}},{"type":"Polygon","arcs":[[-1038,2317,2318,-2202,2319]],"properties":{"iso":"10078"}},{"type":"Polygon","arcs":[[-1781,2320,2321,-1372]],"properties":{"iso":"10084"}},{"type":"Polygon","arcs":[[2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,-1126,-820,2333,2334,2335]],"properties":{"iso":"13001"}},{"type":"Polygon","arcs":[[-1848,-1600,2336,2337,2338,2339,2340,2341,2342,2343,2344,-511,2345,2346,-106,-1352,2347,-1032]],"properties":{"iso":"02073"}},{"type":"Polygon","arcs":[[-1289,-1733,-2250,2348,-498,-959,-2246]],"properties":{"iso":"17033"}},{"type":"Polygon","arcs":[[-1436,-2194,-2252,2349,-1624,-1406,-1856]],"properties":{"iso":"17036"}},{"type":"Polygon","arcs":[[2350,-1090,2351,2352,-1566]],"properties":{"iso":"21115"}},{"type":"Polygon","arcs":[[2353,2354,2355,2356,2357,-2191,-1439,2358]],"properties":{"iso":"17034"}},{"type":"Polygon","arcs":[[2359,2360,2361,-1107]],"properties":{"iso":"23072"}},{"type":"Polygon","arcs":[[2362,2363,-490,-1432,-473,2364]],"properties":{"iso":"12063"}},{"type":"Polygon","arcs":[[-1768,2365,-2042,-2012,-1403,-2196,2366]],"properties":{"iso":"21053"}},{"type":"Polygon","arcs":[[2367,2368,2369,-1839,-270]],"properties":{"iso":"11070"}},{"type":"Polygon","arcs":[[2370,2371,2372,2373,2374,2375,2376,2377]],"properties":{"iso":"13022"}},{"type":"Polygon","arcs":[[2378,2379,2380,2381,2382,2383,-2355,2384]],"properties":{"iso":"17022"}},{"type":"Polygon","arcs":[[-978,-1636,-2253,-235,-1931]],"properties":{"iso":"14057"}},{"type":"Polygon","arcs":[[-470,2385,2386,2387,2388,-2371,2389]],"properties":{"iso":"13024"}},{"type":"Polygon","arcs":[[-222,2390,2391,2392,2393,2394,2395,2396,-1396,2397,2398,-1239,2399,-1048]],"properties":{"iso":"12047"}},{"type":"Polygon","arcs":[[-611,2400,2401,2402]],"properties":{"iso":"09011"}},{"type":"Polygon","arcs":[[-324,2403,-543,-1640,-1348]],"properties":{"iso":"02013"}},{"type":"Polygon","arcs":[[-1208,2404,-295,2405,2406]],"properties":{"iso":"20040"}},{"type":"Polygon","arcs":[[-1342,2407,-1889,2408]],"properties":{"iso":"21025"}},{"type":"Polygon","arcs":[[-2111,2409,-1686,2410]],"properties":{"iso":"10042"}},{"type":"Polygon","arcs":[[2411,-596,-731,2412,-1077,2413]],"properties":{"iso":"02065"}},{"type":"Polygon","arcs":[[-341,-1969,-1817,2414,-1185]],"properties":{"iso":"15008"}},{"type":"Polygon","arcs":[[2415,2416,2417,2418]],"properties":{"iso":"16058"}},{"type":"Polygon","arcs":[[2419,2420]],"properties":{"iso":"22091"}},{"type":"Polygon","arcs":[[2421,2422,2423,2424,-1942]],"properties":{"iso":"20012"}},{"type":"Polygon","arcs":[[-1179,2425,2426,2427]],"properties":{"iso":"10005"}},{"type":"Polygon","arcs":[[2428,-1991,-1027,-1967,2429,-335]],"properties":{"iso":"02047"}},{"type":"Polygon","arcs":[[2430,-1229,-1486,2431,-2343]],"properties":{"iso":"02058"}},{"type":"Polygon","arcs":[[2432,2433,2434,2435,2436]],"properties":{"iso":"21034"}},{"type":"Polygon","arcs":[[-690,2437,-2344,-2432]],"properties":{"iso":"02060"}},{"type":"Polygon","arcs":[[-1338,2438,-535,2439]],"properties":{"iso":"09004"}},{"type":"Polygon","arcs":[[2440,-934,2441,2442,-1060,2443]],"properties":{"iso":"22068"}},{"type":"Polygon","arcs":[[2444,-1915,2445,-1318,2446]],"properties":{"iso":"09033"}},{"type":"Polygon","arcs":[[2447,-1662,2448,-871,-1597,-1614]],"properties":{"iso":"03026"}},{"type":"Polygon","arcs":[[-1787,-380,2449,2450,2451,2452,2453]],"properties":{"iso":"15017"}},{"type":"Polygon","arcs":[[-545,2454,2455,2456,2457]],"properties":{"iso":"03019"}},{"type":"Polygon","arcs":[[2458,2459,2460,2461,2462]],"properties":{"iso":"12009"}},{"type":"Polygon","arcs":[[2463,2464,2465,2466,-1116]],"properties":{"iso":"23083"}},{"type":"Polygon","arcs":[[2467,2468,2469,2470,2471]],"properties":{"iso":"03009"}},{"type":"Polygon","arcs":[[2472,2473,-1792,2474,-120]],"properties":{"iso":"16018"}},{"type":"Polygon","arcs":[[2475,2476,2477,-2419]],"properties":{"iso":"16057"}},{"type":"Polygon","arcs":[[-769,-1949,2478,-1706,2479,-1811]],"properties":{"iso":"08009"}},{"type":"Polygon","arcs":[[2480,2481,2482,2483]],"properties":{"iso":"15019"}},{"type":"Polygon","arcs":[[-1648,2484,2485,2486]],"properties":{"iso":"09018"}},{"type":"Polygon","arcs":[[-893,-1392,2487,2488,-720,-909]],"properties":{"iso":"02033"}},{"type":"Polygon","arcs":[[2489,2490,2491,2492,2493,-1649,-2487,2494]],"properties":{"iso":"09024"}},{"type":"Polygon","arcs":[[2495,2496,2497,-1069,2498]],"properties":{"iso":"03014"}},{"type":"Polygon","arcs":[[2499,2500,2501,2502,-1299]],"properties":{"iso":"11028"}},{"type":"Polygon","arcs":[[2503,2504,2505,2506]],"properties":{"iso":"17009"}},{"type":"Polygon","arcs":[[2507,-2482,2508,2509,2510]],"properties":{"iso":"15018"}},{"type":"Polygon","arcs":[[2511,2512,2513,2514,2515]],"properties":{"iso":"18009"}},{"type":"Polygon","arcs":[[-1632,-1450,-2180,2516,-1389,2517,-530,-875]],"properties":{"iso":"02038"}},{"type":"Polygon","arcs":[[2518,-1945,-2094,-2181,-1448,-1631]],"properties":{"iso":"20003"}},{"type":"Polygon","arcs":[[-1340,2519,2520,2521]],"properties":{"iso":"09027"}},{"type":"Polygon","arcs":[[2522,-2337,-1599,2523,2524,2525]],"properties":{"iso":"02086"}},{"type":"Polygon","arcs":[[-1595,2526,2527,-1356,2528],[-1541]],"properties":{"iso":"23096"}},{"type":"Polygon","arcs":[[-1656,2529,-125,-1700,-1821]],"properties":{"iso":"05013"}},{"type":"Polygon","arcs":[[-1981,2530,-421,2531,2532]],"properties":{"iso":"05031"}},{"type":"Polygon","arcs":[[-574,2533,2534]],"properties":{"iso":"23089"}},{"type":"Polygon","arcs":[[2535,2536,2537,2538,2539,-1326]],"properties":{"iso":"04012"}},{"type":"Polygon","arcs":[[-2114,2540,-1653,2541,2542]],"properties":{"iso":"10049"}},{"type":"Polygon","arcs":[[-2024,-58]],"properties":{"iso":"11059"}},{"type":"Polygon","arcs":[[-534,-87,2543,2544,2545,-2440]],"properties":{"iso":"09003"}},{"type":"Polygon","arcs":[[2546,2547,-11,2548]],"properties":{"iso":"22048"}},{"type":"Polygon","arcs":[[2549,2550,2551,-1334]],"properties":{"iso":"10021"}},{"type":"Polygon","arcs":[[-2413,-765,-374,-2346,-514,-1078]],"properties":{"iso":"02064"}},{"type":"Polygon","arcs":[[-1015,2552,-2104,2553,-126,-2530,-1659]],"properties":{"iso":"05016"}},{"type":"Polygon","arcs":[[2554,2555,2556,2557]],"properties":{"iso":"17015"}},{"type":"Polygon","arcs":[[2558,2559,2560,2561]],"properties":{"iso":"15026"}},{"type":"Polygon","arcs":[[2562,2563,2564,2565,2566,2567]],"properties":{"iso":"01015"}},{"type":"Polygon","arcs":[[2568,2569,-1958,2570,2571,2572]],"properties":{"iso":"14062"}},{"type":"Polygon","arcs":[[2573,2574,2575,-1988,2576,-2089]],"properties":{"iso":"07027"}},{"type":"Polygon","arcs":[[2577,2578,2579,2580,2581]],"properties":{"iso":"19054"}},{"type":"Polygon","arcs":[[-1479,2582,-563,2583,2584,2585,2586]],"properties":{"iso":"06025"}},{"type":"Polygon","arcs":[[2587,-1383,2588,-1665,2589]],"properties":{"iso":"12006"}},{"type":"Polygon","arcs":[[2590,2591,2592,2593,2594,2595]],"properties":{"iso":"15038"}},{"type":"Polygon","arcs":[[2596,-160,2597,2598,2599,2600,2601,2602]],"properties":{"iso":"15041"}},{"type":"Polygon","arcs":[[-307,2603,2604,2605,-1807,-1223]],"properties":{"iso":"05003"}},{"type":"Polygon","arcs":[[-1276,2606]],"properties":{"iso":"22027"}},{"type":"Polygon","arcs":[[2607,2608,2609]],"properties":{"iso":"14002"}},{"type":"Polygon","arcs":[[2610,2611,-2131,2612,2613,-2513,2614]],"properties":{"iso":"18011"}},{"type":"Polygon","arcs":[[2615,-1998,2616,2617,-2139,2618,2619,2620]],"properties":{"iso":"16004"}},{"type":"Polygon","arcs":[[2621,2622,2623,2624]],"properties":{"iso":"18032"}},{"type":"Polygon","arcs":[[-968,2625,-2442,-933]],"properties":{"iso":"22064"}},{"type":"Polygon","arcs":[[2626,2627,2628,2629,2630]],"properties":{"iso":"06005"}},{"type":"Polygon","arcs":[[-1683,2631,2632,2633,-2492,2634]],"properties":{"iso":"09012"}},{"type":"Polygon","arcs":[[2635,2636,2637,-551,-1786,2638,2639]],"properties":{"iso":"14010"}},{"type":"Polygon","arcs":[[2640,-899,2641,2642,-1984,2643]],"properties":{"iso":"05030"}},{"type":"Polygon","arcs":[[-1018,2644,-878,2645,-1687,-2410,-707]],"properties":{"iso":"10045"}},{"type":"Polygon","arcs":[[2646,2647,2648,2649,2650,2651]],"properties":{"iso":"14060"}},{"type":"Polygon","arcs":[[2652,2653,2654,2655,-2409,-1898]],"properties":{"iso":"21019"}},{"type":"Polygon","arcs":[[2656,2657,2658,2659,-1699]],"properties":{"iso":"19005"}},{"type":"Polygon","arcs":[[-1701,-1220,-139,2660,-2586,2661,2662,-1818]],"properties":{"iso":"05010"}},{"type":"Polygon","arcs":[[-1860,2663,2664,2665,2666]],"properties":{"iso":"10115"}},{"type":"Polygon","arcs":[[-1313,-1912,2667,-198,-759]],"properties":{"iso":"21073"}},{"type":"Polygon","arcs":[[-1095,-1880,-1511,-1879]],"properties":{"iso":"22143"}},{"type":"Polygon","arcs":[[2668,2669,2670,2671,2672,2673,2674]],"properties":{"iso":"11038"}},{"type":"Polygon","arcs":[[2675,2676,2677,-1395]],"properties":{"iso":"14037"}},{"type":"Polygon","arcs":[[2678,2679,2680,2681]],"properties":{"iso":"15011"}},{"type":"Polygon","arcs":[[2682,2683,-735,-1222,2684,2685,2686,2687]],"properties":{"iso":"04008"}},{"type":"Polygon","arcs":[[-2095,-1943,-2425,2688,-2182]],"properties":{"iso":"20006"}},{"type":"Polygon","arcs":[[2689,-369,-2096,-887,2690,2691,-2396]],"properties":{"iso":"12021"}},{"type":"Polygon","arcs":[[2692,2693,2694,2695,-2574,2696]],"properties":{"iso":"07010"}},{"type":"Polygon","arcs":[[-1677,-917,2697,2698,2699]],"properties":{"iso":"11063"}},{"type":"Polygon","arcs":[[2700,-2537,2701,-2688,2702]],"properties":{"iso":"04001"}},{"type":"Polygon","arcs":[[-2231,2703,2704,2705,-2560,2706]],"properties":{"iso":"15025"}},{"type":"Polygon","arcs":[[-2434,2707,2708,-686,2709]],"properties":{"iso":"21032"}},{"type":"Polygon","arcs":[[2710,-2544,-86,2711,2712]],"properties":{"iso":"09008"}},{"type":"Polygon","arcs":[[-317,-1317,-299,-1197,-454]],"properties":{"iso":"16026"}},{"type":"Polygon","arcs":[[2713,-1994,2714,2715]],"properties":{"iso":"03002"}},{"type":"Polygon","arcs":[[-2010,-2099,-1902,2716,-2655,2717]],"properties":{"iso":"21014"}},{"type":"Polygon","arcs":[[-1999,-2616,2718,2719]],"properties":{"iso":"16003"}},{"type":"Polygon","arcs":[[2720,-404,2721]],"properties":{"iso":"23037"}},{"type":"Polygon","arcs":[[-1663,-2448,-1623,2722,2723,-1184,-110]],"properties":{"iso":"03030"}},{"type":"Polygon","arcs":[[2724,2725,2726,-2101,2727,2728,-1708]],"properties":{"iso":"08008"}},{"type":"Polygon","arcs":[[-2510,2729,-2453,2730]],"properties":{"iso":"15021"}},{"type":"Polygon","arcs":[[-410,-2531,-1980,-2643,2731]],"properties":{"iso":"05032"}},{"type":"Polygon","arcs":[[2732,2733,2734,2735,-2313,-1671,2736,-2303]],"properties":{"iso":"03047"}},{"type":"Polygon","arcs":[[2737,-1494,2738,-2637]],"properties":{"iso":"14053"}},{"type":"Polygon","arcs":[[2739,-609,2740,2741,2742]],"properties":{"iso":"20017"}},{"type":"Polygon","arcs":[[-2340,2743,-715,-1173,2744,2745]],"properties":{"iso":"02091"}},{"type":"Polygon","arcs":[[2746,2747,-1809,2748,2749,2750,2751]],"properties":{"iso":"04005"}},{"type":"Polygon","arcs":[[-2557,2752,2753,2754]],"properties":{"iso":"17014"}},{"type":"Polygon","arcs":[[2755,2756,2757,-1645]],"properties":{"iso":"10002"}},{"type":"Polygon","arcs":[[2758,2759,2760,2761]],"properties":{"iso":"04014"}},{"type":"Polygon","arcs":[[-2700,2762,2763,2764,-1678]],"properties":{"iso":"11069"}},{"type":"Polygon","arcs":[[2765,2766,2767,2768]],"properties":{"iso":"20010"}},{"type":"Polygon","arcs":[[-747,2769,-1954,-1939,2770,2771]],"properties":{"iso":"07003"}},{"type":"Polygon","arcs":[[2772,-2706,2773,2774,-2651]],"properties":{"iso":"15028"}},{"type":"Polygon","arcs":[[-2752,2775,2776,2777]],"properties":{"iso":"04004"}},{"type":"Polygon","arcs":[[-2056,2778,2779]],"properties":{"iso":"21006"}},{"type":"Polygon","arcs":[[-2059,2780,2781]],"properties":{"iso":"21070"}},{"type":"Polygon","arcs":[[2782,2783,-2298,-2737,-1675]],"properties":{"iso":"03049"}},{"type":"Polygon","arcs":[[2784,2785,2786,2787,2788]],"properties":{"iso":"03041"}},{"type":"Polygon","arcs":[[2789,2790,2791,-2761,2792,2793]],"properties":{"iso":"05036"}},{"type":"Polygon","arcs":[[2794,2795,2796,2797]],"properties":{"iso":"03043"}},{"type":"Polygon","arcs":[[2798,2799,2800,2801]],"properties":{"iso":"18004"}},{"type":"Polygon","arcs":[[2802,-1111,-1592]],"properties":{"iso":"23093"}},{"type":"Polygon","arcs":[[2803,2804,2805,2806]],"properties":{"iso":"22051"}},{"type":"Polygon","arcs":[[2807,2808,-71]],"properties":{"iso":"04021"}},{"type":"Polygon","arcs":[[2809,2810,2811,-1189]],"properties":{"iso":"11058"}},{"type":"Polygon","arcs":[[2812,2813,-1960,2814,2815]],"properties":{"iso":"14049"}},{"type":"Polygon","arcs":[[-1012,-1658,-1362,-2644,-1983]],"properties":{"iso":"05025"}},{"type":"Polygon","arcs":[[-669,-1612,2816,-714]],"properties":{"iso":"20026"}},{"type":"Polygon","arcs":[[-2624,2817,-2081,2818]],"properties":{"iso":"18030"}},{"type":"Polygon","arcs":[[2819,-710,2820,-2129,2821,2822]],"properties":{"iso":"18013"}},{"type":"Polygon","arcs":[[2823,-2753,-2556,2824,2825,2826,2827,2828]],"properties":{"iso":"17016"}},{"type":"Polygon","arcs":[[2829,2830,2831,2832]],"properties":{"iso":"09022"}},{"type":"Polygon","arcs":[[-2474,2833,-1460,-1968,-2004,2834,-1793]],"properties":{"iso":"16019"}},{"type":"Polygon","arcs":[[2835,-1163,2836,2837,2838]],"properties":{"iso":"12034"}},{"type":"Polygon","arcs":[[2839,-2105,-2553,-1014,-1982,-2533]],"properties":{"iso":"05023"}},{"type":"Polygon","arcs":[[-2662,-2585,2840,-2605,2841,2842]],"properties":{"iso":"05005"}},{"type":"Polygon","arcs":[[-2403,2843,2844,2845,-612]],"properties":{"iso":"09010"}},{"type":"Polygon","arcs":[[2846,-2170,2847,2848,-1892,-12,-2548]],"properties":{"iso":"22034"}},{"type":"Polygon","arcs":[[-2159]],"properties":{"iso":"22001"}},{"type":"Polygon","arcs":[[-161,-2597,2849,2850]],"properties":{"iso":"15044"}},{"type":"Polygon","arcs":[[-2665,2851,-1279,2852]],"properties":{"iso":"10116"}},{"type":"Polygon","arcs":[[-724,2853,2854,-879,-2645,-1474]],"properties":{"iso":"10069"}},{"type":"Polygon","arcs":[[2855,-2266]],"properties":{"iso":"22083"}},{"type":"Polygon","arcs":[[2856,2857,-902,2858]],"properties":{"iso":"16081"}},{"type":"Polygon","arcs":[[2859,-1118,-964,-931]],"properties":{"iso":"21124"}},{"type":"Polygon","arcs":[[-1971,2860,-422,2861,-2771,-1938]],"properties":{"iso":"07005"}},{"type":"Polygon","arcs":[[-2572,2862,2863,2864,2865]],"properties":{"iso":"14044"}},{"type":"Polygon","arcs":[[-2866,2866,2867,-2562,-2573]],"properties":{"iso":"14043"}},{"type":"Polygon","arcs":[[-2834,-2473,-119,2868,-1997,-1461]],"properties":{"iso":"16012"}},{"type":"Polygon","arcs":[[-2786,2869,-1071,-546,-2458]],"properties":{"iso":"03016"}},{"type":"Polygon","arcs":[[-741,2870,2871,-2519,-1630]],"properties":{"iso":"20002"}},{"type":"Polygon","arcs":[[2872,2873,2874,-2451,2875]],"properties":{"iso":"15015"}},{"type":"Polygon","arcs":[[-2627,2876,2877,2878,-2593,2879,2880]],"properties":{"iso":"15036"}},{"type":"Polygon","arcs":[[2881,2882,2883,-2829,2884]],"properties":{"iso":"17011"}},{"type":"Polygon","arcs":[[-1359,-751,-540,-320,2885,2886,-2217]],"properties":{"iso":"02008"}},{"type":"Polygon","arcs":[[2887,2888,-1378,2889,2890,-774]],"properties":{"iso":"12017"}},{"type":"Polygon","arcs":[[-2534,-573,2891,2892]],"properties":{"iso":"23090"}},{"type":"Polygon","arcs":[[2893,2894,2895,2896,2897,2898]],"properties":{"iso":"01002"}},{"type":"Polygon","arcs":[[2899,2900,-1799,-1458,-2000]],"properties":{"iso":"16008"}},{"type":"Polygon","arcs":[[2901,-1329,-2762,-2792,2902]],"properties":{"iso":"04013"}},{"type":"Polygon","arcs":[[2903,-1433,2904]],"properties":{"iso":"23049"}},{"type":"Polygon","arcs":[[-2587,-2661,-2225,-850,-1480]],"properties":{"iso":"06027"}},{"type":"Polygon","arcs":[[-1088,2905,2906,-9]],"properties":{"iso":"21121"}},{"type":"Polygon","arcs":[[-2470,2907,2908,-1171,2909]],"properties":{"iso":"03008"}},{"type":"Polygon","arcs":[[2910,2911,-2455,-548,2912,2913]],"properties":{"iso":"03021"}},{"type":"Polygon","arcs":[[-75,2914,2915,2916]],"properties":{"iso":"03055"}},{"type":"Polygon","arcs":[[-122,2917,-2825,-2555,2918]],"properties":{"iso":"16014"}},{"type":"Polygon","arcs":[[2919,2920,2921]],"properties":{"iso":"10108"}},{"type":"Polygon","arcs":[[-2506,2922,2923,2924,2925]],"properties":{"iso":"17007"}},{"type":"Polygon","arcs":[[-1696,-2660,2926,2927,2928]],"properties":{"iso":"19006"}},{"type":"Polygon","arcs":[[2929,2930,-2883,2931,-2504,2932]],"properties":{"iso":"17012"}},{"type":"Polygon","arcs":[[-2268,2933,-2675,2934]],"properties":{"iso":"11037"}},{"type":"Polygon","arcs":[[2935,2936]],"properties":{"iso":"23094"}},{"type":"Polygon","arcs":[[-2639,2937,-2864,2938,2939]],"properties":{"iso":"14054"}},{"type":"Polygon","arcs":[[2940,2941,2942,2943,2944]],"properties":{"iso":"17027"}},{"type":"Polygon","arcs":[[-1219,2945,2946,2947,-672,-619]],"properties":{"iso":"19003"}},{"type":"Polygon","arcs":[[2948,2949,2950,2951,-2485]],"properties":{"iso":"18017"}},{"type":"Polygon","arcs":[[-2003,-446,-1196,-1791,-2835]],"properties":{"iso":"16022"}},{"type":"Polygon","arcs":[[2952,2953,2954,2955,2956]],"properties":{"iso":"19052"}},{"type":"Polygon","arcs":[[2957,-1918,2958,2959,-2516]],"properties":{"iso":"18003"}},{"type":"Polygon","arcs":[[-2791,2960,-736,-2684,2961,-2903]],"properties":{"iso":"04009"}},{"type":"Polygon","arcs":[[-1192,-1788,-2454,-2730,-2509,2962,-2704]],"properties":{"iso":"15024"}},{"type":"Polygon","arcs":[[2963,2964,2965,-2878,2966,2967,2968,2969,-2602]],"properties":{"iso":"15046"}},{"type":"Polygon","arcs":[[2970,2971,2972,-2794,2973]],"properties":{"iso":"05039"}},{"type":"Polygon","arcs":[[-2729,2974,2975,2976,-1973,-1709]],"properties":{"iso":"08004"}},{"type":"Polygon","arcs":[[-2774,-2705,-2963,-2481,2977]],"properties":{"iso":"15020"}},{"type":"Polygon","arcs":[[2978,-2837,2979,-2326,2980]],"properties":{"iso":"12035"}},{"type":"Polygon","arcs":[[-2315,2981,2982,-785,2983,-658]],"properties":{"iso":"22008"}},{"type":"Polygon","arcs":[[-83,2984,2985,2986,-2210,2987,2988]],"properties":{"iso":"16053"}},{"type":"Polygon","arcs":[[2989,-1808,-2606,-2841,-2584,-566,-2316,-2125]],"properties":{"iso":"05002"}},{"type":"Polygon","arcs":[[-1540,2990,2991,2992,-2199,-2229]],"properties":{"iso":"11020"}},{"type":"Polygon","arcs":[[2993,2994,2995,2996]],"properties":{"iso":"04019"}},{"type":"Polygon","arcs":[[2997,2998,2999]],"properties":{"iso":"20057"}},{"type":"Polygon","arcs":[[3000,3001,3002,-2445,3003,-2137,3004]],"properties":{"iso":"17002"}},{"type":"Polygon","arcs":[[3005,-2068,3006,-2436]],"properties":{"iso":"21035"}},{"type":"Polygon","arcs":[[3007,-1654,-2541,-2113,-2109,-143]],"properties":{"iso":"10038"}},{"type":"Polygon","arcs":[[3008,3009,3010,3011,3012,3013]],"properties":{"iso":"14005"}},{"type":"Polygon","arcs":[[3014,3015,3016]],"properties":{"iso":"22089"}},{"type":"Polygon","arcs":[[3017,3018,3019]],"properties":{"iso":"12054"}},{"type":"Polygon","arcs":[[-2802,3020,-2615,-2512,-2960,3021]],"properties":{"iso":"18005"}},{"type":"Polygon","arcs":[[3022,-2417,3023,-1823,-1995,3024]],"properties":{"iso":"16059"}},{"type":"Polygon","arcs":[[3025,-2767,3026,3027,-1946,-2872]],"properties":{"iso":"20008"}},{"type":"Polygon","arcs":[[-2731,-2452,-2875,3028,-2511]],"properties":{"iso":"15016"}},{"type":"Polygon","arcs":[[3029,-42]],"properties":{"iso":"21013"}},{"type":"Polygon","arcs":[[3030,3031,-2972,3032,3033,3034]],"properties":{"iso":"05038"}},{"type":"Polygon","arcs":[[-693,-1367,-756,-597,-2412,3035]],"properties":{"iso":"02066"}},{"type":"Polygon","arcs":[[3036,-1769,-2367]],"properties":{"iso":"21049"}},{"type":"Polygon","arcs":[[3037,-2906,-1087]],"properties":{"iso":"21120"}},{"type":"Polygon","arcs":[[3038,-2074,3039,3040,3041]],"properties":{"iso":"19011"}},{"type":"Polygon","arcs":[[-3037,-2195,-1770]],"properties":{"iso":"21050"}},{"type":"Polygon","arcs":[[3042,-1134,3043,-1256]],"properties":{"iso":"21110"}},{"type":"Polygon","arcs":[[-2859,-905,-2005,-1703,-1669,3044,-85,3045]],"properties":{"iso":"16039"}},{"type":"Polygon","arcs":[[-2982,-2314,-2153,3046]],"properties":{"iso":"22007"}},{"type":"Polygon","arcs":[[3047,3048,3049,-985]],"properties":{"iso":"10030"}},{"type":"Polygon","arcs":[[-2392,3050,3051,-1638,3052,3053]],"properties":{"iso":"12026"}},{"type":"Polygon","arcs":[[3054,-2422,-1941,-3028,3055,3056,3057]],"properties":{"iso":"20011"}},{"type":"Polygon","arcs":[[-3032,3058,-737,-2961,-2790,-2973]],"properties":{"iso":"05037"}},{"type":"Polygon","arcs":[[3059,-1420,-2057,-2780]],"properties":{"iso":"21002"}},{"type":"Polygon","arcs":[[-2400,-1247,-224,-1049]],"properties":{"iso":"12044"}},{"type":"Polygon","arcs":[[3060,-1776,3061]],"properties":{"iso":"10089"}},{"type":"Polygon","arcs":[[-53,-1393,3062,3063,-578]],"properties":{"iso":"14015"}},{"type":"Polygon","arcs":[[3064,3065,-901,-3033,-2971,3066]],"properties":{"iso":"05035"}},{"type":"Polygon","arcs":[[-2674,3067,-2269,-2935]],"properties":{"iso":"11043"}},{"type":"Polygon","arcs":[[-2783,-1674,-2456,-2912,3068,-95]],"properties":{"iso":"03020"}},{"type":"Polygon","arcs":[[-2657,-1698,-2946,-1218,-617]],"properties":{"iso":"19002"}},{"type":"Polygon","arcs":[[3069,3070,3071]],"properties":{"iso":"05018"}},{"type":"Polygon","arcs":[[-2579,3072,-2957,3073]],"properties":{"iso":"19053"}},{"type":"Polygon","arcs":[[3074,3075,3076,3077,3078,3079]],"properties":{"iso":"23080"}},{"type":"Polygon","arcs":[[-2594,-2879,-2966,3080]],"properties":{"iso":"15037"}},{"type":"Polygon","arcs":[[-2472,3081,3082,3083,3084]],"properties":{"iso":"03011"}},{"type":"Polygon","arcs":[[-2642,-898,-3066,3085,-411,-2732]],"properties":{"iso":"05033"}},{"type":"Polygon","arcs":[[-2464,-1115,3086]],"properties":{"iso":"23082"}},{"type":"Polygon","arcs":[[-1722,3087,3088]],"properties":{"iso":"10097"}},{"type":"Polygon","arcs":[[-2543,3089,3090,3091,-1976]],"properties":{"iso":"10048"}},{"type":"Polygon","arcs":[[3092,3093,-176,-1651,3094]],"properties":{"iso":"10036"}},{"type":"Polygon","arcs":[[-174,3095,-993,3096,3097]],"properties":{"iso":"16071"}},{"type":"Polygon","arcs":[[3098,3099,3100,-2551,-3095,-1655]],"properties":{"iso":"10019"}},{"type":"Polygon","arcs":[[3101,-2749,-2990,-2128,-148]],"properties":{"iso":"06021"}},{"type":"Polygon","arcs":[[3102,3103,-346,-880,-2855]],"properties":{"iso":"10072"}},{"type":"Polygon","arcs":[[3104,-2382,3105,-1472,-2007,3106]],"properties":{"iso":"17025"}},{"type":"Polygon","arcs":[[-459,3107,-1182,-2724,3108]],"properties":{"iso":"03033"}},{"type":"Polygon","arcs":[[3109,3110,-1528,-1516,3111,3112]],"properties":{"iso":"19059"}},{"type":"Polygon","arcs":[[-2873,3113,3114,-2682,3115]],"properties":{"iso":"15014"}},{"type":"Polygon","arcs":[[3116,-423,-2861,-1974,-2977]],"properties":{"iso":"08001"}},{"type":"Polygon","arcs":[[3117,-1755,3118,-2119]],"properties":{"iso":"11013"}},{"type":"Polygon","arcs":[[-3071,3119,-127,-2554,-2107,-1231,3120]],"properties":{"iso":"05019"}},{"type":"Polygon","arcs":[[3121,-1720,3122,3123,3124]],"properties":{"iso":"10122"}},{"type":"Polygon","arcs":[[-2486,3125,3126,-2495]],"properties":{"iso":"09017"}},{"type":"Polygon","arcs":[[-2964,-2601,3127]],"properties":{"iso":"15040"}},{"type":"Polygon","arcs":[[-2796,3128,-2735,3129,3130,3131,3132,3133]],"properties":{"iso":"03042"}},{"type":"Polygon","arcs":[[3134,3135,3136,-1387,3137]],"properties":{"iso":"20037"}},{"type":"Polygon","arcs":[[-2158,-1532]],"properties":{"iso":"22002"}},{"type":"Polygon","arcs":[[-903,-2858,3138,3139,-3107,-2006]],"properties":{"iso":"16037"}},{"type":"Polygon","arcs":[[-2505,-2932,-2882,3140,3141,3142]],"properties":{"iso":"17010"}},{"type":"Polygon","arcs":[[-2404,-323,3143,3144,3145,-322,-544]],"properties":{"iso":"02012"}},{"type":"Polygon","arcs":[[3146,-1688,-2646,-881,-349,-414]],"properties":{"iso":"10044"}},{"type":"Polygon","arcs":[[3147,-2986,3148,-1009,-1493,3149]],"properties":{"iso":"16052"}},{"type":"Polygon","arcs":[[-2919,3150,3151,-2617,-2869,-123]],"properties":{"iso":"16013"}},{"type":"Polygon","arcs":[[-2297,3152,3153,-291]],"properties":{"iso":"22136"}},{"type":"Polygon","arcs":[[-3007,-2067,3154,3155,-2437]],"properties":{"iso":"21039"}},{"type":"Polygon","arcs":[[-3152,3156,-2136,-2618]],"properties":{"iso":"16006"}},{"type":"Polygon","arcs":[[-2641,-1361,-1820,-3034,-900]],"properties":{"iso":"05028"}},{"type":"Polygon","arcs":[[-2620,3157,-1321,3158,3159,3160]],"properties":{"iso":"08017"}},{"type":"Polygon","arcs":[[3161,-2804,3162]],"properties":{"iso":"22053"}},{"type":"Polygon","arcs":[[-2479,-1948,3163,-2725,-1707]],"properties":{"iso":"08014"}},{"type":"Polygon","arcs":[[-1661,3164,-872,-2449]],"properties":{"iso":"03025"}},{"type":"Polygon","arcs":[[3165,3166,-2839,3167,-2969]],"properties":{"iso":"15047"}},{"type":"Polygon","arcs":[[-915,3168,3169,3170]],"properties":{"iso":"11007"}},{"type":"Polygon","arcs":[[3171,3172,3173,-1639,-3052]],"properties":{"iso":"12041"}},{"type":"Polygon","arcs":[[3174,3175,-2591,3176,3177]],"properties":{"iso":"15033"}},{"type":"Polygon","arcs":[[3178,-2497,3179,-2526]],"properties":{"iso":"02087"}},{"type":"Polygon","arcs":[[3180,3181,-154,-2232,-2628,-2881]],"properties":{"iso":"06003"}},{"type":"Polygon","arcs":[[-1174,-2206,3182,3183,-2697,-2088]],"properties":{"iso":"07012"}},{"type":"Polygon","arcs":[[3184,-2211,-2987,-3148,3185]],"properties":{"iso":"16054"}},{"type":"Polygon","arcs":[[-2433,-3156,3186,3187,-2708]],"properties":{"iso":"21031"}},{"type":"Polygon","arcs":[[-90,3188,-2845,3189,-2712]],"properties":{"iso":"09009"}},{"type":"Polygon","arcs":[[-615,-1684,-2635,-2491,3190]],"properties":{"iso":"09014"}},{"type":"Polygon","arcs":[[3191,-1081,3192,-2235,-433,3193]],"properties":{"iso":"19029"}},{"type":"Polygon","arcs":[[-1165,3194,3195,3196,3197]],"properties":{"iso":"12039"}},{"type":"Polygon","arcs":[[-631,3198]],"properties":{"iso":"21081"}},{"type":"Polygon","arcs":[[3199,3200,3201,3202]],"properties":{"iso":"23099"}},{"type":"Polygon","arcs":[[3203,3204,-1806,3205,-2393,-3054]],"properties":{"iso":"12025"}},{"type":"Polygon","arcs":[[-91,-3069,-2911,3206,-1660,-108]],"properties":{"iso":"03027"}},{"type":"Polygon","arcs":[[3207,-579,-3064,3208,-3010,3209]],"properties":{"iso":"14016"}},{"type":"Polygon","arcs":[[3210,3211,-2888,-773,3212,-1382]],"properties":{"iso":"12004"}},{"type":"Polygon","arcs":[[3213,3214,3215,3216]],"properties":{"iso":"23015"}},{"type":"Polygon","arcs":[[-2775,-2978,-2484,3217,-2652]],"properties":{"iso":"15029"}},{"type":"Polygon","arcs":[[-2152,-778,-2983,-3047]],"properties":{"iso":"22011"}},{"type":"Polygon","arcs":[[3218,3219,3220,3221]],"properties":{"iso":"11044"}},{"type":"Polygon","arcs":[[-2945,3222,-3105,-3140,3223]],"properties":{"iso":"17026"}},{"type":"Polygon","arcs":[[3224,3225,3226,-2679,-3115]],"properties":{"iso":"15012"}},{"type":"Polygon","arcs":[[-3195,3227,3228,-3173,3229]],"properties":{"iso":"12040"}},{"type":"Polygon","arcs":[[3230,-1926,-2103,3231]],"properties":{"iso":"09031"}},{"type":"Polygon","arcs":[[-2745,-1172,-2909,-2715,3232]],"properties":{"iso":"03003"}},{"type":"Polygon","arcs":[[3233,3234,3235,-118,3236,-2581]],"properties":{"iso":"19055"}},{"type":"Polygon","arcs":[[-3237,-117,-1531,3237,-2582]],"properties":{"iso":"19051"}},{"type":"Polygon","arcs":[[-1705,-1972,-1936,-2480]],"properties":{"iso":"08006"}},{"type":"Polygon","arcs":[[-910,-854,-336,-2430,-1966,-1311,3238]],"properties":{"iso":"02022"}},{"type":"Polygon","arcs":[[3239,3240,3241]],"properties":{"iso":"03066"}},{"type":"Polygon","arcs":[[3242,3243,3244]],"properties":{"iso":"23075"}},{"type":"Polygon","arcs":[[3245,-3084,3246,3247]],"properties":{"iso":"03012"}},{"type":"Polygon","arcs":[[-2561,-2773,-2650,3248,-2569]],"properties":{"iso":"15027"}},{"type":"Polygon","arcs":[[3249,3250,-2975,-2728,-2100,-1925]],"properties":{"iso":"08005"}},{"type":"Polygon","arcs":[[-2208,-3185,3251,-2477]],"properties":{"iso":"16056"}},{"type":"Polygon","arcs":[[3252,3253,3254,-55]],"properties":{"iso":"11041"}},{"type":"Polygon","arcs":[[-748,-2772,-2862,-432,3255]],"properties":{"iso":"07004"}},{"type":"Polygon","arcs":[[3256,-1151,-1358]],"properties":{"iso":"23053"}},{"type":"Polygon","arcs":[[-2394,-3206,-1805,3257]],"properties":{"iso":"12024"}},{"type":"Polygon","arcs":[[3258,-3035,-1819,-2663,-2843]],"properties":{"iso":"05009"}},{"type":"Polygon","arcs":[[3259,-50,3260,-1497]],"properties":{"iso":"14025"}},{"type":"Polygon","arcs":[[3261,3262,-1893,-2849]],"properties":{"iso":"22036"}},{"type":"Polygon","arcs":[[-2571,-1957,-2814,3263,-2939,-2863]],"properties":{"iso":"14047"}},{"type":"Polygon","arcs":[[-1919,-2958,-2515,3264,-2141,-2832,3265]],"properties":{"iso":"18008"}},{"type":"Polygon","arcs":[[-2801,3266,-2925,3267,-2611,-3021]],"properties":{"iso":"18006"}},{"type":"Polygon","arcs":[[-1955,3268,3269,-3183,-2207]],"properties":{"iso":"07009"}},{"type":"Polygon","arcs":[[-2414,-1076,-512,-2345,-2438,-689,-3036]],"properties":{"iso":"02061"}},{"type":"Polygon","arcs":[[3270,3271,-3136,-2223,3272]],"properties":{"iso":"20036"}},{"type":"Polygon","arcs":[[-3096,-173,-387,3273,-2242,-994]],"properties":{"iso":"16074"}},{"type":"Polygon","arcs":[[3274,3275,3276,3277]],"properties":{"iso":"12057"}},{"type":"Polygon","arcs":[[-2826,-2918,3278,-555,3279]],"properties":{"iso":"16015"}},{"type":"Polygon","arcs":[[-175,3280,-3090,-2542,-1652]],"properties":{"iso":"10050"}},{"type":"Polygon","arcs":[[-1535,-359,-260,-1526]],"properties":{"iso":"23092"}},{"type":"Polygon","arcs":[[3281,3282,-2759,-1328,3283,3284]],"properties":{"iso":"04023"}},{"type":"Polygon","arcs":[[3285,-1680,-1370,3286]],"properties":{"iso":"02097"}},{"type":"Polygon","arcs":[[-1827,-1650,-2494,3287,-2833,-2140]],"properties":{"iso":"09021"}},{"type":"Polygon","arcs":[[3288,-989,-1266,-1779,3289]],"properties":{"iso":"10091"}},{"type":"Polygon","arcs":[[-3121,-1234,-2889,-3212,3290,-3072]],"properties":{"iso":"12003"}},{"type":"Polygon","arcs":[[-3091,3291,-1782,-1375,3292]],"properties":{"iso":"10063"}},{"type":"Polygon","arcs":[[3293,-1783,-3292,-3281,-178,3294]],"properties":{"iso":"10061"}},{"type":"Polygon","arcs":[[-2552,-3101,3295,-1643,3296,-1335]],"properties":{"iso":"10020"}},{"type":"Polygon","arcs":[[-424,-3117,-2976,-3251,3297]],"properties":{"iso":"08002"}},{"type":"Polygon","arcs":[[-3160,3298,3299]],"properties":{"iso":"08016"}},{"type":"Polygon","arcs":[[-1036,-864,-907,-3092,-3293,3300]],"properties":{"iso":"10064"}},{"type":"Polygon","arcs":[[-3135,3301,3302,3303,-2224]],"properties":{"iso":"20044"}},{"type":"Polygon","arcs":[[-2226,3304,3305,-2233,-2001,-1963]],"properties":{"iso":"06009"}},{"type":"Polygon","arcs":[[-1979,3306,-557,3307,-997]],"properties":{"iso":"16030"}},{"type":"Polygon","arcs":[[3308,-2742,3309,-3057]],"properties":{"iso":"20018"}},{"type":"Polygon","arcs":[[3310,-220,3311]],"properties":{"iso":"12028"}},{"type":"Polygon","arcs":[[-1170,-1156,-1452,3312,-3082,-2471,-2910]],"properties":{"iso":"03007"}},{"type":"Polygon","arcs":[[-3146,3313,-318]],"properties":{"iso":"02011"}},{"type":"Polygon","arcs":[[-2876,-2450,-379,3314,-3225,-3114]],"properties":{"iso":"15013"}},{"type":"Polygon","arcs":[[-2102,-2727,3315,-1319,3316,-3232]],"properties":{"iso":"08010"}},{"type":"Polygon","arcs":[[-3270,3317,3318,3319,-2693,-3184]],"properties":{"iso":"07011"}},{"type":"Polygon","arcs":[[-1947,-2311,3320,-3300]],"properties":{"iso":"08021"}},{"type":"Polygon","arcs":[[3321,3322,-1132,-2307,3323]],"properties":{"iso":"21101"}},{"type":"Polygon","arcs":[[-2656,-2717,-1901,-1343]],"properties":{"iso":"21015"}},{"type":"Polygon","arcs":[[-3316,-2726,-3164,-3299,-3159,-1320]],"properties":{"iso":"08015"}},{"type":"Polygon","arcs":[[-2022,3324,-2368,-277]],"properties":{"iso":"11053"}},{"type":"Polygon","arcs":[[-3087,-1114,3325,-2465]],"properties":{"iso":"23084"}},{"type":"Polygon","arcs":[[-2575,-2696,3326,-100,3327]],"properties":{"iso":"06011"}},{"type":"Polygon","arcs":[[-1961,-1989,-2576,-3328,-103]],"properties":{"iso":"06010"}},{"type":"Polygon","arcs":[[3328,-2583,-1478,-848,-101,-3327,-2695]],"properties":{"iso":"06012"}},{"type":"Polygon","arcs":[[-1810,-2748,3329,-2685,-1225]],"properties":{"iso":"04006"}},{"type":"Polygon","arcs":[[-502,-531,-2518,-1227]],"properties":{"iso":"02044"}},{"type":"Polygon","arcs":[[3330,-2123,-507,3331,-2734]],"properties":{"iso":"03061"}},{"type":"Polygon","arcs":[[-3321,-2310,3332,-2719,-2621,-3161]],"properties":{"iso":"08022"}},{"type":"Polygon","arcs":[[-2320,3333,3334,-727,-866,-1039]],"properties":{"iso":"10076"}},{"type":"Polygon","arcs":[[-51,-3260,3335,-2676,-1394]],"properties":{"iso":"14036"}},{"type":"Polygon","arcs":[[-2092,3336,3337,-2203,-2319,3338]],"properties":{"iso":"10081"}},{"type":"Polygon","arcs":[[3339,3340,-2900,-2720]],"properties":{"iso":"16002"}},{"type":"Polygon","arcs":[[3341,-2995,3342,-3284,-1327,-2540]],"properties":{"iso":"04016"}},{"type":"Polygon","arcs":[[-2318,-1037,-3301,-1374,-2090,-3339]],"properties":{"iso":"10080"}},{"type":"Polygon","arcs":[[-3079,3343,3344,3345]],"properties":{"iso":"23078"}},{"type":"Polygon","arcs":[[-1365,-453,3346,3347,-1023]],"properties":{"iso":"15001"}},{"type":"Polygon","arcs":[[-1825,3348,3349,-803,3350]],"properties":{"iso":"14058"}},{"type":"Polygon","arcs":[[3351,-2524,-1598,-869,-3165,-3207]],"properties":{"iso":"03023"}},{"type":"Polygon","arcs":[[-3308,-556,-3279,-121,-2475,-1194,-301]],"properties":{"iso":"16016"}},{"type":"Polygon","arcs":[[-1430,3352]],"properties":{"iso":"21057"}},{"type":"Polygon","arcs":[[3353,-357,3354,-3049,3355,3356,-310]],"properties":{"iso":"10031"}},{"type":"Polygon","arcs":[[3357,3358,3359,-2500,-1298,3360]],"properties":{"iso":"11025"}},{"type":"Polygon","arcs":[[-2348,3361,-1477,-1033]],"properties":{"iso":"02074"}},{"type":"Polygon","arcs":[[-2499,-1072,-2870,-2785,3362,-3247,-3083,-3313,-1451,3363]],"properties":{"iso":"03013"}},{"type":"Polygon","arcs":[[-1441,3364,-202]],"properties":{"iso":"21062"}},{"type":"Polygon","arcs":[[-2279,3365,3366,-2036]],"properties":{"iso":"22141"}},{"type":"Polygon","arcs":[[3367,-524,-1756,-3118,-2118,-1380,3368,3369]],"properties":{"iso":"11017"}},{"type":"Polygon","arcs":[[3370,-1876,3371]],"properties":{"iso":"22134"}},{"type":"Polygon","arcs":[[-2902,-2962,-2683,-2702,-2536,-1330]],"properties":{"iso":"04011"}},{"type":"Polygon","arcs":[[3372,3373,-46]],"properties":{"iso":"16082"}},{"type":"Polygon","arcs":[[-3259,-2842,-2604,-306,-3059,-3031]],"properties":{"iso":"05004"}},{"type":"Polygon","arcs":[[-1713,-800]],"properties":{"iso":"10130"}},{"type":"Polygon","arcs":[[3374,3375,3376,3377,-2567]],"properties":{"iso":"01006"}},{"type":"Polygon","arcs":[[3378,-580,-3208,3379,3380,3381]],"properties":{"iso":"14032"}},{"type":"Polygon","arcs":[[-3163,-2807,3382,3383,3384,3385]],"properties":{"iso":"22056"}},{"type":"Polygon","arcs":[[-1211,3386,-1112,-2803,-2190,3387,3388]],"properties":{"iso":"23058"}},{"type":"Polygon","arcs":[[3389,-3051,-2391,-221,-3311,3390]],"properties":{"iso":"12031"}},{"type":"Polygon","arcs":[[3391,3392,3393,3394,-3013,3395,3396,3397,3398]],"properties":{"iso":"14029"}},{"type":"Polygon","arcs":[[3399,-2212,-1024,-3348,3400,3401,-3349,-1824,-3024,-2416,-2478]],"properties":{"iso":"16047"}},{"type":"Polygon","arcs":[[-645,3402,-2750,-3102,-147,-999,3403]],"properties":{"iso":"06020"}},{"type":"Polygon","arcs":[[-2848,-2169,3404,-3262]],"properties":{"iso":"22035"}},{"type":"Polygon","arcs":[[3405,3406,3407,3408,3409,3410]],"properties":{"iso":"18025"}},{"type":"Polygon","arcs":[[-3288,-2493,-2634,3411,-1921,3412,-2830]],"properties":{"iso":"09025"}},{"type":"Polygon","arcs":[[-468,3413,3414,3415,-1513,3416,3417]],"properties":{"iso":"23041"}},{"type":"Polygon","arcs":[[3418,-1761,3419,-456,3420,-2121]],"properties":{"iso":"11006"}},{"type":"Polygon","arcs":[[3421,-2333,3422,-2376]],"properties":{"iso":"13040"}},{"type":"Polygon","arcs":[[-2184,-3273,-2222,-3304,-96,3423,-516]],"properties":{"iso":"20046"}},{"type":"Polygon","arcs":[[3424,3425,-1159,-2197,-761,-1044]],"properties":{"iso":"07026"}},{"type":"Polygon","arcs":[[3426,3427,3428,-1986,-150,-3182,3429]],"properties":{"iso":"06001"}},{"type":"Polygon","arcs":[[-2959,-1917,3430,3431,3432,-2799,-3022]],"properties":{"iso":"18002"}},{"type":"Polygon","arcs":[[-1469,-3106,3433,3434,3435,-1537,-1704]],"properties":{"iso":"17019"}},{"type":"Polygon","arcs":[[-2930,3436,3437,-3001,3438,3439]],"properties":{"iso":"17004"}},{"type":"Polygon","arcs":[[-2754,-2824,-2884,-2931,-3440]],"properties":{"iso":"17013"}},{"type":"Polygon","arcs":[[-2280,3440,3441,3442,-846]],"properties":{"iso":"19048"}},{"type":"Polygon","arcs":[[-2868,3443,3444,-451,-2230,-2707,-2559]],"properties":{"iso":"14045"}},{"type":"Polygon","arcs":[[-1310,3445,3446,3447,-687,-1040,-911,-3239]],"properties":{"iso":"02019"}},{"type":"Polygon","arcs":[[-3405,-2168,-1894,-3263]],"properties":{"iso":"22148"}},{"type":"Polygon","arcs":[[-2234,-3306,3448,3449,-2629]],"properties":{"iso":"06006"}},{"type":"Polygon","arcs":[[-2850,-2603,-2970,-3168,-2838,-2979,3450]],"properties":{"iso":"15045"}},{"type":"Polygon","arcs":[[-3439,-3005,-3157,-3151,-2558,-2755]],"properties":{"iso":"17003"}},{"type":"Polygon","arcs":[[3451,-2387,3452,3453,-2722,-403,3454]],"properties":{"iso":"23038"}},{"type":"Polygon","arcs":[[3455,3456,3457,-1764]],"properties":{"iso":"14042"}},{"type":"Polygon","arcs":[[-1424,3458,3459,3460,-791]],"properties":{"iso":"21011"}},{"type":"Polygon","arcs":[[3461,-3234,-2580,-3074,-2956,3462,3463,3464,3465,3466]],"properties":{"iso":"19010"}},{"type":"Polygon","arcs":[[-842,3467,-1529,-3111,3468,3469]],"properties":{"iso":"19060"}},{"type":"Polygon","arcs":[[3470,3471,-2323]],"properties":{"iso":"14008"}},{"type":"Polygon","arcs":[[3472,3473,-2049,-2060,-2782,3474,-3322]],"properties":{"iso":"21114"}},{"type":"Polygon","arcs":[[3475,-2029,3476,-1882]],"properties":{"iso":"22126"}},{"type":"Polygon","arcs":[[3477,-1254,-1136]],"properties":{"iso":"21109"}},{"type":"Polygon","arcs":[[-2411,-1689,-3147,-413,3478,-1502,-2112]],"properties":{"iso":"10014"}},{"type":"Polygon","arcs":[[3479,-939,3480,3481,-1715]],"properties":{"iso":"10135"}},{"type":"Polygon","arcs":[[3482,-922,3483,-2811,3484,3485]],"properties":{"iso":"11066"}},{"type":"Polygon","arcs":[[3486,3487,3488,-3215,3489,-3203]],"properties":{"iso":"23013"}},{"type":"Polygon","arcs":[[3490,-1859,3491,3492,-2204]],"properties":{"iso":"10102"}},{"type":"Polygon","arcs":[[3493,3494,3495,-814,3496]],"properties":{"iso":"13007"}},{"type":"Polygon","arcs":[[-1747,-1431,-3353,3497]],"properties":{"iso":"21056"}},{"type":"Polygon","arcs":[[3498,-1286,-245,-828,3499]],"properties":{"iso":"13031"}},{"type":"Polygon","arcs":[[3500,-3392,3501,3502,3503]],"properties":{"iso":"13004"}},{"type":"Polygon","arcs":[[3504,3505,3506,3507,3508]],"properties":{"iso":"21080"}},{"type":"Polygon","arcs":[[3509,3510,-2273,-676,3511]],"properties":{"iso":"11029"}},{"type":"Polygon","arcs":[[-2142,-3265,-2514,-2614,3512]],"properties":{"iso":"18010"}},{"type":"Polygon","arcs":[[3513,3514,3515,3516]],"properties":{"iso":"22024"}},{"type":"Polygon","arcs":[[-2183,-2689,-2424,3517,-3271]],"properties":{"iso":"20013"}},{"type":"Polygon","arcs":[[-2820,3518,-3409,3519,-711]],"properties":{"iso":"18014"}},{"type":"Polygon","arcs":[[3520,3521,-2764]],"properties":{"iso":"11065"}},{"type":"Polygon","arcs":[[3522,-3295,-177,-3094,-340,-1046,-1465]],"properties":{"iso":"10052"}},{"type":"Polygon","arcs":[[-368,-1666,-2589,-3213,-772,-2097]],"properties":{"iso":"12013"}},{"type":"Polygon","arcs":[[-2532,-420,3523,-2890,-1377,-2106,-2840]],"properties":{"iso":"05024"}},{"type":"Polygon","arcs":[[3524,-3434,-2381,3525,-3141,-2885]],"properties":{"iso":"17020"}},{"type":"Polygon","arcs":[[3526,3527,3528,3529,3530]],"properties":{"iso":"03037"}},{"type":"Polygon","arcs":[[-2305,-2284,3531,-3050,-3355]],"properties":{"iso":"10026"}},{"type":"Polygon","arcs":[[3532,-862,3533,3534,3535]],"properties":{"iso":"21042"}},{"type":"Polygon","arcs":[[-1795,-2901,-3341,-1323,3536]],"properties":{"iso":"16001"}},{"type":"Polygon","arcs":[[-1384,-2588,3537,3538,-3291,-3211]],"properties":{"iso":"12002"}},{"type":"Polygon","arcs":[[3539,-3285,-3343,-2994,3540,-80]],"properties":{"iso":"04017"}},{"type":"Polygon","arcs":[[-2698,-916,-3171]],"properties":{"iso":"11064"}},{"type":"Polygon","arcs":[[3541,-2666,-2853,-1278]],"properties":{"iso":"10114"}},{"type":"Polygon","arcs":[[3542,-3380,-3210,-3009,3543]],"properties":{"iso":"14004"}},{"type":"Polygon","arcs":[[3544,-3204,-3053,3545,3546,-2463]],"properties":{"iso":"12030"}},{"type":"Polygon","arcs":[[-145,-2127,3547,-3319,3548,-1000]],"properties":{"iso":"06017"}},{"type":"Polygon","arcs":[[-2120,-3119,-1754,-3419]],"properties":{"iso":"11008"}},{"type":"Polygon","arcs":[[-1711,-351,-3354,-313,3549]],"properties":{"iso":"10032"}},{"type":"Polygon","arcs":[[-3493,3550,3551,-3334,-2205]],"properties":{"iso":"10075"}},{"type":"Polygon","arcs":[[-3223,3552,-2383]],"properties":{"iso":"17023"}},{"type":"Polygon","arcs":[[-2565,3553,-3531,3554,3555,3556]],"properties":{"iso":"01008"}},{"type":"Polygon","arcs":[[3557,-491,3558,3559,3560]],"properties":{"iso":"12059"}},{"type":"Polygon","arcs":[[-3261,-49,-807,-1784,-549,-2638,-2739,-1498]],"properties":{"iso":"14024"}},{"type":"Polygon","arcs":[[-74,3561,3562,-3555,-3530,3563,-2915]],"properties":{"iso":"03054"}},{"type":"Polygon","arcs":[[3564,3565,-1113,-3387,-1212,-3389]],"properties":{"iso":"23068"}},{"type":"Polygon","arcs":[[-2998,3566,3567,-517,-3424,-99,-896,-1504,3568]],"properties":{"iso":"20056"}},{"type":"Polygon","arcs":[[3569,-2630,-3450,3570,-3538,-2590,3571,3572]],"properties":{"iso":"12001"}},{"type":"Polygon","arcs":[[3573,-2677,-3336,-1496,3574,3575,-3397,3576]],"properties":{"iso":"14013"}},{"type":"Polygon","arcs":[[-1777,-3061,3577,3578,-311,-3357,3579,3580]],"properties":{"iso":"10059"}},{"type":"Polygon","arcs":[[-2680,-3227,3581,-1796,-3537,-1160,-3426,3582,3583]],"properties":{"iso":"15010"}},{"type":"Polygon","arcs":[[-2636,3584,3585,3586,3587,-3575,-1495,-2738]],"properties":{"iso":"14052"}},{"type":"Polygon","arcs":[[3588,-2301,3589,-3241,3590,-2161]],"properties":{"iso":"03071"}},{"type":"Polygon","arcs":[[-3513,3591,3592,-2950,3593,-2143]],"properties":{"iso":"18019"}},{"type":"Polygon","arcs":[[3594,-2046,3595,-2308,-1139]],"properties":{"iso":"21103"}},{"type":"Polygon","arcs":[[3596,3597,-3123,-1719,3598]],"properties":{"iso":"10125"}},{"type":"Polygon","arcs":[[-2769,3599,-2401,-610,-2740,3600]],"properties":{"iso":"20016"}},{"type":"Polygon","arcs":[[3601,-3011,-3209,-3063,-2678,-3574]],"properties":{"iso":"14012"}},{"type":"Polygon","arcs":[[3602,3603,3604,3605,3606,3607]],"properties":{"iso":"19023"}},{"type":"Polygon","arcs":[[-3002,-3438,3608,-3432,3609]],"properties":{"iso":"17005"}},{"type":"Polygon","arcs":[[3610,-1628,3611,3612,-3393,-3501]],"properties":{"iso":"13005"}},{"type":"Polygon","arcs":[[-2568,-3378,3613,3614]],"properties":{"iso":"01016"}},{"type":"Polygon","arcs":[[-2828,3615,-3435,-3525]],"properties":{"iso":"17018"}},{"type":"Polygon","arcs":[[-3577,-3396,-3012,-3602]],"properties":{"iso":"14035"}},{"type":"Polygon","arcs":[[-2831,-3413,-1920,-3266]],"properties":{"iso":"09023"}},{"type":"Polygon","arcs":[[3616,-2020,3617,3618]],"properties":{"iso":"11055"}},{"type":"Polygon","arcs":[[3619,-3445,3620,3621]],"properties":{"iso":"14063"}},{"type":"Polygon","arcs":[[-2214,-1490,-852,-558,-3307,-1978]],"properties":{"iso":"16042"}},{"type":"Polygon","arcs":[[-3127,3622,-2658,-616,-3191,-2490]],"properties":{"iso":"09016"}},{"type":"Polygon","arcs":[[3623,-2330,3624,3625,3626]],"properties":{"iso":"12046"}},{"type":"Polygon","arcs":[[3627,-641,-429,3628,3629]],"properties":{"iso":"01004"}},{"type":"Polygon","arcs":[[3630,-3562,-73,3631,3632,-2776,-2751,-3403,-644,3633]],"properties":{"iso":"04003"}},{"type":"Polygon","arcs":[[3634,3635,-3471,-2336,3636,-2816]],"properties":{"iso":"14007"}},{"type":"Polygon","arcs":[[-3142,-3526,-2380,-3411,3637]],"properties":{"iso":"17021"}},{"type":"Polygon","arcs":[[3638,-2922,3639,3640,-569,-1243]],"properties":{"iso":"10109"}},{"type":"Polygon","arcs":[[-930,3641,3642,-628,3643,3644,3645,-1119,-2860]],"properties":{"iso":"21088"}},{"type":"Polygon","arcs":[[3646,3647,-2928,3648,3649]],"properties":{"iso":"19007"}},{"type":"Polygon","arcs":[[3650,3651,-1604,3652,3653,-1079]],"properties":{"iso":"19033"}},{"type":"Polygon","arcs":[[3654,-3507,3655,-3642,-929]],"properties":{"iso":"21079"}},{"type":"Polygon","arcs":[[3656,-1388,-3137,-3272,3657]],"properties":{"iso":"20035"}},{"type":"Polygon","arcs":[[-2044,3658,3659,-3187,-3155,-2066]],"properties":{"iso":"21040"}},{"type":"Polygon","arcs":[[-1840,-2370,3660,-1190,-2812,-3484]],"properties":{"iso":"11005"}},{"type":"Polygon","arcs":[[3661,-3417,-1514,-3416,3662]],"properties":{"iso":"23042"}},{"type":"Polygon","arcs":[[-1672,-2312,-2736,-3129,-2795,3663]],"properties":{"iso":"03045"}},{"type":"Polygon","arcs":[[-2521,3664,3665,-427,3666,3667]],"properties":{"iso":"09029"}},{"type":"Polygon","arcs":[[-2805,3668,-2171,-2847,-2547,3669,3670]],"properties":{"iso":"22050"}},{"type":"Polygon","arcs":[[-603,3671,-3015,3672]],"properties":{"iso":"22087"}},{"type":"Polygon","arcs":[[-2916,-3564,3673,-3132,3674]],"properties":{"iso":"03056"}},{"type":"Polygon","arcs":[[-2880,-2592,-3176,3675,-3430,-3181]],"properties":{"iso":"15035"}},{"type":"Polygon","arcs":[[3676,3677,3678,-3654]],"properties":{"iso":"19030"}},{"type":"Polygon","arcs":[[3679,3680,3681,-2174,-1235,-1519,3682]],"properties":{"iso":"22039"}},{"type":"Polygon","arcs":[[-1804,3683,-2690,-2395,-3258]],"properties":{"iso":"12022"}},{"type":"Polygon","arcs":[[-3062,-1775,3684,3685,-3578]],"properties":{"iso":"10088"}},{"type":"Polygon","arcs":[[-2267,-2856,-2265,3686]],"properties":{"iso":"22082"}},{"type":"Polygon","arcs":[[3687,3688,-1717]],"properties":{"iso":"10127"}},{"type":"Polygon","arcs":[[-3298,-3250,-1924,3689,-425]],"properties":{"iso":"08003"}},{"type":"Polygon","arcs":[[3690,-3359,3691,3692,3693]],"properties":{"iso":"11022"}},{"type":"Polygon","arcs":[[-2185,-518,-3568,3694,3695,-2517]],"properties":{"iso":"02040"}},{"type":"Polygon","arcs":[[-3545,-2462,3696,-3205]],"properties":{"iso":"12029"}},{"type":"Polygon","arcs":[[-3383,3697,-1455,3698]],"properties":{"iso":"22058"}},{"type":"Polygon","arcs":[[-2595,-3081,-2965,-3128,-2600,3699]],"properties":{"iso":"15039"}},{"type":"Polygon","arcs":[[-3317,-2446,-1927,-3231]],"properties":{"iso":"09032"}},{"type":"Polygon","arcs":[[3700,-2227,-2201,-2115,-3421,-463]],"properties":{"iso":"11009"}},{"type":"Polygon","arcs":[[-3325,-2021,-3617,3701,-1187,-3661,-2369]],"properties":{"iso":"11057"}},{"type":"Polygon","arcs":[[-3320,-3548,-2317,-564,-3329,-2694]],"properties":{"iso":"06016"}},{"type":"Polygon","arcs":[[-82,-3045,-1668,-1488,-1010,-3149,-2985]],"properties":{"iso":"16051"}},{"type":"Polygon","arcs":[[3702,3703,-666,3704,-3608]],"properties":{"iso":"19022"}},{"type":"Polygon","arcs":[[-1333,-1217,-353,-1710,-337,-3093,-2550]],"properties":{"iso":"10035"}},{"type":"Polygon","arcs":[[-675,3705,-1300,-2503,3706,-3512]],"properties":{"iso":"11026"}},{"type":"Polygon","arcs":[[-3309,-3056,-3027,-2766,-3601,-2743]],"properties":{"iso":"20015"}},{"type":"Polygon","arcs":[[-3679,3707,-2236,-3193,-1080]],"properties":{"iso":"19027"}},{"type":"Polygon","arcs":[[3708,3709,-2788,3710,-2797,-3134]],"properties":{"iso":"03040"}},{"type":"Polygon","arcs":[[-3358,-3369,-1379,3711,-3692]],"properties":{"iso":"11018"}},{"type":"Polygon","arcs":[[3712,3713,-2996,-3342,-2539]],"properties":{"iso":"04020"}},{"type":"Polygon","arcs":[[3714,-3629,-428,-3666,3715,3716,-2886,-319,3717,-2894]],"properties":{"iso":"01009"}},{"type":"Polygon","arcs":[[3718,-3515,3719,3720,-25,-1269]],"properties":{"iso":"22026"}},{"type":"Polygon","arcs":[[3721,-3544,-3014,-3395,3722,3723]],"properties":{"iso":"14026"}},{"type":"Polygon","arcs":[[-2162,-3591,-3240,3724,-457,-3420,-1760,-1130]],"properties":{"iso":"03067"}},{"type":"Polygon","arcs":[[3725,3726,-3495,3727,-2609,3728]],"properties":{"iso":"13014"}},{"type":"Polygon","arcs":[[3729,-3508,3730,-927]],"properties":{"iso":"21085"}},{"type":"Polygon","arcs":[[-3627,3731,3732,3733,3734]],"properties":{"iso":"12048"}},{"type":"Polygon","arcs":[[-2160,-2218,-2124,-3331,-2733,-2302,-3589]],"properties":{"iso":"03070"}},{"type":"Polygon","arcs":[[3735,3736,3737,-2157]],"properties":{"iso":"02104"}},{"type":"Polygon","arcs":[[-3367,3738,-3153,-2296,-2032]],"properties":{"iso":"22138"}},{"type":"Polygon","arcs":[[3739,3740,-400,-284,-2221,-1064,3741,-132]],"properties":{"iso":"22017"}},{"type":"Polygon","arcs":[[3742,-484,3743]],"properties":{"iso":"23045"}},{"type":"Polygon","arcs":[[-2522,-3668,3744,-1922,-3412,-2633,3745,-1336]],"properties":{"iso":"09026"}},{"type":"Polygon","arcs":[[-2846,-3189,-89,-536,-2439,-1337,-3746,-2632,-1685,-613]],"properties":{"iso":"09006"}},{"type":"Polygon","arcs":[[-1061,-2443,-2626,-967,-2147,-331,-1346,3746]],"properties":{"iso":"22069"}},{"type":"Polygon","arcs":[[-1314,-760,-196,3747,-2781,-2058,-1913]],"properties":{"iso":"21071"}},{"type":"Polygon","arcs":[[3748,-812,3749,3750,-3503]],"properties":{"iso":"13006"}},{"type":"Polygon","arcs":[[-1725,-660,3751]],"properties":{"iso":"10095"}},{"type":"Polygon","arcs":[[3752,-1270,-24,3753,-22,3754,3755,-1303]],"properties":{"iso":"22075"}},{"type":"Polygon","arcs":[[3756,-3720,-3514,3757,-136,3758]],"properties":{"iso":"22025"}},{"type":"Polygon","arcs":[[3759,-2525,-3352,-2914]],"properties":{"iso":"03022"}},{"type":"Polygon","arcs":[[-1916,-3003,-3610,-3431]],"properties":{"iso":"18001"}},{"type":"Polygon","arcs":[[-1905,3760,3761,-519,-1166]],"properties":{"iso":"21028"}},{"type":"Polygon","arcs":[[3762,3763,3764,3765,3766]],"properties":{"iso":"18034"}},{"type":"Polygon","arcs":[[3767,-3200,-3490,-3214,3768]],"properties":{"iso":"23012"}},{"type":"Polygon","arcs":[[-2778,3769,-2686,-3330,-2747]],"properties":{"iso":"04007"}},{"type":"Polygon","arcs":[[-460,-3109,-2723,-1622,-732,-1621]],"properties":{"iso":"03035"}},{"type":"Polygon","arcs":[[-1008,3770,3771,3772,-3076,3773]],"properties":{"iso":"23085"}},{"type":"Polygon","arcs":[[-141,-2108,-1500,-885,-1953,3774]],"properties":{"iso":"10016"}},{"type":"Polygon","arcs":[[-1534,-1536,-3436,-3616,-2827,-3280]],"properties":{"iso":"17017"}},{"type":"Polygon","arcs":[[-1870,3775,-1868,-576,3776,-2892,-572,-1750,-395]],"properties":{"iso":"23100"}},{"type":"Polygon","arcs":[[-1429,-389,-203,-3365,-1446,-3498]],"properties":{"iso":"21061"}},{"type":"Polygon","arcs":[[3777,3778,3779,3780,3781,-2175]],"properties":{"iso":"22043"}},{"type":"Polygon","arcs":[[3782,-265,3783,3784,-801,-47,-3374,3785,-975]],"properties":{"iso":"16079"}},{"type":"Polygon","arcs":[[-1138,-1261,-2047,-3595]],"properties":{"iso":"21113"}},{"type":"Polygon","arcs":[[3786,3787,-1052,3788,-2527,-1594]],"properties":{"iso":"23055"}},{"type":"Polygon","arcs":[[-240,3789,-1475,-3362,-1351,-104,-2347,-373,-602,3790]],"properties":{"iso":"02076"}},{"type":"Polygon","arcs":[[-3017,3791,3792,3793,-2276,-480,3794,-1295,-949,3795,-604,-3673]],"properties":{"iso":"22097"}},{"type":"Polygon","arcs":[[3796,3797,-1283,3798,-1773,-1723,-3089]],"properties":{"iso":"10098"}},{"type":"Polygon","arcs":[[-649,-836,-1410,3799,-445]],"properties":{"iso":"22111"}},{"type":"Polygon","arcs":[[-646,-3404,-998,-3549,-3318,-3269,-2770,-746,-3256,-431]],"properties":{"iso":"07001"}},{"type":"Polygon","arcs":[[3800,-1288,3801,3802]],"properties":{"iso":"13028"}},{"type":"Polygon","arcs":[[-135,3803,3804,3805,-3759]],"properties":{"iso":"22047"}},{"type":"Polygon","arcs":[[-3694,3806,-2992,3807,-1906,-2026,3808]],"properties":{"iso":"11021"}},{"type":"Polygon","arcs":[[-1826,-3351,-802,-3785,3809,-3025,-1996]],"properties":{"iso":"16062"}},{"type":"Polygon","arcs":[[-607,-288,3810,3811,3812,-3793,3813,-2420,3814]],"properties":{"iso":"22090"}},{"type":"Polygon","arcs":[[-3766,3815,3816,-2385,-2354,3817]],"properties":{"iso":"18027"}},{"type":"Polygon","arcs":[[-2274,-3511,3818]],"properties":{"iso":"11035"}},{"type":"Polygon","arcs":[[-674,-3370,-3361,-1297,-3706]],"properties":{"iso":"11024"}},{"type":"Polygon","arcs":[[3819,3820,-2947,-1697,-2929,3821,-3466]],"properties":{"iso":"19012"}},{"type":"Polygon","arcs":[[-3278,3822,-635,3823,-3019,3824]],"properties":{"iso":"12056"}},{"type":"Polygon","arcs":[[3825,-3726,3826,-818]],"properties":{"iso":"13039"}},{"type":"Polygon","arcs":[[3827,-2363,3828,3829]],"properties":{"iso":"12051"}},{"type":"Polygon","arcs":[[3830,-1863,3831,-1751,-570,-3641]],"properties":{"iso":"10111"}},{"type":"Polygon","arcs":[[3832,-199,-2668,-1911,-1772,-1443]],"properties":{"iso":"21068"}},{"type":"Polygon","arcs":[[-1082,-3192,3833,-592,-2087,3834,-3651]],"properties":{"iso":"19037"}},{"type":"Polygon","arcs":[[-3804,-134,3835,-3681,3836,3837]],"properties":{"iso":"22040"}},{"type":"Polygon","arcs":[[-586,-972,-3786,-3373]],"properties":{"iso":"16080"}},{"type":"Polygon","arcs":[[3838,-2896,3839,3840,3841]],"properties":{"iso":"01003"}},{"type":"Polygon","arcs":[[-3158,-2619,-2138,-3004,-2447,-1322]],"properties":{"iso":"17001"}},{"type":"Polygon","arcs":[[-3340,-3333,-2309,-766,-1814,-2011,-302,-1324]],"properties":{"iso":"07022"}},{"type":"Polygon","arcs":[[-1584,-588,3842,3843,3844]],"properties":{"iso":"19043"}},{"type":"Polygon","arcs":[[-1887,3845,3846,-33]],"properties":{"iso":"21092"}},{"type":"Polygon","arcs":[[-1434,-2904,3847,-3744,-483,3848,-2937,3849,3850,-3414]],"properties":{"iso":"23044"}},{"type":"Polygon","arcs":[[3851,-3647,3852,-2075,-3039,3853,-3235,-3462]],"properties":{"iso":"19009"}},{"type":"Polygon","arcs":[[3854,3855,3856,-1281,3857,3858]],"properties":{"iso":"10100"}},{"type":"Polygon","arcs":[[3859,-1934,3860,-3344,-3078,3861,3862,3863]],"properties":{"iso":"23079"}},{"type":"Polygon","arcs":[[3864,3865,-1585,-3845]],"properties":{"iso":"19044"}},{"type":"Polygon","arcs":[[3866,3867,-3811,-287,-2261]],"properties":{"iso":"22078"}},{"type":"Polygon","arcs":[[3868,-3787,-1593,-486]],"properties":{"iso":"23101"}},{"type":"Polygon","arcs":[[-1762,-581,-3379,3869]],"properties":{"iso":"14033"}},{"type":"Polygon","arcs":[[-971,-2082,-1106,-476]],"properties":{"iso":"22106"}},{"type":"Polygon","arcs":[[-2065,3870,3871,-3772,3872,-3850,-2936,-3849,-482]],"properties":{"iso":"23046"}},{"type":"Polygon","arcs":[[-2378,3873,3874,-471,-2390]],"properties":{"iso":"12064"}},{"type":"Polygon","arcs":[[3875,-3453,-2386,-469,-3418,-3662,3876,3877,3878]],"properties":{"iso":"23039"}},{"type":"Polygon","arcs":[[3879,3880,-3779,3881,-3837,-3680]],"properties":{"iso":"22042"}},{"type":"Polygon","arcs":[[3882,-2292,-1284,-3798]],"properties":{"iso":"10119"}},{"type":"Polygon","arcs":[[-1345,3883,-3781,3884,-3385,-2444,-1062,-3747]],"properties":{"iso":"22062"}},{"type":"Polygon","arcs":[[-963,3885,-388,-171,-3098,3886,-2247]],"properties":{"iso":"16070"}},{"type":"Polygon","arcs":[[-1101,-2030,-3476,-1881]],"properties":{"iso":"22123"}},{"type":"Polygon","arcs":[[-833,-1935,-3860]],"properties":{"iso":"23032"}},{"type":"Polygon","arcs":[[-3554,-2564,3887,-3446,-1309,3888,3889,3890]],"properties":{"iso":"01018"}},{"type":"Polygon","arcs":[[-3020,-3824,-634,-256,-492,-3558,3891]],"properties":{"iso":"12053"}},{"type":"Polygon","arcs":[[3892,-405,-2721,-3454,-3876]],"properties":{"iso":"23036"}},{"type":"Polygon","arcs":[[3893,-2063,3894,-3488]],"properties":{"iso":"23002"}},{"type":"Polygon","arcs":[[-3686,3895,-3856,3896,-1467,3897]],"properties":{"iso":"10087"}},{"type":"Polygon","arcs":[[-2228,-3701,-462,-1620,-1907,-3808,-2991,-1539]],"properties":{"iso":"11010"}},{"type":"Polygon","arcs":[[-3085,-3246,3898,-3527,-3891,3899,-2468]],"properties":{"iso":"03010"}},{"type":"Polygon","arcs":[[-2744,-2339,3900,-1453,-1154,-716]],"properties":{"iso":"02089"}},{"type":"Polygon","arcs":[[-3749,-3502,-3399,3901,-3497,-813]],"properties":{"iso":"13003"}},{"type":"Polygon","arcs":[[3902,-3469,3903]],"properties":{"iso":"19064"}},{"type":"Polygon","arcs":[[-1908,-1618]],"properties":{"iso":"11012"}},{"type":"Polygon","arcs":[[3904,-3080,-3346,3905,3906,-3878]],"properties":{"iso":"23076"}},{"type":"Polygon","arcs":[[-43,-3030,-2040,-14,3907,3908]],"properties":{"iso":"21098"}},{"type":"Polygon","arcs":[[-3607,3909,3910,-436,3911,-3703]],"properties":{"iso":"19021"}},{"type":"Polygon","arcs":[[3912,-1083,-1055,3913,-2488,-1391,3914,3915,-3287,-1369]],"properties":{"iso":"02096"}},{"type":"Polygon","arcs":[[-1866,3916,3917,3918,3919,-3551,-3492]],"properties":{"iso":"10103"}},{"type":"Polygon","arcs":[[-2291,-62,3920,-651]],"properties":{"iso":"22114"}},{"type":"Polygon","arcs":[[-1765,-3458,3921,-1575,-1930,-956]],"properties":{"iso":"14040"}},{"type":"Polygon","arcs":[[-407,3922,3923,-2289,3924,-1851,3925]],"properties":{"iso":"23033"}},{"type":"Polygon","arcs":[[-409,3926,-2070,3927,-3455]],"properties":{"iso":"13012"}},{"type":"Polygon","arcs":[[-1416,-2188,-839]],"properties":{"iso":"23062"}},{"type":"Polygon","arcs":[[-2146,-2176,-3782,-3884,-1344,-329,-1203]],"properties":{"iso":"22061"}},{"type":"Polygon","arcs":[[-3847,3928,-34]],"properties":{"iso":"21090"}},{"type":"Polygon","arcs":[[-940,-3480,-1714,-798]],"properties":{"iso":"10134"}},{"type":"Polygon","arcs":[[3929,-2874,-3116,-2681,-3584,3930,-3428,3931,-3178]],"properties":{"iso":"15032"}},{"type":"Polygon","arcs":[[-1852,-3925,-2288,-1928]],"properties":{"iso":"23029"}},{"type":"Polygon","arcs":[[3932,-1142,-1752,-3832,-1862]],"properties":{"iso":"10112"}},{"type":"Polygon","arcs":[[-252,-1726,-3752,-659]],"properties":{"iso":"10094"}},{"type":"Polygon","arcs":[[-3041,3933,3934,3935,-3113,3936]],"properties":{"iso":"19067"}},{"type":"Polygon","arcs":[[-2671,3937,-2025,-56,-3255,3938]],"properties":{"iso":"11040"}},{"type":"Polygon","arcs":[[-3394,-3613,3939,-1576,-3922,-3457,3940,-3723]],"properties":{"iso":"14028"}},{"type":"Polygon","arcs":[[-3879,-3907,-3923,-406,-3893]],"properties":{"iso":"23034"}},{"type":"Polygon","arcs":[[-131,-3758,-3517,3941,-3740]],"properties":{"iso":"22019"}},{"type":"Polygon","arcs":[[-13,-1891,3942,-3908]],"properties":{"iso":"21084"}},{"type":"Polygon","arcs":[[-3653,-1603,3943,-3677]],"properties":{"iso":"19031"}},{"type":"Polygon","arcs":[[-3456,-1763,-3870,-3382,3944,-3724,-3941]],"properties":{"iso":"14031"}},{"type":"Polygon","arcs":[[3945,3946,-2328,3947,-3197]],"properties":{"iso":"12038"}},{"type":"Polygon","arcs":[[-3104,3948,-3919,3949,-415,-347]],"properties":{"iso":"10073"}},{"type":"Polygon","arcs":[[-2179,3950,3951,-3805,-3838,-3882,-3778]],"properties":{"iso":"22045"}},{"type":"Polygon","arcs":[[-1610,-1349,-2220,3952,-1385,-3657,3953]],"properties":{"iso":"20034"}},{"type":"Polygon","arcs":[[3954,-3464,3955,-3604,3956,3957]],"properties":{"iso":"19016"}},{"type":"Polygon","arcs":[[-3937,-3112,-1515,-115,-3236,-3854,-3042]],"properties":{"iso":"19066"}},{"type":"Polygon","arcs":[[3958,3959,-1271,-3753,-1302]],"properties":{"iso":"22074"}},{"type":"Polygon","arcs":[[-2631,-3570,3960,-2967,-2877]],"properties":{"iso":"15049"}},{"type":"Polygon","arcs":[[-2654,3961,-3460,3962,-2718]],"properties":{"iso":"21020"}},{"type":"Polygon","arcs":[[-2144,-3594,-2949,-1647,-1828]],"properties":{"iso":"18016"}},{"type":"Polygon","arcs":[[-3296,-3100,3963,-2427,3964,-2756,-1644]],"properties":{"iso":"10004"}},{"type":"Polygon","arcs":[[-3835,-2086,-2014,-2041,-1605,-3652]],"properties":{"iso":"19035"}},{"type":"Polygon","arcs":[[-23,-3754]],"properties":{"iso":"22147"}},{"type":"Polygon","arcs":[[-1857,-981,3965,3966]],"properties":{"iso":"19069"}},{"type":"Polygon","arcs":[[-2765,-3522,3967,3968,-3618,-2019,-2085,-2150,-1679]],"properties":{"iso":"11002"}},{"type":"Polygon","arcs":[[-1682,-1074,3969,-3736,-2156,3970,-529]],"properties":{"iso":"02103"}},{"type":"Polygon","arcs":[[3971,-826,-1125,3972,-2374]],"properties":{"iso":"13032"}},{"type":"Polygon","arcs":[[-2763,-2699,-3170,3973,-3486,3974,-3968,-3521]],"properties":{"iso":"11068"}},{"type":"Polygon","arcs":[[-2281,-1586,-3866,3975]],"properties":{"iso":"19046"}},{"type":"Polygon","arcs":[[-2943,3976,-961,3977,-2357,3978]],"properties":{"iso":"17028"}},{"type":"Polygon","arcs":[[3979,3980,3981,3982,-3769,-3217]],"properties":{"iso":"23017"}},{"type":"Polygon","arcs":[[3983,-3874,-2377,-3423,-2332]],"properties":{"iso":"12062"}},{"type":"Polygon","arcs":[[-829,3984,3985,-1249,3986]],"properties":{"iso":"23023"}},{"type":"Polygon","arcs":[[3987,-1209,-2407,3988,3989,-1418]],"properties":{"iso":"20042"}},{"type":"Polygon","arcs":[[-3043,-1255,-3478,-1135]],"properties":{"iso":"21111"}},{"type":"Polygon","arcs":[[-3199,-630,-3505,3990,-1888,-31,-632]],"properties":{"iso":"21082"}},{"type":"Polygon","arcs":[[-1865,3991,-2920,-3639,-1242]],"properties":{"iso":"10107"}},{"type":"Polygon","arcs":[[3992,-2622,3993,-3763,3994,3995,3996]],"properties":{"iso":"18033"}},{"type":"Polygon","arcs":[[-721,-2489,-3914,-1054,-1487,-1230,-2431,-2342,3997,-1992,-2429,-334]],"properties":{"iso":"02053"}},{"type":"Polygon","arcs":[[-3977,-2942,3998,-385,-3886,-962]],"properties":{"iso":"17029"}},{"type":"Polygon","arcs":[[-2321,-1780,-3294,-3523,-1468,-3897,-3855,3999]],"properties":{"iso":"10086"}},{"type":"Polygon","arcs":[[-3892,-3561,4000,4001,4002,-3018]],"properties":{"iso":"12060"}},{"type":"Polygon","arcs":[[-3504,-3751,4003,-229,-1629,-3611]],"properties":{"iso":"13026"}},{"type":"Polygon","arcs":[[-2566,-3557,4004,-3634,-643,4005,-3375]],"properties":{"iso":"01007"}},{"type":"Polygon","arcs":[[-3125,4006,4007,4008,-2293,4009]],"properties":{"iso":"10123"}},{"type":"Polygon","arcs":[[-3967,4010,4011,-3935,4012,-3997,4013,-1858]],"properties":{"iso":"19068"}},{"type":"Polygon","arcs":[[-2768,-3026,4014,-2844,-2402,-3600]],"properties":{"iso":"20009"}},{"type":"Polygon","arcs":[[-2219,-695,4015,-3989,-2406,-294,-3953]],"properties":{"iso":"20033"}},{"type":"Polygon","arcs":[[-3337,-2091,-2322,-4000,-3859]],"properties":{"iso":"10085"}},{"type":"Polygon","arcs":[[4016,-3534,-679,-2709,-3188]],"properties":{"iso":"21044"}},{"type":"Polygon","arcs":[[-3303,4017,4018,-376,-1505,-897,-97]],"properties":{"iso":"20047"}},{"type":"Polygon","arcs":[[4019,-804,-3350,-3402,4020,-3622]],"properties":{"iso":"14065"}},{"type":"Polygon","arcs":[[-2953,-3073,4021,-3442,4022]],"properties":{"iso":"19049"}},{"type":"Polygon","arcs":[[-3268,-2924,4023,-2822,-2132,-2612]],"properties":{"iso":"18007"}},{"type":"Polygon","arcs":[[-2164,-2287,-2758,4024,-3282,-3540,-79]],"properties":{"iso":"10138"}},{"type":"Polygon","arcs":[[4025,-3802,-1287,-3499,4026]],"properties":{"iso":"13030"}},{"type":"Polygon","arcs":[[-2053,-3990,-4016,-694,-1608]],"properties":{"iso":"20029"}},{"type":"Polygon","arcs":[[-1542,-816,-2262,-285,-1871]],"properties":{"iso":"22080"}},{"type":"Polygon","arcs":[[-1740,-830,-3987,-1248,-1294]],"properties":{"iso":"23022"}},{"type":"Polygon","arcs":[[-1509,4027,-787,-3738,4028,-2999,-3569,-1503]],"properties":{"iso":"20058"}},{"type":"Polygon","arcs":[[-1831,-2238,-624,4029,-1413]],"properties":{"iso":"22118"}},{"type":"Polygon","arcs":[[-3830,4030,-3984,-2331,-3624,-3735,4031]],"properties":{"iso":"12050"}},{"type":"Polygon","arcs":[[4032,-3982,4033,-1250,-3986]],"properties":{"iso":"23019"}},{"type":"Polygon","arcs":[[-2172,-3669,-3162,-3386,-3885,-3780,-3881,4034,-539]],"properties":{"iso":"22032"}},{"type":"Polygon","arcs":[[-226,-1246,4035,-3275,-3825,-4003,4036]],"properties":{"iso":"12043"}},{"type":"Polygon","arcs":[[-4020,-3621,-3444,-2867,-2865,-2938,-1785,-805]],"properties":{"iso":"14064"}},{"type":"Polygon","arcs":[[-3991,-3509,-3730,-926,-1883]],"properties":{"iso":"21083"}},{"type":"Polygon","arcs":[[-3682,-3836,-133,-3742,-1063,-281,-2167]],"properties":{"iso":"22022"}},{"type":"Polygon","arcs":[[-3663,-3415,-3851,-3873,-3771,-1007,-3774,-3075,-3905,-3877]],"properties":{"iso":"23087"}},{"type":"Polygon","arcs":[[4037,-1854,-4014,-3996]],"properties":{"iso":"18035"}},{"type":"Polygon","arcs":[[-3477,-2028]],"properties":{"iso":"22125"}},{"type":"Polygon","arcs":[[-1108,-2362,4038]],"properties":{"iso":"23071"}},{"type":"Polygon","arcs":[[4039,-1692,-365,4040,-712,-2817,-1611,-3954]],"properties":{"iso":"20024"}},{"type":"Polygon","arcs":[[-3177,-2596,-3700,4041,-2508,-3029,-3930]],"properties":{"iso":"15031"}},{"type":"Polygon","arcs":[[-3867,-2260,4042,-3755,-21,4043]],"properties":{"iso":"22086"}},{"type":"Polygon","arcs":[[-3547,4044,-3228,-1164,-2836,-3167,-2459]],"properties":{"iso":"12033"}},{"type":"Polygon","arcs":[[-2940,-3264,-2813,4045,-3585,-2640]],"properties":{"iso":"14051"}},{"type":"Polygon","arcs":[[-1103,-946]],"properties":{"iso":"22151"}},{"type":"Polygon","arcs":[[-2415,-1816,-1797,-3582,-3226,-3315,-384,-1186]],"properties":{"iso":"15009"}},{"type":"Polygon","arcs":[[4046,-2610,4047,-3398,-3576,-3588]],"properties":{"iso":"14003"}},{"type":"Polygon","arcs":[[-1262,-986,-3532,-2283,-1758,4048]],"properties":{"iso":"10027"}},{"type":"Polygon","arcs":[[4049,-1120,-3646]],"properties":{"iso":"21076"}},{"type":"Polygon","arcs":[[-811,-230,-4004,-3750]],"properties":{"iso":"13025"}},{"type":"Polygon","arcs":[[-3674,-3529,4050,-3709,-3133]],"properties":{"iso":"03039"}},{"type":"Polygon","arcs":[[-4012,4051,-3904,-3110,-3936]],"properties":{"iso":"19065"}},{"type":"Polygon","arcs":[[-783,-242,4052]],"properties":{"iso":"22012"}},{"type":"Polygon","arcs":[[4053,-3959,-1301,4054]],"properties":{"iso":"22070"}},{"type":"Polygon","arcs":[[-2461,4055,-3572,-1664,4056]],"properties":{"iso":"12008"}},{"type":"Polygon","arcs":[[-1691,4057,4058,-367]],"properties":{"iso":"20020"}},{"type":"Polygon","arcs":[[-2080,4059,-3764,-3994,-2625,-2819]],"properties":{"iso":"18029"}},{"type":"Polygon","arcs":[[-3676,-3175,-3932,-3427]],"properties":{"iso":"15034"}},{"type":"Polygon","arcs":[[4060,-3841,-3144,-327,-688,-3448]],"properties":{"iso":"02017"}},{"type":"Polygon","arcs":[[-3862,-3077,-3773,-3872,4061]],"properties":{"iso":"23081"}},{"type":"Polygon","arcs":[[-2993,-3807,-3693,-3712,-1381,-2117,-2200]],"properties":{"iso":"11072"}},{"type":"Polygon","arcs":[[4062,-667,-3704,-3912,-435,-2237]],"properties":{"iso":"19024"}},{"type":"Polygon","arcs":[[-3632,-72,-2809,4063,-3713,-2538,-2701,4064]],"properties":{"iso":"04022"}},{"type":"Polygon","arcs":[[-655,-2984,-784,-4053,-241,-3791,-601]],"properties":{"iso":"22009"}},{"type":"Polygon","arcs":[[4065,-1563,-2353]],"properties":{"iso":"21117"}},{"type":"Polygon","arcs":[[-4032,-3734,-3559,-2364,-3828]],"properties":{"iso":"12049"}},{"type":"Polygon","arcs":[[4066,4067,-3695,-3567,-3000,-4029,-3737,-3970,-1073,-743]],"properties":{"iso":"02101"}},{"type":"Polygon","arcs":[[-2672,-3939,-3254,4068,-496,-886,-273,-3222,4069]],"properties":{"iso":"11039"}},{"type":"Polygon","arcs":[[-1089,-8,-1564,-4066,-2352]],"properties":{"iso":"21118"}},{"type":"Polygon","arcs":[[-3924,-3906,-3345,-3861,-1933,-2290]],"properties":{"iso":"23077"}},{"type":"Polygon","arcs":[[-3479,-412,-3086,-3065,4070,-1951,-883,-1499]],"properties":{"iso":"10009"}},{"type":"Polygon","arcs":[[4071,4072,-2334,-819,-3827,-3729]],"properties":{"iso":"13021"}},{"type":"Polygon","arcs":[[-1200,-1527,-258,-633,4073,-3243,4074,4075,-1003]],"properties":{"iso":"23073"}},{"type":"Polygon","arcs":[[-1153,4076,-1050,-3788,-3869,-485,-3743,-3848,-2905]],"properties":{"iso":"23050"}},{"type":"Polygon","arcs":[[4077,4078,4079,-2954,-4023,-3441,-2282]],"properties":{"iso":"19018"}},{"type":"Polygon","arcs":[[-438,4080,-3865,-3844,4081,4082]],"properties":{"iso":"19042"}},{"type":"Polygon","arcs":[[-2187,4083,-3244,-4074,-640,-837]],"properties":{"iso":"23059"}},{"type":"Polygon","arcs":[[-2466,-3326,-3566,4084,4085]],"properties":{"iso":"23097"}},{"type":"Polygon","arcs":[[-2716,-2908,-2469,-3900,-3890,4086]],"properties":{"iso":"03001"}},{"type":"Polygon","arcs":[[4087,-3963,-3459,-1423]],"properties":{"iso":"21010"}},{"type":"Polygon","arcs":[[-992,-2248,-3887,-3097]],"properties":{"iso":"16072"}},{"type":"Polygon","arcs":[[-1122,4088,-3644,-627]],"properties":{"iso":"21078"}},{"type":"Polygon","arcs":[[-200,-3833,-1442]],"properties":{"iso":"21064"}},{"type":"Polygon","arcs":[[4089,-1456,-3698,-2806,-3671,4090,-17]],"properties":{"iso":"22049"}},{"type":"Polygon","arcs":[[-2891,-3524,-419,4091,-2691,-889,-2098,-775]],"properties":{"iso":"12020"}},{"type":"Polygon","arcs":[[-2607,-1275,-1435,-401,-3741,-3942,-3516,-3719,-1268]],"properties":{"iso":"22018"}},{"type":"Polygon","arcs":[[-3108,4092,-2299,-2784,-94,-1183]],"properties":{"iso":"03051"}},{"type":"Polygon","arcs":[[-2649,4093,-3635,-2815,-1959,-2570,-3249]],"properties":{"iso":"14061"}},{"type":"Polygon","arcs":[[-2341,-2746,-3233,-1993,-3998]],"properties":{"iso":"02052"}},{"type":"Polygon","arcs":[[4094,-3659,-2043,-2366,4095,-3536]],"properties":{"iso":"21048"}},{"type":"Polygon","arcs":[[4096,-2050,-3474,4097]],"properties":{"iso":"21105"}},{"type":"Polygon","arcs":[[-1398,-416,-3950,-3918,4098,-2398]],"properties":{"iso":"10013"}},{"type":"Polygon","arcs":[[-2528,-3789,-1051,-4077,-1152,-3257,-1357]],"properties":{"iso":"23054"}},{"type":"Polygon","arcs":[[-2577,-1987,-3429,-3931,-3583,-3425,-1043]],"properties":{"iso":"07028"}},{"type":"Polygon","arcs":[[-3761,4099,4100,4101]],"properties":{"iso":"21001"}},{"type":"Polygon","arcs":[[-1304,-3756,-4043,-2259,4102]],"properties":{"iso":"22085"}},{"type":"Polygon","arcs":[[4103,-3915,-1390,-3696,-4068]],"properties":{"iso":"02041"}},{"type":"Polygon","arcs":[[-2051,-4097,4104]],"properties":{"iso":"21106"}},{"type":"Polygon","arcs":[[-2997,-3714,-4064,-2808,-81,-3541]],"properties":{"iso":"04018"}},{"type":"Polygon","arcs":[[-1923,-3745,-3667,-426,-3690]],"properties":{"iso":"09030"}},{"type":"Polygon","arcs":[[-3465,-3955,4105,-3820]],"properties":{"iso":"19013"}},{"type":"Polygon","arcs":[[-3335,-3552,-3920,-3949,-3103,-2854,-728]],"properties":{"iso":"10074"}},{"type":"Polygon","arcs":[[-2798,-3711,-2787,-2457,-1673,-3664]],"properties":{"iso":"03044"}},{"type":"Polygon","arcs":[[-2306,-3596,-2052,-4105,-4098,-3473,-3324]],"properties":{"iso":"21104"}},{"type":"Polygon","arcs":[[-4089,-1121,-4050,-3645]],"properties":{"iso":"21077"}},{"type":"Polygon","arcs":[[-3535,-4017,-3660,-4095]],"properties":{"iso":"21043"}},{"type":"Polygon","arcs":[[-1267,-990,-3289,4106,-3580,-3356,-3048]],"properties":{"iso":"10057"}},{"type":"Polygon","arcs":[[-952,-1544,-1872,-605,-3796]],"properties":{"iso":"22099"}},{"type":"Polygon","arcs":[[-1409,-4030,-623,-441,-3800]],"properties":{"iso":"22122"}},{"type":"Polygon","arcs":[[-479,-1296,-3795]],"properties":{"iso":"22105"}},{"type":"Polygon","arcs":[[-3926,-1850,-2071,-3927,-408]],"properties":{"iso":"23027"}},{"type":"Polygon","arcs":[[-4011,-3966,-980,-1842,-843,-3470,-3903,-4052]],"properties":{"iso":"19063"}},{"type":"Polygon","arcs":[[-3202,4107,-3863,-4062,-3871,-2064,-3894,-3487]],"properties":{"iso":"23003"}},{"type":"Polygon","arcs":[[-2324,-3472,-3636,-4094,-2648,4108,4109]],"properties":{"iso":"14006"}},{"type":"Polygon","arcs":[[-935,-2441,-3384,4110]],"properties":{"iso":"22057"}},{"type":"Polygon","arcs":[[-1030,-1034,-1476,-3790,-244,-782,-1847]],"properties":{"iso":"02080"}},{"type":"Polygon","arcs":[[4111,-1801,-2069,-3006,-2435,-2710,-685]],"properties":{"iso":"21033"}},{"type":"Polygon","arcs":[[-937,4112,-1457,-4090,-16,-2039]],"properties":{"iso":"21096"}},{"type":"Polygon","arcs":[[-3637,-2335,-4073,4113,-3586,-4046]],"properties":{"iso":"14009"}},{"type":"Polygon","arcs":[[4114,-2177,-1097,-26,-3721,-3757,-3806,-3952]],"properties":{"iso":"22041"}},{"type":"Polygon","arcs":[[-1143,-3933,-1861,-2667,-3542,-1277]],"properties":{"iso":"10113"}},{"type":"Polygon","arcs":[[-20,-2256,4115,-3812,-3868,-4044]],"properties":{"iso":"22077"}},{"type":"Polygon","arcs":[[-3957,-3603,-3705,-665,4116]],"properties":{"iso":"19015"}},{"type":"Polygon","arcs":[[4117,-3219,-272,-1838,-2272]],"properties":{"iso":"11047"}},{"type":"Polygon","arcs":[[-684,4118,-520,-3762,-4102,4119]],"properties":{"iso":"21036"}},{"type":"Polygon","arcs":[[-3840,-2895,-3718,-3314,-3145]],"properties":{"iso":"01010"}},{"type":"Polygon","arcs":[[-1774,-3799,-1282,-3857,-3896,-3685]],"properties":{"iso":"10099"}},{"type":"Polygon","arcs":[[-3951,-2178,-4115]],"properties":{"iso":"22046"}},{"type":"Polygon","arcs":[[-2921,-3992,-1864,-3831,-3640]],"properties":{"iso":"10110"}},{"type":"Polygon","arcs":[[-3573,-4056,-2460,-3166,-2968,-3961]],"properties":{"iso":"15048"}},{"type":"Polygon","arcs":[[-3979,-2356,-2384,-3553,-2944]],"properties":{"iso":"17024"}},{"type":"Polygon","arcs":[[-3699,-1454,-4113,-936,-4111]],"properties":{"iso":"22055"}},{"type":"Polygon","arcs":[[-54,-2023,-497,-4069,-3253]],"properties":{"iso":"11042"}},{"type":"Polygon","arcs":[[-3948,-2327,-2980,-1162,-3198]],"properties":{"iso":"12036"}},{"type":"Polygon","arcs":[[-4051,-3528,-3899,-3248,-3363,-2789,-3710]],"properties":{"iso":"03038"}},{"type":"Polygon","arcs":[[-2421,-3814,-3792,-3016,-3672,-608,-3815]],"properties":{"iso":"22088"}},{"type":"Polygon","arcs":[[-4007,-3124,-3598,4120]],"properties":{"iso":"10124"}},{"type":"Polygon","arcs":[[-2428,-3964,-3099,-3008,-142,-3775,-1180]],"properties":{"iso":"10018"}},{"type":"Polygon","arcs":[[-292,-3154,4121,-3372,-1875,-2295]],"properties":{"iso":"22135"}},{"type":"Polygon","arcs":[[-4096,-1767,-863,-3533]],"properties":{"iso":"21041"}},{"type":"Polygon","arcs":[[-3506,-629,-3643,-3656]],"properties":{"iso":"21087"}},{"type":"Polygon","arcs":[[-3612,-1627,-1577,-3940]],"properties":{"iso":"13016"}},{"type":"Polygon","arcs":[[-4026,4122,-2372,-2389,4123,-3803]],"properties":{"iso":"13023"}},{"type":"Polygon","arcs":[[-3732,-3626,4124,-3946,-3196,-3230,-3172,-3390]],"properties":{"iso":"12042"}},{"type":"Polygon","arcs":[[-1613,-668,-4063,-3708,-3678,-3944]],"properties":{"iso":"19026"}},{"type":"Polygon","arcs":[[-4005,-3556,-3563,-3631]],"properties":{"iso":"01005"}},{"type":"Polygon","arcs":[[-3783,-974,-2245,-266]],"properties":{"iso":"16077"}},{"type":"Polygon","arcs":[[-3023,-3810,-3784,-264,-1464,-2209,-2476,-2418]],"properties":{"iso":"16063"}},{"type":"Polygon","arcs":[[-3658,-3518,-2423,-3055,4125,-4058,-1690,-4040]],"properties":{"iso":"20014"}},{"type":"Polygon","arcs":[[-2192,-2358,-3978,-960,-499,-2349,-2249]],"properties":{"iso":"17032"}},{"type":"Polygon","arcs":[[-4117,-664,-2948,-3821,-4106,-3958]],"properties":{"iso":"19014"}},{"type":"Polygon","arcs":[[-2133,-2165,-77,4126,-3130,-3332,-510,-700]],"properties":{"iso":"03059"}},{"type":"Polygon","arcs":[[-3238,-1530,-3468,-841,-3443,-4022,-2578]],"properties":{"iso":"19050"}},{"type":"Polygon","arcs":[[-1596,-2529,-1355,-1538,-1004,-4076,4127]],"properties":{"iso":"23014"}},{"type":"Polygon","arcs":[[-4037,-4002,4128,-3312,-219]],"properties":{"iso":"12032"}},{"type":"Polygon","arcs":[[-4112,-4120,-4101,4129,-1421,-3060,-2779,-2055,-1066,-1802]],"properties":{"iso":"21003"}},{"type":"Polygon","arcs":[[-3983,-4033,-3985,-834,-3864,-4108,-3201,-3768]],"properties":{"iso":"23016"}},{"type":"Polygon","arcs":[[-2546,4130,-2215,-2887,-3717,4131,-1339]],"properties":{"iso":"09001"}},{"type":"Polygon","arcs":[[-3338,-3858,-1280,-2852,-2664,-3491]],"properties":{"iso":"10101"}},{"type":"Polygon","arcs":[[-1885,-1258,-1093]],"properties":{"iso":"21094"}},{"type":"Polygon","arcs":[[-3615,-3842,-4061,-3447,-3888,-2563]],"properties":{"iso":"01017"}},{"type":"Polygon","arcs":[[-3670,-2549,-10,-4091]],"properties":{"iso":"22052"}},{"type":"Polygon","arcs":[[-3809,-3938,-2670,4132,-2501,-3360,-3691]],"properties":{"iso":"11031"}},{"type":"Polygon","arcs":[[-3776,-1869]],"properties":{"iso":"23067"}},{"type":"Polygon","arcs":[[4133,-2898,4134,-3376,-4006,-642,-3628]],"properties":{"iso":"01013"}},{"type":"Polygon","arcs":[[-742,-1681,-3286,-3916,-4104,-4067]],"properties":{"iso":"02100"}},{"type":"Polygon","arcs":[[4135,-671,-713,-4041,-364]],"properties":{"iso":"20022"}},{"type":"Polygon","arcs":[[-4130,-4100,-1904,-155,-2008,-4088,-1422]],"properties":{"iso":"21009"}},{"type":"Polygon","arcs":[[4136,-3592,-2613,-2130,-2821,-709,4137,-2077]],"properties":{"iso":"18021"}},{"type":"Polygon","arcs":[[-2520,-4132,-3716,-3665]],"properties":{"iso":"09028"}},{"type":"Polygon","arcs":[[-2271,4138,-3220,-4118]],"properties":{"iso":"11046"}},{"type":"Polygon","arcs":[[-636,-3823,-3277,4139]],"properties":{"iso":"12055"}},{"type":"Polygon","arcs":[[-4049,-1757,-525,-3368,-673,-1263]],"properties":{"iso":"11003"}},{"type":"Polygon","arcs":[[-2535,-2893,-3777,-575]],"properties":{"iso":"23091"}},{"type":"Polygon","arcs":[[-2800,-3433,-3609,-3437,-2933,-2507,-2926,-3267]],"properties":{"iso":"17006"}},{"type":"Polygon","arcs":[[-439,-4083,4140]],"properties":{"iso":"19041"}},{"type":"Polygon","arcs":[[4141,-5,-2907,-3038,-1086,4142]],"properties":{"iso":"21122"}},{"type":"Polygon","arcs":[[-3496,-3727,-3826,-823,-824,-810]],"properties":{"iso":"13015"}},{"type":"Polygon","arcs":[[-1438,-1855,-4038,-3995,-3767,-3818,-2359]],"properties":{"iso":"18036"}},{"type":"Polygon","arcs":[[-4034,-3981,4143,-1251]],"properties":{"iso":"23018"}},{"type":"Polygon","arcs":[[-4009,4144,-3481,-938,-2294]],"properties":{"iso":"10136"}},{"type":"Polygon","arcs":[[-1877,-3371,-4122,-3739,-3366,-2278,-2257]],"properties":{"iso":"22140"}},{"type":"Polygon","arcs":[[-2076,-3853,-3650,4145,-2951,-3593,-4137]],"properties":{"iso":"18020"}},{"type":"Polygon","arcs":[[-2857,-3046,-84,-2989,4146,-2243,-3274,-386,-3999,-2941,-3224,-3139]],"properties":{"iso":"16067"}},{"type":"Polygon","arcs":[[-1127,-3422,-2375,-3973]],"properties":{"iso":"13041"}},{"type":"Polygon","arcs":[[-928,-3731,-3655]],"properties":{"iso":"21086"}},{"type":"Polygon","arcs":[[-1272,-3960,-4054,4147,-2263]],"properties":{"iso":"22071"}},{"type":"Polygon","arcs":[[-3817,4148,-3406,-2379]],"properties":{"iso":"18026"}},{"type":"Polygon","arcs":[[-4013,-3934,-3040,-2073,-2818,-2623,-3993]],"properties":{"iso":"18031"}},{"type":"Polygon","arcs":[[-3408,4149,-2078,-4138,-708,-3520]],"properties":{"iso":"18023"}},{"type":"Polygon","arcs":[[-3461,-3962,-2653,-1897,-792]],"properties":{"iso":"21017"}},{"type":"Polygon","arcs":[[-3819,4150,-2669,-2934]],"properties":{"iso":"11036"}},{"type":"Polygon","arcs":[[-3633,-4065,-2703,-2687,-3770,-2777]],"properties":{"iso":"04002"}},{"type":"Polygon","arcs":[[-1257,-3044,4151,4152,-4143]],"properties":{"iso":"21066"}},{"type":"Polygon","arcs":[[-3186,-3150,-1492,-2213,-3400,-3252]],"properties":{"iso":"16049"}},{"type":"Polygon","arcs":[[-4150,-3407,-4149,-3816,-3765,-4060,-2079]],"properties":{"iso":"18028"}},{"type":"Polygon","arcs":[[-1045,-1712,-3550,-312,-3579,-3898,-1466]],"properties":{"iso":"10055"}},{"type":"Polygon","arcs":[[-3760,-2913,-547,-1070,-2498,-3179]],"properties":{"iso":"03017"}},{"type":"Polygon","arcs":[[-2365,-472,-3875,-4031,-3829]],"properties":{"iso":"12065"}},{"type":"Polygon","arcs":[[-3483,-3974,-3169,-914]],"properties":{"iso":"11067"}},{"type":"Polygon","arcs":[[-3310,-2741,-621,-4136,-4059,-4126,-3058]],"properties":{"iso":"20019"}},{"type":"Polygon","arcs":[[4153,-788,-4028,-1510]],"properties":{"iso":"20050"}},{"type":"Polygon","arcs":[[4154,-3910,-3606,4155,-4079]],"properties":{"iso":"19020"}},{"type":"Polygon","arcs":[[-4087,-3889,-1308,-1523,-1025,-1990,-2714]],"properties":{"iso":"02050"}},{"type":"Polygon","arcs":[[-1518,-1237,-2173,-537,-4035,-3880,-3683]],"properties":{"iso":"22030"}},{"type":"Polygon","arcs":[[-3364,-3901,-2338,-2523,-3180,-2496]],"properties":{"iso":"02088"}},{"type":"Polygon","arcs":[[-3242,-3590,-2300,-4093,-458,-3725]],"properties":{"iso":"03053"}},{"type":"Polygon","arcs":[[-3410,-3519,-2823,-4024,-2923,-3143,-3638]],"properties":{"iso":"17008"}},{"type":"Polygon","arcs":[[-2502,-4133,-4151,-3510,-3707]],"properties":{"iso":"11030"}},{"type":"Polygon","arcs":[[-4107,-3290,-1778,-3581]],"properties":{"iso":"10058"}},{"type":"Polygon","arcs":[[-3122,-4010,-3883,-3797,-3088,-1721]],"properties":{"iso":"10121"}},{"type":"Polygon","arcs":[[-418,-1397,-2397,-2692,-4092]],"properties":{"iso":"10011"}},{"type":"Polygon","arcs":[[-4123,-4027,-3500,-827,-3972,-2373]],"properties":{"iso":"13029"}},{"type":"Polygon","arcs":[[-3813,-4116,-2255,-2277,-3794]],"properties":{"iso":"22096"}},{"type":"Polygon","arcs":[[-4042,-2599,4156,-4109,-2647,-3218,-2483]],"properties":{"iso":"15030"}},{"type":"Polygon","arcs":[[-3451,-2981,-2325,-4110,-4157,-2598,-159,-2851]],"properties":{"iso":"15042"}},{"type":"Polygon","arcs":[[-3391,-4129,-4001,-3560,-3733]],"properties":{"iso":"12061"}},{"type":"Polygon","arcs":[[4157,-4152,-1133,-3323,-3475,-3748,-195]],"properties":{"iso":"21063"}},{"type":"Polygon","arcs":[[-3834,-3194,-440,-4141,-4082,-3843,-587]],"properties":{"iso":"19039"}},{"type":"Polygon","arcs":[[-2388,-3452,-3928,-2072,-1552,-1899,-3801,-4124]],"properties":{"iso":"13013"}},{"type":"Polygon","arcs":[[-3969,-3975,-3485,-2810,-1188,-3702,-3619]],"properties":{"iso":"11052"}},{"type":"Polygon","arcs":[[-4139,-2270,-3068,-2673,-4070,-3221]],"properties":{"iso":"11045"}},{"type":"Polygon","arcs":[[-2399,-4099,-3917,-1240]],"properties":{"iso":"10104"}},{"type":"Polygon","arcs":[[-3126,-2952,-4146,-3649,-2927,-2659,-3623]],"properties":{"iso":"18018"}},{"type":"Polygon","arcs":[[-2216,-4131,-2545,-2711,4158,-740,-1215]],"properties":{"iso":"02001"}},{"type":"Polygon","arcs":[[-4128,-4075,-3245,-4084,-2186,-1590]],"properties":{"iso":"23074"}},{"type":"Polygon","arcs":[[-3947,-4125,-3625,-2329]],"properties":{"iso":"12045"}},{"type":"Polygon","arcs":[[-3138,-1386,-296,-2405,-1210,-3988,-1426,4159,-4018,-3302]],"properties":{"iso":"20043"}},{"type":"Polygon","arcs":[[-3728,-3494,-3902,-4048]],"properties":{"iso":"13008"}},{"type":"Polygon","arcs":[[-2988,-1462,-268,-2244,-4147]],"properties":{"iso":"16065"}},{"type":"Polygon","arcs":[[-206,-4142,-4153,-4158]],"properties":{"iso":"21067"}},{"type":"Polygon","arcs":[[-1718,-3689,4160,-3599]],"properties":{"iso":"10126"}},{"type":"Polygon","arcs":[[-3822,-3648,-3852,-3467]],"properties":{"iso":"19008"}},{"type":"Polygon","arcs":[[-1331,-3297,-1642,-2286,-2304]],"properties":{"iso":"10140"}},{"type":"Polygon","arcs":[[-2467,-4086,4161,-2360,-1117]],"properties":{"iso":"23069"}},{"type":"Polygon","arcs":[[-3463,-2955,-4080,-4156,-3605,-3956]],"properties":{"iso":"19017"}},{"type":"Polygon","arcs":[[-2258,-3687,-2264,-4148,-4055,-1305,-4103]],"properties":{"iso":"22072"}},{"type":"Polygon","arcs":[[-3377,-4135,-2897,-3839,-3614]],"properties":{"iso":"01001"}},{"type":"Polygon","arcs":[[-3715,-2899,-4134,-3630]],"properties":{"iso":"01014"}},{"type":"Polygon","arcs":[[-3401,-3347,-452,-3620,-4021]],"properties":{"iso":"15002"}},{"type":"Polygon","arcs":[[-3571,-3449,-3305,-137,-128,-3120,-3070,-3539]],"properties":{"iso":"05017"}},{"type":"Polygon","arcs":[[-3722,-3945,-3381,-3543]],"properties":{"iso":"14027"}},{"type":"Polygon","arcs":[[-3190,-4015,-2871,-4159,-2713]],"properties":{"iso":"20001"}},{"type":"Polygon","arcs":[[-3546,-1637,-3174,-3229,-4045]],"properties":{"iso":"12015"}},{"type":"Polygon","arcs":[[-3688,-1716,-3482,-4145,-4008,-4121,-3597,-4161]],"properties":{"iso":"10128"}},{"type":"Polygon","arcs":[[-2608,-4047,-3587,-4114,-4072]],"properties":{"iso":"14001"}},{"type":"Polygon","arcs":[[-3943,-1890,-2408,-1341,-44,-3909]],"properties":{"iso":"21018"}},{"type":"Polygon","arcs":[[-76,-2917,-3675,-3131,-4127]],"properties":{"iso":"03058"}},{"type":"Polygon","arcs":[[-370,-3684,-1803,-3697,-4057,-1667]],"properties":{"iso":"12010"}},{"type":"Polygon","arcs":[[-1245,-1417,-637,-4140,-3276,-4036]],"properties":{"iso":"12052"}},{"type":"Polygon","arcs":[[-2155,-599,-755,-1084,-3913,-1368,-526,-3971]],"properties":{"iso":"02093"}},{"type":"Polygon","arcs":[[-377,-4019,-4160,-1425,-789,-4154]],"properties":{"iso":"20048"}},{"type":"Polygon","arcs":[[-2061,-1167,-521,-4119,-683,-1910]],"properties":{"iso":"21037"}},{"type":"Polygon","arcs":[[-3283,-4025,-2757,-3965,-2426,-1178,-1952,-4071,-3067,-2974,-2793,-2760]],"properties":{"iso":"10001"}},{"type":"Polygon","arcs":[[-3976,-4081,-437,-3911,-4155,-4078]],"properties":{"iso":"19019"}}]}},"arcs":[[[8285,3891],[-13,94],[6,113],[13,89],[10,67],[6,64],[-4,252]],[[8303,4570],[31,-1],[53,-3],[-3,-63],[-9,-126],[-4,-63],[60,-3],[77,-4]],[[8508,4307],[-12,-192],[22,-8],[6,-56]],[[8524,4051],[-53,-9],[-63,-41],[-123,-110]],[[5851,8609],[-27,-78],[-27,-85],[-3,-15]],[[5794,8431],[-21,-12],[-19,-13],[-57,-15],[-110,508]],[[5587,8899],[196,-25]],[[5783,8874],[21,-3],[33,-88],[37,-93]],[[5874,8690],[-23,-81]],[[6363,6770],[-23,-61],[-16,-49],[-8,-28],[-3,-5]],[[6313,6627],[-3,-5],[-15,-53],[-13,-57]],[[6282,6512],[-24,9],[-33,22]],[[6225,6543],[-4,14],[-1,26],[-8,29],[-15,32],[-22,27],[-29,24],[-27,19],[-41,32],[-41,30]],[[6037,6776],[46,22],[40,17],[11,3],[34,7],[-7,12],[5,20],[15,46],[9,36],[7,7],[4,22],[7,35],[7,56]],[[6215,7059],[144,20]],[[6359,7079],[-5,-69],[-1,-3],[-12,-87],[-10,-55],[-8,-27],[1,-5],[53,26],[8,1],[11,-5]],[[6396,6855],[-33,-85]],[[7233,5603],[31,-105],[9,-27],[73,-123]],[[7346,5348],[4,-7],[-54,-131]],[[7296,5210],[-131,89],[-16,-37]],[[7149,5262],[-35,24]],[[7114,5286],[-47,32]],[[7067,5318],[33,85],[12,30],[53,101],[14,22],[-22,4],[-15,-12],[-15,-29],[-13,1],[-49,-10],[-15,75],[-45,-6],[-21,-6],[-26,-11],[-15,-10],[-15,-11],[-17,-16],[-14,-15],[-12,-16],[-12,-18],[-11,-23]],[[6862,5453],[-11,7]],[[6851,5460],[60,250]],[[6911,5710],[3,14]],[[6914,5724],[100,-54],[-8,-16],[124,-62],[103,11]],[[6928,8136],[10,-8],[19,-19],[36,-31],[52,-42],[7,-17],[8,-5],[17,-13],[24,-29],[26,-21]],[[7127,7951],[-86,-39]],[[7041,7912],[-109,-48],[-143,-59],[-137,-59]],[[6652,7746],[-11,-5]],[[6641,7741],[15,228]],[[6656,7969],[77,33]],[[6733,8002],[86,38],[63,28],[35,16],[11,52]],[[1753,3397],[7,1],[27,-2],[18,-1],[33,-4],[27,7],[25,-2],[20,15],[9,4],[27,4],[20,0],[23,14],[12,15],[30,-8],[26,-1],[13,10],[62,-39],[-10,-20],[19,-18]],[[2141,3372],[-13,-12],[-16,-28],[-7,-18],[-5,-24],[1,-26],[4,-11],[-11,-17],[-3,-10],[-8,-41],[-32,-1],[-5,-1],[-13,-15],[-23,-20],[-31,-32],[-19,-15]],[[1960,3101],[-28,7],[-29,-1],[-23,-1],[-27,-4],[-15,-5]],[[1838,3097],[-8,52],[-29,8],[-7,9],[-5,33],[9,96],[-6,17],[15,46],[-10,15],[-41,18],[-3,6]],[[5929,6701],[-2,5],[-26,18],[-42,26]],[[5859,6750],[-3,55],[-3,4],[-8,123],[-30,109],[-1,21],[8,14],[6,6],[53,36],[15,4],[-1,233]],[[5895,7355],[66,-84],[3,-75],[5,-71],[31,-20],[-14,-63],[0,-11],[14,-32],[-1,-6]],[[5999,6993],[-88,-40],[3,-41],[44,-27],[3,9],[42,-24]],[[6003,6870],[-2,-14],[-29,-55],[40,-34],[2,-3]],[[6014,6764],[-10,-6],[-75,-57]],[[2592,3951],[-1,17],[-18,75],[3,21],[6,4],[53,-2],[1,61],[10,0],[0,28],[59,0],[41,15],[-12,27],[-44,25],[-34,9],[-12,6],[9,9],[11,8],[40,21],[8,8],[6,13],[-1,16],[-6,10]],[[2711,4322],[18,4],[20,9]],[[2749,4335],[35,16],[47,15]],[[2831,4366],[-7,-56],[-2,-40],[48,-12],[-20,-113],[-4,-36],[2,-9],[-5,-43]],[[2843,4057],[-22,1],[-1,-15],[-14,-5],[-11,23],[-1,-23],[-52,-11],[-2,2],[-1,28],[-31,5],[15,-38],[7,-19],[7,-32],[2,-27]],[[2739,3946],[0,-6]],[[2739,3940],[-38,2]],[[2701,3942],[-37,3]],[[2664,3945],[-51,4],[-21,2]],[[6417,2518],[-33,3],[-54,31]],[[6330,2552],[-43,32],[-23,22]],[[6264,2606],[-22,32]],[[6242,2638],[18,24],[11,24],[-3,4],[-39,29]],[[6229,2719],[28,34],[8,15],[16,10]],[[6281,2778],[11,8],[10,-5],[14,46],[11,-6],[29,82],[3,8],[61,-33],[92,-50],[-12,-42],[-15,-53],[-30,-90],[-4,-15],[-5,-34],[-27,-75],[-2,-1]],[[8921,4970],[239,-16],[7,36],[52,-3]],[[9219,4987],[-1,-64],[-7,-60],[-9,-62],[-13,-60]],[[9189,4741],[-110,42],[-13,-61]],[[9066,4722],[-155,58]],[[8911,4780],[-27,10],[37,180]],[[8066,6284],[-45,13],[-43,15],[-33,15],[-21,-31],[-8,-16],[-12,-38]],[[7904,6242],[-32,7],[-82,16],[-16,-42],[-121,75]],[[7653,6298],[64,120],[39,100]],[[7756,6518],[54,-10],[45,-2]],[[7855,6506],[3,0],[-3,-97],[125,-3],[97,-15]],[[8077,6391],[-11,-107]],[[4997,3580],[-11,35],[-18,53],[-33,74]],[[4935,3742],[-4,11],[-34,107],[-13,41],[-1,10],[1,20]],[[4884,3931],[9,55]],[[4893,3986],[7,-13],[14,-8],[33,-48],[37,-28],[14,28],[-2,42],[20,0]],[[5016,3959],[45,5]],[[5061,3964],[2,-41],[9,0],[-1,-46],[-3,-59],[44,-35],[35,-26]],[[5147,3757],[-6,-40],[-36,8],[-19,-163],[-28,2],[-3,-59],[2,-17],[-5,-51]],[[5052,3437],[-13,-5]],[[5039,3432],[-6,-3]],[[5033,3429],[3,17],[-7,25]],[[5029,3471],[-32,109]],[[3304,4842],[-11,-61],[-56,16]],[[3237,4797],[-29,9]],[[3208,4806],[11,61],[58,-17]],[[3277,4850],[27,-8]],[[4635,5231],[8,-25],[-31,-14],[12,-22]],[[4624,5170],[10,-22]],[[4634,5148],[-31,2],[-23,-10],[-41,-6]],[[4539,5134],[4,49],[59,31]],[[4602,5214],[33,17]],[[5474,3762],[12,-9],[14,32],[22,-17]],[[5522,3768],[21,-16]],[[5543,3752],[-31,-48],[-32,-43]],[[5480,3661],[-12,23],[-14,34]],[[5454,3718],[20,44]],[[5118,5665],[-21,35],[-13,26],[-12,31]],[[5072,5757],[36,34]],[[5108,5791],[51,-86]],[[5159,5705],[-41,-40]],[[4139,3766],[27,18],[17,14],[12,12]],[[4195,3810],[23,-40],[13,-24]],[[4231,3746],[-29,-25],[-27,-26]],[[4175,3695],[-36,71]],[[5824,4886],[42,50],[58,-81]],[[5924,4855],[-22,-28],[-20,27],[-19,-22]],[[5863,4832],[-39,54]],[[5578,3724],[-35,28]],[[5522,3768],[5,11],[-4,2],[11,27],[6,2],[24,-21],[7,12],[-9,10],[3,6],[-7,6],[7,16]],[[5565,3839],[50,-42]],[[5615,3797],[-37,-73]],[[4173,4097],[-26,0],[2,48],[-26,0]],[[4123,4145],[1,75]],[[4124,4220],[56,0]],[[4180,4220],[2,-63],[-11,-1],[2,-59]],[[3876,5997],[-59,5],[2,87]],[[3819,6089],[0,48]],[[3819,6137],[34,-4],[-3,-99],[27,-5]],[[3877,6029],[-1,-32]],[[3739,4595],[-2,-31]],[[3737,4564],[-21,16],[-37,12],[-2,-26],[-51,12]],[[3626,4578],[-5,47],[4,16],[6,7]],[[3631,4648],[26,-12],[60,-30]],[[3717,4606],[22,-11]],[[4301,3420],[2,-7]],[[4303,3413],[3,-11],[9,-20]],[[4315,3382],[-52,-34]],[[4263,3348],[-39,-25]],[[4224,3323],[-21,51]],[[4203,3374],[45,25]],[[4248,3399],[53,21]],[[6741,5923],[-94,32],[-5,-19]],[[6642,5936],[-36,13],[-2,-9],[-8,2],[-33,-4]],[[6563,5938],[0,6],[7,40]],[[6570,5984],[9,-3]],[[6579,5981],[57,-20],[6,26],[105,-38],[-2,-9]],[[6745,5940],[-4,-17]],[[4203,3374],[-16,43],[9,13],[0,23],[16,4],[2,27]],[[4214,3484],[53,18],[13,5]],[[4280,3507],[6,-21]],[[4286,3486],[-28,-16],[-29,-10],[19,-61]],[[4680,2840],[4,50],[72,-10],[2,30]],[[4758,2910],[22,-3],[-6,-78]],[[4774,2829],[-42,5]],[[4732,2834],[-52,6]],[[4380,3908],[61,99]],[[4441,4007],[21,33],[23,-24],[3,-10],[12,-23]],[[4500,3983],[-13,-9]],[[4487,3974],[-77,-52]],[[4410,3922],[-30,-14]],[[4040,3637],[-12,28],[21,16],[-27,68],[21,16]],[[4043,3765],[27,-67]],[[4070,3698],[28,-67]],[[4098,3631],[-45,-24]],[[4053,3607],[-13,30]],[[5626,6816],[-13,17]],[[5613,6833],[5,6],[99,86],[38,-44],[-34,-16]],[[5721,6865],[-78,-35]],[[5643,6830],[-17,-14]],[[3535,3379],[-6,77],[48,6]],[[3577,3462],[20,0]],[[3597,3462],[5,-75],[-67,-8]],[[5065,4930],[-13,-49]],[[5052,4881],[-34,-104]],[[5018,4777],[6,29],[4,44]],[[5028,4850],[0,37]],[[5028,4887],[1,50]],[[5029,4937],[19,71]],[[5048,5008],[36,-14]],[[5084,4994],[-11,-37]],[[5073,4957],[-8,-27]],[[3053,5147],[13,5],[22,16],[6,-15],[14,-17]],[[3108,5136],[0,-11],[13,3],[2,-25],[2,-36],[14,-46],[-3,-13]],[[3136,5008],[-32,16]],[[3104,5024],[5,27],[0,11],[-7,0],[-3,26],[-15,0],[-1,19],[-19,0],[-11,40]],[[4864,2592],[15,64],[7,48]],[[4886,2704],[50,-7]],[[4936,2697],[-34,-120]],[[4902,2577],[-38,15]],[[8077,6391],[126,-19],[213,-32],[3,144]],[[8419,6484],[6,-2]],[[8425,6482],[10,-7],[15,-3],[11,1],[14,-18],[22,-39],[5,-19],[2,-18],[0,-27],[-9,-87],[-23,-218],[-19,-170],[0,-22],[4,-27],[8,-23],[9,-16],[15,-20],[17,-11],[16,-5],[16,-1],[-1,-7]],[[8537,5745],[-37,-4]],[[8500,5741],[-449,-49]],[[8051,5692],[-1,9],[-72,25],[36,201],[30,139],[22,218]],[[8502,6718],[48,234],[207,-40],[31,151]],[[8788,7063],[16,-6],[61,-15],[10,38],[35,23],[36,19],[30,13],[39,8],[1,3],[42,-10],[41,-11],[63,-20],[65,-20],[-18,-62],[-15,-55],[-4,-9],[-26,-100],[-33,-135],[-12,-54],[-9,-53],[-12,-109],[-8,-64],[-5,-40],[-3,-42]],[[9082,6362],[-27,-7],[-19,-1],[-13,1],[-11,4],[-90,43],[-26,7],[-33,0],[46,227],[-81,17],[-120,23],[-105,22],[-101,20]],[[6739,4693],[43,-275],[-2,-38],[-5,-46],[-10,-34],[-9,-24]],[[6756,4276],[-7,-15],[-108,-149]],[[6641,4112],[-64,84],[-128,171],[-82,111]],[[6367,4478],[129,160],[-79,148],[-17,148],[-43,192],[43,5],[-2,90]],[[6398,5221],[69,13],[1,-12],[76,15],[1,-6],[100,21]],[[6645,5252],[-2,-23],[-16,-127],[-7,-52],[-4,-45],[1,-42],[10,-56],[74,-31],[12,1]],[[6713,4877],[26,-184]],[[5771,8273],[-6,-50],[-9,-57],[-83,-183],[13,-12],[4,-7],[9,-3],[17,11],[6,-11],[17,-22],[2,-13],[9,-10],[-14,-71],[-30,-84]],[[5706,7761],[-19,12],[-45,13]],[[5642,7786],[-49,19]],[[5593,7805],[-83,31]],[[5510,7836],[9,27],[12,45]],[[5531,7908],[8,39],[18,70],[16,54],[-53,35],[-108,-30]],[[5412,8076],[-14,8],[-40,17],[-16,9],[-10,9],[-24,45],[-19,25],[-10,17]],[[5279,8206],[24,73],[23,72]],[[5326,8351],[14,-9],[68,166]],[[5408,8508],[11,29],[45,143],[12,35],[4,182]],[[5480,8897],[107,2]],[[5794,8431],[-6,-36],[-6,-31],[-11,-91]],[[8285,3891],[-33,-26],[-160,-27],[-136,132],[-30,19],[15,178]],[[7941,4167],[22,307],[10,112]],[[7973,4586],[12,-5],[145,-40],[13,174],[-5,4],[-41,11],[0,14],[6,-2],[7,43]],[[8110,4785],[193,-53]],[[8303,4732],[0,-162]],[[1033,4607],[-11,-10],[-23,6],[-10,-1],[-19,2],[-22,5],[-2,-6],[-64,-38],[11,-10],[-5,-6],[-6,-18],[14,-2],[-2,-64],[-1,-10],[18,0],[15,-2],[20,-5],[19,-9],[80,-42],[5,14],[14,33],[3,8],[20,49],[-6,10],[26,-3],[27,-7],[27,-10],[41,-24],[27,-18]],[[1229,4449],[23,-18],[28,-28],[22,-32],[14,-22],[43,-79],[19,-30]],[[1378,4240],[-17,1],[-13,12],[0,-10],[18,-15],[0,-8],[-5,-12]],[[1361,4208],[-30,-63],[-21,-27],[-29,-18],[-3,0],[-3,59],[-80,-29],[-25,0],[-23,-11],[-33,-19],[-55,43],[-68,49],[-5,-2],[-37,25],[6,2],[-43,31],[-63,44],[-27,39],[-3,-3],[-19,25]],[[800,4353],[-16,24],[-5,77],[-10,20],[-7,19],[1,15],[-22,-3],[-20,-11],[-19,-15]],[[702,4479],[-5,10],[-11,14],[-9,32],[-5,10],[-10,3],[-9,8],[-14,3],[-5,8],[-11,4],[-6,-11],[-14,7],[-9,16],[-1,9],[-5,8],[-9,-1],[-10,5],[-34,12],[-13,1],[-6,-3],[-11,2],[-18,11],[-11,9],[-13,6],[-17,10],[-1,6],[-13,16],[-7,2],[-8,17],[-11,8],[-3,5],[-4,25]],[[399,4731],[12,-17],[4,-2],[16,-16],[21,-15],[37,-21],[5,-10],[30,-3],[21,-6],[21,-11],[16,-2],[9,1],[7,6],[9,-15],[8,-9],[16,-5],[18,113],[42,268],[2,13],[27,42],[10,-7],[8,-15],[19,-18],[12,-16],[12,-14],[12,-17],[2,-6],[-1,-14],[6,-13],[5,-3],[18,-22],[10,-23],[-4,-19],[-3,-34],[3,-9],[17,-9],[20,-17],[11,-17],[8,-9],[16,-32],[22,-25],[12,-11],[10,-15],[7,-14],[14,-7],[12,-13],[21,-11],[6,-6],[18,-10],[10,-9]],[[3694,2312],[2,14],[3,102],[-3,23]],[[3696,2451],[4,24],[5,23],[14,44]],[[3719,2542],[28,88],[9,-2],[20,67]],[[3776,2695],[16,-13],[48,-2]],[[3840,2680],[-7,-68],[32,-6],[36,-6]],[[3901,2600],[29,-5]],[[3930,2595],[-11,-37],[-28,-84],[-47,-122],[-15,-40],[-35,-91]],[[3794,2221],[-33,26],[-16,17],[-31,25],[-12,11],[-8,12]],[[2089,2949],[5,82],[-17,23],[-77,-5],[-37,-1],[-6,42],[3,11]],[[2141,3372],[18,20],[6,28],[34,-5]],[[2199,3415],[78,-6]],[[2277,3409],[-22,-61],[9,-8],[8,-12],[8,-18],[8,-8],[5,1]],[[2293,3303],[-8,-28],[-34,-87]],[[2251,3188],[-33,37],[-17,-52],[-2,-15],[-12,-10],[-13,-17],[6,-17],[-20,-28],[1,-13],[-19,-17],[-6,-13],[-4,-23],[-3,-45]],[[2129,2975],[-9,-10],[-31,-16]],[[1851,4504],[-2,-16],[-15,-54],[-3,-6]],[[1831,4428],[-6,-2],[-9,12],[-2,13],[-1,24],[-5,12],[-31,43],[-33,49],[-27,44],[-32,32]],[[1685,4655],[-14,13],[-24,18],[-2,6],[-31,0],[-1,3],[12,34],[-19,7],[-16,0],[-73,-29],[-3,18],[10,28],[1,11],[-4,9],[-12,10]],[[1509,4783],[17,37],[41,65],[8,-9],[14,4],[-8,25],[-16,41],[-14,32],[5,2],[7,-8],[37,-3],[38,4],[13,0],[16,8],[2,-2],[20,-55],[4,-6],[8,20]],[[1701,4938],[7,-77],[6,-11],[4,1],[7,-11],[3,-16],[-2,-19],[2,-9],[9,-33],[9,-27],[1,-10],[-4,-20],[1,-43],[6,-8],[17,13],[5,-2],[6,-10]],[[1778,4656],[8,-17],[11,-15],[5,-12],[16,-23],[22,-27],[12,-24],[5,-24],[-6,-10]],[[6111,4829],[-121,168]],[[5990,4997],[150,177]],[[6140,5174],[64,-91],[2,-5],[16,-23],[28,10]],[[6250,5065],[1,-3],[27,-138],[-119,-163]],[[6159,4761],[-48,68]],[[2499,2887],[-67,9]],[[2432,2896],[-55,8],[4,57],[-72,18]],[[2309,2979],[-37,9],[-21,2],[-18,0],[-41,-5],[-28,-9],[-11,-12],[-2,-5],[-22,16]],[[2251,3188],[51,-45],[26,-18],[27,-31],[-8,-18],[1,-4],[22,-10],[16,-1],[43,23],[13,5],[23,9],[12,1],[23,-3],[9,-2]],[[2509,3094],[-10,-207]],[[5779,2258],[49,-81],[20,-33]],[[5848,2144],[-41,-68],[-24,-44],[-8,17],[-20,-33],[-42,-27],[20,-53],[4,-16],[6,-32],[-62,-25],[4,-50],[8,-39]],[[5693,1774],[-2,-1],[-86,132],[-53,83]],[[5552,1988],[-45,69],[-2,6]],[[5505,2063],[45,-4],[12,2],[5,17],[3,35],[8,14],[12,9],[33,13],[19,2],[12,-17],[15,-27],[18,-20],[5,7],[15,28],[57,112],[5,14],[10,10]],[[3202,2030],[42,-20],[29,-11],[50,-13],[1,0],[46,-12],[34,-10],[-5,-30],[7,-2],[14,7],[20,5],[21,7]],[[3461,1951],[8,-58]],[[3469,1893],[10,-55],[10,-68]],[[3489,1770],[-30,-10],[-20,0],[-7,3]],[[3432,1763],[-8,2],[-36,28],[-30,22]],[[3358,1815],[-13,11],[-12,3],[-16,1],[-25,-9],[-31,-15]],[[3261,1806],[-8,-11],[-12,-25],[-5,-13]],[[3236,1757],[-6,-14],[-12,-17],[-11,-12],[-25,25],[3,6],[20,27],[-30,82],[-17,20],[-29,10],[-3,32],[-3,5]],[[3123,1921],[79,109]],[[3012,4663],[-15,-33],[-25,-24]],[[2972,4606],[-16,-13],[-15,-6],[-41,-9],[-17,0],[-15,2],[-18,7],[-23,13],[-25,6]],[[2802,4606],[2,31],[-5,0],[5,65],[5,-9],[19,-2],[8,3],[2,28],[-4,19],[17,13],[0,7],[10,6],[29,15],[16,5],[-2,35],[-2,34],[-5,43],[-1,16]],[[2896,4915],[20,-3],[13,-4],[23,-11],[11,0],[14,7],[53,3],[54,-14],[-6,-37],[0,-7]],[[3078,4849],[-15,1],[0,-24],[-3,-35],[3,0],[-1,-36],[15,-8],[7,-11]],[[3084,4736],[2,-22],[-1,-31],[-59,13],[-14,-33]],[[6708,2044],[-59,22],[3,15],[-43,15],[-5,-1],[-49,18],[-5,-24],[-37,14]],[[6513,2103],[-42,14],[-20,8],[-42,15],[-35,12],[-22,-47],[10,-9],[9,-11],[-17,-37],[18,-21],[48,-32],[-18,-34],[-63,73],[-60,69]],[[6279,2103],[-17,21],[-21,36]],[[6241,2160],[13,31],[31,88]],[[6285,2279],[73,-35],[8,11],[11,38]],[[6377,2293],[123,-56],[132,-61]],[[6632,2176],[11,-6],[13,-9],[54,-53],[13,-2]],[[6723,2106],[-15,-62]],[[6463,5781],[-85,66],[-12,-29],[-15,-23],[-16,-17],[-8,-6],[8,-24],[-67,-34]],[[6268,5714],[0,6],[-30,97],[-24,48],[-35,54]],[[6179,5919],[126,132],[34,-53],[51,53]],[[6390,6051],[74,-107],[45,-54]],[[6509,5890],[4,-5]],[[6513,5885],[-28,-73],[-6,-8]],[[6479,5804],[-16,-23]],[[7036,4464],[-23,25],[-7,15]],[[7006,4504],[51,219],[35,138]],[[7092,4861],[109,-77]],[[7201,4784],[40,-29]],[[7241,4755],[-83,-292]],[[7158,4463],[-4,-15],[-33,-4],[-33,1],[-43,10],[-9,9]],[[7670,6029],[-12,-26],[-8,-9],[-21,-12]],[[7629,5982],[-42,32],[-2,17],[-5,-1],[-4,46],[4,10]],[[7580,6086],[90,-57]],[[4971,6082],[17,65]],[[4988,6147],[63,-113]],[[5051,6034],[-37,-33]],[[5014,6001],[-43,81]],[[3597,4535],[-11,-62]],[[3586,4473],[-27,7],[-11,-62],[-26,7]],[[3522,4425],[21,125]],[[3543,4550],[54,-15]],[[3955,4307],[14,55],[17,-4],[80,-30],[12,-4]],[[4078,4324],[-3,-31]],[[4075,4293],[-85,10]],[[3990,4303],[-35,4]],[[4558,3527],[-47,83],[18,19],[-12,17]],[[4517,3646],[12,29]],[[4529,3675],[19,-28],[39,-63]],[[4587,3584],[-29,-57]],[[5161,2587],[29,-10],[-16,-40],[2,-6],[-29,-60]],[[5147,2471],[-11,20]],[[5136,2491],[-11,19],[-10,23]],[[5115,2533],[5,32],[14,15],[3,11],[24,-4]],[[3500,4305],[-79,24]],[[3421,4329],[11,62]],[[3432,4391],[79,-25]],[[3511,4366],[-11,-61]],[[4896,4854],[-6,0],[-10,20],[-21,33],[-46,-73]],[[4813,4834],[-18,26]],[[4795,4860],[50,69],[20,3]],[[4865,4932],[43,9]],[[4908,4941],[-12,-87]],[[4938,4800],[9,33]],[[4947,4833],[2,11],[13,1]],[[4962,4845],[66,5]],[[5018,4777],[-20,-3],[-19,9]],[[4979,4783],[-41,17]],[[6946,6690],[-17,-44],[36,-24],[-4,-11]],[[6961,6611],[-11,-27],[-33,23],[-8,2],[-35,19]],[[6874,6628],[20,49],[13,-8],[13,37]],[[6920,6706],[26,-16]],[[5189,4871],[14,31],[16,43]],[[5219,4945],[24,-24]],[[5243,4921],[26,-26],[2,-16]],[[5271,4879],[-70,-67]],[[5201,4812],[-5,9],[22,28],[-29,22]],[[4973,2700],[16,10],[8,16],[33,-36]],[[5030,2690],[25,-31]],[[5055,2659],[-28,-31],[-34,-18]],[[4993,2610],[-20,90]],[[3701,4246],[-5,-39],[-2,-29]],[[3694,4178],[-63,5]],[[3631,4183],[3,47],[-7,10],[1,28]],[[3628,4268],[49,-15]],[[3677,4253],[24,-7]],[[4384,2700],[-19,-38],[-21,18],[-21,-44]],[[4323,2636],[-22,19]],[[4301,2655],[23,43],[32,65]],[[4356,2763],[42,-36]],[[4398,2727],[-14,-27]],[[5190,2711],[-30,9]],[[5160,2720],[-91,28]],[[5069,2748],[6,30],[9,9]],[[5084,2787],[34,-12]],[[5118,2775],[51,-17]],[[5169,2758],[31,-11]],[[5200,2747],[-10,-36]],[[3236,1659],[0,98]],[[3261,1806],[12,-74],[8,2]],[[3281,1734],[0,-16]],[[3281,1718],[0,-46]],[[3281,1672],[0,-14]],[[3281,1658],[-45,1]],[[4633,5827],[-7,60],[15,3],[8,-3],[38,84]],[[4687,5971],[14,-9],[22,-33]],[[4723,5929],[-17,-19]],[[4706,5910],[-73,-83]],[[3920,3079],[66,-29],[13,-49]],[[3999,3001],[-60,-31]],[[3939,2970],[-19,109]],[[5751,4985],[45,52]],[[5796,5037],[44,-63]],[[5840,4974],[-44,-50]],[[5796,4924],[-45,61]],[[5189,5868],[-16,-15]],[[5173,5853],[-47,82]],[[5126,5935],[40,37],[47,-81]],[[5213,5891],[-24,-23]],[[3702,4072],[7,-37]],[[3709,4035],[-38,-14],[-24,-5],[-28,1]],[[3619,4017],[2,24]],[[3621,4041],[1,22]],[[3622,4063],[41,3],[-4,31],[39,2]],[[3698,4099],[4,-27]],[[3152,5147],[6,-36]],[[3158,5111],[13,-107]],[[3171,5004],[-9,-2],[-14,1],[-12,5]],[[3108,5136],[44,11]],[[5408,8508],[-92,42]],[[5316,8550],[9,45],[-4,16],[-16,11],[-39,35],[-26,18],[-5,9],[13,37],[-23,15],[-47,24],[-19,18],[-12,14],[-8,2],[-27,28],[-1,11],[-18,22],[-19,31],[-30,42],[-37,53],[-4,9]],[[5003,8990],[11,-3],[16,-1],[32,-10],[12,-6],[45,-14],[17,-1],[14,13],[15,9],[-7,9],[-21,19],[-19,13],[-12,7],[2,14],[5,18],[7,13],[11,13],[-15,19],[-23,39],[-8,10],[15,49],[1,29],[3,12]],[[5104,9241],[28,3],[8,8],[19,58],[2,24],[8,7],[8,28],[35,68],[20,20],[21,17],[2,7],[20,-11],[24,-15],[32,-23],[-13,-25],[6,-6],[34,-21],[-33,-97],[31,-23],[31,-24],[17,-10],[78,-37],[0,-207],[-2,-85]],[[4645,526],[-12,2],[-11,-1],[-26,5],[-44,10],[-60,10],[-37,9],[-15,7],[-9,12],[-55,45]],[[4376,625],[33,175],[17,80],[65,257],[43,152],[-78,37],[-22,10],[-36,19],[-39,24],[-27,22]],[[4332,1401],[-12,11],[11,43],[-1,10]],[[4330,1465],[12,-5],[11,35],[100,-44],[64,-35],[30,-8],[43,-19],[17,-11],[27,-19],[13,-8],[41,-17],[31,-20],[29,-31],[23,-26],[20,-21],[-2,-6]],[[4789,1230],[-6,-26],[-5,-29],[26,-9],[-27,-90],[-20,-66],[17,-3],[-32,-106],[-8,-29],[-5,-3],[-13,-42],[-8,-25],[-8,-37],[-3,0],[-22,-104],[-7,2],[-23,-137]],[[6362,5508],[-9,36],[-48,128],[-34,8]],[[6271,5680],[-3,34]],[[6463,5781],[152,-122]],[[6615,5659],[0,-83]],[[6615,5576],[-60,45],[-4,-10],[-52,-19],[-3,-2],[-26,-9],[-38,-29],[-10,-9],[-16,-17],[-9,-7],[-35,-11]],[[2405,2070],[45,-48],[11,-15],[17,-34],[11,-103]],[[2489,1870],[-7,-86]],[[2482,1784],[-5,-51],[-37,-102]],[[2440,1631],[-93,60]],[[2347,1691],[-13,8],[-80,93]],[[2254,1792],[22,25],[29,37]],[[2305,1854],[4,9],[96,207]],[[4388,3020],[23,8],[23,10],[47,24]],[[4481,3062],[4,1]],[[4485,3063],[8,-24]],[[4493,3039],[-6,-7],[-52,-108]],[[4435,2924],[-79,-161]],[[4301,2655],[-27,-53]],[[4274,2602],[-57,29],[-6,38]],[[4211,2669],[-7,42],[-13,63]],[[4191,2774],[100,42],[-15,64],[-36,113]],[[4240,2993],[3,1]],[[4243,2994],[15,6],[12,-1],[34,7],[25,4]],[[4329,3010],[17,4],[2,-2],[40,8]],[[4443,4282],[-45,64]],[[4398,4346],[-4,8],[-6,22],[-1,18],[-6,35],[4,33]],[[4385,4462],[0,6],[12,101]],[[4397,4569],[17,140]],[[4414,4709],[44,-11]],[[4458,4698],[22,-6],[13,-5],[20,-4],[38,34]],[[4551,4717],[18,-34]],[[4569,4683],[-22,-23],[-20,-110],[-4,0],[-30,-191],[4,-12],[24,-35]],[[4521,4312],[46,-68],[-54,-64]],[[4513,4180],[-58,84]],[[4455,4264],[-12,18]],[[4516,6652],[43,6],[30,6],[1,-22],[-5,-31],[-8,-41]],[[4577,6570],[-1,-5],[-10,-8],[-18,8],[-16,-32],[-7,-58],[1,-8]],[[4526,6467],[4,-27],[-6,-4]],[[4524,6436],[-44,8],[-17,-9],[-15,0],[2,-30],[-69,0],[-4,6],[-44,1],[-17,3],[-16,-17]],[[4300,6398],[-9,10],[-11,3],[-52,1],[-22,8],[-1,31],[6,3],[26,80],[4,-1],[13,36]],[[4254,6569],[3,-1],[10,31],[11,-4]],[[4278,6595],[-10,-32],[24,-9],[-11,-41],[0,-30],[30,-2],[11,38],[25,0],[4,2],[16,1],[6,-16],[4,-4],[5,24],[-3,35],[0,31],[-5,40],[-1,6]],[[4373,6638],[27,5],[116,9]],[[8660,4724],[9,0]],[[8669,4724],[69,-48],[53,-48],[61,-57]],[[8852,4571],[28,-26],[16,-12],[-67,-173]],[[8829,4360],[-114,52],[-74,5],[1,38],[-8,6]],[[8634,4461],[26,263]],[[3579,4282],[49,-14]],[[3631,4183],[-9,-120]],[[3621,4041],[-59,9]],[[3562,4050],[-54,9],[-31,8]],[[3477,4067],[-31,11],[-19,10],[-25,-70]],[[3402,4018],[-46,45]],[[3356,4063],[13,23],[25,49],[4,15],[5,47]],[[3403,4197],[8,71],[10,61]],[[3500,4305],[53,-15]],[[3553,4290],[26,-8]],[[5784,3216],[-113,64],[-14,-15],[-27,45],[-17,-16]],[[5613,3294],[-51,85]],[[5562,3379],[-8,13],[25,35],[5,-5],[32,50],[-44,50],[-22,22],[-11,0]],[[5539,3544],[53,77]],[[5592,3621],[42,-48],[11,-16],[11,-7]],[[5656,3550],[-12,-18],[30,-34],[78,-86],[-1,-13],[3,-18],[15,-25],[6,-6],[34,-19],[30,-13],[54,-20]],[[5893,3298],[-55,-112],[-4,3]],[[5834,3189],[-50,27]],[[1043,4674],[-32,44],[20,30],[12,23],[1,13],[5,27],[-2,13],[11,44],[1,17],[13,59],[7,14],[6,3],[17,-6],[15,-10],[-1,-12],[13,-6],[18,0],[10,-13],[6,-2],[14,1],[16,-11]],[[1193,4902],[8,-6],[8,2],[16,-17],[13,-10],[6,-9],[1,-15],[3,-119],[-4,-17],[-7,-10],[-22,-50]],[[1215,4651],[-10,-24],[-8,-4]],[[1197,4623],[-78,45],[-47,27],[-14,-7],[-15,-14]],[[2791,1647],[-3,12],[-6,50],[-112,28]],[[2670,1737],[13,59],[-9,6],[35,21],[63,23],[-7,34],[-2,85]],[[2763,1965],[2,74],[2,40],[1,54],[1,13],[5,24],[6,-2]],[[2780,2168],[9,-4]],[[2789,2164],[4,-1],[57,-11]],[[2850,2152],[35,-7],[-23,-40],[-16,-36],[-10,-26],[-13,-43],[-18,-61],[117,-62]],[[2922,1877],[5,-6],[-31,-46],[-34,-53],[-39,-67],[-32,-58]],[[7588,5066],[105,-45],[32,142]],[[7725,5163],[35,-13],[12,-6],[71,-26],[72,-26]],[[7915,5092],[-13,-52],[-14,-12],[-19,-80],[53,-24],[1,-1],[-18,-83]],[[7905,4840],[-49,13]],[[7856,4853],[2,16],[-18,27],[-48,31],[-54,24],[-32,13],[-18,6],[-15,2],[-29,3]],[[7644,4975],[-76,6]],[[7568,4981],[20,85]],[[2775,981],[6,9],[2,9],[0,52],[5,16],[9,20],[14,61],[-30,11],[-3,4]],[[2778,1163],[7,32],[20,64],[29,78]],[[2834,1337],[12,-17],[8,-8],[10,-6],[1,-4],[11,-10],[6,3],[24,-2],[4,16],[10,1],[5,6]],[[2925,1316],[7,2],[28,18]],[[2960,1336],[10,-77],[-36,1],[1,-121]],[[2935,1139],[4,-191]],[[2939,948],[-98,16],[-15,1],[-51,16]],[[3202,2030],[-46,13],[-24,8],[-13,7],[-29,18]],[[3090,2076],[104,107]],[[3194,2183],[7,-10],[14,-1],[-6,-15],[45,-53],[62,93],[15,-10],[104,-57]],[[3435,2130],[9,-60],[17,-119]],[[6409,2434],[38,6],[40,1],[92,-15],[38,14]],[[6617,2440],[-21,-189],[40,-11],[-4,-64]],[[6377,2293],[-74,37]],[[6303,2330],[3,13]],[[6306,2343],[28,-13],[28,102],[31,2],[2,-7],[14,7]],[[2720,5282],[-12,4],[-24,15],[-17,7],[-16,2],[-2,13],[-13,37],[40,8],[42,44],[6,4],[28,9],[14,1],[-4,8],[-33,51],[-7,6],[-29,3],[-28,-15],[-36,55],[-27,17],[-14,29],[14,6],[27,18],[0,5],[11,5],[22,5],[39,30]],[[2701,5649],[28,-5],[17,-20],[8,-31],[7,-19],[17,-28],[14,-26],[9,-15],[22,-22],[38,-47],[9,19],[-9,8],[7,11],[34,-35],[27,-19]],[[2929,5420],[-9,-19],[-71,1],[-31,-60],[-26,-31],[-15,-15],[-25,-10],[-23,-6],[-9,2]],[[5127,5037],[20,84]],[[5147,5121],[6,28]],[[5153,5149],[40,-14]],[[5193,5135],[-15,-55]],[[5178,5080],[-19,-75]],[[5159,5005],[-32,32]],[[5163,3672],[28,0],[25,-9],[-10,-61]],[[5206,3602],[-5,-29]],[[5201,3573],[-49,3]],[[5152,3576],[11,96]],[[5763,4883],[-90,1]],[[5673,4884],[-33,0],[0,42]],[[5640,4926],[59,0],[20,22]],[[5719,4948],[44,-65]],[[5211,5378],[-10,5],[-6,25],[-3,26],[-100,171]],[[5092,5605],[16,15]],[[5108,5620],[30,-50],[42,-77]],[[5180,5493],[0,-2],[28,-48],[7,-59],[-4,-6]],[[5596,6963],[-14,13],[-52,49],[-12,6]],[[5518,7031],[12,38]],[[5530,7069],[21,-11],[-2,-7],[10,-10],[4,12],[27,-14],[-6,-21],[9,-5],[13,45]],[[5606,7058],[16,-8],[-26,-87]],[[5588,2781],[4,4],[8,74],[25,-7],[14,-11],[42,-51]],[[5681,2790],[-4,-16]],[[5677,2774],[-89,7]],[[5538,5414],[60,-88],[-23,-25],[-31,49],[-24,-24]],[[5520,5326],[-25,42]],[[5495,5368],[23,24]],[[5518,5392],[20,22]],[[5067,5098],[10,48]],[[5077,5146],[70,-25]],[[5127,5037],[-21,22]],[[5106,5059],[-39,39]],[[4634,5148],[0,-65],[-9,-1]],[[4625,5082],[-33,4],[-58,29]],[[4534,5115],[5,19]],[[6529,6423],[-21,-41],[-3,-1],[-23,-45],[-34,32],[-15,2]],[[6433,6370],[6,17],[18,32],[12,-10],[3,26]],[[6472,6435],[57,-12]],[[4865,4932],[-6,35],[-5,16],[35,45]],[[4889,5028],[23,-30]],[[4912,4998],[12,-17],[19,-7]],[[4943,4974],[-4,-25],[-11,-4]],[[4928,4945],[-20,-4]],[[5442,3970],[-16,17],[-40,49]],[[5386,4036],[30,58],[0,4]],[[5416,4098],[14,-15],[34,-47]],[[5464,4036],[-7,-8],[-14,-52],[-1,-6]],[[2908,3931],[21,-2],[1,18],[2,32],[16,-2],[5,-6],[14,-1]],[[2967,3970],[-1,-42],[36,-3],[2,-20]],[[3004,3905],[-19,-6],[-62,-13],[-10,7],[-6,36],[1,2]],[[3469,4744],[9,56]],[[3478,4800],[34,-2]],[[3512,4798],[-10,-53],[47,9]],[[3549,4754],[1,-38]],[[3550,4716],[-46,-4]],[[3504,4712],[-38,-14]],[[3466,4698],[3,46]],[[3478,4800],[-47,5],[-25,6]],[[3406,4811],[12,69]],[[3418,4880],[71,-20]],[[3489,4860],[-11,-60]],[[4360,3725],[-34,9],[-6,8],[0,9],[-15,1],[-26,35]],[[4279,3787],[13,43],[13,27],[16,13]],[[4321,3870],[9,-20],[-24,-41],[20,-29],[6,2],[29,-20]],[[4361,3762],[-2,-11],[1,-26]],[[4153,753],[-5,1],[-77,35],[-47,22],[-78,29],[-79,31],[-50,21],[-32,14]],[[3785,906],[24,102],[36,178],[32,143],[46,207],[35,155],[23,71]],[[3981,1762],[15,-16],[30,-21],[11,-6],[33,-12],[48,-17],[71,-23],[15,-2]],[[4204,1665],[3,-8]],[[4207,1657],[-15,-47],[18,-16],[-13,-48],[51,-21]],[[4248,1525],[-18,-51],[-6,4],[-11,-23],[11,-8],[-15,-32],[-7,-22]],[[4202,1393],[-28,11],[-20,-80],[-24,14]],[[4130,1338],[9,35],[-50,20],[-24,-102],[-5,-15],[-16,-31],[35,-34]],[[4079,1211],[-17,-76],[125,-50]],[[4187,1085],[-48,-154],[19,-6]],[[4158,925],[-23,-104],[18,-68]],[[2592,3951],[-1,-14],[-33,5]],[[2558,3942],[-60,9]],[[2498,3951],[-8,20],[-13,22],[-5,15],[-16,79],[-24,-8]],[[2432,4079],[-2,75],[-3,39],[-8,31],[-3,15],[-2,22],[2,21],[-30,7],[-2,14],[-95,-39]],[[2289,4264],[-16,-4],[-17,0],[-23,9],[-10,12],[-4,8],[-5,21],[-4,6],[-23,21],[0,19],[8,15],[7,20],[-1,5],[-17,14],[-2,5]],[[2182,4415],[2,7],[12,13],[12,6],[7,8],[8,20],[12,17],[8,5],[27,16],[3,14],[-20,48],[2,9],[30,56],[36,70],[30,-5],[4,4],[4,42]],[[2359,4745],[12,-2],[24,4],[17,-2],[13,-4]],[[2425,4741],[0,-10],[7,-3],[8,3],[5,11],[19,-4],[42,0],[15,-4],[14,-7],[26,-21],[22,-9],[31,-5],[3,-3]],[[2617,4689],[-1,-43],[1,-11],[5,-13],[9,-8],[-8,-98],[-1,-27],[8,-109],[-12,-15],[-22,-20],[35,-10],[33,-8],[22,-4],[25,-1]],[[4455,6819],[-24,-1],[-14,1],[-19,11],[-58,4],[-7,-2]],[[4333,6832],[-5,5],[-13,1],[-55,18],[0,30],[-3,11],[-5,11],[-28,8],[-69,25],[-21,6]],[[4134,6947],[-11,9],[-2,12],[6,18],[-5,9],[-32,21],[-10,9],[-12,25],[-19,21],[-2,10],[-12,29],[0,14],[-9,34],[-15,30],[-2,15],[-7,14],[-8,8],[-3,19],[-7,23],[-9,17],[-15,8],[-12,-1],[-12,5],[-4,4],[-11,20],[-6,29],[11,22],[11,18],[33,32],[5,2],[14,28],[12,32],[15,15],[21,34],[1,17]],[[4038,7549],[26,-21],[29,-8],[4,-20],[0,-19],[-2,-28],[64,-1],[12,0],[23,11],[20,6],[19,12],[13,-10],[13,-2],[7,-4],[8,-16],[5,-14],[-1,-16],[12,-21],[8,-9],[10,-8],[17,-7],[45,-26],[15,-12]],[[4385,7336],[53,-313],[10,-62],[19,-4],[29,-3],[4,-23],[22,2],[12,2],[20,-24],[20,2],[11,-42]],[[4585,6871],[-39,-25],[-9,-7],[-9,-3],[-23,0],[-24,-7],[-16,-10],[-10,0]],[[5796,5037],[-39,56]],[[5757,5093],[-39,57]],[[5718,5150],[-38,54],[-25,-25],[11,-16],[-24,-29],[28,-39]],[[5670,5095],[-28,-33]],[[5642,5062],[-42,63]],[[5600,5125],[28,29],[-39,60]],[[5589,5214],[146,152]],[[5735,5366],[155,-226]],[[5890,5140],[39,-57]],[[5929,5083],[-89,-109]],[[7327,4696],[69,-47],[18,62]],[[7414,4711],[27,0],[1,5],[77,-20],[-9,-30],[28,-7]],[[7538,4659],[-8,-10],[-9,-15],[-5,-19],[-8,-34],[-71,18],[-7,-54],[-35,10],[-23,8],[-20,-85]],[[7352,4478],[-21,14],[-22,8],[-41,3],[-110,-40]],[[7241,4755],[15,-10]],[[7256,4745],[71,-49]],[[4537,5742],[-2,-21],[-4,-51],[0,-28],[1,-15],[6,-32]],[[4538,5595],[6,-28],[17,-61]],[[4561,5506],[-19,-6],[-7,-8],[-6,-63],[5,-21],[8,-43]],[[4542,5365],[10,-57],[-5,-41]],[[4547,5267],[-31,-20]],[[4516,5247],[-9,76],[12,4],[-3,18],[-12,-4],[-10,76],[-20,9],[-3,-12],[-20,-15]],[[4451,5399],[-18,-9],[-9,42]],[[4424,5432],[14,18],[-2,23],[-31,-2],[-2,57],[-20,-1],[-1,18],[-21,-1],[-12,33]],[[4349,5577],[5,1]],[[4354,5578],[8,-11],[14,14],[12,19],[12,38],[2,11],[12,86]],[[4414,5735],[6,38],[3,1]],[[4423,5774],[11,1],[109,7]],[[4543,5782],[-6,-40]],[[8911,4780],[-59,-209]],[[8669,4724],[34,16],[27,14],[9,16],[0,5],[21,100]],[[8760,4875],[20,104]],[[8780,4979],[141,-9]],[[7041,7912],[-15,-54]],[[7026,7858],[-87,-36],[-15,1],[-40,-17],[-5,-65],[-6,-67]],[[6873,7674],[-7,1],[-21,-1],[-10,-2],[-9,-91],[-9,-82]],[[6817,7499],[-48,7],[-47,-9]],[[6722,7497],[-1,10],[-11,53],[-5,13],[-4,19]],[[6701,7592],[-22,106],[-18,-8],[-4,29]],[[6657,7719],[-5,27]],[[3505,1667],[-16,103]],[[3469,1893],[5,-3],[55,14],[9,21]],[[3538,1925],[25,-2],[31,-7]],[[3594,1916],[31,-12],[46,-17],[27,-13]],[[3698,1874],[24,-14],[16,-10],[21,-19]],[[3759,1831],[-14,-24],[-24,-67],[-18,-55]],[[3703,1685],[-107,-10]],[[3596,1675],[-91,-8]],[[4521,4312],[70,83],[4,10],[14,14],[47,-9],[14,-8]],[[4670,4402],[3,-11],[16,-49]],[[4689,4342],[18,-70],[19,-48],[-39,-149],[-12,-65]],[[4675,4010],[-22,-24],[0,8]],[[4653,3994],[1,8],[-23,35],[-13,17],[-13,12],[-1,8],[-57,57],[-6,8]],[[4541,4139],[-28,41]],[[9010,4259],[-253,21],[2,32],[-84,8],[-1,-16],[-121,2],[-42,-1],[-3,2]],[[8508,4307],[17,251]],[[8525,4558],[3,51],[42,-2],[-10,-142],[74,-4]],[[8829,4360],[123,-57]],[[8952,4303],[62,-33]],[[9014,4270],[-4,-11]],[[2309,2979],[-5,-64],[-31,4],[1,-16],[4,-60],[-2,-16],[-14,-11],[-27,-15],[8,-24],[8,-8],[9,-17],[-34,-20],[-41,-13],[6,-36]],[[2191,2683],[-39,50],[-55,-2],[-11,-4],[5,13],[-4,16],[-11,-9],[-12,44],[-8,47],[-3,18],[37,18],[-20,66],[19,9]],[[6018,5287],[-128,-147]],[[5735,5366],[109,114],[12,-20],[5,-10],[19,12],[12,4],[13,-15]],[[5905,5451],[41,-59]],[[5946,5392],[72,-105]],[[5552,1988],[-92,-70],[64,-100],[46,-70]],[[5570,1748],[4,-8],[-12,-10],[-28,-8],[-21,-2],[-22,1],[-19,5],[-16,7],[-21,19],[-8,0],[-23,102],[-32,-17],[-13,-12]],[[5359,1825],[-47,63],[-6,20]],[[5306,1908],[-11,49],[29,11],[3,-24],[7,-27],[13,-19],[16,-14],[17,-7],[15,-1],[4,2],[-42,196],[-7,23]],[[5350,2097],[16,0],[24,-6],[28,-9],[9,1],[33,-8],[31,-15],[14,3]],[[4434,5805],[22,64],[62,141]],[[4518,6010],[7,19],[6,21],[11,89]],[[4542,6139],[4,51],[0,51]],[[4546,6241],[5,50]],[[4551,6291],[38,-11],[-16,-46],[-1,-20],[5,-3],[10,4],[34,3],[11,-1],[26,-7],[18,-9],[11,-8]],[[4687,6193],[-24,-47],[-17,-43]],[[4646,6103],[-34,-87]],[[4612,6016],[-22,-62],[-15,-47],[-16,-58],[-9,-35],[-7,-32]],[[4423,5774],[11,31]],[[5532,2623],[65,63],[42,40],[16,18],[29,29]],[[5684,2773],[3,-26],[9,-48],[11,-30],[16,-39],[24,-47]],[[5747,2583],[19,-41],[23,-41],[11,-25]],[[5800,2476],[39,-74]],[[5839,2402],[-16,-3],[-26,-1],[-25,3],[-24,7],[-29,15],[-20,-30]],[[5699,2393],[-47,70],[-77,102],[-43,58]],[[5337,7258],[-32,132]],[[5305,7390],[1,1],[29,73],[8,15]],[[5343,7479],[65,62],[34,36]],[[5442,7577],[51,-84],[-10,-50],[-16,-70],[-29,-139]],[[5438,7234],[-10,-14],[-4,-12],[-12,-51]],[[5412,7157],[-27,-109]],[[5385,7048],[-26,113]],[[5359,7161],[-22,97]],[[5018,4777],[-12,-82]],[[5006,4695],[-58,-28],[10,63],[21,53]],[[5578,5003],[26,-41],[0,-36]],[[5604,4926],[-63,0]],[[5541,4926],[0,36],[-9,41]],[[5532,5003],[36,16]],[[5568,5019],[10,-16]],[[4895,6400],[46,-91]],[[4941,6309],[-23,-19]],[[4918,6290],[-33,-27],[-4,0]],[[4881,6263],[-1,125]],[[4880,6388],[15,12]],[[5237,3499],[-51,5],[-40,7]],[[5146,3511],[6,65]],[[5201,3573],[-8,-34],[50,-5]],[[5243,3534],[-6,-35]],[[4564,2781],[24,-3],[3,43],[51,-6]],[[4642,2815],[-7,-79]],[[4635,2736],[-25,4]],[[4610,2740],[-48,7]],[[4562,2747],[2,34]],[[3755,5443],[24,41],[56,-39],[37,-29]],[[3872,5416],[-5,-22]],[[3867,5394],[-18,4],[-47,13]],[[3802,5411],[-47,32]],[[4684,6078],[-21,-49],[1,-4],[19,-13],[-13,-31]],[[4670,5981],[-30,19],[-28,16]],[[4646,6103],[38,-25]],[[5382,4548],[56,30],[9,-17],[11,-64]],[[5458,4497],[-54,-16]],[[5404,4481],[-8,25]],[[5396,4506],[-14,42]],[[5159,5005],[7,5],[62,12]],[[5228,5022],[5,-56],[34,5]],[[5267,4971],[4,-30],[-28,-20]],[[5219,4945],[-27,27]],[[5192,4972],[-33,33]],[[4477,2592],[9,48],[42,-13]],[[4528,2627],[45,-13]],[[4573,2614],[-6,-54]],[[4567,2560],[-23,8]],[[4544,2568],[-67,24]],[[5670,5095],[48,55]],[[5757,5093],[-47,-53]],[[5710,5040],[-40,55]],[[5703,3595],[-41,51],[46,61]],[[5708,3707],[40,-49],[-45,-63]],[[4587,3584],[17,42]],[[4604,3626],[16,-25]],[[4620,3601],[15,-25],[-20,-22],[11,-17],[-47,-45]],[[4579,3492],[-21,35]],[[4774,5303],[21,-17],[-16,-28],[12,-5],[-5,-8],[42,-55]],[[4828,5190],[-13,-22]],[[4815,5168],[-38,49],[-35,-47],[2,27],[-1,6],[5,57]],[[4748,5260],[16,10],[2,17],[8,16]],[[5434,5390],[-10,-10],[-6,0],[-27,-27]],[[5391,5353],[-44,72],[40,41]],[[5387,5466],[24,-40]],[[5411,5426],[23,-36]],[[4413,4225],[18,-74],[-66,-25]],[[4365,4126],[-5,25],[9,3],[-7,57]],[[4362,4211],[14,1],[37,13]],[[4886,5115],[46,-65],[15,-18]],[[4947,5032],[-35,-34]],[[4889,5028],[-12,15]],[[4877,5043],[-21,28]],[[4856,5071],[30,44]],[[5543,5111],[38,41],[-20,32]],[[5561,5184],[28,30]],[[5600,5125],[-40,-41]],[[5560,5084],[-17,27]],[[5617,7701],[-21,9],[-20,7],[-17,27]],[[5559,7744],[2,7],[11,-4],[8,4],[13,54]],[[5642,7786],[-25,-85]],[[4017,4026],[-7,73]],[[4010,4099],[67,0]],[[4077,4099],[1,-72]],[[4078,4027],[-61,-1]],[[5751,4985],[-41,55]],[[4129,4360],[-9,4]],[[4120,4364],[2,47],[-1,30]],[[4121,4441],[21,-2],[0,-5],[37,-17]],[[4179,4417],[1,-41],[-2,-25],[-3,-9]],[[4175,4342],[-46,18]],[[4104,3055],[-25,-13]],[[4079,3042],[-29,72]],[[4050,3114],[48,32]],[[4098,3146],[31,-77]],[[4129,3069],[-25,-14]],[[7611,7968],[-3,18],[-6,15],[3,10],[4,36],[-1,40],[-8,4],[6,35],[-14,7],[-5,26],[-4,42],[-11,55],[-1,29],[-10,97],[-3,51],[1,30],[3,37],[8,59],[-5,17],[50,-14],[15,-3],[20,-1],[87,-9],[71,-9],[64,-3],[47,-4],[32,-8],[-8,-29],[61,-29],[54,-28],[40,-19]],[[8098,8420],[-1,-3],[3,-25],[-11,-10],[-4,-7],[2,-10],[-60,-25],[-21,-39],[-267,-381],[-63,21],[-65,27]],[[6067,5343],[26,32],[33,-48],[23,26],[5,3],[23,6],[-3,60]],[[6174,5422],[49,233],[48,25]],[[6362,5508],[22,-85],[2,-15],[9,-96],[3,-91]],[[6367,4478],[-102,138],[-71,97]],[[6194,4713],[-35,48]],[[6250,5065],[-36,110],[-17,96],[-24,-8],[-5,26],[-37,-40],[-23,-28]],[[6108,5221],[-65,94]],[[6043,5315],[24,28]],[[5847,6221],[-13,-28],[-26,-52],[-12,-20],[-18,-21],[-27,-28],[-21,-17],[-27,-14],[-41,-14],[-31,-3],[-29,2],[-14,-3],[-10,-13],[-4,-18],[4,-22],[10,-29],[11,-20],[-133,-137]],[[5466,5784],[-69,115],[-16,28]],[[5381,5927],[-46,81]],[[5335,6008],[-28,49],[-47,88]],[[5260,6145],[18,18],[53,44],[13,11],[14,15],[15,22],[17,28],[22,44],[10,25],[10,27],[6,28],[12,53]],[[5450,6460],[79,-23],[-11,-66],[77,-17],[2,8],[6,33],[2,22],[5,22],[34,-12]],[[5644,6427],[57,-22],[67,-32]],[[5768,6373],[108,-89],[-29,-63]],[[5836,1032],[113,-52],[48,-19],[31,-2],[66,2],[86,6],[79,4],[88,7],[3,-3]],[[6350,975],[-3,-103],[-4,-83],[-2,-59],[1,-56],[0,-2]],[[6342,672],[-3,-4],[-24,0],[-15,-3],[-21,1],[-11,-6],[-9,3],[-8,-5],[-19,-1],[-9,5],[-3,16],[4,23],[-6,7],[-12,6],[-15,4],[-36,3],[-17,-4],[-74,-7],[-36,0],[-36,7],[-24,7],[-32,14],[-14,8],[-16,17],[-24,32],[-27,27],[-10,5],[-29,13],[-33,16],[-32,6],[-11,0],[-22,-8],[-9,3],[-19,-2],[-22,0],[-15,3],[-36,13],[-51,16],[-31,11],[-34,8],[-13,6]],[[5488,912],[3,11],[10,28],[3,28]],[[5504,979],[5,37],[-6,21],[-3,20],[1,23],[3,23],[1,40],[-3,41]],[[5502,1184],[116,-53],[82,-38]],[[5700,1093],[136,-61]],[[2831,4366],[5,1]],[[2836,4367],[2,-5],[59,-44],[51,-40],[13,-6],[30,-9],[85,-27]],[[3076,4236],[-9,-52],[-7,-36],[-4,-23]],[[3056,4125],[-3,-72]],[[3053,4053],[-1,-28]],[[3052,4025],[-38,4]],[[3014,4029],[-5,1],[-130,12],[-5,9],[-18,3],[-13,3]],[[646,4123],[-14,8],[-5,0],[-19,-4],[-10,5],[-10,9],[-7,10],[-22,11],[-15,13],[-20,27],[-8,6],[-6,21],[-2,14],[10,1],[26,10],[-9,24],[-1,8],[-8,18],[11,-6],[11,1],[20,7],[17,9],[10,8],[23,29],[12,22],[18,45],[2,7],[38,40],[14,13]],[[800,4353],[-85,-114],[-10,3],[-12,0],[-8,-30],[-29,-53],[-10,-36]],[[2517,3270],[-8,-176]],[[2293,3303],[18,-13],[13,-6],[19,-5],[28,-1],[-27,57],[20,4],[22,1],[25,-2]],[[2411,3338],[64,-4]],[[2475,3334],[45,-3]],[[2520,3331],[-3,-61]],[[6739,4693],[36,16],[70,4],[48,-30],[35,-36],[3,-1]],[[6931,4646],[-2,-20],[-22,9],[-23,5],[-1,-135],[31,11],[-17,-112],[-56,-128]],[[6841,4276],[-85,0]],[[2691,3165],[32,10],[8,1],[62,3],[6,4],[14,27],[18,24],[36,38]],[[2867,3272],[53,46],[6,4],[8,-12],[10,-8],[7,2],[7,-8],[27,-6],[21,-7]],[[3006,3283],[-12,-45],[-56,21],[-14,5],[-16,-5],[-33,-34],[-5,-31],[-13,-81],[54,-26]],[[2911,3087],[-9,-56],[-19,-88],[-12,7],[-47,50],[-11,11],[-21,15],[-10,10],[-22,24],[-20,16],[-22,5],[-14,-3],[-19,-13],[-10,-13],[-4,-18],[-1,-10]],[[2670,3024],[-29,0],[-11,-4],[-11,2],[-12,7],[-22,-16],[-2,11]],[[2583,3024],[1,4],[28,55],[30,54],[34,24],[15,4]],[[2509,3094],[9,-1],[28,-29],[37,-40]],[[2670,3024],[20,1],[8,-2],[-4,-10],[-5,-21],[-2,-23],[4,-25],[5,-17],[10,-21],[21,-29]],[[2727,2877],[-14,-13],[1,-7],[-32,-34],[-10,14],[-15,-33],[-6,-7],[-11,13],[-58,40],[2,-45],[2,-18],[15,-80]],[[2601,2707],[-22,9],[-20,13],[-13,13]],[[2546,2742],[-11,12],[-10,16],[-11,21],[-6,17],[-7,30],[-2,23],[0,26]],[[2200,1078],[-87,-4],[-20,0],[-33,6],[-24,-3],[-20,-9],[-31,-19],[-3,3],[-3,-51],[-58,-16]],[[1921,985],[3,74]],[[1924,1059],[-21,31],[-15,13],[-23,16],[-37,11],[-18,7],[22,122]],[[1832,1259],[11,-4],[25,-15],[41,-6],[9,-4],[19,-13]],[[1937,1217],[20,-2],[23,8],[10,0],[21,-6],[63,-53],[21,-8],[129,-22]],[[2224,1134],[-6,-18],[-18,-38]],[[8303,4732],[5,-3],[61,-4]],[[8369,4725],[-4,-105],[85,-6],[-2,-52],[77,-4]],[[3580,1274],[2,14],[26,82],[-16,7],[-12,1],[3,39],[6,-1],[19,61],[-21,2],[12,156],[-3,40]],[[3703,1685],[56,-19]],[[3759,1666],[-13,-58],[-23,-118],[-48,-153],[-20,-66]],[[3655,1271],[-75,3]],[[3891,6327],[-16,-14],[-16,-19],[-4,-7]],[[3855,6287],[-6,2],[-32,20],[-60,44],[-3,9],[-11,14],[-18,10],[-37,30],[-16,11],[-21,9],[-26,8],[-11,-1],[12,-17],[-18,-29],[-16,-35],[-13,-35],[-6,-21]],[[3573,6306],[-38,14],[-8,2]],[[3527,6322],[28,65],[-42,39],[-22,21],[56,88],[7,-7],[14,-5],[10,-15],[11,-30],[5,12],[29,51],[7,17],[8,29]],[[3638,6587],[22,-22],[4,-28],[2,-4],[32,-20],[14,-2],[14,-17],[6,-5],[33,-15],[8,27],[12,-2],[9,-5],[-9,-26],[-3,-11],[16,-9],[11,-12],[14,-5],[11,-9],[19,-19],[8,-1],[18,-13],[29,-25],[5,7],[11,-12]],[[3924,6359],[-33,-32]],[[4211,3625],[-36,70]],[[4231,3746],[26,1],[1,-6]],[[4258,3741],[-17,-35],[-21,-57]],[[4220,3649],[-9,-24]],[[3395,4751],[11,60]],[[3469,4744],[-23,0],[-3,-7],[-22,7]],[[3421,4744],[-26,7]],[[5189,4871],[-14,-22],[-13,-13],[-9,-15],[-18,13]],[[5135,4834],[18,35]],[[5153,4869],[19,46]],[[5172,4915],[14,39]],[[5186,4954],[6,18]],[[5186,4954],[-95,38]],[[5091,4992],[15,67]],[[5281,7489],[27,10],[11,31],[31,-16],[-10,-32],[3,-3]],[[5305,7390],[-10,43]],[[5295,7433],[-14,56]],[[4654,2590],[-10,-55]],[[4644,2535],[-53,17]],[[4591,2552],[-24,8]],[[4573,2614],[47,-14]],[[4620,2600],[34,-10]],[[5645,3933],[10,20],[53,59]],[[5708,4012],[13,-32],[14,-36]],[[5735,3944],[-14,-8],[1,-3],[-31,-20]],[[5691,3913],[-5,14],[-11,-4],[-9,10],[-10,-12],[-11,12]],[[5091,4992],[-7,2]],[[5048,5008],[-1,2],[15,67],[-26,11],[7,33]],[[5043,5121],[24,-23]],[[4881,6263],[-24,-20],[-10,3]],[[4847,6246],[1,2],[0,141],[32,-1]],[[4414,2760],[48,-40]],[[4462,2720],[-21,-68]],[[4441,2652],[-57,48]],[[4398,2727],[16,33]],[[4654,2975],[-27,3]],[[4627,2978],[3,29],[28,-1],[1,22],[4,4],[54,-1]],[[4717,3031],[-1,-63]],[[4716,2968],[-62,7]],[[6285,2279],[18,51]],[[4025,2902],[-17,66]],[[4008,2968],[40,21],[7,28],[30,-76]],[[4085,2941],[-60,-39]],[[5172,4915],[-99,42]],[[5193,5135],[19,-6],[12,47]],[[5224,5176],[21,-18]],[[5245,5158],[4,-37],[-7,-6],[-18,-52]],[[5224,5063],[-46,17]],[[5141,5822],[50,-86]],[[5191,5736],[-32,-31]],[[5108,5791],[33,31]],[[4562,3177],[-50,-32],[-14,25]],[[4498,3170],[15,30]],[[4513,3200],[45,76]],[[4558,3276],[22,-39],[-35,-30],[17,-30]],[[3342,4902],[4,30],[-26,7],[16,40]],[[3336,4979],[24,-16],[24,58]],[[3384,5021],[22,-16],[-23,-57]],[[3383,4948],[-9,-21],[-7,-32],[-25,7]],[[4630,2668],[61,-17]],[[4691,2651],[-11,-69],[-26,8]],[[4620,2600],[10,68]],[[5224,5063],[33,-12],[3,-24],[-32,-5]],[[5135,4834],[-35,-55],[-12,-41]],[[5088,4738],[-24,19],[3,27]],[[5067,4784],[8,23],[16,60]],[[5091,4867],[44,-33]],[[6992,1548],[72,-54],[53,116]],[[7117,1610],[30,68]],[[7147,1678],[15,-8],[36,2],[1,-69],[61,-3],[1,22],[-40,8],[2,17],[21,20],[21,-7],[3,26],[7,11]],[[7275,1697],[40,-37],[8,32],[-15,10],[5,18],[-38,17],[-2,73],[4,8]],[[7277,1818],[35,78],[13,38]],[[7325,1934],[5,17],[6,-5],[14,-16],[17,-12],[14,-6],[2,34],[10,-17],[6,-6],[57,-34],[14,-4],[14,1]],[[7484,1886],[4,-19],[-3,-2],[-2,-26],[-4,-21],[-8,-28],[-9,-20],[-7,-11],[-30,-39],[-31,-36],[-34,-45],[2,-3],[-16,-20],[-19,-28],[-17,-20],[-69,-87],[-9,-12],[-2,-10],[-9,-8],[-33,-44],[-5,-9],[16,-13],[-65,-90],[-16,-17],[-40,-57],[-23,-6],[-43,-50],[-12,-16],[-10,-2],[-53,-68],[-26,-24],[-21,-15],[-28,-14],[-60,-11],[-2,1]],[[6800,1016],[26,116],[18,67],[5,12],[10,14],[2,11],[-4,24],[13,56],[20,91],[16,103],[17,90]],[[6923,1600],[69,-52]],[[6416,7087],[-5,21],[-20,43],[-22,38],[-17,22],[-40,35],[-12,4],[-25,3],[-13,4],[-21,13],[-36,32],[-166,169]],[[6039,7471],[43,25],[34,16],[55,24],[95,42],[106,47]],[[6372,7625],[64,28]],[[6436,7653],[-3,-44],[-23,-192],[-4,-47]],[[6406,7370],[-7,-66],[-1,-39],[1,-34],[2,-26],[114,28]],[[6515,7233],[34,8],[31,4],[18,1],[30,0]],[[6628,7246],[34,0],[46,6],[22,-3]],[[6730,7249],[13,-2],[54,-7],[10,-3]],[[6807,7237],[8,-28],[4,-30],[1,-33],[-4,-82],[23,9],[6,-2]],[[6845,7071],[-13,-35],[-21,-51]],[[6811,6985],[-24,-68]],[[6787,6917],[-6,-18]],[[6781,6899],[-63,109],[-15,30],[-5,-3],[-4,-13],[-49,1]],[[6645,7023],[-40,3],[-60,10],[-11,1],[-87,-19]],[[6447,7018],[-6,2],[-25,67]],[[5074,1241],[85,-62],[101,-75]],[[5260,1104],[68,-52]],[[5328,1052],[31,-24],[25,-16],[39,-16],[26,-10],[26,-2],[29,-5]],[[5488,912],[-9,-38],[-31,-171],[-22,-109],[-17,-89],[-15,-88],[-16,-93],[-2,-13]],[[5376,311],[-90,74],[-27,25],[-9,16],[-11,28],[-37,112],[-31,109],[13,53],[35,164],[15,98],[-68,29],[-87,37],[-2,103],[-3,82]],[[8500,5741],[-35,-151],[-49,-216]],[[8416,5374],[-29,-125],[-19,-147],[-9,-43]],[[8359,5059],[-4,8],[-18,17],[-38,56]],[[8299,5140],[-34,51],[-15,-14],[-15,-8],[-12,-3],[-13,0],[-18,2],[-19,4],[-14,8],[-21,15],[-17,16],[-18,23],[-3,6],[28,29],[-18,26],[-29,-18],[-17,32],[-6,21],[-6,23]],[[8052,5353],[-3,26],[-1,27],[3,38],[-19,22],[-9,6],[-12,-1],[-9,4]],[[8002,5475],[49,217]],[[7584,4637],[13,46],[16,66]],[[7613,4749],[200,-92],[160,-71]],[[7941,4167],[-226,103],[-19,-78],[-21,13],[-23,10],[-36,9],[-80,9],[-20,6],[-20,12],[-24,17],[-28,52]],[[7444,4320],[16,65],[39,-18],[9,37],[3,6],[10,43],[10,48],[23,94],[18,-9],[12,51]],[[1778,4656],[7,14],[9,11],[14,8],[6,0],[18,7],[11,-1],[19,-10],[16,-4],[19,13],[8,15],[12,16],[10,7],[12,17],[14,11],[15,17],[16,10],[16,18],[12,4],[55,8],[13,16],[15,32]],[[2095,4865],[0,2],[16,8],[12,4],[28,2],[6,-6],[35,-11],[4,2],[9,-6],[21,1],[11,-2],[27,-31],[3,-13],[4,-8],[36,-40],[52,-22]],[[2182,4415],[-7,1],[-47,37],[-7,7],[-13,-24],[-8,-11],[-9,0],[-5,14],[-5,25],[-4,11],[-12,3],[-12,-7],[-5,-9],[-1,-18],[-30,-4],[-10,-13],[-8,-31],[-3,-17],[-5,-37],[-1,-27],[29,-11],[23,-5],[28,-3],[4,-6],[-41,-35],[-17,-26],[-20,-39]],[[1996,4190],[-21,5],[-11,4],[-9,7],[-17,29],[-9,9],[-33,25]],[[1896,4269],[-30,79],[-1,16],[5,84],[-5,28],[-7,18],[-7,10]],[[2715,5097],[-2,2],[-12,-18],[-19,-15],[-51,-5],[18,57],[3,27],[3,7],[-3,10],[1,31],[-13,-10],[-17,-2],[-8,-6],[-10,-2],[-9,-5],[-35,18],[-2,2]],[[2559,5188],[9,13],[60,-12],[25,12],[51,22],[30,14],[15,2],[-4,8],[-21,25],[-4,10]],[[2929,5420],[25,-12],[20,-12],[15,-5]],[[2989,5391],[-2,-13],[2,-36],[-14,-17]],[[2975,5325],[-6,-2],[-40,-86],[-9,-20],[-6,-5]],[[2914,5212],[-23,-2],[-14,-4],[-99,-43],[-17,-12],[-29,-36],[-17,-18]],[[6845,7071],[5,14],[25,29]],[[6875,7114],[45,52]],[[6920,7166],[136,-89],[3,-5],[37,-23],[-64,-197],[-23,14]],[[7009,6866],[-48,30],[-27,-74],[-8,5],[5,16],[-28,17],[4,10],[-15,9]],[[6892,6879],[6,14],[14,-9],[12,33],[-25,15],[-63,38],[-25,15]],[[7588,5066],[31,138],[25,106],[8,35],[34,149],[47,-18],[18,-4],[26,-10],[9,-7],[29,-12]],[[7815,5443],[-34,-144]],[[7781,5299],[-23,8],[-33,-144]],[[2727,4631],[-30,27],[-36,30],[-23,12],[-21,6],[0,-17]],[[2425,4741],[21,67],[11,-7],[16,-3],[15,1],[14,7],[11,9],[9,16],[18,76],[41,-9],[33,-2],[35,12],[7,2],[25,12],[27,3],[15,0]],[[2723,4925],[5,-73],[-4,-18],[6,-4],[-31,-58],[76,-12],[-11,-18],[-5,-3],[-13,1],[2,-21],[10,-15],[8,-6],[-2,-8],[-13,-16],[0,-31],[-4,-22]],[[2747,4621],[-20,10]],[[1788,4299],[-16,-96],[-14,0],[-159,-29],[-27,-2],[-13,2],[-36,8],[-38,13]],[[1485,4195],[12,97],[-4,10],[18,70],[15,72]],[[1526,4444],[10,-10],[11,-17],[22,-20],[19,-7],[79,-13],[8,0],[25,5],[16,0],[-3,-68],[34,-5],[41,-10]],[[3190,6577],[21,-17],[28,-28],[5,-6],[10,-8],[53,-67],[13,-17],[26,-14],[9,-9],[26,-8],[7,-4]],[[3388,6399],[-15,-44],[-22,-70],[11,-10]],[[3362,6275],[-7,-11],[-24,-2],[-28,-7],[-32,0],[-8,5],[-13,17],[-18,5],[-6,6],[-1,-37],[-4,-32]],[[3221,6219],[-47,13]],[[3174,6232],[2,28],[5,41]],[[3181,6301],[0,21],[-34,71],[-8,21],[-13,19],[-13,11],[-21,12],[-31,15],[-16,15],[-12,14],[9,0],[45,-6],[91,-23],[1,52],[5,27],[6,27]],[[5347,2595],[-17,28],[-30,11],[14,76]],[[5314,2710],[85,-29]],[[5399,2681],[-5,-31],[4,-13],[-30,-17],[-9,-9],[-12,-16]],[[5358,2366],[65,-110],[-43,-45],[-18,28],[-1,-1]],[[5361,2238],[-30,52],[-7,13],[20,18],[7,-10],[10,5],[-19,34]],[[5342,2350],[16,16]],[[3089,4939],[-61,7],[-16,4]],[[3012,4950],[6,15],[7,28],[5,58]],[[3030,5051],[17,-7],[35,-9],[16,-8]],[[3098,5027],[-9,-88]],[[3522,4425],[-53,17],[11,61]],[[3480,4503],[11,63]],[[3491,4566],[52,-16]],[[4424,4036],[29,14],[22,9],[12,6],[14,12],[8,9],[12,19]],[[4521,4105],[39,-38],[-33,-66],[-27,-18]],[[4441,4007],[-17,29]],[[3338,1671],[6,14],[7,1]],[[3351,1686],[8,-2],[8,8],[55,0]],[[3422,1692],[2,-13],[0,-54]],[[3424,1625],[-58,-25],[-13,-6]],[[3353,1594],[-12,14],[-2,8]],[[3339,1616],[-1,55]],[[2565,1273],[13,86],[4,20],[37,-11],[-3,-19],[19,-14],[11,-2],[-5,-77]],[[2641,1256],[-55,14],[-21,3]],[[3356,4661],[-52,12],[-38,3],[-12,39],[2,13]],[[3256,4728],[104,-32]],[[3360,4696],[-4,-35]],[[4349,3313],[34,-65]],[[4383,3248],[-61,-43]],[[4322,3205],[-16,40]],[[4306,3245],[43,68]],[[4610,2740],[-4,-65]],[[4606,2675],[-69,22]],[[4537,2697],[4,53],[21,-3]],[[3376,4467],[8,-2]],[[3384,4465],[6,-1]],[[3390,4464],[-11,-59]],[[3379,4405],[-12,-60]],[[3367,4345],[-53,15]],[[3314,4360],[62,107]],[[5295,4717],[-24,-2],[-72,13]],[[5199,4728],[57,47]],[[5256,4775],[29,24]],[[5285,4799],[10,-82]],[[6061,4559],[-40,55]],[[6021,4614],[38,49],[41,-54]],[[6100,4609],[-39,-50]],[[6047,4526],[-36,48],[-44,60]],[[5967,4634],[20,26]],[[5987,4660],[34,-46]],[[6061,4559],[-14,-33]],[[4644,2535],[26,-7]],[[4670,2528],[-11,-64],[-22,5]],[[4637,2469],[2,19],[-54,16]],[[4585,2504],[6,48]],[[5067,4784],[-49,-7]],[[5052,4881],[39,-14]],[[4078,4027],[1,-67]],[[4079,3960],[-53,-14]],[[4026,3946],[-9,80]],[[5080,2613],[-34,-27],[-22,-15],[-21,-9]],[[5003,2562],[-10,48]],[[5055,2659],[12,-18],[13,-28]],[[3840,2680],[48,-3]],[[3888,2677],[13,-77]],[[3030,1436],[21,73],[18,18],[1,9],[7,11]],[[3077,1547],[7,-9],[13,-60],[4,-22]],[[3101,1456],[-71,-20]],[[5543,5111],[-40,-42]],[[5503,5069],[-19,33]],[[5484,5102],[38,41]],[[5522,5143],[39,41]],[[5118,2775],[17,77]],[[5135,2852],[50,-19],[-16,-75]],[[5153,4869],[-52,24],[7,21],[-43,16]],[[6812,6771],[22,61],[9,-5],[7,7]],[[6850,6834],[41,-24],[-19,-51],[-16,10],[-7,-20]],[[6849,6749],[-37,22]],[[6509,5890],[10,49],[45,-16]],[[6564,5923],[8,-69],[-26,-14]],[[6546,5840],[-18,28],[-15,17]],[[5363,6947],[13,-21],[18,-13],[-39,-74]],[[5355,6839],[-21,16]],[[5334,6855],[-16,12],[15,35],[10,19],[20,26]],[[5368,4196],[14,-17],[20,-19],[34,-30]],[[5436,4130],[-20,-32]],[[5416,4098],[-15,18],[-16,12],[-53,11]],[[5332,4139],[36,57]],[[5387,5466],[-27,43],[30,31]],[[5390,5540],[51,-84]],[[5441,5456],[-30,-30]],[[5640,4926],[0,26]],[[5640,4952],[6,3],[0,14],[34,38]],[[5680,5007],[39,-59]],[[4657,6749],[30,-13],[-13,-54]],[[4674,6682],[-33,3]],[[4641,6685],[-24,-12],[6,56]],[[4623,6729],[3,32],[31,-12]],[[5522,5143],[-40,60],[40,42]],[[5522,5245],[39,-61]],[[6429,8429],[-159,4],[-199,7],[-67,6],[-4,-20],[-60,12]],[[5940,8438],[13,45]],[[5953,8483],[22,75],[-29,14]],[[5946,8572],[14,46],[12,39],[-68,13],[-30,20]],[[5874,8690],[29,105],[130,-30]],[[6033,8765],[129,-29],[20,-2],[114,-10],[132,-12],[26,-4],[23,0],[55,1]],[[6532,8709],[1,-107],[0,-56],[1,-48]],[[6534,8498],[-3,-23],[-8,-49]],[[6523,8426],[-94,3]],[[7371,6023],[-81,-164],[-22,-43],[-39,-81],[6,-8],[8,4]],[[7243,5731],[15,-11],[-2,-67],[2,-47]],[[7258,5606],[-25,-3]],[[6914,5724],[26,101]],[[6940,5825],[56,217],[53,207]],[[7049,6249],[92,-40]],[[7141,6209],[7,-4],[102,-95]],[[7250,6110],[121,-87]],[[7949,5239],[53,236]],[[8052,5353],[-28,-16],[13,-39],[0,-7],[11,-31],[18,-56],[12,-20],[28,-19],[28,-13],[25,-9],[48,-19],[57,-22],[35,38]],[[8359,5059],[-14,-64],[-49,-213],[7,-34],[0,-16]],[[8110,4785],[-205,55]],[[7915,5092],[34,147]],[[3306,447],[-27,14],[-59,16],[-51,5],[-21,1]],[[3148,483],[-29,3],[-35,7],[-152,73]],[[2932,566],[1,45],[3,136],[3,201]],[[2939,948],[71,-15],[62,-12],[60,-9],[29,-1],[40,-1],[42,1],[57,5],[19,3],[22,7]],[[3341,926],[75,22]],[[3416,948],[-9,-94],[41,10]],[[3448,864],[-17,-70],[-12,-54],[-16,-63]],[[3403,677],[-88,42]],[[3315,719],[-44,21],[-20,-77],[-5,-29],[-2,-20],[-2,-43],[18,-8]],[[3260,563],[68,-33]],[[3328,530],[-22,-83]],[[6875,7114],[3,35],[14,36]],[[6892,7185],[26,69]],[[6918,7254],[16,41],[7,35],[0,14],[3,50],[3,73]],[[6947,7467],[4,51],[4,41],[7,53]],[[6962,7612],[8,42],[24,100],[4,20],[28,84]],[[7127,7951],[49,-52],[38,-41],[37,-32],[55,-45],[34,-42],[11,-7],[42,-22],[-2,-15],[10,-8]],[[7401,7687],[-13,-1],[-3,-5],[-14,-8],[-7,3],[-3,-5],[-25,-29],[-9,-13],[-13,-21],[-11,-16],[-26,-27],[-28,-24],[-35,-33],[-10,-11],[-43,-50],[-189,-220],[-16,-17],[-36,-44]],[[2837,2770],[-26,14],[-22,10],[-27,15],[6,19],[-18,19],[-23,30]],[[2911,3087],[54,-25],[-11,-66],[-22,-153],[-1,-45]],[[2931,2798],[-6,3],[-31,27],[-33,36],[-5,-9],[-6,-24],[-13,-61]],[[5398,2814],[-2,4],[-48,58],[-55,75],[-8,12]],[[5285,2963],[35,38],[-15,25],[-4,11],[77,82],[4,13],[71,75],[8,-12],[11,12]],[[5472,3207],[18,-44],[19,-54],[15,-20],[8,-6],[14,-5]],[[5546,3078],[-27,-52],[-31,-31],[-32,-35],[-17,-154],[-41,8]],[[5846,7875],[-20,1],[7,48],[-43,4]],[[5790,7928],[55,188]],[[5845,8116],[37,-22]],[[5882,8094],[16,-9],[-9,-31],[103,55]],[[5992,8109],[37,18],[23,10]],[[6052,8137],[49,20]],[[6101,8157],[6,-30],[1,-30],[-15,2],[-4,-95],[-97,7],[-3,-46],[3,-34],[16,-71]],[[6008,7860],[-67,6]],[[5941,7866],[-95,9]],[[4792,1510],[-49,23],[-14,9],[-39,17],[-28,14],[-87,42],[-4,1]],[[4571,1616],[24,87],[24,85]],[[4619,1788],[9,34]],[[4628,1822],[47,-18],[83,-28],[51,-17],[-1,-103],[52,-11]],[[4860,1645],[-14,-19],[-17,-15],[-11,-8],[-26,-93]],[[1033,4607],[14,25],[1,14],[-5,28]],[[1197,4623],[-20,-8],[-9,-13],[2,-27],[4,-12],[44,-72],[5,-12],[6,-30]],[[2982,1592],[13,45],[24,78],[17,66],[27,57],[60,83]],[[3236,1659],[1,-56]],[[3237,1603],[0,-10]],[[3237,1593],[-91,-15],[-6,92]],[[3140,1670],[0,15],[-17,-3],[-11,-6],[-10,-11],[-9,-22],[-6,-41],[-13,-38],[5,-13]],[[3079,1551],[-95,37],[-2,4]],[[5404,4481],[10,-33],[9,-43]],[[5423,4405],[-13,-6],[-60,-21]],[[5350,4378],[-14,41]],[[5336,4419],[18,6],[-15,40],[43,30],[14,11]],[[3998,4220],[7,-74]],[[4005,4146],[-42,-3],[1,-27],[-38,-4]],[[3926,4112],[-4,82],[0,20]],[[3922,4214],[76,6]],[[3530,3059],[5,64],[35,-6],[7,68]],[[3577,3185],[30,-12],[0,-59]],[[3607,3114],[-5,-66]],[[3602,3048],[-72,11]],[[5620,6942],[-24,21]],[[5606,7058],[-13,6],[11,36],[64,-33]],[[5668,7067],[16,-8]],[[5684,7059],[-64,-117]],[[5336,4419],[-23,-3],[-24,4]],[[5289,4420],[9,35],[9,10],[-11,17]],[[5296,4482],[53,48],[29,27]],[[5378,4557],[4,-9]],[[4173,4097],[2,-70],[-50,0]],[[4125,4027],[-1,72],[-47,0]],[[4077,4099],[0,46]],[[4077,4145],[46,0]],[[4763,3102],[53,-4]],[[4816,3098],[0,-118],[-31,0],[0,-20]],[[4785,2960],[-23,3]],[[4762,2963],[1,139]],[[5586,3718],[-4,-7],[-42,-61],[-31,-46]],[[5509,3604],[-29,57]],[[5578,3724],[8,-6]],[[3694,4178],[1,-51]],[[3695,4127],[3,-28]],[[6833,1858],[25,29],[-28,13],[9,24],[21,29]],[[6860,1953],[65,-8],[-21,-76],[-9,22],[-3,-11],[-8,-7],[-15,-50]],[[6869,1823],[-22,21]],[[6847,1844],[-14,14]],[[3562,4050],[-4,-48],[-37,6],[-5,-51]],[[3516,3957],[-49,8]],[[3467,3965],[10,102]],[[3597,4535],[26,-7]],[[3623,4528],[-22,-126]],[[3601,4402],[-22,-120]],[[3553,4290],[33,183]],[[3351,1718],[0,12],[10,1],[-1,19]],[[3360,1750],[67,-1]],[[3427,1749],[-7,-21],[2,-36]],[[3351,1686],[0,32]],[[6946,6690],[64,-38]],[[7010,6652],[-21,-58],[-28,17]],[[4856,5071],[-20,21],[-33,-53]],[[4803,5039],[-13,16]],[[4790,5055],[64,102]],[[4854,5157],[32,-42]],[[5081,6061],[-58,107]],[[5023,6168],[25,22],[58,-107]],[[5106,6083],[-25,-22]],[[3493,875],[8,65],[3,32],[30,4],[16,-1],[-7,-53],[-7,2],[-6,-41]],[[3530,883],[-37,-8]],[[4828,5190],[26,-33]],[[4790,5055],[-5,-7]],[[4785,5048],[-15,15],[26,20],[4,8],[-8,9],[5,7],[-11,12],[29,49]],[[5077,2799],[5,68],[53,-15]],[[5084,2787],[-7,12]],[[4354,5578],[8,16],[6,25],[15,79],[8,15]],[[4391,5713],[11,13],[12,9]],[[4286,3486],[6,-25]],[[4292,3461],[9,-41]],[[4595,3639],[9,-13]],[[4529,3675],[10,23]],[[4539,3698],[7,15]],[[4546,3713],[49,-74]],[[5169,5218],[17,-12],[38,-30]],[[5153,5149],[16,69]],[[5463,5030],[18,-29],[10,-38],[0,-36]],[[5491,4927],[-25,1],[-5,44],[-28,-11]],[[5433,4961],[-11,27],[41,42]],[[4142,3227],[72,48],[16,-42]],[[4230,3233],[-34,-22]],[[4196,3211],[-36,-24]],[[4160,3187],[-18,40]],[[6484,6197],[-20,-39]],[[6464,6158],[-57,45],[5,15],[3,43]],[[6415,6261],[19,-18]],[[6434,6243],[50,-46]],[[4026,2571],[50,-12]],[[4076,2559],[-23,-70],[9,-23],[53,-31],[-3,-15],[9,-7],[12,-18],[12,-25],[12,-14],[30,-16]],[[4187,2340],[-57,-178],[-43,-119]],[[4087,2043],[-39,-102]],[[4048,1941],[-42,-110],[-25,-69]],[[3981,1762],[-18,24],[-14,35],[-28,94],[-11,37],[-23,68]],[[3887,2020],[-14,45],[-17,49],[-9,21],[-14,27],[-15,25],[-20,29]],[[3798,2216],[-4,5]],[[3930,2595],[96,-24]],[[1730,811],[21,-10],[85,-18],[16,4],[12,15],[5,14],[3,17],[2,38],[3,19],[15,11],[19,5],[9,0]],[[1920,906],[1,-7],[13,17]],[[1934,916],[11,7],[29,-4],[-9,-172]],[[1965,747],[-33,1],[0,-19],[9,-36],[2,-18],[-25,-16],[-26,-29],[-21,-19],[-23,-10],[3,-15]],[[1851,586],[-22,7],[-12,-1],[-4,-10],[-8,5],[-3,6],[-16,12],[-16,8],[-13,12],[-10,2],[-20,13],[-16,-1],[-7,6],[-12,3],[-5,-8],[-24,8],[-12,13],[-10,-6],[-26,-3],[-10,-2],[-23,-1],[-47,-13],[-18,-3],[-47,-14],[-36,-5],[-16,-11],[-14,0],[-13,-7],[-21,-5],[-36,-25],[-30,-26],[-13,-9],[-19,-21],[-14,-14],[-6,-13],[-9,-8],[-12,0],[-24,-16],[-19,-11],[-36,-23],[-14,-15],[-8,-12],[-13,-14],[-18,-21],[-33,-21],[-13,-2],[-34,-2],[-24,-6],[-26,-14],[-24,-16],[-8,-16],[-11,12],[-11,9],[-4,0],[-28,24],[-17,24],[-18,3],[-13,6],[0,15],[-5,11],[7,11],[16,4],[23,21],[31,28],[9,42],[29,8],[26,4],[46,29],[63,18],[33,6],[25,9],[53,23],[44,27],[36,20],[49,15],[19,6],[68,23],[28,7]],[[1435,691],[15,3],[10,5],[27,26],[74,43],[31,6],[137,35],[1,2]],[[6052,8137],[-2,7],[16,43],[4,7],[10,26],[2,13],[7,25],[6,-2],[16,50],[16,76],[-52,-15],[-5,2],[-90,-26]],[[5980,8343],[-11,1],[-7,6],[-16,8]],[[5946,8358],[-26,13]],[[5920,8371],[20,67]],[[6429,8429],[-24,-225],[35,-8],[44,-12],[12,-3]],[[6496,8181],[-3,-14],[-5,-53],[-5,-43],[0,-11],[-4,-37],[-1,-10],[-4,-41],[-6,-85],[-20,2],[-44,11]],[[6404,7900],[-89,24],[-68,10],[-10,4],[-22,16],[-19,5],[-24,5]],[[6172,7964],[11,33],[24,61],[49,127],[10,29],[-1,12],[-164,-69]],[[5399,2681],[45,-15],[10,-20],[41,25]],[[5495,2671],[37,-48]],[[5699,2393],[80,-135]],[[5350,2097],[-14,27],[-8,26],[-7,47]],[[5321,2197],[40,41]],[[5358,2366],[23,23],[25,18],[33,8],[12,11],[0,11],[11,14],[-20,26],[-16,19],[-24,21],[-22,24],[-10,16],[-23,38]],[[6731,5528],[20,7],[4,12]],[[6755,5547],[96,-87]],[[6851,5460],[-10,-38]],[[6841,5422],[-21,-87]],[[6820,5335],[-65,-251]],[[6755,5084],[-36,-145],[-7,-42],[1,-20]],[[6645,5252],[1,26],[-3,34],[-6,37],[-17,77],[-2,25],[-3,42]],[[6615,5493],[6,0]],[[6621,5493],[0,-7],[9,-28],[9,-15],[10,-13],[56,-34],[1,10],[18,37],[-12,9],[19,76]],[[4628,1822],[10,35]],[[4638,1857],[28,104],[5,53]],[[4671,2014],[7,97]],[[4678,2111],[1,16]],[[4679,2127],[93,-28],[1,15],[72,-23],[6,5],[23,-24],[46,-19],[8,1],[12,8]],[[4940,2062],[11,0],[12,-6],[19,-20]],[[4982,2036],[-24,-19],[-22,-25],[-20,-31],[-13,-27],[-13,-40],[-10,-49],[-2,-53]],[[4878,1792],[1,-50],[-1,-29],[-4,-23],[-7,-27],[-7,-18]],[[2311,2385],[-1,3],[-22,173],[-97,122]],[[2432,2896],[-5,-81],[-1,-8],[-6,-9],[6,-12],[-32,-52],[-23,-27],[6,-18]],[[2377,2689],[28,-78],[23,-62],[9,-19],[14,-21],[11,-16],[13,-14],[18,-13],[19,-7]],[[2512,2459],[-3,-19],[-4,-4],[-90,-24],[-45,-12],[-59,-15]],[[1708,4950],[7,-11],[6,7],[-2,6],[17,18],[-2,5],[11,16],[11,5],[2,-4],[9,3],[3,6],[9,-5],[2,9],[6,0],[3,11],[14,19],[4,12],[6,9]],[[1814,5056],[21,-22],[7,-4],[22,-21],[18,-7],[8,-14],[13,-13],[10,-1],[9,-5],[23,-5],[6,-3],[13,0],[9,3],[10,-2],[14,-13],[27,-18],[20,-10],[2,-5],[12,-12],[9,-24],[28,-15]],[[1701,4938],[7,12]],[[1435,691],[-6,37],[2,30],[6,27],[-27,10],[-24,13],[-13,19],[38,39],[19,74],[-27,1],[-44,-15],[-10,-1],[-10,-4],[-16,-1],[-5,3],[-28,0],[-14,-6],[-22,-5],[-24,-3],[-11,-5],[-44,-3],[-29,-6],[-28,-14],[-32,0],[-17,-10],[-27,-9],[-13,-3],[-26,-1],[-19,4],[-1,22],[8,11],[5,-10],[10,10],[-3,16],[-10,24],[1,4]],[[994,939],[32,-7],[12,0],[62,10],[33,15],[40,15],[43,7],[37,1],[141,9],[126,-27],[59,-1],[14,5],[25,-1],[23,-8],[38,-5],[-2,-99],[54,-25]],[[1731,828],[-1,-17]],[[7613,4749],[-13,6],[15,75]],[[7615,4830],[32,-19],[46,-26],[64,-56],[20,-24],[53,-11],[3,3],[-18,20],[-4,7],[0,18],[-1,13],[-6,14],[4,9],[3,26],[1,22],[-2,17],[23,11],[10,2],[13,-3]],[[5789,2624],[7,17],[6,21],[33,29]],[[5835,2691],[19,-34],[19,-40]],[[5873,2617],[24,-46]],[[5897,2571],[-32,-27],[-22,45],[-18,31],[-20,-26],[-16,30]],[[6926,5165],[24,41],[15,42]],[[6965,5248],[19,48]],[[6984,5296],[31,-34]],[[7015,5262],[-43,-111],[-1,-4],[8,-17],[-12,-21]],[[6967,5109],[-41,56]],[[5119,4727],[8,-11]],[[5127,4716],[-1,-5],[6,-15],[4,-31]],[[5136,4665],[-70,-21],[10,-63]],[[5076,4581],[-25,-2],[-24,1]],[[5027,4580],[-12,49],[12,6],[24,24],[30,24],[34,39]],[[5115,4722],[4,5]],[[5594,7617],[-60,29],[-3,22],[-6,4],[-3,8],[-5,21]],[[5517,7701],[9,2],[7,-5],[8,-1],[6,7],[2,10],[4,4],[6,26]],[[5617,7701],[-23,-84]],[[3432,4391],[10,57]],[[3442,4448],[11,63],[27,-8]],[[3522,4425],[-11,-59]],[[4019,4750],[15,0],[101,6],[6,1]],[[4141,4757],[-3,-55]],[[4138,4702],[-75,-2]],[[4063,4700],[-58,-1]],[[4005,4699],[14,51]],[[3922,4214],[-3,67],[1,29]],[[3920,4310],[35,-3]],[[3990,4303],[8,-83]],[[4737,3482],[30,19]],[[4767,3501],[37,-86]],[[4804,3415],[-56,-44]],[[4748,3371],[-40,88]],[[4708,3459],[29,23]],[[5053,2920],[33,-4],[57,-26]],[[5143,2890],[-8,-38]],[[5077,2799],[-10,-9],[-25,2]],[[5042,2792],[7,80]],[[5049,2872],[4,48]],[[4555,4969],[-11,14],[-23,39],[0,7]],[[4521,5029],[0,30]],[[4521,5059],[30,-16],[61,-19]],[[4612,5024],[-2,-87],[-2,-5]],[[4608,4932],[-25,14],[-28,23]],[[5929,6701],[-29,-17],[4,-9],[-6,-23],[33,1],[0,-18],[-6,-18],[0,-12]],[[5925,6605],[-56,2]],[[5869,6607],[-1,9],[-9,134]],[[6874,6628],[-5,-13],[-25,16]],[[6844,6631],[37,98]],[[6881,6729],[39,-23]],[[4967,4924],[35,-7],[-1,-30],[27,0]],[[4962,4845],[5,79]],[[4838,6225],[0,-30]],[[4838,6195],[-5,0],[-3,-13],[-11,-23],[-55,37],[12,31],[2,11],[60,-13]],[[5924,4855],[7,-11],[3,-36],[-4,-19],[-6,-19],[-9,-11]],[[5915,4759],[-52,73]],[[3237,1603],[67,0]],[[3304,1603],[0,-35]],[[3304,1568],[-48,-26]],[[3256,1542],[-19,-16]],[[3237,1526],[0,11]],[[3237,1537],[0,56]],[[4877,5043],[-36,-46],[-18,21]],[[4823,5018],[-20,21]],[[4454,3376],[47,-84],[-26,-25]],[[4475,3267],[-48,83]],[[4427,3350],[27,26]],[[3379,4405],[53,-14]],[[3421,4329],[-54,16]],[[5532,5003],[-12,39],[-17,27]],[[5560,5084],[-19,-20],[27,-45]],[[5520,5326],[31,-51],[-27,-28]],[[5524,5247],[-25,41]],[[5499,5288],[-16,27],[16,18],[-14,23]],[[5485,5356],[10,12]],[[4769,2500],[-16,-62]],[[4753,2438],[-49,15]],[[4704,2453],[11,62]],[[4715,2515],[54,-15]],[[4196,3211],[9,-27],[21,-52]],[[4226,3132],[-31,-24]],[[4195,3108],[-35,79]],[[5867,2864],[-41,-36],[-29,55]],[[5797,2883],[39,38]],[[5836,2921],[31,-57]],[[4018,3271],[39,-100],[-24,-16]],[[4033,3155],[-24,62],[-4,5],[-17,43]],[[3988,3265],[6,5],[24,1]],[[4957,6027],[14,55]],[[5014,6001],[-35,-31]],[[4979,5970],[-20,41],[-6,3]],[[4953,6014],[4,13]],[[5169,5218],[8,6],[10,29]],[[5187,5253],[50,-28]],[[5237,5225],[8,-63]],[[5245,5162],[0,-4]],[[2660,3856],[4,89]],[[2701,3942],[-4,-88]],[[2697,3854],[-37,2]],[[4177,2682],[-7,22],[-12,31],[-8,14]],[[4150,2749],[17,13],[24,12]],[[4211,2669],[-12,-3],[-5,24],[-17,-8]],[[3390,4464],[52,-16]],[[4400,8079],[183,-51],[31,-19],[35,-21],[2,-7],[14,-5],[11,-10],[4,2],[25,1],[2,6],[9,-1],[29,13]],[[4745,7987],[64,-15],[31,-2],[37,5]],[[4877,7975],[-19,-172],[17,-2],[19,3],[22,-1],[32,-5],[-3,-22],[27,-9],[20,-12]],[[4992,7755],[-10,-21],[-6,-9],[-10,-6],[-16,6],[-14,-18],[-47,-40],[-56,-46],[-17,38],[-188,-133]],[[4628,7526],[-57,138],[-92,226],[-79,189]],[[3174,6232],[0,-1],[-6,-56],[-7,-41],[-19,4],[-57,1],[-42,-13],[-34,-8],[-11,1],[-21,-1],[-39,6],[-22,-2],[-27,-13],[-12,-13],[-12,-9],[-8,-4],[-15,-1],[-6,9],[-4,2],[-20,-2],[-14,1],[-21,5],[-19,0],[-15,5],[-9,7],[-17,9]],[[2717,6118],[0,4],[17,4],[8,9],[3,11],[11,18],[5,19],[13,0],[13,-11],[27,9],[20,11],[-18,54],[-28,-7],[-17,0],[-46,1],[-28,0],[-22,6],[-22,-3],[-28,-7],[-20,-2],[-28,5],[-10,7],[-26,2],[5,6],[0,20],[-3,16],[-2,25],[0,19],[20,25],[21,20],[23,22],[31,22],[-3,8],[8,17],[19,14],[21,13],[9,10],[3,13]],[[2693,6498],[33,-22],[23,-3],[16,-3],[17,-8],[27,-9]],[[2809,6453],[26,-13],[13,-3],[27,-11],[29,-17],[19,-3],[29,-8],[95,-13],[13,-4],[36,-16],[38,-26],[24,-21],[9,-5],[14,-12]],[[8593,4885],[-88,6],[-4,-174]],[[8501,4717],[-132,8]],[[8416,5374],[35,-11],[223,-74]],[[8674,5289],[-49,-246]],[[8625,5043],[-32,-158]],[[3785,906],[-73,29],[-38,14],[-27,10]],[[3647,959],[49,123],[0,15],[-4,38],[4,65],[28,71]],[[3724,1271],[75,181],[26,67],[12,58],[-60,20],[12,58],[-30,11]],[[3759,1831],[19,35],[33,51],[16,19],[38,55],[8,8],[14,21]],[[5230,6201],[-75,141]],[[5155,6342],[135,115],[15,21],[9,16],[31,97],[9,27],[11,21]],[[5365,6639],[17,-2],[33,-1],[7,4],[53,-38],[19,75]],[[5494,6677],[9,31],[8,23]],[[5511,6731],[52,-37]],[[5563,6694],[-19,-42]],[[5544,6652],[-23,-52],[-3,-12],[-27,-22],[-25,-31],[-16,-75]],[[5260,6145],[-8,14]],[[5252,6159],[-22,42]],[[4990,8550],[-38,100],[-34,93]],[[4918,8743],[32,78],[25,72],[28,97]],[[5316,8550],[-1,-6],[-20,8],[1,6],[-27,10],[-57,20],[-14,-54],[-39,-91]],[[5159,8443],[5,38],[3,96],[-2,16],[-6,34],[-4,11],[-12,-8],[-58,-22],[-15,-5]],[[5070,8603],[-38,-12],[-42,-41]],[[2922,1877],[44,57],[46,55],[47,56],[31,31]],[[2982,1592],[-31,12],[-7,-34],[-31,11],[8,34],[-33,13],[-17,-105]],[[2871,1523],[-60,12],[-16,99],[-4,13]],[[6615,5576],[0,-83]],[[2838,5799],[0,6],[3,48],[1,9],[0,43],[-2,38]],[[2840,5943],[27,-4],[18,-1],[16,1],[13,-3],[18,6],[4,3],[18,6],[70,-10],[25,-8],[24,-19],[60,26],[141,-78],[5,0]],[[3279,5862],[-27,-17],[2,-25],[1,-115],[-4,-68],[10,-4],[11,3],[12,6],[14,14],[10,14],[11,-8],[5,-10],[0,-10],[-5,-34],[7,-15],[9,-6]],[[3335,5587],[-21,-7],[-33,0],[-33,10],[-15,6],[-19,10],[-16,22],[-25,16],[-21,9],[-29,22],[-26,13],[-46,33],[-4,-1]],[[3047,5720],[-2,9],[-2,23],[-4,37],[-23,0],[-5,2],[-10,23],[-7,12],[-22,17],[-8,9],[-20,0],[-37,4],[-6,-17],[-12,-15],[-13,-7],[-19,-14],[-9,1],[-10,-5]],[[5220,8255],[44,-32],[15,-17]],[[5412,8076],[-34,-77]],[[5378,7999],[-23,-56],[-8,-31],[0,-10]],[[5347,7902],[-1,-76],[2,-48],[6,-27],[-16,-20],[-70,110],[-112,180]],[[5156,8021],[-17,79],[-13,56],[-13,46],[-24,70],[25,59]],[[5114,8331],[106,-76]],[[5076,5229],[-48,115],[-100,83],[-5,12]],[[4923,5439],[22,14]],[[4945,5453],[66,-62],[9,1],[21,-20],[44,-110],[3,-3]],[[5088,5259],[-1,-16],[-11,-14]],[[5435,4299],[-36,-7],[-14,-4]],[[5385,4288],[-6,6],[-29,84]],[[5423,4405],[4,-26],[8,-80]],[[6470,6955],[14,9],[49,25],[7,-17],[8,6],[1,6],[8,-1],[0,-10],[10,-15],[4,3],[6,-10],[-10,-14]],[[6567,6937],[-3,3],[-10,-4],[-45,-63],[-11,-9]],[[6498,6864],[-18,48]],[[6480,6912],[5,3],[-15,40]],[[3820,4468],[-22,-125]],[[3798,4343],[-51,16]],[[3747,4359],[22,124]],[[3769,4483],[51,-15]],[[3084,4736],[5,-11],[11,-5],[16,2],[43,-5]],[[3159,4717],[-41,-13],[-10,-84]],[[3108,4620],[-37,9],[-33,16],[-26,18]],[[4950,2526],[1,32],[26,-1],[26,5]],[[5003,2562],[20,-95]],[[5023,2467],[-24,-30],[-14,-20],[-5,9],[-7,61],[-24,-4]],[[4949,2483],[1,43]],[[3515,5011],[-11,-61]],[[3504,4950],[-43,19],[-9,-52],[-40,12]],[[3412,4929],[48,119]],[[3460,5048],[55,-37]],[[4606,2675],[24,-7]],[[4528,2627],[9,70]],[[5920,4752],[19,19],[9,7],[21,2],[11,-4],[38,-52]],[[6018,4724],[10,-14],[-41,-50]],[[5987,4660],[-67,92]],[[4258,3741],[15,29]],[[4273,3770],[28,-35],[0,-5],[-11,-16],[15,-20],[-54,-79]],[[4251,3615],[-31,34]],[[4121,4220],[-2,67]],[[4119,4287],[73,-7],[36,-6]],[[4228,4274],[-5,-57]],[[4223,4217],[-43,3]],[[4124,4220],[-3,0]],[[5541,4926],[-50,1]],[[5463,5030],[40,39]],[[3360,4696],[11,62]],[[3371,4758],[24,-7]],[[3421,4744],[-8,-45],[1,-38],[-25,-7],[-9,0],[3,-14],[-5,-42]],[[3378,4598],[-2,1]],[[3376,4599],[-27,8]],[[3349,4607],[7,54]],[[2866,3807],[9,-74]],[[2875,3733],[-43,-2],[-41,-3]],[[2791,3728],[-12,1],[0,68]],[[2779,3797],[46,5]],[[2825,3802],[41,5]],[[4604,2980],[23,-2]],[[4654,2975],[-10,-130]],[[4644,2845],[-50,7]],[[4594,2852],[10,128]],[[5240,5784],[-30,-29]],[[5210,5755],[-19,-19]],[[5141,5822],[32,31]],[[5189,5868],[51,-84]],[[3281,1718],[70,0]],[[3338,1671],[-57,1]],[[5263,5806],[-23,-22]],[[5213,5891],[50,-85]],[[7299,5611],[-2,27],[3,0],[-3,46],[42,4]],[[7339,5688],[4,-61],[-5,-2],[-3,-10],[-36,-4]],[[2669,1570],[0,33],[61,2],[-9,-68]],[[2721,1537],[-52,33]],[[3819,6089],[-61,12]],[[3758,6101],[0,16],[6,20],[5,-1],[4,18],[15,-7]],[[3788,6147],[31,-10]],[[6434,6243],[21,37],[49,-43]],[[6504,6237],[-20,-40]],[[3281,1658],[0,-42],[23,0]],[[3304,1616],[0,-13]],[[3339,1616],[-35,0]],[[5199,4728],[-2,-45],[-61,-18]],[[5127,4716],[4,3],[27,-8],[22,1],[19,16]],[[3360,1750],[0,8]],[[3360,1758],[-2,57]],[[3432,1763],[-5,-14]],[[3788,6147],[15,52],[18,43]],[[3821,6242],[12,-12],[2,-6]],[[3835,6224],[-3,-13]],[[3832,6211],[-13,-74]],[[5802,5675],[-10,16],[14,14],[-13,20],[-13,-14],[-7,11]],[[5773,5722],[58,61],[10,-16],[-32,-33],[19,-31],[-26,-28]],[[3512,4798],[44,-3],[-7,-41]],[[3281,1734],[54,14],[-1,3],[26,7]],[[3521,4853],[-9,-55]],[[3489,4860],[32,-7]],[[3353,1594],[-49,-26]],[[5945,2971],[16,6],[30,2]],[[5991,2979],[2,-14],[-40,-8],[-8,14]],[[3236,1492],[0,26],[6,5],[7,-15],[-2,-11],[-11,-5]],[[6841,4276],[40,-36],[34,-46]],[[6915,4194],[11,-14],[44,-10],[12,4],[40,33],[24,-2],[40,-20],[29,-21],[31,-33],[40,88],[129,-180],[117,177],[7,75]],[[7439,4291],[5,29]],[[8524,4051],[184,40],[102,27],[69,-20],[30,-16],[52,-44]],[[8961,4038],[-4,-8],[45,-105],[19,-56],[10,-35],[16,-83],[20,-53],[18,-53],[11,-54],[-18,-53],[-21,-39],[-14,-35],[-26,-106],[-8,-63],[-4,-48],[-5,-49],[27,-13],[31,-10],[23,-13],[8,-9],[8,-19],[-17,-63],[-58,50],[-29,34],[-32,-214],[-3,-29],[-1,-23],[26,-40],[46,-73],[11,-14],[13,-11],[19,-23],[-34,7],[-46,21],[-32,13],[7,-56],[58,-31],[15,-5],[13,6],[22,29],[9,5],[13,-7],[19,-4],[16,-3],[39,-20],[-1,8],[-15,51],[-3,37],[-5,11],[-12,5],[-35,9],[-7,6],[-14,18],[-4,13],[2,24],[16,18],[20,-3],[24,0],[16,-3],[14,4],[11,8],[6,11],[4,20],[8,9],[17,-8],[27,6],[10,-1],[18,-20],[22,-17],[8,-15],[-4,-26],[10,-73],[12,-36],[12,-46],[-1,-22],[-7,-43],[-9,-10],[-15,-6],[-26,3],[-27,-6],[-12,3],[-12,12],[5,-44],[14,-37],[14,-73],[10,-69],[32,-23],[15,-27],[-11,-68],[3,-10],[9,-14],[12,-13],[13,-8],[20,-40],[26,-42],[56,-2],[26,-15],[-58,96],[5,24],[37,14],[19,0],[25,-9],[11,-8],[38,-62],[16,-48],[41,-72],[22,17],[7,14],[12,28],[11,20],[12,10],[29,16],[13,10],[37,32],[22,11],[22,-1],[13,-5],[13,2],[11,11],[16,-1],[49,-26],[33,-36],[20,-31],[19,-51],[6,-26],[7,-49],[-1,-16],[-10,-31],[-9,-34],[-5,-17],[-18,-43],[-19,-31],[-9,-11],[-7,-16],[16,-7],[-1,-25],[24,-19],[11,-14],[17,-28],[14,-30],[13,-30],[10,-35],[2,-46],[-3,-69],[-10,-221],[-4,-84],[-4,-141],[-5,-137],[-4,-41],[-7,-47],[-122,63],[-99,52],[-26,15],[-49,24],[-130,63],[-39,16],[-110,45],[-63,24],[-63,25],[-41,18],[-27,12],[-39,20],[-19,13],[-31,24],[-33,30],[-15,16],[-41,53],[-129,170],[-169,224],[-13,16],[-28,28],[-50,46],[-23,20],[-27,22],[-117,95],[-70,23]],[[8389,2003],[-423,359]],[[7966,2362],[36,44],[-51,60],[-51,56],[-50,58],[-50,60],[-75,90],[-50,60],[-25,31],[-24,30],[-25,30],[-115,144],[-566,721],[-140,183],[-23,31]],[[6757,3960],[-116,152]],[[1838,3097],[8,-53],[-21,-30],[-22,-90],[-14,-64],[10,-82],[43,-87],[80,-20],[-33,-134]],[[1889,2537],[-3,-74],[9,-53],[-5,-1],[-1,-16],[85,-1],[106,-2],[0,-11],[0,-44],[24,4],[52,-6],[19,1],[15,3],[48,12],[0,5],[30,21],[10,6],[7,0],[3,5]],[[2288,2386],[-2,-73],[-3,-33],[-4,-12]],[[2279,2268],[-147,-2],[0,30],[-52,-1],[1,-60],[-35,-2],[-16,-9],[-10,-8],[-62,22],[-76,27],[-12,-30],[1,-13],[50,-155]],[[1921,2067],[-36,-10],[-98,-114],[-3,-3],[-112,-46],[-33,-14],[-92,-68]],[[1547,1812],[-99,-75]],[[1448,1737],[-173,-130],[-56,-66],[-59,71],[-76,102],[-38,9]],[[1046,1723],[-35,8],[-431,97],[-33,8],[-51,-35],[-82,-32],[-38,119],[5,64],[14,148],[-14,65],[-18,84],[-62,117],[-150,84],[-82,42],[-8,14],[-33,26],[-28,67],[137,121],[8,13],[6,158],[33,52],[25,35],[80,85],[67,156],[98,114],[21,59]],[[475,3392],[6,-14],[-3,-12],[3,-5],[13,3],[8,7],[4,11],[11,15],[16,14],[45,23],[12,11],[11,7],[15,14],[19,10],[21,3],[67,20],[26,8],[8,8],[5,32],[8,7],[5,-21],[4,-14],[12,-75],[7,-25],[5,-37],[4,-10],[13,-22],[19,-24],[11,-10],[20,-9],[18,-11],[9,-7],[12,-15],[8,-8],[23,-14],[41,-1],[19,8],[21,6],[21,5],[15,12],[3,6],[38,68],[9,29],[13,21],[16,22],[7,6],[30,13],[10,2],[23,-3],[7,1],[13,11],[13,34],[5,8],[25,23],[10,18],[5,5],[15,10],[37,36],[13,16],[20,29],[10,26],[20,38],[15,24],[17,44],[8,-24],[4,-3],[14,14],[13,9],[11,13],[6,4],[33,12],[17,4],[18,0],[19,7],[12,-3],[23,-14],[11,-12],[53,-29],[10,-14],[25,-18],[8,4],[13,14],[4,18],[-7,17],[-8,11],[-6,20],[-4,35],[1,20],[10,21],[5,2],[12,-3],[6,-6],[9,-18],[20,-30],[4,-3],[-3,-12],[11,-11],[15,-23],[42,-22],[8,-34],[-16,-48]],[[1832,3667],[24,-54],[-23,-33],[-15,-24],[-46,-81],[-41,-14],[22,-64]],[[399,4731],[-7,25],[-6,7],[-1,15],[-9,5],[4,11],[-13,20],[-6,18],[0,9],[6,6],[-3,8],[4,7],[-5,13],[1,11],[-9,26],[-10,14],[-1,12],[-10,26],[6,15],[14,17],[9,13],[9,9],[4,13],[9,14],[15,9],[14,20],[2,26],[-13,26],[-42,23],[-28,3],[-15,-1],[-12,2],[-13,0],[-25,4],[-14,-3],[-48,-18],[-55,10],[-30,-2],[-14,2],[-14,-14],[-9,10],[8,29],[10,13],[4,10],[10,15],[18,12],[9,11],[13,4],[14,-3],[9,5],[8,-3],[13,12],[7,-1],[10,11],[7,3],[7,14],[14,6],[14,15],[4,11],[10,21],[10,9],[4,-3],[11,22],[1,12],[6,11],[2,8],[13,21],[6,4],[15,17],[12,5],[15,15],[1,9],[7,11],[27,-6],[14,-31],[19,-26],[0,29],[-4,32],[-7,17],[-8,9],[3,8],[10,12],[4,1],[9,-5],[5,8],[-33,25],[-5,0],[-21,22],[-32,30],[-60,47],[2,15],[-1,19],[-11,24],[-5,7],[3,19],[6,6],[3,18],[4,17],[-11,7],[-11,10],[6,7],[-1,10],[-11,5],[10,5],[12,0],[3,4],[1,12],[13,22],[3,11],[-4,12],[7,15],[-6,9],[-3,14],[1,14],[8,24],[3,13],[-1,16],[2,19],[-14,0],[-2,13],[7,14],[-6,8],[13,14],[3,11],[-15,9],[-5,17],[3,27],[-6,6],[-1,10],[6,39],[8,22],[13,13],[3,17],[8,12],[7,19],[1,13],[5,17],[10,38],[8,23],[-9,17],[5,10],[-5,15],[5,30],[-3,15],[8,24],[20,30],[18,20],[4,7],[1,14],[18,23],[5,11],[-1,15],[3,10],[10,18],[12,10],[1,14],[7,2],[8,18],[12,3],[7,12],[10,0],[6,4],[7,20],[17,2],[2,12],[10,11],[4,11],[9,0],[6,11],[18,8],[0,14],[3,7],[8,-3],[9,1],[4,20],[-12,32],[2,6],[-12,12],[0,19],[2,12],[-3,22],[3,11],[-6,6],[13,23],[4,14],[0,9],[7,6],[-4,14],[4,12],[-1,12],[2,25],[-5,17],[-9,14],[2,8],[10,10],[5,15],[0,10],[5,8],[12,12],[7,12],[17,12],[1,5],[18,11],[11,3],[8,-1],[11,-7],[15,-14],[15,-24],[29,-36],[32,-47],[12,-14],[23,-16],[4,-7],[5,-16],[-2,-11],[-5,-10],[3,-11],[20,6],[8,-3],[9,-8],[14,-4],[8,-11],[24,-8],[48,-31],[20,-2],[21,-18],[57,-95],[72,-60],[-8,-13],[4,-11],[17,-2],[21,-24],[54,-47],[38,-69],[33,-21],[21,-24],[6,-21],[16,-4],[18,-7],[28,-3],[10,-5],[50,-28],[17,-5],[-1,-7],[12,-10],[8,-5],[24,-19],[0,-13],[-6,-12],[-11,-35],[-16,-36],[1,-27],[-17,-19],[-7,-29],[-3,-41],[-29,-32],[-6,-29],[4,-59],[8,-38],[4,-11]],[[1418,5990],[-13,4],[-3,4],[-21,4],[-39,-3],[-4,10],[-12,-3],[-155,-861],[-6,-21],[-5,-32],[-7,-13],[-2,-9],[4,-16],[0,-13],[3,-19],[8,-4],[16,-5],[16,-11],[17,-21],[0,-6]],[[1215,4975],[-10,-9],[-11,-13],[3,-27],[-4,-18],[0,-6]],[[6192,9300],[-21,-10],[-54,-52],[-21,-29],[-11,-32],[-24,-55],[-8,-16],[-26,-42],[-12,-18],[-50,-69],[-9,-13],[-9,-8],[-5,0],[-19,7]],[[5923,8963],[-12,2],[-49,-2],[-18,4],[-49,14],[-2,-19],[-2,-34],[-3,-25],[-5,-29]],[[5104,9241],[1,2],[-9,70],[-26,89],[5,52],[-32,6],[-5,24],[-15,37],[0,27],[-1,59],[-3,20],[10,28],[16,51],[5,21],[49,62],[31,43],[9,10],[13,6],[14,4],[26,-7],[53,-23],[8,32],[10,30],[-32,3],[0,32],[63,-5],[-8,70],[19,-3],[42,2],[24,10],[20,1],[4,-50],[-1,-62],[-3,-15],[-17,1],[-9,-35],[40,-26],[32,-24],[11,-6],[20,-9],[67,-34],[45,-21],[6,-2],[16,62],[18,63],[63,33],[92,50],[63,32],[100,41],[23,5],[23,2],[32,-1],[21,-3],[27,-6],[22,-11],[33,-11],[21,-9],[46,-42],[63,-52],[50,-38],[37,-27],[45,-32],[25,-16],[36,-22]],[[6442,9729],[-148,-228],[-31,-53],[-32,-55],[-12,-23],[-9,-20],[-18,-50]],[[6555,3992],[61,-77],[141,45]],[[7966,2362],[-46,-58],[-16,10],[-61,48],[-31,23],[-29,19],[-71,44],[-39,22],[-25,18],[-44,39],[-76,51],[-4,6]],[[7524,2584],[-21,17],[-43,37]],[[7460,2638],[-30,27],[-73,55],[-107,79],[-22,15],[-30,19],[-24,14],[-94,55],[-46,27],[-69,37]],[[6965,2966],[-82,46],[-67,40],[-79,43],[-65,38],[-41,22],[-99,57],[-50,29],[-54,30],[-26,14],[-24,13],[-79,44]],[[6299,3342],[-23,13],[-77,44]],[[6199,3399],[20,59],[116,-15],[147,419],[-86,118],[16,12],[-86,112],[7,11],[12,14],[20,12],[19,26],[69,-95]],[[6453,4072],[81,-111],[21,31]],[[1787,4013],[68,-65],[6,-4],[67,-62]],[[1928,3882],[56,-50],[7,-8]],[[1991,3824],[-22,-43],[-11,-23],[-6,0],[-7,-10],[-18,-39],[1,-13],[6,-26],[16,-36],[12,-24],[14,-24]],[[1976,3586],[-17,8],[-36,23],[-30,9],[-18,13],[-15,11],[-24,11],[-4,6]],[[475,3392],[61,175],[10,62],[13,81],[0,122],[33,67],[17,97],[37,127]],[[1361,4208],[31,-32],[23,-21],[15,-11],[36,-23],[42,-19],[30,-7],[43,-7],[53,-4],[3,-22],[18,10],[13,6],[23,-4],[16,-4],[32,-17],[22,-16],[26,-24]],[[3493,6789],[-8,23],[-13,25],[-20,30],[-9,9],[-36,28],[-23,45],[-6,17],[-25,54],[15,21],[-51,70],[-10,8],[-57,96],[-92,319]],[[3158,7534],[10,7],[30,5],[18,17],[37,40],[11,5],[15,10],[18,-2],[58,6],[14,16],[28,61],[13,10],[3,17],[17,27],[8,19],[5,7],[31,24],[26,15],[10,10],[17,-3],[23,1],[14,-4],[13,-7],[18,-14],[25,-10],[60,-12],[17,-4],[21,4],[22,18],[8,10],[4,12],[1,23],[5,24],[7,16],[8,16],[5,18],[8,15],[2,10],[13,19],[23,11],[9,1],[20,-2],[2,2],[58,33],[91,74]],[[4004,8079],[-5,-323],[4,-130],[35,-77]],[[4134,6947],[-16,-47],[-24,-61]],[[4094,6839],[-17,13],[-11,13],[-14,33],[-15,20],[-34,73],[-14,25],[-8,7],[-9,2],[-7,-25],[-13,-30],[-1,-8],[3,-45],[0,-14],[-8,-44],[-8,-11],[-10,-46],[-10,-2],[-15,-11],[-29,-11],[-10,-1],[26,-12],[-17,-41]],[[3873,6724],[-16,-33],[-16,-28],[-4,-2],[-26,-62]],[[3811,6599],[-35,26],[-22,19],[-23,13],[-16,1],[-6,3],[-12,17],[-18,20],[-31,23],[-19,13],[-47,15],[-30,11],[-59,29]],[[2809,6453],[-1,59],[-1,38],[24,-3],[-1,78],[0,26],[13,1],[-5,37],[-5,40],[-3,43],[17,0],[2,42],[1,29]],[[2850,6843],[11,3],[30,-5],[33,-10],[37,2],[55,-17],[17,-10],[9,0],[11,-5],[17,-4],[4,-4],[20,-4],[21,-13],[6,2],[23,-6],[34,-12],[13,-7],[3,-5],[36,-38],[16,-12],[25,-25],[13,-11],[20,-11],[17,-14],[-10,-10],[-10,-3],[-25,2],[-6,-2],[-21,-13],[-18,-5],[-19,-3],[-8,-4],[-8,-8],[-6,-14]],[[3417,1467],[0,-3],[-9,-228]],[[3408,1236],[-3,-14],[-2,-63],[16,-14]],[[3419,1145],[-14,-10],[0,-16],[-9,-39],[-9,-30],[-9,-24],[-24,-44],[-16,-38],[3,-18]],[[2935,1139],[156,-6]],[[3091,1133],[-5,-91],[58,-5],[5,85],[-2,6],[3,53],[-4,3],[21,19],[45,85],[1,109]],[[3213,1397],[60,-9],[0,17],[6,13]],[[3279,1418],[54,-1],[2,41],[63,7],[19,2]],[[5776,3839],[-16,35],[-25,70]],[[5708,4012],[-7,13],[-15,22],[-14,15],[-12,11],[-20,13]],[[5640,4086],[30,83]],[[5670,4169],[19,-14],[22,-19],[18,-18],[16,-21],[16,-18],[12,-7],[24,-6],[24,3],[17,11]],[[5838,4080],[74,-82],[64,39],[17,-5],[34,-31],[25,-31],[-25,-20],[-41,-22],[38,-78],[139,-103],[10,-267],[-31,-48]],[[6142,3432],[-39,29],[-22,19],[-29,28],[-16,18],[-184,209],[-16,19],[-20,26],[-17,22],[-23,37]],[[4771,6375],[13,40],[12,43],[3,18],[2,26],[1,24],[-1,18],[-10,50],[-15,51]],[[4776,6645],[-35,119],[-10,35],[-3,32],[4,5],[-2,34],[3,9],[-4,26],[-4,5],[-3,21]],[[4722,6931],[-2,14],[-6,42],[-4,17],[105,68]],[[4815,7072],[31,-71],[130,-297],[13,-26]],[[4989,6678],[51,-107],[20,-40]],[[5060,6531],[-111,-85],[-18,-19],[-36,-27]],[[4847,6246],[-1,-14],[-8,-7]],[[4838,6195],[1,-110]],[[4839,6085],[-12,-1],[-59,44]],[[4768,6128],[-56,43],[-25,22]],[[4687,6193],[38,76],[19,41],[18,42],[9,23]],[[5715,3779],[61,60]],[[6142,3432],[57,-33]],[[6299,3342],[-8,-23]],[[6291,3319],[-17,7],[-9,-3],[-6,-5],[-20,-31],[-9,-3],[-23,5],[-11,4],[-107,45],[-15,8]],[[6074,3346],[-13,9],[-17,16],[-14,17],[-18,-83],[-26,8],[-23,9],[-9,-15],[-7,-16],[-4,-17]],[[5943,3274],[-2,-7],[-23,20]],[[5918,3287],[-25,11]],[[5656,3550],[37,28],[7,10],[3,7]],[[5708,3707],[-14,19],[-15,18]],[[5679,3744],[36,35]],[[2693,6498],[-21,4],[-3,22],[-1,38],[-3,22],[-8,22],[-7,-4],[-10,31],[-6,-1],[-7,60],[6,32],[-15,21],[-6,14],[-1,24],[-2,15],[8,47],[4,12]],[[2621,6857],[5,4],[2,28],[12,34],[21,31]],[[2661,6954],[164,-113],[25,2]],[[1976,3586],[31,-10],[29,-12],[14,1],[12,-19],[8,-5],[25,32],[1,-2],[42,48],[-11,17],[17,22],[24,-29]],[[2168,3629],[12,-15],[66,-59]],[[2246,3555],[-3,-14],[-20,-49],[-13,-39],[-11,-26],[0,-12]],[[4774,5303],[36,65],[35,22]],[[4845,5390],[78,49]],[[5076,5229],[-15,-21],[-17,-18],[-10,-34],[-3,-15],[2,-10],[10,-10]],[[5029,4937],[-48,60],[-8,12],[-3,-3],[-23,26]],[[1485,4195],[-25,10],[-14,8],[-18,14],[-24,13],[-26,0]],[[1215,4651],[4,1],[10,10],[7,13],[20,-24],[38,-40],[29,-27],[38,-31],[54,-27],[44,-7],[43,-37]],[[1502,4482],[13,-22],[11,-16]],[[3655,2900],[64,-13]],[[3719,2887],[4,-98],[-76,23]],[[3647,2812],[8,88]],[[4967,4924],[2,39],[-26,11]],[[4992,3074],[5,-52]],[[4997,3022],[8,-96]],[[5005,2926],[-47,6]],[[4958,2932],[-14,125]],[[4944,3057],[48,17]],[[4359,5284],[-24,9],[5,21],[-96,19]],[[4244,5333],[7,57]],[[4251,5390],[38,-8],[-4,-30],[94,-8]],[[4379,5344],[4,-36],[-1,-32]],[[4382,5276],[-23,8]],[[4896,2812],[-6,-73],[-4,-35]],[[4886,2704],[-66,8]],[[4820,2712],[8,36]],[[4828,2748],[17,72]],[[4845,2820],[51,-8]],[[4330,3351],[45,30],[53,44]],[[4428,3425],[26,-49]],[[4427,3350],[-24,-17],[-54,-20]],[[4349,3313],[-19,38]],[[5565,3839],[-10,9],[20,36]],[[5575,3884],[26,-21],[40,-22],[39,-12]],[[5680,3829],[3,-2],[22,-33]],[[5705,3794],[-18,-29],[-20,18],[-38,33],[-11,-22],[-3,3]],[[3892,3083],[-16,87],[40,37]],[[3916,3207],[45,-100]],[[3961,3107],[-41,-28]],[[3920,3079],[-28,4]],[[3371,4758],[-52,16],[11,60]],[[3330,4834],[52,-15],[12,68]],[[3394,4887],[24,-7]],[[5372,3700],[-31,31]],[[5341,3731],[38,46],[-16,70]],[[5363,3847],[46,4]],[[5409,3851],[6,-21],[14,-45]],[[5429,3785],[-57,-85]],[[7269,1946],[16,-11],[40,-1]],[[7277,1818],[-49,37]],[[7228,1855],[10,21]],[[7238,1876],[31,70]],[[5485,5356],[-19,-18],[-12,20]],[[5454,5358],[-20,32]],[[5441,5456],[16,-26],[22,22],[39,-60]],[[4494,5238],[-11,62],[-10,-5]],[[4473,5295],[-22,104]],[[4516,5247],[-22,-9]],[[4503,2864],[-21,-72]],[[4482,2792],[-10,-34],[-42,35]],[[4430,2793],[15,30],[-21,18],[32,64]],[[4456,2905],[47,-41]],[[4801,6016],[-19,-95],[-5,-30],[-3,-27]],[[4774,5864],[-55,7],[2,16],[-15,23]],[[4723,5929],[78,87]],[[4077,4145],[-39,1],[-2,74]],[[4036,4220],[41,0]],[[4077,4220],[44,0]],[[4268,5714],[-10,25],[-8,16],[4,29],[10,-3],[3,7],[3,21]],[[4270,5809],[70,-15]],[[4340,5794],[-16,-80]],[[4324,5714],[-56,0]],[[4394,3486],[-14,-4],[-9,-6],[-57,-56],[-11,-7]],[[4292,3461],[34,19],[-12,24],[20,26],[7,5],[31,15],[13,-36]],[[4385,3514],[9,-28]],[[3394,4887],[18,42]],[[3504,4950],[-15,-90]],[[4265,4470],[-32,5],[-17,5]],[[4216,4480],[-13,5]],[[4203,4485],[-5,111]],[[4198,4596],[53,-11]],[[4251,4585],[14,-115]],[[5030,2690],[27,-9],[12,67]],[[5160,2720],[-7,-33],[-49,19],[-16,-81],[-6,-15]],[[5082,2610],[-2,3]],[[5836,1032],[9,85],[-74,36],[-51,20],[-15,-55],[-5,-25]],[[5502,1184],[-102,48],[-30,15]],[[5370,1247],[-60,29]],[[5310,1276],[8,30],[0,8],[-4,15],[3,17]],[[5317,1346],[19,-8],[36,-12],[58,-7],[6,11],[15,16],[-4,24],[-2,36]],[[5445,1406],[0,17],[-3,28],[-7,41],[-14,-5],[-13,6],[-73,49]],[[5335,1542],[-44,33],[-45,39],[-37,42]],[[5209,1656],[-25,29],[-31,26]],[[5153,1711],[-22,17]],[[5131,1728],[4,9],[20,83],[-93,43]],[[5062,1863],[0,4],[22,117],[9,66]],[[5093,2050],[20,4],[16,11],[58,-62],[49,-49],[33,-31],[14,-12],[23,-3]],[[5359,1825],[-18,-23],[73,-81],[19,-25],[43,-14],[18,-3],[21,-1],[37,1],[26,4],[13,6],[14,8],[26,5],[27,0],[29,-7],[5,34]],[[5692,1729],[6,8],[0,15],[-5,22]],[[5848,2144],[158,-264],[63,-105]],[[6069,1775],[55,-90],[54,-93],[46,-78],[46,-76],[53,-148],[106,-310]],[[6429,980],[-79,-5]],[[1509,4783],[-4,1],[-93,72],[-197,119]],[[1418,5990],[7,-7],[2,-8],[10,-12],[9,-1],[6,-6],[17,-8],[-4,-9],[3,-11],[7,0],[11,-22],[15,-6],[8,-20],[21,23],[32,2],[23,10],[13,-5],[19,1],[21,6],[20,12],[15,7],[21,15],[31,26],[13,-4],[12,7],[39,-2],[49,-4],[6,-8],[25,-6],[4,-4],[17,0]],[[1890,5956],[15,0],[36,-9],[14,4],[7,-4],[51,-31],[28,-10],[1,-4],[33,-23],[8,-7],[14,-8],[5,-11],[17,4],[9,-8],[2,-15],[8,4],[8,-2],[2,-8],[11,3],[10,-5],[11,-2],[9,11],[1,7],[10,9],[-2,-13]],[[2198,5838],[-31,-58],[-9,-12],[-84,-93],[-10,-13],[-10,-17],[-12,-28],[-5,-9],[-26,-34],[-29,-28],[-28,-21],[-57,-44],[-11,-14],[-8,-17],[-8,-20],[-9,-32],[-3,-25],[2,-34],[-3,-22],[-10,-51],[-6,-25],[-22,-58],[-12,-40],[-13,-27],[-22,-34],[-26,-63],[-39,-68],[1,-1]],[[7891,7275],[-190,8],[-76,70],[-63,30],[-87,57],[-13,22],[-31,93],[-30,90],[-3,6]],[[7398,7651],[9,31]],[[7407,7682],[27,-20],[22,-18],[31,-22],[15,-6],[34,-10],[30,-11],[-4,32],[2,18],[4,37],[10,46],[20,53],[17,64],[8,42],[-1,25],[-9,42],[-2,14]],[[8098,8420],[50,-24],[39,-29],[31,-25],[18,-13],[68,-33],[70,-30],[-8,-40],[51,-40],[-16,-73],[-11,-40],[-26,-95],[-32,-28],[-24,-57],[-44,-107],[-14,-44],[-23,-81],[-18,-58],[29,-8],[30,-12],[7,-4],[47,-45],[33,-28],[27,-22],[1,-3],[14,-4],[-32,-155]],[[8365,7322],[-281,-141],[-193,94]],[[1586,1569],[88,-141],[74,-103],[70,34],[34,-15],[-20,-85]],[[1924,1059],[-29,4],[-28,-3],[-37,-9],[-61,-34],[2,-15],[0,-60],[-40,4],[0,-118]],[[994,939],[-2,9],[-2,21],[-2,10],[-16,15],[-6,39],[-9,29],[-17,26],[1,5],[-8,12],[-19,6],[-11,0],[-18,12],[-11,4],[-11,19],[0,35],[-21,28],[-7,1],[-5,18],[-4,25],[1,11],[-2,7],[-9,11],[-4,11],[-6,4],[-12,26],[-4,2],[-4,19],[-9,21],[-6,39],[-5,9],[-8,8],[-12,8],[-7,9],[-31,13],[8,23],[7,58],[29,20],[24,39],[5,12],[8,3],[6,9],[14,10],[12,-6],[9,0],[33,6],[23,3],[22,15],[13,3],[17,22],[5,15],[1,29],[3,14],[4,4],[25,-14],[8,-12],[13,-2],[4,-8],[9,0],[8,-12],[13,1],[6,-4],[3,-8],[9,-4],[5,6],[0,18],[-8,8],[0,24]],[[1448,1737],[82,-101]],[[1530,1636],[56,-67]],[[5156,8021],[13,-52]],[[5169,7969],[-13,9],[-16,30],[-12,13],[-8,6],[-18,5],[-29,-2],[-14,3],[-20,7],[-11,-1],[-58,-25],[-15,-5],[-60,-15],[3,-12],[-9,-5],[-12,-2]],[[4745,7987],[25,11],[-34,18],[-18,21],[-18,35],[-15,48],[-7,37],[-4,24],[-1,20],[3,22],[7,26],[4,8],[9,9],[41,22],[16,5],[19,4],[18,-5],[10,1],[35,9],[18,7],[25,6],[23,1],[19,-2],[23,3],[10,5],[13,21],[9,30],[6,23],[2,23],[2,36],[-1,13],[-4,36],[-11,39],[-14,34],[-24,59],[-6,12],[-17,28],[-12,17],[19,40],[3,10]],[[4990,8550],[47,-133],[15,-19],[62,-67]],[[4792,1510],[65,-32],[13,-3],[38,-15],[27,-14],[-6,-20],[-29,-122]],[[4900,1304],[-39,-123],[-19,6],[-17,9],[-9,7],[-27,27]],[[4330,1465],[-22,13],[-15,6],[-14,8],[-31,33]],[[4207,1657],[12,-3],[10,6],[29,0],[24,-3],[124,-7]],[[4406,1650],[72,-4],[15,-2],[32,-8],[27,-11],[19,-9]],[[2191,2683],[2,-14],[-1,-129],[-303,-3]],[[5650,3129],[55,-111],[13,-43],[0,-15]],[[5718,2960],[-3,-28],[-6,-23]],[[5709,2909],[-6,-23],[-22,-96]],[[5588,2781],[-28,-74],[-16,9],[-49,19],[-7,-55]],[[5488,2680],[-47,62],[1,11],[-36,44],[1,8],[-11,4]],[[5396,2809],[2,5]],[[5546,3078],[8,4],[16,38],[12,-11],[18,33],[-11,15],[21,33],[6,8]],[[5616,3198],[34,-69]],[[2289,4264],[9,-82],[3,-19],[0,-16]],[[2301,4147],[-60,-19],[-46,-13],[-31,-6]],[[2164,4109],[-17,-4],[-13,-9],[-5,-11],[-7,-23],[-9,-19],[-35,23],[-15,7],[-22,9],[-42,14]],[[1999,4096],[10,44],[0,23],[-3,15],[-5,9],[-5,3]],[[5470,7733],[-28,-73],[-21,-50],[21,-33]],[[5281,7489],[-22,96],[-100,-38],[-1,-6]],[[5158,7541],[-3,9],[-25,123]],[[5130,7673],[18,1],[24,-12],[33,106],[11,4],[-5,18]],[[5211,7790],[-4,16]],[[5207,7806],[-22,93],[-16,70]],[[5347,7902],[6,-3],[18,-38],[17,-25],[14,-17],[-6,-9],[7,-8],[-10,-21],[44,-30],[33,-18]],[[5093,2050],[-27,16],[-4,8]],[[5062,2074],[-5,10],[-1,49],[14,11]],[[5070,2144],[15,13],[18,-4],[21,-14],[11,20],[12,47],[6,37]],[[5153,2243],[3,18],[13,42]],[[5169,2303],[18,37],[25,37]],[[5212,2377],[60,-80]],[[5272,2297],[24,-36],[17,-35],[8,-29]],[[4882,2513],[-14,-42]],[[4868,2471],[-50,15],[-12,-47],[-37,61]],[[4769,2500],[13,52]],[[4782,2552],[100,-39]],[[2967,3970],[39,-3],[5,4],[3,58]],[[3052,4025],[-5,-107]],[[3047,3918],[-43,-13]],[[3619,4017],[10,-39],[-36,-6],[-37,6],[-3,-27]],[[3553,3951],[-37,6]],[[4075,4293],[2,-73]],[[4036,4220],[-38,0]],[[3685,4443],[-49,15],[-11,-63],[-24,7]],[[3623,4528],[73,-23]],[[3696,4505],[-11,-62]],[[6453,4072],[23,28],[47,-65],[19,24],[32,-41],[-19,-26]],[[3835,4332],[7,-125]],[[3842,4207],[-1,0]],[[3841,4207],[-4,0],[-60,17]],[[3777,4224],[21,119]],[[3798,4343],[37,-11]],[[5334,6855],[-16,-32],[-19,16],[-13,-22],[-29,69]],[[5257,6886],[54,43],[40,35]],[[5351,6964],[12,-17]],[[3823,2945],[45,5],[13,-8],[16,-21],[3,4]],[[3900,2925],[10,-39],[-35,-14],[7,-28],[-32,-12]],[[3850,2832],[-4,26],[2,12],[-23,20]],[[3825,2890],[-2,55]],[[4539,3698],[-21,18],[-17,16],[-16,41],[-26,-7]],[[4459,3766],[-20,55],[47,27]],[[4486,3848],[38,-88]],[[4524,3760],[1,-3],[28,-31],[-7,-13]],[[4175,4342],[23,-9],[35,-11]],[[4233,4322],[-5,-48]],[[4119,4287],[7,59]],[[4126,4346],[3,14]],[[3726,4239],[21,120]],[[3777,4224],[-25,8]],[[3752,4232],[-26,7]],[[4385,3514],[29,18],[4,7]],[[4418,3539],[5,-13],[62,-119]],[[4485,3407],[-31,-31]],[[4428,3425],[-34,61]],[[3089,4305],[55,-20],[2,-2],[24,-7]],[[3170,4276],[31,-10]],[[3201,4266],[-7,-39],[-23,6],[-5,-18]],[[3166,4215],[-37,16],[-26,11],[-25,0]],[[3078,4242],[11,63]],[[4359,5284],[-15,-44],[-20,11],[-48,22],[-38,9]],[[4238,5282],[6,51]],[[9082,6362],[-2,-21],[-22,-89],[-9,-44],[-7,-51],[-6,-56]],[[9036,6101],[-13,-137],[-12,-160],[8,-109],[-9,-53],[-94,6],[-30,-146],[-56,-279],[-39,-190]],[[8791,5033],[-81,24],[-85,-14]],[[8674,5289],[45,222],[52,260],[-106,-12],[-128,-14]],[[8425,6482],[13,75],[35,169],[29,-8]],[[6342,672],[16,-5],[1,-7],[-5,-16],[7,-9],[9,6],[4,-48],[1,-31],[-1,-85],[-1,-16],[2,-61],[1,-32],[4,-35],[5,-27],[21,-65],[25,-76],[18,-66],[-48,24],[-28,8],[-33,7],[-33,8],[-47,15],[-48,20],[-54,27],[-23,13],[-43,31],[-9,-24],[-11,-37],[-16,-24],[-25,-34],[-45,-2],[-177,-11],[19,-66],[9,-37],[-58,-5],[-56,-12],[-19,79],[-11,34],[-10,11],[-31,19],[-16,5],[5,34],[2,17],[-23,5],[-21,7],[-26,11],[-108,44],[-59,21],[-9,1]],[[5397,288],[-2,5],[-19,18]],[[6800,1016],[-120,-11],[-14,0],[-42,-6],[-35,-3],[-62,-6],[-98,-10]],[[6069,1775],[64,116]],[[6133,1891],[20,-61],[39,72],[8,-8],[78,152],[-21,22],[22,35]],[[6513,2103],[-34,-150],[-4,-18],[-10,-27],[-7,-9],[102,-92],[10,-9],[22,-16],[170,-88]],[[6762,1694],[116,-60],[45,-34]],[[3493,6789],[10,-26],[33,-48],[11,-9],[9,-5],[5,1],[27,-8],[9,-4],[11,-12],[5,-22],[-13,-14],[7,-7],[-3,-10],[6,-3],[1,-9],[27,-26]],[[3527,6322],[-6,3],[-24,18],[-19,12],[-46,21],[-22,14],[-22,9]],[[2661,6954],[21,16],[10,15],[6,11],[23,28],[4,3],[31,12],[30,9],[15,24],[14,30],[22,32],[0,26],[-40,52],[-30,54],[-17,-3],[-13,0],[-24,-12],[-13,-2],[-23,2],[-24,1],[-8,3],[-8,11],[-6,20],[-2,16],[3,9],[26,20],[10,11],[8,14],[5,24],[6,19],[4,20],[9,24],[9,9],[22,10],[19,9],[16,23],[8,2],[15,1],[29,12],[11,6],[12,15],[6,3],[16,-3],[55,-6],[26,16],[15,4],[9,24],[12,12],[14,4],[1,5],[33,-9],[-12,-22],[23,-9],[9,-7],[29,-11],[23,-17],[23,-5],[11,4],[24,21]],[[8419,6484],[-32,9],[-77,1],[-88,10],[4,58],[-29,23],[-109,47],[2,36],[26,66],[-43,43],[-13,7],[-15,16],[-26,20],[-36,-106],[-1,-41],[-47,17],[0,-49],[-76,1],[-4,-136]],[[7756,6518],[26,97],[10,43],[18,80],[-42,16],[52,154],[-37,45],[108,322]],[[8365,7322],[74,-20],[86,-22],[41,-117],[23,-9],[6,-8],[32,-18],[33,-16],[39,-14],[36,-17],[53,-18]],[[6100,4609],[94,104]],[[5838,4080],[12,11],[12,19],[11,5],[11,-2],[12,-6],[12,-20],[4,34],[-1,31],[2,23],[4,21],[8,19],[18,29],[25,57],[22,58],[19,58],[38,109]],[[1921,2067],[0,-3],[25,8],[105,-19],[84,-61]],[[2135,1992],[-23,-89],[-9,-12],[-7,-16],[-25,-65],[0,-11],[4,-18],[3,-68],[9,9],[49,35],[87,-64]],[[2223,1693],[-23,-92],[-1,-7]],[[2199,1594],[-69,54],[-23,10],[-32,6],[-8,-2]],[[2067,1662],[-10,2],[-68,42],[-56,-7],[-3,-3],[-54,2],[-70,10],[-19,3],[-13,6],[-21,5],[-3,-1],[-203,91]],[[3405,6041],[0,-3],[-22,-73],[0,-5],[13,-13],[2,-13],[-28,16],[-27,-75],[-12,3],[-4,-2]],[[3327,5876],[-36,-8],[-12,-6]],[[2840,5943],[-34,-1],[-14,0],[-15,4],[-77,-13],[-22,9],[-19,4],[-14,4],[-26,13],[-7,1],[-35,27],[1,13],[8,15],[7,4],[20,18],[5,-2],[5,7],[6,2],[24,16],[11,4],[6,-1],[14,6],[19,1],[8,7],[8,1],[-2,36]],[[3221,6219],[-4,-26],[7,-9],[26,-25],[5,-12],[9,-12],[18,-17],[31,-20],[26,-13],[18,-12],[45,-30]],[[3402,6043],[3,-2]],[[4391,2256],[76,-41],[93,-49]],[[4560,2166],[-7,-19],[-13,-48],[-15,-61]],[[4525,2038],[-20,-74],[-15,-54],[-36,-101]],[[4454,1809],[-20,-65]],[[4434,1744],[-65,-1],[24,69],[8,10],[11,33],[-65,38]],[[4347,1893],[-33,19],[-14,-3]],[[4300,1909],[-5,17],[-59,27],[-15,5],[-70,40],[-21,17],[-43,28]],[[4187,2340],[74,-39],[24,5],[30,-15],[74,-39],[2,4]],[[4376,625],[-15,10],[-56,48],[-20,22],[-13,12],[-23,7],[-29,11],[-25,12],[-15,4],[-17,0],[-10,2]],[[4158,925],[23,-1],[24,75]],[[4205,999],[13,-7],[-3,-12],[66,-31],[25,94],[8,34],[-7,98],[-40,20]],[[4267,1195],[21,67],[2,3],[21,67],[21,69]],[[6915,4194],[5,58],[46,101],[16,-12],[54,123]],[[7352,4478],[87,-187]],[[7513,6317],[104,-87]],[[7617,6230],[-63,-127]],[[7554,6103],[-22,-46],[-24,-50]],[[7508,6007],[-46,-96],[51,-40],[-7,-14],[5,-16],[4,1]],[[7515,5842],[2,-8],[52,-21],[-13,-57],[-5,2],[-14,-61],[-47,18],[-74,-9],[5,-79]],[[7421,5627],[-8,-1],[-14,-42],[-53,-236]],[[7258,5606],[41,5]],[[7339,5688],[-4,55],[58,7],[-2,35],[-26,-10],[-122,-44]],[[7371,6023],[79,166]],[[7450,6189],[63,128]],[[6520,7689],[-84,-36]],[[6372,7625],[-2,10],[15,115],[19,150]],[[6496,8181],[-2,18],[15,119],[-6,9],[1,8],[8,36],[11,55]],[[6534,8498],[69,-61],[28,-26],[20,-21],[45,-42],[33,-28],[8,-9]],[[6737,8311],[-59,-36],[-28,-20],[-52,-33],[4,-17],[10,-25],[-3,-4],[-14,-134],[-9,-103],[30,13],[40,17]],[[6641,7741],[-121,-52]],[[5843,6548],[43,-31],[19,-18],[6,14],[-3,2],[23,90]],[[5931,6605],[65,0]],[[5996,6605],[49,0],[21,-4],[91,-28],[41,-13],[27,-17]],[[6225,6543],[-3,-59]],[[6222,6484],[-4,-110]],[[6218,6374],[0,-23],[0,-61],[-3,-11],[-11,-8],[-16,-3]],[[6188,6268],[-28,-10],[-30,-8],[-10,6],[-26,3],[-38,-7],[-16,-4],[-18,-1],[-35,4],[-19,4],[-4,-9],[-45,-9]],[[5919,6237],[-72,-16]],[[5768,6373],[48,112]],[[5816,6485],[27,63]],[[2311,2385],[-23,1]],[[5684,7059],[59,92],[54,79],[49,68],[26,33],[23,24]],[[5859,6750],[-24,16]],[[5835,6766],[-53,34],[-11,-21]],[[5771,6779],[-24,20],[-23,21],[14,25],[-17,20]],[[5613,6833],[-36,32]],[[5577,6865],[43,77]],[[6189,3009],[-37,20],[-22,1],[-5,-5],[-89,-32]],[[6036,2993],[-4,14],[-34,-16],[-17,-4],[-30,4],[-4,2],[4,36],[15,-2],[14,0],[5,-31],[11,5],[-1,8],[17,7],[-3,14],[-14,-1],[-5,33],[8,8],[-3,4],[13,14],[-19,11],[1,5],[-31,18],[-20,18],[-8,10],[-10,20],[-11,37],[-5,13],[-10,19],[23,48]],[[5943,3274],[35,-24],[3,-8],[-1,-16],[20,-2],[4,5],[22,-19],[11,-7],[16,-14],[8,9],[9,21],[11,16],[17,19],[5,23],[-28,7],[-14,4],[3,27],[10,31]],[[6291,3319],[-72,-219],[-30,-91]],[[5604,7321],[-37,-129],[-116,44],[-13,-2]],[[5470,7733],[2,3]],[[5472,7736],[20,-10],[16,-16],[2,-10],[7,1]],[[5594,7617],[87,-46]],[[5681,7571],[-6,-20],[-10,-42],[-7,-14],[-8,-26],[-11,-41],[-30,-95],[-5,-12]],[[4111,4829],[-53,20],[-11,2]],[[4047,4851],[8,26],[8,34],[-7,4],[14,70]],[[4070,4985],[11,49]],[[4081,5034],[6,33],[10,15],[58,29]],[[4155,5111],[19,10],[7,-5],[16,10],[10,9]],[[4207,5135],[44,-35],[-14,-34],[-4,2],[-5,-10],[39,-31],[44,-19]],[[4311,5008],[-17,-71],[62,44]],[[4356,4981],[4,-12],[29,15],[6,-7],[26,-44],[-31,-22],[7,-19]],[[4397,4892],[6,-15],[5,-20],[6,-26],[-35,-10],[4,-47],[-6,-7],[4,-37]],[[4381,4730],[-33,1],[-21,3]],[[4327,4734],[-52,6]],[[4275,4740],[13,171],[4,15],[-34,12],[-10,-8],[-5,-13],[9,-34],[-8,-8]],[[4244,4875],[-46,-19],[-44,6],[-43,-33]],[[2067,1662],[-16,-19],[-47,-44],[-38,-39],[-7,-10],[-8,-41]],[[1951,1509],[-99,34],[-43,23],[-30,25],[-13,7],[-25,9],[-26,16],[-11,5],[-14,-8],[-6,0],[-15,9],[-51,8],[-13,-4],[-2,2],[-73,1]],[[1896,4269],[10,-65],[3,-26],[-6,-72],[-16,5],[-11,6],[-27,26],[-10,-19],[-26,-12],[-9,-7],[-6,-13],[-3,-14],[-3,-47],[-5,-18]],[[1788,4299],[4,23],[5,43],[1,24],[8,14],[8,10],[17,15]],[[1586,1569],[194,-83],[93,-41],[7,-13],[5,-28],[0,-12],[67,-2],[55,-21],[28,-6],[28,-2],[61,-3],[22,0],[14,1],[16,7],[4,49]],[[2180,1415],[5,-16],[35,-45],[7,-19],[4,-33]],[[2231,1302],[6,-36],[1,-50]],[[2238,1216],[-56,10],[-36,14],[-31,2],[-2,9],[-80,48],[-60,6],[-23,9],[-13,-97]],[[4233,4322],[51,-4]],[[4284,4318],[4,0]],[[4288,4318],[0,-52]],[[4288,4266],[0,-53],[-4,1]],[[4284,4214],[-61,3]],[[4776,5516],[36,12],[-6,37],[1,4],[-7,47],[38,9]],[[4838,5625],[6,-44]],[[4844,5581],[9,-74]],[[4853,5507],[-20,-10]],[[4833,5497],[-33,-16],[-18,-10]],[[4782,5471],[-6,45]],[[4094,4448],[3,72],[2,8]],[[4099,4528],[75,-33]],[[4174,4495],[2,-27],[8,-53],[-5,2]],[[4121,4441],[-27,7]],[[4717,3031],[1,74]],[[4718,3105],[45,-3]],[[4762,2963],[-46,5]],[[4284,4214],[10,-97]],[[4294,4117],[-11,3],[-57,-6]],[[4226,4114],[-3,103]],[[3142,3769],[30,-4],[-4,47],[28,0]],[[3196,3812],[1,-1]],[[3197,3811],[10,-19],[5,-12],[4,-21],[-1,-30],[-4,-12],[-8,-22],[-55,9]],[[3148,3704],[-6,65]],[[4095,3738],[25,15],[39,-73],[16,15]],[[4211,3625],[-16,-38]],[[4195,3587],[-9,-5]],[[4186,3582],[-46,80]],[[4140,3662],[-45,76]],[[5119,4727],[65,69],[7,7]],[[5191,4803],[16,-30],[33,31],[16,-29]],[[3698,4374],[49,-15]],[[3726,4239],[-25,7]],[[3677,4253],[21,121]],[[4328,4328],[-40,-10]],[[4284,4318],[-19,152]],[[4265,4470],[40,-4]],[[4305,4466],[23,-138]],[[4635,2736],[62,-8]],[[4697,2728],[-6,-77]],[[3384,4465],[43,52],[11,64]],[[3438,4581],[26,-7]],[[3464,4574],[27,-8]],[[4421,3178],[-40,-27]],[[4381,3151],[-29,-20]],[[4352,3131],[-30,74]],[[4383,3248],[25,-46]],[[4408,3202],[13,-24]],[[4140,3662],[-23,-18],[-28,51],[-15,6],[-4,-3]],[[4043,3765],[-23,55]],[[4020,3820],[19,7]],[[4039,3827],[4,2]],[[4043,3829],[52,-91]],[[5291,4642],[8,33],[-4,42]],[[5285,4799],[6,50]],[[5291,4849],[14,-9],[16,-4]],[[5321,4836],[-6,-29],[1,-18],[4,-33],[9,-63],[-1,-25],[-7,-41]],[[5321,4627],[-30,15]],[[3100,4371],[35,-9],[26,-3],[28,-16],[-14,-25],[2,-6],[-7,-36]],[[3089,4305],[11,66]],[[3820,4468],[9,50],[5,47]],[[3834,4565],[61,-14]],[[3895,4551],[-7,-56],[-7,-44]],[[3881,4451],[-61,17]],[[4186,3582],[-33,-21],[-18,-6]],[[4135,3555],[-37,76]],[[3628,4268],[21,120],[25,-7]],[[3674,4381],[24,-7]],[[3412,4929],[-29,19]],[[3384,5021],[26,62]],[[3410,5083],[50,-35]],[[5724,6691],[-5,10],[-39,46],[-37,42],[-17,27]],[[5643,6830],[52,-58],[15,24],[46,-46]],[[5756,6750],[-14,-27],[-15,-23],[-3,-9]],[[4078,4324],[1,28],[3,16],[44,-22]],[[4628,7526],[45,-110]],[[4673,7416],[85,-206]],[[4758,7210],[-113,-38]],[[4645,7172],[-20,-2],[-89,140],[-17,0],[-43,18],[-17,-4],[-8,1],[-31,10],[-29,11],[-5,-1],[-1,-9]],[[4004,8079],[106,86],[3,10],[15,13],[-28,55],[-8,13],[-15,31],[-4,4],[-22,33],[-24,29],[63,27],[112,47],[51,-125],[85,-206],[62,-17]],[[6617,2440],[12,5],[79,37],[53,31],[54,32],[55,36],[22,30],[35,136],[17,54],[5,11],[18,50],[-79,32],[1,14],[76,58]],[[7460,2638],[4,-44],[-1,-17],[-6,-13],[-9,-6],[-14,-33],[-3,-30],[1,-20],[-1,-13],[-24,-105],[-15,-58],[-6,-22],[-12,-26],[-17,13],[-21,12],[-30,15],[-149,62],[-13,-34],[-8,-26],[-18,-64],[25,-3],[13,-5],[31,-5],[14,2],[-6,-33],[-6,-37],[1,-23]],[[7190,2125],[-58,-23],[-5,-1],[-67,-6],[-18,-6],[-24,-25],[-52,4]],[[6966,2068],[-49,4],[-83,15]],[[6834,2087],[-15,2]],[[6819,2089],[-96,17]],[[6409,2434],[5,80],[3,4]],[[6281,2778],[-99,58],[-9,-1],[20,-100],[6,-22],[23,-4],[7,10]],[[6242,2638],[-25,36],[-17,0],[-32,-66],[-62,64],[-26,-2],[-4,3]],[[6076,2673],[113,336]],[[7653,6298],[-36,-68]],[[7513,6317],[99,206],[-108,0],[-36,1],[-62,-118]],[[7406,6406],[-65,-123]],[[7341,6283],[-91,-173]],[[7141,6209],[78,120],[46,80],[50,103],[16,37],[30,83],[28,95],[20,87],[13,84],[4,41],[-1,37],[-12,72],[1,24],[11,49],[26,101],[5,37],[2,38],[-2,45],[-5,38],[-15,54],[-17,38],[-20,47],[-17,72],[16,60]],[[7751,5774],[7,33],[69,178]],[[7827,5985],[5,24],[12,51],[11,40],[9,26],[40,116]],[[8051,5692],[-186,-21]],[[7865,5671],[-142,-16]],[[7723,5655],[28,119]],[[5895,7355],[34,36],[10,8]],[[5939,7399],[23,19],[31,22],[46,31]],[[6416,7087],[-57,-8]],[[6215,7059],[-55,-8],[-22,-2],[-32,-7],[-31,-14],[-76,-35]],[[4815,7072],[-57,138]],[[4673,7416],[169,112],[22,17],[14,-32],[37,-91],[9,7],[59,26],[-3,11],[71,32],[32,16]],[[5083,7514],[20,-74],[39,-16],[-4,-11],[-17,-41],[-8,-12],[-18,-26],[-15,-25],[-11,-27]],[[5069,7282],[-2,-4],[-64,-96],[-5,-5],[-11,-1]],[[4987,7176],[-172,-104]],[[6096,7785],[27,64]],[[6123,7849],[49,115]],[[5939,7399],[8,74],[15,-2],[2,24],[-3,10],[15,28],[-111,96]],[[5865,7629],[18,35]],[[5883,7664],[112,-96],[10,19]],[[6005,7587],[18,-16],[11,20],[55,-53],[3,11],[8,72],[10,74],[-34,30],[-5,3]],[[6071,7728],[25,57]],[[5155,6342],[-46,89],[-49,100]],[[4989,6678],[167,130],[101,78]],[[5355,6839],[22,-12]],[[5377,6827],[-18,-39],[26,-23],[-38,-82],[18,-42]],[[5365,6641],[0,-2]],[[5681,7571],[21,68]],[[5702,7639],[26,-5],[4,11],[25,-5],[0,-12],[27,-5],[1,10],[25,-10],[13,43]],[[5823,7666],[42,-37]],[[5668,7067],[2,22],[0,24],[-2,19],[-4,25],[-6,22],[-21,68],[-12,34],[-21,40]],[[2932,566],[-33,8],[-220,58],[-10,1]],[[2669,633],[3,75],[-52,3],[6,48],[-1,24],[-9,27],[-10,-4],[-18,1],[4,88]],[[2592,895],[21,-1],[8,4],[61,83],[-48,30],[3,17]],[[2637,1028],[2,15],[24,-13],[4,6],[52,-27],[23,-11],[13,-10],[20,-7]],[[4987,7176],[24,-22],[14,-9],[19,30],[15,-21],[10,-37],[15,-42],[24,-23],[4,4]],[[5112,7056],[12,-48],[35,17],[11,-45],[39,18]],[[5209,6998],[26,-60]],[[5235,6938],[22,-52]],[[2223,2197],[-24,-72],[42,-24],[-18,-52],[-35,-99]],[[2188,1950],[-42,34],[-11,8]],[[2279,2268],[-11,-16],[-6,-6],[-14,-7],[-11,-2],[-14,-40]],[[3771,5777],[10,10],[18,15],[16,10],[-1,8]],[[3814,5820],[46,0]],[[3860,5820],[81,0],[0,-158],[41,0]],[[3982,5662],[0,-119],[44,-23],[-23,-85]],[[4003,5435],[-111,55]],[[3892,5490],[-105,50],[-8,13],[-33,71],[-15,-21],[-16,-32],[-8,-3]],[[3707,5568],[-5,27]],[[3702,5595],[-17,74]],[[3685,5669],[-11,50],[35,-25],[24,38],[18,24],[20,21]],[[7949,5239],[-56,20],[-112,40]],[[7815,5443],[50,228]],[[7524,2584],[-31,-115],[-39,-144],[-8,-27],[-8,-35],[-5,-27],[-4,-42],[-16,-28],[-10,-12],[-78,-70],[-24,-29]],[[7301,2055],[-8,5],[-28,0],[-49,-2],[1,30],[-4,46],[-23,-9]],[[4645,7172],[0,-32],[-7,1],[-24,11],[-1,-7],[11,-6],[-16,-45],[23,-15],[-42,-63],[2,-11],[8,3],[6,-41],[10,3],[4,-28],[0,-16],[3,-11],[-3,-22]],[[4619,6893],[-5,-5],[-29,-17]],[[4125,4027],[1,-53]],[[4126,3974],[-47,-14]],[[4668,2368],[16,90],[20,-5]],[[4753,2438],[-11,-40],[-15,-48]],[[4727,2350],[-39,12],[-20,6]],[[4924,5540],[25,-79],[-4,-5]],[[4945,5456],[-1,3],[-20,19],[-24,-13],[-47,-26],[-20,58]],[[4853,5507],[31,15],[40,18]],[[4008,2968],[-9,33]],[[3999,3001],[80,41]],[[4104,3055],[18,-45],[-24,-16],[14,-35],[-27,-18]],[[5771,6779],[-15,-29]],[[4275,4740],[2,-79]],[[4277,4661],[-66,-5]],[[4211,4656],[-12,65],[9,10],[11,6],[-4,15]],[[4215,4752],[60,-12]],[[4273,3262],[16,-41]],[[4289,3221],[-54,-82]],[[4235,3139],[-9,-7]],[[4230,3233],[43,29]],[[4644,2845],[36,-5]],[[4732,2834],[-2,-31]],[[4730,2803],[-88,12]],[[4564,2781],[6,74]],[[4570,2855],[24,-3]],[[4730,2803],[-3,-43]],[[4727,2760],[-27,3],[-3,-35]],[[5732,3135],[33,-54],[20,-36],[16,16],[10,14],[20,-34]],[[5831,3041],[-28,-26],[38,-63],[10,-24]],[[5851,2928],[-15,-7]],[[5836,2921],[-7,13]],[[5829,2934],[-51,84]],[[5778,3018],[-28,49],[-33,54]],[[5717,3121],[15,14]],[[5296,3570],[-5,-3],[-6,-38],[-42,5]],[[5206,3602],[84,-4]],[[5290,3598],[6,-28]],[[4452,3848],[-36,-14],[-15,-9]],[[4401,3825],[-25,27],[-12,-9],[-16,3],[4,49]],[[4352,3895],[28,13]],[[4410,3922],[42,-74]],[[3891,5320],[8,26],[-30,19],[4,28]],[[3873,5393],[37,-15],[24,-14],[35,-14]],[[3969,5350],[-14,-81]],[[3955,5269],[-64,51]],[[5138,3442],[8,69]],[[5237,3499],[-6,-30],[-6,-35]],[[5225,3434],[-87,8]],[[3903,4614],[21,122]],[[3924,4736],[37,9]],[[3961,4745],[-4,-140]],[[3957,4605],[-54,9]],[[4238,5282],[-4,-14],[-2,-18],[1,-15]],[[4233,5235],[-50,16]],[[4183,5251],[-46,15],[-6,5],[-15,20],[-17,7],[-13,3],[4,21]],[[4090,5322],[6,-2],[18,1]],[[4114,5321],[11,-1],[42,-20],[21,-6],[50,-12]],[[7049,6249],[74,303]],[[7123,6552],[7,28],[-120,72]],[[6946,6690],[13,33],[20,54],[30,89]],[[7401,7687],[6,-5]],[[8389,2003],[-128,-45],[-24,-8],[-25,-11],[-128,-42],[-83,-27],[-12,21],[-44,34],[-71,73],[-25,-25],[-11,-14],[-8,-14],[-33,-49],[-14,-23],[-15,-20],[-27,-33],[-89,31],[-116,36],[7,-20],[-12,3],[-15,14],[-19,4],[-14,12],[1,-14]],[[7269,1946],[12,30],[6,20],[14,59]],[[5919,6237],[14,-12],[114,-98],[65,-103],[67,-105]],[[6174,5422],[-46,-7],[-12,-14],[-31,45],[-5,-7]],[[6080,5439],[-60,84],[-13,15],[-16,11],[-37,-43]],[[5954,5506],[-10,13],[-8,-7],[-5,-8],[-14,-19],[3,-10],[-15,-24]],[[5735,5366],[-60,89],[-42,62]],[[5633,5517],[-33,51],[-35,55],[-49,78]],[[5516,5701],[-50,83]],[[5773,5722],[-40,-40],[-5,-2],[-15,-13],[18,-31],[5,-4],[8,-15],[11,11],[24,-38],[31,6],[-15,24],[25,26],[-18,29]],[[6020,5710],[17,-28],[114,121],[-32,52],[-15,-15],[-15,-17],[-16,-23],[-16,-26],[-14,-27],[-14,-26],[-9,-11]],[[5267,3430],[15,-2],[49,-17],[20,-14]],[[5351,3397],[7,-5],[31,-32],[30,-45]],[[5419,3315],[-2,-5],[3,-20],[19,-31],[29,-43],[4,-9]],[[5285,2963],[-22,32],[-116,180],[-19,39],[-14,51],[-4,9],[-23,42],[-15,23]],[[5072,3339],[-18,32],[-5,11],[-9,34],[-1,16]],[[5052,3437],[63,6],[23,-1]],[[5225,3434],[42,-4]],[[6454,6140],[-25,-45],[-20,-24],[-19,-20]],[[6188,6268],[0,-39],[27,-18],[-32,-69],[13,-10],[67,71],[-24,26],[30,47],[7,5]],[[6276,6281],[99,-75],[5,231]],[[6380,6437],[1,54]],[[6381,6491],[95,-19]],[[6476,6472],[-4,-37]],[[6433,6370],[-8,1],[-10,-110]],[[6464,6158],[-10,-18]],[[6816,6330],[-9,52],[23,-1],[35,55]],[[6865,6436],[17,18],[22,13],[73,35],[67,30],[60,24],[19,-4]],[[6940,5825],[-45,38],[-17,6],[20,81],[-43,37],[4,7],[-43,23],[10,26],[5,12]],[[6831,6055],[12,-8],[32,-26],[59,101],[-50,65],[-45,73]],[[6839,6260],[-14,27],[-4,12],[-5,31]],[[5129,5285],[-36,-25],[-5,-1]],[[4945,5453],[0,3]],[[4924,5540],[37,18],[-23,61],[-20,44]],[[4918,5663],[-19,48],[2,16],[38,35]],[[4939,5762],[26,-28],[14,-10],[13,-12],[55,-63],[34,-39],[11,-5]],[[5211,5378],[-2,-10],[-80,-83]],[[3408,1236],[11,12],[35,47],[4,3],[104,-9]],[[3562,1289],[2,-13],[16,-2]],[[3655,1271],[43,-1],[26,1]],[[3647,959],[-39,12]],[[3608,971],[-59,48],[-37,34],[-34,31],[-59,61]],[[3047,5720],[-12,-14],[7,-5],[-17,-40],[-28,-66],[-22,-22],[-4,-8],[-16,-45],[-11,-40]],[[2944,5480],[-42,17],[-42,23],[-8,12],[-47,57],[-22,20],[-11,15],[-11,22],[-6,26]],[[2755,5672],[-8,33],[0,36]],[[2747,5741],[23,-4],[12,1],[15,9],[15,24],[9,16],[17,12]],[[5207,7806],[-6,-3],[-46,43],[-29,23],[-18,23],[-25,-11],[19,-129]],[[5102,7752],[-28,-8],[-9,-5],[-29,-26],[-16,18],[-28,24]],[[4010,4099],[-5,47]],[[5843,3053],[37,-61],[18,-33],[2,-9]],[[5900,2950],[-45,-21]],[[5855,2929],[-4,-1]],[[5831,3041],[12,12]],[[4556,2462],[49,-17],[-5,-55]],[[4600,2390],[-9,-59]],[[4591,2331],[-48,13]],[[4543,2344],[13,118]],[[4226,4096],[-53,1]],[[4226,4114],[0,-18]],[[3141,4603],[-11,-62]],[[3130,4541],[-30,9],[8,70]],[[3159,4717],[-8,-51]],[[3151,4666],[-10,-63]],[[3376,4467],[-2,1]],[[3374,4468],[2,131]],[[3378,4598],[60,-17]],[[4755,4916],[-17,23],[-14,26]],[[4724,4965],[28,32],[33,51]],[[4823,5018],[-68,-102]],[[5296,3570],[3,-27],[0,-16],[-2,-21],[-6,-28],[-8,-21],[-8,-19],[-8,-8]],[[4918,6290],[19,-38],[12,9],[22,-45],[-21,-16],[-44,11]],[[4906,6211],[-16,6],[-52,8]],[[6546,5840],[21,-36],[-23,-52],[-65,52]],[[5021,5772],[-31,-30],[-33,36]],[[4957,5778],[-39,47],[21,22],[20,19],[3,5]],[[4962,5871],[59,-99]],[[4211,3625],[56,-80],[4,-8],[9,-30]],[[4214,3484],[4,45],[-23,58]],[[5843,3053],[12,18]],[[5855,3071],[11,19],[12,-1],[5,-4],[24,-25],[-18,-25],[50,-55],[6,-9]],[[5945,2971],[-45,-21]],[[3457,3965],[-55,53]],[[3467,3965],[-10,0]],[[4025,3548],[1,3],[-10,40],[37,16]],[[4135,3555],[-21,-4]],[[4114,3551],[-22,11],[-10,1],[-38,-13],[-19,-2]],[[4577,6570],[1,-12],[21,-9]],[[4599,6549],[-17,-86]],[[4582,6463],[-12,-3],[-14,3],[-30,4]],[[8780,4979],[11,54]],[[9036,6101],[49,-2],[36,0],[72,0],[29,-2],[36,-3],[-9,-118],[41,-21],[83,-42],[-10,-47],[-30,-135],[-16,-69],[-15,-57],[-14,-75],[-12,-68],[-10,-62],[-14,-96],[-9,-54],[-18,-100],[-6,-54],[-5,-54],[5,-55]],[[4900,1304],[111,-40],[53,-17],[10,-6]],[[5397,288],[-25,4],[-15,7],[-46,14],[-25,9],[1,11],[-10,9],[-100,39],[-33,15],[-23,9],[-38,8],[-26,4],[-65,13],[-30,10],[-48,7],[-68,5],[-52,6],[-28,10],[-33,10],[-41,13],[0,10],[-41,12],[3,11],[-9,2]],[[3089,4939],[26,-5],[21,-8],[9,-6],[33,-33]],[[3178,4887],[0,-9]],[[3178,4878],[-70,12],[-4,-45],[-26,4]],[[2896,4915],[-49,6],[-16,0],[-21,-5],[-15,-2],[-18,-1],[-8,2],[-17,8],[-12,2],[-17,0]],[[1814,5056],[8,13],[15,13],[11,17],[6,12],[8,2],[5,11],[12,9],[2,7],[9,4],[7,26],[13,17],[12,24],[7,5],[2,8],[23,-4],[18,5],[13,-7],[14,-4],[34,19],[4,6],[14,10],[19,5],[1,8],[7,0],[11,6],[13,11],[11,3],[28,23],[12,2],[25,-2],[9,4],[16,2],[7,-4],[14,0],[14,5],[21,2],[6,5],[78,5],[42,5],[6,-12],[6,0],[7,-5],[21,1],[12,-7],[16,-7],[6,-10],[20,-11],[10,-1],[5,-7],[13,-12],[24,-27],[7,-20],[21,-23]],[[2715,5097],[8,-6],[20,-6],[23,-11]],[[2766,5074],[13,-11],[15,-14],[17,-20],[18,-15],[26,-12],[9,19],[12,20],[23,-12],[18,-5],[12,-1],[13,-5],[12,-9],[17,-25],[22,-23],[19,-11]],[[2755,5672],[-16,6],[-63,-5]],[[2676,5673],[-47,-4],[-28,-13],[-21,-18],[-26,-8],[-16,-7],[-9,8],[-57,-1],[-23,4],[-77,-13],[-35,-14],[-32,48],[-32,37],[-37,48],[-29,35],[-3,36],[0,21],[-6,6]],[[1890,5956],[-4,50],[0,15],[8,-7],[6,22],[-6,68],[4,9],[11,11],[14,18],[6,14],[2,33],[5,52],[7,18],[9,-4],[11,-10],[21,-1],[17,-14],[13,33],[12,-8],[13,15],[10,18],[2,19],[5,0],[12,-12],[4,2],[-1,18],[18,10],[12,14],[6,10],[3,19],[-6,15],[-9,33],[40,33]],[[2135,6449],[24,-4],[18,-6],[17,-15],[29,-10],[13,-3],[33,-19],[4,-14],[15,-16],[2,-5],[6,-20],[4,-5],[16,-15],[57,-47],[8,-9],[13,-23],[11,-17],[27,-47],[-3,-10],[-20,-35],[-1,-9],[32,-39],[20,-10],[12,-13],[0,-8],[-7,-12],[-9,-19],[-2,-10],[13,-17],[99,-67],[41,-51],[20,-23],[21,-14],[45,-37],[40,-40],[14,-19]],[[1685,4655],[-39,-9],[-74,-21],[-21,-12],[-13,-16],[-3,-21],[4,-50],[-2,-3],[-23,-23],[-12,-18]],[[7600,5644],[-9,-44],[-48,-215],[-55,-235],[-14,-14],[7,-15],[28,-48]],[[7509,5073],[-17,-44],[-48,33],[-90,60],[-65,45]],[[7289,5167],[16,37],[-9,6]],[[7421,5627],[179,17]],[[6980,4979],[6,77],[8,15]],[[6994,5071],[20,-27],[15,-13]],[[7029,5031],[14,-10]],[[7043,5021],[-32,-54],[47,-74],[12,-14],[22,-18]],[[7006,4504],[-64,132],[-6,9],[-5,1]],[[6755,5084],[63,-37]],[[6818,5047],[-3,-20],[1,-12],[12,4],[36,-6],[46,-11]],[[6910,5002],[-11,-102],[-5,-28],[-6,-25]],[[6888,4847],[-19,-52],[-2,-27],[-6,-22],[50,-12],[27,-13],[7,45],[14,67]],[[6959,4833],[13,68],[8,78]],[[6008,2380],[13,-17],[18,-32],[-18,-18],[2,-15],[12,-14]],[[6035,2284],[-34,-53],[12,-5],[25,-21],[4,-4]],[[6042,2201],[10,-12],[9,-16],[10,-31],[9,-40],[7,-44]],[[6087,2058],[5,-26],[12,-46],[18,-60]],[[6122,1926],[11,-35]],[[5839,2402],[10,-16],[11,-17]],[[5860,2369],[48,-69],[58,-87],[11,12],[29,129],[2,26]],[[9010,4259],[-8,-19],[-13,-59],[-5,-43],[-14,-69],[-4,-20],[-5,-11]],[[7568,4981],[-3,0]],[[7565,4981],[-56,92]],[[7600,5644],[33,2]],[[7633,5646],[90,9]],[[4043,6420],[-41,21],[-28,-35],[-50,-47]],[[3811,6599],[33,-21],[47,-24],[19,-10],[18,-14],[12,-10],[12,13],[16,9],[9,8],[41,-25],[8,-10],[7,-21]],[[4033,6494],[10,-74]],[[5396,2809],[-26,-2],[-67,19]],[[5303,2826],[-30,9],[-48,18]],[[5225,2853],[-12,6]],[[5213,2859],[-1,27],[-49,44],[-40,29],[-25,16],[-30,16],[-6,8],[-2,9],[7,35],[-7,3],[-22,-7],[-7,-5],[-34,-12]],[[4992,3074],[63,9],[3,6],[-9,29],[13,10],[-21,25],[-7,7],[-19,45],[1,14],[12,67],[5,9],[39,44]],[[1951,1509],[62,-22],[13,-9],[8,-2],[22,0],[33,-9],[7,53],[93,-1]],[[2189,1519],[-7,-60]],[[2182,1459],[-2,-44]],[[9066,4722],[18,-6],[-74,-265],[-58,-148]],[[4860,1645],[15,-4],[32,-21],[12,37],[24,-14],[36,-18],[31,-12],[20,-5],[1,-52],[36,1]],[[5067,1557],[4,-169]],[[5071,1388],[3,-147]],[[7580,6086],[-26,17]],[[7827,5985],[-26,-17],[-14,-4],[-30,-12]],[[7757,5952],[-3,15],[-7,8],[-77,54]],[[5342,3651],[26,-21],[18,-16]],[[5386,3614],[36,-40],[50,-60],[34,-45]],[[5506,3469],[-5,-15]],[[5501,3454],[-20,30],[-14,15],[-1,7],[-60,46]],[[5406,3552],[-81,62]],[[5325,3614],[17,37]],[[5143,2890],[70,-31]],[[5225,2853],[-25,-106]],[[5938,7799],[-61,6]],[[5877,7805],[-33,42],[2,28]],[[5941,7866],[-3,-67]],[[4120,4364],[-81,32]],[[4039,4396],[6,66]],[[4045,4462],[49,-14]],[[5230,3742],[6,24],[67,-21],[33,-10],[5,-4]],[[5341,3731],[-30,-56],[-35,21],[-52,23],[6,23]],[[5954,5506],[35,-51]],[[5989,5455],[-8,-11],[4,-6],[-39,-46]],[[4401,3825],[-14,-14],[-12,-16],[-10,-19],[-4,-14]],[[4321,3870],[31,25]],[[4637,2469],[-10,-88]],[[4627,2381],[-27,9]],[[4556,2462],[6,50],[23,-8]],[[4868,2471],[-21,-68]],[[4847,2403],[-45,17],[-49,18]],[[3073,3417],[26,-8],[14,-4],[39,-2],[63,-3],[57,-3]],[[3272,3397],[46,-5],[27,-9]],[[3345,3383],[24,-8],[44,-16],[82,-43]],[[3495,3316],[-21,-81],[-1,-10]],[[3473,3225],[-6,-80]],[[3467,3145],[-100,-271]],[[3367,2874],[-30,-83]],[[3337,2791],[-22,-25],[-124,-195]],[[3191,2571],[-2,-3]],[[3189,2568],[-20,7],[-130,59],[-24,40]],[[3015,2674],[-29,51],[-26,43],[-29,30]],[[3006,3283],[8,28],[12,21],[-57,11],[-12,22],[4,6],[13,79],[2,7]],[[2976,3457],[46,-19]],[[3022,3438],[51,-21]],[[5670,4169],[-65,45],[-16,13]],[[5589,4227],[-26,29],[-20,31],[-16,28]],[[5527,4315],[-15,38],[-11,33],[-8,32],[-5,31],[-4,33],[-2,22]],[[5482,4504],[-1,33],[5,39],[-50,89]],[[5436,4665],[-27,57],[-14,43],[-58,60],[-6,10]],[[5331,4835],[10,9],[8,21],[0,21],[89,-1]],[[5438,4885],[103,-1]],[[5541,4884],[0,-15],[48,-50],[25,41]],[[5614,4860],[23,-28],[8,-20],[19,17],[9,55]],[[5763,4883],[3,6],[30,35]],[[5796,4924],[28,-38]],[[5915,4759],[-10,-3],[-38,-20],[29,-28],[-9,-15],[-5,-3],[-17,-5],[-14,-9],[-6,-8],[71,-71],[9,2],[8,-2],[32,38],[2,-1]],[[2676,5673],[-1,-5],[26,-19]],[[2135,6449],[6,8],[34,31],[25,27],[14,8],[23,19],[2,3],[0,21],[4,23],[-17,38],[-10,15],[-5,4],[-14,2],[-33,-3],[-23,14],[-20,8],[-10,-2],[-29,7],[-4,19],[23,5],[37,-2],[58,-5],[31,13],[14,10],[18,19],[26,22],[12,6],[45,23],[26,11],[33,-6],[12,1],[12,-2],[25,-10],[16,-1],[16,6],[19,18],[10,4],[18,13],[7,7],[58,14],[6,6],[21,14]],[[6442,9729],[25,-16],[8,-27],[5,-49],[1,-37],[-6,-49],[-5,-76],[4,-83],[2,-40],[13,-36],[23,-107],[18,-133],[1,-15],[1,-54],[0,-43],[-1,-17],[-1,-59],[1,-61],[-1,-56],[2,-62]],[[6033,8765],[18,57]],[[6051,8822],[37,134],[26,86],[21,65],[41,137],[16,56]],[[3380,5598],[1,-21],[0,-26],[25,-5],[-9,-73]],[[3397,5473],[-18,0],[-9,2],[-16,8],[-20,-96],[-1,-5],[-29,-75]],[[3304,5307],[-102,56]],[[3202,5363],[-93,51],[-56,22],[-26,11]],[[3027,5447],[-65,26],[-18,7]],[[3335,5587],[45,11]],[[3306,447],[37,-22],[70,-31],[53,-15]],[[3466,379],[-12,-54],[-6,15],[-22,-2],[-45,30],[-6,-6],[-15,6],[-13,11],[-9,-4],[-8,-44],[-14,-87],[-10,-90],[-3,-49],[1,-21],[-20,-9],[-22,3],[-32,6],[-19,18],[-19,8],[-26,23],[-37,36],[-21,19],[-32,35],[-45,58],[-24,41],[-15,15],[-19,13],[-23,12],[5,16],[1,9]],[[2956,387],[79,7],[12,8],[36,-9],[20,-1],[7,-6],[12,13],[15,7],[11,77]],[[2999,2365],[44,-25],[5,1],[27,-16],[32,-21],[13,-8],[21,-8]],[[3141,2288],[-22,-59],[19,-11],[47,-24],[9,-11]],[[2850,2152],[89,103],[60,110]],[[5158,7541],[-16,-8],[-21,-1],[-38,-18]],[[5102,7752],[28,-79]],[[6708,2044],[61,-23],[32,-11]],[[6801,2010],[5,-3],[-14,-57],[-6,-4],[-14,-71],[15,5],[31,-17]],[[6818,1863],[-32,-98],[-24,-71]],[[2786,2191],[-6,18],[-64,24],[-9,-5]],[[2707,2228],[-7,20],[-45,75]],[[2655,2323],[15,19],[4,8],[5,21],[8,14],[7,47],[0,36],[35,-3],[-12,110],[-20,-10],[-2,70],[1,12],[-1,26]],[[2695,2673],[24,-8]],[[2719,2665],[66,-23],[72,-28]],[[2857,2614],[98,-37]],[[2955,2577],[-4,-16],[-55,9],[-20,-81],[2,-1]],[[2878,2488],[-71,-237],[-18,-49],[-3,-11]],[[3518,5444],[21,-6],[-7,-40],[37,-11],[-5,-19],[-11,-44],[-3,-8],[17,-6],[21,0],[8,-6],[4,2]],[[3600,5306],[-50,-168],[-10,-37]],[[3540,5101],[-13,-40]],[[3527,5061],[-22,16],[-77,50],[-40,25],[-13,3]],[[3375,5155],[18,13],[82,40],[-1,9],[-66,33]],[[3408,5250],[-48,27],[-56,30]],[[3397,5473],[22,0],[12,-4],[31,-12],[26,-5],[30,-8]],[[2763,1965],[-101,-67],[5,-14],[-11,-7],[-6,0]],[[2650,1877],[4,11],[-8,11],[-6,17],[-14,51],[-5,20],[-12,33],[-11,-4],[-87,-20],[-37,31],[-10,11],[42,89],[-46,60]],[[2460,2187],[11,27]],[[2471,2214],[31,-41],[22,1],[14,2],[65,14],[16,1],[0,17],[3,5],[18,6],[58,-11],[14,6],[-5,14]],[[2786,2191],[-6,-23]],[[3776,2695],[-33,17],[-4,38]],[[3739,2750],[15,7]],[[3754,2757],[31,11]],[[3785,2768],[1,-10],[72,26]],[[3858,2784],[125,48]],[[3983,2832],[55,22]],[[4038,2854],[12,-52],[33,4],[5,-21],[18,2],[2,-36],[24,3],[3,-15],[15,10]],[[4177,2682],[8,-29],[3,-17],[-28,-6],[-22,-3],[1,-23],[-1,-20],[-5,-24],[-7,-21]],[[4126,2539],[-27,12],[-23,8]],[[4026,2571],[1,36],[-37,11],[7,39],[-61,18],[-48,2]],[[4561,5506],[12,-47]],[[4573,5459],[9,-28],[14,-32]],[[4596,5399],[-25,-11],[-1,-14],[-28,-9]],[[4947,4833],[-36,1],[4,25],[7,53],[6,33]],[[5081,6061],[-30,-27]],[[4988,6147],[23,45]],[[5011,6192],[12,-24]],[[5925,6605],[6,0]],[[5843,6548],[26,59]],[[4564,2781],[-82,11]],[[4503,2864],[67,-9]],[[5608,5012],[56,18],[-22,32]],[[5710,5040],[-30,-33]],[[5640,4952],[-8,9],[4,8],[-28,43]],[[3752,4232],[-5,-36],[-4,-26],[-3,-40],[-45,-3]],[[3233,4448],[-11,-63]],[[3222,4385],[-84,27]],[[3138,4412],[11,62]],[[3149,4474],[84,-26]],[[7282,4833],[25,84],[62,-15]],[[7369,4902],[-18,-60],[-5,-22],[-64,13]],[[4838,5625],[-7,51]],[[4831,5676],[-6,53]],[[4825,5729],[32,2],[17,-52],[2,-45]],[[4876,5634],[1,-42],[-33,-11]],[[4816,3098],[34,-3]],[[4850,3095],[0,-144]],[[4850,2951],[-65,9]],[[5271,4879],[20,-30]],[[5191,4803],[10,9]],[[5438,4885],[1,41],[-6,35]],[[5541,4926],[0,-42]],[[5173,7108],[101,48]],[[5274,7156],[6,-33]],[[5280,7123],[4,-18]],[[5284,7105],[-97,-46]],[[5187,7059],[-14,49]],[[5604,4926],[0,-42],[-6,-8],[16,-16]],[[4521,5059],[13,56]],[[4625,5082],[-13,-58]],[[6751,6809],[25,71],[5,19]],[[6787,6917],[72,-43],[2,-8]],[[6861,6866],[-11,-32]],[[6812,6771],[-61,38]],[[4037,4811],[-1,11],[6,19],[5,10]],[[4111,4829],[-2,-14],[16,-6],[18,-2],[-2,-50]],[[4019,4750],[18,61]],[[5715,3779],[-10,15]],[[5680,3829],[24,43],[-19,17],[10,12],[-4,12]],[[3709,4035],[14,5],[9,-35]],[[3732,4005],[-73,-39],[17,-53]],[[3676,3913],[-24,-13]],[[3652,3900],[-17,53],[-22,-12],[-48,8]],[[3565,3949],[-12,2]],[[5442,3970],[37,-43]],[[5479,3927],[-7,-12],[-6,-1],[-30,25],[-6,-25],[-17,-62],[-4,-1]],[[5409,3851],[-19,56],[-30,79]],[[5360,3986],[26,50]],[[3748,3099],[-15,97],[-1,18]],[[3732,3214],[35,2],[18,3]],[[3785,3219],[17,-87],[36,14],[10,-56]],[[3848,3090],[-72,8]],[[3776,3098],[-28,1]],[[3260,563],[9,36],[50,26]],[[3319,625],[42,-20],[10,20],[16,-8]],[[3387,617],[-22,-82],[-1,-22]],[[3364,513],[-36,17]],[[5261,4344],[-34,0],[-31,13],[-22,14]],[[5174,4371],[1,24],[45,66]],[[5220,4461],[4,-4],[-13,-48],[69,-31]],[[5280,4378],[29,-10],[-11,-44]],[[5298,4324],[-29,17],[-8,3]],[[3737,4564],[-5,-38],[-12,-29]],[[3720,4497],[-24,8]],[[3623,4528],[6,30],[-3,20]],[[3149,4474],[-29,9],[10,58]],[[3130,4541],[114,-34]],[[3244,4507],[-11,-59]],[[4174,4495],[15,-7],[14,-3]],[[4216,4480],[17,-158]],[[3522,3760],[45,25],[-17,53]],[[3550,3838],[21,10],[16,-52],[20,11],[18,-57]],[[3625,3750],[-84,-47]],[[3541,3703],[-19,57]],[[4251,5390],[5,43]],[[4256,5433],[38,-7],[48,2],[3,-50],[27,1]],[[4372,5379],[7,-35]],[[5245,5162],[10,0],[15,-54],[26,-114]],[[5296,4994],[-31,-7],[2,-16]],[[4367,5430],[37,2]],[[4404,5432],[1,-51],[8,-55],[6,-28]],[[4419,5298],[-16,-17],[11,-51]],[[4414,5230],[-17,-4],[-39,-13]],[[4358,5213],[15,32],[7,20],[2,11]],[[4372,5379],[-5,51]],[[5441,4247],[11,-35],[14,-27]],[[5466,4185],[1,-3]],[[5467,4182],[-10,-10],[-8,-18],[-13,-24]],[[5368,4196],[12,23],[20,38],[18,-15],[23,5]],[[5873,2617],[87,73]],[[5960,2690],[29,-56]],[[5989,2634],[-87,-73]],[[5902,2561],[-5,10]],[[3823,5004],[-41,23],[-45,28]],[[3737,5055],[21,62],[10,29]],[[3768,5146],[35,-35],[52,-42]],[[3855,5069],[-32,-65]],[[3667,3772],[-42,-22]],[[3550,3838],[-15,45]],[[3535,3883],[50,-7],[13,4],[29,15],[21,-66]],[[3648,3829],[19,-57]],[[4079,5181],[-34,5],[-29,9],[-21,6]],[[3995,5201],[6,42]],[[4001,5243],[176,-25]],[[4177,5218],[-8,-50],[-33,5]],[[4136,5173],[-57,8]],[[5129,5285],[58,-32]],[[5169,5218],[-74,17],[-18,-89]],[[4845,5390],[-26,34],[-5,-21],[-34,11],[5,27],[-3,30]],[[4608,4932],[-61,-41],[14,-38],[-29,-18]],[[4532,4835],[-38,83]],[[4494,4918],[-10,21],[-6,30],[39,15],[9,-39],[29,24]],[[5580,4184],[9,43]],[[5640,4086],[-7,3]],[[5633,4089],[-45,18],[-22,8]],[[5566,4115],[14,69]],[[3213,1397],[0,70],[-8,5],[-23,6]],[[3182,1478],[18,9],[18,14],[19,25]],[[3256,1542],[9,-16],[6,-28],[25,10],[-2,-53],[-51,-5],[-1,-12],[15,1],[1,-20],[21,-1]],[[4330,3351],[-15,31]],[[4381,3151],[21,-53],[6,4],[9,-25],[-12,-4],[-13,0],[-4,-53]],[[4329,3010],[0,44],[-18,48]],[[4311,3102],[41,29]],[[4130,1338],[-15,-63],[-16,-29]],[[4099,1246],[-17,-33],[-3,-2]],[[4737,3482],[-6,22],[-24,54],[26,19]],[[4733,3577],[50,37]],[[4783,3614],[8,-40]],[[4791,3574],[13,-48]],[[4804,3526],[-37,-25]],[[4727,2760],[101,-12]],[[4820,2712],[-11,-48]],[[4809,2664],[-47,7],[4,48],[-69,9]],[[4624,5170],[26,6],[8,-30],[4,-59],[40,6]],[[4702,5093],[4,-54]],[[4706,5039],[-68,-11],[-26,-4]],[[6361,6602],[-11,-104]],[[6350,6498],[-68,14]],[[6313,6627],[48,-25]],[[5042,2792],[-91,13]],[[4951,2805],[-11,51]],[[4940,2856],[40,-6],[2,31],[67,-9]],[[4306,3245],[-17,-24]],[[4273,3262],[20,14],[-30,72]],[[3786,4704],[-113,-39]],[[3673,4665],[1,41]],[[3674,4706],[1,49],[71,-11],[42,-5]],[[3788,4739],[-2,-35]],[[3345,3913],[4,50],[55,1]],[[3404,3964],[-12,-132]],[[3392,3832],[-54,7]],[[3338,3839],[7,74]],[[4915,4451],[28,-22],[29,-19]],[[4972,4410],[-4,-22]],[[4968,4388],[-24,13],[-37,-83],[18,-7],[-56,-50]],[[4869,4261],[-14,11],[-41,20]],[[4814,4292],[9,27],[20,-7],[6,-7],[6,-1],[9,18],[11,19],[-3,4]],[[4872,4345],[16,25],[17,34],[-10,7],[-18,9],[11,18],[3,-2],[16,21],[8,-6]],[[3338,3839],[-29,-102]],[[3309,3737],[-28,13],[-27,3],[4,49],[-44,7],[-17,2]],[[3196,3812],[-3,3],[-25,41]],[[3168,3856],[16,2],[52,-6]],[[3236,3852],[102,-13]],[[4126,3974],[0,-20],[3,-18],[19,-68]],[[4148,3868],[-49,-21]],[[4099,3847],[-56,-18]],[[4039,3827],[-10,81],[57,17],[-7,35]],[[3910,6124],[10,58],[64,-9]],[[3984,6173],[-10,-59],[-3,-59]],[[3971,6055],[-2,-41]],[[3969,6014],[-62,10],[1,44]],[[3908,6068],[2,56]],[[4273,3770],[6,17]],[[4360,3725],[1,-29]],[[4361,3696],[1,-30]],[[4362,3666],[-6,-34],[-6,-22]],[[4350,3610],[-40,31],[-25,-63],[-34,37]],[[3965,3249],[23,16]],[[4033,3155],[-72,-48]],[[3916,3207],[49,42]],[[3748,3595],[22,3],[15,5],[22,12]],[[3807,3615],[29,-18],[13,-3]],[[3849,3594],[0,-9],[9,-32]],[[3858,3553],[-39,-18],[8,-32],[-48,-17]],[[3779,3486],[-21,-8],[-14,101],[-1,15]],[[3743,3594],[5,1]],[[3638,3467],[-39,-6],[-2,1]],[[3577,3462],[-7,77]],[[3570,3539],[21,8],[74,35],[17,4]],[[3682,3586],[1,-15]],[[3683,3571],[-18,-1],[16,-79],[3,-16]],[[3684,3475],[-27,-6]],[[3657,3469],[-19,-2]],[[4517,3646],[-36,-32]],[[4481,3614],[-14,29],[-9,38],[-11,-14],[-30,65]],[[4417,3732],[42,34]],[[6621,5493],[9,0],[46,16],[4,23],[28,-13],[23,9]],[[2810,3590],[12,5],[45,28],[5,2],[-1,-61],[-7,-38],[-4,2],[-5,-22]],[[2855,3506],[-48,20],[-69,24]],[[2738,3550],[5,24],[2,2],[65,14]],[[3974,5168],[-47,47],[13,24]],[[3940,5239],[15,30]],[[3969,5350],[45,-30]],[[4014,5320],[-9,-31],[-4,-46]],[[3995,5201],[-6,-41],[-15,8]],[[3972,4534],[-77,17]],[[3834,4565],[5,49]],[[3839,4614],[64,0]],[[3957,4605],[21,-3]],[[3978,4602],[-2,-9],[-5,-29],[2,-11]],[[3973,4553],[-1,-19]],[[3529,5745],[31,88]],[[3560,5833],[43,-25],[28,-22]],[[3631,5786],[-20,-38],[33,-21],[-12,-35]],[[3632,5692],[-103,53]],[[6892,6879],[-8,4],[-9,-25],[-14,8]],[[3947,3492],[-13,58],[-4,10]],[[3930,3560],[58,-14],[12,-1],[25,3]],[[4025,3548],[1,-50],[3,-53]],[[4029,3445],[-32,-1],[-12,-2],[-12,-4]],[[3973,3438],[-10,19],[-12,14],[-4,21]],[[4494,5238],[-26,-9],[-37,-3],[-2,-9],[21,-76],[22,-45]],[[4472,5096],[-63,-15]],[[4409,5081],[3,99],[11,34],[1,12],[-10,4]],[[4419,5298],[8,-33],[0,-17],[35,8],[-6,27],[17,12]],[[3015,3829],[-14,5],[-28,12],[-2,-9],[-9,3]],[[2962,3840],[-3,19],[-7,1],[-24,12],[-17,-4],[0,11],[-5,3],[-49,-7]],[[2857,3875],[0,4],[12,50],[19,-1],[15,-6],[0,9],[5,0]],[[3047,3918],[-9,-42],[-16,-38]],[[3022,3838],[-7,-9]],[[4475,3267],[38,-67]],[[4498,3170],[-38,-61]],[[4460,3109],[-39,69]],[[4408,3202],[67,65]],[[4537,2697],[-75,23]],[[4414,2760],[16,33]],[[3400,3640],[10,-16]],[[3410,3624],[-64,3],[-57,7]],[[3289,3634],[2,38],[-2,4],[4,20],[7,9],[8,28],[4,2]],[[3312,3735],[73,-33]],[[3385,3702],[28,-13]],[[3413,3689],[-13,-49]],[[5816,6485],[-26,17]],[[5790,6502],[1,17],[-8,19],[-9,12],[-15,23],[29,81]],[[5788,6654],[2,-1]],[[5790,6653],[68,-41],[11,-5]],[[4324,5714],[-3,-33],[2,-21],[26,-83]],[[4349,5577],[-4,-6]],[[4345,5571],[-11,8],[-29,-11],[-44,1],[7,53],[3,32],[-20,3]],[[4251,5657],[6,57],[11,0]],[[4280,3507],[11,7],[13,11],[16,21],[14,25],[16,39]],[[4362,3666],[12,-3],[38,-42]],[[4412,3621],[-13,-28],[19,-54]],[[4560,2166],[62,-14],[-3,-19],[5,-7]],[[4624,2126],[-8,-25],[-13,-41],[-15,-53]],[[4588,2007],[-23,12]],[[4565,2019],[-40,19]],[[5472,7736],[14,35],[12,27],[12,38]],[[6108,2414],[-34,63],[-50,91]],[[6024,2568],[11,14]],[[6035,2582],[30,-39],[10,-16],[10,-2],[9,-12],[-1,-5],[13,-4],[33,-26],[30,-33]],[[6169,2445],[-14,-27],[4,-5],[12,-22],[-34,-32]],[[6137,2359],[-1,2]],[[6136,2361],[-23,43]],[[6113,2404],[-5,10]],[[2697,3854],[51,6],[-7,-57]],[[2741,3803],[-6,-55],[-52,3],[-20,-1],[-18,-5],[-8,0]],[[2637,3745],[14,70],[9,41]],[[3846,3935],[-18,59],[24,13]],[[3852,4007],[54,29],[25,-126]],[[3931,3910],[-16,-8],[-25,-11],[-25,-13]],[[3865,3878],[-19,57]],[[4676,3625],[-3,-38]],[[4673,3587],[-5,1],[-26,36],[-22,-23]],[[4595,3639],[21,23],[-26,40],[30,29]],[[4620,3731],[13,12],[12,-24],[12,16],[12,23],[13,-10]],[[4682,3748],[2,-34],[-1,-16]],[[4683,3698],[-7,-73]],[[4876,5634],[42,29]],[[3983,2832],[-3,16],[-10,-4],[-31,126]],[[4025,2902],[12,-45]],[[4037,2857],[1,-3]],[[4171,3990],[4,-24],[62,16],[5,-26],[11,-29]],[[4253,3927],[-38,-27]],[[4215,3900],[-31,-17]],[[4184,3883],[-36,-15]],[[4126,3974],[45,16]],[[7275,1697],[-29,27],[-21,16],[-37,30]],[[7188,1770],[7,12],[11,23]],[[7206,1805],[22,50]],[[4763,3712],[10,-43],[10,-55]],[[4733,3577],[-27,62],[-30,-14]],[[4683,3698],[14,-10],[5,-8],[22,10],[15,10],[24,12]],[[3467,3965],[-7,-67]],[[3460,3898],[-8,-74]],[[3452,3824],[-60,8]],[[3404,3964],[53,1]],[[5274,7156],[-14,67]],[[5260,7223],[77,35]],[[5359,7161],[-79,-38]],[[4691,5235],[6,-26],[3,-20],[2,-26],[0,-70]],[[4635,5231],[48,28]],[[4683,5259],[8,-24]],[[5179,4629],[21,13],[14,6],[20,4],[24,0],[13,-3],[20,-7]],[[5321,4627],[-4,-19],[-11,-26],[-36,-52]],[[5270,4530],[-3,6],[-16,44],[-12,36],[-30,-12],[-21,-11],[-9,36]],[[5835,6766],[-45,-113]],[[5788,6654],[-64,37]],[[3972,4534],[-4,-55],[-5,-33],[-5,-18]],[[3958,4428],[-77,23]],[[2605,1837],[-7,-20],[-13,-8],[-11,-1],[-17,12],[-19,-73],[-56,37]],[[2489,1870],[36,-4],[17,-6],[63,-23]],[[5679,3744],[-46,-63]],[[5633,3681],[-47,37]],[[4198,4596],[-63,20]],[[4135,4616],[13,34]],[[4148,4650],[63,6]],[[4277,4661],[9,-73]],[[4286,4588],[-21,-5],[-14,2]],[[3535,3883],[-23,4],[-3,3],[6,20],[0,9],[47,-7],[3,37]],[[3652,3900],[19,-59],[-23,-12]],[[4460,3109],[21,-47]],[[5325,3614],[-37,29],[-13,-9]],[[5275,3634],[-7,11],[-18,22],[-10,9],[-51,41],[-8,10],[-1,11],[-9,5]],[[5171,3743],[2,21]],[[5173,3764],[57,-22]],[[5372,3700],[-31,-48],[1,-1]],[[2962,3840],[-10,1],[-2,-24],[-32,-3],[8,-78],[-17,-2],[-6,-4],[-28,3]],[[2866,3807],[-9,68]],[[4623,5638],[-30,-11],[4,-19],[-26,-10],[-33,-3]],[[4537,5742],[27,-8],[8,-13],[2,-13],[4,-3],[9,-47],[31,9],[-3,26],[31,6]],[[4646,5699],[6,-51]],[[4652,5648],[-29,-10]],[[5482,4504],[-24,-7]],[[5378,4557],[-5,13],[-17,26]],[[5356,4596],[80,69]],[[4599,3877],[-40,-41],[-11,-20],[7,-20]],[[4555,3796],[-31,-36]],[[4486,3848],[35,17],[14,8]],[[4535,3873],[16,13],[23,23],[23,26],[31,33]],[[4628,3968],[15,-23]],[[4643,3945],[-20,-42],[-24,-26]],[[3674,4706],[-17,0],[1,51],[8,58]],[[3666,4815],[79,0],[51,-2]],[[3796,4813],[-8,-74]],[[4944,3057],[-20,-6],[-8,41],[-22,-1],[-4,1]],[[4890,3092],[-17,83],[55,18]],[[4928,3193],[60,-99],[4,-20]],[[4748,3371],[48,-107]],[[4796,3264],[-70,-45]],[[4726,3219],[-49,97]],[[4677,3316],[71,55]],[[7206,1805],[-13,10],[-1,14],[-3,5],[-101,-4],[-3,78]],[[7085,1908],[7,-10],[7,-5],[19,-1],[17,2],[5,-2],[46,3]],[[7186,1895],[3,-24],[49,5]],[[4630,5591],[29,15],[29,6],[11,4],[1,-7],[11,-1],[-1,-20],[17,-63]],[[4727,5525],[-45,-26]],[[4682,5499],[-24,-14],[-8,23]],[[4650,5508],[-12,35],[-8,48]],[[4365,4126],[-57,-11],[-14,2]],[[4288,4266],[26,3]],[[4314,4269],[-1,-13],[-4,-3],[0,-36],[21,-2],[21,-6],[11,2]],[[3385,3702],[13,44],[-27,13],[21,73]],[[3452,3824],[-13,-46],[33,-15],[-2,-26],[1,-4]],[[3471,3733],[-19,-11],[-26,12],[-13,-45]],[[4643,3945],[17,-11],[35,-11],[-2,-33],[-7,-58]],[[4686,3832],[-3,-28]],[[4683,3804],[-32,11],[-21,19],[-23,29],[-8,14]],[[5377,6827],[60,-7],[5,-22],[-26,-58]],[[5416,6740],[-51,-99]],[[5702,7639],[29,107]],[[5731,7746],[92,-80]],[[5429,3785],[6,-18],[19,-49]],[[5454,3718],[-68,-104]],[[5300,4095],[3,-3]],[[5303,4092],[31,-56],[26,-50]],[[5360,3986],[-24,-12],[-36,-5]],[[5300,3969],[-6,50],[-50,-6],[-4,45],[-9,-4],[-3,13]],[[5228,4067],[72,28]],[[4601,3375],[9,25],[8,29]],[[4618,3429],[5,-7],[15,-30]],[[4638,3392],[39,-76]],[[4726,3219],[-30,-18]],[[4696,3201],[-50,92],[-45,82]],[[5319,3844],[-74,1],[-62,0]],[[5183,3845],[5,26],[5,44]],[[5193,3915],[21,0],[48,5]],[[5262,3920],[4,-31],[16,1],[37,9],[3,-28],[-3,-27]],[[3997,5118],[-16,-47],[4,-3],[-12,-38],[-48,26],[-14,-34]],[[3911,5022],[-21,18],[26,65],[-7,8],[5,12]],[[3914,5125],[18,37],[29,-23]],[[3961,5139],[14,-9],[22,-12]],[[3419,1145],[-2,-177],[-1,-20]],[[6552,6708],[-10,-5],[-14,-37],[12,-8],[-31,-80],[-7,-35]],[[6502,6543],[-52,11],[21,51],[31,78]],[[6502,6683],[25,63],[9,6]],[[6536,6752],[16,-44]],[[4997,3580],[-53,-22],[-9,31]],[[4935,3589],[-14,47],[-5,-1],[-26,87],[45,20]],[[6869,1823],[68,-67],[10,-6],[5,-10]],[[6952,1740],[-5,-19],[-2,-33]],[[6945,1688],[-9,8],[-115,53],[26,95]],[[3037,3654],[1,42],[56,9],[-6,66]],[[3088,3771],[51,34],[3,-36]],[[3148,3704],[-10,1],[-3,-44],[-3,-15]],[[3132,3646],[-95,8]],[[4768,6128],[-37,-82],[-47,32]],[[3631,5786],[19,-17],[9,-12],[6,-19],[35,50],[12,8],[10,1],[25,-3],[24,-17]],[[3685,5669],[-53,23]],[[3773,5247],[12,40],[-20,12],[15,47],[22,65]],[[3867,5394],[6,-1]],[[3891,5320],[-26,21],[-29,14],[-12,-38],[-26,-82]],[[3798,5235],[-25,12]],[[3683,4934],[-17,-119]],[[3673,4665],[-39,-14]],[[3634,4651],[-1,5],[-7,100]],[[3626,4756],[4,33],[12,81]],[[3642,4870],[6,44],[5,34],[4,7]],[[3657,4955],[26,-21]],[[4348,5168],[-18,-82],[-7,-28]],[[4323,5058],[-44,18],[17,66],[-54,67],[-12,1]],[[4230,5210],[3,25]],[[4233,5235],[33,-7],[65,-19],[1,-35],[16,-6]],[[3720,4497],[49,-14]],[[3674,4381],[11,62]],[[3674,3219],[-5,-22],[-1,-87],[-61,4]],[[3577,3185],[13,77]],[[3590,3262],[44,-25]],[[3634,3237],[32,-16],[8,-2]],[[4311,3102],[-60,-3],[-16,40]],[[4361,3696],[13,2],[43,34]],[[4481,3614],[-17,-12],[-9,-17],[-7,13],[-9,6]],[[4439,3604],[-27,17]],[[4596,5399],[18,-32],[22,-32]],[[4636,5335],[-68,-55],[25,-50]],[[4593,5230],[-47,-2],[1,39]],[[6350,6498],[31,-7]],[[6380,6437],[-78,5],[-8,-4]],[[6294,6438],[2,41],[-74,5]],[[3638,3467],[10,-113],[-41,-14],[-68,-9]],[[3539,3331],[-4,48]],[[4624,2126],[54,-15]],[[4671,2014],[-25,-12],[-19,-3],[-22,3],[-17,5]],[[4477,2592],[-48,17]],[[4429,2609],[12,43]],[[6888,4847],[11,-5],[3,-7],[13,-5],[24,17],[4,-8],[16,-6]],[[3289,4918],[-15,4],[6,34],[9,40],[11,30],[-9,4],[18,41]],[[3309,5071],[52,-35],[-25,-57]],[[3342,4902],[-53,16]],[[6807,7237],[22,-11],[63,-41]],[[4328,4328],[70,18]],[[4443,4282],[-129,-13]],[[3168,3856],[-12,18],[-10,20],[-15,-2]],[[3131,3892],[-6,52]],[[3125,3944],[33,13],[9,3],[51,0]],[[3218,3960],[-4,-32],[28,-3],[-6,-73]],[[3218,3960],[50,1]],[[3268,3961],[1,-39],[76,-9]],[[3739,4595],[35,-14],[60,-16]],[[5303,4092],[29,47]],[[4748,5260],[21,103],[-38,-4],[-17,49]],[[4714,5408],[68,63]],[[3749,3952],[2,-10],[16,-50],[-25,-13],[18,-57]],[[3760,3822],[-23,-12]],[[3737,3810],[-38,115],[-23,-12]],[[3732,4005],[17,-53]],[[3947,3492],[-9,-4],[-42,-31],[-29,-28],[-22,-13],[-15,-3]],[[3830,3413],[-4,12]],[[3826,3425],[27,15],[29,35],[2,3],[-15,40],[-11,35]],[[3849,3594],[38,-6],[38,-12],[7,-5]],[[3932,3571],[-2,-11]],[[3676,5018],[21,-13],[10,32],[21,-13]],[[3728,5024],[24,-16],[-11,-30],[25,-18],[2,-63]],[[3768,4897],[-20,3],[-43,18],[-22,16]],[[3657,4955],[19,63]],[[4795,4860],[-28,41],[-8,11]],[[4759,4912],[-4,4]],[[4098,3146],[20,13]],[[4118,3159],[42,28]],[[4195,3108],[25,-57]],[[4220,3051],[-16,-7],[-19,-2],[-27,2],[-11,34],[-18,-9]],[[4202,1393],[6,-3],[-20,-89],[-27,-87]],[[4161,1214],[-62,32]],[[4740,4614],[15,24],[3,9],[5,25]],[[4763,4672],[44,-22]],[[4807,4650],[-5,-37],[-7,-13],[21,-28]],[[4816,4572],[-46,-62],[-16,-6]],[[4754,4504],[-18,27],[-3,16]],[[4733,4547],[3,12],[8,16],[5,5],[10,20],[-19,14]],[[3881,4451],[-10,-63]],[[3871,4388],[-11,-62],[-25,6]],[[4668,3420],[40,39]],[[4638,3392],[30,28]],[[2955,1504],[-84,19]],[[2982,1592],[-27,-88]],[[5946,8572],[-64,32]],[[5882,8604],[-31,5]],[[5220,4461],[50,69]],[[5270,4530],[16,-33],[10,-15]],[[5289,4420],[-9,-42]],[[5542,3910],[-17,-36],[-22,26],[-11,-29],[-10,-29],[-6,-15],[-4,-17],[-1,-11]],[[5471,3799],[-11,3],[7,62],[20,54],[-8,9]],[[5464,4036],[12,-18],[16,-35],[12,-24]],[[5504,3959],[38,-49]],[[5016,3959],[-37,56],[41,53],[8,-6],[2,-12],[20,6]],[[5050,4056],[24,7],[6,-40],[3,-57]],[[5083,3966],[-22,-2]],[[3631,4648],[3,3]],[[3786,4704],[-10,-93],[-34,8],[-24,3],[-1,-16]],[[4102,1840],[21,55],[6,10],[73,-44]],[[4202,1861],[25,-15],[-25,-66]],[[4202,1780],[-100,60]],[[3768,5146],[15,44],[39,-37],[19,41]],[[3841,5194],[23,-22]],[[3864,5172],[29,-27]],[[3893,5145],[-38,-76]],[[4251,5657],[-19,3],[-4,-33],[-41,10]],[[4187,5637],[1,8],[23,70],[13,68],[6,5],[-3,13],[-2,18]],[[4225,5819],[45,-10]],[[3812,4943],[-8,-51]],[[3804,4892],[-36,5]],[[3728,5024],[9,31]],[[3823,5004],[-11,-61]],[[6008,2380],[5,80],[25,-3],[22,-68],[48,25]],[[6113,2404],[-78,-120]],[[2716,1157],[-9,2],[-3,-18],[34,-2],[-14,-72],[-31,10],[-2,-16],[-46,16],[19,109],[42,-6],[6,4]],[[2712,1184],[9,-3],[-5,-24]],[[3047,3918],[45,13],[33,13]],[[3131,3892],[4,-40],[-54,-9]],[[3081,3843],[-54,-8],[-5,3]],[[3232,5137],[-4,-11],[-11,7],[1,4],[-19,13]],[[3199,5150],[-2,1],[12,29],[-57,40],[3,10]],[[3155,5230],[8,21],[29,-19],[17,45]],[[3209,5277],[60,-43]],[[3269,5234],[-39,-95],[2,-2]],[[4391,5713],[-38,1],[12,74],[-25,6]],[[4340,5794],[10,41],[8,35]],[[4358,5870],[61,-15],[-12,-33],[27,-17]],[[4251,5390],[-27,6],[-44,20],[-46,23]],[[4134,5439],[-27,13]],[[4107,5452],[11,22],[30,62]],[[4148,5536],[53,-22],[-16,-68],[71,-13]],[[4048,6155],[28,-13],[21,65]],[[4097,6207],[16,-22]],[[4113,6185],[15,-24]],[[4128,6161],[-1,-32],[-30,-48],[1,-24],[-1,-15],[-4,-17],[-49,15],[2,8],[-11,5]],[[4035,6053],[13,102]],[[4136,5173],[19,-62]],[[4081,5034],[-31,9],[-29,7],[17,47]],[[4038,5097],[25,-8],[16,92]],[[4618,3429],[-6,9],[-33,54]],[[4673,3587],[-10,-51],[-13,-33],[-19,-38],[37,-45]],[[3550,3838],[-1,-1],[-39,-20],[-32,4],[7,73],[-25,4]],[[3684,3475],[10,-107],[17,3],[19,6]],[[3730,3377],[39,20],[32,21]],[[3801,3418],[25,7]],[[3830,3413],[-18,-9],[-7,-6],[-11,-16],[-11,-21],[-7,-7]],[[3776,3354],[-7,-6],[-48,-21]],[[3721,3327],[-37,-17]],[[3684,3310],[-17,53],[-10,106]],[[4651,3171],[-45,88],[-31,54]],[[4575,3313],[15,30]],[[4590,3343],[11,32]],[[4696,3201],[-45,-30]],[[4286,4588],[36,9]],[[4322,4597],[11,-70],[13,-65]],[[4346,4462],[-41,4]],[[3522,3760],[-51,-27]],[[3530,3297],[60,-35]],[[3577,3185],[-104,40]],[[3495,3316],[35,-19]],[[5989,5455],[47,-67]],[[6036,5388],[31,-45]],[[6043,5315],[-25,-28]],[[3237,4797],[-11,-60]],[[3226,4737],[-27,8],[-6,-34],[9,-13],[1,-15],[13,-3],[31,-4],[-8,-36]],[[3239,4640],[-88,26]],[[3159,4717],[10,64],[2,35]],[[3171,4816],[37,-10]],[[4452,3848],[30,11],[4,-11]],[[5991,2979],[10,2]],[[6001,2981],[1,-15],[16,3],[21,7],[6,-40]],[[6045,2936],[-41,-12],[-77,-25],[-19,34],[-20,-17],[4,-7],[-17,-15],[-20,35]],[[4922,3449],[9,-34],[-86,-34]],[[4845,3381],[-13,48]],[[4832,3429],[43,10],[-22,82],[31,11]],[[4884,3532],[16,-7],[22,-76]],[[5228,5542],[-43,74],[69,67]],[[5254,5683],[43,-72]],[[5297,5611],[-69,-69]],[[3928,4797],[-1,48],[-6,23]],[[3921,4868],[26,7],[21,-2]],[[3968,4873],[79,-22]],[[4037,4811],[-35,16],[-31,11],[-5,-46],[-5,-47]],[[3924,4736],[4,61]],[[5284,7105],[4,-20],[-53,-147]],[[5209,6998],[-17,42],[-5,19]],[[4774,2829],[71,-9]],[[2357,3754],[83,-19],[21,115]],[[2461,3850],[40,-8]],[[2501,3842],[1,-39],[-1,-9]],[[2501,3794],[-30,9],[-5,-74],[-5,-33]],[[2461,3696],[-23,2],[-18,2],[-27,6],[-16,5],[-35,12]],[[2342,3723],[2,7],[13,24]],[[7427,4759],[-19,9],[11,39],[3,9],[-19,9],[-11,7]],[[7392,4832],[10,6],[17,32],[5,18]],[[7424,4888],[67,-18],[-36,-125],[-28,14]],[[3507,2187],[26,0],[22,-12],[11,-19],[30,-21]],[[3596,2135],[-21,-64]],[[3575,2071],[-88,37],[20,79]],[[3961,5139],[13,29]],[[4038,5097],[-41,21]],[[3109,4421],[29,-9]],[[3222,4385],[-21,-119]],[[3100,4371],[9,50]],[[4714,5408],[-32,91]],[[4727,5525],[44,25]],[[4771,5550],[5,-34]],[[3737,3810],[-48,-25],[-22,-13]],[[5999,6993],[10,-30],[1,-13],[-7,-74],[0,-6]],[[4514,3434],[9,10],[2,9]],[[4525,3453],[29,-58],[36,-52]],[[4575,3313],[-17,-37]],[[4558,3276],[-5,5],[-68,126]],[[4485,3407],[29,27]],[[5608,5012],[-30,-9]],[[5102,7752],[63,24],[15,3],[31,11]],[[5953,8483],[-31,15],[-23,15],[-39,17],[22,74]],[[3859,5907],[1,-87]],[[3814,5820],[-58,0],[-9,2]],[[3747,5822],[6,29],[5,56],[18,0]],[[3776,5907],[83,0]],[[5946,8358],[-48,-151],[19,-9],[-35,-104]],[[5845,8116],[31,106],[44,149]],[[3330,4834],[-26,8]],[[3277,4850],[12,68]],[[6080,5439],[-44,-51]],[[5347,2595],[-17,-11],[-14,-1],[-24,8],[-58,22]],[[5234,2613],[7,42],[15,73]],[[5256,2728],[58,-18]],[[3739,2750],[-49,-25],[-49,21]],[[3641,2746],[6,66]],[[3719,2887],[28,-6]],[[3747,2881],[7,-124]],[[4761,5724],[21,5],[5,-3],[6,-56],[38,6]],[[4771,5550],[-8,64],[-2,52]],[[4761,5666],[0,53]],[[4761,5719],[0,5]],[[4525,3453],[1,19],[-5,14],[37,41]],[[5416,6740],[78,-63]],[[5055,2318],[39,14],[35,-14],[40,-15]],[[5153,2243],[-26,-14],[-48,-19],[-24,108]],[[2660,3856],[-13,1],[-58,13]],[[2589,3870],[-48,11],[6,51],[10,-2],[1,12]],[[4624,3153],[-35,-25]],[[4589,3128],[-27,49]],[[4651,3171],[-27,-18]],[[6136,2361],[-54,-92],[-40,-68]],[[5471,3799],[17,-6],[-14,-31]],[[4090,3342],[9,6],[29,29],[20,-19],[21,31],[32,-81]],[[4201,3308],[-74,-48]],[[4127,3260],[-37,82]],[[3984,6173],[64,-18]],[[4035,6053],[-1,-12],[-63,14]],[[2499,1302],[-5,-62],[32,-3],[-7,-18],[37,-10]],[[2556,1209],[-6,-40]],[[2550,1169],[-20,1],[-2,-4],[-36,3]],[[2492,1169],[1,32],[-47,4]],[[2446,1205],[11,71],[0,32]],[[2457,1308],[42,-6]],[[3801,3418],[-22,68]],[[5298,4324],[45,-30],[25,-11]],[[5368,4283],[-10,-4],[-34,-44]],[[5324,4235],[-23,22],[-11,-15],[-4,9],[-19,18],[-16,-24],[-25,26]],[[5226,4271],[27,53],[8,20]],[[4589,3128],[-36,-22],[-18,-14],[-29,-17],[-21,-12]],[[3315,719],[-13,-49],[17,-45]],[[5131,1728],[-17,14],[-34,23],[-18,11]],[[5062,1776],[0,87]],[[4809,2664],[-11,-47]],[[4798,2617],[-61,20]],[[4737,2637],[-46,14]],[[4951,2805],[22,-105]],[[4973,2700],[-20,-5],[-17,2]],[[4896,2812],[55,-7]],[[3104,5024],[-6,3]],[[3030,5051],[-34,13],[-10,1],[0,70]],[[2986,5135],[51,0],[16,12]],[[4845,2820],[3,78],[51,-8],[1,51]],[[4900,2941],[23,-5]],[[4923,2936],[17,-80]],[[4487,3974],[48,-101]],[[4429,2609],[-2,-14],[0,-16],[3,-22],[-5,0]],[[4425,2557],[-14,6],[-88,73]],[[3344,5127],[13,14],[18,14]],[[3527,5061],[-12,-50]],[[3410,5083],[-66,44]],[[5539,3544],[-30,60]],[[5633,3681],[-41,-60]],[[3732,6111],[6,60],[-10,9]],[[3728,6180],[28,77],[8,18],[13,-10],[13,20],[18,-27],[13,-16]],[[3758,6101],[-3,1]],[[3755,6102],[-23,9]],[[3749,3952],[26,14]],[[3775,3966],[19,-59],[52,28]],[[3865,3878],[-105,-56]],[[4346,4462],[23,-3],[16,3]],[[5829,2934],[-39,-38],[-9,14],[-25,-23],[-4,8],[-8,-7],[-8,13],[-27,8]],[[5718,2960],[60,58]],[[4201,3308],[23,15]],[[4142,3227],[-15,33]],[[5101,1551],[28,96],[24,64]],[[5209,1656],[-35,-50],[3,-6]],[[5177,1600],[-9,-11],[-3,2],[-11,-17],[-14,-47]],[[5140,1527],[-10,9],[-29,15]],[[4256,5433],[4,37],[3,13],[8,19],[12,16]],[[4283,5518],[17,-35],[39,1],[4,-2],[18,3],[1,-17],[5,-38]],[[3683,3571],[26,4],[4,-44],[2,-6],[0,-26],[1,-18],[9,1],[5,-52],[-9,-2],[9,-51]],[[5183,3845],[-6,-40],[-4,-41]],[[5171,3743],[-10,6]],[[5161,3749],[-4,26],[-12,96],[5,1],[-8,57]],[[5142,3929],[-5,38]],[[5137,3967],[22,-2],[36,-2]],[[5195,3963],[-2,-48]],[[5042,5859],[-12,-11],[-9,-11],[-34,57],[-25,-23]],[[4962,5871],[-32,54]],[[4930,5925],[2,6],[21,83]],[[4979,5970],[30,-54],[33,-57]],[[3309,5071],[25,63]],[[3334,5134],[10,-7]],[[3676,5018],[10,33]],[[3686,5051],[17,63],[19,71]],[[3722,5185],[46,-39]],[[4938,4800],[-37,-78],[-29,-19]],[[4872,4703],[-19,52]],[[4853,4755],[29,18],[9,23],[5,18],[0,40]],[[4435,2924],[21,-19]],[[3266,4632],[-27,8]],[[3226,4737],[30,-9]],[[3349,4607],[-83,25]],[[3786,4704],[40,8]],[[3826,4712],[13,-98]],[[7757,5952],[-84,-34],[-27,-14]],[[7646,5904],[-23,75],[6,3]],[[5112,7056],[-6,15],[-7,27],[45,26],[22,10]],[[5166,7134],[7,-26]],[[3826,4712],[98,24]],[[3978,4602],[3,13],[24,84]],[[4063,4700],[-3,-49]],[[4060,4651],[-3,-53],[-41,2],[-8,-54]],[[4008,4546],[-35,7]],[[6601,6659],[-13,-32],[-38,-98],[-48,14]],[[6552,6708],[9,-19],[11,-15],[16,-11],[13,-4]],[[4099,4528],[4,4],[32,84]],[[5575,3884],[54,67],[16,-18]],[[3721,3327],[17,-72],[-7,-25],[1,-16]],[[3732,3214],[-41,2],[-17,3]],[[3634,3237],[-3,23],[-6,23],[59,27]],[[7117,1610],[-11,9],[-3,6],[-13,42],[15,32],[-41,30]],[[7064,1729],[18,12],[8,15],[30,-23],[19,49],[39,-15],[10,3]],[[7188,1770],[-41,-92]],[[3641,2746],[-68,32],[10,94]],[[3583,2872],[29,-7],[4,43]],[[3616,2908],[39,-8]],[[3759,3712],[40,-23],[35,-27]],[[3834,3662],[-19,-35],[-8,-12]],[[3748,3595],[-14,105],[1,5],[11,8],[2,4]],[[3748,3717],[11,-5]],[[5566,4115],[-44,15],[-15,8],[-20,17],[-20,27]],[[5466,4185],[48,50],[23,-28],[43,-23]],[[3932,3571],[2,17],[7,24],[5,11],[8,29]],[[3954,3652],[32,-10],[-7,-37],[61,32]],[[4226,4096],[1,-37],[2,-29],[3,-26]],[[4232,4004],[-61,-14]],[[3255,4569],[-114,34]],[[3266,4632],[-11,-63]],[[5166,7134],[-10,39]],[[5156,7173],[104,50]],[[4602,5214],[-9,16]],[[4636,5335],[5,-6],[30,-42],[12,-28]],[[4404,5432],[20,0]],[[4514,6682],[31,3],[48,13],[10,0],[3,33],[17,-2]],[[4641,6685],[-14,-36],[-28,-100]],[[4516,6652],[-2,30]],[[3602,3048],[-4,-42],[-38,7],[-10,-91]],[[3550,2922],[-42,8]],[[3508,2930],[9,131]],[[3517,3061],[13,-2]],[[6701,7592],[-69,-22],[-9,37],[18,6],[-17,76],[-4,14],[37,16]],[[2455,914],[-42,28]],[[2413,942],[-93,62]],[[2320,1004],[4,22],[9,12],[5,-1],[20,1],[36,-19],[28,-22],[32,-16],[5,-20],[23,-15],[-3,-8],[-3,-20],[-6,-13]],[[2470,905],[-15,9]],[[3747,2881],[-3,57],[34,3]],[[3778,2941],[45,4]],[[3825,2890],[-18,15],[2,-37],[-27,-1],[3,-99]],[[5542,3910],[33,-26]],[[2470,3898],[28,-7],[2,48],[-2,12]],[[2589,3870],[-2,-45],[-86,17]],[[2461,3850],[9,48]],[[4018,3271],[32,3],[21,7]],[[4071,3281],[33,-78],[14,-44]],[[4050,3114],[-17,41]],[[2330,861],[51,-33],[-14,-38],[32,-21]],[[2399,769],[38,-25],[-15,-39]],[[2422,705],[-42,25],[-30,22],[-21,11],[-34,7]],[[2295,770],[35,91]],[[3541,3703],[-73,-41],[-50,-27],[-18,5]],[[6241,2160],[-30,-48],[-16,-30]],[[6195,2082],[-23,34],[-27,47]],[[6145,2163],[42,102]],[[6187,2265],[54,-105]],[[3269,5234],[56,-40],[25,-18],[4,-7],[21,-14]],[[3334,5134],[-26,18],[-15,-37],[-22,6],[-23,2],[0,5],[-16,9]],[[3775,3966],[-17,53],[27,14]],[[3785,4033],[26,14],[37,18]],[[3848,4065],[4,-58]],[[3602,3048],[29,-4]],[[3631,3044],[-15,-136]],[[3583,2872],[5,42],[-38,8]],[[4200,4754],[2,42],[41,-7],[6,74],[-5,12]],[[4215,4752],[-15,2]],[[5321,4627],[20,-15],[15,-16]],[[3969,6014],[-1,-24],[3,0],[-2,-30]],[[3969,5960],[-24,-2],[-14,-8],[0,-4],[-18,-7],[-11,6],[-12,-1],[-6,13]],[[3884,5957],[5,39],[-13,1]],[[3877,6029],[2,46],[29,-7]],[[3832,6211],[46,-17],[-4,-11],[-10,-52],[46,-7]],[[5115,4722],[-27,16]],[[5536,3356],[-40,-69],[-12,1],[-51,48]],[[5433,3336],[34,54],[21,31]],[[5488,3421],[22,-24],[9,-12],[17,-29]],[[3488,1484],[-1,12],[47,-20]],[[3534,1476],[22,-146]],[[3556,1330],[-50,21],[-1,-4],[-23,2],[15,62],[-9,73]],[[5209,4239],[17,32]],[[5324,4235],[-7,-10],[-4,-11],[-1,-17],[-28,-46],[-21,20],[-4,-7]],[[5259,4164],[-50,75]],[[3312,3735],[-3,2]],[[4327,4734],[3,-67],[6,-66]],[[4336,4601],[-14,-4]],[[3255,4569],[-11,-62]],[[6330,2552],[-7,-19],[-3,-16],[-4,-58]],[[6316,2459],[-13,1],[-16,20],[-43,57],[-14,13]],[[6230,2550],[34,56]],[[4455,4264],[-42,-39]],[[3237,1537],[-88,-7],[-1,16],[-27,-1],[-3,73],[11,44],[11,8]],[[3850,2832],[8,-48]],[[4439,3604],[-9,-25],[13,-13],[36,-68],[35,-64]],[[2779,3797],[0,67],[-6,-1],[-3,25],[-7,17],[-12,8],[-12,-1],[0,28]],[[2739,3946],[62,-4],[11,-2],[6,-71],[7,-67]],[[6294,6438],[-2,-33],[-20,1],[0,-36]],[[6272,6370],[-54,4]],[[3088,3771],[-7,72]],[[4177,5218],[6,33]],[[4230,5210],[-5,-38],[-9,-23],[-9,-14]],[[3914,5125],[-21,20]],[[3864,5172],[45,95],[31,-28]],[[4294,4117],[16,-76]],[[4310,4041],[-42,-25],[-36,-12]],[[4939,5762],[-44,48],[-16,27],[-13,31]],[[4866,5868],[64,57]],[[4957,5778],[-18,-16]],[[3171,5004],[5,-55],[2,-37],[0,-25]],[[3659,2114],[44,-16],[40,-17]],[[3743,2081],[23,-11],[-23,-62]],[[3743,2008],[-30,19],[-3,-10],[-21,14]],[[3689,2031],[-17,11],[2,5],[-19,6],[-16,11],[20,50]],[[3631,4648],[-31,13],[-25,6],[-23,1],[-2,48]],[[3549,4754],[77,2]],[[4864,2592],[-66,25]],[[4850,3324],[-6,-17],[1,-24]],[[4845,3283],[-29,-17],[-11,-3],[-9,1]],[[4804,3415],[21,-48],[-18,-13],[-6,-12],[14,-32],[34,21]],[[4849,3331],[1,-7]],[[5443,5229],[-46,74],[57,55]],[[5499,5288],[-56,-59]],[[4358,5213],[-4,-10],[-6,-35]],[[5328,2373],[14,-23]],[[5272,2297],[56,76]],[[4071,3281],[-9,49],[20,6],[8,6]],[[4798,2617],[-16,-65]],[[4715,2515],[22,122]],[[4892,2544],[-10,-31]],[[4902,2577],[-10,-33]],[[4923,2936],[35,-4]],[[5005,2926],[48,-6]],[[4336,4601],[22,5],[5,-33],[34,-4]],[[4060,4651],[36,-1],[1,-101],[2,-21]],[[4099,4528],[-91,18]],[[4715,2515],[-45,13]],[[5042,5859],[15,-25]],[[5057,5834],[3,-25],[6,-32],[6,-20]],[[5072,5757],[-27,-27],[-24,42]],[[4214,3484],[-40,-13]],[[4174,3471],[-1,36],[-24,-5],[-34,2],[-1,47]],[[3464,4574],[3,40],[-3,54],[2,30]],[[3504,4712],[3,-42],[-3,-5],[2,-57],[36,-8],[1,-50]],[[4761,5666],[-109,-18]],[[4646,5699],[-3,27],[42,2],[2,-4],[27,-6],[2,-6],[45,7]],[[3626,2441],[32,115],[61,-14]],[[3696,2451],[-13,-11],[-11,-4],[-14,-2],[-13,1],[-19,6]],[[5385,4288],[-17,-5]],[[4853,4755],[-12,32],[-6,14],[-22,33]],[[3702,4072],[42,4],[-3,37],[40,3],[4,-83]],[[4148,4650],[-13,0],[3,52]],[[4141,4757],[10,2],[49,-5]],[[4310,4041],[13,-61]],[[4323,3980],[-34,-25]],[[4289,3955],[-36,-28]],[[4045,4462],[-51,12],[6,19],[8,53]],[[5859,7807],[-67,6],[-10,3],[8,26],[1,8],[-24,3]],[[5767,7853],[23,75]],[[5877,7805],[-18,2]],[[6819,2089],[-7,-40],[-11,-39]],[[3403,677],[-16,-60]],[[4184,3883],[26,-58],[-15,-15]],[[4139,3766],[-40,81]],[[4215,3900],[15,-37],[49,-76]],[[4555,3796],[13,-14],[12,-4],[9,2],[31,-49]],[[5275,3634],[7,-14],[8,-22]],[[5163,3672],[8,71]],[[4039,4396],[-67,27],[-14,5]],[[4556,2462],[-25,5],[-35,-25],[-8,20],[-13,46]],[[4475,2508],[40,20],[23,-8],[6,48]],[[2779,3797],[-38,6]],[[4727,2350],[-14,-49]],[[4713,2301],[-34,8],[-50,14],[-38,8]],[[4627,2381],[41,-13]],[[3958,4428],[-5,-7],[-18,-58],[-2,-8],[-9,-29],[-4,-16]],[[3920,4310],[-12,1],[-23,7],[11,63],[-25,7]],[[4804,3526],[28,-97]],[[4845,3381],[4,-50]],[[2446,1205],[-3,-19],[-6,-11],[-42,-27],[-13,6],[11,53],[-1,37],[-58,17],[2,23]],[[2336,1284],[2,50],[117,-2]],[[2455,1332],[2,-24]],[[3403,4197],[-34,7],[0,8],[-64,11]],[[3305,4223],[-3,35],[0,17],[-3,1],[4,28],[-1,28],[6,30],[6,-2]],[[3166,4215],[48,-24],[0,-13],[-3,-19]],[[3211,4159],[-7,-31],[-4,-15],[-53,16],[-9,-10],[-82,6]],[[3076,4236],[2,6]],[[5542,3910],[44,88],[47,91]],[[5159,8443],[-9,4],[-35,33],[-13,7],[0,-16],[-2,-6],[-31,0],[1,138]],[[5161,2587],[21,89],[8,35]],[[5200,2747],[56,-19]],[[5234,2613],[-6,-32],[-7,-14],[-34,-96],[-16,-39]],[[5171,2432],[-24,39]],[[5795,2766],[66,-3],[42,36]],[[5903,2799],[26,-50]],[[5929,2749],[31,-59]],[[5835,2691],[-40,75]],[[5915,4759],[5,-7]],[[5300,4095],[-27,41],[-14,28]],[[5435,4299],[4,-36],[2,-16]],[[5220,8255],[8,41],[-14,11],[30,83],[34,-12],[48,-27]],[[7633,5646],[51,213]],[[7684,5859],[23,-103],[44,18]],[[5684,2773],[-7,1]],[[5797,2883],[-41,-41],[26,-53],[13,-23]],[[5795,2766],[-111,7]],[[7606,5883],[-38,-20],[-53,-21]],[[7508,6007],[40,-31],[7,-8],[8,-19],[7,-27],[4,-5],[32,-34]],[[2711,4322],[-6,22],[-11,47],[-5,27],[11,7],[2,9],[-2,52],[-32,10],[34,72]],[[2702,4568],[19,-25],[14,-28],[9,-31],[13,-66],[-1,-37],[-7,-46]],[[4814,4292],[-46,19],[-41,31],[3,6],[-17,15]],[[4713,4363],[14,34],[21,36]],[[4748,4433],[17,-21],[36,-15]],[[4801,4397],[29,-16],[22,-16],[20,-20]],[[2290,4081],[11,-12],[13,-9],[22,-19],[10,-15],[26,16],[26,13],[17,6],[-1,11],[18,7]],[[2470,3898],[-54,12]],[[2416,3910],[-42,10],[-26,10],[-66,28],[-18,6],[-62,23]],[[2202,3987],[2,7],[34,-2],[8,5],[-1,9],[-21,26],[-13,23],[-1,8],[3,8],[21,2],[56,8]],[[6536,6752],[18,12],[50,139]],[[6604,6903],[147,-94]],[[6751,6809],[-68,-176]],[[6683,6633],[-22,12],[-18,6],[-20,5],[-22,3]],[[3493,875],[-45,-11]],[[3608,971],[11,-72],[-4,-16],[-11,-30],[-15,-45]],[[3589,808],[-31,14],[16,57],[-29,5],[-15,-1]],[[3524,2559],[20,22],[24,24],[42,34],[52,40],[-19,41],[-2,26]],[[3626,2441],[-22,28],[-38,49],[-19,19],[-23,22]],[[2504,3612],[-62,12],[-80,15],[-96,17]],[[2266,3656],[-45,8]],[[2221,3664],[4,35],[7,-1],[3,17],[11,48]],[[2246,3763],[31,-15],[65,-25]],[[2461,3696],[51,-4],[54,-5],[62,-3]],[[2628,3684],[0,-6],[15,-41]],[[2643,3637],[-17,-19],[-20,-30]],[[2606,3588],[-34,9],[-68,15]],[[3244,4507],[130,-39]],[[3305,4223],[0,-3],[-26,11],[-11,-41],[-12,-41]],[[3256,4149],[-33,15],[-12,-5]],[[4653,3994],[-25,-26]],[[4521,4105],[20,34]],[[6276,6281],[-6,52],[2,37]],[[3600,5306],[1,5],[25,138],[18,95]],[[3644,5544],[66,-19]],[[3710,5525],[3,-37],[20,-15]],[[3733,5473],[0,-35],[-2,-16],[-7,-25],[-7,-22],[-22,-26]],[[3695,5349],[-12,15],[-18,-23],[-2,-14],[-10,-10]],[[3653,5317],[-21,-13],[-11,-1],[-3,3],[-18,0]],[[4409,5081],[12,-38],[1,-17],[-3,-15],[-13,-4],[-11,1],[-39,-27]],[[4311,5008],[12,50]],[[2791,1647],[-44,-97],[-16,-40],[-11,-26]],[[2720,1484],[-9,6]],[[2711,1490],[5,15],[5,32]],[[2669,1570],[-24,15],[5,39],[-1,9],[-4,8],[6,74],[3,26]],[[2654,1741],[16,-4]],[[5717,3121],[-25,43],[-42,-35]],[[5616,3198],[0,5],[-31,63],[28,28]],[[5784,3216],[-5,-15],[7,-16],[-54,-50]],[[2857,2614],[18,41],[11,31],[8,15],[-22,30],[54,66],[5,1]],[[3015,2674],[-31,-39],[-20,-31],[-6,-14],[-3,-13]],[[5118,5665],[-23,-21],[13,-24]],[[4026,3946],[-32,-8],[-15,82],[-38,-7]],[[3941,4013],[-4,23],[-9,54],[-2,22]],[[3971,3711],[6,18],[-3,1],[8,31],[-1,11],[-5,30]],[[3976,3802],[2,6]],[[3978,3808],[9,3],[12,1],[21,8]],[[3954,3652],[17,59]],[[4070,4985],[-34,12],[-29,15],[-4,-13],[-6,-33],[-9,3]],[[3988,4969],[-85,34]],[[3903,5003],[8,19]],[[3527,5061],[27,-19],[21,-16]],[[3575,5026],[-25,-135],[23,-5],[-3,-21]],[[3570,4865],[-4,-23],[-23,7],[-22,4]],[[3812,4943],[41,-17],[-5,-29],[17,-4]],[[3865,4893],[14,-11],[42,-14]],[[3928,4797],[-68,11],[-30,3],[-34,2]],[[3796,4813],[8,79]],[[4043,6420],[11,-84]],[[4054,6336],[-32,6],[-3,-28],[-13,1],[-1,-8]],[[4005,6307],[-114,20]],[[3268,3961],[32,0],[6,15]],[[3306,3976],[20,35],[-8,7],[15,25],[7,-7],[16,27]],[[5027,4580],[-19,3]],[[5008,4583],[-30,7]],[[4978,4590],[20,68],[8,37]],[[4174,3471],[-34,-10],[-17,-4],[-61,-7],[-21,-4]],[[4041,3446],[-12,-1]],[[3530,3297],[9,34]],[[2441,2147],[19,40]],[[2650,1877],[-2,-5],[-11,-51]],[[2637,1821],[-32,16]],[[2405,2070],[36,77]],[[2164,4109],[-19,-67],[-7,-17],[6,-5],[-14,-42],[-10,-35],[-13,-6],[-4,-6],[-25,-90]],[[2078,3841],[-96,46],[-34,17]],[[1948,3904],[4,17],[37,118],[-20,6],[7,41],[0,12],[23,-2]],[[5544,6652],[38,-26],[-15,-39],[44,-29],[-6,-17],[10,-7],[21,-8],[4,12],[26,-15]],[[5666,6523],[4,-3]],[[5670,6520],[-12,-34],[0,-5],[-6,-17],[-8,-37]],[[4085,5941],[8,23],[2,26],[-22,5],[-19,-3],[-27,-7],[4,-27],[-15,1],[-30,3],[0,-5],[-17,3]],[[4128,6161],[15,-23],[28,-23],[47,-17]],[[4218,6098],[2,-80]],[[4220,6018],[1,-41],[10,-55]],[[4231,5922],[0,-19]],[[4231,5903],[-146,38]],[[3855,6287],[-3,-15],[-12,-40],[-5,-8]],[[3728,6180],[-11,14],[-14,26],[-20,19],[-54,42],[-16,10]],[[3613,6291],[-40,15]],[[3073,3417],[7,16],[6,2],[13,52],[5,25],[3,4],[18,-2],[22,-8],[19,0],[47,-7]],[[3213,3499],[65,12],[6,-1],[-8,-82],[-4,-31]],[[5859,7807],[-6,-44],[48,-10]],[[5901,7753],[-12,-76],[-6,-13]],[[5731,7746],[18,56],[18,51]],[[7450,6189],[-56,44],[2,4],[-55,46]],[[7406,6406],[107,-89]],[[5992,8109],[1,8],[50,141],[-36,19],[-8,5],[-30,14],[11,47]],[[4493,3039],[49,-48],[10,-5],[52,-6]],[[5370,1247],[-5,-20],[33,-16],[-35,-145],[-13,1],[-15,-6],[-7,-9]],[[5260,1104],[42,175]],[[5302,1279],[8,-3]],[[7039,1712],[-27,-17],[33,-27],[-16,-35],[-3,-9],[-34,-76]],[[6923,1600],[18,39],[4,49]],[[6952,1740],[20,78],[2,11]],[[6974,1829],[28,-12],[3,-5],[-5,-36],[35,-8],[1,-7],[3,-49]],[[2470,905],[21,-13],[-3,-6],[8,-15],[39,-27],[7,-10]],[[2542,834],[-26,-51],[0,-16],[2,-39],[-1,-12],[-15,-30]],[[2502,686],[-11,3],[-28,3],[-23,6],[-18,7]],[[2399,769],[56,145]],[[4591,2331],[-1,-26],[-11,-72],[-6,-28],[-13,-39]],[[4391,2256],[10,33],[42,-22],[37,-15],[3,26],[13,81]],[[4496,2359],[47,-15]],[[2522,3391],[29,0],[29,76],[41,-25],[18,51],[72,-34]],[[2711,3459],[-33,-77],[-77,6],[-23,-80],[1,-2]],[[2579,3306],[-16,-56],[-46,20]],[[2520,3331],[2,60]],[[5159,8443],[-45,-112]],[[2543,2737],[-13,-21],[-153,-27]],[[2546,2742],[-3,-5]],[[2324,3592],[-68,12],[10,52]],[[2504,3612],[-1,-8],[-21,-84]],[[2482,3520],[-126,13]],[[2356,3533],[6,51],[-38,8]],[[6558,7534],[33,11],[7,-28],[42,13],[13,-49],[69,16]],[[6722,7497],[3,-25],[2,-30]],[[6727,7442],[-32,-5],[-29,-6],[-44,-10]],[[6622,7421],[-12,52],[-36,-8],[-27,-8],[-12,43]],[[6535,7500],[12,-5],[17,8],[-6,31]],[[5871,2535],[20,-39],[9,8],[-5,10],[20,17],[14,-29],[-14,-26],[-9,-8],[15,-26]],[[5921,2442],[-61,-73]],[[5800,2476],[71,59]],[[4014,5320],[40,-12],[1,30],[35,-16]],[[6721,5818],[62,-23],[-6,-39]],[[6777,5756],[-5,-57],[-1,-21],[3,-36],[4,-19],[-41,15],[1,7],[-43,16]],[[6695,5661],[4,31]],[[6699,5692],[9,61],[13,65]],[[4825,5729],[-2,6],[1,36],[2,4],[1,20],[40,2],[-21,53],[20,18]],[[3773,5247],[-47,42],[-17,12],[2,34],[-16,14]],[[3733,5473],[22,-30]],[[7085,1908],[-2,34],[-2,18]],[[7081,1960],[-4,57],[88,2],[2,-64],[15,0],[0,-15],[4,-45]],[[4950,2526],[-16,2],[-42,16]],[[4243,2994],[-7,21],[-16,36]],[[3657,4955],[-28,26],[-54,45]],[[3540,5101],[15,-10],[40,-18],[7,37],[14,-2],[18,-33],[4,0],[48,-24]],[[5074,4332],[95,-52],[14,-11],[13,-13]],[[5196,4256],[-18,-36],[-16,-35]],[[5162,4185],[-2,-6],[-22,-20],[-20,-14]],[[5118,4145],[-4,30],[0,32],[8,19],[-34,3],[1,17],[-3,13],[-14,25],[-3,11],[1,14],[6,15],[-4,2]],[[5072,4326],[2,6]],[[5303,2826],[-5,-34],[28,-11],[-12,-71]],[[5209,7403],[8,1],[78,29]],[[5305,7390],[-3,-3],[-23,-56],[-12,-5],[3,-12],[-17,-38],[-41,29]],[[5212,7305],[-37,26],[28,66]],[[5203,7397],[6,6]],[[3922,4214],[-80,-7]],[[3965,3249],[-31,58],[136,78]],[[4070,3385],[20,-43]],[[5033,3429],[-41,-20],[-44,-27],[-37,-21],[-47,-29],[-14,-8]],[[4922,3449],[107,22]],[[4638,1857],[-12,6],[-18,31],[11,37],[-15,6],[-3,-5],[-51,11],[-7,4],[14,46],[8,26]],[[2407,3855],[10,51],[-1,4]],[[2357,3754],[49,96],[1,5]],[[3776,3098],[-3,-53],[5,-104]],[[3719,2887],[-4,58],[-6,27],[-2,19],[-1,45]],[[3706,3036],[32,5],[-4,57],[14,1]],[[4352,3895],[-3,15],[-35,4],[-25,41]],[[4323,3980],[17,11],[53,31],[31,14]],[[5115,2533],[-33,77]],[[4496,2359],[-24,7]],[[4472,2366],[-11,54],[-16,75],[30,13]],[[3269,5234],[17,38],[48,-31],[12,5],[35,-21],[16,-9],[11,34]],[[4968,4388],[16,-9],[8,17],[58,-51],[24,-13]],[[5072,4326],[-35,-93],[-9,-20],[-8,-14],[-39,-63],[-5,-12]],[[4976,4124],[-116,101]],[[4860,4225],[9,36]],[[3418,2245],[17,-115]],[[3194,2183],[141,157],[59,67]],[[3394,2407],[11,-78]],[[3405,2329],[13,-84]],[[4893,3986],[-6,21]],[[4887,4007],[36,17],[50,93],[3,7]],[[5118,4145],[-9,-6],[-49,-49],[-15,-8],[5,-26]],[[3589,808],[-24,-75],[-5,-10],[-15,-57],[-13,-48]],[[3532,618],[-129,59]],[[5228,5542],[-22,-23]],[[5206,5519],[-26,-26]],[[5210,5755],[44,-72]],[[3917,3368],[9,19],[15,22],[15,18],[17,11]],[[4041,3446],[17,-35],[12,-26]],[[3916,3207],[-38,84]],[[3878,3291],[17,25],[6,12],[16,40]],[[2568,3773],[50,-23],[19,-5]],[[2791,3728],[-2,-56]],[[2789,3672],[-57,-1],[-20,-1],[-20,-4],[-11,-4],[-19,-10],[-19,-15]],[[2628,3684],[4,21],[-74,9],[7,48],[3,11]],[[5055,2318],[-10,49]],[[5045,2367],[33,14],[1,13],[-7,21],[-8,42],[28,0],[-5,26],[15,1],[28,0],[6,7]],[[5171,2432],[31,-42]],[[5202,2390],[10,-13]],[[3848,4065],[-2,68],[-3,38],[-1,5],[-1,31]],[[3941,4013],[18,-88]],[[3959,3925],[-28,-15]],[[3015,3829],[-13,-10],[-9,-13],[-13,-31],[-4,-22],[-3,-95]],[[2973,3658],[-66,4]],[[2907,3662],[-19,3],[-80,6]],[[2808,3671],[-19,1]],[[5351,3397],[44,94],[-21,15],[32,46]],[[5501,3454],[-13,-33]],[[5433,3336],[-14,-21]],[[4014,5320],[8,28]],[[4022,5348],[32,107],[41,-25],[12,22]],[[4134,5439],[-20,-118]],[[6008,7860],[6,-3],[28,-2],[3,1],[78,-7]],[[6096,7785],[-158,14]],[[5310,1479],[-36,28]],[[5274,1507],[-11,8],[-48,44],[-19,19],[-19,22]],[[5335,1542],[-25,-63]],[[4650,5508],[-22,-13],[-55,-36]],[[4623,5638],[7,-47]],[[2568,3773],[-16,8],[-32,10],[-19,3]],[[4392,6180],[-5,-16],[-18,8],[-6,-5],[-1,-12],[-11,-14],[-13,3],[-7,-2],[-21,-16],[-7,-3],[-9,3],[-12,-1]],[[4282,6125],[-30,-4],[-16,10],[-10,3]],[[4226,6134],[5,27],[8,53]],[[4239,6214],[3,5],[45,-11]],[[4287,6208],[55,1],[16,-3],[19,-7],[16,-12]],[[4393,6187],[-1,-7]],[[3865,4893],[11,57],[15,-6],[12,59]],[[3988,4969],[-16,-66],[-4,-30]],[[2324,3592],[-5,-51],[-73,14]],[[2168,3629],[8,15],[-7,8],[-25,17],[13,17]],[[2157,3686],[19,-8],[23,-9],[22,-5]],[[4801,4397],[4,21],[43,67],[33,50],[12,9]],[[4893,4544],[15,-10],[-7,-18],[-14,-26],[9,-5],[26,-23],[-7,-11]],[[3642,4870],[-34,8],[-5,-23],[-33,10]],[[6876,1991],[-27,4],[-20,5],[6,26],[-9,4],[4,17],[-6,2],[10,38]],[[6966,2068],[-2,-46]],[[6964,2022],[-27,-16],[-23,-10],[-23,-5],[-15,0]],[[3271,4142],[3,-1],[82,-78]],[[3306,3976],[-40,45],[-40,45]],[[3226,4066],[45,76]],[[4283,5518],[20,21],[12,9],[9,3],[21,20]],[[3265,2569],[4,17],[-73,-20],[-5,5]],[[3337,2791],[48,-32],[-6,-21],[1,-25],[4,-10],[11,-18],[11,-11],[24,34],[5,5],[15,-27],[39,-1]],[[3489,2685],[-3,-31],[-4,-34],[1,-14],[-6,-14]],[[3477,2592],[-34,10],[-24,5],[-22,0],[-31,-7],[-7,1],[-94,-32]],[[4609,4595],[8,-30],[16,-47],[19,-46],[18,-70]],[[4569,4683],[23,-42]],[[4592,4641],[17,-46]],[[4725,4044],[12,-1],[14,-6],[53,-26],[45,-20],[6,0],[32,16]],[[4884,3931],[-14,-2],[-70,-49]],[[4800,3880],[-79,-57],[-35,9]],[[4675,4010],[23,23],[16,9],[11,2]],[[3132,3646],[55,-5],[55,-4]],[[3242,3637],[-2,-32],[-21,3],[-6,-109]],[[3022,3438],[6,67],[5,91],[0,19],[3,16],[1,23]],[[3653,5317],[4,-10],[41,-43],[41,-37],[-17,-42]],[[4048,1941],[32,-21],[-1,-9],[-9,-27],[1,-14],[6,-11],[23,-15],[2,-4]],[[4202,1780],[20,-12],[-12,-34]],[[4210,1734],[-6,-69]],[[6730,7249],[4,42],[1,22],[-2,35]],[[6733,7348],[60,7],[15,-2],[6,97],[3,49]],[[6873,7674],[-3,-45]],[[6870,7629],[-12,-157]],[[6858,7472],[-12,-124],[33,-5],[-6,-74],[27,-4],[18,-11]],[[4019,5662],[6,72],[9,87],[43,1]],[[4077,5822],[52,0],[96,-3]],[[4187,5637],[-7,-11]],[[4180,5626],[-68,20],[-6,13],[-11,-9],[-42,12],[-34,0]],[[4657,6749],[11,45],[-38,16],[2,10],[18,40]],[[4650,6860],[17,-12],[13,-6],[10,65],[-1,14],[33,10]],[[4776,6645],[-26,8],[-21,8]],[[4729,6661],[-55,21]],[[6628,7246],[-2,30],[18,-1],[-21,135],[-1,11]],[[6727,7442],[6,-94]],[[4840,6055],[17,15],[11,8],[39,34],[34,-68],[7,-14],[9,-3]],[[4866,5868],[-9,22],[-9,26],[-4,18],[-3,25],[-1,13],[0,83]],[[5069,7282],[25,-16]],[[5094,7266],[43,-20],[19,-73]],[[6818,1863],[15,-5]],[[2590,1439],[12,47],[22,58],[-30,19],[18,52],[8,34],[1,14],[1,36],[2,14],[11,33],[19,-5]],[[2711,1490],[-11,-34],[-79,-19],[2,-12],[-33,14]],[[5319,3844],[44,3]],[[4532,4835],[51,-90]],[[4583,4745],[-32,-28]],[[4458,4698],[8,43],[-23,21],[11,23],[-31,24],[60,41],[-21,42]],[[4462,4892],[32,26]],[[6502,6543],[-22,-50],[-4,-21]],[[6361,6602],[53,-25],[27,84],[18,49]],[[6459,6710],[43,-27]],[[7327,4696],[2,4],[1,17],[2,6],[3,17],[6,12],[7,31],[18,22],[13,10],[8,13],[5,4]],[[7427,4759],[-13,-48]],[[5118,4145],[7,-60],[-5,-1],[17,-117]],[[5142,3929],[-57,-5],[-2,42]],[[3834,3662],[10,19],[15,-30],[17,23],[24,-29],[19,27],[19,26],[18,22],[15,-9]],[[4729,6661],[-46,-154],[-17,-44],[-9,-30]],[[4657,6433],[-30,15]],[[4627,6448],[24,115],[23,119]],[[6531,6287],[29,-25],[19,-11]],[[6579,6251],[-12,-52],[-10,6],[-34,-100]],[[6523,6105],[-41,11],[-28,24]],[[6504,6237],[27,50]],[[3900,2925],[39,45]],[[5070,2144],[-11,61],[-17,69],[-23,-5]],[[5019,2269],[-14,85],[40,13]],[[6910,5002],[41,-15],[29,-8]],[[5317,1346],[-41,20],[17,55]],[[5293,1421],[54,-25],[58,-5],[40,15]],[[4381,4730],[16,-1],[0,-6],[17,-14]],[[6029,2761],[-54,1],[-16,-3],[-17,-5],[-13,-5]],[[5903,2799],[-26,47]],[[5877,2846],[79,20],[3,-25],[4,-3],[1,-15],[25,6],[43,6]],[[6032,2835],[-1,-37],[-2,-37]],[[5206,5519],[67,-174]],[[5273,5345],[-58,-9],[-28,-83]],[[3848,3090],[2,-6],[10,-89],[-40,-10],[3,-40]],[[6536,6752],[-38,112]],[[6567,6937],[12,-15],[25,-19]],[[3682,3586],[61,8]],[[5834,3189],[-5,-9],[7,-17],[-33,-34],[52,-58]],[[6876,1991],[-1,-11],[-7,-15],[-8,-12]],[[4393,6187],[7,-1],[49,1],[0,19],[22,5],[-1,41]],[[4470,6252],[30,-2],[18,-2],[28,-7]],[[4542,6139],[-15,1],[-32,12],[-17,1],[-21,-3],[-23,2],[-13,5],[-29,23]],[[5747,2583],[29,27],[13,14]],[[5902,2561],[-31,-26]],[[4627,6448],[-45,15]],[[5195,3963],[1,41],[-1,49]],[[5195,4053],[33,14]],[[5300,3969],[-44,-5],[6,-44]],[[5867,2864],[10,-18]],[[4791,3574],[85,40],[13,-47]],[[4889,3567],[-13,-6],[8,-29]],[[4740,4614],[-45,38],[-29,55],[-5,0],[-69,-66]],[[4583,4745],[77,69]],[[4660,4814],[81,72],[18,26]],[[4813,4834],[-93,-85],[36,-68],[7,-9]],[[6755,5547],[-67,52],[7,62]],[[6777,5756],[58,-51]],[[6835,5705],[-2,-7],[78,12]],[[2177,3908],[34,-20],[7,22],[58,-32],[20,56],[39,-29],[32,-23],[29,-17],[11,-10]],[[2246,3763],[-101,48]],[[2145,3811],[32,97]],[[5536,3356],[26,23]],[[2852,3391],[-45,19],[-32,17],[-28,-49],[-5,-23],[-17,-57]],[[2725,3298],[-62,29],[-15,-54],[-69,33]],[[2711,3459],[16,54],[11,37]],[[2855,3506],[-3,-115]],[[6406,7370],[57,13],[-9,116],[6,7],[68,20],[7,-26]],[[6622,7421],[-128,-30],[21,-158]],[[3477,2592],[23,-14],[24,-19]],[[3524,2559],[-130,-152]],[[3394,2407],[-2,7],[-98,44]],[[3294,2458],[7,24],[7,41],[-18,3],[-17,6],[-17,8],[9,29]],[[5516,5701],[-99,-95],[-41,-43]],[[5376,5563],[-31,48],[-18,30]],[[5327,5641],[139,143]],[[7684,5859],[-30,20],[-8,25]],[[6642,5936],[-12,-51],[-8,-42],[-28,8],[9,-59],[13,-2],[-3,-42],[0,-46],[3,-24]],[[6616,5678],[-1,-19]],[[6564,5923],[-1,15]],[[2951,1494],[-41,-95],[-1,-31],[6,-33],[10,-19]],[[2834,1337],[-25,13],[1,32],[19,56],[-1,10],[13,4],[19,-4],[3,4],[3,16],[5,46],[80,-20]],[[4462,4892],[-16,34],[-49,-34]],[[4472,5096],[35,-72],[14,5]],[[6881,6729],[-32,20]],[[5706,7761],[25,-15]],[[2482,3520],[-3,-56],[42,-4],[-46,-126]],[[2411,3338],[3,63]],[[2414,3401],[3,77],[-63,4],[2,51]],[[5570,1748],[96,-16],[26,-3]],[[6984,5296],[-67,77],[-76,49]],[[6862,5453],[28,-18],[87,-56],[90,-61]],[[7114,5286],[-39,-72],[-4,2]],[[7071,5216],[-56,46]],[[6822,5912],[17,-6],[-16,-71],[35,-34],[-23,-96]],[[6721,5818],[20,105]],[[6745,5940],[77,-28]],[[5504,3959],[3,3],[22,53],[13,28],[5,5],[22,52],[-5,2],[2,13]],[[5577,6865],[-87,76]],[[5490,6941],[28,90]],[[3429,5702],[52,2],[32,-6]],[[3513,5698],[-8,-34]],[[3505,5664],[-17,-76]],[[3488,5588],[-58,4]],[[3430,5592],[0,39],[-40,8],[-2,70],[41,-7]],[[2345,898],[12,29],[24,-7],[20,-13],[12,35]],[[2330,861],[15,37]],[[4683,3804],[-1,-56]],[[2641,1256],[12,-3]],[[2653,1253],[-10,-50],[-9,-57],[-9,-48]],[[2625,1098],[-26,7],[9,48],[-58,16]],[[2556,1209],[5,29],[-1,5],[5,30]],[[4762,2963],[-4,-53]],[[4267,1195],[-21,-70],[-41,-126]],[[4187,1085],[18,62],[-56,29],[12,38]],[[6816,6330],[-6,-9],[1,-9],[-49,-1],[-19,4]],[[6743,6315],[16,66],[-4,3],[-78,36],[-5,1],[-61,28]],[[6611,6449],[22,52],[48,126]],[[6681,6627],[61,-18],[65,-43],[15,39],[10,-6]],[[6832,6599],[49,-28],[-19,-50],[-26,-76],[29,-9]],[[2747,4621],[25,-8],[30,-7]],[[2972,4606],[5,-53],[-10,-28],[-9,-36],[-65,23],[-4,-43],[62,-18],[-13,-55]],[[2938,4396],[-102,-29]],[[2702,4568],[-13,11],[9,18],[16,-5],[7,6],[6,33]],[[3091,1133],[2,87],[2,123],[-2,19],[-13,-16],[-24,-20],[-26,-27],[-11,69],[-4,15]],[[3015,1383],[12,25],[3,28]],[[3101,1456],[52,16],[29,6]],[[6111,4829],[-93,-105]],[[5929,5083],[61,-86]],[[7424,4888],[-49,13]],[[7375,4901],[24,59]],[[7399,4960],[10,22],[28,-19],[47,-33],[36,-23],[20,-14],[25,88]],[[7644,4975],[1,-8],[-10,-12],[-4,-13],[1,-23],[-1,-30],[-7,-16],[-9,-43]],[[7584,4637],[-2,8],[-28,30],[-16,-16]],[[5062,1776],[1,-25]],[[5063,1751],[-32,0],[-16,3],[-22,9],[-45,25],[-70,4]],[[4982,2036],[19,13],[35,16],[26,9]],[[8501,4717],[34,1],[78,7],[47,-1]],[[2475,2223],[-28,19],[-1,-1],[-32,37],[-23,-2],[-18,21],[-60,72],[-2,16]],[[2512,2459],[15,-2],[23,1],[12,-4],[12,-1],[8,2]],[[2582,2455],[-55,-118],[-52,-114]],[[6579,5981],[27,78],[4,5],[34,99],[45,-33],[3,-1]],[[6692,6129],[7,1],[16,-5],[69,-39],[-23,-86],[27,-12]],[[6788,5988],[18,-10],[30,-26],[-8,-16],[-6,-24]],[[6032,2835],[0,12],[13,41],[3,13],[0,13],[-3,22]],[[6001,2981],[21,8],[14,4]],[[6076,2673],[-11,8],[-5,35],[10,34],[-10,10],[-31,1]],[[2938,4396],[128,37],[43,-12]],[[7201,4784],[9,21],[-6,16],[17,41],[30,-21],[13,-7],[25,88],[-94,24],[38,91],[-57,39],[18,24],[21,25]],[[7215,5125],[30,32],[8,-8],[9,-4],[2,-11],[7,-4]],[[7271,5130],[-23,-60],[48,-34],[-2,-5],[105,-71]],[[7375,4901],[-6,1]],[[7282,4833],[-26,-88]],[[3488,5588],[55,-15]],[[3543,5573],[-6,-32],[-11,3],[-4,-23],[9,-11],[-13,-66]],[[3380,5598],[50,-6]],[[5921,2442],[20,-25],[25,-35],[22,26],[20,-28]],[[4231,5922],[66,5],[3,37],[7,35],[32,-11],[-9,-71],[37,-8]],[[4367,5909],[-9,-39]],[[4225,5819],[6,84]],[[3689,2031],[-23,-57],[-32,21],[-11,-1],[-29,-78]],[[3538,1925],[6,24],[8,20],[-9,4],[32,98]],[[3596,2135],[63,-21]],[[2691,3165],[17,80],[17,53]],[[2852,3391],[1,-21],[-2,-63],[16,-35]],[[3184,2416],[-17,-57],[-26,-71]],[[2999,2365],[9,7],[25,29],[34,68]],[[3067,2469],[19,-13],[42,-24],[23,-9],[33,-7]],[[4210,1734],[61,6],[28,1],[9,19],[17,47],[0,18],[22,68]],[[4434,1744],[-28,-94]],[[5378,7999],[64,-39],[89,-52]],[[4514,6682],[-2,26],[-33,0],[-9,-4],[-1,27],[-33,-3],[0,10],[19,1],[-3,46],[21,3],[-3,14],[-8,-4],[-7,12],[0,9]],[[4619,6893],[-1,-5],[6,-23],[17,0],[9,-5]],[[6570,5984],[-29,10],[8,29],[-8,4],[19,56],[-37,22]],[[6579,6251],[7,26],[10,26],[53,-43],[-1,-5],[22,-14],[2,-10],[22,3],[21,-7]],[[6715,6227],[-23,-98]],[[4893,4544],[-20,16],[-12,5],[-6,14],[-15,4],[-13,9],[-11,-20]],[[4807,4650],[17,-9],[13,26],[28,32],[7,4]],[[4872,4703],[9,-24],[12,-24],[9,-12],[24,-24]],[[4926,4619],[-33,-75]],[[4333,6832],[-26,-8],[2,-11],[0,-19],[-14,-4],[0,-13],[3,-1],[0,-17],[-7,-1],[-6,-54],[-9,1],[-6,-54]],[[4270,6651],[-46,23],[-16,7],[-33,10],[-16,8],[-11,11],[-21,16],[-14,6],[-12,3],[-37,-6]],[[4064,6729],[4,3],[0,10],[5,21],[-1,12],[13,41],[9,23]],[[6737,8311],[32,-29]],[[6769,8282],[-26,-200],[-10,-80]],[[2955,1504],[-4,-10]],[[2778,1163],[-5,-22],[-57,16]],[[2712,1184],[20,99],[50,-14],[4,32],[0,9],[-48,4],[-67,19]],[[2671,1333],[10,39],[27,73],[12,39]],[[4085,5941],[-6,-43],[-2,-76]],[[4019,5662],[-37,0]],[[3859,5907],[9,0],[13,38],[3,12]],[[4811,2273],[28,-9],[57,-29]],[[4896,2235],[66,-34]],[[4962,2201],[-6,-28],[-11,-82],[-5,-29]],[[4679,2127],[4,48],[14,61],[16,65]],[[4713,2301],[98,-28]],[[2224,1134],[4,13],[9,45],[1,24]],[[2231,1302],[105,-18]],[[2492,1169],[0,-60],[3,-57],[38,-1]],[[2533,1051],[-3,-68],[-14,0],[-100,62],[-92,55],[-42,20]],[[2282,1120],[-36,10],[-22,4]],[[4064,6729],[-2,-48],[0,-40],[-16,-60]],[[4046,6581],[-25,14],[-2,44],[-3,10],[6,18],[-9,4],[-2,8],[-26,14],[-4,-10],[-6,3],[-3,-8],[-14,13],[-15,-36],[-17,13],[5,13],[-14,18],[-44,25]],[[7043,5021],[38,-17],[12,-8],[14,-13],[14,53],[10,24],[-41,28],[11,31]],[[7101,5119],[38,-24],[13,-14],[20,31],[14,33],[29,-20]],[[2960,1336],[33,27],[22,20]],[[2290,4081],[11,66]],[[2637,1028],[-23,12]],[[2614,1040],[11,58]],[[2653,1253],[14,64],[4,16]],[[2878,2488],[13,-6],[38,-41],[21,36],[33,-30],[37,65],[28,-25]],[[3048,2487],[-63,-105],[-95,-105],[-101,-113]],[[2550,1550],[7,34],[23,54],[6,37],[43,114],[8,32]],[[2590,1439],[-24,7]],[[2566,1446],[-36,11]],[[2530,1457],[4,14],[11,30],[5,49]],[[6531,6287],[25,49],[23,44]],[[6579,6380],[18,36],[14,33]],[[6743,6315],[-19,-87],[-9,-1]],[[5063,1751],[3,-114],[1,-80]],[[6844,6631],[-12,-32]],[[6681,6627],[2,6]],[[2914,5212],[12,-4],[20,-19],[11,-1],[31,-14],[25,-16],[6,-6],[17,3],[21,7],[1,26],[-9,21],[5,5],[15,2],[27,-1],[23,-4],[24,-8],[9,-56]],[[2986,5135],[-17,-9],[-12,-4],[-26,-6],[-16,-2],[-54,-1],[-11,-5],[-4,-15],[-24,-1],[-27,4],[-19,15],[-4,7],[-6,-4],[-2,-20],[2,-20]],[[4972,4410],[4,34],[4,12],[5,3],[22,5],[1,119]],[[5076,4581],[30,5],[9,-2],[6,-9],[0,-10],[11,-2]],[[5132,4563],[-10,-93],[-6,-26],[-10,-28]],[[5106,4416],[-32,-84]],[[3418,2245],[49,-37],[40,-21]],[[2550,1550],[-27,24],[-25,20],[-58,37]],[[2542,834],[8,18],[11,7],[16,29],[8,8],[7,-1]],[[2669,633],[-55,-12],[-16,-17],[-16,-6],[-3,0],[-71,79],[-6,9]],[[5019,2269],[2,-35],[-2,-15],[14,-19],[0,-10],[10,0],[6,-39],[-4,-4],[-26,24],[-57,30]],[[4896,2235],[41,143],[-4,3],[16,51],[0,51]],[[5023,2467],[22,-100]],[[5209,4239],[-13,17]],[[5106,4416],[68,-45]],[[5527,4315],[-92,-16]],[[2606,3588],[-51,-75],[-9,-17],[-11,-25],[-7,-25],[-5,-34],[-1,-21]],[[3560,6132],[1,21],[28,95],[5,14],[8,-4],[11,33]],[[3728,6180],[-3,-2],[-8,-37],[-50,19],[-24,9],[-16,3],[-7,-27],[-12,4],[-48,-17]],[[2566,1446],[-26,-71],[-26,-19],[-6,-6],[-7,-21],[-2,-27]],[[2455,1332],[1,87],[-25,1],[4,52],[2,21],[4,8]],[[2441,1501],[4,-3],[63,-33],[22,-8]],[[6037,6776],[-20,-10]],[[6017,6766],[-3,-2]],[[4287,6208],[3,27],[14,50],[-34,17],[-17,5],[20,44]],[[4273,6351],[14,31],[13,16]],[[4524,6436],[0,-15],[7,-11],[15,-16],[-43,-89],[-36,8],[-19,1],[-3,5],[-16,0],[0,-42],[5,0],[1,-26],[35,1]],[[5524,5247],[-2,-2]],[[5484,5102],[-145,-149],[-11,13],[-2,14],[-30,14]],[[5237,5225],[107,-58],[-29,72]],[[5315,5239],[55,-82],[49,46],[24,26]],[[4187,2340],[47,140]],[[4234,2480],[16,48]],[[4250,2528],[95,-80],[52,-42],[24,-14]],[[4421,2392],[36,-20],[15,-6]],[[9189,4741],[-15,-58],[-16,-58],[-16,-48],[-18,-47],[-31,-79],[-16,-36],[-15,-38],[-1,-10],[-7,-18],[-25,-44],[-15,-35]],[[1948,3904],[-4,-15],[-7,5],[-9,-12]],[[2347,1691],[-25,-85],[-10,-24],[92,-51],[37,-30]],[[2441,1501],[-28,-11],[-30,-8],[-54,-16],[-71,-11],[-26,-3],[-50,7]],[[2189,1519],[10,75]],[[2223,1693],[23,83],[8,16]],[[2305,1854],[-117,96]],[[2223,2197],[77,-46],[28,-49],[6,-4],[27,14],[60,32],[7,13],[13,-10]],[[6769,8282],[63,-56],[51,-53],[45,-37]],[[3748,3717],[9,27],[-1,6],[-19,60]],[[3959,3925],[2,-13],[1,-18],[10,-47],[6,-39]],[[3976,3802],[-11,-11],[-52,-33],[-16,-12],[-27,-29],[-10,-14],[-34,20],[-53,29],[-14,-40]],[[4454,1809],[38,-19],[11,38],[45,-4],[17,-7],[54,-29]],[[3747,5822],[-106,70]],[[3641,5892],[3,12],[-1,18],[-6,26],[-8,19],[0,7],[15,85]],[[3644,6059],[16,-4],[35,-6],[17,69],[20,-7]],[[3755,6102],[0,-37],[-9,-34],[48,-21],[-18,-103]],[[6035,2582],[17,31],[16,37],[8,23]],[[6230,2550],[-15,-25],[-46,-80]],[[2157,3686],[-34,17],[-13,9],[-10,10],[-7,13],[-9,5],[-36,38],[-30,27],[-27,19]],[[2078,3841],[67,-30]],[[6699,5692],[-83,-14]],[[5996,6605],[18,69],[15,57],[-7,16],[-5,19]],[[4771,6375],[-114,58]],[[2202,3987],[-6,-21],[-19,-58]],[[3508,2930],[-5,-82],[-3,-35]],[[3500,2813],[-66,30],[-24,12],[-25,12],[-18,7]],[[3467,3145],[-5,-90],[16,12],[39,-6]],[[4425,2557],[-8,-54],[12,-61],[-8,-50]],[[4250,2528],[24,74]],[[6839,6260],[-38,-116],[27,-12],[-19,-67]],[[6809,6065],[-21,-77]],[[4906,6211],[12,-26],[53,-103]],[[4840,6055],[-1,30]],[[4389,6021],[-81,2],[-88,-5]],[[4218,6098],[8,36]],[[4282,6125],[-1,-23],[26,-2],[82,-13],[1,-35]],[[4390,6052],[-1,-31]],[[6965,5248],[-94,63],[-14,-40],[-4,-8]],[[6853,5263],[-25,32],[-2,16],[5,19],[-11,5]],[[3917,3368],[-9,5],[-55,-33],[-38,-33],[-3,-1],[-36,48]],[[5790,6502],[-48,27],[-15,-42],[-57,33]],[[5666,6523],[13,40],[29,79],[16,49]],[[4900,2941],[-50,10]],[[4850,3095],[40,-3]],[[3362,6275],[161,-147],[4,-5]],[[3527,6123],[-7,-10],[-35,-34],[-10,-19],[-45,5],[-13,-1],[-9,-8],[-6,-13]],[[7081,1960],[-8,-1],[-93,0]],[[6980,1959],[3,25],[-2,50],[-17,-12]],[[5390,5540],[-14,23]],[[5633,5517],[-95,-103]],[[2695,2673],[-94,34]],[[2837,2770],[-4,-4],[-11,-27],[-8,-28],[-13,4],[-55,17],[-3,1],[-25,-30],[10,-11],[-6,-14],[-3,-13]],[[7064,1729],[-25,-17]],[[6974,1829],[14,80],[-14,4],[6,46]],[[4046,6581],[-5,-27],[-8,-60]],[[3155,5230],[-60,31],[-48,26],[-72,38]],[[2989,5391],[43,-6],[1,25],[-6,37]],[[3202,5363],[-23,-65],[30,-21]],[[2295,770],[-38,9],[-1,-9],[-61,6],[-13,-2],[-25,-9],[-15,-12]],[[2142,753],[-1,30],[5,64],[2,32]],[[2148,879],[62,2],[-7,94]],[[2203,975],[24,3],[11,-4],[31,-14],[40,-11],[-5,-27],[41,-24]],[[3189,2568],[-12,-4],[-75,1],[-14,-2],[-16,-34],[-24,-42]],[[2200,1078],[-34,-83]],[[2166,995],[-11,-26],[-4,-24],[0,-17],[-16,1],[-10,7],[-13,13],[-11,5],[-42,-15],[-24,0],[-10,-2],[-20,13],[-13,7],[-14,3],[-24,-10],[-16,-15],[-5,-13],[1,-6]],[[1920,906],[-4,20],[5,59]],[[5230,6201],[-100,-97],[-24,-21]],[[5011,6192],[19,32]],[[5030,6224],[25,31],[20,19],[80,68]],[[6558,7534],[-12,48],[-3,7],[-16,69],[-7,31]],[[4300,1909],[-9,-8],[-5,-9],[-8,-24],[-21,12],[-9,-21],[-39,21],[-7,-19]],[[3557,5945],[-11,-48],[-12,-50],[26,-14]],[[3529,5745],[-16,-47]],[[3429,5702],[-4,57],[0,36]],[[3425,5795],[2,28],[9,49],[10,35],[28,-22],[5,11],[17,44],[1,7],[-4,7],[5,9]],[[3498,5963],[8,-4],[33,-8],[18,-6]],[[5331,4835],[-10,1]],[[3199,5150],[-4,-11],[1,-20],[-38,-8]],[[4811,2273],[36,130]],[[3405,2329],[17,25],[50,-28],[13,-20],[8,-17],[24,-17],[46,105],[36,-19]],[[3599,2358],[-38,-115],[65,-39]],[[3626,2204],[-4,-16],[-10,-24],[-6,-7],[-10,-22]],[[2414,3401],[-104,7],[-33,1]],[[4860,4225],[-28,-45],[-65,32],[-42,-168]],[[4689,4342],[19,11],[5,10]],[[5140,1527],[55,-80],[5,4],[33,-16],[-1,-4],[25,-12]],[[5257,1419],[-12,-39],[-13,9],[-36,-61]],[[5196,1328],[-125,60]],[[5067,1557],[15,1],[19,-7]],[[3527,6123],[26,-20]],[[3553,6103],[16,-10],[29,-16],[28,-12],[18,-6]],[[3641,5892],[-68,45],[-16,8]],[[3498,5963],[-10,8],[7,8],[17,9],[10,8],[4,7],[-28,9],[-11,4],[-66,36],[-8,0],[-8,-11]],[[4714,5408],[-50,-46],[-7,-8],[-21,-19]],[[4941,6309],[34,29],[47,-95],[8,-19]],[[5156,7173],[56,132]],[[5057,5834],[0,17],[1,33],[3,23],[7,36],[6,23],[6,14]],[[5080,5980],[32,-58],[14,13]],[[3226,4066],[-30,36],[-18,-58],[-125,9]],[[3256,4149],[15,-7]],[[3984,6173],[7,35],[-19,6],[9,28],[12,-4],[3,20],[3,-1],[6,50]],[[4054,6336],[12,-86],[31,-43]],[[3841,5194],[-43,41]],[[4928,3193],[-27,43],[-13,18],[-10,5],[-21,0],[-12,24]],[[2624,2525],[-36,-58],[-6,-12]],[[2543,2737],[5,-8],[1,-10],[4,-129],[69,-7],[9,-47],[-7,-11]],[[5263,5806],[17,18],[101,103]],[[5327,5641],[-30,-30]],[[8760,4875],[-167,10]],[[3067,2469],[-19,18]],[[3294,2458],[-59,16],[-21,-62],[-30,4]],[[2166,995],[10,3],[24,14],[3,-37]],[[2148,879],[-105,-3],[-2,-25],[0,-84],[-26,-7],[-14,-6],[-36,-7]],[[6579,6380],[-50,43]],[[3798,2216],[-24,-56],[-5,-9],[-26,-70]],[[3626,2204],[13,-9],[13,30],[19,37],[23,50]],[[3425,5795],[-19,2],[-8,3],[-32,21],[-10,8],[-16,21],[-13,26]],[[2956,387],[-3,13],[9,28],[0,10],[-10,7],[-6,10],[-3,29],[-2,35],[-4,21],[-5,3],[0,23]],[[4840,6055],[-14,-12],[-25,-27]],[[4687,5971],[-17,10]],[[3682,3586],[-6,82],[-14,-8],[-30,89],[-7,1]],[[7029,5031],[33,94],[-24,14],[19,54],[10,13],[4,10]],[[7149,5262],[-48,-143]],[[3706,3036],[-22,-4],[-16,0],[-26,10],[-11,2]],[[3037,3654],[-64,4]],[[2808,3671],[0,-55],[-1,-3],[3,-23]],[[2738,3550],[-8,2],[-124,36]],[[5488,2680],[7,-9]],[[6858,7472],[12,-2],[18,19],[5,-9],[5,5],[19,-4],[-1,-10],[31,-4]],[[5162,4185],[11,-7],[9,-15],[7,-23],[4,-29],[2,-41],[0,-17]],[[3553,6103],[7,29]],[[6140,5174],[-32,47]],[[6900,5131],[-25,31],[-55,51],[16,33],[12,16],[5,1]],[[6926,5165],[-26,-34]],[[3785,3219],[17,4],[15,8],[28,19],[16,17],[17,24]],[[3892,3083],[-44,7]],[[4774,5864],[-5,-44],[-2,-37]],[[4767,5783],[-27,-9],[-15,-3],[-27,-3],[-59,-3],[-6,62]],[[3702,5595],[-124,45],[-73,24]],[[4978,4590],[-17,7],[-22,11],[-13,11]],[[2614,1040],[-37,18],[-14,2],[-2,-12],[-28,3]],[[4582,6463],[-23,-115],[-8,-57]],[[4935,3589],[-46,-22]],[[4763,3712],[-12,39],[75,41],[-26,88]],[[6051,8822],[-14,8],[-98,112],[-16,21]],[[5391,5353],[0,-1],[-87,-85]],[[5304,5267],[-31,78]],[[6316,2459],[-6,-95],[-4,-21]],[[6187,2265],[-50,94]],[[4624,3153],[20,-39],[8,-4],[66,-5]],[[2855,3506],[45,-18]],[[2900,3488],[76,-31]],[[3505,1667],[29,-191]],[[3488,1484],[-27,11],[0,11],[-41,3]],[[3420,1509],[0,61],[4,55]],[[3079,1551],[-2,-4]],[[4033,6494],[47,-23],[22,-16],[18,-9],[15,-5],[19,-3],[15,0],[3,-5],[-12,-15],[-11,-29],[-2,-13]],[[4147,6376],[-6,-103]],[[4141,6273],[-2,-55],[-3,-13],[-11,-1],[-12,-19]],[[4254,6569],[-24,11],[-116,33],[-31,-28],[-14,-18],[-23,14]],[[4270,6651],[20,-10]],[[4290,6641],[-6,-27],[-6,-19]],[[3562,1289],[-6,41]],[[3532,618],[-23,-86],[-22,-76]],[[3487,456],[-123,57]],[[5132,4563],[4,23],[6,10],[30,22],[7,11]],[[5563,6694],[27,60],[24,-20],[52,-30],[58,-13]],[[6962,7612],[-64,10],[-5,4],[-23,3]],[[6396,6855],[14,39],[26,2],[14,3],[20,7],[10,6]],[[6459,6710],[-96,60]],[[4240,2993],[-46,-18],[-15,-8],[-2,-3],[-20,-20],[-26,-20],[-36,-35],[-35,-22],[-4,0],[-19,-10]],[[5539,3544],[-9,-15],[-24,-60]],[[3289,3634],[-47,3]],[[5203,7397],[-45,21],[-3,-16],[-6,-17],[-55,-119]],[[5158,7541],[5,-8],[47,-43],[6,-6],[5,-11],[-1,-8],[-9,-50],[-2,-12]],[[6010,7730],[-12,-53],[29,-13],[13,-9],[-16,-34],[-19,-34]],[[5901,7753],[109,-23]],[[4234,2480],[-108,59]],[[5577,6865],[-24,-35],[-15,-30]],[[5538,6800],[-66,58],[-12,-5],[-30,1],[-18,72],[-6,27]],[[5406,6953],[84,-12]],[[6994,5071],[-27,38]],[[5304,5267],[11,-28]],[[6010,7730],[56,-13],[5,11]],[[4389,6021],[-8,-46],[-14,-66]],[[5328,2373],[-18,34],[-7,10],[4,5],[-18,40],[-18,30],[-39,-56],[-7,-13],[-23,-33]],[[2320,1004],[-47,31],[3,54],[6,31]],[[3410,3624],[4,-7],[15,-15],[76,-45],[-6,-26],[1,-8]],[[3500,3523],[-12,-3],[-14,0],[-87,11],[-11,-1],[-24,-86],[6,-11],[4,-15],[-5,-13],[-6,-1],[-6,-21]],[[6604,6903],[41,120]],[[5385,7048],[-9,-30],[-10,-27],[-15,-27]],[[6447,7018],[23,-63]],[[2900,3488],[4,14],[8,-3],[9,41],[3,88],[-13,0],[-4,4],[0,30]],[[6809,6065],[22,-10]],[[7289,5167],[-2,2],[-16,-39]],[[4518,6010],[-11,4],[5,17],[-37,7],[-1,-15],[-22,4],[2,16],[-64,9]],[[6122,1926],[14,31],[44,84],[15,41]],[[5412,7157],[126,-64],[-8,-24]],[[5406,6953],[-21,95]],[[5274,1507],[-15,-52],[7,-5],[-9,-31]],[[7646,5904],[-40,-21]],[[2624,2525],[9,-10],[-14,-112],[1,-21],[35,-59]],[[2471,2214],[4,9]],[[3489,2685],[11,128]],[[4761,5724],[1,20],[5,39]],[[5147,3757],[14,-8]],[[3420,1509],[-1,-33],[-2,-9]],[[3599,2358],[27,83]],[[5538,6800],[-13,-31],[-14,-38]],[[4706,5039],[5,-38],[5,-17],[8,-19]],[[4660,4814],[-35,63],[-1,14],[-16,41]],[[6024,2568],[-35,66]],[[4609,4595],[6,-6],[23,-10],[11,-8],[14,-12],[18,-14],[16,-20],[14,34],[11,-8],[11,-4]],[[4754,4504],[-28,-21],[-8,-12],[30,-38]],[[4633,5827],[-18,-20],[-17,-14],[-13,-6],[-23,-4],[-19,-1]],[[4003,5435],[-10,-35],[-7,-36],[17,-9],[19,-7]],[[3872,5416],[20,74]],[[6087,2058],[11,18],[27,43],[20,44]],[[3743,2008],[-14,-38],[-31,-96]],[[4290,6641],[36,-12],[44,5],[3,4]],[[5899,8451],[-30,-1],[-18,-2],[-57,-17]],[[5940,8438],[-41,13]],[[2142,753],[-18,-15],[-25,-18],[-20,-11],[-13,-12],[-27,-32],[-8,-20],[-12,-13],[-14,-9],[-12,-12],[-13,-4],[-15,-16],[-18,3],[-9,-5],[-19,-2],[-4,-10],[-10,-4],[-14,4],[-9,-1],[-31,10]],[[5196,1328],[106,-49]],[[4180,5626],[-18,-61],[-14,-29]],[[3171,4816],[7,62]],[[6900,5131],[21,-28],[-50,-61],[-21,28],[-22,-31],[-10,8]],[[3543,5573],[22,-6],[79,-23]],[[3710,5525],[-3,43]],[[5921,2442],[58,69],[45,57]],[[5845,8116],[-46,25],[38,103],[-15,7],[-21,8]],[[5801,8259],[15,43],[34,-17],[8,24],[7,6],[19,68],[15,68]],[[5213,5891],[20,19],[19,21],[83,77]],[[4147,6376],[31,-10],[95,-15]],[[4239,6214],[2,40],[-100,19]],[[3570,3539],[-20,-9],[-50,-7]],[[5771,8273],[20,-11],[10,-3]],[[4691,5235],[25,13],[22,15],[10,-3]],[[5252,6159],[-120,-109],[-18,-17],[-13,-16],[-11,-18],[-10,-19]],[[5293,1421],[17,58]],[[3487,456],[-21,-77]]]}
body
{
margin:0;
padding:0;
}
.units
{
stroke:black;
fill:none;
}
#chart
{
width:100%;
}
.bezirke
{
stroke:#CC2900;
fill:none;
}
iso wahlberechtigt abgegeben gueltig spoe fpoe oevp gruene neos www andas gfw sonstige winner
1000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
1001 715 387 377 128 86 75 40 44 0 4 0 0 spoe
1002 686 403 397 141 106 67 38 40 0 5 0 0 spoe
1003 663 402 390 173 74 62 48 22 5 6 0 0 spoe
1004 332 178 175 55 45 36 21 13 0 2 3 0 spoe
1005 805 419 416 112 101 103 44 48 0 6 2 0 spoe
1006 571 308 299 92 61 57 38 44 2 1 4 0 spoe
1007 611 311 300 102 67 71 26 32 0 1 1 0 spoe
1008 590 317 311 106 70 57 27 47 2 2 0 0 spoe
1009 786 436 425 145 95 63 59 60 0 3 0 0 spoe
1010 732 391 388 149 73 60 72 32 0 1 1 0 spoe
1011 485 260 259 83 57 61 36 20 0 1 0 1 spoe
1012 656 372 365 108 81 78 38 57 0 2 1 0 spoe
1013 570 313 303 98 80 62 34 28 0 1 0 0 spoe
1014 539 330 322 90 72 63 56 39 1 1 0 0 spoe
1015 774 475 470 176 113 70 59 49 0 3 0 0 spoe
1016 515 287 278 107 49 54 40 21 0 4 1 2 spoe
1017 737 393 387 124 92 62 56 47 0 5 1 0 spoe
1018 562 304 299 106 62 59 33 37 0 2 0 0 spoe
1019 0 0 0 0 0 0 0 0 0 0 0 0 spoe
4000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
4001 872 551 540 196 100 86 89 64 1 3 0 1 spoe
4002 1030 456 450 174 90 57 57 62 0 4 4 2 spoe
4003 820 445 439 152 75 69 78 63 0 2 0 0 spoe
4004 946 540 524 216 96 49 79 76 0 3 5 0 spoe
4005 846 506 491 201 79 30 116 53 2 7 3 0 spoe
4006 963 594 584 243 98 59 132 44 1 7 0 0 spoe
4007 978 577 561 218 92 60 110 75 1 5 0 0 spoe
4008 965 563 557 186 109 69 127 53 1 11 1 0 spoe
4009 900 594 565 234 125 53 100 45 2 6 0 0 spoe
4010 708 450 406 179 77 44 77 25 1 3 0 0 spoe
4011 730 431 419 163 86 48 81 40 0 1 0 0 spoe
4012 722 409 400 196 122 23 34 22 0 2 1 0 spoe
4013 979 557 535 188 117 57 115 44 0 13 0 1 spoe
4014 856 534 517 191 96 56 108 51 5 9 0 1 spoe
4015 596 336 322 125 60 39 56 36 0 3 2 1 spoe
4016 718 405 398 134 93 46 83 34 0 7 0 1 spoe
4017 960 568 542 233 116 44 79 56 0 11 2 1 spoe
4018 984 580 557 207 123 65 121 35 1 4 1 0 spoe
4019 1053 635 602 217 120 69 119 58 1 16 2 0 spoe
4020 912 572 546 191 119 65 117 44 1 7 1 1 spoe
4021 934 512 490 198 98 62 77 48 0 6 1 0 spoe
4022 1073 595 591 205 114 100 98 66 0 8 0 0 spoe
4023 674 383 381 164 101 32 53 21 1 6 3 0 spoe
4024 0 0 0 0 0 0 0 0 0 0 0 0 spoe
5000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
5001 575 339 337 140 50 30 90 20 2 5 0 0 spoe
5002 687 393 379 138 75 38 84 36 1 5 2 0 spoe
5003 1129 664 655 278 102 47 154 46 3 21 3 1 spoe
5004 1170 674 662 278 108 60 159 44 0 11 2 0 spoe
5005 688 402 391 149 72 15 101 39 1 13 1 0 spoe
5006 707 452 441 195 99 42 70 23 2 8 1 1 spoe
5007 518 319 304 102 77 33 63 23 0 4 1 1 spoe
5008 723 459 448 186 84 46 90 32 0 8 1 1 spoe
5009 813 513 504 205 116 26 98 51 1 7 0 0 spoe
5010 702 364 348 138 57 21 100 19 0 8 4 1 spoe
5011 670 413 403 183 72 28 87 22 1 9 1 0 spoe
5012 657 368 359 189 83 15 49 8 1 11 2 1 spoe
5013 723 450 443 196 93 21 80 27 2 17 6 1 spoe
5014 708 375 369 132 82 30 86 36 0 2 1 0 spoe
5015 561 311 301 128 62 28 52 24 0 5 2 0 spoe
5016 864 488 476 203 108 24 90 31 0 8 11 1 spoe
5017 904 528 516 200 89 44 131 38 1 9 4 0 spoe
5018 1104 656 639 340 167 32 59 23 1 5 12 0 spoe
5019 987 541 505 206 133 47 87 19 1 7 4 1 spoe
5020 599 354 347 185 87 31 24 12 1 5 2 0 spoe
5021 596 322 313 170 111 3 10 10 0 3 6 0 spoe
5022 993 578 569 223 154 58 80 35 0 12 7 0 spoe
5023 1108 564 548 233 172 24 75 20 2 10 10 2 spoe
5024 940 484 479 243 167 15 26 9 2 4 13 0 spoe
5025 908 505 493 188 123 34 94 43 1 4 6 0 spoe
5026 559 343 320 151 62 18 62 21 1 4 1 0 spoe
5027 913 526 511 237 132 21 75 30 1 10 4 1 spoe
5028 873 505 486 201 78 32 120 37 2 11 3 2 spoe
5029 398 229 228 98 41 18 43 20 1 3 4 0 spoe
5030 994 520 503 204 125 56 90 20 0 4 4 0 spoe
5031 756 365 361 177 122 15 16 7 1 4 18 1 spoe
5032 884 502 493 251 173 20 18 6 4 6 14 1 spoe
5033 834 485 478 218 118 42 55 29 1 7 8 0 spoe
5034 414 230 219 104 45 15 38 10 1 2 3 1 spoe
5035 1072 618 608 259 179 40 90 28 2 6 3 1 spoe
5036 851 492 471 188 122 41 86 24 2 5 2 1 spoe
5037 629 338 330 119 70 41 60 32 0 7 0 1 spoe
5038 815 493 489 195 82 42 121 38 2 7 1 1 spoe
5039 1021 596 589 253 126 44 101 52 0 12 1 0 spoe
5040 579 343 328 106 78 29 70 27 1 8 6 3 spoe
5041 0 0 0 0 0 0 0 0 0 0 0 0 spoe
5042 0 0 0 0 0 0 0 0 0 0 0 0 spoe
6000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
6001 619 379 375 151 64 38 92 27 0 2 1 0 spoe
6002 732 422 415 156 113 41 69 29 1 6 0 0 spoe
6003 895 544 543 199 123 52 118 47 0 4 0 0 spoe
6004 736 431 429 178 77 33 100 33 0 6 1 1 spoe
6005 634 322 317 131 95 23 42 24 0 1 1 0 spoe
6006 812 470 467 190 95 29 98 35 2 16 2 0 spoe
6007 698 417 414 163 66 35 111 28 0 10 0 1 spoe
6008 591 343 341 118 48 79 75 16 0 5 0 0 spoe
6009 694 437 430 151 79 46 115 34 0 4 1 0 spoe
6010 791 457 453 169 92 51 100 34 0 6 0 1 spoe
6011 678 388 381 162 46 43 102 22 0 3 2 1 spoe
6012 856 567 557 209 84 53 142 59 0 7 1 2 spoe
6013 718 448 447 180 77 52 99 30 3 6 0 0 spoe
6014 678 417 403 178 95 41 54 30 0 5 0 0 spoe
6015 715 459 449 182 93 37 94 31 1 10 0 1 spoe
6016 1049 443 431 170 96 34 85 37 0 5 2 2 spoe
6017 691 414 414 151 68 39 102 48 0 5 1 0 spoe
6018 696 400 394 155 104 31 73 24 0 7 0 0 spoe
6019 608 371 364 119 67 38 88 43 0 8 1 0 spoe
6020 766 446 441 174 77 50 90 43 1 3 3 0 spoe
6021 749 460 452 183 57 57 104 40 0 6 3 2 spoe
6022 673 413 397 187 72 24 78 32 1 3 0 0 spoe
6023 505 293 291 139 55 28 47 15 0 2 5 0 spoe
6024 531 327 318 124 62 30 71 22 2 7 0 0 spoe
6025 808 442 432 181 55 40 118 32 1 5 0 0 spoe
6026 741 444 435 154 76 44 112 35 1 10 2 1 spoe
6027 835 474 467 190 71 35 134 28 1 6 2 0 spoe
6028 934 537 530 210 142 43 88 30 0 12 1 4 spoe
6029 0 0 0 0 0 0 0 0 0 0 0 0 spoe
7000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
7001 753 443 432 155 58 54 111 48 1 4 1 0 spoe
7002 470 294 288 113 42 19 80 31 1 2 0 0 spoe
7003 626 376 369 123 47 46 105 43 0 5 0 0 spoe
7004 478 308 304 104 51 30 89 26 1 3 0 0 spoe
7005 550 278 265 102 43 21 75 19 0 3 2 0 spoe
7006 750 446 433 162 60 36 116 44 0 14 1 0 spoe
7007 722 460 445 143 64 37 157 33 1 9 1 0 gruene
7008 575 359 352 121 61 28 102 31 0 8 1 0 spoe
7009 724 439 432 143 59 44 131 46 1 6 2 0 spoe
7010 741 438 429 163 64 51 103 42 0 5 1 0 spoe
7011 641 400 393 149 55 37 110 36 0 5 1 0 spoe
7012 883 519 510 193 83 42 131 51 1 9 0 0 spoe
7013 810 489 477 178 66 47 141 37 1 7 0 0 spoe
7014 793 485 475 206 115 34 84 28 2 6 0 0 spoe
7015 611 402 389 187 60 38 72 25 1 6 0 0 spoe
7016 533 315 307 121 68 22 77 15 0 3 1 0 spoe
7017 710 417 401 154 72 20 123 25 0 7 0 0 spoe
7018 633 373 353 136 66 35 82 29 0 5 0 0 spoe
7019 791 495 485 151 76 62 131 58 2 3 2 0 spoe
7020 688 445 422 164 54 34 117 42 0 11 0 0 spoe
7021 752 472 467 169 89 40 125 38 1 2 3 0 spoe
7022 707 364 359 151 63 22 82 34 0 6 1 0 spoe
7023 680 381 378 162 61 20 101 26 0 5 3 0 spoe
7024 734 469 465 157 83 45 132 37 5 6 0 0 spoe
7025 762 416 408 146 65 35 120 24 4 12 2 0 spoe
7026 681 407 397 161 56 32 106 27 0 13 2 0 spoe
7027 618 370 363 145 56 32 96 26 2 4 2 0 spoe
7028 711 375 370 152 66 22 88 37 2 3 0 0 spoe
7029 613 347 342 114 56 31 96 36 2 6 1 0 spoe
7030 724 455 435 166 58 32 141 29 1 6 2 0 spoe
7031 0 0 0 0 0 0 0 0 0 0 0 0 spoe
8000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
8001 467 310 303 111 57 50 52 29 0 4 0 0 spoe
8002 596 370 361 120 65 59 60 46 0 11 0 0 spoe
8003 501 308 299 110 70 35 51 28 0 4 1 0 spoe
8004 800 509 501 173 82 83 115 45 0 2 1 0 spoe
8005 741 413 399 128 67 66 78 49 0 11 0 0 spoe
8006 743 443 442 142 82 70 88 52 3 4 1 0 spoe
8007 731 444 433 172 73 52 84 44 1 7 0 0 spoe
8008 868 494 488 178 87 73 103 35 0 11 1 0 spoe
8009 839 517 513 198 70 62 131 39 1 10 2 0 spoe
8010 724 434 433 150 78 50 99 49 0 6 1 0 spoe
8011 804 490 482 159 100 49 105 63 0 6 0 0 spoe
8012 561 356 349 136 49 42 81 33 4 4 0 0 spoe
8013 524 351 339 140 62 36 58 39 0 4 0 0 spoe
8014 793 496 491 175 68 92 90 58 1 7 0 0 spoe
8015 807 512 498 164 88 90 95 55 0 6 0 0 spoe
8016 724 423 412 170 67 49 89 33 0 2 2 0 spoe
8017 710 450 450 147 93 55 113 32 0 10 0 0 spoe
8018 837 506 498 199 91 82 88 29 2 6 1 0 spoe
8019 626 385 380 138 63 53 95 24 2 5 0 0 spoe
8020 760 463 458 164 76 52 117 37 0 12 0 0 spoe
8021 876 524 519 198 95 68 92 54 1 10 1 0 spoe
8022 789 456 446 172 94 44 102 21 0 11 2 0 spoe
8023 0 0 0 0 0 0 0 0 0 0 0 0 spoe
9000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
9001 762 461 458 167 78 56 89 59 1 8 0 0 spoe
9002 624 400 397 149 68 53 76 46 0 5 0 0 spoe
9003 828 504 498 231 74 46 93 36 5 12 1 0 spoe
9004 708 446 442 177 84 47 85 48 0 1 0 0 spoe
9005 674 408 396 170 78 47 76 21 0 3 1 0 spoe
9006 709 452 447 164 79 52 84 61 0 2 5 0 spoe
9007 706 420 410 198 69 54 58 25 0 6 0 0 spoe
9008 777 454 430 178 86 50 78 28 1 8 1 0 spoe
9009 707 437 431 171 71 49 90 42 0 7 1 0 spoe
9010 659 408 397 131 70 37 103 46 0 9 1 0 spoe
9011 602 332 322 167 87 17 28 18 1 3 1 0 spoe
9012 835 471 467 193 80 45 98 44 2 3 2 0 spoe
9013 979 577 569 246 152 43 96 21 1 9 1 0 spoe
9014 967 554 549 248 131 35 86 29 1 9 10 0 spoe
9015 846 488 481 199 109 36 86 39 1 9 2 0 spoe
9016 904 474 471 187 111 25 92 43 0 10 3 0 spoe
9017 729 377 374 150 81 39 72 28 1 3 0 0 spoe
9018 790 447 440 165 115 39 78 36 1 5 1 0 spoe
9019 740 439 433 173 78 42 91 44 1 4 0 0 spoe
9020 669 386 372 142 69 39 81 33 0 5 3 0 spoe
9021 769 456 438 169 79 48 86 36 1 15 4 0 spoe
9022 844 507 500 174 120 55 99 45 0 6 1 0 spoe
9023 911 539 529 200 78 63 131 50 0 5 2 0 spoe
9024 857 533 515 178 112 56 112 48 0 9 0 0 spoe
9025 907 544 533 180 86 83 100 70 0 13 1 0 spoe
9026 739 459 444 149 70 55 111 58 1 0 0 0 spoe
9027 764 464 452 162 83 56 95 48 0 7 1 0 spoe
9028 717 425 422 135 74 60 97 50 1 5 0 0 spoe
9029 728 436 431 162 57 71 80 53 2 6 0 0 spoe
9030 800 450 438 157 72 80 63 63 0 3 0 0 spoe
9031 757 438 432 158 100 60 71 37 0 4 2 0 spoe
9032 837 509 500 188 84 50 115 55 1 4 3 0 spoe
9033 519 284 278 121 44 28 50 29 0 4 2 0 spoe
9034 632 345 341 120 76 27 68 42 0 8 0 0 spoe
9035 0 0 0 0 0 0 0 0 0 0 0 0 spoe
9036 0 0 0 0 0 0 0 0 0 0 0 0 spoe
9037 0 0 0 0 0 0 0 0 0 0 0 0 spoe
2000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
2001 762 443 434 168 48 24 145 31 1 15 2 0 spoe
2002 568 307 305 149 61 13 55 17 0 9 1 0 spoe
2003 713 450 445 171 59 41 128 34 1 10 1 0 spoe
2004 532 303 291 124 60 26 51 18 1 8 3 0 spoe
2005 539 328 313 111 72 28 70 27 0 5 0 0 spoe
2006 520 289 284 105 76 26 56 14 0 4 3 0 spoe
2007 528 303 295 126 60 16 68 13 1 10 1 0 spoe
2008 582 342 340 134 58 23 85 28 2 6 4 0 spoe
2009 682 434 413 185 65 25 93 31 1 8 5 0 spoe
2010 485 291 288 123 38 13 89 20 0 5 0 0 spoe
2011 522 276 270 110 51 19 74 12 0 3 1 0 spoe
2012 600 354 349 169 77 24 61 14 1 2 1 0 spoe
2013 596 377 372 155 82 28 75 23 2 5 2 0 spoe
2014 694 425 417 162 72 42 100 31 2 5 3 0 spoe
2015 373 194 186 75 35 15 40 16 1 4 0 0 spoe
2016 805 448 431 219 82 43 56 24 1 6 0 0 spoe
2017 657 337 327 145 72 21 48 34 2 5 0 0 spoe
2018 527 270 265 109 65 22 42 20 0 6 1 0 spoe
2019 692 393 383 215 63 25 52 21 1 3 3 0 spoe
2020 547 330 322 132 60 30 63 32 0 5 0 0 spoe
2021 581 351 341 152 69 22 72 18 0 7 1 0 spoe
2022 709 408 402 171 89 43 63 29 0 6 1 0 spoe
2023 498 287 273 121 57 23 47 20 1 3 1 0 spoe
2024 531 322 311 145 79 15 54 12 0 5 1 0 spoe
2025 445 258 252 107 58 23 48 13 1 2 0 0 spoe
2026 580 377 373 145 57 26 97 37 0 10 1 0 spoe
2027 595 339 330 139 71 20 82 12 0 2 4 0 spoe
2028 725 443 428 199 79 19 93 24 1 12 1 0 spoe
2029 660 381 378 139 77 27 97 28 1 6 3 0 spoe
2030 573 336 327 146 49 37 67 21 0 6 1 0 spoe
2031 542 324 317 152 59 17 57 18 0 9 5 0 spoe
2032 520 324 311 135 67 26 60 19 0 3 1 0 spoe
2033 480 287 280 137 107 12 15 6 0 1 2 0 spoe
2034 569 318 315 145 77 15 58 8 0 6 6 0 spoe
2035 547 340 336 129 84 10 81 18 2 7 5 0 spoe
2036 405 235 232 96 54 19 43 7 3 6 4 0 spoe
2037 501 280 276 121 55 19 57 18 2 1 3 0 spoe
2038 622 351 351 148 74 29 69 25 0 4 2 0 spoe
2039 488 250 242 87 54 16 60 19 0 5 1 0 spoe
2040 548 272 270 125 55 9 56 17 0 3 5 0 spoe
2041 438 275 261 94 75 29 37 19 1 6 0 0 spoe
2042 315 188 182 67 56 14 35 6 0 2 2 0 spoe
2043 571 321 316 113 86 22 64 15 0 14 2 0 spoe
2044 657 381 373 164 76 28 60 26 0 17 2 0 spoe
2045 517 298 294 110 65 29 50 33 1 5 1 0 spoe
2046 555 339 329 139 54 34 68 23 2 9 0 0 spoe
2047 542 331 319 131 65 29 56 29 0 7 2 0 spoe
2048 542 351 347 138 81 34 59 32 0 2 1 0 spoe
2049 439 248 237 135 51 7 21 14 0 6 3 0 spoe
2050 500 287 272 122 54 29 46 17 0 3 1 0 spoe
2051 439 244 224 101 69 15 21 13 1 4 0 0 spoe
2052 584 337 320 154 124 11 16 4 1 6 4 0 spoe
2053 506 268 256 131 64 15 33 9 0 4 0 0 spoe
2054 596 298 283 131 95 7 29 5 2 9 5 0 spoe
2055 569 314 308 150 66 22 51 11 2 3 3 0 spoe
2056 478 259 250 72 73 12 64 10 0 15 4 0 fpoe
2057 475 254 248 76 61 10 77 12 0 10 2 0 gruene
2058 595 345 340 115 86 31 65 24 3 9 7 0 spoe
2059 578 320 318 130 91 10 61 19 0 7 0 0 spoe
2060 319 171 170 61 45 9 41 11 1 2 0 0 spoe
2061 562 323 317 107 98 22 62 15 2 11 0 0 spoe
2062 524 300 283 100 84 18 50 24 0 3 4 0 spoe
2063 521 283 269 120 63 19 44 15 0 7 1 0 spoe
2064 723 433 426 167 92 19 111 26 1 6 4 0 spoe
2065 570 303 299 135 92 8 36 12 1 8 7 0 spoe
2066 452 271 245 118 79 18 18 6 0 5 1 0 spoe
2067 515 283 275 117 71 15 56 9 1 4 2 0 spoe
2068 372 195 192 64 57 18 34 14 0 3 2 0 spoe
2069 535 291 277 121 80 19 18 15 1 5 18 0 spoe
2070 649 401 387 205 122 19 11 7 0 2 21 0 spoe
2071 715 435 421 179 163 17 26 13 2 8 13 0 spoe
2072 748 447 422 200 142 16 25 17 0 4 18 0 spoe
2073 605 337 329 148 129 7 26 5 3 6 5 0 spoe
2074 408 237 233 104 97 8 13 6 1 1 3 0 spoe
2075 422 275 257 132 102 8 5 2 0 2 6 0 spoe
2076 543 330 326 139 89 24 47 18 0 4 5 0 spoe
2077 843 454 445 188 203 19 23 8 0 2 2 0 fpoe
2078 694 357 354 161 135 17 20 3 2 4 12 0 spoe
2079 838 567 545 313 156 33 15 13 1 3 11 0 spoe
2080 547 416 406 193 119 18 45 26 2 0 3 0 spoe
2081 764 459 454 208 158 36 27 17 0 5 3 0 spoe
2082 714 368 359 169 139 10 23 10 2 3 3 0 spoe
2083 260 157 148 39 92 3 10 3 0 1 0 0 fpoe
2084 690 515 502 221 176 38 44 18 2 2 1 0 spoe
2085 497 369 366 134 176 26 16 10 1 2 1 0 fpoe
2086 553 367 354 130 99 24 64 31 2 4 0 0 spoe
2087 492 278 275 101 65 25 49 30 1 4 0 0 spoe
2088 620 402 389 123 94 53 73 42 0 4 0 0 spoe
2089 558 330 316 112 70 39 62 28 1 4 0 0 spoe
2090 546 344 337 160 85 26 34 28 2 2 0 0 spoe
2091 395 242 236 95 53 26 33 22 0 5 2 0 spoe
2092 641 374 367 170 128 9 41 13 1 4 1 0 spoe
2093 667 375 360 180 112 10 29 9 1 5 14 0 spoe
2094 707 386 375 187 107 15 30 22 2 5 7 0 spoe
2095 537 376 363 169 74 22 57 26 2 13 0 0 spoe
2096 812 509 505 210 68 35 138 44 2 6 2 0 spoe
2097 518 319 313 134 56 15 79 23 0 5 1 0 spoe
2098 875 436 429 146 129 17 98 28 3 2 6 0 spoe
2099 780 454 447 185 72 28 117 36 2 5 2 0 spoe
2100 730 480 474 185 62 15 153 46 1 9 3 0 spoe
2101 519 356 338 146 137 10 6 6 0 2 31 0 spoe
2102 548 362 356 186 115 8 16 9 2 1 19 0 spoe
2103 351 231 229 124 55 8 23 12 0 1 6 0 spoe
2104 615 384 372 159 113 23 51 16 1 7 2 0 spoe
2105 0 0 0 0 0 0 0 0 0 0 0 0 spoe
3000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
3001 893 554 538 207 102 44 129 41 3 10 2 0 spoe
3002 731 402 395 157 70 32 101 21 0 14 0 0 spoe
3003 773 454 445 184 92 29 105 20 0 11 4 0 spoe
3004 848 508 486 205 93 40 98 37 0 8 5 0 spoe
3005 749 444 425 189 83 33 70 40 1 8 1 0 spoe
3006 781 470 467 198 115 41 71 34 1 5 2 0 spoe
3007 925 547 537 209 118 49 98 52 2 6 3 0 spoe
3008 875 560 557 217 142 44 95 46 1 10 2 0 spoe
3009 664 433 426 168 94 36 74 42 0 12 0 0 spoe
3010 838 516 495 184 108 65 86 46 1 5 0 0 spoe
3011 798 516 489 201 110 48 84 41 0 5 0 0 spoe
3012 841 499 493 187 91 71 89 50 0 4 1 0 spoe
3013 816 524 512 192 117 34 116 45 2 4 2 0 spoe
3014 830 488 476 181 105 34 106 42 0 6 2 0 spoe
3015 385 262 256 98 56 31 38 30 1 2 0 0 spoe
3016 980 562 528 196 141 57 83 45 0 6 0 0 spoe
3017 464 261 255 97 63 19 39 22 3 8 4 0 spoe
3018 780 483 476 202 73 46 97 44 3 7 4 0 spoe
3019 887 542 524 203 110 53 92 51 2 10 3 0 spoe
3020 893 542 522 217 117 42 90 43 0 7 6 0 spoe
3021 905 549 531 226 153 38 77 22 2 12 1 0 spoe
3022 894 494 483 231 80 23 95 43 1 5 5 0 spoe
3023 946 517 515 237 148 19 62 35 1 6 7 0 spoe
3024 835 482 476 236 168 19 15 5 0 1 32 0 spoe
3025 953 514 489 229 127 32 62 26 1 6 6 0 spoe
3026 810 447 431 194 144 30 29 17 3 9 5 0 spoe
3027 976 474 469 200 189 21 30 16 1 6 6 0 spoe
3028 971 523 512 225 213 24 30 8 1 9 2 0 spoe
3029 871 514 508 240 134 29 54 32 3 7 9 0 spoe
3030 993 552 529 237 172 22 64 21 1 6 6 0 spoe
3031 713 457 449 176 110 32 82 39 1 3 6 0 spoe
3032 809 497 479 174 120 49 74 52 2 5 3 0 spoe
3033 649 339 337 132 98 32 38 24 0 8 5 0 spoe
3034 831 467 456 200 128 42 57 21 1 6 1 0 spoe
3035 698 398 394 196 125 13 36 18 0 4 2 0 spoe
3036 774 491 448 247 138 21 23 14 0 3 2 0 spoe
3037 599 369 351 98 70 57 71 49 2 4 0 0 spoe
3038 968 542 534 175 117 94 87 55 1 5 0 0 spoe
3039 744 475 456 177 95 51 80 48 0 5 0 0 spoe
3040 1033 613 595 227 117 91 80 69 0 10 1 0 spoe
3041 757 449 438 163 92 63 71 43 1 2 3 0 spoe
3042 565 354 350 131 74 43 64 32 1 5 0 0 spoe
3043 1006 585 553 213 130 67 94 32 1 14 2 0 spoe
3044 927 584 558 221 105 67 110 46 0 8 1 0 spoe
3045 650 405 401 151 86 50 77 37 0 0 0 0 spoe
3046 736 453 439 186 107 39 62 30 0 10 5 0 spoe
3047 643 369 362 145 91 29 61 26 0 7 3 0 spoe
3048 826 506 486 206 116 44 81 27 0 7 5 0 spoe
3049 622 353 350 137 75 49 58 28 0 3 0 0 spoe
3050 641 367 365 168 86 32 44 27 1 5 2 0 spoe
3051 965 582 568 250 118 57 94 45 1 3 0 0 spoe
3052 561 353 350 153 64 20 81 24 0 1 7 0 spoe
3053 496 236 231 126 82 6 7 4 1 1 4 0 spoe
3054 833 455 447 151 135 53 53 47 1 6 1 0 spoe
3055 797 491 484 175 98 77 74 53 1 6 0 0 spoe
3056 952 563 543 211 95 96 80 54 1 5 1 0 spoe
3057 817 465 453 151 112 73 59 52 0 2 4 0 spoe
3058 575 315 308 120 101 31 17 34 1 4 0 0 spoe
3059 954 536 517 217 112 75 58 46 0 9 0 0 spoe
3060 780 468 458 184 118 42 82 25 1 5 1 0 spoe
3061 921 514 496 207 116 30 79 40 2 15 7 0 spoe
3062 742 426 417 181 99 19 77 26 3 9 3 0 spoe
3063 757 387 366 139 109 35 51 21 1 9 1 0 spoe
3064 813 452 443 192 96 31 83 30 0 4 7 0 spoe
3065 870 434 428 166 127 47 50 30 3 3 2 0 spoe
3066 796 423 404 171 176 8 16 11 0 3 19 0 fpoe
3067 745 431 418 163 172 25 20 22 0 6 10 0 fpoe
3068 613 402 398 144 102 76 47 21 0 7 1 0 spoe
3069 792 407 384 134 129 57 41 16 0 7 0 0 spoe
3070 443 274 272 134 58 10 49 12 0 6 3 0 spoe
3071 508 294 289 127 48 22 58 30 0 3 1 0 spoe
3072 0 0 0 0 0 0 0 0 0 0 0 0 spoe
3073 0 0 0 0 0 0 0 0 0 0 0 0 spoe
3074 0 0 0 0 0 0 0 0 0 0 0 0 spoe
3075 0 38 34 17 4 9 3 1 0 0 0 0 spoe
3076 0 0 0 0 0 0 0 0 0 0 0 0 spoe
10000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
10001 817 601 580 257 187 47 48 20 1 5 15 0 spoe
10002 848 481 472 197 161 30 44 16 5 8 11 0 spoe
10003 891 485 460 188 152 44 39 22 1 9 5 0 spoe
10004 1245 550 544 185 191 45 75 33 4 5 6 0 fpoe
10005 531 277 257 104 104 12 17 6 0 3 11 0 spoe
10006 655 356 347 139 131 16 24 17 0 4 16 0 spoe
10007 726 432 427 188 152 26 29 15 0 3 14 0 spoe
10008 640 339 331 132 152 9 21 8 2 3 4 0 fpoe
10009 416 230 213 92 67 14 21 9 1 3 6 0 spoe
10010 775 427 421 171 142 35 32 24 0 8 9 0 spoe
10011 908 599 585 250 247 22 35 18 2 5 6 0 spoe
10012 387 219 215 96 101 5 8 2 0 3 0 0 fpoe
10013 949 490 479 192 233 11 17 9 1 5 11 0 fpoe
10014 800 460 446 234 147 14 17 10 0 0 24 0 spoe
10015 747 417 404 186 136 18 25 11 1 8 19 0 spoe
10016 845 479 472 197 170 27 41 12 2 8 15 0 spoe
10017 478 257 254 103 110 12 13 4 1 1 10 0 fpoe
10018 694 375 375 160 159 9 17 10 0 2 18 0 spoe
10019 556 288 279 112 97 27 23 11 1 6 2 0 spoe
10020 690 313 301 107 123 27 28 9 0 5 2 0 fpoe
10021 562 316 306 112 95 35 33 12 0 8 11 0 spoe
10022 692 336 318 132 121 18 24 10 1 3 9 0 spoe
10023 513 256 250 100 122 9 7 4 0 1 7 0 fpoe
10024 748 379 368 174 134 8 13 9 0 3 27 0 spoe
10025 548 328 319 137 130 9 16 4 0 1 22 0 spoe
10026 657 332 322 145 126 12 17 7 3 0 12 0 spoe
10027 692 383 376 162 141 13 28 17 0 2 13 0 spoe
10028 453 286 281 94 141 17 12 12 0 1 4 0 fpoe
10029 829 497 481 200 204 14 14 5 0 2 42 0 fpoe
10030 688 401 383 169 153 15 13 5 2 0 26 0 spoe
10031 940 524 509 169 234 19 40 15 2 5 25 0 fpoe
10032 853 498 491 192 189 47 30 17 0 4 12 0 spoe
10033 751 365 362 150 159 13 15 13 0 8 4 0 fpoe
10034 630 292 284 121 110 13 21 9 0 4 6 0 spoe
10035 732 339 327 111 119 31 29 10 3 5 19 0 fpoe
10036 475 252 249 105 77 10 28 6 0 6 17 0 spoe
10037 510 223 221 86 70 14 23 12 0 3 13 0 spoe
10038 770 359 358 169 102 23 28 15 1 9 11 0 spoe
10039 781 441 423 194 128 27 33 18 2 3 18 0 spoe
10040 516 276 268 114 93 18 23 5 1 5 9 0 spoe
10041 806 431 422 164 157 36 35 16 0 4 10 0 spoe
10042 854 511 503 205 225 37 20 6 0 2 8 0 fpoe
10043 750 416 413 176 118 35 46 21 0 6 11 0 spoe
10044 695 352 345 123 131 28 36 16 3 4 4 0 fpoe
10045 893 456 437 161 168 23 41 27 0 3 14 0 fpoe
10046 854 481 469 208 165 21 41 23 0 2 9 0 spoe
10047 905 523 503 188 196 29 46 29 0 6 9 0 fpoe
10048 808 461 440 193 142 33 39 21 0 4 8 0 spoe
10049 441 231 228 92 82 17 19 7 0 1 10 0 spoe
10050 583 298 288 130 94 9 30 5 2 3 15 0 spoe
10051 522 278 270 89 106 17 23 15 1 10 9 0 fpoe
10052 688 394 385 168 134 22 43 13 1 2 2 0 spoe
10053 614 283 278 110 107 28 17 4 0 4 8 0 spoe
10054 724 359 340 123 182 10 9 4 0 5 7 0 fpoe
10055 861 469 465 169 203 27 40 18 0 3 5 0 fpoe
10056 584 331 308 107 161 15 8 8 0 1 8 0 fpoe
10057 739 457 452 193 160 33 28 17 0 4 17 0 spoe
10058 793 551 538 218 197 24 47 28 1 4 19 0 spoe
10059 891 557 536 220 245 24 18 3 0 2 24 0 fpoe
10060 848 430 417 151 197 13 14 9 4 4 25 0 fpoe
10061 796 468 461 167 175 46 42 18 1 9 3 0 fpoe
10062 837 464 458 198 163 27 38 17 1 4 10 0 spoe
10063 834 481 475 195 182 29 34 23 0 5 7 0 spoe
10064 877 526 502 198 224 22 22 16 1 3 16 0 fpoe
10065 687 376 360 133 155 12 29 8 0 7 16 0 fpoe
10066 815 437 423 158 211 18 17 10 2 0 7 0 fpoe
10067 975 560 551 221 228 41 26 19 0 3 13 0 fpoe
10068 712 403 394 186 140 27 24 6 3 2 6 0 spoe
10069 964 575 551 224 251 25 31 9 2 4 5 0 fpoe
10070 904 523 517 221 200 35 23 22 1 1 14 0 spoe
10071 808 391 376 166 124 13 22 19 0 6 26 0 spoe
10072 882 490 467 211 178 20 30 16 0 5 7 0 spoe
10073 939 524 511 221 207 34 19 10 1 9 10 0 spoe
10074 1012 602 589 250 263 29 19 16 0 2 10 0 fpoe
10075 955 560 543 253 189 18 36 26 1 6 14 0 spoe
10076 905 504 494 214 215 22 18 9 2 4 10 0 fpoe
10077 771 427 408 170 172 27 16 14 0 2 7 0 fpoe
10078 733 362 356 161 153 15 12 7 0 2 6 0 spoe
10079 954 569 532 239 221 36 19 8 2 4 3 0 spoe
10080 939 500 492 206 200 22 18 13 2 3 28 0 spoe
10081 865 415 400 162 188 3 10 10 1 3 23 0 fpoe
10082 725 377 370 144 188 8 4 3 0 2 21 0 fpoe
10083 863 463 460 282 109 12 8 5 1 0 43 0 spoe
10084 954 567 556 229 247 28 16 14 2 4 16 0 fpoe
10085 1015 602 569 225 198 35 49 35 1 3 23 0 spoe
10086 955 541 535 220 210 27 20 23 0 6 29 0 spoe
10087 697 410 398 160 161 40 14 11 1 2 9 0 fpoe
10088 676 403 388 161 132 36 29 21 1 4 4 0 spoe
10089 1072 615 595 288 192 43 38 22 1 6 5 0 spoe
10090 884 565 558 232 241 35 25 13 2 9 1 0 fpoe
10091 912 585 563 200 307 10 17 18 1 3 7 0 fpoe
10092 830 530 523 228 205 28 32 22 0 2 6 0 spoe
10093 882 612 601 239 210 68 48 30 1 4 1 0 spoe
10094 982 704 669 259 241 73 44 38 2 6 6 0 spoe
10095 934 570 561 239 253 28 17 18 1 4 1 0 fpoe
10096 1048 650 613 243 250 46 31 23 1 5 14 0 fpoe
10097 534 310 301 149 106 10 13 13 0 4 6 0 spoe
10098 767 447 419 179 208 13 11 3 2 1 2 0 fpoe
10099 699 415 407 170 192 17 14 4 1 1 8 0 fpoe
10100 975 655 639 239 293 28 30 30 2 14 3 0 fpoe
10101 695 469 462 206 180 16 18 13 2 3 24 0 spoe
10102 1142 541 526 195 282 15 12 6 0 7 9 0 fpoe
10103 1004 533 525 233 195 33 29 23 0 2 10 0 spoe
10104 1012 588 581 227 177 45 66 50 0 4 12 0 spoe
10105 564 371 361 146 97 32 51 26 0 5 4 0 spoe
10106 817 558 532 267 222 15 11 16 0 1 0 0 spoe
10107 828 602 594 204 284 32 36 30 2 6 0 0 fpoe
10108 937 666 647 281 235 25 46 47 2 8 3 0 spoe
10109 916 650 626 247 306 24 24 15 3 5 2 0 fpoe
10110 907 615 613 212 311 25 16 23 1 6 19 0 fpoe
10111 646 409 396 138 217 13 11 7 1 1 8 0 fpoe
10112 896 564 557 221 265 29 20 16 0 6 0 0 fpoe
10113 683 414 403 151 196 21 18 12 2 3 0 0 fpoe
10114 949 639 627 259 294 24 15 14 2 4 15 0 fpoe
10115 1072 660 652 344 209 20 10 9 0 2 58 0 spoe
10116 819 534 510 211 251 20 14 10 0 4 0 0 fpoe
10117 775 481 458 181 203 28 19 8 1 3 15 0 fpoe
10118 737 523 504 186 272 8 14 18 3 3 0 0 fpoe
10119 786 542 520 205 236 20 30 16 1 8 4 0 fpoe
10120 1038 655 631 227 337 20 21 13 3 7 3 0 fpoe
10121 712 451 440 200 169 14 14 9 1 2 31 0 spoe
10122 1084 697 662 323 264 34 16 9 1 5 10 0 spoe
10123 1011 627 616 293 266 20 13 11 0 0 13 0 spoe
10124 1102 657 647 262 308 30 16 7 1 3 20 0 fpoe
10125 930 529 518 218 228 20 13 9 1 7 22 0 fpoe
10126 821 496 493 197 247 14 9 17 0 1 8 0 fpoe
10127 876 551 545 190 295 28 15 7 3 3 4 0 fpoe
10128 831 485 456 211 195 20 2 9 0 2 17 0 spoe
10129 876 562 550 226 255 26 12 20 0 4 7 0 fpoe
10130 211 153 147 57 35 48 1 5 0 0 1 0 spoe
10131 690 487 481 142 156 95 47 37 0 4 0 0 fpoe
10132 812 609 598 176 241 92 40 37 2 6 4 0 fpoe
10133 1019 718 701 249 265 97 43 42 1 3 1 0 fpoe
10134 623 435 405 122 184 43 32 20 0 2 2 0 fpoe
10135 998 722 710 227 349 44 37 34 6 4 9 0 fpoe
10136 880 595 581 215 199 79 44 30 3 8 3 0 spoe
10137 1051 771 735 240 336 82 40 34 0 3 0 0 fpoe
10138 728 423 418 175 65 38 102 22 0 5 11 0 spoe
10139 472 305 304 135 43 14 83 18 0 1 10 0 spoe
10140 401 250 249 111 46 13 66 9 0 4 0 0 spoe
10141 0 37 37 26 7 4 0 0 0 0 0 0 spoe
10142 0 0 0 0 0 0 0 0 0 0 0 0 spoe
10143 0 0 0 0 0 0 0 0 0 0 0 0 spoe
11000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
11001 568 319 316 170 115 4 6 7 0 3 11 0 spoe
11002 872 544 521 177 230 53 27 23 1 4 6 0 fpoe
11003 868 574 557 221 280 22 11 13 0 5 5 0 fpoe
11004 491 235 233 101 97 8 8 2 0 5 12 0 spoe
11005 861 536 530 146 267 27 31 35 1 4 19 0 fpoe
11006 937 480 464 207 160 27 36 17 0 6 11 0 spoe
11007 945 568 561 194 298 19 21 12 0 2 15 0 fpoe
11008 1051 629 593 271 202 30 17 13 2 0 58 0 spoe
11009 879 498 489 216 219 13 12 17 3 3 6 0 fpoe
11010 848 555 546 240 162 31 69 31 1 6 6 0 spoe
11011 915 527 515 192 237 23 33 14 2 5 9 0 fpoe
11012 963 575 552 233 105 36 105 51 1 21 0 0 spoe
11013 734 424 419 190 133 25 46 22 0 2 1 0 spoe
11014 461 253 244 116 80 17 10 8 0 1 12 0 spoe
11015 562 298 290 128 129 12 9 7 1 2 2 0 fpoe
11016 888 537 526 235 241 19 11 8 1 6 5 0 fpoe
11017 530 303 289 103 114 24 17 15 1 6 9 0 fpoe
11018 677 306 297 105 121 17 19 16 1 2 16 0 fpoe
11019 368 292 284 133 92 18 21 12 0 4 4 0 spoe
11020 802 455 440 195 190 17 6 8 1 5 18 0 spoe
11021 945 584 579 269 224 33 31 13 1 4 4 0 spoe
11022 820 498 491 225 125 13 80 31 3 10 4 0 spoe
11023 844 548 532 252 225 13 17 18 1 4 2 0 spoe
11024 778 389 381 150 193 5 14 10 2 2 5 0 fpoe
11025 669 364 361 148 132 19 29 21 0 3 9 0 spoe
11026 871 498 481 177 219 26 25 19 2 4 9 0 fpoe
11027 946 530 519 199 237 19 15 16 1 1 31 0 fpoe
11028 878 526 504 214 213 24 21 13 2 6 11 0 spoe
11029 576 304 301 136 119 11 13 8 1 6 7 0 spoe
11030 776 502 467 196 198 18 21 22 0 8 4 0 fpoe
11031 737 425 420 141 182 38 21 25 0 4 9 0 fpoe
11032 698 521 503 166 223 55 28 25 1 2 3 0 fpoe
11033 897 609 583 218 282 28 23 22 2 6 2 0 fpoe
11034 898 609 589 238 269 33 18 22 2 0 7 0 fpoe
11035 906 490 474 160 255 9 11 9 0 11 19 0 fpoe
11036 1036 627 623 233 306 15 24 9 0 10 26 0 fpoe
11037 754 452 438 184 160 24 38 18 1 4 9 0 spoe
11038 794 454 437 188 178 20 20 22 2 3 4 0 spoe
11039 1030 639 627 269 248 29 47 26 2 5 1 0 spoe
11040 1036 595 582 233 268 21 25 17 0 7 11 0 fpoe
11041 901 522 489 207 237 18 5 7 1 3 11 0 fpoe
11042 936 601 583 204 309 19 13 17 2 1 18 0 fpoe
11043 767 523 507 226 215 19 17 19 2 6 3 0 spoe
11044 774 454 436 187 200 16 11 13 0 1 8 0 fpoe
11045 980 667 641 254 236 29 61 38 1 10 12 0 spoe
11046 813 519 514 193 280 13 8 6 0 5 9 0 fpoe
11047 735 494 476 167 242 20 28 15 0 3 1 0 fpoe
11048 752 463 441 181 176 31 25 21 1 1 5 0 spoe
11049 742 473 453 172 222 27 15 15 0 2 0 0 fpoe
11050 840 481 458 149 198 62 24 16 5 2 2 0 fpoe
11051 883 637 611 183 326 44 22 31 1 3 1 0 fpoe
11052 821 494 488 184 244 12 11 14 0 2 21 0 fpoe
11053 873 563 553 255 210 29 24 15 0 11 9 0 spoe
11054 690 484 472 177 229 21 18 21 0 5 1 0 fpoe
11055 957 621 584 220 280 34 28 17 2 0 3 0 fpoe
11056 1071 694 684 302 324 23 5 8 0 7 15 0 fpoe
11057 976 606 586 222 289 23 15 17 1 3 16 0 fpoe
11058 918 604 596 244 298 9 18 10 2 1 14 0 fpoe
11059 586 428 422 163 171 21 36 28 0 2 1 0 fpoe
11060 1137 762 734 263 338 50 34 42 2 3 2 0 fpoe
11061 916 562 526 171 267 35 16 8 0 4 25 0 fpoe
11062 892 556 542 205 285 21 10 2 0 3 16 0 fpoe
11063 1067 707 689 275 342 22 16 5 1 4 24 0 fpoe
11064 1148 736 711 291 342 30 16 21 1 7 3 0 fpoe
11065 1064 670 648 233 308 25 49 27 0 2 4 0 fpoe
11066 1144 729 702 238 351 31 26 29 3 14 10 0 fpoe
11067 1023 631 619 254 284 21 23 25 0 2 10 0 fpoe
11068 843 523 507 204 239 12 18 21 2 0 11 0 fpoe
11069 903 528 517 203 249 16 14 15 0 4 16 0 fpoe
11070 575 353 345 125 150 15 20 21 0 4 10 0 fpoe
11071 656 334 333 122 137 25 25 20 0 1 3 0 fpoe
11072 709 332 327 137 88 26 49 22 0 3 2 0 spoe
11073 0 0 0 0 0 0 0 0 0 0 0 0 spoe
12000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
12001 903 455 439 177 137 32 61 16 1 7 8 0 spoe
12002 787 426 417 199 130 15 43 23 0 3 4 0 spoe
12003 870 392 384 152 166 14 24 4 1 7 16 0 fpoe
12004 822 424 404 172 99 27 70 23 0 9 4 0 spoe
12005 440 264 253 114 79 11 36 9 1 2 1 0 spoe
12006 632 341 335 144 130 12 26 7 3 7 6 0 spoe
12007 817 455 430 174 173 25 38 13 2 1 4 0 spoe
12008 733 382 376 173 105 19 49 19 2 2 7 0 spoe
12009 709 412 399 149 116 41 55 30 0 5 3 0 spoe
12010 933 546 532 180 146 56 98 36 1 11 4 0 spoe
12011 1176 808 783 347 259 37 91 35 1 4 9 0 spoe
12012 787 409 401 153 188 12 28 11 3 4 2 0 fpoe
12013 1068 553 533 243 198 15 37 16 3 7 14 0 spoe
12014 658 423 411 147 177 26 33 23 2 1 2 0 fpoe
12015 1000 575 549 240 178 37 62 20 1 5 6 0 spoe
12016 530 316 310 137 82 15 39 18 2 7 10 0 spoe
12017 438 172 169 64 38 38 19 7 1 1 1 0 spoe
12018 869 454 445 190 142 25 50 21 7 5 5 0 spoe
12019 782 430 418 170 184 17 14 12 4 2 15 0 fpoe
12020 919 543 537 228 191 31 58 20 0 6 3 0 spoe
12021 706 413 407 174 178 15 24 6 0 3 7 0 fpoe
12022 744 388 383 147 118 34 50 14 0 11 9 0 spoe
12023 794 456 445 174 167 26 46 19 1 2 10 0 spoe
12024 715 415 395 169 128 29 31 23 2 7 6 0 spoe
12025 699 374 361 155 105 24 47 20 1 2 7 0 spoe
12026 849 474 466 178 167 27 52 21 0 8 13 0 spoe
12027 1016 626 619 276 211 38 52 23 5 10 4 0 spoe
12028 971 595 585 235 207 47 47 33 1 5 10 0 spoe
12029 831 459 447 151 123 45 79 30 2 12 5 0 spoe
12030 939 524 519 174 151 63 92 32 0 7 0 0 spoe
12031 864 479 454 183 164 30 45 15 0 7 10 0 spoe
12032 1413 790 784 306 176 33 184 67 0 10 8 0 spoe
12033 946 550 534 225 140 56 65 35 1 6 6 0 spoe
12034 573 337 333 131 83 24 62 23 0 8 2 0 spoe
12035 710 422 416 166 112 42 69 18 1 6 2 0 spoe
12036 843 490 478 155 116 66 83 56 1 1 0 0 spoe
12037 608 365 363 140 93 44 56 20 0 1 9 0 spoe
12038 572 253 250 93 65 27 37 22 0 6 0 0 spoe
12039 828 451 433 175 95 41 88 28 0 6 0 0 spoe
12040 787 419 409 170 109 43 57 19 0 8 3 0 spoe
12041 1003 524 495 218 195 28 21 16 2 6 9 0 spoe
12042 985 507 498 212 209 11 21 15 2 7 21 0 spoe
12043 1107 638 630 269 285 20 31 15 5 3 2 0 fpoe
12044 1116 608 569 268 233 12 13 9 0 4 30 0 spoe
12045 1126 726 690 256 281 53 44 38 3 7 8 0 fpoe
12046 1116 688 674 280 228 60 51 44 0 5 6 0 spoe
12047 1129 572 554 245 228 12 20 17 2 9 21 0 spoe
12048 731 452 434 164 132 41 57 37 1 2 0 0 spoe
12049 866 541 529 189 149 85 62 32 0 8 4 0 spoe
12050 823 512 502 173 147 75 65 33 0 6 3 0 spoe
12051 682 486 476 164 142 57 68 36 1 8 0 0 spoe
12052 984 628 609 255 257 46 17 19 3 4 8 0 fpoe
12053 1192 791 773 345 300 47 45 20 3 3 10 0 spoe
12054 449 287 276 150 77 36 5 8 0 0 0 0 spoe
12055 1035 537 525 256 202 15 18 13 0 4 17 0 spoe
12056 726 428 418 215 164 17 10 6 1 2 3 0 spoe
12057 994 567 548 308 160 22 12 12 1 1 32 0 spoe
12058 957 591 577 216 231 57 45 20 1 1 6 0 fpoe
12059 844 461 452 196 150 27 45 22 2 5 5 0 spoe
12060 839 545 533 209 166 61 46 36 1 9 5 0 spoe
12061 654 426 422 173 129 33 53 26 2 5 1 0 spoe
12062 981 602 595 218 214 64 58 31 2 3 5 0 spoe
12063 1186 817 778 365 252 74 40 32 0 7 8 0 spoe
12064 882 622 604 225 230 54 47 42 0 3 3 0 fpoe
12065 658 445 420 174 135 42 33 27 1 8 0 0 spoe
12066 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13001 1053 646 638 168 167 144 92 61 0 5 1 0 spoe
13002 1119 606 590 219 174 87 55 44 0 7 4 0 spoe
13003 787 515 510 158 170 83 50 39 0 8 2 0 fpoe
13004 910 521 508 191 138 58 67 40 1 11 2 0 spoe
13005 1057 698 676 261 141 108 87 68 2 8 1 0 spoe
13006 1014 635 623 195 143 154 75 50 2 3 1 0 spoe
13007 842 537 528 175 105 124 56 57 1 9 1 0 spoe
13008 647 408 397 137 89 80 51 33 1 6 0 0 spoe
13009 699 482 474 166 147 75 36 47 1 2 0 0 spoe
13010 802 565 555 147 155 141 49 54 3 6 0 0 fpoe
13011 919 650 640 162 147 158 86 82 1 3 1 0 spoe
13012 818 574 560 145 133 144 68 65 0 5 0 0 spoe
13013 764 466 460 181 95 108 35 31 1 9 0 0 spoe
13014 946 622 616 210 130 95 94 80 3 3 1 0 spoe
13015 974 642 638 201 135 157 71 67 0 4 3 0 spoe
13016 934 591 576 221 130 121 56 39 2 6 1 0 spoe
13017 1073 676 660 206 162 135 88 61 2 5 1 0 spoe
13018 988 665 645 199 137 152 82 72 1 2 0 0 spoe
13019 1000 614 595 168 156 135 61 66 2 7 0 0 spoe
13020 1140 747 720 180 132 181 85 132 0 10 0 0 oevp
13021 927 562 551 184 158 94 57 50 0 7 1 0 spoe
13022 1184 759 746 221 268 117 71 64 2 3 0 0 fpoe
13023 1130 738 720 239 195 138 82 59 0 5 2 0 spoe
13024 1108 621 602 285 223 35 30 17 2 10 0 0 spoe
13025 789 554 541 186 116 138 53 43 1 4 0 0 spoe
13026 1055 701 693 195 152 157 109 74 0 5 1 0 spoe
13027 958 596 589 198 159 97 53 76 2 4 0 0 spoe
13028 924 628 614 268 171 67 53 50 2 2 1 0 spoe
13029 913 620 609 193 149 132 70 62 0 3 0 0 spoe
13030 1132 664 647 213 174 133 64 52 1 9 1 0 spoe
13031 853 540 521 221 209 41 25 18 1 5 1 0 spoe
13032 959 613 602 205 131 115 78 69 2 2 0 0 spoe
13033 946 610 582 167 134 132 75 68 0 5 1 0 spoe
13034 761 493 482 132 115 116 53 62 0 3 1 0 spoe
13035 906 611 602 197 227 83 52 33 1 8 1 0 fpoe
13036 935 597 580 146 158 134 63 61 1 14 3 0 fpoe
13037 1171 675 649 202 209 119 48 61 2 7 1 0 fpoe
13038 891 572 562 150 116 149 82 61 0 3 1 0 spoe
13039 618 408 403 91 77 108 57 66 0 4 0 0 oevp
13040 651 422 408 150 110 62 51 27 0 6 2 0 spoe
13041 597 376 368 130 106 70 34 23 0 3 2 0 spoe
13042 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13043 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13044 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13045 0 0 0 0 0 0 0 0 0 0 0 0 spoe
13046 0 0 0 0 0 0 0 0 0 0 0 0 spoe
14000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
14001 773 420 408 150 130 36 58 21 2 7 4 0 spoe
14002 892 541 528 187 139 73 82 37 0 7 3 0 spoe
14003 729 427 414 179 136 28 36 30 0 5 0 0 spoe
14004 707 443 437 160 122 54 60 37 3 1 0 0 spoe
14005 580 357 352 143 95 47 40 23 0 1 3 0 spoe
14006 858 482 470 157 107 72 87 38 2 7 0 0 spoe
14007 933 592 588 197 106 93 127 57 0 7 1 0 spoe
14008 1001 504 482 158 127 49 105 40 2 1 0 0 spoe
14009 870 537 519 187 123 65 90 48 1 3 2 0 spoe
14010 960 568 562 266 176 44 43 21 3 4 5 0 spoe
14011 585 395 385 136 111 66 36 33 2 1 0 0 spoe
14012 943 620 590 272 176 71 44 18 4 4 1 0 spoe
14013 967 565 547 231 226 25 40 13 3 4 5 0 spoe
14014 850 557 550 236 172 46 62 26 2 3 3 0 spoe
14015 661 356 338 123 128 20 39 13 1 2 12 0 fpoe
14016 766 454 449 156 145 54 56 36 0 1 1 0 spoe
14017 1155 787 772 264 277 80 75 63 3 10 0 0 fpoe
14018 1102 680 650 288 188 73 40 53 3 2 3 0 spoe
14019 896 688 650 208 158 136 86 60 0 2 0 0 spoe
14020 1101 656 646 248 158 86 86 63 0 5 0 0 spoe
14021 1023 679 670 241 160 115 81 67 2 4 0 0 spoe
14022 963 630 613 218 189 79 72 44 2 8 1 0 spoe
14023 817 518 504 171 157 51 74 40 1 8 2 0 spoe
14024 856 536 512 180 205 45 50 23 4 3 2 0 fpoe
14025 656 400 386 145 161 17 34 22 2 4 1 0 fpoe
14026 974 556 540 211 236 32 33 21 1 6 0 0 fpoe
14027 1000 608 595 257 231 29 42 21 2 9 4 0 spoe
14028 720 419 409 188 142 28 23 19 2 5 2 0 spoe
14029 635 376 371 185 143 15 11 7 1 5 4 0 spoe
14030 778 568 542 171 154 93 57 57 1 9 0 0 spoe
14031 654 381 365 138 139 29 38 14 2 5 0 0 fpoe
14032 731 447 426 140 154 61 38 24 3 3 3 0 fpoe
14033 1062 647 638 238 238 72 45 34 1 4 6 0 spoe
14034 649 484 480 158 161 73 43 42 1 1 1 0 fpoe
14035 790 483 476 196 139 61 37 35 2 3 3 0 spoe
14036 829 439 437 190 163 26 28 18 0 7 5 0 spoe
14037 960 550 534 206 140 54 74 44 3 10 3 0 spoe
14038 938 643 638 190 169 98 108 63 3 7 0 0 spoe
14039 988 638 627 260 176 74 73 43 0 1 0 0 spoe
14040 1031 662 652 243 132 92 109 63 3 6 4 0 spoe
14041 1033 676 658 236 164 99 107 49 2 1 0 0 spoe
14042 1136 701 686 232 225 79 99 43 1 7 0 0 spoe
14043 1030 533 519 228 113 35 84 35 2 7 15 0 spoe
14044 939 484 472 180 148 23 75 22 1 6 17 0 spoe
14045 1009 533 510 180 134 48 100 37 1 9 1 0 spoe
14046 685 472 463 142 139 76 51 47 0 8 0 0 spoe
14047 864 448 441 150 166 20 65 26 0 11 3 0 fpoe
14048 825 435 430 175 179 21 40 8 0 1 6 0 fpoe
14049 749 501 489 199 122 40 103 19 0 5 1 0 spoe
14050 1030 588 568 233 227 39 44 15 1 7 2 0 spoe
14051 646 374 369 135 113 37 56 24 1 2 1 0 spoe
14052 1006 581 576 245 211 48 39 29 2 2 0 0 spoe
14053 999 571 559 247 191 47 49 18 2 2 3 0 spoe
14054 996 596 582 256 184 38 71 21 3 2 7 0 spoe
14055 1106 703 688 246 178 100 103 50 0 10 1 0 spoe
14056 1004 726 720 233 213 122 78 67 1 6 0 0 spoe
14057 1167 816 808 273 254 90 114 59 3 15 0 0 spoe
14058 983 645 641 228 238 66 51 40 4 9 5 0 fpoe
14059 1116 702 687 278 244 46 65 40 4 7 3 0 spoe
14060 750 435 426 157 141 37 54 29 4 2 2 0 spoe
14061 673 414 411 158 137 25 57 19 0 14 1 0 spoe
14062 963 532 521 208 170 27 80 17 4 12 3 0 spoe
14063 838 497 490 173 143 55 85 24 0 7 3 0 spoe
14064 985 620 611 221 163 63 103 53 1 5 2 0 spoe
14065 918 598 579 217 162 58 87 35 7 13 0 0 spoe
14066 1172 673 666 235 274 47 62 27 2 9 10 0 fpoe
14067 1005 623 609 230 227 36 71 27 4 10 4 0 spoe
14068 0 0 0 0 0 0 0 0 0 0 0 0 spoe
14069 0 0 0 0 0 0 0 0 0 0 0 0 spoe
14070 0 0 0 0 0 0 0 0 0 0 0 0 spoe
15000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
15001 1086 593 567 258 246 15 21 8 1 3 15 0 spoe
15002 976 556 534 287 159 36 29 11 8 2 2 0 spoe
15003 985 614 603 253 181 50 86 18 1 12 2 0 spoe
15004 861 483 455 218 169 19 27 13 2 3 4 0 spoe
15005 838 418 413 194 137 21 21 19 1 3 17 0 spoe
15006 932 537 530 228 147 29 85 21 1 12 7 0 spoe
15007 751 380 360 136 106 35 56 19 2 5 1 0 spoe
15008 855 458 437 187 102 32 88 18 0 10 0 0 spoe
15009 778 435 416 146 114 25 93 22 3 8 5 0 spoe
15010 846 442 426 187 115 22 56 16 0 13 17 0 spoe
15011 880 464 452 167 121 23 115 15 0 6 5 0 spoe
15012 830 479 475 180 91 32 131 34 1 5 1 0 spoe
15013 1007 578 571 224 146 44 111 34 0 11 1 0 spoe
15014 750 376 365 145 81 20 92 18 0 3 6 0 spoe
15015 793 426 422 159 78 34 107 25 1 10 8 0 spoe
15016 672 413 403 155 130 23 69 19 1 4 2 0 spoe
15017 833 438 427 176 128 20 64 17 4 8 10 0 spoe
15018 195 124 122 50 26 7 33 6 0 0 0 0 spoe
15019 628 365 357 140 86 34 64 22 0 7 4 0 spoe
15020 796 436 426 188 105 14 82 25 1 8 3 0 spoe
15021 844 471 461 202 108 28 84 27 1 5 6 0 spoe
15022 882 469 466 187 147 25 69 24 0 9 5 0 spoe
15023 994 487 473 206 159 28 38 23 1 11 7 0 spoe
15024 945 517 511 233 142 30 67 17 2 7 13 0 spoe
15025 917 504 497 214 126 38 84 19 2 5 9 0 spoe
15026 756 389 388 182 109 18 51 21 1 0 6 0 spoe
15027 716 429 427 175 121 26 66 27 2 4 6 0 spoe
15028 952 572 556 224 182 30 87 17 2 8 6 0 spoe
15029 748 368 355 145 103 16 59 17 0 5 10 0 spoe
15030 708 421 405 164 131 26 51 9 0 8 16 0 spoe
15031 568 274 269 122 74 10 41 10 0 8 4 0 spoe
15032 847 568 551 237 99 32 143 30 0 8 2 0 spoe
15033 744 408 402 184 92 18 80 13 0 14 1 0 spoe
15034 894 491 474 184 108 34 109 31 0 7 1 0 spoe
15035 783 415 407 173 71 33 90 24 0 12 4 0 spoe
15036 817 438 423 203 101 19 79 14 0 3 4 0 spoe
15037 804 437 434 163 89 25 105 39 0 6 7 0 spoe
15038 805 455 440 181 122 30 75 21 0 9 2 0 spoe
15039 781 410 403 175 112 24 60 27 0 5 0 0 spoe
15040 899 486 465 226 124 29 46 25 1 3 11 0 spoe
15041 824 477 465 179 164 42 53 19 1 7 0 0 spoe
15042 693 395 389 150 97 35 74 24 0 4 5 0 spoe
15043 888 536 530 275 151 28 48 17 0 2 9 0 spoe
15044 938 543 530 221 163 33 71 22 0 10 10 0 spoe
15045 779 414 399 188 114 16 45 19 0 9 8 0 spoe
15046 787 425 411 190 123 21 55 11 0 5 6 0 spoe
15047 965 510 500 223 139 23 74 22 1 6 12 0 spoe
15048 820 476 459 199 130 28 80 18 0 3 1 0 spoe
15049 801 438 416 156 109 25 82 19 3 8 14 0 spoe
15050 0 0 0 0 0 0 0 0 0 0 0 0 spoe
16000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
16001 550 267 261 109 56 21 46 18 0 7 4 0 spoe
16002 637 314 307 140 59 15 64 19 0 4 6 0 spoe
16003 752 430 423 166 75 30 111 17 2 15 7 0 spoe
16004 791 469 451 179 111 39 85 21 0 9 7 0 spoe
16005 663 357 312 118 60 33 75 10 0 8 8 0 spoe
16006 664 345 344 149 46 19 93 16 0 12 9 0 spoe
16007 681 411 400 159 69 30 118 14 1 5 4 0 spoe
16008 704 379 373 176 76 25 63 16 0 5 12 0 spoe
16009 646 360 355 141 101 14 70 15 3 7 4 0 spoe
16010 512 280 272 109 85 12 47 9 0 7 3 0 spoe
16011 603 304 297 100 81 20 69 15 1 6 5 0 spoe
16012 853 483 465 193 110 39 81 19 0 12 11 0 spoe
16013 844 484 469 190 111 26 100 31 0 6 5 0 spoe
16014 678 482 466 188 112 39 80 30 0 13 4 0 spoe
16015 766 479 459 178 96 20 102 35 1 12 15 0 spoe
16016 611 337 328 140 102 20 39 14 0 5 8 0 spoe
16017 894 508 505 217 148 25 64 26 1 8 16 0 spoe
16018 849 479 468 171 142 26 88 22 0 12 7 0 spoe
16019 785 404 393 180 77 21 88 19 0 6 2 0 spoe
16020 632 329 325 158 57 21 64 12 1 9 3 0 spoe
16021 761 421 408 192 104 26 52 22 1 6 5 0 spoe
16022 750 377 368 169 110 24 37 13 0 3 12 0 spoe
16023 521 246 244 97 63 14 48 9 4 7 2 0 spoe
16024 569 343 337 140 102 22 50 10 2 3 8 0 spoe
16025 583 279 269 124 76 12 32 16 3 2 4 0 spoe
16026 853 452 415 185 128 19 49 17 0 6 11 0 spoe
16027 749 419 396 208 148 10 13 12 0 1 4 0 spoe
16028 672 404 402 152 188 20 14 15 1 5 7 0 fpoe
16029 852 389 373 167 109 16 42 14 0 5 20 0 spoe
16030 753 400 396 132 124 29 73 22 1 9 6 0 spoe
16031 713 456 440 200 80 32 82 24 0 13 9 0 spoe
16032 634 325 314 122 81 28 53 17 0 3 10 0 spoe
16033 559 328 308 130 109 23 39 5 0 2 0 0 spoe
16034 650 337 324 123 106 16 50 15 1 8 5 0 spoe
16035 869 509 504 210 144 39 80 23 2 4 2 0 spoe
16036 786 444 424 163 119 46 63 21 0 2 10 0 spoe
16037 899 516 503 205 130 60 68 32 2 5 1 0 spoe
16038 648 356 333 133 126 14 40 12 1 5 2 0 spoe
16039 691 458 440 184 122 35 60 27 2 3 7 0 spoe
16040 741 463 451 182 129 39 57 26 1 6 11 0 spoe
16041 781 472 457 168 147 40 68 24 2 7 1 0 spoe
16042 730 416 405 160 119 35 57 21 0 9 4 0 spoe
16043 692 373 356 168 124 17 29 13 0 3 2 0 spoe
16044 473 266 252 55 165 21 4 5 1 1 0 0 fpoe
16045 565 331 323 144 140 10 9 11 1 1 7 0 spoe
16046 555 288 280 127 116 8 10 6 0 3 10 0 spoe
16047 952 637 635 239 211 27 92 39 3 15 9 0 spoe
16048 735 421 415 155 167 28 42 14 1 1 7 0 fpoe
16049 895 511 498 268 125 23 57 18 0 6 1 0 spoe
16050 698 394 377 158 147 28 25 6 1 4 8 0 spoe
16051 841 556 543 180 197 49 74 31 2 5 5 0 fpoe
16052 722 410 383 156 110 24 58 21 3 8 3 0 spoe
16053 928 541 528 201 179 29 59 31 4 6 19 0 spoe
16054 602 318 316 134 78 17 64 12 1 4 6 0 spoe
16055 585 366 365 151 115 36 44 18 0 0 1 0 spoe
16056 838 501 486 208 116 36 86 28 0 9 3 0 spoe
16057 734 460 432 179 140 29 54 17 0 10 3 0 spoe
16058 689 402 386 158 136 33 35 13 0 6 5 0 spoe
16059 711 459 450 199 140 41 34 26 3 6 1 0 spoe
16060 865 530 524 243 133 46 65 24 2 6 5 0 spoe
16061 815 493 488 204 168 28 56 20 1 5 6 0 spoe
16062 737 510 477 193 164 48 40 24 1 3 4 0 spoe
16063 728 409 384 173 121 22 32 24 0 8 4 0 spoe
16064 288 187 182 90 68 12 6 3 0 2 1 0 spoe
16065 923 598 586 278 169 48 40 26 2 9 14 0 spoe
16066 480 276 272 112 61 16 51 26 0 3 3 0 spoe
16067 708 419 413 175 103 38 57 30 0 7 3 0 spoe
16068 652 354 347 147 149 8 26 7 2 6 2 0 fpoe
16069 797 466 452 201 174 21 21 16 2 7 10 0 spoe
16070 712 454 421 155 137 46 47 28 0 6 2 0 spoe
16071 416 267 253 112 84 17 26 10 0 3 1 0 spoe
16072 676 457 453 178 117 60 55 39 1 2 1 0 spoe
16073 488 300 291 138 94 22 18 7 1 2 9 0 spoe
16074 586 371 362 165 117 23 15 16 0 4 22 0 spoe
16075 710 489 480 173 89 96 67 49 1 4 1 0 spoe
16076 915 588 567 218 107 71 88 75 0 6 2 0 spoe
16077 944 625 613 171 179 115 94 47 2 4 1 0 fpoe
16078 919 639 634 192 151 131 77 77 1 4 1 0 spoe
16079 496 375 357 116 171 34 18 15 0 2 1 0 fpoe
16080 836 546 522 205 203 35 40 36 0 1 2 0 spoe
16081 832 464 460 182 135 40 73 28 0 2 0 0 spoe
16082 544 350 342 138 143 19 19 12 2 3 6 0 fpoe
16083 0 0 0 0 0 0 0 0 0 0 0 0 spoe
16084 0 0 0 0 0 0 0 0 0 0 0 0 spoe
16085 0 0 0 0 0 0 0 0 0 0 0 0 spoe
16086 0 0 0 0 0 0 0 0 0 0 0 0 spoe
17000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
17001 812 436 422 183 95 22 82 22 0 8 10 0 spoe
17002 746 428 419 173 94 28 85 30 0 4 5 0 spoe
17003 882 476 474 179 92 30 118 37 2 11 5 0 spoe
17004 671 361 359 150 64 37 74 26 0 4 4 0 spoe
17005 779 401 396 152 78 37 89 31 1 5 3 0 spoe
17006 827 470 459 178 96 40 111 27 0 5 2 0 spoe
17007 920 533 526 199 140 47 93 34 0 10 3 0 spoe
17008 950 581 551 230 135 59 76 34 1 11 5 0 spoe
17009 888 536 525 186 135 60 98 35 0 5 6 0 spoe
17010 903 501 498 200 117 25 102 37 0 8 9 0 spoe
17011 925 516 504 200 138 44 83 23 0 13 3 0 spoe
17012 922 498 477 186 151 24 70 27 0 11 8 0 spoe
17013 946 556 545 227 114 57 92 28 0 19 8 0 spoe
17014 783 481 476 183 114 53 83 31 2 7 3 0 spoe
17015 814 399 390 151 137 29 51 12 0 7 3 0 spoe
17016 737 386 364 155 101 25 56 20 0 4 3 0 spoe
17017 830 466 436 172 102 38 93 22 0 6 3 0 spoe
17018 908 531 526 224 111 49 95 32 0 7 8 0 spoe
17019 625 369 355 111 118 21 64 30 1 4 6 0 fpoe
17020 966 527 524 236 139 38 76 24 1 7 3 0 spoe
17021 999 627 620 222 246 34 65 29 1 8 15 0 fpoe
17022 967 574 562 226 187 42 57 34 1 9 6 0 spoe
17023 929 543 529 183 181 44 76 34 0 6 5 0 spoe
17024 1042 699 682 248 230 91 60 46 2 4 1 0 spoe
17025 864 414 399 162 121 43 50 17 0 2 4 0 spoe
17026 1136 657 635 248 203 50 77 44 2 8 3 0 spoe
17027 1003 609 598 229 163 59 90 46 3 6 2 0 spoe
17028 1087 712 701 292 187 100 67 49 1 3 2 0 spoe
17029 1056 609 591 216 157 67 92 50 1 2 6 0 spoe
17030 908 524 512 191 155 60 61 36 2 4 3 0 spoe
17031 952 622 604 211 127 96 80 83 1 3 3 0 spoe
17032 869 535 532 178 142 74 64 69 1 3 1 0 spoe
17033 877 633 592 202 176 93 56 61 2 1 1 0 spoe
17034 950 603 583 160 158 112 66 78 1 7 1 0 spoe
17035 875 543 536 188 156 92 51 44 1 4 0 0 spoe
17036 857 523 505 165 147 91 44 55 2 1 0 0 spoe
17037 860 569 558 154 158 105 65 72 2 1 1 0 fpoe
17038 0 0 0 0 0 0 0 0 0 0 0 0 spoe
17039 0 0 0 0 0 0 0 0 0 0 0 0 spoe
17040 0 0 0 0 0 0 0 0 0 0 0 0 spoe
18000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
18001 756 445 434 155 92 49 95 32 1 5 5 0 spoe
18002 895 505 498 182 100 40 119 51 0 3 3 0 spoe
18003 884 505 499 206 78 48 111 48 0 7 1 0 spoe
18004 741 456 444 170 87 41 107 35 0 4 0 0 spoe
18005 682 399 386 154 73 40 84 24 0 6 5 0 spoe
18006 676 397 392 140 88 31 80 47 1 5 0 0 spoe
18007 812 455 451 157 95 49 106 34 1 9 0 0 spoe
18008 495 291 284 98 45 32 79 25 0 5 0 0 spoe
18009 703 425 423 138 81 56 99 41 5 3 0 0 spoe
18010 985 618 617 226 117 68 129 66 1 7 3 0 spoe
18011 687 406 394 123 92 57 72 39 0 7 4 0 spoe
18012 757 458 453 163 77 63 104 36 1 7 2 0 spoe
18013 989 622 608 239 101 88 124 46 3 6 1 0 spoe
18014 1020 595 572 246 191 41 57 22 4 3 8 0 spoe
18015 544 332 332 104 45 27 99 40 2 11 4 0 spoe
18016 882 525 518 158 94 95 117 51 2 1 0 0 spoe
18017 765 463 452 174 78 62 86 39 0 12 1 0 spoe
18018 587 340 331 119 70 26 74 31 1 8 2 0 spoe
18019 974 616 606 186 108 96 119 82 3 10 2 0 spoe
18020 964 615 612 164 98 143 115 84 1 7 0 0 spoe
18021 992 566 546 176 85 103 119 54 0 8 1 0 spoe
18022 912 535 527 154 107 96 86 78 1 4 1 0 spoe
18023 816 470 460 128 82 90 100 49 1 9 1 0 spoe
18024 682 371 363 153 84 35 53 31 2 1 4 0 spoe
18025 809 495 486 171 104 73 79 54 0 5 0 0 spoe
18026 832 507 494 138 126 84 77 61 2 5 1 0 spoe
18027 779 462 451 174 141 49 52 26 5 2 2 0 spoe
18028 871 539 535 162 112 103 98 52 0 8 0 0 spoe
18029 935 598 577 170 107 101 122 71 0 5 1 0 spoe
18030 955 596 579 243 180 85 39 29 0 3 0 0 spoe
18031 848 561 554 187 131 105 62 63 0 4 2 0 spoe
18032 692 415 406 162 62 79 75 23 1 2 2 0 spoe
18033 911 567 558 161 143 116 77 54 0 2 5 0 spoe
18034 647 410 405 141 56 84 70 47 0 6 1 0 spoe
18035 794 497 480 156 73 116 68 63 0 4 0 0 spoe
18036 867 579 575 170 125 113 73 92 1 1 0 0 spoe
18037 738 473 463 139 84 120 61 56 1 2 0 0 spoe
18038 856 541 535 169 95 127 61 79 1 3 0 0 spoe
18039 909 590 580 160 130 148 53 86 0 3 0 0 spoe
18040 0 53 51 7 8 34 1 1 0 0 0 0 oevp
18041 0 0 0 0 0 0 0 0 0 0 0 0 spoe
19000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
19001 582 292 282 137 81 24 22 12 1 3 2 0 spoe
19002 660 389 375 120 112 51 54 29 1 8 0 0 spoe
19003 783 462 459 189 141 45 36 37 0 9 2 0 spoe
19004 787 450 438 198 125 36 41 26 5 6 1 0 spoe
19005 801 482 463 182 138 47 49 32 0 6 9 0 spoe
19006 757 438 410 157 93 48 56 46 1 6 3 0 spoe
19007 648 398 388 110 66 106 33 65 0 5 3 0 spoe
19008 559 336 323 113 52 64 49 39 1 5 0 0 spoe
19009 845 525 511 171 106 87 67 76 2 2 0 0 spoe
19010 854 500 490 166 101 93 75 49 1 4 1 0 spoe
19011 198 121 114 34 21 52 3 4 0 0 0 0 oevp
19012 884 495 469 155 104 86 70 50 0 4 0 0 spoe
19013 681 466 453 161 121 68 52 46 0 4 1 0 spoe
19014 591 377 373 96 67 80 71 59 0 0 0 0 spoe
19015 641 400 392 136 83 77 51 44 0 1 0 0 spoe
19016 665 408 398 103 87 106 55 41 0 6 0 0 oevp
19017 574 392 380 113 96 80 50 32 3 5 1 0 spoe
19018 608 366 347 121 76 72 37 37 0 2 2 0 spoe
19019 517 356 350 142 82 73 25 27 1 0 0 0 spoe
19020 690 435 423 143 91 87 45 50 0 7 0 0 spoe
19021 808 495 472 189 95 89 45 50 0 3 1 0 spoe
19022 741 439 424 140 114 77 45 36 0 8 4 0 spoe
19023 516 307 295 102 60 58 37 37 0 0 1 0 spoe
19024 827 500 495 185 129 76 51 49 0 4 1 0 spoe
19025 425 229 220 99 80 16 13 5 4 2 1 0 spoe
19026 562 320 309 140 113 20 9 8 3 6 10 0 spoe
19027 879 549 515 233 182 28 32 14 3 6 17 0 spoe
19028 631 399 392 184 119 53 16 16 1 2 1 0 spoe
19029 563 323 317 139 100 20 26 20 0 1 11 0 spoe
19030 638 361 348 178 114 20 14 11 3 5 3 0 spoe
19031 174 103 99 33 27 15 8 15 0 1 0 0 spoe
19032 637 413 409 177 139 43 34 10 1 2 3 0 spoe
19033 713 386 367 141 102 52 30 34 3 4 1 0 spoe
19034 668 410 407 125 111 73 49 47 0 1 1 0 spoe
19035 743 459 451 158 121 74 54 38 0 6 0 0 spoe
19036 698 473 459 108 98 119 60 72 0 2 0 0 oevp
19037 760 447 428 149 116 77 41 41 1 2 1 0 spoe
19038 276 180 173 71 42 20 15 22 0 2 1 0 spoe
19039 737 376 369 132 87 59 51 37 0 3 0 0 spoe
19040 589 371 356 81 77 113 22 62 0 1 0 0 oevp
19041 560 327 312 114 134 36 15 9 0 4 0 0 fpoe
19042 553 324 319 101 97 62 17 37 0 2 3 0 spoe
19043 701 481 474 151 107 99 46 68 0 2 1 0 spoe
19044 584 374 371 91 79 90 46 62 1 2 0 0 spoe
19045 587 388 384 86 98 95 32 70 0 3 0 0 fpoe
19046 742 503 479 147 102 111 58 57 1 3 0 0 spoe
19047 739 483 471 154 100 115 37 58 1 5 1 0 spoe
19048 635 405 395 176 115 45 27 24 0 4 4 0 spoe
19049 770 503 481 153 122 92 49 58 1 5 1 0 spoe
19050 817 527 524 176 119 81 84 53 3 5 3 0 spoe
19051 752 452 442 180 124 67 40 25 0 1 5 0 spoe
19052 604 373 355 141 107 42 32 25 2 3 3 0 spoe
19053 638 433 426 154 88 82 58 39 0 3 2 0 spoe
19054 986 551 526 199 173 60 47 40 0 6 1 0 spoe
19055 644 389 386 140 116 55 43 24 0 7 1 0 spoe
19056 731 496 490 176 129 86 63 32 0 4 0 0 spoe
19057 401 313 291 134 70 75 5 7 0 0 0 0 spoe
19058 418 307 307 123 61 63 35 25 0 0 0 0 spoe
19059 839 573 566 241 201 44 39 24 0 10 7 0 spoe
19060 882 564 534 158 136 142 47 44 1 5 1 0 spoe
19061 585 391 389 110 80 91 51 56 0 1 0 0 spoe
19062 756 493 488 137 123 114 42 67 2 1 2 0 spoe
19063 681 432 405 125 119 87 32 38 2 1 1 0 spoe
19064 811 578 565 208 171 84 39 58 1 4 0 0 spoe
19065 798 500 490 207 162 47 28 30 3 4 9 0 spoe
19066 838 477 452 197 137 59 30 23 1 3 2 0 spoe
19067 726 448 439 179 148 57 20 32 1 2 0 0 spoe
19068 551 348 334 99 76 79 34 42 1 3 0 0 spoe
19069 702 463 457 153 103 95 44 58 0 4 0 0 spoe
19070 811 531 521 186 102 110 54 64 1 1 3 0 spoe
19071 811 559 543 154 158 120 56 52 0 3 0 0 fpoe
19072 567 339 338 113 57 90 21 54 1 2 0 0 spoe
19073 0 0 0 0 0 0 0 0 0 0 0 0 spoe
19074 0 0 0 0 0 0 0 0 0 0 0 0 spoe
19075 0 0 0 0 0 0 0 0 0 0 0 0 spoe
20000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
20001 828 487 463 178 105 20 117 30 2 6 3 2 spoe
20002 1004 590 563 214 119 39 134 42 2 8 4 1 spoe
20003 992 568 550 219 106 33 138 39 1 10 3 1 spoe
20004 848 452 428 169 100 8 97 19 1 7 25 2 spoe
20005 924 542 523 214 169 46 43 20 2 6 21 2 spoe
20006 865 513 501 195 150 56 70 20 1 1 7 1 spoe
20007 898 543 513 244 128 22 88 26 0 3 2 0 spoe
20008 767 443 423 162 110 20 81 24 0 10 14 2 spoe
20009 822 498 482 196 113 37 88 36 0 8 4 0 spoe
20010 893 480 449 177 131 30 86 17 0 4 3 1 spoe
20011 977 485 471 176 155 37 69 18 1 3 12 0 spoe
20012 821 483 479 203 161 21 52 24 1 3 14 0 spoe
20013 1058 626 608 254 212 36 55 29 0 3 19 0 spoe
20014 895 461 447 201 154 27 27 13 1 2 21 1 spoe
20015 1071 584 566 224 201 18 41 22 1 7 51 1 spoe
20016 879 496 482 193 147 38 62 22 1 10 8 1 spoe
20017 751 428 416 165 159 23 42 14 1 2 8 2 spoe
20018 911 506 490 203 165 23 59 20 1 4 14 1 spoe
20019 996 569 557 233 177 51 45 31 0 6 12 2 spoe
20020 532 273 263 93 85 17 41 10 0 4 11 2 spoe
20021 764 446 426 192 159 11 22 11 1 2 28 0 spoe
20022 896 498 488 219 188 23 17 20 0 3 16 2 spoe
20023 802 469 455 212 165 24 10 5 1 3 35 0 spoe
20024 1066 639 607 274 217 30 36 28 1 3 17 1 spoe
20025 771 471 465 210 126 40 49 26 0 6 6 2 spoe
20026 889 575 524 259 205 23 14 10 0 4 9 0 spoe
20027 919 604 591 242 201 51 68 18 2 2 7 0 spoe
20028 694 405 386 168 135 9 40 7 0 6 20 1 spoe
20029 886 492 476 204 198 14 17 14 1 3 24 1 spoe
20030 692 427 412 187 159 6 23 10 1 7 18 1 spoe
20031 964 631 611 270 183 25 82 38 0 8 5 0 spoe
20032 729 400 389 192 151 17 7 11 0 3 8 0 spoe
20033 858 438 418 197 131 16 33 19 1 3 16 2 spoe
20034 833 518 484 183 184 33 38 14 0 3 26 3 fpoe
20035 567 349 329 135 123 15 20 11 0 8 17 0 spoe
20036 974 531 495 217 133 22 82 29 1 3 6 2 spoe
20037 837 396 381 205 111 18 29 9 0 3 6 0 spoe
20038 417 253 243 121 47 16 33 12 0 2 12 0 spoe
20039 855 519 509 215 229 18 10 9 1 4 19 4 fpoe
20040 931 546 530 225 217 13 16 12 1 4 40 2 spoe
20041 738 416 404 182 147 19 24 14 1 6 9 2 spoe
20042 533 307 304 145 60 22 52 15 0 4 6 0 spoe
20043 1009 504 466 208 189 12 17 14 2 3 20 1 spoe
20044 1025 596 565 234 190 31 56 33 2 9 10 0 spoe
20045 966 535 511 206 196 29 36 27 0 3 14 0 spoe
20046 712 400 380 155 84 26 69 25 2 9 10 0 spoe
20047 622 387 362 177 110 20 26 18 2 1 8 0 spoe
20048 965 531 515 238 155 21 49 28 2 7 12 3 spoe
20049 812 418 403 178 140 18 40 15 0 3 8 1 spoe
20050 455 274 265 123 83 14 27 11 0 2 5 0 spoe
20051 703 334 311 143 132 6 12 9 0 6 3 0 spoe
20052 910 483 462 207 174 23 34 13 0 4 7 0 spoe
20053 726 406 394 165 116 27 50 21 4 3 8 0 spoe
20054 639 377 365 163 103 25 47 23 0 4 0 0 spoe
20055 739 409 402 176 123 24 43 19 1 6 10 0 spoe
20056 737 416 403 176 107 24 60 20 1 5 9 1 spoe
20057 864 486 474 195 135 15 80 24 0 8 17 0 spoe
20058 804 482 477 202 177 39 27 20 0 5 7 0 spoe
20059 0 0 0 0 0 0 0 0 0 0 0 0 spoe
21000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
21001 648 373 365 123 139 44 33 14 2 2 3 5 fpoe
21002 732 415 402 152 169 26 18 16 0 4 9 8 fpoe
21003 1028 460 445 143 202 35 27 18 1 8 2 9 fpoe
21004 924 605 593 244 230 34 35 26 3 5 1 15 spoe
21005 652 405 379 198 134 17 12 7 1 1 0 9 spoe
21006 876 515 495 160 194 52 45 27 1 4 0 12 fpoe
21007 724 436 433 182 168 28 29 17 1 2 0 6 spoe
21008 953 503 498 218 219 21 14 12 2 2 6 4 fpoe
21009 839 468 458 180 156 38 46 22 1 7 6 2 spoe
21010 849 497 478 154 181 51 51 26 0 2 3 10 fpoe
21011 1101 717 694 279 277 39 41 30 2 3 6 17 spoe
21012 821 489 471 184 214 22 23 13 0 5 1 9 fpoe
21013 888 514 504 192 248 19 16 11 0 2 5 11 fpoe
21014 953 621 612 213 248 55 50 28 0 8 1 9 fpoe
21015 910 571 545 206 216 45 28 28 0 5 7 10 fpoe
21016 1149 833 804 282 322 66 81 43 1 4 1 4 fpoe
21017 941 596 571 188 230 40 62 35 2 5 6 3 fpoe
21018 854 574 563 200 211 27 65 49 0 7 0 4 fpoe
21019 1038 681 649 274 238 57 41 20 0 7 3 9 spoe
21020 979 637 607 236 198 52 72 29 0 6 5 9 spoe
21021 959 632 607 225 211 45 78 28 0 7 1 12 spoe
21022 780 492 464 160 194 45 26 24 1 5 2 7 fpoe
21023 817 489 460 198 137 39 46 18 1 5 7 9 spoe
21024 783 479 471 183 190 16 41 19 0 7 2 13 fpoe
21025 819 540 530 203 132 16 126 39 0 9 0 5 spoe
21026 830 547 537 222 197 24 56 24 0 3 7 4 spoe
21027 597 371 358 145 149 20 18 13 1 1 0 11 fpoe
21028 755 434 425 151 189 27 23 10 2 5 8 10 fpoe
21029 549 317 308 123 149 9 7 9 0 4 0 7 fpoe
21030 628 310 293 110 151 1 10 4 0 5 7 5 fpoe
21031 946 607 590 268 238 33 25 15 2 0 2 7 spoe
21032 841 476 461 183 192 15 34 18 1 4 8 6 fpoe
21033 759 470 451 188 193 13 19 12 4 2 5 15 fpoe
21034 616 309 303 123 134 7 9 9 1 2 13 5 fpoe
21035 724 411 398 165 199 6 12 5 1 5 2 3 fpoe
21036 984 616 576 236 218 36 39 22 0 8 6 11 spoe
21037 912 481 470 207 180 22 29 13 2 3 5 9 spoe
21038 688 456 438 169 176 25 20 32 0 3 3 10 fpoe
21039 840 453 425 151 204 20 20 7 1 0 7 15 fpoe
21040 979 586 563 237 246 18 16 16 2 8 4 16 fpoe
21041 839 523 509 175 221 30 44 25 1 4 0 9 fpoe
21042 909 512 507 171 204 30 40 30 0 9 6 17 fpoe
21043 760 532 512 204 161 49 52 34 0 3 1 8 spoe
21044 617 353 345 132 135 17 27 22 1 2 0 9 fpoe
21045 766 479 459 205 188 20 16 13 1 5 2 9 spoe
21046 730 508 486 184 198 23 27 21 2 6 1 24 fpoe
21047 933 608 592 231 258 33 24 18 1 10 5 12 fpoe
21048 959 684 648 227 235 46 65 57 4 2 2 10 fpoe
21049 622 402 381 164 168 18 8 10 0 3 2 8 fpoe
21050 757 492 460 209 187 18 17 9 1 4 1 14 spoe
21051 883 600 587 233 216 59 32 29 2 2 0 14 spoe
21052 760 557 542 230 189 40 32 30 0 1 2 18 spoe
21053 763 508 479 165 176 54 36 33 0 2 0 13 fpoe
21054 718 506 466 194 152 44 32 28 0 4 0 12 spoe
21055 674 433 409 173 178 22 10 11 0 5 1 9 fpoe
21056 958 551 530 225 244 34 8 6 0 2 1 10 fpoe
21057 741 451 433 156 231 14 10 4 1 6 1 10 fpoe
21058 837 580 556 208 184 71 53 29 1 3 0 7 spoe
21059 760 577 557 194 193 89 41 25 0 5 5 5 spoe
21060 802 550 515 163 267 35 24 5 0 2 1 18 fpoe
21061 963 681 640 231 222 67 52 54 1 2 1 10 spoe
21062 808 531 522 176 225 21 51 36 0 5 1 7 fpoe
21063 851 552 541 185 267 34 25 21 0 4 2 3 fpoe
21064 891 602 572 210 274 25 27 19 4 3 1 9 fpoe
21065 914 580 560 197 197 79 40 32 1 2 0 12 spoe
21066 810 551 517 173 242 29 36 23 0 3 0 11 fpoe
21067 793 556 532 241 184 38 34 26 1 1 0 7 spoe
21068 970 674 652 258 287 30 36 27 0 5 1 8 fpoe
21069 714 472 458 167 223 24 15 18 0 2 2 7 fpoe
21070 778 545 499 225 181 34 25 16 1 4 3 10 spoe
21071 720 426 410 207 140 33 10 10 0 3 2 5 spoe
21072 928 544 529 189 249 19 26 22 1 7 5 11 fpoe
21073 835 483 464 186 218 7 14 6 1 0 24 8 fpoe
21074 722 403 388 177 176 5 3 1 2 3 14 7 spoe
21075 719 405 389 182 154 12 5 2 2 1 24 7 spoe
21076 843 511 488 192 221 23 20 15 0 6 0 11 fpoe
21077 1010 619 610 235 310 20 9 13 1 3 14 5 fpoe
21078 1113 672 649 266 313 23 16 12 4 1 10 4 fpoe
21079 1121 726 680 276 328 20 12 17 0 4 15 8 fpoe
21080 983 602 560 240 259 16 14 10 0 1 10 10 fpoe
21081 923 543 515 224 230 16 16 11 0 3 9 6 fpoe
21082 904 534 525 250 223 17 10 12 0 2 10 1 spoe
21083 1031 636 616 277 257 30 6 5 0 4 19 18 spoe
21084 949 607 592 234 201 30 80 26 1 5 3 12 spoe
21085 837 566 535 234 236 26 10 14 4 2 1 8 fpoe
21086 998 620 612 233 281 32 29 15 2 4 12 4 fpoe
21087 979 662 625 325 229 29 9 9 0 2 13 9 spoe
21088 695 478 460 184 202 20 28 13 0 3 5 5 fpoe
21089 902 601 592 238 276 24 23 21 0 3 1 6 fpoe
21090 833 585 569 215 276 26 16 20 1 2 1 12 fpoe
21091 1023 705 698 295 248 59 48 28 3 5 5 7 spoe
21092 795 569 549 211 233 49 21 20 2 5 0 8 fpoe
21093 832 627 591 232 235 31 52 25 0 7 1 8 fpoe
21094 823 624 601 238 204 47 57 38 2 5 1 9 spoe
21095 1079 629 609 194 293 36 35 37 0 3 1 10 fpoe
21096 930 612 592 242 228 24 47 34 2 7 5 3 spoe
21097 785 433 410 159 149 28 43 26 0 2 0 3 spoe
21098 926 611 607 221 213 71 60 26 3 5 0 8 spoe
21099 439 310 294 112 122 23 14 15 0 1 4 3 fpoe
21100 928 588 566 153 255 83 34 29 1 4 2 5 fpoe
21101 752 496 486 146 285 21 13 10 2 2 2 5 fpoe
21102 802 540 531 179 292 13 14 8 1 6 1 17 fpoe
21103 679 432 403 127 232 15 8 11 1 1 0 8 fpoe
21104 1041 626 596 215 314 18 5 12 1 8 6 17 fpoe
21105 906 503 491 160 295 5 11 5 1 4 5 5 fpoe
21106 997 586 540 215 275 14 9 6 0 3 2 16 fpoe
21107 890 543 514 188 260 10 16 17 0 4 4 15 fpoe
21108 1244 854 805 299 359 47 42 36 3 10 0 9 fpoe
21109 1066 791 762 308 283 51 53 41 1 9 0 16 spoe
21110 961 600 596 228 310 9 21 14 1 3 1 9 fpoe
21111 881 639 624 203 312 35 31 19 1 5 1 17 fpoe
21112 673 490 473 180 154 59 34 27 1 6 0 12 spoe
21113 756 517 501 198 145 70 45 36 0 3 0 4 spoe
21114 1102 622 594 193 344 11 12 13 1 4 2 14 fpoe
21115 886 595 572 216 216 50 42 26 1 11 1 9 spoe
21116 936 671 640 207 258 52 62 42 2 6 3 8 fpoe
21117 770 550 537 199 163 80 46 38 1 3 0 7 spoe
21118 871 637 606 199 229 78 43 32 0 7 1 17 fpoe
21119 775 593 571 189 187 99 44 42 1 1 0 8 spoe
21120 885 631 621 178 318 30 39 37 0 8 0 11 fpoe
21121 931 644 633 204 320 31 23 31 1 4 1 18 fpoe
21122 740 524 514 162 248 34 32 25 0 2 1 10 fpoe
21123 757 526 514 152 200 33 72 34 1 5 9 8 fpoe
21124 580 318 310 127 95 20 38 28 0 2 0 0 spoe
21125 0 0 0 0 0 0 0 0 0 0 0 0 spoe
21126 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22001 840 539 527 233 131 41 70 39 4 4 5 0 spoe
22002 882 520 510 229 128 39 71 36 1 3 3 0 spoe
22003 943 484 479 215 114 33 77 36 2 1 1 0 spoe
22004 428 253 239 82 92 27 18 16 1 3 0 0 fpoe
22005 618 362 348 151 157 13 18 3 0 3 3 0 fpoe
22006 632 431 413 179 91 25 79 38 0 1 0 0 spoe
22007 793 422 394 169 173 8 16 11 3 8 6 0 fpoe
22008 753 457 440 185 183 22 25 12 1 3 8 1 spoe
22009 803 494 490 193 188 33 40 27 0 9 0 0 spoe
22010 826 502 471 181 141 57 55 27 1 6 2 1 spoe
22011 737 461 422 210 155 22 12 14 2 4 3 0 spoe
22012 950 582 563 223 192 56 46 38 2 3 1 2 spoe
22013 1038 727 716 296 259 62 62 28 3 2 2 2 spoe
22014 800 491 490 205 154 46 34 46 0 1 4 0 spoe
22015 489 369 341 150 98 26 35 28 1 3 0 0 spoe
22016 1026 781 758 327 233 66 72 53 0 3 3 1 spoe
22017 783 502 490 216 206 21 25 14 0 5 2 1 spoe
22018 694 369 364 168 152 12 19 7 1 1 4 0 spoe
22019 825 557 543 228 221 42 29 19 1 1 2 0 spoe
22020 554 331 328 123 162 18 13 6 4 2 0 0 fpoe
22021 986 622 595 328 195 12 13 14 0 3 28 2 spoe
22022 952 508 502 203 249 17 7 16 0 2 8 0 fpoe
22023 442 402 388 200 139 17 13 10 1 2 6 0 spoe
22024 849 529 503 233 207 25 14 13 0 4 6 1 spoe
22025 975 602 593 255 228 46 24 25 0 0 13 2 spoe
22026 689 427 419 193 139 35 27 11 2 5 5 2 spoe
22027 450 300 291 138 114 10 11 7 2 3 6 0 spoe
22028 870 555 549 238 253 12 20 12 2 5 6 1 fpoe
22029 553 306 302 110 163 8 5 9 0 1 5 1 fpoe
22030 806 485 470 177 217 27 24 18 1 4 2 0 fpoe
22031 711 505 490 206 193 34 24 22 1 6 1 3 spoe
22032 1020 573 564 228 169 35 74 38 1 14 3 2 spoe
22033 813 532 522 220 159 51 48 39 0 4 1 0 spoe
22034 720 422 411 178 123 33 46 24 0 2 4 1 spoe
22035 993 534 514 198 163 30 88 30 0 3 2 0 spoe
22036 832 516 504 203 177 24 56 31 2 7 2 2 spoe
22037 761 464 457 183 173 30 28 34 1 4 4 0 spoe
22038 438 275 267 130 96 12 16 11 0 0 2 0 spoe
22039 796 547 541 226 236 30 23 19 0 4 1 2 fpoe
22040 901 656 647 270 216 42 67 38 2 8 2 2 spoe
22041 1017 628 614 245 297 27 16 18 1 5 4 1 fpoe
22042 916 616 608 255 214 49 49 25 1 9 3 3 spoe
22043 888 533 525 199 206 43 37 28 1 3 7 1 fpoe
22044 905 595 574 257 226 24 38 24 0 4 0 1 spoe
22045 845 616 596 208 294 26 31 23 3 11 0 0 fpoe
22046 964 644 629 225 304 33 30 24 2 5 6 0 fpoe
22047 852 610 593 248 249 27 32 28 1 5 1 2 fpoe
22048 706 469 463 185 181 25 42 17 2 2 9 0 spoe
22049 721 481 466 155 150 82 43 30 0 6 0 0 spoe
22050 975 631 595 230 257 31 35 32 2 4 4 0 fpoe
22051 780 512 502 219 215 22 17 17 0 3 8 1 spoe
22052 872 588 579 188 209 58 71 46 1 4 0 2 fpoe
22053 664 446 427 193 182 22 14 9 2 2 3 0 spoe
22054 648 396 381 153 187 11 9 7 0 2 12 0 fpoe
22055 855 516 512 201 263 15 12 11 1 0 9 0 fpoe
22056 999 633 602 225 281 40 23 24 2 7 0 0 fpoe
22057 780 567 531 212 241 32 24 16 2 2 2 0 fpoe
22058 670 407 401 156 208 10 5 7 2 2 11 0 fpoe
22059 710 432 421 166 212 10 13 15 1 3 1 0 fpoe
22060 880 543 530 195 260 27 18 19 1 6 4 0 fpoe
22061 796 507 498 157 249 26 23 26 1 5 8 3 fpoe
22062 714 467 459 191 192 29 18 24 0 2 2 1 fpoe
22063 816 535 525 196 252 35 17 18 0 1 5 1 fpoe
22064 865 521 502 205 253 15 12 9 0 0 7 1 fpoe
22065 752 472 459 210 198 20 13 11 1 3 3 0 spoe
22066 710 487 480 167 228 27 22 25 1 6 1 3 fpoe
22067 836 429 414 204 175 10 9 2 0 2 11 1 spoe
22068 927 500 493 263 199 9 8 0 0 8 6 0 spoe
22069 833 491 483 222 207 10 24 7 1 2 10 0 spoe
22070 868 498 482 175 227 23 21 28 0 6 0 2 fpoe
22071 845 564 543 176 227 58 46 30 1 3 0 2 fpoe
22072 830 577 559 234 188 26 65 28 3 9 5 1 spoe
22073 682 395 391 171 189 10 5 3 1 1 11 0 fpoe
22074 696 470 457 158 193 36 40 20 0 4 6 0 fpoe
22075 467 311 305 111 130 19 24 14 1 4 2 0 fpoe
22076 764 542 533 198 212 51 32 33 1 5 1 0 fpoe
22077 704 488 473 220 196 21 19 11 0 5 1 0 spoe
22078 1072 686 674 335 227 42 34 21 3 9 3 0 spoe
22079 629 450 440 195 128 21 60 29 0 5 1 1 spoe
22080 532 399 381 153 104 50 45 24 0 4 0 1 spoe
22081 1148 789 768 297 261 51 88 58 2 6 3 2 spoe
22082 860 598 573 224 218 47 53 24 0 7 0 0 spoe
22083 703 487 466 206 139 47 53 16 0 2 1 2 spoe
22084 870 647 638 252 215 48 71 42 1 7 0 2 spoe
22085 858 481 476 195 227 15 16 15 1 2 4 1 fpoe
22086 866 516 507 235 216 16 18 12 1 8 1 0 spoe
22087 764 537 512 187 166 55 72 24 1 5 1 1 spoe
22088 804 554 546 244 200 27 41 21 2 9 2 0 spoe
22089 820 548 523 192 223 23 38 41 0 4 2 0 fpoe
22090 695 474 467 184 188 22 34 29 1 9 0 0 fpoe
22091 950 632 610 222 279 21 41 35 1 8 2 1 fpoe
22092 1048 699 662 246 290 39 54 25 1 4 1 2 fpoe
22093 1086 741 714 255 267 70 57 51 1 10 2 1 fpoe
22094 1139 818 805 350 293 47 59 47 2 5 1 1 spoe
22095 1107 657 643 227 234 50 74 47 2 7 0 2 fpoe
22096 964 638 625 256 249 38 46 26 0 7 2 1 spoe
22097 897 587 580 238 234 38 40 21 0 5 1 3 spoe
22098 1022 693 674 263 242 55 66 41 0 4 3 0 spoe
22099 918 634 609 310 200 36 33 27 0 2 0 1 spoe
22100 884 608 604 246 214 45 56 32 3 6 1 1 spoe
22101 898 586 552 207 238 41 38 23 0 4 0 1 fpoe
22102 819 508 494 177 160 43 81 28 0 4 1 0 spoe
22103 833 593 582 195 235 50 44 44 1 11 0 2 fpoe
22104 852 603 596 278 153 64 58 40 0 3 0 0 spoe
22105 555 393 381 134 120 44 53 23 0 7 0 0 spoe
22106 691 501 492 159 231 33 40 24 0 2 2 1 fpoe
22107 817 585 567 213 208 60 52 21 0 5 6 2 spoe
22108 729 545 527 195 187 52 56 31 0 6 0 0 spoe
22109 654 478 468 206 139 45 39 34 0 4 0 1 spoe
22110 961 692 667 256 266 53 46 37 0 7 1 1 fpoe
22111 871 630 614 243 229 51 45 41 0 2 3 0 spoe
22112 997 640 621 237 277 23 36 32 1 8 6 1 fpoe
22113 880 552 537 219 203 51 30 27 2 3 2 0 spoe
22114 736 481 466 159 227 27 20 28 1 3 0 1 fpoe
22115 944 591 586 228 240 44 28 39 1 4 0 2 fpoe
22116 956 715 701 266 272 44 64 46 1 7 0 1 fpoe
22117 797 595 570 212 258 53 17 23 1 4 1 1 fpoe
22118 838 587 576 180 301 23 33 32 2 3 1 1 fpoe
22119 898 617 605 230 240 61 41 23 0 7 1 2 fpoe
22120 881 600 575 209 274 32 31 26 2 1 0 0 fpoe
22121 945 633 599 242 224 57 29 40 2 4 1 0 spoe
22122 555 384 370 154 159 24 17 13 0 2 1 0 fpoe
22123 768 547 530 220 192 32 38 37 0 9 2 0 spoe
22124 806 571 549 236 203 44 35 21 0 5 4 1 spoe
22125 897 668 639 269 224 42 49 49 0 3 1 2 spoe
22126 708 536 506 221 179 37 34 26 2 3 0 4 spoe
22127 1030 781 762 290 339 54 38 35 1 4 1 0 fpoe
22128 619 442 432 137 217 24 28 22 0 0 2 2 fpoe
22129 858 619 600 240 238 51 27 36 1 4 3 0 spoe
22130 880 671 651 194 319 70 38 26 0 4 0 0 fpoe
22131 887 632 626 260 247 27 44 44 0 3 1 0 spoe
22132 640 442 433 166 177 47 25 16 0 1 1 0 fpoe
22133 540 395 378 161 150 23 22 16 0 2 2 2 spoe
22134 891 593 557 217 279 21 8 13 2 6 11 0 fpoe
22135 898 569 552 211 266 23 10 14 2 0 25 1 fpoe
22136 993 681 627 248 297 29 22 19 1 2 9 0 fpoe
22137 843 471 452 177 207 20 8 14 2 6 17 1 fpoe
22138 794 524 511 185 228 45 19 27 0 2 3 2 fpoe
22139 835 611 597 224 268 34 32 20 0 15 3 1 fpoe
22140 742 537 509 207 203 36 31 23 1 4 3 1 spoe
22141 688 374 366 135 205 6 6 9 0 1 4 0 fpoe
22142 365 253 248 106 113 9 8 2 0 5 5 0 fpoe
22143 879 534 517 224 249 20 3 9 0 5 7 0 fpoe
22144 751 480 473 173 178 38 49 31 0 2 0 2 fpoe
22145 704 509 498 180 175 62 29 49 0 1 1 1 spoe
22146 848 597 589 268 209 42 36 28 1 3 0 2 spoe
22147 1090 610 596 234 230 32 52 41 1 5 0 1 spoe
22148 765 508 495 233 146 32 45 28 2 2 7 0 spoe
22149 673 414 403 176 112 52 34 24 0 3 1 1 spoe
22150 976 641 627 192 234 27 108 51 0 11 2 2 fpoe
22151 702 492 483 167 214 13 51 28 0 4 6 0 fpoe
22152 591 381 379 148 127 16 53 27 0 4 3 1 spoe
22153 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22154 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22155 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22156 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22157 0 0 0 0 0 0 0 0 0 0 0 0 spoe
22158 0 0 0 0 0 0 0 0 0 0 0 0 spoe
23000 0 0 0 0 0 0 0 0 0 0 0 0 spoe
23001 810 481 423 153 187 29 28 21 2 3 0 0 fpoe
23002 667 398 382 153 148 37 31 5 3 3 2 0 spoe
23003 901 612 587 237 190 50 56 40 2 11 1 0 spoe
23004 632 466 459 213 162 32 29 22 1 0 0 0 spoe
23005 522 402 391 166 134 38 33 19 1 0 0 0 spoe
23006 562 382 379 167 123 36 27 17 1 6 2 0 spoe
23007 602 450 433 185 144 34 40 26 1 3 0 0 spoe
23008 560 407 403 191 130 43 18 15 2 3 1 0 spoe
23009 656 487 461 188 155 35 49 29 3 0 2 0 spoe
23010 678 516 502 212 168 43 51 24 1 3 0 0 spoe
23011 595 408 398 157 144 31 38 20 5 1 2 0 spoe
23012 745 493 473 176 147 60 46 38 0 4 2 0 spoe
23013 948 457 437 162 172 47 21 31 0 3 1 0 fpoe
23014 873 563 545 260 158 25 60 25 6 8 3 0 spoe
23015 671 439 424 159 156 41 42 23 0 3 0 0 spoe
23016 741 454 430 175 160 26 35 23 1 3 7 0 spoe
23017 722 498 471 179 161 41 51 30 2 6 1 0 spoe
23018 733 460 442 154 90 85 63 44 1 3 2 0 spoe
23019 678 457 436 168 134 42 43 46 0 3 0 0 spoe
23020 561 387 378 125 125 47 44 27 1 8 1 0 spoe
23021 479 313 299 104 94 28 35 33 0 2 3 0 spoe
23022 646 403 389 147 125 48 34 31 0 4 0 0 spoe
23023 738 461 449 180 186 24 31 17 1 4 6 0 fpoe
23024 660 423 411 141 136 52 35 37 2 8 0 0 spoe
23025 637 365 359 127 94 35 62 33 1 6 1 0 spoe
23026 793 560 554 153 123 130 52 90 2 4 0 0 spoe
23027 711 453 438 130 148 72 40 45 1 2 0 0 fpoe
23028 550 350 342 121 105 48 34 31 0 1 2 0 spoe
23029 835 588 574 200 153 72 84 57 0 6 2 0 spoe
23030 710 516 499 133 110 101 66 84 3 1 1 0 spoe
23031 647 430 423 104 112 92 51 58 1 5 0 0 fpoe
23032 605 422 408 145 117 54 41 50 0 1 0 0 spoe
23033 702 465 461 140 125 70 45 76 1 4 0 0 spoe
23034 547 398 385 134 93 66 50 41 0 1 0 0 spoe
23035 810 542 521 171 150 94 41 60 1 4 0 0 spoe
23036 568 406 398 143 133 57 32 25 1 2 5 0 spoe
23037 483 295 282 116 124 16 8 11 0 1 6 0 fpoe
23038 661 455 439 163 109 85 29 52 0 1 0 0 spoe
23039 721 494 471 177 143 69 34 42 1 3 2 0 spoe
23040 837 621 607 246 182 79 55 37 0 6 2 0 spoe
23041 751 503 495 230 156 37 35 28 0 8 1 0 spoe
23042 669 439 420 163 184 28 19 16 2 2 6 0 fpoe
23043 256 197 191 126 37 17 5 2 2 1 1 0 spoe
23044 1026 577 569 239 163 63 55 41 1 3 4 0 spoe
23045 792 518 503 198 195 29 52 22 2 0 5 0 spoe
23046 885 571 558 255 192 46 29 25 1 1 9 0 spoe
23047 752 497 493 167 199 44 34 31 7 5 6 0 fpoe
23048 490 299 289 95 132 30 16 7 1 2 6 0 fpoe
23049 492 308 301 120 143 15 7 7 0 2 7 0 fpoe
23050 832 596 553 316 162 24 23 21 0 4 3 0 spoe
23051 1038 787 778 350 215 82 79 41 3 7 1 0 spoe
23052 972 617 599 245 222 38 51 35 0 6 2 0 spoe
23053 504 351 326 146 153 6 6 6 1 2 6 0 fpoe
23054 732 468 449 192 158 31 33 23 2 1 9 0 spoe
23055 776 414 398 151 135 55 23 29 1 4 0 0 spoe
23056 749 539 517 233 201 29 19 21 2 6 6 0 spoe
23057 367 254 252 78 112 34 10 15 0 1 2 0 fpoe
23058 1077 693 665 279 240 40 51 41 2 10 2 0 spoe
23059 679 460 438 192 170 35 19 17 1 4 0 0 spoe
23060 740 542 496 189 228 33 23 16 2 4 1 0 fpoe
23061 777 577 549 209 178 81 45 28 1 6 1 0 spoe
23062 788 572 532 206 211 29 36 32 6 7 5 0 fpoe
23063 792 468 452 147 194 47 25 29 1 6 3 0 fpoe
23064 814 533 515 169 234 45 26 39 1 1 0 0 fpoe
23065 799 555 543 170 226 52 39 45 0 5 6 0 fpoe
23066 801 531 514 185 228 29 27 35 1 6 3 0 fpoe
23067 756 558 535 269 179 26 27 27 2 3 2 0 spoe
23068 694 460 445 166 157 49 47 25 0 1 0 0 spoe
23069 487 334 329 126 146 18 17 14 0 4 4 0 fpoe
23070 840 544 529 186 233 38 33 32 1 5 1 0 fpoe
23071 694 444 434 193 164 23 23 27 2 2 0 0 spoe
23072 942 642 613 234 205 60 65 38 1 6 4 0 spoe
23073 543 377 369 153 171 10 12 12 1 1 9 0 fpoe
23074 538 306 306 136 133 11 15 2 0 2 7 0 spoe
23075 500 304 290 118 130 15 4 8 1 5 9 0 fpoe
23076 713 469 438 155 115 62 56 38 4 7 1 0 spoe
23077 688 478 466 167 98 72 60 54 0 12 3 0 spoe
23078 661 426 421 168 160 35 26 30 1 1 0 0 spoe
23079 711 524 516 174 134 67 64 72 0 5 0 0 spoe
23080 614 390 369 120 180 29 18 12 1 0 9 0 fpoe
23081 969 697 665 271 238 47 69 34 1 4 1 0 spoe
23082 690 442 433 166 190 29 32 11 0 3 2 0 fpoe
23083 717 435 417 204 172 12 7 12 0 3 7 0 spoe
23084 766 440 427 200 167 6 16 10 1 4 23 0 spoe
23085 715 490 464 199 201 22 22 15 0 1 4 0 fpoe
23086 559 404 398 169 186 16 7 9 1 5 5 0 fpoe
23087 570 371 365 155 132 23 28 20 1 4 2 0 spoe
23088 422 269 255 88 121 17 12 13 1 2 1 0 fpoe
23089 722 480 454 179 224 13 13 13 2 3 7 0 fpoe
23090 595 382 370 167 168 16 8 7 0 1 3 0 fpoe
23091 604 410 394 152 139 27 42 28 0 2 4 0 spoe
23092 801 545 522 228 190 28 45 26 0 5 0 0 spoe
23093 599 412 406 146 153 24 35 42 0 2 4 0 fpoe
23094 799 499 486 156 237 20 18 18 4 10 23 0 fpoe
23095 614 377 365 126 149 16 43 18 3 4 6 0 fpoe
23096 904 606 593 266 214 39 34 27 3 4 6 0 spoe
23097 790 512 495 189 166 46 51 31 0 5 7 0 spoe
23098 353 251 245 75 110 13 20 23 0 2 2 0 fpoe
23099 622 406 400 139 113 27 72 45 1 1 2 0 spoe
23100 496 315 305 105 124 29 24 17 4 1 1 0 fpoe
23101 750 498 495 191 131 47 61 50 1 11 3 0 spoe
23102 0 0 0 0 0 0 0 0 0 0 0 0 spoe
23103 0 0 0 0 0 0 0 0 0 0 0 0 spoe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment