Skip to content

Instantly share code, notes, and snippets.

@timelyportfolio
Forked from mbostock/.block
Last active December 30, 2015 04:19
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 timelyportfolio/7774986 to your computer and use it in GitHub Desktop.
Save timelyportfolio/7774986 to your computer and use it in GitHub Desktop.

Quick fork of https://gist.github.com/mbostock/5925375 to see if OriDomi plays nicely with d3.js. Please note the original source from Mike Bostock for any praise or admiration. All errors and mistakes please attribute to me.

original Readme.md

This variation of the unemployment choropleth uses TopoJSON 1.2’s new --projection argument to created projected TopoJSON. This example also uses the -e argument to join the county geometries with a TSV file of unemployment rates, simplifying the implementation and eliminating the need to load multiple data files.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.counties {
fill: none;
}
.states {
fill: none;
stroke: #fff;
stroke-linejoin: round;
}
.q0-9 { fill:rgb(247,251,255); }
.q1-9 { fill:rgb(222,235,247); }
.q2-9 { fill:rgb(198,219,239); }
.q3-9 { fill:rgb(158,202,225); }
.q4-9 { fill:rgb(107,174,214); }
.q5-9 { fill:rgb(66,146,198); }
.q6-9 { fill:rgb(33,113,181); }
.q7-9 { fill:rgb(8,81,156); }
.q8-9 { fill:rgb(8,48,107); }
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="./oridomi.js"></script>
<div id="container" style="width:960px">
<div id="testtext" style="position: absolute;top: 0px;left: 0px;pointer-events: none;font-size: 100px;">
<p>OriDomi + d3</p>
</div>
</div>
<script>
var width = 960,
height = 500;
var quantize = d3.scale.quantize()
.domain([0, .15])
.range(d3.range(9).map(function (i) { return "q" + i + "-9"; }));
var path = d3.geo.path()
.projection(null);
d3.select("#container").insert("div","#testtext")
.attr("class", "d3oridomi");
var svg = d3.select(".d3oridomi").append("svg")
.attr("width", width)
.attr("height", height);
var folded;
d3.json("us.json", function (error, us) {
svg.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.enter().append("path")
.attr("class", function (d) { return quantize(d.properties.rate); })
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(us, us.objects.states, function (a, b) { return a !== b; }))
.attr("class", "states")
.attr("d", path);
folded = makeOriDomi();
folded.accordion(75).reset().twist(30).reset().fracture(50).reset().accordion(75);
});
function makeOriDomi() {
var createdOriDomi = new OriDomi(".d3oridomi", { vPanels: 10, shading: 'hard' })
return createdOriDomi;
};
</script>
</body>
// Generated by CoffeeScript 1.6.3
(function() {
'use strict';
var $, OriDomi, addStyle, anchorList, anchorListH, anchorListV, baseName, capitalize, cloneEl, createEl, css, defaults, defer, elClasses, getGradient, hideEl, isSupported, k, noOp, prefixList, prep, showEl, styleBuffer, supportWarning, testEl, testProp, v, _ref,
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; },
__slice = [].slice;
isSupported = true;
supportWarning = function(prop) {
if (typeof console !== "undefined" && console !== null) {
console.warn("OriDomi: Missing support for `" + prop + "`.");
}
return isSupported = false;
};
testProp = function(prop) {
var full, prefix, _i, _len;
for (_i = 0, _len = prefixList.length; _i < _len; _i++) {
prefix = prefixList[_i];
if (testEl.style[(full = prefix + capitalize(prop))] != null) {
return full;
}
}
if (testEl.style[prop] != null) {
return prop;
}
return false;
};
addStyle = function(selector, rules) {
var prop, style, val;
style = "." + selector + "{";
for (prop in rules) {
val = rules[prop];
if (prop in css) {
prop = css[prop];
if (prop.match(/^(webkit|moz|ms)/i)) {
prop = '-' + prop;
}
}
style += "" + (prop.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase()) + ":" + val + ";";
}
return styleBuffer += style + '}';
};
getGradient = function(anchor) {
return "" + css.gradientProp + "(" + anchor + ", rgba(0, 0, 0, .5) 0%, rgba(255, 255, 255, .35) 100%)";
};
capitalize = function(s) {
return s[0].toUpperCase() + s.slice(1);
};
createEl = function(className) {
var el;
el = document.createElement('div');
el.className = elClasses[className];
return el;
};
cloneEl = function(parent, deep, className) {
var el;
el = parent.cloneNode(deep);
el.classList.add(elClasses[className]);
return el;
};
hideEl = function(el) {
return el.style[css.transform] = 'translate3d(-99999px, 0, 0)';
};
showEl = function(el) {
return el.style[css.transform] = 'translate3d(0, 0, 0)';
};
prep = function(fn) {
return function() {
var a0, a1, a2, anchor, angle, opt;
if (this._touchStarted) {
return fn.apply(this, arguments);
} else {
a0 = arguments[0], a1 = arguments[1], a2 = arguments[2];
opt = {};
angle = anchor = null;
switch (fn.length) {
case 1:
opt.callback = a0;
if (!this.isFoldedUp) {
return typeof opt.callback === "function" ? opt.callback() : void 0;
}
break;
case 2:
if (typeof a0 === 'function') {
opt.callback = a0;
} else {
anchor = a0;
opt.callback = a1;
}
break;
case 3:
angle = a0;
if (arguments.length === 2) {
if (typeof a1 === 'object') {
opt = a1;
} else if (typeof a1 === 'function') {
opt.callback = a1;
} else {
anchor = a1;
}
} else if (arguments.length === 3) {
anchor = a1;
if (typeof a2 === 'object') {
opt = a2;
} else if (typeof a2 === 'function') {
opt.callback = a2;
}
}
}
if (angle == null) {
angle = this._lastOp.angle || 0;
}
anchor || (anchor = this._lastOp.anchor);
this._queue.push([fn, this._normalizeAngle(angle), this._getLonghandAnchor(anchor), opt]);
this._step();
return this;
}
};
};
defer = function(fn) {
return setTimeout(fn, 0);
};
noOp = function() {};
$ = ((_ref = window.jQuery || window.$) != null ? _ref.data : void 0) ? window.$ : null;
anchorList = ['left', 'right', 'top', 'bottom'];
anchorListV = anchorList.slice(0, 2);
anchorListH = anchorList.slice(2);
testEl = document.createElement('div');
styleBuffer = '';
prefixList = ['Webkit', 'Moz', 'ms'];
baseName = 'oridomi';
elClasses = {
active: 'active',
clone: 'clone',
holder: 'holder',
stage: 'stage',
stageLeft: 'stage-left',
stageRight: 'stage-right',
stageTop: 'stage-top',
stageBottom: 'stage-bottom',
content: 'content',
mask: 'mask',
maskH: 'mask-h',
maskV: 'mask-v',
panel: 'panel',
panelH: 'panel-h',
panelV: 'panel-v',
shader: 'shader',
shaderLeft: 'shader-left',
shaderRight: 'shader-right',
shaderTop: 'shader-top',
shaderBottom: 'shader-bottom'
};
for (k in elClasses) {
v = elClasses[k];
elClasses[k] = "" + baseName + "-" + v;
}
css = new function() {
var key, _i, _len, _ref1;
_ref1 = ['transform', 'transformOrigin', 'transformStyle', 'transitionProperty', 'transitionDuration', 'transitionDelay', 'transitionTimingFunction', 'perspective', 'perspectiveOrigin', 'backfaceVisibility', 'boxSizing', 'mask'];
for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
key = _ref1[_i];
this[key] = key;
}
return this;
};
(function() {
var anchor, key, p3d, styleEl, value, _i, _len, _ref1, _ref2;
for (key in css) {
value = css[key];
css[key] = testProp(value);
if (!css[key]) {
return supportWarning(value);
}
}
p3d = 'preserve-3d';
testEl.style[css.transformStyle] = p3d;
if (testEl.style[css.transformStyle] !== p3d) {
return supportWarning(p3d);
}
css.gradientProp = (function() {
var hyphenated, prefix, _i, _len;
for (_i = 0, _len = prefixList.length; _i < _len; _i++) {
prefix = prefixList[_i];
hyphenated = "-" + (prefix.toLowerCase()) + "-linear-gradient";
testEl.style.backgroundImage = "" + hyphenated + "(left, #000, #fff)";
if (testEl.style.backgroundImage.indexOf('gradient') !== -1) {
return hyphenated;
}
}
return 'linear-gradient';
})();
_ref1 = (function() {
var grabValue, plainGrab, prefix, _i, _len;
for (_i = 0, _len = prefixList.length; _i < _len; _i++) {
prefix = prefixList[_i];
plainGrab = 'grab';
testEl.style.cursor = (grabValue = "-" + (prefix.toLowerCase()) + "-" + plainGrab);
if (testEl.style.cursor === grabValue) {
return [grabValue, "-" + (prefix.toLowerCase()) + "-grabbing"];
}
}
testEl.style.cursor = plainGrab;
if (testEl.style.cursor === plainGrab) {
return [plainGrab, 'grabbing'];
} else {
return ['move', 'move'];
}
})(), css.grab = _ref1[0], css.grabbing = _ref1[1];
css.transformProp = (function() {
var prefix;
if (prefix = css.transform.match(/(\w+)Transform/i)) {
return "-" + (prefix[1].toLowerCase()) + "-transform";
} else {
return 'transform';
}
})();
css.transitionEnd = (function() {
switch (css.transitionProperty.toLowerCase()) {
case 'transitionproperty':
return 'transitionEnd';
case 'webkittransitionproperty':
return 'webkitTransitionEnd';
case 'moztransitionproperty':
return 'transitionend';
case 'mstransitionproperty':
return 'msTransitionEnd';
}
})();
addStyle(elClasses.active, {
backgroundColor: 'transparent !important',
backgroundImage: 'none !important',
boxSizing: 'border-box !important',
border: 'none !important',
outline: 'none !important',
padding: '0 !important',
position: 'relative',
transformStyle: p3d + ' !important',
mask: 'none !important'
});
addStyle(elClasses.clone, {
margin: '0 !important',
boxSizing: 'border-box !important',
overflow: 'hidden !important',
display: 'block !important'
});
addStyle(elClasses.holder, {
width: '100%',
position: 'absolute',
top: '0',
bottom: '0',
transformStyle: p3d
});
addStyle(elClasses.stage, {
width: '100%',
height: '100%',
position: 'absolute',
transform: 'translate3d(-9999px, 0, 0)',
margin: '0',
padding: '0',
transformStyle: p3d
});
_ref2 = {
Left: '0% 50%',
Right: '100% 50%',
Top: '50% 0%',
Bottom: '50% 100%'
};
for (k in _ref2) {
v = _ref2[k];
addStyle(elClasses['stage' + k], {
perspectiveOrigin: v
});
}
addStyle(elClasses.shader, {
width: '100%',
height: '100%',
position: 'absolute',
opacity: '0',
top: '0',
left: '0',
pointerEvents: 'none',
transitionProperty: 'opacity'
});
for (_i = 0, _len = anchorList.length; _i < _len; _i++) {
anchor = anchorList[_i];
addStyle(elClasses['shader' + capitalize(anchor)], {
background: getGradient(anchor)
});
}
addStyle(elClasses.content, {
margin: '0 !important',
position: 'relative !important',
float: 'none !important',
boxSizing: 'border-box !important',
overflow: 'hidden !important'
});
addStyle(elClasses.mask, {
width: '100%',
height: '100%',
position: 'absolute',
overflow: 'hidden',
transform: 'translate3d(0, 0, 0)'
});
addStyle(elClasses.panel, {
width: '100%',
height: '100%',
padding: '0',
position: 'relative',
transitionProperty: css.transformProp,
transformOrigin: 'left',
transformStyle: p3d
});
addStyle(elClasses.panelH, {
transformOrigin: 'top'
});
addStyle("" + elClasses.stageRight + " ." + elClasses.panel, {
transformOrigin: 'right'
});
addStyle("" + elClasses.stageBottom + " ." + elClasses.panel, {
transformOrigin: 'bottom'
});
styleEl = document.createElement('style');
styleEl.type = 'text/css';
if (styleEl.styleSheet) {
styleEl.styleSheet.cssText = styleBuffer;
} else {
styleEl.appendChild(document.createTextNode(styleBuffer));
}
return document.head.appendChild(styleEl);
})();
defaults = {
vPanels: 3,
hPanels: 3,
perspective: 1000,
shading: 'hard',
speed: 700,
maxAngle: 90,
ripple: 0,
oriDomiClass: 'oridomi',
shadingIntensity: 1,
easingMethod: '',
touchEnabled: true,
touchSensitivity: .25,
touchStartCallback: noOp,
touchMoveCallback: noOp,
touchEndCallback: noOp
};
OriDomi = (function() {
function OriDomi(el, options) {
var a, anchor, anchorSet, axis, classSuffix, content, contentHolder, count, i, mask, maskProto, metric, n, panel, panelN, panelProto, percent, proto, shaderProto, shaderProtos, side, stageProto, _i, _j, _k, _l, _len, _len1, _len2, _len3, _len4, _len5, _len6, _len7, _m, _n, _o, _p, _q, _ref1;
this.el = el;
if (options == null) {
options = {};
}
this._onMouseOut = __bind(this._onMouseOut, this);
this._onTouchLeave = __bind(this._onTouchLeave, this);
this._onTouchEnd = __bind(this._onTouchEnd, this);
this._onTouchMove = __bind(this._onTouchMove, this);
this._onTouchStart = __bind(this._onTouchStart, this);
this._stageReset = __bind(this._stageReset, this);
this._conclude = __bind(this._conclude, this);
this._onTransitionEnd = __bind(this._onTransitionEnd, this);
this._step = __bind(this._step, this);
if (!isSupported) {
return;
}
if (!(this instanceof OriDomi)) {
return (function(func, args, ctor) {
ctor.prototype = func.prototype;
var child = new ctor, result = func.apply(child, args);
return Object(result) === result ? result : child;
})(OriDomi, arguments, function(){});
}
if (typeof this.el === 'string') {
this.el = document.querySelector(this.el);
}
if (!(this.el && this.el.nodeType === 1)) {
if (typeof console !== "undefined" && console !== null) {
console.warn('OriDomi: First argument must be a DOM element');
}
return;
}
this._config = new function() {
for (k in defaults) {
v = defaults[k];
if (options[k] != null) {
this[k] = options[k];
} else {
this[k] = v;
}
}
return this;
};
this._config.ripple = Number(this._config.ripple);
this._queue = [];
this._panels = {};
this._stages = {};
this._lastOp = {
anchor: anchorList[0]
};
this._shading = this._config.shading;
if (this._shading === true) {
this._shading = 'hard';
}
if (this._shading) {
this._shaders = {};
shaderProtos = {};
shaderProto = createEl('shader');
shaderProto.style[css.transitionDuration] = this._config.speed + 'ms';
shaderProto.style[css.transitionTimingFunction] = this._config.easingMethod;
}
stageProto = createEl('stage');
stageProto.style[css.perspective] = this._config.perspective + 'px';
for (_i = 0, _len = anchorList.length; _i < _len; _i++) {
anchor = anchorList[_i];
this._panels[anchor] = [];
this._stages[anchor] = cloneEl(stageProto, false, 'stage' + capitalize(anchor));
if (this._shading) {
this._shaders[anchor] = {};
if (__indexOf.call(anchorListV, anchor) >= 0) {
for (_j = 0, _len1 = anchorListV.length; _j < _len1; _j++) {
side = anchorListV[_j];
this._shaders[anchor][side] = [];
}
} else {
for (_k = 0, _len2 = anchorListH.length; _k < _len2; _k++) {
side = anchorListH[_k];
this._shaders[anchor][side] = [];
}
}
shaderProtos[anchor] = cloneEl(shaderProto, false, 'shader' + capitalize(anchor));
}
}
contentHolder = cloneEl(this.el, true, 'content');
maskProto = createEl('mask');
maskProto.appendChild(contentHolder);
panelProto = createEl('panel');
panelProto.style[css.transitionDuration] = this._config.speed + 'ms';
panelProto.style[css.transitionTimingFunction] = this._config.easingMethod;
_ref1 = ['x', 'y'];
for (_l = 0, _len3 = _ref1.length; _l < _len3; _l++) {
axis = _ref1[_l];
if (axis === 'x') {
anchorSet = anchorListV;
count = this._config.vPanels;
metric = 'width';
classSuffix = 'V';
} else {
anchorSet = anchorListH;
count = this._config.hPanels;
metric = 'height';
classSuffix = 'H';
}
percent = 100 / count;
mask = cloneEl(maskProto, true, 'mask' + classSuffix);
content = mask.children[0];
content.style.width = content.style.height = '100%';
content.style[metric] = content.style['max' + capitalize(metric)] = count * 100 + '%';
if (this._shading) {
for (_m = 0, _len4 = anchorSet.length; _m < _len4; _m++) {
anchor = anchorSet[_m];
mask.appendChild(shaderProtos[anchor]);
}
}
proto = cloneEl(panelProto, false, 'panel' + classSuffix);
proto.appendChild(mask);
for (n = _n = 0, _len5 = anchorSet.length; _n < _len5; n = ++_n) {
anchor = anchorSet[n];
for (panelN = _o = 0; 0 <= count ? _o < count : _o > count; panelN = 0 <= count ? ++_o : --_o) {
panel = proto.cloneNode(true);
if (panelN === 0) {
panel.style[metric] = percent + '%';
}
content = panel.children[0].children[0];
if (n === 0) {
content.style[anchor] = -panelN * 100 + '%';
if (panelN === 0) {
panel.style[anchor] = '0';
} else {
panel.style[anchor] = '100%';
}
} else {
content.style[anchorSet[0]] = (count - panelN - 1) * -100 + '%';
panel.style[css.origin] = anchor;
if (panelN === 0) {
panel.style[anchorSet[0]] = 100 - percent + '%';
} else {
panel.style[anchorSet[0]] = '-100%';
}
}
if (this._shading) {
for (i = _p = 0, _len6 = anchorSet.length; _p < _len6; i = ++_p) {
a = anchorSet[i];
this._shaders[anchor][a][panelN] = panel.children[0].children[i + 1];
}
}
this._panels[anchor][panelN] = panel;
if (panelN !== 0) {
this._panels[anchor][panelN - 1].appendChild(panel);
}
}
this._stages[anchor].appendChild(this._panels[anchor][0]);
}
}
this._stageHolder = createEl('holder');
for (_q = 0, _len7 = anchorList.length; _q < _len7; _q++) {
anchor = anchorList[_q];
this._stageHolder.appendChild(this._stages[anchor]);
}
if (window.getComputedStyle(this.el).position === 'absolute') {
this.el.style.position = 'absolute';
}
this.el.classList.add(elClasses.active);
showEl(this._stages.left);
this._cloneEl = cloneEl(this.el, true, 'clone');
this._cloneEl.classList.remove(elClasses.active);
hideEl(this._cloneEl);
this.el.innerHTML = '';
this.el.appendChild(this._cloneEl);
this.el.appendChild(this._stageHolder);
this.el.parentNode.style[css.transformStyle] = 'preserve-3d';
this.accordion(0);
if (this._config.ripple) {
this.setRipple(this._config.ripple);
}
if (this._config.touchEnabled) {
this.enableTouch();
}
}
OriDomi.prototype._step = function() {
var anchor, angle, fn, next, options, _ref1,
_this = this;
if (this._inTrans || !this._queue.length) {
return;
}
this._inTrans = true;
_ref1 = this._queue.shift(), fn = _ref1[0], angle = _ref1[1], anchor = _ref1[2], options = _ref1[3];
if (this.isFrozen) {
this.unfreeze();
}
next = function() {
var args;
_this._setCallback({
angle: angle,
anchor: anchor,
options: options,
fn: fn
});
args = [angle, anchor, options];
if (fn.length < 3) {
args.shift();
}
return fn.apply(_this, args);
};
if (this.isFoldedUp) {
if (fn.length === 2) {
return next();
} else {
return this._unfold(next);
}
} else if (anchor !== this._lastOp.anchor) {
return this._stageReset(anchor, next);
} else {
return next();
}
};
OriDomi.prototype._isIdenticalOperation = function(op) {
var key, _i, _len, _ref1, _ref2;
if (!this._lastOp.fn) {
return true;
}
if (this._lastOp.reset) {
return false;
}
_ref1 = ['angle', 'anchor', 'fn'];
for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
key = _ref1[_i];
if (this._lastOp[key] !== op[key]) {
return false;
}
}
_ref2 = op.options;
for (k in _ref2) {
v = _ref2[k];
if (v !== this._lastOp.options[k] && k !== 'callback') {
return false;
}
}
return true;
};
OriDomi.prototype._setCallback = function(operation) {
if (this._isIdenticalOperation(operation)) {
this._conclude(operation.options.callback);
} else {
this._panels[this._lastOp.anchor][0].addEventListener(css.transitionEnd, this._onTransitionEnd, false);
}
return (this._lastOp = operation).reset = false;
};
OriDomi.prototype._onTransitionEnd = function(e) {
e.currentTarget.removeEventListener(css.transitionEnd, this._onTransitionEnd, false);
return this._conclude(this._lastOp.options.callback, e);
};
OriDomi.prototype._conclude = function(cb, event) {
var _this = this;
return defer(function() {
_this._inTrans = false;
_this._step();
return typeof cb === "function" ? cb(event, _this) : void 0;
});
};
OriDomi.prototype._transformPanel = function(el, angle, anchor, fracture) {
var translate, x, y, z;
x = y = z = 0;
switch (anchor) {
case 'left':
y = angle;
translate = 'X(-1';
break;
case 'right':
y = -angle;
translate = 'X(1';
break;
case 'top':
x = -angle;
translate = 'Y(-1';
break;
case 'bottom':
x = angle;
translate = 'Y(1';
}
if (fracture) {
x = y = z = angle;
}
return el.style[css.transform] = "rotateX(" + x + "deg)\nrotateY(" + y + "deg)\nrotateZ(" + z + "deg)\ntranslate" + translate + "px)";
};
OriDomi.prototype._normalizeAngle = function(angle) {
var max;
angle = parseFloat(angle, 10);
max = this._config.maxAngle;
if (isNaN(angle)) {
return 0;
} else if (angle > max) {
return max;
} else if (angle < -max) {
return -max;
} else {
return angle;
}
};
OriDomi.prototype._setTrans = function(duration, delay, anchor) {
var _this = this;
if (anchor == null) {
anchor = this._lastOp.anchor;
}
return this._iterate(anchor, function(panel, i, len) {
return _this._setPanelTrans.apply(_this, [anchor].concat(__slice.call(arguments), [duration], [delay]));
});
};
OriDomi.prototype._setPanelTrans = function(anchor, panel, i, len, duration, delay) {
var delayMs, shader, side, _i, _len, _ref1,
_this = this;
delayMs = (function() {
switch (delay) {
case 0:
return 0;
case 1:
return _this._config.speed / len * i;
case 2:
return _this._config.speed / len * (len - i - 1);
}
})();
panel.style[css.transitionDuration] = duration + 'ms';
panel.style[css.transitionDelay] = delayMs + 'ms';
if (this._shading) {
_ref1 = (__indexOf.call(anchorListV, anchor) >= 0 ? anchorListV : anchorListH);
for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
side = _ref1[_i];
shader = this._shaders[anchor][side][i];
shader.style[css.transitionDuration] = duration + 'ms';
shader.style[css.transitionDelay] = delayMs + 'ms';
}
}
return delayMs;
};
OriDomi.prototype._setShader = function(n, anchor, angle) {
var a, abs, b, opacity;
abs = Math.abs(angle);
opacity = abs / 90 * this._config.shadingIntensity;
if (this._shading === 'hard') {
opacity *= .15;
if (this._lastOp.angle < 0) {
angle = abs;
} else {
angle = -abs;
}
} else {
opacity *= .4;
}
if (__indexOf.call(anchorListV, anchor) >= 0) {
if (angle < 0) {
a = opacity;
b = 0;
} else {
a = 0;
b = opacity;
}
this._shaders[anchor].left[n].style.opacity = a;
return this._shaders[anchor].right[n].style.opacity = b;
} else {
if (angle < 0) {
a = 0;
b = opacity;
} else {
a = opacity;
b = 0;
}
this._shaders[anchor].top[n].style.opacity = a;
return this._shaders[anchor].bottom[n].style.opacity = b;
}
};
OriDomi.prototype._showStage = function(anchor) {
var _this = this;
if (anchor !== this._lastOp.anchor) {
hideEl(this._stages[this._lastOp.anchor]);
this._lastOp.anchor = anchor;
this._lastOp.reset = true;
return this._stages[anchor].style[css.transform] = 'translate3d(' + (function() {
switch (anchor) {
case 'left':
return '0, 0, 0)';
case 'right':
return "-" + (_this._config.vPanels * 1) + "px, 0, 0)";
case 'top':
return '0, 0, 0)';
case 'bottom':
return "0, -" + ((_this._config.hPanels + 2) * 1) + "px, 0)";
}
})();
}
};
OriDomi.prototype._stageReset = function(anchor, cb) {
var fn,
_this = this;
fn = function(e) {
if (e) {
e.currentTarget.removeEventListener(css.transitionEnd, fn, false);
}
_this._showStage(anchor);
return defer(cb);
};
if (this._lastOp.angle === 0) {
return fn();
}
this._panels[this._lastOp.anchor][0].addEventListener(css.transitionEnd, fn, false);
return this._iterate(this._lastOp.anchor, function(panel, i) {
_this._transformPanel(panel, 0, _this._lastOp.anchor);
if (_this._shading) {
return _this._setShader(i, _this._lastOp.anchor, 0);
}
});
};
OriDomi.prototype._getLonghandAnchor = function(shorthand) {
switch (shorthand.toString()) {
case 'left':
case 'l':
case '4':
return 'left';
case 'right':
case 'r':
case '2':
return 'right';
case 'top':
case 't':
case '1':
return 'top';
case 'bottom':
case 'b':
case '3':
return 'bottom';
default:
return 'left';
}
};
OriDomi.prototype._setCursor = function(bool) {
if (bool == null) {
bool = this._touchEnabled;
}
if (bool) {
return this.el.style.cursor = css.grab;
} else {
return this.el.style.cursor = 'default';
}
};
OriDomi.prototype._setTouch = function(toggle) {
var eString, eventPair, eventPairs, listenFn, mouseLeaveSupport, _i, _j, _len, _len1;
if (toggle) {
if (this._touchEnabled) {
return this;
}
listenFn = 'addEventListener';
} else {
if (!this._touchEnabled) {
return this;
}
listenFn = 'removeEventListener';
}
this._touchEnabled = toggle;
this._setCursor();
eventPairs = [['TouchStart', 'MouseDown'], ['TouchEnd', 'MouseUp'], ['TouchMove', 'MouseMove'], ['TouchLeave', 'MouseLeave']];
mouseLeaveSupport = 'onmouseleave' in window;
for (_i = 0, _len = eventPairs.length; _i < _len; _i++) {
eventPair = eventPairs[_i];
for (_j = 0, _len1 = eventPair.length; _j < _len1; _j++) {
eString = eventPair[_j];
if (!(eString === 'TouchLeave' && !mouseLeaveSupport)) {
this.el[listenFn](eString.toLowerCase(), this['_on' + eventPair[0]], false);
} else {
this.el[listenFn]('mouseout', this._onMouseOut, false);
break;
}
}
}
return this;
};
OriDomi.prototype._onTouchStart = function(e) {
var axis1, _ref1;
if (!this._touchEnabled || this.isFoldedUp) {
return;
}
e.preventDefault();
this.emptyQueue();
this._touchStarted = true;
this.el.style.cursor = css.grabbing;
this._setTrans(0, 0);
this._touchAxis = (_ref1 = this._lastOp.anchor, __indexOf.call(anchorListV, _ref1) >= 0) ? 'x' : 'y';
this["_" + this._touchAxis + "Last"] = this._lastOp.angle;
axis1 = "_" + this._touchAxis + "1";
if (e.type === 'mousedown') {
this[axis1] = e["page" + (this._touchAxis.toUpperCase())];
} else {
this[axis1] = e.targetTouches[0]["page" + (this._touchAxis.toUpperCase())];
}
return this._config.touchStartCallback(this[axis1], e);
};
OriDomi.prototype._onTouchMove = function(e) {
var current, delta, distance;
if (!(this._touchEnabled && this._touchStarted)) {
return;
}
e.preventDefault();
if (e.type === 'mousemove') {
current = e["page" + (this._touchAxis.toUpperCase())];
} else {
current = e.targetTouches[0]["page" + (this._touchAxis.toUpperCase())];
}
distance = (current - this["_" + this._touchAxis + "1"]) * this._config.touchSensitivity;
if (this._lastOp.angle < 0) {
if (this._lastOp.anchor === 'right' || this._lastOp.anchor === 'bottom') {
delta = this["_" + this._touchAxis + "Last"] - distance;
} else {
delta = this["_" + this._touchAxis + "Last"] + distance;
}
if (delta > 0) {
delta = 0;
}
} else {
if (this._lastOp.anchor === 'right' || this._lastOp.anchor === 'bottom') {
delta = this["_" + this._touchAxis + "Last"] + distance;
} else {
delta = this["_" + this._touchAxis + "Last"] - distance;
}
if (delta < 0) {
delta = 0;
}
}
this._lastOp.angle = delta = this._normalizeAngle(delta);
this._lastOp.fn.call(this, delta, this._lastOp.anchor, this._lastOp.options);
return this._config.touchMoveCallback(delta, e);
};
OriDomi.prototype._onTouchEnd = function(e) {
if (!this._touchEnabled) {
return;
}
this._touchStarted = this._inTrans = false;
this.el.style.cursor = css.grab;
this._setTrans(this._config.speed, this._config.ripple);
return this._config.touchEndCallback(this["_" + this._touchAxis + "Last"], e);
};
OriDomi.prototype._onTouchLeave = function(e) {
if (!(this._touchEnabled && this._touchStarted)) {
return;
}
return this._onTouchEnd(e);
};
OriDomi.prototype._onMouseOut = function(e) {
if (!(this._touchEnabled && this._touchStarted)) {
return;
}
if (e.toElement && !this.el.contains(e.toElement)) {
return this._onTouchEnd(e);
}
};
OriDomi.prototype._unfold = function(callback) {
var anchor,
_this = this;
this._inTrans = true;
anchor = this._lastOp.anchor;
return this._iterate(anchor, function(panel, i, len) {
var delay;
delay = _this._setPanelTrans.apply(_this, [anchor].concat(__slice.call(arguments), [_this._config.speed], [1]));
return (function(panel, i, delay) {
return defer(function() {
_this._transformPanel(panel, 0, _this._lastOp.anchor);
return setTimeout(function() {
showEl(panel.children[0]);
if (i === len - 1) {
_this._inTrans = _this.isFoldedUp = false;
if (typeof callback === "function") {
callback();
}
_this._lastOp.fn = _this.accordion;
_this._lastOp.angle = 0;
}
return defer(function() {
return panel.style[css.transitionDuration] = _this._config.speed;
});
}, delay + _this._config.speed * .25);
});
})(panel, i, delay);
});
};
OriDomi.prototype._iterate = function(anchor, fn) {
var i, panel, panels, _i, _len, _ref1, _results;
_ref1 = panels = this._panels[anchor];
_results = [];
for (i = _i = 0, _len = _ref1.length; _i < _len; i = ++_i) {
panel = _ref1[i];
_results.push(fn.call(this, panel, i, panels.length));
}
return _results;
};
OriDomi.prototype.enableTouch = function() {
return this._setTouch(true);
};
OriDomi.prototype.disableTouch = function() {
return this._setTouch(false);
};
OriDomi.prototype.setSpeed = function(speed) {
var anchor, _i, _len;
for (_i = 0, _len = anchorList.length; _i < _len; _i++) {
anchor = anchorList[_i];
this._setTrans((this._config.speed = speed), this._config.ripple, anchor);
}
return this;
};
OriDomi.prototype.freeze = function(callback) {
var _this = this;
if (this.isFrozen) {
if (typeof callback === "function") {
callback();
}
} else {
this._stageReset(this._lastOp.anchor, function() {
_this.isFrozen = true;
hideEl(_this._stageHolder);
showEl(_this._cloneEl);
_this._setCursor(false);
return typeof callback === "function" ? callback() : void 0;
});
}
return this;
};
OriDomi.prototype.unfreeze = function() {
if (this.isFrozen) {
this.isFrozen = false;
hideEl(this._cloneEl);
showEl(this._stageHolder);
this._setCursor();
this._lastOp.angle = 0;
}
return this;
};
OriDomi.prototype.destroy = function(callback) {
var _this = this;
this.freeze(function() {
_this._setTouch(false);
if ($) {
$.data(_this.el, baseName, null);
}
_this.el.innerHTML = _this._cloneEl.innerHTML;
_this.el.classList.remove(elClasses.active);
return typeof callback === "function" ? callback() : void 0;
});
return null;
};
OriDomi.prototype.emptyQueue = function() {
var _this = this;
this._queue = [];
defer(function() {
return _this._inTrans = false;
});
return this;
};
OriDomi.prototype.setRipple = function(dir) {
if (dir == null) {
dir = 1;
}
this._config.ripple = Number(dir);
this.setSpeed(this._config.speed);
return this;
};
OriDomi.prototype.constrainAngle = function(angle) {
this._config.maxAngle = parseFloat(angle, 10) || defaults.maxAngle;
return this;
};
OriDomi.prototype.wait = function(ms) {
var fn,
_this = this;
fn = function() {
return setTimeout(_this._conclude, ms);
};
if (this._inTrans) {
this._queue.push([fn, this._lastOp.angle, this._lastOp.anchor, this._lastOp.options]);
} else {
fn();
}
return this;
};
OriDomi.prototype.modifyContent = function(fn) {
var anchor, i, panel, selectors, set, _i, _j, _len, _len1, _ref1;
if (typeof fn !== 'function') {
selectors = fn;
set = function(el, content, style) {
var key, value;
if (content) {
el.innerHTML = content;
}
if (style) {
for (key in style) {
value = style[key];
el.style[key] = value;
}
return null;
}
};
fn = function(el) {
var content, match, selector, style, value, _i, _len, _ref1;
for (selector in selectors) {
value = selectors[selector];
content = style = null;
if (typeof value === 'string') {
content = value;
} else {
content = value.content, style = value.style;
}
if (selector === '') {
set(el, content, style);
continue;
}
_ref1 = el.querySelectorAll(selector);
for (_i = 0, _len = _ref1.length; _i < _len; _i++) {
match = _ref1[_i];
set(match, content, style);
}
}
return null;
};
}
for (_i = 0, _len = anchorList.length; _i < _len; _i++) {
anchor = anchorList[_i];
_ref1 = this._panels[anchor];
for (i = _j = 0, _len1 = _ref1.length; _j < _len1; i = ++_j) {
panel = _ref1[i];
fn(panel.children[0].children[0], i, anchor);
}
}
return this;
};
OriDomi.prototype.accordion = prep(function(angle, anchor, options) {
var _this = this;
return this._iterate(anchor, function(panel, i) {
var deg;
if (i % 2 !== 0 && !options.twist) {
deg = -angle;
} else {
deg = angle;
}
if (options.sticky) {
if (i === 0) {
deg = 0;
} else if (i > 1 || options.stairs) {
deg *= 2;
}
} else {
if (i !== 0) {
deg *= 2;
}
}
if (options.stairs) {
deg *= -1;
}
_this._transformPanel(panel, deg, anchor, options.fracture);
if (_this._shading && !(i === 0 && options.sticky) && Math.abs(deg) !== 180) {
return _this._setShader(i, anchor, deg);
}
});
});
OriDomi.prototype.curl = prep(function(angle, anchor, options) {
var _this = this;
angle /= __indexOf.call(anchorListV, anchor) >= 0 ? this._config.vPanels : this._config.hPanels;
return this._iterate(anchor, function(panel, i) {
_this._transformPanel(panel, angle, anchor);
if (_this._shading) {
return _this._setShader(i, anchor, 0);
}
});
});
OriDomi.prototype.ramp = prep(function(angle, anchor, options) {
var _this = this;
this._transformPanel(this._panels[anchor][1], angle, anchor);
return this._iterate(anchor, function(panel, i) {
if (i !== 1) {
_this._transformPanel(panel, 0, anchor);
}
if (_this._shading) {
return _this._setShader(i, anchor, 0);
}
});
});
OriDomi.prototype.foldUp = prep(function(anchor, callback) {
var _this = this;
if (this.isFoldedUp) {
return typeof callback === "function" ? callback() : void 0;
}
return this._stageReset(anchor, function() {
_this._inTrans = _this.isFoldedUp = true;
return _this._iterate(anchor, function(panel, i, len) {
var delay, duration;
duration = _this._config.speed;
if (i === 0) {
duration /= 2;
}
delay = _this._setPanelTrans.apply(_this, [anchor].concat(__slice.call(arguments), [duration], [2]));
return (function(panel, i, delay) {
return defer(function() {
_this._transformPanel(panel, (i === 0 ? 90 : 170), anchor);
return setTimeout(function() {
if (i === 0) {
_this._inTrans = false;
return typeof callback === "function" ? callback() : void 0;
} else {
return hideEl(panel.children[0]);
}
}, delay + _this._config.speed * .25);
});
})(panel, i, delay);
});
});
});
OriDomi.prototype.unfold = prep(function(callback) {
return this._unfold.apply(this, arguments);
});
OriDomi.prototype.map = function(fn) {
var _this = this;
return prep(function(angle, anchor, options) {
return _this._iterate(anchor, function(panel, i, len) {
return _this._transformPanel(panel, fn(angle, i, len), anchor, options.fracture);
});
}).bind(this);
};
OriDomi.prototype.reset = function(callback) {
return this.accordion(0, {
callback: callback
});
};
OriDomi.prototype.reveal = function(angle, anchor, options) {
if (options == null) {
options = {};
}
options.sticky = true;
return this.accordion(angle, anchor, options);
};
OriDomi.prototype.stairs = function(angle, anchor, options) {
if (options == null) {
options = {};
}
options.stairs = options.sticky = true;
return this.accordion(angle, anchor, options);
};
OriDomi.prototype.fracture = function(angle, anchor, options) {
if (options == null) {
options = {};
}
options.fracture = true;
return this.accordion(angle, anchor, options);
};
OriDomi.prototype.twist = function(angle, anchor, options) {
if (options == null) {
options = {};
}
options.fracture = options.twist = true;
return this.accordion(angle / 10, anchor, options);
};
OriDomi.prototype.collapse = function(anchor, options) {
if (options == null) {
options = {};
}
options.sticky = false;
return this.accordion(-this._config.maxAngle, anchor, options);
};
OriDomi.prototype.collapseAlt = function(anchor, options) {
if (options == null) {
options = {};
}
options.sticky = false;
return this.accordion(this._config.maxAngle, anchor, options);
};
OriDomi.VERSION = '1.0.2';
OriDomi.isSupported = isSupported;
return OriDomi;
})();
if (typeof module !== "undefined" && module !== null ? module.exports : void 0) {
module.exports = OriDomi;
} else if (typeof define !== "undefined" && define !== null ? define.amd : void 0) {
define(function() {
return OriDomi;
});
} else {
window.OriDomi = OriDomi;
}
if (!$) {
return;
}
$.prototype.oriDomi = function(options) {
var el, instance, method, methodName, _i, _j, _len, _len1;
if (!isSupported) {
return this;
}
if (options === true) {
return $.data(this[0], baseName);
}
if (typeof options === 'string') {
methodName = options;
if (typeof (method = OriDomi.prototype[methodName]) !== 'function') {
if (typeof console !== "undefined" && console !== null) {
console.warn("OriDomi: No such method `" + methodName + "`");
}
return this;
}
for (_i = 0, _len = this.length; _i < _len; _i++) {
el = this[_i];
if (!(instance = $.data(el, baseName))) {
instance = $.data(el, baseName, new OriDomi(el, options));
}
method.apply(instance, Array.prototype.slice.call(arguments).slice(1));
}
} else {
for (_j = 0, _len1 = this.length; _j < _len1; _j++) {
el = this[_j];
if (instance = $.data(el, baseName)) {
continue;
} else {
$.data(el, baseName, new OriDomi(el, options));
}
}
}
return this;
};
}).call(this);
/*
//@ sourceMappingURL=oridomi.map
*/
{
"version": 3,
"file": "oridomi.js",
"sourceRoot": "",
"sources": [
"oridomi.coffee"
],
"names": [],
"mappings": ";AASA;CAAA,CAAA,UAAA;CAAA,KAAA,2PAAA;KAAA;;uBAAA;;CAAA,CAIA,CAAc,CAJd,OAIA;;CAJA,CAUA,CAAiB,CAAA,KAAC,KAAlB;;CACW,EAAV,CAAC,EAAA,CAAO,yBAAQ;MAAf;CADe,EAED,QAAd;CAZF,EAUiB;;CAVjB,CAgBA,CAAW,CAAA,IAAX,CAAY;CAEV,OAAA,cAAA;AAAA,CAAA,QAAA,wCAAA;+BAAA;CACE,GAAe,EAAf,kDAAA;CAAA,GAAA,WAAO;QADT;CAAA,IAAA;CAIA,GAAA,sBAAA;CAAA,GAAA,SAAO;MAJP;CAFS,UAST;CAzBF,EAgBW;;CAhBX,CA6BA,CAAW,EAAA,GAAX,CAAY;CACV,OAAA,QAAA;CAAA,EAAS,CAAT,CAAA,GAAS;AACT,CAAA,QAAA,IAAA;yBAAA;CAEE,EAAA,CAAG,EAAH;CACE,EAAO,CAAP,IAAA;CACA,GAAqB,CAAA,GAArB,WAAqB;CAArB,EAAO,CAAP,MAAA;UAFF;QAAA;CAAA,CAKS,CAAE,CAAF,CAAT,CAAA,CAAH,IAAA,MAAA;CAPC,IADA;CADS,EAWc,CAAR,CAAA,MAAf;CAxCF,EA6BW;;CA7BX,CA4CA,CAAc,GAAA,GAAC,EAAf;CACK,CAAH,CAAD,GAAC,KAAA,CAAA;CA7CF,EA4Cc;;CA5Cd,CAiDA,CAAa,MAAC,CAAd;CACI,EAAmB,QAArB;CAlDF,EAiDa;;CAjDb,CAsDA,CAAW,KAAX,CAAY;CACV,CAAA,MAAA;CAAA,CAAA,CAAK,CAAL,CAAK,GAAQ,KAAR;CAAL,CACE,CAAa,CAAf,KAAA;CAFS,UAGT;CAzDF,EAsDW;;CAtDX,CA6DA,CAAU,CAAA,EAAA,CAAV,EAAW;CACT,CAAA,MAAA;CAAA,CAAA,CAAK,CAAL,EAAW,GAAN;CAAL,CACE,CAAF,CAAA,KAAY;CAFJ,UAGR;CAhEF,EA6DU;;CA7DV,CAoEA,CAAS,GAAT,GAAU;CACL,CAAD,CAAU,EAAH,IAAA,EAAT;CArEF,EAoES;;CApET,CAwEA,CAAS,GAAT,GAAU;CACL,CAAD,CAAU,EAAH,IAAA,EAAT;CAzEF,EAwES;;CAxET,CA8EA,CAAO,CAAP,KAAQ;GACN,MAAA,EAAA;CAEE,SAAA,oBAAA;CAAA,GAAG,EAAH,OAAA;CACK,CAAD,EAAF,CAAA,IAAA,MAAA;MADF,EAAA;CAGE,CAAK,MAAJ;CAAD,CAAA,CACA,KAAA;CADA,EAEe,CAFf,CAEA,CAAe,EAAf;CAQA,CAAS,IAAT,UAAO;CAAP,cACO;CACH,CAAA,CAAG,KAAH,IAAA;AAG8B,CAA9B,GAAA,MAAA,EAAA;CAAA,EAAO,GAAP;cALJ;CACO;CADP,cAMO;AACA,CAAH,CAAG,EAAA,CAAa,CAAb,IAAH,EAAA;CACE,CAAA,CAAG,KAAH,MAAA;MADF,QAAA;CAGE,CAAA,CAAe,GAAf,QAAA;CAAA,CAAA,CACG,KAAH,MAAA;cAXN;CAMO;CANP,cAYO;CACH,CAAA,CAAQ,EAAR,OAAA;CACA,GAAG,CAAoB,CAApB,GAAS,GAAZ;AACK,CAAH,CAAG,EAAA,CAAa,CAAb,EAAH,MAAA;CACE,CAAA,CAAA,aAAA;AACM,CAAA,CAAA,EAAA,CAAa,CAFrB,IAAA,MAAA;CAGE,CAAA,CAAG,KAAH,QAAA;MAHF,UAAA;CAKE,CAAA,CAAS,GAAT,UAAA;gBANJ;CAOkB,GAAV,CAAoB,CAP5B,GAOiB,KAPjB;CAQE,CAAA,CAAS,GAAT,QAAA;AACG,CAAH,CAAG,EAAA,CAAa,CAAb,EAAH,MAAA;CACE,CAAA,CAAA,aAAA;AACM,CAAA,CAAA,EAAA,CAAa,CAFrB,IAAA,MAAA;CAGE,CAAA,CAAG,KAAH,QAAA;gBAZJ;cAdJ;CAAA,QAVA;;CAsCY,EAAD,CAAC,CAAD,EAAQ,GAAnB;UAtCA;CAAA,EAuCW,CAAC,GAAO,CAAnB;CAvCA,CA0Ca,CAAA,CAAZ,CAAiB,CAAX,EAAP,OAAkB,GAAyB;CA1C3C,GA6CC,CAAD,GAAA;CAhDF,cAkDE;QApDJ;CADK,IACL;CA/EF,EA8EO;;CA9EP,CAuIA,CAAQ,EAAR,IAAS;CACI,CAAX,QAAA,CAAA;CAxIF,EAuIQ;;CAvIR,CA6IA,CAAO,CAAP,KAAO;;CA7IP,CAsJA,CAA8C,CAAZ,EAAkB;;CAtJpD,CAyJA,CAAc,EAAA,CAAA,CAAA,CAAA,EAAd;;CAzJA,CA0JA,CAAc,OAAW,CAAzB,CA1JA;;CAAA,CA2JA,CAAc,MA3Jd,CA2JyB,CAAzB;;CA3JA,CA8JA,CAAS,EAAA,CAAT,EAAiB,KAAR;;CA9JT,CAiKA,CAAc,QAAd;;CAjKA,CAoKA,CAAa,CAAA,CAAA,GAAA,EAAb;;CApKA,CAqKA,CAAa,KAAb,CArKA;;CAAA,CAuKA,CACE,MADF;CACE,CAAc,EAAd,EAAA,EAAA;CAAA,CACc,EAAd,CAAA,EADA;CAAA,CAEc,EAAd,EAAA,EAFA;CAAA,CAGc,EAAd,CAAA,EAHA;CAAA,CAIc,EAAd,KAAA,GAJA;CAAA,CAKc,EAAd,MAAA,GALA;CAAA,CAMc,EAAd,IAAA,GANA;CAAA,CAOc,EAAd,OAAA,GAPA;CAAA,CAQc,EAAd,GAAA,EARA;CAAA,CASc,EAAd,EATA;CAAA,CAUc,EAAd,CAAA,GAVA;CAAA,CAWc,EAAd,CAAA,GAXA;CAAA,CAYc,EAAd,CAAA,EAZA;CAAA,CAac,EAAd,EAAA,GAbA;CAAA,CAcc,EAAd,EAAA,GAdA;CAAA,CAec,EAAd,EAAA,EAfA;CAAA,CAgBc,EAAd,MAAA,GAhBA;CAAA,CAiBc,EAAd,OAAA,GAjBA;CAAA,CAkBc,EAAd,KAAA,GAlBA;CAAA,CAmBc,EAAd,QAAA,GAnBA;CAxKF,GAAA;;AA8LA,CAAA,MAAA,OAAA;sBAAA;CAAA,CAAe,CAAA,CAAf,IAAe,CAAL;CAAV,EA9LA;;AAmMM,CAnMN,CAmMA,CAAA,MAAU;CACR,OAAA,YAAA;CAAA;CAAA,QAAA,mCAAA;uBAAA;CAAA,EAAE,CAAA,EAAF;CAAA,IAAA;CADQ,UAeR;CAlNF,EAmMU;;CAnMV,CAsNG,CAAA,MAAA;CAED,OAAA,gDAAA;AAAA,CAAA,QAAA,CAAA;wBAAA;CACE,EAAI,EAAO,CAAX,EAAW;AAGwB,CAAnC,EAAuC,CAAvC,EAAA;CAAA,IAAO,SAAA,CAAA;QAJT;CAAA,IAAA;CAAA,EASA,CAAA,SATA;CAAA,EAUgB,CAAhB,CAAa,CAAP,QAAO;CAEb,EAAuB,CAAvB,CAAoB,CAAP,QAAO;CAClB,EAAO,UAAA,CAAA;MAbT;CAAA,EAkBG,CAAH,KAAsB,GAAtB;CACE,SAAA,kBAAA;AAAA,CAAA,UAAA,sCAAA;iCAAA;CACE,EAAc,GAAb,EAAD,EAAA,CAAL,OAAK;CAAA,CAC+B,CAAA,EAAnB,CAAN,EAAN,EAA+B,KAA/B,KADA;AAG8E,CAA9E,GAAyB,CAAY,CAAN,CAAN,CAAzB,EAAyB,KAA4B;CAArD,SAAA,OAAO;UAJT;CAAA,MAAA;CADoB,YAOpB;CAPoB,IAAA;CAlBtB,EA6B8B,CAA9B,IAA8B,CAAA;CAC5B,SAAA,4BAAA;AAAA,CAAA,UAAA,sCAAA;iCAAA;CACE,EAAY,GAAZ,EAAA,CAAA;CAAA,EACsB,EAAV,CAAN,EAAN,CAAuB,EAA5B;CAEK,GAA6D,CAAY,CAAN,EAAnE,CAAA;CAAA,CAAoB,CAAA,GAAnB,GAAM,EAAZ,MAAY;UAJT;CAAA,MAAA;CAAA,EAMsB,EAAV,CAAZ,GANA;CAOA,GAAG,CAAY,CAAf,GAAA;CACG,CAAW,OAAZ,CAAA,KAAA;MADF,EAAA;CAIG,CAAQ,IAAT,SAAA;QAZ0B;CAAA,CAA7B,CAAG,EAA0B;CA7B9B,EA4CG,CAAH,KAAuB,IAAvB;CAEE,KAAA,IAAA;CAAA,EAAY,CAAT,CAAS,CAAZ,GAAyB,QAAb;CACf,EAAM,GAAC,KAAP,IAAM;MADH,EAAA;CAAA,cAGE;QALmB;CAAA,IAAA;CA5CvB,EAoDG,CAAH,KAAuB,IAAvB;CACE,EAAU,QAAH,GAAA,IAAsB;CAA7B,YACO,OADP;CAAA,gBACuC;CADvC,YAEO,aAFP;CAAA,gBAEuC;CAFvC,YAGO,UAHP;CAAA,gBAGuC;CAHvC,YAIO,SAJP;CAAA,gBAIuC;CAJvC,MADqB;CAAA,IAAA;CApDvB,CA8DE,EADF,EAAA,EAAA,CAAkB;CAChB,CAAiB,IAAjB,SAAA,SAAA;CAAA,CACiB,IAAjB,SAAA,EADA;CAAA,CAEiB,IAAjB,GAAA,cAFA;CAAA,CAGiB,IAAjB,WAHA;CAAA,CAIiB,IAAjB,CAAA,UAJA;CAAA,CAKiB,IAAjB,CAAA,OALA;CAAA,CAMiB,IAAjB,EAAA,EANA;CAAA,CAOiB,CAAA,GAAjB,OAPA,CAOA;CAPA,CAQiB,EAAjB,EAAA,WARA;CA9DF,KA6DA;CA7DA,CAyEE,EADF,CAAA,GAAA,CAAkB;CAChB,CAAW,IAAX,QAAA;CAAA,CACW,IAAX,GAAA,cADA;CAAA,CAEW,IAAX,EAAA,WAFA;CAAA,CAGW,IAAX,CAAA,WAHA;CAzEF,KAwEA;CAxEA,CA+EE,EADF,EAAA,EAAA,CAAkB;CAChB,CAAgB,GAAhB,CAAA;CAAA,CACgB,IAAhB,EAAA,EADA;CAAA,CAEgB,CAAhB,GAAA;CAFA,CAGgB,CAHhB,GAGA;CAHA,CAIgB,CAJhB,GAIA,QAAA;CAnFF,KA8EA;CA9EA,CAsFE,EADF,CAAA,GAAA,CAAkB;CAChB,CAAgB,GAAhB,CAAA;CAAA,CACgB,IAAhB;CADA,CAEgB,IAAhB,EAAA,EAFA;CAAA,CAGgB,IAAhB,GAAA,mBAHA;CAAA,CAIgB,CAJhB,GAIA;CAJA,CAKgB,CALhB,GAKA,CAAA;CALA,CAMgB,CANhB,GAMA,QAAA;CA5FF,KAqFA;CAUA;;;;;;CAAA,QAAA,CAAA;oBAAA;CACE,CAAiC,CAAJ,GAA7B,CAAmB,CAAnB,CAAmB;CAAc,CAAmB,MAAnB,SAAA;CAAjC,OAAA;CADF,IA/FA;CAAA,CAmGE,EADF,EAAA,EAAA,CAAkB;CAChB,CAAoB,GAApB,CAAA;CAAA,CACoB,IAApB;CADA,CAEoB,IAApB,EAAA,EAFA;CAAA,CAGoB,CAHpB,GAGA,CAAA;CAHA,CAIoB,CAApB,GAAA;CAJA,CAKoB,CALpB,CAKA,EAAA;CALA,CAMoB,IAApB,OAAA;CANA,CAOoB,IAApB,GAPA,SAOA;CA1GF,KAkGA;AAWA,CAAA,QAAA,wCAAA;+BAAA;CACE,CAAkD,CAApB,GAA9B,EAAA,CAAmB,CAAW;CAAoB,CAAY,IAAA,EAAZ,EAAA,CAAY;CAA9D,OAAA;CADF,IA7GA;CAAA,CAiHE,EADF,GAAA,CAAA,CAAkB;CAChB,CAAW,IAAX,QAAA;CAAA,CACW,IAAX,EAAA,aADA;CAAA,CAEW,GAAX,CAAA,WAFA;CAAA,CAGW,IAAX,GAAA,cAHA;CAAA,CAIW,IAAX,EAAA,WAJA;CAjHF,KAgHA;CAhHA,CAwHE,EADF,IAAA,CAAkB;CAChB,CAAoB,GAApB,CAAA;CAAA,CACoB,IAApB;CADA,CAEoB,IAApB,EAAA,EAFA;CAAA,CAGoB,IAApB,EAAA;CAHA,CAIoB,IAApB,GAAA,aAJA;CAxHF,KAuHA;CAvHA,CA+HE,EADF,CAAA,GAAA,CAAkB;CAChB,CAAoB,GAApB,CAAA;CAAA,CACoB,IAApB;CADA,CAEoB,CAFpB,GAEA,CAAA;CAFA,CAGoB,IAApB,EAAA,EAHA;CAAA,CAIoB,CAAG,GAAvB,OAJA,KAIA;CAJA,CAKoB,IAApB,SAAA;CALA,CAMoB,CANpB,GAMA,QAAA;CArIF,KA8HA;CA9HA,CAuI2B,EAA3B,EAAA,EAAA,CAAkB;CAAS,CAAiB,GAAjB,CAAA,SAAA;CAvI3B,KAuIA;CAvIA,CAwIS,CAAV,CAAC,CAAA,GAAA,CAAQ,CAAC;CAAmD,CAAiB,IAAjB,CAAA,QAAA;CAxI5D,KAwIA;CAxIA,CAyIS,CAAV,CAAC,CAAA,GAAA,CAAQ,EAAC;CAAoD,CAAiB,IAAjB,EAAA,OAAA;CAzI7D,KAyIA;CAzIA,EA2Ie,CAAf,GAAA,CAAuB,KAAR;CA3If,EA4Ie,CAAf,GAAO,GA5IP;CA+IA,GAAA,GAAU,GAAV;CACE,EAA6B,GAA7B,CAAO,GAAW,CAAlB;MADF;CAGE,KAAA,CAAO,CAAqB,GAA5B,GAAoB;MAlJtB;CAoJS,GAAI,GAAb,CAAQ,GAAR;CAtJC,EAAA;;CAtNH,CAmXA,CAEE,KAFF;CAEE,CAAS,EAAT,GAAA;CAAA,CAES,EAAT,GAAA;CAFA,CAKa,EAAb,OAAA;CALA,CASS,EAAT,EATA,CASA;CATA,CAWO,CAXP,CAWA,CAAA;CAXA,CAcU,EAAV,IAAA;CAdA,CAiBQ,EAAR,EAAA;CAjBA,CAmBc,EAAd,KAnBA,GAmBA;CAnBA,CAsBkB,EAAlB,YAAA;CAtBA,CAyBc,EAAd,QAAA;CAzBA,CA2Bc,EAAd,QAAA;CA3BA,CA6BkB,CA7BlB,CA6BA,YAAA;CA7BA,CAoCoB,EAApB,cAAA;CApCA,CAsCmB,EAAnB,aAAA;CAtCA,CAwCkB,EAAlB,YAAA;CA7ZF,GAAA;;CAAA,CAmaM;CAES,CAAA,CAAA,CAAA,GAAA,UAAE;CACb,SAAA,qRAAA;CAAA,CAAA,CADa,CAAA,EAAD;;GAAe,KAAV;QACjB;CAAA,gDAAA;CAAA,oDAAA;CAAA,gDAAA;CAAA,kDAAA;CAAA,oDAAA;CAAA,gDAAA;CAAA,4CAAA;CAAA,0DAAA;CAAA,oCAAA;AAAc,CAAd,GAAA,EAAA,KAAA;CAAA,aAAA;QAAA;AAEA,CAAA,GAAA,EAAA,CAAA,KAAoD;CAApD,cAAW;;;;CAAX,CAAmB,KAAR,EAAA,GAAA,GAAX;QAFA;AAIoC,CAApC,CAAoC,EAAA,CAAc,CAAlD,EAAA;CAAA,CAAA,CAAM,CAAL,IAAD,KAAM;QAJN;AAMA,CAAA,CAAO,EAAP,CAA+B,CAA/B,EAAe;;CACJ,GAAT,GAAO,GAAP,qCAAA;UAAA;CACA,aAAA;QARF;AAWW,CAXX,EAWW,CAAV,EAAD,CAAA,EAAe;AACb,CAAA,YAAA;2BAAA;CACE,GAAG,MAAH,QAAA;CACE,EAAO,CAAL,GAAa,KAAf;MADF,MAAA;CAGE,EAAO,CAAL,QAAF;YAJJ;CAAA,QAAA;CADa,cAMb;CAjBF,MAWe;CAXf,EAoBkB,CAAjB,EAAD,CAAQ;CApBR,CAAA,CAsBY,CAAX,EAAD;CAtBA,CAAA,CAuBY,CAAX,EAAD,CAAA;CAvBA,CAAA,CAwBY,CAAX,EAAD,CAAA;CAxBA,EA0BY,CAAX,EAAD,CAAA;CAAY,CAAQ,IAAR,EAAA,EAAmB;CA1B/B,OAAA;CAAA,EA2BY,CAAX,EAAD,CAAoB,CAApB;CAEA,GAAsB,CAAa,CAAnC,EAAsB;CAAtB,EAAY,CAAX,EAAD,EAAA;QA7BA;CAiCA,GAAG,EAAH,EAAA;CACE,CAAA,CAAe,CAAd,IAAD;CAAA,CAAA,CACe,KAAf,IAAA;CADA,EAEe,KAAf,GAAA;CAFA,EAGqB,CAA8B,CAAjC,EAAwC,CAA1D,GAAW,OAAO;CAHlB,EAIqB,CAA8B,CAAjC,EAAwC,CAA1D,GAAW,CAJX,YAIkB;QAtCpB;CAAA,EAwCa,GAAb,CAAa,CAAA,EAAb;CAxCA,EAyCoB,CAAiB,CAApB,CAAjB,CAA4C,GAAlC,CAAO;AAEjB,CAAA,UAAA,sCAAA;iCAAA;CAEE,CAAA,CAAmB,CAAlB,EAAQ,CAAA,CAAT;CAAA,CACuC,CAApB,CAAlB,CAAkB,CAAV,CAAA,CAAT,EAAmB;CACnB,GAAG,IAAH;CACE,CAAA,CAAoB,CAAnB,EAAS,EAAA,EAAV;CACA,CAAG,EAAA,EAAA,IAAH,CAAG,IAAU;AACX,CAAA,gBAAA,mCAAA;sCAAA;CAAA,CAAA,CAA0B,CAAzB,EAAS,EAAA,MAAV;CAAA,YADF;MAAA,MAAA;AAGE,CAAA,gBAAA,mCAAA;sCAAA;CAAA,CAAA,CAA0B,CAAzB,EAAS,EAAA,MAAV;CAAA,YAHF;YADA;CAAA,CAM4C,CAArB,EAAA,CAAV,CAAU,CAA4B,EAAnD,CAAuB,CAAV;UAXjB;CAAA,MA3CA;CAAA,CAwDgB,CAAA,CAAS,EAAzB,CAAgB,EAAA,IAAhB;CAxDA,EA0DY,GAAZ,EAAY,CAAZ;CA1DA,KA2DA,GAAS,EAAT,EAAA;CA3DA,EA6Da,GAAb,CAAa,CAAA,EAAb;CA7DA,EA8DoB,CAA8B,CAAjC,CAAjB,CAAyD,GAA/C,QAAO;CA9DjB,EA+DoB,CAA8B,CAAjC,CAAjB,CAAyD,GAA/C,EA/DV,YA+DiB;CAGjB;CAAA,UAAA,mCAAA;0BAAA;CACE,EAAA,CAAG,CAAQ,GAAX;CACE,EAAc,MAAd,CAAA,CAAA;CAAA,EACc,CAAC,CAAf,EAAsB,GAAtB;CADA,EAEc,GAAd,CAFA,GAEA;CAFA,EAGc,OAAd,CAAA;MAJF,IAAA;CAME,EAAc,MAAd,CAAA,CAAA;CAAA,EACc,CAAC,CAAf,EAAsB,GAAtB;CADA,EAEc,GAAd,EAFA,EAEA;CAFA,EAGc,OAAd,CAAA;UATF;CAAA,EAYU,EAZV,EAYA,CAAA;CAZA,CAc6B,CAAnB,CAAV,EAAmC,CAAzB,CAAV,CAAU,EAAA;CAdV,EAeU,CAAI,GAAd,CAAA;CAfA,EAoBwB,EAAX,CAAW,CAAjB,CAAP;CApBA,EAqBwB,EAAV,CAAA,CAAP,CAAP,EAA8C;CAC9C,GAAG,IAAH;AACE,CAAA,cAAA,mCAAA;oCAAA;CAAA,GAAI,EAA0B,KAA9B,CAAA;CAAA,UADF;UAtBA;CAAA,CAyB4B,CAApB,EAAR,EAAQ,CAAR,EAAQ,CAAA;CAzBR,GA0BA,CAAK,GAAL,GAAA;AAEA,CAAA,YAAA,6CAAA;iCAAA;AACE,CAAA,EAAA,YAAc,yEAAd;CACE,EAAQ,CAAA,CAAR,IAAQ,GAAR;CAGA,GAAuC,CAAU,CAAV,MAAvC;CAAA,EAAsB,EAAjB,CAAO,CAAU,OAAtB;cAHA;CAAA,EAIU,EAAK,EAAf,CAAyB,IAAzB;CAIA,GAAG,CAAK,OAAR;AAC2B,CAAzB,EAAwB,EAAV,CAAA,CAAP,OAAP;CACA,GAAG,CAAU,CAAV,QAAH;CACE,EAAsB,EAAjB,CAAO,UAAZ;MADF,UAAA;CAGE,EAAsB,EAAjB,CAAO,UAAZ;gBALJ;MAAA,QAAA;AAOwD,CAAtD,EAA8B,EAAhB,CAAiB,CAAxB,EAAiB,KAAxB;CAAA,EACe,EAAV,CAAO,QAAZ;CACA,GAAG,CAAU,CAAV,QAAH;CACE,EAA4B,EAAvB,EAAuB,EAAN,OAAtB;MADF,UAAA;CAGE,EAA4B,EAAvB,EAAL,EAAsB,OAAtB;gBAZJ;cARA;CAsBA,GAAG,IAAH,IAAA;AACE,CAAA,kBAAA,uCAAA;kCAAA;CACE,EAA+B,CAA9B,CAAmC,CAA1B,EAAA,QAAV;CADF,cADF;cAtBA;CAAA,EA0B2B,CAA1B,CA1BD,CA0BS,CAAA,KAAT;CAEA,GAAsD,CAAU,CAAV,MAAtD;CAAA,EAA0B,CAAzB,CAAD,CAAS,CAAA,IAAT,GAAA;cA7BF;CAAA,UAAA;CAAA,GAgCC,EAAQ,CAAA,GAAT,CAAA;CAjCF,QA7BF;CAAA,MAlEA;CAAA,EAkIgB,CAAf,EAAD,EAAgB,IAAhB;AACA,CAAA,UAAA,wCAAA;iCAAA;CAAA,GAAC,EAAkC,CAAA,CAAnC,GAAA,CAAa;CAAb,MAnIA;CAsIA,CAAG,EAAA,CAAyC,CAA5C,EAAG,EAAH,MAAG;CACD,CAAG,CAAkB,CAApB,CAAQ,GAAT,EAAA;QAvIF;CAAA,CAyIG,CAAH,CAAC,EAAD,GAAa;CAzIb,GA0IQ,EAAR,CAAe;CA1If,CA6IY,CAAA,CAAX,EAAD,CAAY,CAAZ;CA7IA,GA8IC,EAAD,EAAS,CAAU;CA9InB,GA+IQ,EAAR,EAAA;CA/IA,CAkJG,CAAe,CAAjB,EAAD,GAAA;CAlJA,CAmJG,EAAF,EAAD,EAAA,GAAA;CAnJA,CAoJG,EAAF,EAAD,KAAA,CAAA;CApJA,CAuJG,CAAqB,CAAvB,CAAoB,CAArB,IAAc,GAvJd,CAuJqB;CAvJrB,GA2JC,EAAD,GAAA;CACA,GAA8B,EAA9B,CAAsC;CAAtC,GAAC,EAAD,CAAmB,CAAnB,CAAA;QA5JA;CA6JA,GAAkB,EAAlB,CAA0B,KAA1B;CAAA,GAAC,IAAD,GAAA;QA9JW;CAAb,IAAa;;CAAb,EAqKO,EAAP,IAAO;CAEL,SAAA,6BAAA;SAAA,GAAA;AAAwB,CAAxB,GAAU,EAAV,EAAU;CAAV,aAAA;QAAA;CAAA,EACY,CAAX,EAAD,EAAA;CADA,CAGC,EAA+B,CAAD,CAA/B,EAA+B;CAC/B,GAAe,EAAf,EAAA;CAAA,GAAC,IAAD;QAJA;CAAA,EAQO,CAAP,EAAA,GAAO;CACL,GAAA,QAAA;CAAA,IAAC,GAAD,IAAA;CAAc,CAAC,GAAD,KAAC;CAAD,CAAQ,IAAR,IAAQ;CAAR,CAAgB,KAAhB,GAAgB;CAAhB,CAAyB,QAAA;CAAvC,SAAA;CAAA,CACe,CAAR,CAAP,CAAO,CAAA,CAAA,CAAP;CACA,CAAkB,CAAU,CAAZ,EAAA,EAAhB;CAAA,GAAI,CAAJ,KAAA;UAFA;CAGG,CAAD,EAAF,CAAA,UAAA;CAZF,MAQO;CAMP,GAAG,EAAH,IAAA;CACE,CAAK,EAAF,CAAa,CAAb,EAAH;CACE,GAAA,aAAA;MADF,IAAA;CAGG,GAAA,GAAD,UAAA;UAJJ;CAKqB,GAAb,CAAY,CALpB,CAK4B,CAL5B;CAMG,CAAoB,EAApB,EAAD,KAAA,IAAA;MANF,EAAA;CAQE,GAAA,WAAA;QAxBG;CArKP,IAqKO;;CArKP,CAoMuB,CAAA,MAAC,YAAxB;CACE,SAAA,iBAAA;AAAmB,CAAnB,CAAA,EAAA,EAAA,CAA2B;CAA3B,GAAA,WAAO;QAAP;CACA,GAAgB,CAAhB,CAAA,CAAwB;CAAxB,IAAA,UAAO;QADP;CAEA;CAAA,UAAA,iCAAA;yBAAA;CAAC,CAAsC,CAAb,CAAT,CAAmB,EAAV,CAAzB;CAAA,IAAA,YAAO;UAAR;CAAA,MAFA;CAGA;CAAA,SAAA,CAAA;sBAAA;CAAC,GAAgB,CAAO,EAAQ,CAA/B,EAAA;CAAA,IAAA,YAAO;UAAR;CAAA,MAHA;CADqB,YAKrB;CAzMF,IAoMuB;;CApMvB,EA6Mc,MAAC,GAAf;CAEE,GAAG,EAAH,GAAG,YAAA;CACD,GAAC,GAA2B,CAA5B,CAAA;MADF,EAAA;CAIE,CAAiE,CAAhB,CAAhD,CAAD,CAAS,CAAA,CAAT,KAAA,GAAA;QAJF;CAMC,EAAW,CAAV,CAAF,EAAC,EAAD,IAAA;CArNF,IA6Mc;;CA7Md,EAyNkB,MAAC,OAAnB;CAEE,CAAuD,CAAhB,CAAiB,CAAxD,CAAA,OAAe,GAAf,GAAA;CAEC,CAAqC,EAArC,GAAkB,CAAnB,CAAA,IAAA;CA7NF,IAyNkB;;CAzNlB,CAiOW,CAAA,EAAA,IAAX;CACE,SAAA,EAAA;CAAM,EAAA,EAAN,IAAM,IAAN;CACE,EAAY,EAAX,GAAD;CAAA,IACC,GAAD;CACI,CAAO,CAAX;CAHF,MAAM;CAlOR,IAiOW;;CAjOX,CAyOiB,CAAA,EAAA,CAAA,EAAA,CAAC,MAAlB;CAGE,SAAA,QAAA;CAAA,EAAI,GAAJ;CACA,KAAA,QAAO;CAAP,KAAA,OACO;CACH,EAAI,EAAJ,KAAA;CAAA,EACY,GADZ,GACA,CAAA;CAFG;CADP,MAAA,MAIO;AACE,CAAL,EAAI,EAAJ,KAAA;CAAA,EACY,EADZ,IACA,CAAA;CAFG;CAJP,IAAA,QAOO;AACE,CAAL,EAAI,EAAJ,KAAA;CAAA,EACY,GADZ,GACA,CAAA;CAFG;CAPP,OAAA,KAUO;CACH,EAAI,EAAJ,KAAA;CAAA,EACY,EADZ,IACA,CAAA;CAZJ,MADA;CAgBA,GAAqB,EAArB,EAAA;CAAA,EAAI,EAAJ,GAAA;QAhBA;CAkBG,CAAD,CAAU,EAAH,IAAA,CAAoB,GAA7B,GAA6B,CAAA;CA9P/B,IAyOiB;;CAzOjB,EAwQiB,EAAA,IAAC,MAAlB;CACE,EAAA,OAAA;CAAA,CAA0B,CAAlB,EAAR,CAAA,IAAQ;CAAR,EACA,CAAS,EAAT,CAAgB,CADhB;CAEA,GAAG,CAAA,CAAH;CAAA,cACE;GACc,CAAR,CAAA,CAFR,EAAA;CAAA,cAGE;AACe,CAAD,EAAA,CAAR,CAAA,CAJR,EAAA;AAKG,CAAD,cAAA;MALF,EAAA;CAAA,cAOE;QAVa;CAxQjB,IAwQiB;;CAxQjB,CAsRsB,CAAX,EAAA,CAAA,EAAA,CAAX;CACE,SAAA,EAAA;;CADqC,EAAD,CAAC,GAAO,CAAjB;QAC3B;CAAC,CAAiB,CAAA,CAAjB,CAAiB,CAAlB,EAAA,CAAmB,IAAnB;CAAsC,CAAqC,GAArC,CAAuB,EAAc,CAAd,IAAA,CAAxB,CAAA;CAArC,MAAkB;CAvRpB,IAsRW;;CAtRX,CA2RyB,CAAT,EAAA,CAAA,EAAA,CAAC,KAAjB;CACE,SAAA,4BAAA;SAAA,GAAA;CAAA,EAAc,GAAd,CAAA,EAAc;CAGZ,IAAA,WAAO;CAAP,cACO;CADP,kBACc;CADd,cAEO;CAAQ,EAAgB,EAAhB,EAAO,YAAR;CAFd,cAGO;CAAQ,EAAgB,EAAhB,EAAO,YAAR;CAHd,QAHY;CAAA,MAAA;CAAd,EAQe,CARf,CAQK,CAAL,EAAsC,UAA1B;CARZ,EASe,CATf,CASK,CAAL,CAAsC,QAA1B;CACZ,GAAG,EAAH,EAAA;CACE;CAAA,YAAA,+BAAA;4BAAA;CACE,EAAS,CAAC,EAAV,EAAmB,EAAnB;CAAA,EACgB,CADhB,CACa,CAAP,EAAiC,EAAvC,QAAa;CADb,EAEgB,CAFhB,CAEa,CAAP,CAAiC,GAAvC,KAAa;CAHf,QADF;QAVA;CADc,YAiBd;CA5SF,IA2RgB;;CA3RhB,CAgTgB,CAAJ,EAAA,CAAA,GAAC,CAAb;CAEE,SAAA,QAAA;CAAA,EAAA,CAAc,CAAJ,CAAV;CAAA,CACU,CAAA,CAAY,EAAtB,CAAA,SADA;CAMA,GAAG,CAAa,CAAhB,EAAG;CACD,EAAA,CAAW,GAAX,CAAA;CACA,EAAoB,CAAjB,CAAA,EAAQ,CAAX;CACE,EAAQ,EAAR,KAAA;MADF,IAAA;AAGW,CAAT,EAAQ,EAAR,KAAA;UALJ;MAAA,EAAA;CAOE,CAAA,EAAW,GAAX,CAAA;QAbF;CAiBA,CAAG,EAAA,EAAH,KAAG,IAAU;CACX,EAAW,CAAR,CAAA,GAAH;CACE,EAAI,IAAJ,GAAA;CAAA,EACI,OAAJ;MAFF,IAAA;CAIE,EAAI,OAAJ;CAAA,EACI,IADJ,GACA;UALF;CAAA,EAM2C,CAA1C,CAA8B,CAArB,CAAV,CAAA;CACC,EAA0C,CAA1C,CAAuB,CAAd,CAAV,CAAU,OAAV;MARF,EAAA;CAUE,EAAW,CAAR,CAAA,GAAH;CACE,EAAI,OAAJ;CAAA,EACI,IADJ,GACA;MAFF,IAAA;CAIE,EAAI,IAAJ,GAAA;CAAA,EACI,OAAJ;UALF;CAAA,EAMsB,CAArB,CAA6B,CAApB,CAAV,CAAA;CACC,EAA2C,CAA3C,CAAgC,CAAvB,CAAV,CAAU,OAAV;QApCQ;CAhTZ,IAgTY;;CAhTZ,EAyVY,GAAA,GAAC,CAAb;CACE,SAAA,EAAA;CAAA,GAAG,CAAY,CAAf,CAAuB;CACrB,GAAQ,EAAR,CAAgB,CAAhB;CAAA,EACkB,CAAjB,EAAD,CAAQ,CAAR;CADA,EAEkB,CAAjB,CAAD,EAAQ,CAAR;CACC,EAAyB,CAAzB,CAAsB,CAAd,CAAA,EAAc,KAAiB,CAAxC;CACE,KAAA,YAAO;CAAP,KAAA,WACO;CADP,oBAEI;CAFJ,MAAA,UAGO;CACd,EAAY,EAAX,EAAO,cAAI;CAJL,IAAA,YAKO;CALP,oBAMI;CANJ,OAAA,SAOO;CACd,EAAiB,EAAf,CAAU,CAAH,cAAG;CARL,UAD0D;CAAA,QAAA;QALpD;CAzVZ,IAyVY;;CAzVZ,CA4WsB,CAAT,GAAA,GAAC,EAAd;CACE,CAAA,QAAA;SAAA,GAAA;CAAA,CAAA,CAAK,GAAL,GAAM;CACJ,GAAoE,IAApE;CAAA,CAAuD,CAAhB,EAAvC,KAAA,GAAe,MAAf;UAAA;CAAA,IACC,CAAD,EAAA,EAAA;CACM,CAAN,GAAA,UAAA;CAHF,MAAK;CAML,GAAe,CAAA,CAAf,CAAuB;CAAvB,CAAO,aAAA;QANP;CAAA,CAOiE,CAAhB,CAAhD,CAAD,CAAA,CAAS,MAAT,GAAA;CAEC,CAA0B,CAAA,CAA1B,CAA0B,CAA3B,CAAkB,CAAlB,CAA4B,IAA5B;CACE,CAAwB,GAAvB,CAAD,CAAmC,CAAnC,OAAA;CACA,GAAqC,CAAC,GAAtC;CAAC,CAAc,GAAd,CAAD,CAAuB,GAAvB,OAAA;UAFyB;CAA3B,MAA2B;CAtX7B,IA4Wa;;CA5Wb,EA4XoB,MAAC,SAArB;CACE,OAAO,CAAS,KAAT;CAAP,KAAA,OACO;CADP,EAAA,UACiB;CADjB,EAAA,UACsB;CADtB,gBAEI;CAFJ,MAAA,MAGO;CAHP,EAAA,UAGiB;CAHjB,EAAA,UAGsB;CAHtB,gBAII;CAJJ,IAAA,QAKO;CALP,EAAA,UAKiB;CALjB,EAAA,UAKsB;CALtB,gBAMI;CANJ,OAAA,KAOO;CAPP,EAAA,UAOiB;CAPjB,EAAA,UAOsB;CAPtB,gBAQI;CARJ;CAAA,gBAWI;CAXJ,MADkB;CA5XpB,IA4XoB;;CA5XpB,EA4YY,CAAA,KAAC,CAAb;;CAAqB,EAAD,CAAC,IAAR;QACX;CAAA,GAAG,EAAH;CACG,CAAE,CAAgB,CAAlB,CAAQ,CAAT,SAAA;MADF,EAAA;CAGG,CAAE,CAAgB,CAAlB,CAAQ,CAAT,SAAA;QAJQ;CA5YZ,IA4YY;;CA5YZ,EAuZW,GAAA,GAAX;CACE,SAAA,sEAAA;CAAA,GAAG,EAAH;CACE,GAAY,IAAZ,KAAA;CAAA,GAAA,aAAO;UAAP;CAAA,EACW,KAAX,UADA;MADF,EAAA;AAIkB,CAAhB,GAAA,IAAA,KAAA;CAAA,GAAA,aAAO;UAAP;CAAA,EACW,KAAX,aADA;QAJF;CAAA,EAOiB,CAAhB,EAAD,OAAA;CAPA,GAQC,EAAD,IAAA;CARA,CAU6B,CAAhB,GAAb,GAA2C,CAA3C,CAAc,CAAA;CAVd,EAaoB,CAAkB,EAAtC,QAAoB,GAApB;AAEA,CAAA,UAAA,sCAAA;oCAAA;AACE,CAAA,YAAA,qCAAA;mCAAA;AACE,CAAA,GAAA,CAAkB,EAAX,GAAP,EAAO,KAAP;CACE,CAAI,CAA2C,CAA9C,CAAsC,EAAlB,CAAjB,CAAqD,EAA3C,CAAd;MADF,MAAA;CAGE,CAAI,EAAH,CAAD,GAAI,EAAJ,CAAA,CAAA;CACA,iBAJF;YADF;CAAA,QADF;CAAA,MAfA;CADS,YAuBT;CA9aF,IAuZW;;CAvZX,EAkbe,MAAC,IAAhB;CACE,SAAA,EAAA;AAAW,CAAX,GAAU,EAAV,IAAA,GAAU;CAAV,aAAA;QAAA;CAAA,KACA,QAAA;CADA,GAGC,EAAD,IAAA;CAHA,EAKiB,CAAhB,EAAD,OAAA;CALA,CAOG,CAAgB,CAAlB,CAAQ,CAAT,EAPA;CAAA,CASc,EAAb,EAAD,GAAA;CATA,CAWiB,CAAA,CAAhB,CAAgB,CAAjB,CAAyB,GAAzB,CAAiB,IAAmB;CAXpC,EAaG,CAAD,CAbF,CAaA,CAAqC,GAAlC;CAbH,EAcS,CAAX,CAAE,CAAA,IAAS;CAET,GAAG,CAAU,CAAb,KAAA;CACE,EAAW,CAAT,CAAA,CAAY,EAAd,EAAM,CAAX;MADG,EAAA;CAGE,EAAW,CAAT,CAAA,CAA6B,EAA/B,EAAM,CAAX,EAAgC;QAnB7B;CAsBC,CAAqC,EAArC,CAA6B,EAAtB,MAAR,KAAA;CAzcF,IAkbe;;CAlbf,EA6cc,MAAC,GAAf;CACE,SAAA,cAAA;AAAA,CAAA,GAAA,EAAA,OAAc;CAAd,aAAA;QAAA;CAAA,KACA,QAAA;CAEA,GAAG,CAAU,CAAb,KAAA;CACE,EAAU,CAAd,EAAiB,CAAb,CAAA,EAAM,CAAX;MADG,EAAA;CAGE,EAAU,CAAd,EAAkC,CAA9B,CAAA,EAAM,CAAX,EAA+B;QAN5B;CAAA,EASW,CAAa,EAAxB,CAAY,CAAZ,EAAyB,MATzB;CAaA,EAAoB,CAAjB,CAAA,CAAH,CAAW;CACT,GAAG,CAAmB,CAAnB,CAAQ,CAAX;CACE,EAAQ,CAAE,CAAV,CAAU,EAAV,EAAA;MADF,IAAA;CAGE,EAAQ,CAAE,CAAV,CAAU,EAAV,EAAA;UAHF;CAIA,EAAqB,CAAR,CAAA,GAAb;CAAA,EAAQ,EAAR,KAAA;UALF;MAAA,EAAA;CAOE,GAAG,CAAmB,CAAnB,CAAQ,CAAX;CACE,EAAQ,CAAE,CAAV,CAAU,EAAV,EAAA;MADF,IAAA;CAGE,EAAQ,CAAE,CAAV,CAAU,EAAV,EAAA;UAHF;CAIA,EAAqB,CAAR,CAAA,GAAb;CAAA,EAAQ,EAAR,KAAA;UAXF;QAbA;CAAA,EA2BiB,CAAhB,CAAD,CAAA,CAAQ,QAAiB;CA3BzB,CA4BW,EAAV,CAAD,CAAA,CAAQ;CACP,CAAiC,EAAjC,CAAD,EAAQ,MAAR,IAAA;CA3eF,IA6cc;;CA7cd,EAgfa,MAAC,EAAd;AACgB,CAAd,GAAA,EAAA,OAAA;CAAA,aAAA;QAAA;CAAA,EAEiB,CAAhB,CAFD,CAEA,EAAiB,KAAjB;CAFA,CAGG,CAAgB,CAAlB,CAAQ,CAAT;CAHA,CAK2B,EAA1B,CAAD,CAAA,CAAmB,EAAnB;CAEC,CAAqD,CAAzB,CAA5B,EAA2B,CAApB,GAAqB,GAA7B,GAAA;CAxfF,IAgfa;;CAhfb,EA4fe,MAAC,IAAhB;AACE,CAAA,GAAA,EAAA,OAAc;CAAd,aAAA;QAAA;CACC,GAAA,OAAD,EAAA;CA9fF,IA4fe;;CA5ff,EAkgBa,MAAC,EAAd;AACE,CAAA,GAAA,EAAA,OAAc;CAAd,aAAA;QAAA;AACmC,CAAnC,CAAsC,EAApB,EAAlB,EAAmC,CAAjB;CAAjB,GAAA,OAAD,IAAA;QAFW;CAlgBb,IAkgBa;;CAlgBb,EA0gBS,IAAT,CAAS,CAAC;CACR,KAAA,IAAA;SAAA,GAAA;CAAA,EAAY,CAAX,EAAD,EAAA;CAAA,EACY,CAAC,EAAZ;CACA,CAAiB,CAAA,CAAjB,CAAiB,CAAlB,EAAA,CAAmB,IAAnB;CACE,IAAA,OAAA;CAAA,CAA8C,CAAtC,EAAR,CAAgC,CAAsB,CAAtD,CAAgC,IAAA,CAAxB;CAEL,CAAQ,CAAR,EAAA,IAAC,MAAD;CACK,EAAA,EAAN,IAAM,QAAN;CACE,CAAwB,GAAvB,CAAD,CAAmC,KAAnC,GAAA;CACW,EAAA,MAAA,CAAX,SAAA;CACE,IAAY,CAAZ,EAAsB,MAAtB;CACA,EAAQ,CAAL,CAAK,SAAR;CACE,EAAY,EAAX,GAAD,EAAY,MAAZ;;kBACA;kBADA;CAAA,CAEA,CAAiB,EAAhB,EAAO,EAFR,OAEA;CAFA,EAGiB,EAAhB,EAAO,SAAR;gBALF;CAMM,EAAA,EAAN,IAAM,YAAN;CAAe,EAAS,EAAV,EAAyC,WAAlC,KAAZ;CAAT,cAAM;CAPR,CAQE,CAAQ,EAAR,EAAgB,MARP;CAFb,UAAM;CADL,CAAQ,GAAX,IAAG;CAHL,MAAkB;CA7gBpB,IA0gBS;;CA1gBT,CA+hBmB,CAAT,GAAA,EAAV,CAAW;CACT,SAAA,iCAAA;CAAA;CAAA;YAAA,wCAAA;0BAAA;CAAA,CAAE,EAAF,CAAA,CAA2B;CAA3B;uBADQ;CA/hBV,IA+hBU;;CA/hBV,EAwiBa,MAAA,EAAb;CACG,GAAA,KAAD,IAAA;CAziBF,IAwiBa;;CAxiBb,EA6iBc,MAAA,GAAd;CACG,GAAA,CAAD,IAAA,IAAA;CA9iBF,IA6iBc;;CA7iBd,EAkjBU,EAAA,GAAV,CAAW;CACT,SAAA,MAAA;AAAA,CAAA,UAAA,sCAAA;iCAAA;CACE,CAAqC,CAAR,CAA5B,CAAW,CAAZ,CAAoB,CAApB,CAAA;CADF,MAAA;CADQ,YAGR;CArjBF,IAkjBU;;CAljBV,EA0jBQ,GAAR,EAAQ,CAAC;CAEP,SAAA,EAAA;CAAA,GAAG,EAAH,EAAA;;UACE;UADF;MAAA,EAAA;CAIE,CAA8B,CAAA,CAA7B,EAAD,CAAqB,CAArB,CAA8B,EAA9B;CACE,EAAY,CAAZ,CAAC,GAAD,EAAA;CAAA,IAEQ,CAAR,IAAA,EAAA;CAFA,IAGQ,CAAR,EAAA,EAAA;CAHA,IAIC,KAAD;CAL4B,EAM5B;CANF,QAA8B;QAJhC;CAFM,YAaN;CAvkBF,IA0jBQ;;CA1jBR,EA2kBU,KAAV,CAAU;CAER,GAAG,EAAH,EAAA;CACE,EAAY,CAAX,CAAD,GAAA;CAAA,GAEQ,EAAR,EAAA;CAFA,GAGQ,EAAR,EAAA,IAAA;CAHA,GAIC,IAAD,EAAA;CAJA,EAMiB,CAAhB,CAAD,EAAQ,CAAR;QAPF;CAFQ,YAUR;CArlBF,IA2kBU;;CA3kBV,EAylBS,IAAT,CAAS,CAAC;CAER,SAAA,EAAA;CAAA,EAAQ,CAAP,EAAD,GAAQ;CAEN,IAAC,GAAD,CAAA;CAEA,GAA8B,IAA9B;CAAA,CAAA,EAAA,CAAQ,GAAR,EAAA;UAFA;CAAA,CAIG,CAAa,EAAf,GAAD,CAAA;CAJA,CAMG,GAAF,CAAD,EAAA,CAAa;CARP,EASN;CATF,MAAQ;CAFD,YAYP;CArmBF,IAylBS;;CAzlBT,EAymBY,MAAA,CAAZ;CACE,SAAA,EAAA;CAAA,CAAA,CAAU,CAAT,EAAD;CAAA,EACM,EAAN,CAAA,GAAM;CAAI,EAAW,EAAX,GAAD,OAAA;CAAT,MAAM;CAFI,YAGV;CA5mBF,IAymBY;;CAzmBZ,EAgnBW,MAAX;;GAAkB,KAAN;QACV;CAAA,EAAkB,CAAjB,EAAD,CAAQ;CAAR,GACC,CAAD,CAAA,CAAkB,CAAlB;CAFS,YAGT;CAnnBF,IAgnBW;;CAhnBX,EAunBgB,EAAA,IAAC,KAAjB;CACE,CAAsC,CAAlB,CAAnB,CAAmB,CAApB,CAAQ,CAAR,EAAoB;CADN,YAEd;CAznBF,IAunBgB;;CAvnBhB,CA8nBM,CAAA,CAAN,KAAO;CACL,CAAA,QAAA;SAAA,GAAA;CAAA,CAAA,CAAK,GAAL,GAAK;CAAc,CAAY,GAAX,IAAZ,CAAA,KAAA;CAAR,MAAK;CACL,GAAG,EAAH,EAAA;CACE,CAAa,EAAZ,CAAY,CAAN,CAAmB,CAA1B;MADF,EAAA;CAGE,CAAA,MAAA;QAJF;CADI,YAMJ;CApoBF,IA8nBM;;CA9nBN,CA6oBe,CAAA,MAAC,IAAhB;CACE,SAAA,kDAAA;AAAG,CAAH,CAAG,EAAA,CAAe,CAAlB,IAAA;CACE,CAAA,CAAY,KAAZ,CAAA;CAAA,CAEM,CAAN,EAAM,EAAA,CAAN,CAAO;CACL,SAAA,IAAA;CAAA,GAA0B,GAA1B,GAAA;CAAA,CAAE,CAAa,IAAf,EAAA,GAAA;YAAA;CACA,GAAG,CAAH,KAAA;AACE,CAAA,WAAA,KAAA;kCAAA;CAAA,CAAE,CAAO,EAAA,SAAT;CAAA,YAAA;CADF,kBAEE;YAJE;CAFN,QAEM;CAFN,CAQA,CAAK,KAAL,CAAM;CACJ,aAAA,yCAAA;AAAA,CAAA,cAAA,MAAA;yCAAA;CACE,EAAU,CAAV,CAAU,EAAV,KAAA;AACG,CAAH,GAAG,CAAA,CAAA,EAAH,IAAA;CACE,EAAU,EAAV,EAAA,OAAA;MADF,QAAA;CAGE,CAAU,GAAV,EAAA,OAAC;cAJH;CAMA,CAAA,EAAG,CAAY,GAAZ,IAAH;CACE,CAAA,CAAA,EAAA,EAAA,OAAA;CACA,sBAFF;cANA;CAUA;CAAA,gBAAA,2BAAA;iCAAA;CAAA,CAAW,CAAX,EAAA,EAAA,OAAA;CAAA,YAXF;CAAA,UAAA;CADG,gBAcH;CAtBF,QAQK;QATP;AAyBA,CAAA,UAAA,sCAAA;iCAAA;CACE;CAAA,YAAA,yCAAA;4BAAA;CACE,CAAA,GAAQ,CAAR,EAAkB,EAAlB;CADF,QADF;CAAA,MAzBA;CADa,YA6Bb;CA1qBF,IA6oBe;;CA7oBf,CAorBwB,CAAb,CAAA,CAAK,CAAA,CAAA,EAAhB;CACE,SAAA,EAAA;CAAC,CAAiB,CAAA,CAAjB,CAAiB,CAAlB,EAAA,CAAmB,IAAnB;CAEE,EAAA,SAAA;AAAqB,CAArB,EAAO,CAAJ,CAAW,EAAc,CAA5B;AACS,CAAP,EAAA,EAAA,KAAA;MADF,IAAA;CAGE,EAAA,EAAA,KAAA;UAHF;CAMA,GAAG,EAAH,CAAU,CAAV;CACE,GAAG,CAAK,KAAR;CACE,EAAA,SAAA;CACM,EAAI,CAAJ,EAFR,CAEwB,KAFxB;CAGE,EAAA,CAAO,QAAP;YAJJ;MAAA,IAAA;CAOE,GAAgB,CAAK,KAArB;CAAA,EAAA,CAAO,QAAP;YAPF;UANA;CAgBA,GAAa,EAAb,CAAoB,CAApB;AAAQ,CAAR,EAAA,CAAO,MAAP;UAhBA;CAAA,CAmBwB,CAAxB,EAAC,CAAD,CAA4C,CAA5C,OAAA;AAEkB,CAAlB,EAAkD,CAA/C,CAAC,CAAc,CAAmB,CAArC;CACG,CAAc,CAAf,EAAC,CAAD,IAAA,OAAA;UAxBc;CAAlB,MAAkB;CADT,IAAK;;CAprBhB,CAktBmB,CAAb,CAAN,CAAW,CAAA,CAAA,EAAC;CAEV,SAAA,EAAA;CAAA,CAAY,CAA2B,CAA3B,CAAZ,CAAA,CAA+C,IAAnC,IAAU;CAErB,CAAiB,CAAA,CAAjB,CAAiB,CAAlB,EAAA,CAAmB,IAAnB;CACE,CAAwB,GAAvB,CAAD,EAAA,OAAA;CACA,GAA4B,CAAC,GAA7B;CAAC,CAAc,GAAd,CAAD,IAAA,OAAA;UAFgB;CAAlB,MAAkB;CAJd,IAAK;;CAltBX,CA4tBmB,CAAb,CAAN,CAAW,CAAA,CAAA,EAAC;CAEV,SAAA,EAAA;CAAA,CAAsC,EAArC,CAAD,CAAA,CAA0B,QAA1B;CAGC,CAAiB,CAAA,CAAjB,CAAiB,CAAlB,EAAA,CAAmB,IAAnB;CACE,GAAqC,CAAO,GAA5C;CAAA,CAAwB,GAAvB,CAAD,IAAA,KAAA;UAAA;CACA,GAA4B,CAAC,GAA7B;CAAC,CAAc,GAAd,CAAD,IAAA,OAAA;UAFgB;CAAlB,MAAkB;CALd,IAAK;;CA5tBX,CAuuBsB,CAAd,CAAA,EAAR,EAAa,CAAC;CACZ,SAAA,EAAA;CAAA,GAAsB,EAAtB,IAAA;CAAA,EAAO,GAAP;QAAA;CACC,CAAoB,CAAA,CAApB,EAAD,GAAqB,EAArB,EAAA;CACE,EAAY,CAAZ,CAAC,GAAD,EAAY;CAEX,CAAiB,CAAA,EAAjB,CAAD,EAAA,CAAmB,MAAnB;CACE,aAAA,CAAA;CAAA,EAAY,EAAC,EAAO,CAApB,EAAA;CACA,GAAiB,CAAK,KAAtB;CAAA,GAAY,IAAZ,IAAA;YADA;CAAA,CAEkD,CAAtC,EAAZ,CAAoC,EAAc,CAAd,CAApC,GAAoC,CAAxB;CAET,CAAQ,CAAR,EAAA,IAAC,QAAD;CACK,EAAA,EAAN,IAAM,UAAN;CACE,CAAwB,CAAgB,EAAvC,CAAD,QAAA,CAAA;CACW,EAAA,MAAA,CAAX,WAAA;CACE,GAAG,CAAK,WAAR;CACE,EAAY,EAAX,GAAD,UAAA;CADF,EAEE;MAFF,YAAA;CAIS,IAAK,CAAZ,EAAsB,iBAAtB;kBALO;CAAX,CAOE,CAAQ,EAAR,EAAgB,QAPP;CAFb,YAAM;CADL,CAAQ,GAAX,MAAG;CALL,QAAkB;CAHpB,MAAqB;CAFf,IAAK;;CAvuBb,EA+vBQ,CAAA,EAAR,EAAa,CAAC;CAAc,GAAA,GAAD,EAAA,IAAA;CAAnB,IAAK;;CA/vBb,CAuwBK,CAAL,MAAM;CACJ,SAAA,EAAA;CAAK,CAAQ,CAAR,CAAL,CAAK,CAAA,CAAA,EAAC,IAAN;CACG,CAAiB,CAAA,EAAjB,CAAD,EAAA,CAAmB,MAAnB;CACG,CAAuB,CAAA,EAAvB,CAAD,CAA0D,CAA1D,OAAA,EAAA;CADF,QAAkB;CADpB,GAAA,GAAK;CAxwBP,IAuwBK;;CAvwBL,EAmxBO,EAAP,GAAO,CAAC;CACL,CAAa,EAAb,KAAD,IAAA;CAAc,CAAC,MAAA;CADV,OACL;CApxBF,IAmxBO;;CAnxBP,CAyxBgB,CAAR,EAAA,CAAR,CAAQ,EAAC;;GAAyB,KAAV;QACtB;CAAA,EAAiB,CAAjB,EAAA,CAAO;CACN,CAAiB,EAAjB,CAAD,CAAA,CAAA,EAAA,IAAA;CA3xBF,IAyxBQ;;CAzxBR,CA+xBgB,CAAR,EAAA,CAAR,CAAQ,EAAC;;GAAyB,KAAV;QACtB;CAAA,EAAiB,CAAjB,EAAA,CAAO;CACN,CAAiB,EAAjB,CAAD,CAAA,CAAA,EAAA,IAAA;CAjyBF,IA+xBQ;;CA/xBR,CAqyBkB,CAAR,EAAA,CAAA,CAAA,CAAV,CAAW;;GAAyB,KAAV;QACxB;CAAA,EAAmB,CAAnB,EAAA,CAAO,CAAP;CACC,CAAiB,EAAjB,CAAD,CAAA,CAAA,EAAA,IAAA;CAvyBF,IAqyBU;;CAryBV,CA2yBe,CAAR,EAAP,CAAO,CAAA,EAAC;;GAAyB,KAAV;QACrB;CAAA,EAAmB,CAAnB,CAAmB,CAAnB,CAAO,CAAP;CACC,CAAD,CAAmB,CAAlB,CAAU,CAAX,CAAA,EAAA,IAAA;CA7yBF,IA2yBO;;CA3yBP,CAizBmB,CAAT,GAAA,CAAA,CAAV,CAAW;;GAAkB,KAAV;QACjB;CAAA,EAAiB,EAAjB,CAAA,CAAO;AACK,CAAX,CAA8B,EAA9B,EAAD,CAAoB,CAApB,CAAA,IAAA;CAnzBF,IAizBU;;CAjzBV,CAuzBsB,CAAT,GAAA,CAAA,EAAC,EAAd;;GAAgC,KAAV;QACpB;CAAA,EAAiB,EAAjB,CAAA,CAAO;CACN,CAA6B,EAA7B,EAAD,CAAmB,CAAnB,CAAA,IAAA;CAzzBF,IAuzBa;;CAvzBb,EAi0BW,CAAX,GAAC;;CAj0BD,EAo0Be,CAAf,GAAC,IAAD;;CAp0BA;;CAraF;;CA6uCA,CAAA,CAAG,GAAM;CACP,EAAiB,CAAjB,EAAM,CAAN;CACc,EAAR,CAFR,EAAA;CAGE,EAAO,CAAP,EAAA,GAAO;CAAA,YAAG;CAAV,IAAO;IAHT,EAAA;CAKE,EAAiB,CAAjB,EAAM,CAAN;IAlvCF;;AA2vCc,CAAd,CAAA,EAAA;CAAA,SAAA;IA3vCA;;CAAA,CA6vCA,CAAa,IAAb,EAAG;CAED,OAAA,6CAAA;AAAgB,CAAhB,GAAA,OAAA;CAAA,GAAA,SAAO;MAAP;CACA,GAAA,CAA2C,EAAX;CAAhC,CAAoB,EAAb,IAAA,KAAA;MADP;AAIG,CAAH,GAAA,CAAqB,CAAlB,CAAA,CAAH;CACE,EAAa,GAAb,CAAA,GAAA;AAEO,CAAP,EAAwB,CAAjB,CAA2C,CAAlD,CAA+B,EAAG,CAAA;;CACvB,EAAd,CAAK,GAAO,GAAP,iBAAe;UAAf;CACA,GAAA,WAAO;QAJT;AAMA,CAAA,UAAA,gCAAA;uBAAA;AAES,CAAP,CAAkB,CAAA,CAAlB,IAAA;CACE,CAAW,CAAA,CAAA,GAAyB,CAApC,EAAA;UADF;CAAA,CAIuB,EAAA,CAAvB,CAAM,EAAN,CAA8B;CANhC,MAPF;MAAA;AAkBE,CAAA,UAAA,kCAAA;uBAAA;CAGE,CAAc,CAAA,CAAX,IAAH;CACE,kBADF;MAAA,IAAA;CAIE,CAAA,EAAA,GAAyB,CAAzB,EAAA;UAPJ;CAAA,MAlBF;MAJA;CAFW,UAmCX;CAhyCF,EA6vCa;CA7vCb"
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00835649082042789,0.00489128636183972],"translate":[31.233955489106847,8.828972924431127]},"objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":53073,"arcs":[[[-1,-2,-3,-4]]],"properties":{"rate":0.078}},{"type":"Polygon","id":30105,"arcs":[[-5,-6,-7,-8,-9,-10]],"properties":{"rate":0.046}},{"type":"Polygon","id":30029,"arcs":[[-11,-12,-13,-14,-15,-16,-17,-18,-19,-20]],"properties":{"rate":0.088}},{"type":"Polygon","id":16021,"arcs":[[-21,-22,-23,-24]],"properties":{"rate":0.12}},{"type":"Polygon","id":30071,"arcs":[[-25,-26,-27,-28,-29,5]],"properties":{"rate":0.048}},{"type":"Polygon","id":38079,"arcs":[[-30,-31,-32,-33]],"properties":{"rate":0.097}},{"type":"Polygon","id":30053,"arcs":[[-34,23,-35,-36,11]],"properties":{"rate":0.111}},{"type":"Polygon","id":38009,"arcs":[[-37,-38,-39,-40,30]],"properties":{"rate":0.029}},{"type":"Polygon","id":30035,"arcs":[[-41,19,-42,-43]],"properties":{"rate":0.072}},{"type":"Polygon","id":30041,"arcs":[[-44,-45,-46,-47]],"properties":{"rate":0.051}},{"type":"Polygon","id":30005,"arcs":[[-48,43,-49,-50,25]],"properties":{"rate":0.05}},{"type":"Polygon","id":30019,"arcs":[[-51,9,-52,-53]],"properties":{"rate":0.042}},{"type":"Polygon","id":38067,"arcs":[[-54,-55,-56,-57]],"properties":{"rate":0.051}},{"type":"Polygon","id":27069,"arcs":[[-58,56,-59,-60]],"properties":{"rate":0.052}},{"type":"Polygon","id":38095,"arcs":[[-61,-62,32,-63,-64,-65]],"properties":{"rate":0.026}},{"type":"Polygon","id":38019,"arcs":[[-66,60,-67,-68,54]],"properties":{"rate":0.025}},{"type":"Polygon","id":53047,"arcs":[[-69,3,-70,-71,-72,-73,-74,-75]],"properties":{"rate":0.074}},{"type":"Polygon","id":53065,"arcs":[[-76,-77,-78,-79,-80]],"properties":{"rate":0.105}},{"type":"Polygon","id":53051,"arcs":[[-81,79,-82,-83,21]],"properties":{"rate":0.121}},{"type":"Polygon","id":53019,"arcs":[[-84,74,-85,76]],"properties":{"rate":0.113}},{"type":"Polygon","id":30051,"arcs":[[-86,45,-87,-88,-89]],"properties":{"rate":0.047}},{"type":"Polygon","id":38023,"arcs":[[-90,-91,-92,-93]],"properties":{"rate":0.034}},{"type":"Polygon","id":38013,"arcs":[[-94,92,-95,-96,-97,-98]],"properties":{"rate":0.022}},{"type":"Polygon","id":30101,"arcs":[[42,-99,87,-100]],"properties":{"rate":0.041}},{"type":"Polygon","id":38075,"arcs":[[37,-101,97,-102,-103]],"properties":{"rate":0.033}},{"type":"Polygon","id":27135,"arcs":[[-104,-105,59,-106,-107]],"properties":{"rate":0.05}},{"type":"Polygon","id":30091,"arcs":[[-108,52,-109,-110,90]],"properties":{"rate":0.043}},{"type":"Polygon","id":16017,"arcs":[[22,82,-111,-112,-113,-114,34]],"properties":{"rate":0.095}},{"type":"Polygon","id":38101,"arcs":[[96,-115,-116,-117,101]],"properties":{"rate":0.028}},{"type":"MultiPolygon","id":53055,"arcs":[[[-118]],[[-119]],[[-120]]],"properties":{"rate":0.047}},{"type":"Polygon","id":27071,"arcs":[[-121,-122,-123,-124,-125]],"properties":{"rate":0.073}},{"type":"MultiPolygon","id":53057,"arcs":[[[-126,-127,-128,69,2,-129]]],"properties":{"rate":0.091}},{"type":"Polygon","id":38105,"arcs":[[91,109,-130,-131,-132,94]],"properties":{"rate":0.02}},{"type":"Polygon","id":38049,"arcs":[[38,102,116,-133,-134,-135]],"properties":{"rate":0.029}},{"type":"Polygon","id":27137,"arcs":[[-136,124,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151]],"properties":{"rate":0.082}},{"type":"Polygon","id":30085,"arcs":[[51,8,-152,-153,129,108]],"properties":{"rate":0.075}},{"type":"Polygon","id":53007,"arcs":[[127,-154,-155,-156,-157,70]],"properties":{"rate":0.065}},{"type":"Polygon","id":38061,"arcs":[[114,95,131,-158,-159,-160]],"properties":{"rate":0.044}},{"type":"Polygon","id":27089,"arcs":[[105,58,-161,-162,-163,-164,-165]],"properties":{"rate":0.062}},{"type":"Polygon","id":38069,"arcs":[[31,39,134,-166,-167,-168,62]],"properties":{"rate":0.04}},{"type":"MultiPolygon","id":38071,"arcs":[[[66,64,-169,-170,-171]]],"properties":{"rate":0.032}},{"type":"Polygon","id":38099,"arcs":[[67,170,-172,-173,160,55]],"properties":{"rate":0.045}},{"type":"Polygon","id":27007,"arcs":[[-174,106,164,-175,-176,-177,-178,-179,122]],"properties":{"rate":0.072}},{"type":"Polygon","id":30073,"arcs":[[41,18,-180,-181,88,98]],"properties":{"rate":0.06}},{"type":"MultiPolygon","id":53029,"arcs":[[[-182,-183]],[[-184]]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":53009,"arcs":[[[-185,-186,-187]]],"properties":{"rate":0.085}},{"type":"Polygon","id":38005,"arcs":[[167,-188,-189,-190,168,63]],"properties":{"rate":0.053}},{"type":"Polygon","id":30015,"arcs":[[46,85,180,-191,-192,-193,-194,48]],"properties":{"rate":0.042}},{"type":"MultiPolygon","id":53061,"arcs":[[[126,-195,182,-196,-197,153]]],"properties":{"rate":0.101}},{"type":"Polygon","id":30089,"arcs":[[35,113,-198,-199,-200,-201,12]],"properties":{"rate":0.112}},{"type":"Polygon","id":27075,"arcs":[[-202,150,-203,-204]],"properties":{"rate":0.075}},{"type":"Polygon","id":38063,"arcs":[[171,169,189,-205,-206,-207,-208]],"properties":{"rate":0.029}},{"type":"Polygon","id":38035,"arcs":[[172,207,-209,-210,-211,161]],"properties":{"rate":0.035}},{"type":"Polygon","id":27119,"arcs":[[162,210,-212,-213,-214,-215,-216,-217,-218]],"properties":{"rate":0.044}},{"type":"Polygon","id":27113,"arcs":[[163,217,-219,215,-220,174]],"properties":{"rate":0.056}},{"type":"Polygon","id":30083,"arcs":[[152,-221,-222,-223,-224]],"properties":{"rate":0.046}},{"type":"Polygon","id":53017,"arcs":[[71,156,-225,-226]],"properties":{"rate":0.066}},{"type":"Polygon","id":38053,"arcs":[[130,223,-227,-228,-229,-230,157]],"properties":{"rate":0.022}},{"type":"MultiPolygon","id":53031,"arcs":[[[-231]],[[-232,186,-233,-234,-235]]],"properties":{"rate":0.074}},{"type":"Polygon","id":30099,"arcs":[[179,17,-236,-237,190]],"properties":{"rate":0.04}},{"type":"Polygon","id":30055,"arcs":[[151,7,-238,-239,-240,220]],"properties":{"rate":0.032}},{"type":"Polygon","id":16079,"arcs":[[112,-241,-242,-243,-244,-245,197]],"properties":{"rate":0.119}},{"type":"Polygon","id":30047,"arcs":[[13,200,-246]],"properties":{"rate":0.083}},{"type":"Polygon","id":53063,"arcs":[[78,-247,-248,-249,-250,110,81]],"properties":{"rate":0.083}},{"type":"Polygon","id":27029,"arcs":[[175,219,214,-251,-252,-253]],"properties":{"rate":0.091}},{"type":"Polygon","id":16055,"arcs":[[111,249,-254,240]],"properties":{"rate":0.087}},{"type":"Polygon","id":30033,"arcs":[[6,28,-255,-256,-257,-258,237]],"properties":{"rate":0.034}},{"type":"Polygon","id":27125,"arcs":[[218,216]],"properties":{"rate":0.067}},{"type":"Polygon","id":53025,"arcs":[[225,-259,-260,-261,-262,-263,-264,72]],"properties":{"rate":0.073}},{"type":"Polygon","id":53043,"arcs":[[73,263,-265,-266,246,77,84]],"properties":{"rate":0.074}},{"type":"Polygon","id":30049,"arcs":[[235,16,-267,-268,-269,-270,-271]],"properties":{"rate":0.043}},{"type":"MultiPolygon","id":53035,"arcs":[[[-272]],[[-273,-274,-275,-276,-277]]],"properties":{"rate":0.071}},{"type":"Polygon","id":27061,"arcs":[[123,178,-278,-279,136]],"properties":{"rate":0.092}},{"type":"Polygon","id":38055,"arcs":[[132,115,159,-280,-281,-282,-283,-284]],"properties":{"rate":0.034}},{"type":"Polygon","id":38027,"arcs":[[188,-285,-286,-287,204]],"properties":{"rate":0.038}},{"type":"Polygon","id":38103,"arcs":[[166,-288,-289,-290,-291,284,187]],"properties":{"rate":0.038}},{"type":"Polygon","id":38083,"arcs":[[133,283,-292,-293,287,165]],"properties":{"rate":0.037}},{"type":"Polygon","id":38025,"arcs":[[158,229,-294,-295,-296,279]],"properties":{"rate":0.036}},{"type":"Polygon","id":30027,"arcs":[[49,193,-297,-298,-299,-300,-301,26]],"properties":{"rate":0.047}},{"type":"Polygon","id":30021,"arcs":[[239,-302,-303,221]],"properties":{"rate":0.048}},{"type":"MultiPolygon","id":53033,"arcs":[[[-304]],[[196,-305,-306,-307,154]]],"properties":{"rate":0.088}},{"type":"Polygon","id":30013,"arcs":[[191,236,270,-308,-309]],"properties":{"rate":0.052}},{"type":"Polygon","id":38091,"arcs":[[206,-310,-311,-312,-313,208]],"properties":{"rate":0.021}},{"type":"Polygon","id":38039,"arcs":[[205,286,-314,-315,-316,309]],"properties":{"rate":0.036}},{"type":"Polygon","id":38097,"arcs":[[211,209,312,-317,-318]],"properties":{"rate":0.035}},{"type":"MultiPolygon","id":53045,"arcs":[[[-319]],[[234,-320,-321,-322,-323,273,-324]]],"properties":{"rate":0.094}},{"type":"Polygon","id":30063,"arcs":[[245,199,-325,-326,-327,-328,-329,-330,14]],"properties":{"rate":0.056}},{"type":"Polygon","id":30077,"arcs":[[15,329,-331,-332,-333,266]],"properties":{"rate":0.073}},{"type":"Polygon","id":30069,"arcs":[[27,300,-334,-335,254]],"properties":{"rate":0.045}},{"type":"Polygon","id":53037,"arcs":[[155,306,-336,258,224]],"properties":{"rate":0.073}},{"type":"Polygon","id":38031,"arcs":[[285,290,-337,313]],"properties":{"rate":0.028}},{"type":"Polygon","id":38057,"arcs":[[280,295,-338,-339,-340]],"properties":{"rate":0.033}},{"type":"MultiPolygon","id":53027,"arcs":[[[233,-341,-342,-343,-344,319]]],"properties":{"rate":0.117}},{"type":"Polygon","id":27087,"arcs":[[250,213,-345,-346]],"properties":{"rate":0.06}},{"type":"Polygon","id":27107,"arcs":[[317,-347,-348,-349,344,212]],"properties":{"rate":0.051}},{"type":"Polygon","id":30061,"arcs":[[198,244,-350,324]],"properties":{"rate":0.086}},{"type":"Polygon","id":27021,"arcs":[[277,177,-351,-352,-353,-354,-355,-356]],"properties":{"rate":0.079}},{"type":"Polygon","id":23003,"arcs":[[-357,-358,-359,-360,-361]],"properties":{"rate":0.093}},{"type":"Polygon","id":30045,"arcs":[[192,308,-362,-363,296]],"properties":{"rate":0.046}},{"type":"Polygon","id":16009,"arcs":[[253,248,-364,-365,241]],"properties":{"rate":0.121}},{"type":"Polygon","id":27057,"arcs":[[176,252,-366,-367,350]],"properties":{"rate":0.073}},{"type":"MultiPolygon","id":53053,"arcs":[[[-368,-369,-370,-371,305]],[[-372,276]],[[-373,274,322]]],"properties":{"rate":0.088}},{"type":"Polygon","id":30109,"arcs":[[222,302,-374,-375,-376,226]],"properties":{"rate":0.041}},{"type":"Polygon","id":38007,"arcs":[[228,-377,-378,-379,293]],"properties":{"rate":0.013}},{"type":"Polygon","id":38033,"arcs":[[227,375,-380,-381,376]],"properties":{"rate":0.025}},{"type":"Polygon","id":38043,"arcs":[[288,292,-382,-383,-384,-385]],"properties":{"rate":0.034}},{"type":"Polygon","id":38093,"arcs":[[336,289,384,-386,-387,-388,314]],"properties":{"rate":0.032}},{"type":"Polygon","id":38015,"arcs":[[291,282,-389,-390,-391,381]],"properties":{"rate":0.028}},{"type":"Polygon","id":38065,"arcs":[[281,339,-392,388]],"properties":{"rate":0.031}},{"type":"Polygon","id":53001,"arcs":[[264,262,-393,-394]],"properties":{"rate":0.065}},{"type":"Polygon","id":53075,"arcs":[[265,393,-395,-396,-397,-398,-399,-400,363,247]],"properties":{"rate":0.047}},{"type":"Polygon","id":38003,"arcs":[[315,387,-401,-402,-403,310]],"properties":{"rate":0.034}},{"type":"Polygon","id":38017,"arcs":[[311,402,-404,-405,-406,346,316]],"properties":{"rate":0.037}},{"type":"Polygon","id":53067,"arcs":[[-407,320,343,-408,368]],"properties":{"rate":0.071}},{"type":"Polygon","id":30079,"arcs":[[301,238,257,-409,-410,373]],"properties":{"rate":0.031}},{"type":"Polygon","id":27005,"arcs":[[251,345,348,-411,-412,-413,365]],"properties":{"rate":0.064}},{"type":"Polygon","id":27027,"arcs":[[347,405,-414,-415,-416,410]],"properties":{"rate":0.036}},{"type":"Polygon","id":16057,"arcs":[[364,399,-417,-418,242]],"properties":{"rate":0.059}},{"type":"Polygon","id":53077,"arcs":[[335,370,-419,-420,-421,-422,259]],"properties":{"rate":0.068}},{"type":"Polygon","id":30059,"arcs":[[307,269,-423,-424,-425,-426,-427,361]],"properties":{"rate":0.078}},{"type":"Polygon","id":27001,"arcs":[[278,355,-428,-429,-430,-431,-432,137]],"properties":{"rate":0.081}},{"type":"Polygon","id":26131,"arcs":[[-433,-434,-435,-436]],"properties":{"rate":0.138}},{"type":"Polygon","id":38089,"arcs":[[294,378,-437,-438,-439,-440,337]],"properties":{"rate":0.028}},{"type":"Polygon","id":38059,"arcs":[[391,338,439,-441,-442,-443,389]],"properties":{"rate":0.03}},{"type":"Polygon","id":26013,"arcs":[[-444,-445,-446,-447]],"properties":{"rate":0.243}},{"type":"Polygon","id":16035,"arcs":[[243,417,-448,-449,-450,325,349]],"properties":{"rate":0.118}},{"type":"Polygon","id":30017,"arcs":[[408,256,-451,-452,-453,-454]],"properties":{"rate":0.046}},{"type":"Polygon","id":30087,"arcs":[[255,334,-455,-456,-457,-458,-459,450]],"properties":{"rate":0.073}},{"type":"Polygon","id":30039,"arcs":[[330,328,-460,-461]],"properties":{"rate":0.082}},{"type":"Polygon","id":27159,"arcs":[[366,412,-462,-463,351]],"properties":{"rate":0.088}},{"type":"Polygon","id":27035,"arcs":[[354,-464,-465,427]],"properties":{"rate":0.074}},{"type":"MultiPolygon","id":53049,"arcs":[[[341,-466,-467,-468]]],"properties":{"rate":0.107}},{"type":"Polygon","id":53041,"arcs":[[342,467,-469,-470,-471,418,369,407]],"properties":{"rate":0.12}},{"type":"Polygon","id":30007,"arcs":[[268,-472,-473,422]],"properties":{"rate":0.062}},{"type":"Polygon","id":27017,"arcs":[[138,431,-474,-475]],"properties":{"rate":0.073}},{"type":"Polygon","id":26053,"arcs":[[434,-476,-477,-478,-479,-480,-481]],"properties":{"rate":0.133}},{"type":"Polygon","id":30065,"arcs":[[333,299,-482,-483,454]],"properties":{"rate":0.075}},{"type":"Polygon","id":26095,"arcs":[[-484,-485,-486,-487,-488]],"properties":{"rate":0.132}},{"type":"Polygon","id":30037,"arcs":[[298,-489,-490,-491,-492,481]],"properties":{"rate":0.047}},{"type":"Polygon","id":30107,"arcs":[[362,426,-493,488,297]],"properties":{"rate":0.043}},{"type":"Polygon","id":53021,"arcs":[[394,392,261,-494,-495,-496]],"properties":{"rate":0.062}},{"type":"Polygon","id":53005,"arcs":[[493,260,421,-497,-498,-499,-500]],"properties":{"rate":0.058}},{"type":"Polygon","id":27111,"arcs":[[411,415,-501,-502,-503,-504,461]],"properties":{"rate":0.063}},{"type":"Polygon","id":38037,"arcs":[[440,438,-505,-506,-507]],"properties":{"rate":0.032}},{"type":"Polygon","id":53023,"arcs":[[396,-508,-509,-510]],"properties":{"rate":0.053}},{"type":"Polygon","id":30025,"arcs":[[374,409,453,-511,-512,-513,-514,379]],"properties":{"rate":0.037}},{"type":"Polygon","id":16049,"arcs":[[326,449,-515,-516,-517,-518,-519,-520,-521]],"properties":{"rate":0.083}},{"type":"Polygon","id":30081,"arcs":[[327,520,-522,-523,-524,459]],"properties":{"rate":0.075}},{"type":"Polygon","id":38029,"arcs":[[390,442,-525,-526,-527,-528,382]],"properties":{"rate":0.051}},{"type":"Polygon","id":38047,"arcs":[[383,527,-529,-530,385]],"properties":{"rate":0.027}},{"type":"Polygon","id":16069,"arcs":[[416,398,-531,-532,515,-533,447]],"properties":{"rate":0.055}},{"type":"Polygon","id":38087,"arcs":[[436,377,380,513,-534,-535,-536]],"properties":{"rate":0.012}},{"type":"Polygon","id":38045,"arcs":[[400,386,529,-537,-538,-539]],"properties":{"rate":0.043}},{"type":"Polygon","id":38041,"arcs":[[437,535,-540,504]],"properties":{"rate":0.027}},{"type":"Polygon","id":27167,"arcs":[[414,-541,-542,-543,500]],"properties":{"rate":0.047}},{"type":"Polygon","id":38073,"arcs":[[401,538,-544,-545,-546,403]],"properties":{"rate":0.06}},{"type":"Polygon","id":38077,"arcs":[[413,404,545,-547,-548,-549,540]],"properties":{"rate":0.043}},{"type":"Polygon","id":53013,"arcs":[[507,395,495,-550,-551,-552]],"properties":{"rate":0.084}},{"type":"Polygon","id":53071,"arcs":[[494,499,-553,549]],"properties":{"rate":0.055}},{"type":"Polygon","id":55051,"arcs":[[-554,-555,-556,-557,477,476,-558]],"properties":{"rate":0.094}},{"type":"Polygon","id":23025,"arcs":[[357,-559,-560,-561,-562,-563,-564]],"properties":{"rate":0.107}},{"type":"Polygon","id":23021,"arcs":[[358,563,-565]],"properties":{"rate":0.116}},{"type":"Polygon","id":30043,"arcs":[[267,332,-566,-567,-568,-569,471]],"properties":{"rate":0.058}},{"type":"Polygon","id":26153,"arcs":[[-570,-571,-572,-573,485]],"properties":{"rate":0.127}},{"type":"Polygon","id":30111,"arcs":[[455,482,491,-574,-575,-576,-577]],"properties":{"rate":0.047}},{"type":"Polygon","id":30103,"arcs":[[456,576,-578]],"properties":{"rate":0.051}},{"type":"Polygon","id":16061,"arcs":[[532,514,448]],"properties":{"rate":0.052}},{"type":"Polygon","id":53003,"arcs":[[397,509,-579,530]],"properties":{"rate":0.081}},{"type":"Polygon","id":38085,"arcs":[[441,506,-580,-581,524]],"properties":{"rate":0.043}},{"type":"Polygon","id":26071,"arcs":[[-582,435,480,-583,-584,-585,-586,-587,445]],"properties":{"rate":0.117}},{"type":"Polygon","id":27115,"arcs":[[473,430,-588,-589,-590,-591]],"properties":{"rate":0.091}},{"type":"Polygon","id":23019,"arcs":[[359,564,562,-592,-593,-594,-595]],"properties":{"rate":0.08}},{"type":"Polygon","id":53059,"arcs":[[470,-596,-597,-598,-599,-600,419]],"properties":{"rate":0.094}},{"type":"Polygon","id":53015,"arcs":[[469,-601,-602,-603,-604,595]],"properties":{"rate":0.128}},{"type":"MultiPolygon","id":53069,"arcs":[[[466,-605,600,468]]],"properties":{"rate":0.114}},{"type":"Polygon","id":27153,"arcs":[[462,503,-606,-607,-608,352]],"properties":{"rate":0.075}},{"type":"Polygon","id":27097,"arcs":[[353,607,-609,-610,-611,463]],"properties":{"rate":0.09}},{"type":"Polygon","id":55125,"arcs":[[-612,582,479,478,556,-613,-614]],"properties":{"rate":0.071}},{"type":"MultiPolygon","id":41007,"arcs":[[[-615,-616,-617]]],"properties":{"rate":0.082}},{"type":"Polygon","id":38001,"arcs":[[539,534,-618,-619,-620,-621,579,505]],"properties":{"rate":0.027}},{"type":"Polygon","id":38081,"arcs":[[544,-622,-623,-624,546]],"properties":{"rate":0.065}},{"type":"Polygon","id":38051,"arcs":[[528,526,-625,-626,-627,536]],"properties":{"rate":0.031}},{"type":"Polygon","id":38021,"arcs":[[537,626,-628,-629,621,543]],"properties":{"rate":0.041}},{"type":"Polygon","id":38011,"arcs":[[533,512,-630,617]],"properties":{"rate":0.027}},{"type":"Polygon","id":30023,"arcs":[[331,460,523,-631,-632,565]],"properties":{"rate":0.065}},{"type":"Polygon","id":26043,"arcs":[[-633,585,-634,-635,-636]],"properties":{"rate":0.12}},{"type":"Polygon","id":27095,"arcs":[[428,464,610,-637,-638,-639,-640]],"properties":{"rate":0.105}},{"type":"Polygon","id":30097,"arcs":[[492,425,-641,-642,489]],"properties":{"rate":0.031}},{"type":"Polygon","id":30031,"arcs":[[472,568,-643,-644,-645,-646,-647,423]],"properties":{"rate":0.055}},{"type":"Polygon","id":30067,"arcs":[[424,646,-648,-649,-650,640]],"properties":{"rate":0.061}},{"type":"Polygon","id":30093,"arcs":[[566,631,-651,-652]],"properties":{"rate":0.055}},{"type":"MultiPolygon","id":41009,"arcs":[[[602,-653,616,-654,-655,-656]]],"properties":{"rate":0.126}},{"type":"Polygon","id":27065,"arcs":[[429,639,-657,587]],"properties":{"rate":0.103}},{"type":"Polygon","id":55013,"arcs":[[-658,589,-659,-660,-661,-662]],"properties":{"rate":0.091}},{"type":"Polygon","id":55113,"arcs":[[-663,-664,-665,-666,-667]],"properties":{"rate":0.071}},{"type":"Polygon","id":55129,"arcs":[[-668,661,-669,663]],"properties":{"rate":0.078}},{"type":"Polygon","id":30011,"arcs":[[510,452,-670,-671,-672,-673]],"properties":{"rate":0.039}},{"type":"Polygon","id":30095,"arcs":[[490,641,649,-674,573]],"properties":{"rate":0.052}},{"type":"Polygon","id":27051,"arcs":[[542,-675,-676,-677,501]],"properties":{"rate":0.068}},{"type":"Polygon","id":27041,"arcs":[[502,676,-678,-679,605]],"properties":{"rate":0.056}},{"type":"Polygon","id":55041,"arcs":[[583,611,-680,-681,-682,-683,-684]],"properties":{"rate":0.081}},{"type":"Polygon","id":53011,"arcs":[[603,655,-685,596]],"properties":{"rate":0.127}},{"type":"Polygon","id":53039,"arcs":[[420,599,-686,-687,-688,-689,-690,496]],"properties":{"rate":0.081}},{"type":"Polygon","id":30003,"arcs":[[577,575,-691,-692,-693,-694,457]],"properties":{"rate":0.102}},{"type":"Polygon","id":27155,"arcs":[[541,548,-695,-696,-697,674]],"properties":{"rate":0.062}},{"type":"Polygon","id":55037,"arcs":[[584,683,-698,633]],"properties":{"rate":0.081}},{"type":"Polygon","id":41059,"arcs":[[552,498,-699,-700,-701,-702,550]],"properties":{"rate":0.078}},{"type":"Polygon","id":41063,"arcs":[[551,701,-703,-704,-705,516,531,578,508]],"properties":{"rate":0.087}},{"type":"Polygon","id":26109,"arcs":[[-706,635,-707,-708,-709,-710]],"properties":{"rate":0.125}},{"type":"Polygon","id":55099,"arcs":[[555,-711,665,-712,-713,-714,-715,612]],"properties":{"rate":0.094}},{"type":"Polygon","id":46105,"arcs":[[619,-716,-717,-718,-719,-720]],"properties":{"rate":0.039}},{"type":"Polygon","id":46031,"arcs":[[580,620,719,-721,-722,-723,-724]],"properties":{"rate":0.056}},{"type":"Polygon","id":46063,"arcs":[[629,511,672,-725,715,618]],"properties":{"rate":0.023}},{"type":"Polygon","id":46021,"arcs":[[525,723,-726,-727,624]],"properties":{"rate":0.045}},{"type":"Polygon","id":30001,"arcs":[[630,522,-728,-729,-730,-731,650]],"properties":{"rate":0.044}},{"type":"Polygon","id":46089,"arcs":[[625,726,-732,-733,-734,627]],"properties":{"rate":0.05}},{"type":"Polygon","id":46013,"arcs":[[628,733,-735,-736,-737,-738,-739,622]],"properties":{"rate":0.031}},{"type":"Polygon","id":46109,"arcs":[[547,-740,-741,-742,-743,694]],"properties":{"rate":0.048}},{"type":"Polygon","id":46091,"arcs":[[623,738,-744,739]],"properties":{"rate":0.047}},{"type":"Polygon","id":41049,"arcs":[[497,689,-745,-746,-747,698]],"properties":{"rate":0.074}},{"type":"Polygon","id":55085,"arcs":[[613,714,-748,-749,679]],"properties":{"rate":0.074}},{"type":"Polygon","id":41061,"arcs":[[702,700,-750,-751]],"properties":{"rate":0.102}},{"type":"Polygon","id":30057,"arcs":[[567,651,730,-752,642]],"properties":{"rate":0.048}},{"type":"Polygon","id":27009,"arcs":[[609,-753,-754,636]],"properties":{"rate":0.07}},{"type":"Polygon","id":41021,"arcs":[[744,688,-755,-756,-757]],"properties":{"rate":0.056}},{"type":"Polygon","id":30075,"arcs":[[451,458,693,-758,-759,-760,669]],"properties":{"rate":0.04}},{"type":"Polygon","id":26031,"arcs":[[-761,-762,-763,-764,-765,-766]],"properties":{"rate":0.086}},{"type":"MultiPolygon","id":41057,"arcs":[[[615,-767,-768,-769,-770,-771]]],"properties":{"rate":0.082}},{"type":"Polygon","id":41067,"arcs":[[653,770,-772,-773,-774]],"properties":{"rate":0.096}},{"type":"Polygon","id":27145,"arcs":[[608,606,678,-775,-776,-777,-778,-779,752]],"properties":{"rate":0.068}},{"type":"Polygon","id":27149,"arcs":[[675,696,-780,-781,-782]],"properties":{"rate":0.043}},{"type":"Polygon","id":27121,"arcs":[[677,781,-783,-784,774]],"properties":{"rate":0.064}},{"type":"Polygon","id":41055,"arcs":[[754,687,-785]],"properties":{"rate":0.076}},{"type":"Polygon","id":27059,"arcs":[[656,638,-786,-787,-788]],"properties":{"rate":0.083}},{"type":"Polygon","id":27025,"arcs":[[588,787,-789,-790,-791,658]],"properties":{"rate":0.084}},{"type":"Polygon","id":55095,"arcs":[[659,790,-792,-793,-794]],"properties":{"rate":0.084}},{"type":"Polygon","id":41051,"arcs":[[654,773,-795,-796,597,684]],"properties":{"rate":0.109}},{"type":"Polygon","id":41027,"arcs":[[685,598,795,-797,-798]],"properties":{"rate":0.066}},{"type":"Polygon","id":41065,"arcs":[[686,797,-799,-800,-801,-802,755,784]],"properties":{"rate":0.08}},{"type":"Polygon","id":16059,"arcs":[[521,519,-803,-804,-805,-806,727]],"properties":{"rate":0.065}},{"type":"MultiPolygon","id":23029,"arcs":[[[-807,360,594,-808]]],"properties":{"rate":0.104}},{"type":"Polygon","id":23007,"arcs":[[559,-809,-810,-811,-812]],"properties":{"rate":0.112}},{"type":"Polygon","id":26141,"arcs":[[-813,765,-814,-815]],"properties":{"rate":0.16}},{"type":"Polygon","id":55005,"arcs":[[660,793,-816,-817,-818,668]],"properties":{"rate":0.071}},{"type":"Polygon","id":55107,"arcs":[[664,817,-819,-820,711]],"properties":{"rate":0.101}},{"type":"Polygon","id":30009,"arcs":[[574,673,648,-821,-822,690]],"properties":{"rate":0.048}},{"type":"Polygon","id":46129,"arcs":[[725,722,-823,-824,-825,731]],"properties":{"rate":0.04}},{"type":"Polygon","id":46045,"arcs":[[732,824,-826,-827,734]],"properties":{"rate":0.027}},{"type":"Polygon","id":46037,"arcs":[[737,-828,-829,-830,-831,740,743]],"properties":{"rate":0.053}},{"type":"Polygon","id":27011,"arcs":[[742,-832,-833,-834,779,695]],"properties":{"rate":0.045}},{"type":"Polygon","id":27141,"arcs":[[753,778,-835,-836,-837,785,637]],"properties":{"rate":0.081}},{"type":"Polygon","id":55069,"arcs":[[747,713,-838,-839,-840]],"properties":{"rate":0.096}},{"type":"Polygon","id":46041,"arcs":[[721,-841,-842,-843,-844,822]],"properties":{"rate":0.104}},{"type":"Polygon","id":46137,"arcs":[[720,718,-845,-846,840]],"properties":{"rate":0.078}},{"type":"Polygon","id":55067,"arcs":[[748,839,-847,-848,-849,-850,680]],"properties":{"rate":0.085}},{"type":"Polygon","id":41005,"arcs":[[794,772,-851,-852,798,796]],"properties":{"rate":0.104}},{"type":"Polygon","id":41071,"arcs":[[771,769,-853,-854,850]],"properties":{"rate":0.11}},{"type":"Polygon","id":27171,"arcs":[[777,-855,-856,-857,-858,834]],"properties":{"rate":0.082}},{"type":"Polygon","id":27003,"arcs":[[786,836,-859,-860,-861,788]],"properties":{"rate":0.079}},{"type":"Polygon","id":27067,"arcs":[[775,783,-862,-863,-864,-865]],"properties":{"rate":0.055}},{"type":"Polygon","id":27151,"arcs":[[782,780,833,-866,-867,861]],"properties":{"rate":0.066}},{"type":"Polygon","id":55119,"arcs":[[712,819,-868,-869,-870,837]],"properties":{"rate":0.096}},{"type":"Polygon","id":55083,"arcs":[[681,849,-871,-872,-873,-874,-875,-876,-877]],"properties":{"rate":0.091}},{"type":"Polygon","id":23017,"arcs":[[-878,-879,-880,-881,-882,-883,-884,809]],"properties":{"rate":0.109}},{"type":"Polygon","id":46051,"arcs":[[741,830,-885,-886,-887,831]],"properties":{"rate":0.035}},{"type":"Polygon","id":27093,"arcs":[[776,864,-888,-889,854]],"properties":{"rate":0.078}},{"type":"Polygon","id":33007,"arcs":[[878,-890,-891,-892,-893]],"properties":{"rate":0.078}},{"type":"Polygon","id":27163,"arcs":[[789,860,-894,-895,-896,-897,791]],"properties":{"rate":0.068}},{"type":"Polygon","id":55017,"arcs":[[818,816,-898,-899,-900,867]],"properties":{"rate":0.066}},{"type":"Polygon","id":41047,"arcs":[[853,-901,-902,-903,799,851]],"properties":{"rate":0.103}},{"type":"Polygon","id":16003,"arcs":[[517,704,-904,-905,-906,-907]],"properties":{"rate":0.121}},{"type":"Polygon","id":27073,"arcs":[[832,886,-908,-909,-910,865]],"properties":{"rate":0.054}},{"type":"MultiPolygon","id":23009,"arcs":[[[-911]],[[-912]],[[807,593,-913]]],"properties":{"rate":0.068}},{"type":"Polygon","id":46107,"arcs":[[823,843,-914,-915,-916,825]],"properties":{"rate":0.032}},{"type":"Polygon","id":46049,"arcs":[[826,915,-917,-918,-919,735]],"properties":{"rate":0.031}},{"type":"Polygon","id":27053,"arcs":[[857,-920,-921,-922,-923,858,835]],"properties":{"rate":0.073}},{"type":"Polygon","id":46115,"arcs":[[736,918,-924,-925,-926,827]],"properties":{"rate":0.034}},{"type":"Polygon","id":16085,"arcs":[[518,906,-927,-928,-929,802]],"properties":{"rate":0.114}},{"type":"Polygon","id":46019,"arcs":[[724,671,-930,-931,-932,716]],"properties":{"rate":0.039}},{"type":"Polygon","id":55109,"arcs":[[792,896,-933,-934]],"properties":{"rate":0.068}},{"type":"Polygon","id":55033,"arcs":[[815,933,-935,-936,-937,897]],"properties":{"rate":0.058}},{"type":"Polygon","id":26009,"arcs":[[-938,-939,-940,-941,-942]],"properties":{"rate":0.147}},{"type":"Polygon","id":26137,"arcs":[[763,-943,941,-944,-945]],"properties":{"rate":0.147}},{"type":"Polygon","id":26119,"arcs":[[813,764,944,-946,-947]],"properties":{"rate":0.189}},{"type":"Polygon","id":46025,"arcs":[[828,925,-948,-949,-950,-951]],"properties":{"rate":0.047}},{"type":"Polygon","id":46029,"arcs":[[829,950,-952,-953,884]],"properties":{"rate":0.058}},{"type":"Polygon","id":27023,"arcs":[[866,909,-954,-955,862]],"properties":{"rate":0.061}},{"type":"Polygon","id":27123,"arcs":[[859,922,-956,893]],"properties":{"rate":0.074}},{"type":"Polygon","id":55073,"arcs":[[869,-957,-958,-959,-960,846,838]],"properties":{"rate":0.077}},{"type":"Polygon","id":55078,"arcs":[[848,-961,870]],"properties":{"rate":0.127}},{"type":"Polygon","id":41001,"arcs":[[703,750,-962,-963,-964,903]],"properties":{"rate":0.085}},{"type":"Polygon","id":41053,"arcs":[[852,768,-965,-966,-967,900]],"properties":{"rate":0.093}},{"type":"Polygon","id":41069,"arcs":[[756,801,-968,-969,-970,745]],"properties":{"rate":0.067}},{"type":"Polygon","id":41041,"arcs":[[767,-971,-972,-973,964]],"properties":{"rate":0.094}},{"type":"Polygon","id":46093,"arcs":[[717,931,-974,-975,-976,844]],"properties":{"rate":0.04}},{"type":"Polygon","id":55019,"arcs":[[868,899,-977,-978,-979,956]],"properties":{"rate":0.076}},{"type":"Polygon","id":55115,"arcs":[[847,959,-980,-981,-982,871,960]],"properties":{"rate":0.082}},{"type":"Polygon","id":50011,"arcs":[[-983,-984,-985,-986,-987]],"properties":{"rate":0.062}},{"type":"Polygon","id":50009,"arcs":[[890,-988,-989,-990,-991]],"properties":{"rate":0.078}},{"type":"Polygon","id":50013,"arcs":[[983,-992,-993,-994]],"properties":{"rate":0.07}},{"type":"Polygon","id":36019,"arcs":[[992,-995,-996,-997,-998]],"properties":{"rate":0.09}},{"type":"Polygon","id":50019,"arcs":[[-999,986,-1000,-1001,988]],"properties":{"rate":0.083}},{"type":"Polygon","id":56029,"arcs":[[820,647,645,-1002,-1003,-1004,-1005,-1006]],"properties":{"rate":0.051}},{"type":"Polygon","id":36089,"arcs":[[-1007,-1008,-1009,-1010,-1011,-1012]],"properties":{"rate":0.089}},{"type":"Polygon","id":56003,"arcs":[[691,821,1005,-1013,-1014,-1015]],"properties":{"rate":0.082}},{"type":"Polygon","id":56005,"arcs":[[758,-1016,-1017,-1018,-1019,-1020]],"properties":{"rate":0.057}},{"type":"Polygon","id":56033,"arcs":[[692,1014,-1021,1015,757]],"properties":{"rate":0.066}},{"type":"Polygon","id":36033,"arcs":[[-1022,1011,-1023,-1024,995]],"properties":{"rate":0.078}},{"type":"Polygon","id":56011,"arcs":[[759,1019,-1025,-1026,929,670]],"properties":{"rate":0.049}},{"type":"Polygon","id":41023,"arcs":[[699,746,969,-1027,-1028,-1029,961,749]],"properties":{"rate":0.099}},{"type":"Polygon","id":27085,"arcs":[[888,-1030,-1031,-1032,855]],"properties":{"rate":0.08}},{"type":"Polygon","id":27019,"arcs":[[856,1031,-1033,-1034,919]],"properties":{"rate":0.07}},{"type":"Polygon","id":46039,"arcs":[[885,952,-1035,-1036,-1037,-1038,907]],"properties":{"rate":0.048}},{"type":"Polygon","id":27173,"arcs":[[953,908,1037,-1039,-1040,-1041,-1042]],"properties":{"rate":0.051}},{"type":"Polygon","id":27037,"arcs":[[955,921,-1043,-1044,-1045,-1046,894]],"properties":{"rate":0.069}},{"type":"Polygon","id":46119,"arcs":[[913,842,-1047,-1048,-1049]],"properties":{"rate":0.024}},{"type":"Polygon","id":46069,"arcs":[[914,1048,-1050,-1051,-1052,-1053,916]],"properties":{"rate":0.036}},{"type":"Polygon","id":46059,"arcs":[[917,1052,-1054,-1055,-1056,923]],"properties":{"rate":0.028}},{"type":"Polygon","id":27129,"arcs":[[863,954,1041,-1057,-1058,-1059,-1060,1029,887]],"properties":{"rate":0.064}},{"type":"Polygon","id":16037,"arcs":[[803,928,-1061,-1062,-1063,-1064]],"properties":{"rate":0.039}},{"type":"Polygon","id":55093,"arcs":[[932,895,1045,-1065,-1066,934]],"properties":{"rate":0.061}},{"type":"Polygon","id":26001,"arcs":[[-1067,-1068,-1069,-1070]],"properties":{"rate":0.167}},{"type":"Polygon","id":26079,"arcs":[[940,-1071,-1072,-1073]],"properties":{"rate":0.143}},{"type":"Polygon","id":26039,"arcs":[[943,1072,-1074,-1075]],"properties":{"rate":0.137}},{"type":"Polygon","id":55035,"arcs":[[898,936,-1076,-1077,-1078,-1079,976]],"properties":{"rate":0.06}},{"type":"Polygon","id":26135,"arcs":[[945,1074,-1080,1067]],"properties":{"rate":0.191}},{"type":"Polygon","id":16087,"arcs":[[904,963,-1081,-1082,-1083]],"properties":{"rate":0.084}},{"type":"Polygon","id":41031,"arcs":[[800,902,-1084,-1085,-1086,967]],"properties":{"rate":0.129}},{"type":"Polygon","id":27139,"arcs":[[920,1033,-1087,-1088,-1089,1042]],"properties":{"rate":0.068}},{"type":"Polygon","id":46057,"arcs":[[951,949,-1090,-1091,1034]],"properties":{"rate":0.051}},{"type":"Polygon","id":50015,"arcs":[[999,985,-1092,-1093,-1094]],"properties":{"rate":0.066}},{"type":"Polygon","id":41043,"arcs":[[901,966,-1095,-1096,-1097,1083]],"properties":{"rate":0.136}},{"type":"Polygon","id":46117,"arcs":[[841,-1098,-1099,-1100,-1101,1046]],"properties":{"rate":0.021}},{"type":"Polygon","id":26019,"arcs":[[-1102,-1103,-1104,-1105]],"properties":{"rate":0.12}},{"type":"Polygon","id":50005,"arcs":[[989,1000,1093,-1106,-1107,-1108]],"properties":{"rate":0.07}},{"type":"MultiPolygon","id":23027,"arcs":[[[561,-1109,-1110,-1111,-1112,591]]],"properties":{"rate":0.078}},{"type":"Polygon","id":16043,"arcs":[[643,751,729,-1113,-1114,-1115,-1116,-1117]],"properties":{"rate":0.066}},{"type":"Polygon","id":46055,"arcs":[[1097,845,975,-1118,-1119,-1120]],"properties":{"rate":0.036}},{"type":"Polygon","id":50007,"arcs":[[984,993,997,-1121,-1122,-1123,1091]],"properties":{"rate":0.057}},{"type":"Polygon","id":41003,"arcs":[[965,972,-1124,1094]],"properties":{"rate":0.075}},{"type":"Polygon","id":23011,"arcs":[[1108,560,811,-1125,-1126,-1127,-1128]],"properties":{"rate":0.073}},{"type":"Polygon","id":27143,"arcs":[[1030,1059,-1129,-1130,1086,1032]],"properties":{"rate":0.065}},{"type":"Polygon","id":27049,"arcs":[[1064,1044,-1131,-1132,-1133,-1134,-1135]],"properties":{"rate":0.067}},{"type":"Polygon","id":27127,"arcs":[[1056,1040,-1136,-1137,-1138,-1139]],"properties":{"rate":0.061}},{"type":"Polygon","id":55097,"arcs":[[958,-1140,-1141,-1142,-1143]],"properties":{"rate":0.058}},{"type":"Polygon","id":55141,"arcs":[[957,978,-1144,-1145,-1146,1139]],"properties":{"rate":0.074}},{"type":"MultiPolygon","id":55009,"arcs":[[[981,-1147,-1148,-1149,-1150,-1151,872]]],"properties":{"rate":0.071}},{"type":"Polygon","id":55091,"arcs":[[935,1065,1134,-1152,-1153,1075]],"properties":{"rate":0.054}},{"type":"Polygon","id":55135,"arcs":[[979,1142,-1154,-1155,-1156]],"properties":{"rate":0.082}},{"type":"Polygon","id":55061,"arcs":[[-1157,-1158,1149,-1159,-1160]],"properties":{"rate":0.073}},{"type":"Polygon","id":56039,"arcs":[[1001,644,1116,-1161,-1162,-1163,-1164,-1165]],"properties":{"rate":0.052}},{"type":"Polygon","id":46005,"arcs":[[924,1055,-1166,-1167,-1168,947]],"properties":{"rate":0.03}},{"type":"Polygon","id":27081,"arcs":[[1038,1036,-1169,-1170,-1171]],"properties":{"rate":0.045}},{"type":"Polygon","id":27083,"arcs":[[1039,1170,-1172,-1173,1135]],"properties":{"rate":0.049}},{"type":"Polygon","id":46081,"arcs":[[930,1025,-1174,-1175,973]],"properties":{"rate":0.038}},{"type":"Polygon","id":55011,"arcs":[[1152,-1176,-1177,-1178,1076]],"properties":{"rate":0.057}},{"type":"Polygon","id":55121,"arcs":[[1077,1177,-1179,-1180,-1181]],"properties":{"rate":0.064}},{"type":"Polygon","id":55053,"arcs":[[1078,1180,-1182,-1183,-1184,1143,977]],"properties":{"rate":0.072}},{"type":"Polygon","id":55087,"arcs":[[1155,-1185,-1186,1146,980]],"properties":{"rate":0.075}},{"type":"Polygon","id":16033,"arcs":[[728,805,-1187,-1188,1112]],"properties":{"rate":0.041}},{"type":"Polygon","id":56019,"arcs":[[1020,1013,-1189,-1190,-1191,1016]],"properties":{"rate":0.067}},{"type":"Polygon","id":41013,"arcs":[[1085,-1192,-1193,1026,968]],"properties":{"rate":0.161}},{"type":"Polygon","id":46065,"arcs":[[1047,1100,-1194,1049]],"properties":{"rate":0.027}},{"type":"Polygon","id":36031,"arcs":[[1120,996,1023,-1195,-1196,-1197,-1198]],"properties":{"rate":0.078}},{"type":"Polygon","id":27079,"arcs":[[1087,1129,-1199,-1200,-1201,-1202]],"properties":{"rate":0.086}},{"type":"Polygon","id":27131,"arcs":[[1088,1201,-1203,-1204,-1205,1130,1043]],"properties":{"rate":0.075}},{"type":"Polygon","id":46077,"arcs":[[948,1167,-1206,-1207,-1208,-1209,1089]],"properties":{"rate":0.051}},{"type":"Polygon","id":46011,"arcs":[[1035,1090,1208,-1210,-1211,-1212,1168]],"properties":{"rate":0.032}},{"type":"Polygon","id":26101,"arcs":[[1103,-1213,-1214,-1215,-1216]],"properties":{"rate":0.126}},{"type":"Polygon","id":26165,"arcs":[[-1217,1215,-1218,-1219,-1220]],"properties":{"rate":0.183}},{"type":"Polygon","id":26143,"arcs":[[1073,-1221,-1222,-1223,-1224]],"properties":{"rate":0.146}},{"type":"Polygon","id":26113,"arcs":[[1071,1219,-1225,-1226,1220]],"properties":{"rate":0.15}},{"type":"Polygon","id":26069,"arcs":[[1068,-1227,-1228,-1229]],"properties":{"rate":0.164}},{"type":"Polygon","id":26129,"arcs":[[1079,1223,-1230,-1231,1226]],"properties":{"rate":0.127}},{"type":"Polygon","id":16045,"arcs":[[905,1082,-1232,-1233,-1234,-1235,926]],"properties":{"rate":0.104}},{"type":"Polygon","id":46103,"arcs":[[974,1174,-1236,-1237,-1238,-1239,1117]],"properties":{"rate":0.044}},{"type":"Polygon","id":50023,"arcs":[[1105,1092,1122,-1240,-1241]],"properties":{"rate":0.061}},{"type":"Polygon","id":27015,"arcs":[[1057,1138,-1242,-1243,-1244,-1245]],"properties":{"rate":0.055}},{"type":"Polygon","id":23001,"arcs":[[1124,810,883,-1246,-1247]],"properties":{"rate":0.084}},{"type":"Polygon","id":27103,"arcs":[[1198,1128,1058,1244,-1248]],"properties":{"rate":0.061}},{"type":"Polygon","id":27157,"arcs":[[1133,-1249,-1250,1175,1151]],"properties":{"rate":0.071}},{"type":"Polygon","id":41045,"arcs":[[962,1028,-1251,-1252,-1253,-1254,-1255,1080]],"properties":{"rate":0.093}},{"type":"Polygon","id":33009,"arcs":[[891,990,1107,-1256,-1257,-1258,-1259,-1260,-1261]],"properties":{"rate":0.056}},{"type":"Polygon","id":41017,"arcs":[[1084,1096,-1262,-1263,-1264,-1265,1191]],"properties":{"rate":0.135}},{"type":"MultiPolygon","id":36045,"arcs":[[[-1266]],[[-1267,-1268,-1269,-1270,-1271,1007,-1272,-1273]]],"properties":{"rate":0.078}},{"type":"MultiPolygon","id":23013,"arcs":[[[-1274]],[[-1275]],[[1110,-1276,-1277]]],"properties":{"rate":0.07}},{"type":"Polygon","id":16015,"arcs":[[927,1234,-1278,-1279,1060]],"properties":{"rate":0.071}},{"type":"MultiPolygon","id":23015,"arcs":[[[-1280]],[[1127,-1281,-1282,-1283,1275,1109]]],"properties":{"rate":0.063}},{"type":"Polygon","id":55071,"arcs":[[1148,-1284,-1285,-1286,1158]],"properties":{"rate":0.085}},{"type":"Polygon","id":50001,"arcs":[[1121,1197,-1287,-1288,-1289,-1290,1239]],"properties":{"rate":0.058}},{"type":"MultiPolygon","id":41039,"arcs":[[[1095,1123,971,-1291,-1292,-1293,1261]]],"properties":{"rate":0.115}},{"type":"Polygon","id":33003,"arcs":[[892,1260,-1294,-1295,-1296,-1297,879]],"properties":{"rate":0.054}},{"type":"Polygon","id":27013,"arcs":[[1247,1243,-1298,-1299,-1300,-1301,1199]],"properties":{"rate":0.063}},{"type":"Polygon","id":55057,"arcs":[[1144,1183,-1302,-1303,-1304,-1305]],"properties":{"rate":0.085}},{"type":"Polygon","id":55001,"arcs":[[1145,1304,-1306,-1307,-1308,1140]],"properties":{"rate":0.083}},{"type":"Polygon","id":55137,"arcs":[[1141,1307,-1309,-1310,-1311,1153]],"properties":{"rate":0.082}},{"type":"Polygon","id":55139,"arcs":[[1184,1154,1310,-1312,-1313,-1314]],"properties":{"rate":0.07}},{"type":"Polygon","id":55015,"arcs":[[1185,1313,-1315,-1316,1283,1147]],"properties":{"rate":0.067}},{"type":"Polygon","id":16023,"arcs":[[804,1063,-1317,-1318,-1319,1186]],"properties":{"rate":0.045}},{"type":"Polygon","id":50017,"arcs":[[1106,1240,1289,-1320,1255]],"properties":{"rate":0.055}},{"type":"Polygon","id":36049,"arcs":[[-1321,1008,1270,-1322,-1323]],"properties":{"rate":0.076}},{"type":"Polygon","id":46085,"arcs":[[-1324,1050,1193,1099,-1325,-1326,-1327,-1328,-1329]],"properties":{"rate":0.057}},{"type":"Polygon","id":27117,"arcs":[[1169,1211,-1330,-1331,-1332,1171]],"properties":{"rate":0.053}},{"type":"Polygon","id":27101,"arcs":[[1172,1331,-1333,-1334,-1335,1136]],"properties":{"rate":0.039}},{"type":"Polygon","id":46073,"arcs":[[1054,-1336,-1337,-1338,-1339,1165]],"properties":{"rate":0.026}},{"type":"Polygon","id":27147,"arcs":[[1203,-1340,-1341,-1342,-1343]],"properties":{"rate":0.077}},{"type":"Polygon","id":27039,"arcs":[[1131,1204,1342,-1344,-1345]],"properties":{"rate":0.061}},{"type":"Polygon","id":46101,"arcs":[[1210,-1346,-1347,1329]],"properties":{"rate":0.061}},{"type":"Polygon","id":27161,"arcs":[[1202,1200,1300,-1348,-1349,1339]],"properties":{"rate":0.07}},{"type":"Polygon","id":46017,"arcs":[[1053,1051,1323,-1350,1335]],"properties":{"rate":0.172}},{"type":"Polygon","id":46111,"arcs":[[1166,1338,-1351,-1352,-1353,-1354,1205]],"properties":{"rate":0.038}},{"type":"Polygon","id":27109,"arcs":[[1132,1344,-1355,-1356,-1357,1248]],"properties":{"rate":0.055}},{"type":"Polygon","id":27033,"arcs":[[1137,1334,-1358,-1359,-1360,1241]],"properties":{"rate":0.052}},{"type":"Polygon","id":46079,"arcs":[[1207,-1361,-1362,-1363,1345,1209]],"properties":{"rate":0.058}},{"type":"Polygon","id":46097,"arcs":[[1206,1353,-1364,-1365,1360]],"properties":{"rate":0.057}},{"type":"Polygon","id":27169,"arcs":[[1249,1356,-1366,-1367,-1368,1178,1176]],"properties":{"rate":0.07}},{"type":"Polygon","id":56045,"arcs":[[1024,1018,-1369,-1370,-1371,1235,1173]],"properties":{"rate":0.059}},{"type":"Polygon","id":26105,"arcs":[[1213,-1372,-1373,-1374]],"properties":{"rate":0.129}},{"type":"MultiPolygon","id":23005,"arcs":[[[882,-1375,-1376,-1377,-1378,-1379,1245]]],"properties":{"rate":0.065}},{"type":"Polygon","id":46075,"arcs":[[1098,1119,-1380,-1381,1324]],"properties":{"rate":0.024}},{"type":"Polygon","id":56043,"arcs":[[1012,1004,-1382,-1383,-1384,1188]],"properties":{"rate":0.059}},{"type":"MultiPolygon","id":23023,"arcs":[[[-1385,1376]],[[-1386,1281,-1387,-1388]],[[1125,1246,1378,-1389]]],"properties":{"rate":0.067}},{"type":"Polygon","id":26085,"arcs":[[1373,-1390,-1391,1217,1214]],"properties":{"rate":0.175}},{"type":"Polygon","id":26133,"arcs":[[1218,1390,-1392,-1393,1224]],"properties":{"rate":0.153}},{"type":"Polygon","id":26035,"arcs":[[1225,1392,-1394,-1395,1221]],"properties":{"rate":0.168}},{"type":"Polygon","id":26051,"arcs":[[1229,1222,1394,-1396,-1397,-1398]],"properties":{"rate":0.165}},{"type":"Polygon","id":55081,"arcs":[[1182,-1399,-1400,1301]],"properties":{"rate":0.064}},{"type":"Polygon","id":16075,"arcs":[[1081,1254,-1401,1231]],"properties":{"rate":0.077}},{"type":"Polygon","id":36041,"arcs":[[1194,1022,1010,-1402,-1403,-1404,-1405]],"properties":{"rate":0.056}},{"type":"Polygon","id":27165,"arcs":[[1242,1359,-1406,-1407,1297]],"properties":{"rate":0.075}},{"type":"Polygon","id":16039,"arcs":[[1278,-1408,-1409,-1410,-1411,-1412,-1413,1061]],"properties":{"rate":0.077}},{"type":"Polygon","id":36043,"arcs":[[1009,1320,-1414,-1415,-1416,-1417,1401]],"properties":{"rate":0.076}},{"type":"Polygon","id":55063,"arcs":[[1179,1367,-1418,-1419,1398,1181]],"properties":{"rate":0.059}},{"type":"Polygon","id":56017,"arcs":[[1003,-1420,1381]],"properties":{"rate":0.058}},{"type":"Polygon","id":16051,"arcs":[[1187,1318,-1421,-1422,-1423,1113]],"properties":{"rate":0.068}},{"type":"Polygon","id":41025,"arcs":[[1027,1192,1264,-1424,-1425,-1426,1250]],"properties":{"rate":0.15}},{"type":"Polygon","id":56013,"arcs":[[1002,1164,-1427,-1428,-1429,-1430,1382,1419]],"properties":{"rate":0.074}},{"type":"Polygon","id":26017,"arcs":[[-1431,1396,-1432,-1433,-1434,-1435]],"properties":{"rate":0.123}},{"type":"Polygon","id":46071,"arcs":[[1118,1238,-1436,-1437,-1438,1379]],"properties":{"rate":0.062}},{"type":"Polygon","id":16013,"arcs":[[1062,1412,-1439,-1440,-1441,-1442,-1443,-1444,1316]],"properties":{"rate":0.077}},{"type":"Polygon","id":16081,"arcs":[[1115,-1445,-1446,1160]],"properties":{"rate":0.051}},{"type":"Polygon","id":55047,"arcs":[[1309,-1447,-1448,-1449,-1450,1311]],"properties":{"rate":0.075}},{"type":"Polygon","id":55077,"arcs":[[1308,1306,-1451,1446]],"properties":{"rate":0.083}},{"type":"Polygon","id":50027,"arcs":[[1319,1288,-1452,-1453,-1454,-1455,1256]],"properties":{"rate":0.058}},{"type":"MultiPolygon","id":41019,"arcs":[[[1291,-1456,-1457,-1458,-1459,-1460,-1461]]],"properties":{"rate":0.14}},{"type":"Polygon","id":55039,"arcs":[[1314,1312,1449,-1462,-1463,-1464]],"properties":{"rate":0.078}},{"type":"Polygon","id":46003,"arcs":[[1337,-1465,-1466,-1467,-1468,1350]],"properties":{"rate":0.04}},{"type":"Polygon","id":46015,"arcs":[[1336,1349,1328,-1469,1464]],"properties":{"rate":0.027}},{"type":"Polygon","id":16065,"arcs":[[1114,1422,-1470,1444]],"properties":{"rate":0.055}},{"type":"Polygon","id":55117,"arcs":[[1284,1315,1463,-1471,-1472,-1473]],"properties":{"rate":0.083}},{"type":"Polygon","id":16027,"arcs":[[1400,1253,-1474,-1475,1232]],"properties":{"rate":0.106}},{"type":"Polygon","id":46095,"arcs":[[1380,1437,-1476,-1477,1325]],"properties":{"rate":0.068}},{"type":"Polygon","id":16025,"arcs":[[1438,1411,-1478,-1479]],"properties":{"rate":0.11}},{"type":"Polygon","id":50021,"arcs":[[1451,1287,-1480,-1481]],"properties":{"rate":0.087}},{"type":"Polygon","id":46033,"arcs":[[1236,1370,-1482,-1483,-1484]],"properties":{"rate":0.03}},{"type":"Polygon","id":27133,"arcs":[[1330,-1485,-1486,-1487,1332]],"properties":{"rate":0.051}},{"type":"Polygon","id":27105,"arcs":[[1333,1486,-1488,-1489,-1490,1357]],"properties":{"rate":0.045}},{"type":"Polygon","id":27047,"arcs":[[1340,1348,-1491,-1492,-1493,-1494]],"properties":{"rate":0.076}},{"type":"Polygon","id":27099,"arcs":[[1343,1341,1493,-1495,-1496,-1497,-1498,1354]],"properties":{"rate":0.055}},{"type":"Polygon","id":27055,"arcs":[[1366,-1499,-1500,-1501,-1502,1417]],"properties":{"rate":0.071}},{"type":"Polygon","id":46035,"arcs":[[1351,1467,-1503,-1504,-1505]],"properties":{"rate":0.043}},{"type":"Polygon","id":46061,"arcs":[[1352,1504,-1506,-1507,1363]],"properties":{"rate":0.03}},{"type":"Polygon","id":27045,"arcs":[[1355,1497,-1508,-1509,1498,1365]],"properties":{"rate":0.07}},{"type":"Polygon","id":27063,"arcs":[[1358,1489,-1510,-1511,-1512,-1513,1405]],"properties":{"rate":0.047}},{"type":"Polygon","id":27043,"arcs":[[1299,-1514,-1515,-1516,1490,1347]],"properties":{"rate":0.076}},{"type":"Polygon","id":46099,"arcs":[[1484,1346,1362,-1517,-1518,-1519,-1520]],"properties":{"rate":0.047}},{"type":"Polygon","id":27091,"arcs":[[1406,1512,-1521,-1522,1513,1298]],"properties":{"rate":0.069}},{"type":"Polygon","id":46087,"arcs":[[1364,1506,-1523,-1524,1516,1361]],"properties":{"rate":0.045}},{"type":"Polygon","id":26111,"arcs":[[1395,-1525,-1526,-1527,1431]],"properties":{"rate":0.102}},{"type":"Polygon","id":26127,"arcs":[[1372,-1528,-1529,-1530]],"properties":{"rate":0.152}},{"type":"Polygon","id":26073,"arcs":[[1393,-1531,-1532,-1533,1524]],"properties":{"rate":0.085}},{"type":"MultiPolygon","id":23031,"arcs":[[[1374,881,1296,1295,-1534,-1535]]],"properties":{"rate":0.074}},{"type":"Polygon","id":26107,"arcs":[[1391,-1536,-1537,1530]],"properties":{"rate":0.13}},{"type":"Polygon","id":26123,"arcs":[[1389,1529,-1538,-1539,-1540,1535]],"properties":{"rate":0.138}},{"type":"Polygon","id":36115,"arcs":[[1286,1196,-1541,-1542,-1543,-1544,1479]],"properties":{"rate":0.074}},{"type":"Polygon","id":16001,"arcs":[[1233,1474,-1545,1407,1277]],"properties":{"rate":0.091}},{"type":"Polygon","id":36113,"arcs":[[1540,1195,1404,-1546]],"properties":{"rate":0.072}},{"type":"Polygon","id":46123,"arcs":[[1326,1476,-1547,-1548,-1549]],"properties":{"rate":0.029}},{"type":"Polygon","id":33001,"arcs":[[1293,1259,-1550,-1551]],"properties":{"rate":0.07}},{"type":"Polygon","id":26157,"arcs":[[-1552,1433,-1553,-1554,-1555,-1556,-1557]],"properties":{"rate":0.163}},{"type":"Polygon","id":55123,"arcs":[[1302,1399,1418,1501,-1558,-1559,-1560,-1561]],"properties":{"rate":0.066}},{"type":"MultiPolygon","id":36075,"arcs":[[[1269,-1562,-1563,-1564,-1565,-1566,1321]]],"properties":{"rate":0.093}},{"type":"Polygon","id":46113,"arcs":[[1435,1237,1483,-1567,-1568,-1569,-1570]],"properties":{"rate":0.126}},{"type":"Polygon","id":26151,"arcs":[[-1571,-1572,1555,-1573,-1574]],"properties":{"rate":0.178}},{"type":"Polygon","id":16073,"arcs":[[1473,1252,-1575,-1576,-1577,1408,1544]],"properties":{"rate":0.041}},{"type":"Polygon","id":55021,"arcs":[[1447,1450,1305,-1578,-1579,-1580]],"properties":{"rate":0.071}},{"type":"Polygon","id":55111,"arcs":[[1303,1560,-1581,-1582,-1583,1577]],"properties":{"rate":0.07}},{"type":"Polygon","id":55027,"arcs":[[1461,1448,1579,-1584,-1585,-1586,-1587]],"properties":{"rate":0.084}},{"type":"Polygon","id":16019,"arcs":[[1421,-1588,-1589,-1590,1161,1445,1469]],"properties":{"rate":0.059}},{"type":"Polygon","id":16011,"arcs":[[1587,1420,1317,1443,-1591,-1592,-1593]],"properties":{"rate":0.059}},{"type":"Polygon","id":41035,"arcs":[[1262,1292,1460,-1594,-1595,-1596,-1597]],"properties":{"rate":0.12}},{"type":"Polygon","id":41037,"arcs":[[1423,1263,1596,-1598,-1599]],"properties":{"rate":0.101}},{"type":"Polygon","id":36065,"arcs":[[1413,1322,1565,-1600,-1601]],"properties":{"rate":0.073}},{"type":"Polygon","id":33013,"arcs":[[1258,-1602,-1603,-1604,-1605,1549]],"properties":{"rate":0.063}},{"type":"MultiPolygon","id":41011,"arcs":[[[1456,-1606,-1607]]],"properties":{"rate":0.117}},{"type":"Polygon","id":33019,"arcs":[[1257,1454,-1608,-1609,-1610,1601]],"properties":{"rate":0.065}},{"type":"Polygon","id":33017,"arcs":[[1294,1550,1604,-1611,-1612,1533]],"properties":{"rate":0.066}},{"type":"Polygon","id":26145,"arcs":[[1432,1526,-1613,-1614,-1615,1552]],"properties":{"rate":0.129}},{"type":"Polygon","id":55103,"arcs":[[1580,1559,-1616,-1617,-1618]],"properties":{"rate":0.075}},{"type":"Polygon","id":55089,"arcs":[[1471,-1619,-1620,-1621]],"properties":{"rate":0.072}},{"type":"Polygon","id":55131,"arcs":[[1462,1586,-1622,1618,1470]],"properties":{"rate":0.081}},{"type":"Polygon","id":19189,"arcs":[[1491,1515,-1623,-1624,-1625]],"properties":{"rate":0.091}},{"type":"Polygon","id":19109,"arcs":[[-1626,1622,1514,1521,-1627,-1628,-1629]],"properties":{"rate":0.056}},{"type":"Polygon","id":19059,"arcs":[[-1630,1510,-1631,-1632]],"properties":{"rate":0.058}},{"type":"Polygon","id":19063,"arcs":[[1626,1520,1511,1629,-1633]],"properties":{"rate":0.086}},{"type":"Polygon","id":19195,"arcs":[[-1634,1494,1492,1624,-1635]],"properties":{"rate":0.063}},{"type":"Polygon","id":19143,"arcs":[[1630,1509,1488,-1636,-1637]],"properties":{"rate":0.054}},{"type":"Polygon","id":56027,"arcs":[[1369,-1638,-1639,-1640,-1641,-1642,1481]],"properties":{"rate":0.045}},{"type":"Polygon","id":19131,"arcs":[[-1643,1495,1633,-1644,-1645]],"properties":{"rate":0.054}},{"type":"Polygon","id":19119,"arcs":[[1635,1487,1485,1519,-1646,-1647]],"properties":{"rate":0.043}},{"type":"Polygon","id":19089,"arcs":[[1507,1496,1642,-1648,-1649]],"properties":{"rate":0.086}},{"type":"Polygon","id":19005,"arcs":[[1500,-1650,-1651,-1652,1557]],"properties":{"rate":0.093}},{"type":"Polygon","id":19191,"arcs":[[1649,1499,1508,1648,-1653,-1654]],"properties":{"rate":0.058}},{"type":"Polygon","id":46083,"arcs":[[1518,-1655,-1656,-1657,-1658,1645]],"properties":{"rate":0.039}},{"type":"Polygon","id":56009,"arcs":[[1368,1017,1190,-1659,-1660,-1661,-1662,1637]],"properties":{"rate":0.059}},{"type":"Polygon","id":46023,"arcs":[[1468,-1663,-1664,-1665,-1666,-1667,-1668,1465]],"properties":{"rate":0.048}},{"type":"Polygon","id":46125,"arcs":[[1523,-1669,-1670,-1671,1654,1517]],"properties":{"rate":0.044}},{"type":"Polygon","id":46067,"arcs":[[1505,1503,-1672,1666,-1673,-1674,1668,1522]],"properties":{"rate":0.039}},{"type":"Polygon","id":56025,"arcs":[[1383,1429,-1675,1658,1189]],"properties":{"rate":0.073}},{"type":"Polygon","id":46043,"arcs":[[1466,1667,1671,1502]],"properties":{"rate":0.031}},{"type":"Polygon","id":46053,"arcs":[[1327,1548,-1676,-1677,1662]],"properties":{"rate":0.031}},{"type":"Polygon","id":46047,"arcs":[[1482,1641,-1678,-1679,1566]],"properties":{"rate":0.049}},{"type":"Polygon","id":26121,"arcs":[[1528,-1680,-1681,-1682,1537]],"properties":{"rate":0.16}},{"type":"Polygon","id":26117,"arcs":[[1536,1539,-1683,-1684,-1685,1531]],"properties":{"rate":0.176}},{"type":"Polygon","id":56035,"arcs":[[1426,1163,-1686,-1687]],"properties":{"rate":0.045}},{"type":"Polygon","id":26057,"arcs":[[1532,1684,-1688,-1689,1612,1525]],"properties":{"rate":0.137}},{"type":"Polygon","id":55023,"arcs":[[1558,1651,-1690,-1691,1615]],"properties":{"rate":0.081}},{"type":"Polygon","id":36011,"arcs":[[1562,-1692,-1693,-1694,-1695,-1696,-1697]],"properties":{"rate":0.08}},{"type":"Polygon","id":36091,"arcs":[[1545,1403,-1698,-1699,-1700,-1701,-1702,1541]],"properties":{"rate":0.064}},{"type":"Polygon","id":46007,"arcs":[[1436,1569,-1703,-1704]],"properties":{"rate":0.06}},{"type":"Polygon","id":46121,"arcs":[[1475,1703,-1705,1546]],"properties":{"rate":0.084}},{"type":"Polygon","id":36073,"arcs":[[-1706,-1707,-1708,-1709]],"properties":{"rate":0.082}},{"type":"Polygon","id":36063,"arcs":[[-1710,-1711,-1712,1706]],"properties":{"rate":0.088}},{"type":"Polygon","id":36055,"arcs":[[-1713,1708,-1714,-1715,-1716,-1717]],"properties":{"rate":0.083}},{"type":"MultiPolygon","id":36117,"arcs":[[[1692,-1718,1716,-1719,-1720]]],"properties":{"rate":0.078}},{"type":"Polygon","id":26087,"arcs":[[1572,1554,-1721,-1722,-1723,-1724]],"properties":{"rate":0.181}},{"type":"Polygon","id":56023,"arcs":[[1162,1589,-1725,-1726,-1727,-1728,-1729,1685]],"properties":{"rate":0.065}},{"type":"Polygon","id":50003,"arcs":[[1480,1543,-1730,-1731,-1732,-1733,1452]],"properties":{"rate":0.068}},{"type":"Polygon","id":55025,"arcs":[[1578,1582,-1734,-1735,-1736,-1737,1583]],"properties":{"rate":0.054}},{"type":"Polygon","id":26081,"arcs":[[1682,1538,1681,-1738,-1739,-1740,-1741]],"properties":{"rate":0.117}},{"type":"Polygon","id":36035,"arcs":[[1402,1416,-1742,1697]],"properties":{"rate":0.091}},{"type":"MultiPolygon","id":33015,"arcs":[[[1610,1603,-1743,-1744,-1745]]],"properties":{"rate":0.075}},{"type":"Polygon","id":36067,"arcs":[[1563,1696,-1746,-1747]],"properties":{"rate":0.079}},{"type":"Polygon","id":50025,"arcs":[[1453,1732,-1748,-1749,1607]],"properties":{"rate":0.063}},{"type":"Polygon","id":19167,"arcs":[[1646,1657,-1750,-1751,-1752]],"properties":{"rate":0.041}},{"type":"Polygon","id":19141,"arcs":[[1636,1751,-1753,-1754]],"properties":{"rate":0.053}},{"type":"Polygon","id":19033,"arcs":[[1634,-1755,-1756,-1757,1643]],"properties":{"rate":0.067}},{"type":"Polygon","id":19081,"arcs":[[1623,1625,-1758,1754]],"properties":{"rate":0.09}},{"type":"Polygon","id":19147,"arcs":[[1632,-1759,-1760,1627]],"properties":{"rate":0.07}},{"type":"Polygon","id":19041,"arcs":[[1631,1753,-1761,1758]],"properties":{"rate":0.062}},{"type":"Polygon","id":26049,"arcs":[[1553,1614,-1762,-1763,-1764,1720]],"properties":{"rate":0.158}},{"type":"Polygon","id":19037,"arcs":[[1647,-1765,-1766,-1767,1652]],"properties":{"rate":0.084}},{"type":"Polygon","id":19067,"arcs":[[1644,1756,-1768,1764]],"properties":{"rate":0.087}},{"type":"Polygon","id":55049,"arcs":[[1617,-1769,-1770,-1771,1733,1581]],"properties":{"rate":0.062}},{"type":"Polygon","id":55043,"arcs":[[1616,1690,-1772,-1773,-1774,-1775,1768]],"properties":{"rate":0.061}},{"type":"Polygon","id":33011,"arcs":[[1602,1609,-1776,-1777,-1778,-1779,1742]],"properties":{"rate":0.075}},{"type":"Polygon","id":26139,"arcs":[[1680,-1780,-1781,1737]],"properties":{"rate":0.128}},{"type":"Polygon","id":16063,"arcs":[[1439,1478,-1782,-1783,-1784]],"properties":{"rate":0.097}},{"type":"Polygon","id":16047,"arcs":[[1477,1410,-1785,-1786,1781]],"properties":{"rate":0.055}},{"type":"Polygon","id":55055,"arcs":[[1584,1736,-1787,-1788,-1789]],"properties":{"rate":0.08}},{"type":"Polygon","id":16067,"arcs":[[1440,1783,-1790,-1791]],"properties":{"rate":0.06}},{"type":"Polygon","id":55133,"arcs":[[1585,1788,-1792,-1793,-1794,1621]],"properties":{"rate":0.072}},{"type":"Polygon","id":55079,"arcs":[[1619,1793,-1795,-1796]],"properties":{"rate":0.093}},{"type":"Polygon","id":36053,"arcs":[[1564,1746,-1797,-1798,-1799,1599]],"properties":{"rate":0.074}},{"type":"Polygon","id":33005,"arcs":[[1608,1748,-1800,-1801,1775]],"properties":{"rate":0.065}},{"type":"Polygon","id":46135,"arcs":[[1669,1673,-1802,-1803,-1804,-1805]],"properties":{"rate":0.053}},{"type":"Polygon","id":46009,"arcs":[[1672,1665,-1806,1801]],"properties":{"rate":0.049}},{"type":"Polygon","id":26155,"arcs":[[1613,1688,-1807,-1808,-1809,1761]],"properties":{"rate":0.152}},{"type":"Polygon","id":36037,"arcs":[[1713,1707,1711,-1810,-1811,-1812]],"properties":{"rate":0.072}},{"type":"Polygon","id":26067,"arcs":[[1683,1740,-1813,-1814,-1815]],"properties":{"rate":0.134}},{"type":"Polygon","id":26037,"arcs":[[1687,1814,-1816,-1817,1806]],"properties":{"rate":0.094}},{"type":"Polygon","id":16077,"arcs":[[1442,-1818,-1819,-1820,1590]],"properties":{"rate":0.067}},{"type":"MultiPolygon","id":36029,"arcs":[[[-1821]],[[1710,-1822,-1823,-1824,-1825,1809]]],"properties":{"rate":0.083}},{"type":"Polygon","id":46127,"arcs":[[1656,-1826,-1827,-1828,-1829,-1830,1749]],"properties":{"rate":0.053}},{"type":"Polygon","id":46027,"arcs":[[1655,1670,1804,-1831,-1832,1825]],"properties":{"rate":0.037}},{"type":"Polygon","id":19065,"arcs":[[1653,1766,-1833,-1834,-1835]],"properties":{"rate":0.085}},{"type":"Polygon","id":19043,"arcs":[[1650,1834,-1836,-1837,1771,1689]],"properties":{"rate":0.079}},{"type":"Polygon","id":36057,"arcs":[[1741,1415,-1838,-1839,-1840,1698]],"properties":{"rate":0.088}},{"type":"Polygon","id":36069,"arcs":[[1718,1715,-1841,-1842,-1843,-1844]],"properties":{"rate":0.067}},{"type":"Polygon","id":16005,"arcs":[[1591,1819,-1845,-1846,-1847]],"properties":{"rate":0.084}},{"type":"Polygon","id":16029,"arcs":[[1592,1846,-1848,-1849,1724,1588]],"properties":{"rate":0.06}},{"type":"Polygon","id":36099,"arcs":[[1693,1719,1843,-1850,-1851,-1852]],"properties":{"rate":0.073}},{"type":"Polygon","id":31165,"arcs":[[-1853,1677,1640,-1854,-1855,-1856]],"properties":{"rate":0.038}},{"type":"Polygon","id":31161,"arcs":[[-1857,1568,-1858,-1859,-1860,-1861,-1862]],"properties":{"rate":0.035}},{"type":"Polygon","id":31045,"arcs":[[1857,1567,1678,1852,-1863]],"properties":{"rate":0.044}},{"type":"Polygon","id":31015,"arcs":[[1663,1676,-1864,-1865,-1866]],"properties":{"rate":0.036}},{"type":"Polygon","id":31103,"arcs":[[1547,-1867,-1868,-1869,1863,1675]],"properties":{"rate":0.044}},{"type":"Polygon","id":31031,"arcs":[[1702,1856,-1870,-1871,-1872,-1873,-1874,1866,1704]],"properties":{"rate":0.025}},{"type":"Polygon","id":41029,"arcs":[[1459,-1875,-1876,1593]],"properties":{"rate":0.115}},{"type":"Polygon","id":36051,"arcs":[[1714,1811,-1877,-1878,-1879,1840]],"properties":{"rate":0.075}},{"type":"Polygon","id":36083,"arcs":[[1542,1701,-1880,-1881,-1882,1729]],"properties":{"rate":0.077}},{"type":"Polygon","id":36093,"arcs":[[1699,1839,-1883,-1884]],"properties":{"rate":0.078}},{"type":"Polygon","id":41015,"arcs":[[1606,-1885,-1886,-1887,1457]],"properties":{"rate":0.112}},{"type":"Polygon","id":16083,"arcs":[[1784,1409,1576,-1888,-1889,-1890]],"properties":{"rate":0.068}},{"type":"Polygon","id":19149,"arcs":[[1750,1829,-1891,-1892]],"properties":{"rate":0.047}},{"type":"Polygon","id":19021,"arcs":[[1760,-1893,-1894,-1895]],"properties":{"rate":0.055}},{"type":"Polygon","id":19035,"arcs":[[1752,1891,-1896,-1897,1892]],"properties":{"rate":0.044}},{"type":"Polygon","id":19151,"arcs":[[1759,1894,-1898,-1899,-1900]],"properties":{"rate":0.052}},{"type":"Polygon","id":19197,"arcs":[[1757,-1901,-1902,-1903,-1904]],"properties":{"rate":0.084}},{"type":"Polygon","id":19091,"arcs":[[1628,1899,-1905,1900]],"properties":{"rate":0.062}},{"type":"Polygon","id":19069,"arcs":[[1755,1903,-1906,-1907]],"properties":{"rate":0.07}},{"type":"Polygon","id":19023,"arcs":[[1767,1906,-1908,-1909,-1910]],"properties":{"rate":0.06}},{"type":"Polygon","id":19017,"arcs":[[1765,1909,-1911,1832]],"properties":{"rate":0.05}},{"type":"Polygon","id":36077,"arcs":[[1414,1600,1798,-1912,-1913,-1914,1837]],"properties":{"rate":0.068}},{"type":"Polygon","id":31089,"arcs":[[1864,-1915,-1916,-1917,-1918,-1919,-1920]],"properties":{"rate":0.032}},{"type":"Polygon","id":26099,"arcs":[[-1921,1722,-1922,-1923,-1924]],"properties":{"rate":0.181}},{"type":"Polygon","id":26125,"arcs":[[1921,1721,1763,-1925,-1926,-1927]],"properties":{"rate":0.156}},{"type":"MultiPolygon","id":25009,"arcs":[[[1743,1778,-1928,-1929,-1930]]],"properties":{"rate":0.101}},{"type":"Polygon","id":31107,"arcs":[[1664,1865,1919,-1931,-1932,-1933,1802,1805]],"properties":{"rate":0.036}},{"type":"Polygon","id":31027,"arcs":[[1803,1932,-1934,-1935,-1936,1830]],"properties":{"rate":0.032}},{"type":"Polygon","id":36121,"arcs":[[1810,1824,-1937,-1938,1876]],"properties":{"rate":0.078}},{"type":"Polygon","id":55045,"arcs":[[1734,1770,-1939,-1940,-1941,-1942]],"properties":{"rate":0.078}},{"type":"Polygon","id":16053,"arcs":[[1782,1785,1889,-1943,1789]],"properties":{"rate":0.059}},{"type":"Polygon","id":55105,"arcs":[[1735,1941,-1944,-1945,-1946,1786]],"properties":{"rate":0.111}},{"type":"Polygon","id":31017,"arcs":[[1867,1873,-1947,-1948,-1949]],"properties":{"rate":0.031}},{"type":"Polygon","id":55127,"arcs":[[1787,1945,-1950,-1951,-1952,-1953,1791]],"properties":{"rate":0.077}},{"type":"Polygon","id":55101,"arcs":[[1794,1792,1952,-1954,-1955]],"properties":{"rate":0.093}},{"type":"Polygon","id":36095,"arcs":[[1838,1913,-1956,-1957,-1958,1882]],"properties":{"rate":0.076}},{"type":"Polygon","id":36001,"arcs":[[1700,1883,1957,-1959,1879]],"properties":{"rate":0.071}},{"type":"Polygon","id":55065,"arcs":[[1769,1774,-1960,-1961,1938]],"properties":{"rate":0.06}},{"type":"Polygon","id":31149,"arcs":[[1914,1868,1948,-1962]],"properties":{"rate":0.031}},{"type":"Polygon","id":36023,"arcs":[[-1963,-1964,1796,1745,1695,-1965,-1966]],"properties":{"rate":0.085}},{"type":"Polygon","id":41033,"arcs":[[1886,-1967,-1968,1874,1458]],"properties":{"rate":0.133}},{"type":"Polygon","id":26093,"arcs":[[1762,1808,-1969,-1970,-1971,1924]],"properties":{"rate":0.136}},{"type":"Polygon","id":26065,"arcs":[[1807,1816,-1972,-1973,1968]],"properties":{"rate":0.116}},{"type":"Polygon","id":26045,"arcs":[[1813,-1974,-1975,-1976,1971,1815]],"properties":{"rate":0.103}},{"type":"Polygon","id":26015,"arcs":[[1812,1739,-1977,-1978,-1979,1973]],"properties":{"rate":0.105}},{"type":"Polygon","id":26005,"arcs":[[1780,-1980,-1981,-1982,1976,1738]],"properties":{"rate":0.132}},{"type":"Polygon","id":36123,"arcs":[[1849,1842,-1983,-1984]],"properties":{"rate":0.06}},{"type":"Polygon","id":31051,"arcs":[[1831,1935,-1985,-1986,-1987,1826]],"properties":{"rate":0.037}},{"type":"Polygon","id":25003,"arcs":[[1730,1881,-1988,-1989,-1990,-1991,-1992,-1993]],"properties":{"rate":0.084}},{"type":"Polygon","id":36017,"arcs":[[1797,1963,-1994,-1995,1911]],"properties":{"rate":0.087}},{"type":"Polygon","id":25011,"arcs":[[-1996,1799,1747,1731,1992,-1997]],"properties":{"rate":0.087}},{"type":"Polygon","id":25017,"arcs":[[1927,1777,-1998,-1999,-2000,-2001,-2002,-2003,-2004,-2005,-2006]],"properties":{"rate":0.081}},{"type":"Polygon","id":25027,"arcs":[[1800,1995,-2007,-2008,-2009,-2010,-2011,-2012,1997,1776]],"properties":{"rate":0.101}},{"type":"Polygon","id":16031,"arcs":[[1441,1790,1942,1888,-2013,-2014,-2015,1817]],"properties":{"rate":0.059}},{"type":"Polygon","id":19061,"arcs":[[1772,1836,-2016,-2017,-2018,-2019]],"properties":{"rate":0.06}},{"type":"Polygon","id":55059,"arcs":[[1953,1951,-2020,-2021,-2022]],"properties":{"rate":0.098}},{"type":"Polygon","id":19055,"arcs":[[1835,-2023,-2024,-2025,2015]],"properties":{"rate":0.068}},{"type":"Polygon","id":19187,"arcs":[[1904,1898,-2026,-2027,-2028,-2029,1901]],"properties":{"rate":0.083}},{"type":"Polygon","id":19019,"arcs":[[1833,-2030,-2031,-2032,2022]],"properties":{"rate":0.059}},{"type":"Polygon","id":19013,"arcs":[[1910,1908,-2033,-2034,-2035,2029]],"properties":{"rate":0.058}},{"type":"Polygon","id":36109,"arcs":[[1694,1851,-2036,-2037,-2038,1964]],"properties":{"rate":0.056}},{"type":"Polygon","id":56015,"arcs":[[1639,-2039,-2040,-2041,-2042,1853]],"properties":{"rate":0.053}},{"type":"Polygon","id":56031,"arcs":[[1638,1661,-2043,-2044,2038]],"properties":{"rate":0.062}},{"type":"Polygon","id":16007,"arcs":[[1848,-2045,-2046,1725]],"properties":{"rate":0.052}},{"type":"Polygon","id":36101,"arcs":[[1878,-2047,-2048,-2049,-2050,-2051,1982,1841]],"properties":{"rate":0.095}},{"type":"Polygon","id":36013,"arcs":[[1822,-2052,-2053,-2054,-2055]],"properties":{"rate":0.078}},{"type":"Polygon","id":19193,"arcs":[[1890,1828,-2056,-2057,-2058,-2059,1895]],"properties":{"rate":0.057}},{"type":"Polygon","id":19161,"arcs":[[1893,-2060,-2061,-2062,-2063]],"properties":{"rate":0.047}},{"type":"Polygon","id":19093,"arcs":[[1896,2058,-2064,2059]],"properties":{"rate":0.058}},{"type":"Polygon","id":19025,"arcs":[[1897,2062,-2065,-2066,2025]],"properties":{"rate":0.054}},{"type":"Polygon","id":19079,"arcs":[[1902,2028,-2067,-2068,-2069]],"properties":{"rate":0.081}},{"type":"Polygon","id":19083,"arcs":[[2068,-2070,-2071,-2072,1905]],"properties":{"rate":0.06}},{"type":"Polygon","id":19075,"arcs":[[1907,2071,-2073,-2074,2032]],"properties":{"rate":0.049}},{"type":"Polygon","id":25015,"arcs":[[1996,1991,-2075,2006]],"properties":{"rate":0.073}},{"type":"Polygon","id":36097,"arcs":[[1850,1983,2050,-2076,2035]],"properties":{"rate":0.074}},{"type":"Polygon","id":36009,"arcs":[[1823,2054,-2077,-2078,-2079,1936]],"properties":{"rate":0.085}},{"type":"Polygon","id":31043,"arcs":[[1986,-2080,2055,1827]],"properties":{"rate":0.055}},{"type":"Polygon","id":36003,"arcs":[[1937,2078,-2081,-2082,2046,1877]],"properties":{"rate":0.079}},{"type":"Polygon","id":36025,"arcs":[[1912,1994,-2083,-2084,-2085,-2086,-2087,1955]],"properties":{"rate":0.084}},{"type":"Polygon","id":17085,"arcs":[[1773,2018,-2088,-2089,-2090,1959]],"properties":{"rate":0.081}},{"type":"Polygon","id":36021,"arcs":[[1987,1880,-2091,-2092,-2093]],"properties":{"rate":0.077}},{"type":"Polygon","id":17177,"arcs":[[-2094,-2095,1939,1960,2089,-2096]],"properties":{"rate":0.116}},{"type":"Polygon","id":17201,"arcs":[[1943,1940,2094,-2097,-2098]],"properties":{"rate":0.155}},{"type":"Polygon","id":16071,"arcs":[[1818,2014,-2099,-2100,-2101,1844]],"properties":{"rate":0.05}},{"type":"Polygon","id":17111,"arcs":[[2019,1950,-2102,-2103,-2104,-2105,-2106]],"properties":{"rate":0.093}},{"type":"Polygon","id":17007,"arcs":[[1944,2097,-2107,2101,1949]],"properties":{"rate":0.138}},{"type":"Polygon","id":17097,"arcs":[[-2108,2020,2105,-2109]],"properties":{"rate":0.1}},{"type":"Polygon","id":36039,"arcs":[[2090,1958,1956,2086,-2110]],"properties":{"rate":0.084}},{"type":"MultiPolygon","id":25025,"arcs":[[[2001,-2111,1999,-2112,-2113]],[[1928,2005,-2114]]],"properties":{"rate":0.093}},{"type":"Polygon","id":31139,"arcs":[[1933,1931,-2115,-2116,-2117]],"properties":{"rate":0.036}},{"type":"Polygon","id":31013,"arcs":[[1858,1862,1855,-2118,-2119]],"properties":{"rate":0.071}},{"type":"Polygon","id":31003,"arcs":[[1930,1918,-2120,-2121,-2122,2114]],"properties":{"rate":0.036}},{"type":"Polygon","id":26161,"arcs":[[-2123,1925,1970,-2124,-2125,-2126]],"properties":{"rate":0.093}},{"type":"Polygon","id":56007,"arcs":[[1674,1428,-2127,-2128,-2129,-2130,-2131,1659]],"properties":{"rate":0.068}},{"type":"Polygon","id":56001,"arcs":[[1660,2130,-2132,-2133,-2134,2042]],"properties":{"rate":0.036}},{"type":"Polygon","id":16041,"arcs":[[1847,1845,2100,-2135,2044]],"properties":{"rate":0.04}},{"type":"Polygon","id":26075,"arcs":[[1972,1975,-2136,-2137,-2138,2123,1969]],"properties":{"rate":0.149}},{"type":"Polygon","id":26025,"arcs":[[1974,1978,-2139,-2140,-2141,2135]],"properties":{"rate":0.124}},{"type":"Polygon","id":26159,"arcs":[[1980,-2142,-2143,-2144,-2145]],"properties":{"rate":0.132}},{"type":"Polygon","id":26077,"arcs":[[1977,1981,2144,-2146,2138]],"properties":{"rate":0.112}},{"type":"Polygon","id":36007,"arcs":[[1993,1962,-2147,-2148,-2149,2082]],"properties":{"rate":0.085}},{"type":"Polygon","id":36107,"arcs":[[1965,2037,-2150,-2151,-2152,2146]],"properties":{"rate":0.079}},{"type":"Polygon","id":19097,"arcs":[[2017,-2153,-2154,-2155,2087]],"properties":{"rate":0.077}},{"type":"Polygon","id":31179,"arcs":[[1934,2116,-2156,-2157,-2158,1984]],"properties":{"rate":0.038}},{"type":"MultiPolygon","id":25021,"arcs":[[[1998,2011,-2159,-2160,-2161,-2162,2111]]],"properties":{"rate":0.085}},{"type":"Polygon","id":25013,"arcs":[[2074,1990,-2163,-2164,-2165,2007]],"properties":{"rate":0.105}},{"type":"MultiPolygon","id":25023,"arcs":[[[-2166,2160,-2167,-2168,-2169,-2170,2170]]],"properties":{"rate":0.097}},{"type":"Polygon","id":19011,"arcs":[[2030,2034,-2172,-2173,-2174]],"properties":{"rate":0.058}},{"type":"Polygon","id":19113,"arcs":[[2031,2173,-2175,-2176,-2177,2023]],"properties":{"rate":0.065}},{"type":"Polygon","id":19171,"arcs":[[2033,2073,-2178,-2179,2171]],"properties":{"rate":0.066}},{"type":"Polygon","id":19105,"arcs":[[2024,2176,-2180,-2181,2152,2016]],"properties":{"rate":0.063}},{"type":"Polygon","id":36015,"arcs":[[2075,2049,-2182,-2183,2149,2036]],"properties":{"rate":0.089}},{"type":"Polygon","id":31173,"arcs":[[2079,1985,2157,-2184,-2185,-2186,2056]],"properties":{"rate":0.138}},{"type":"Polygon","id":56037,"arcs":[[1686,1728,-2187,-2188,-2189,-2190,2126,1427]],"properties":{"rate":0.074}},{"type":"Polygon","id":42049,"arcs":[[2052,-2191,-2192,-2193,-2194]],"properties":{"rate":0.092}},{"type":"Polygon","id":26021,"arcs":[[2142,-2195,-2196,-2197,-2198]],"properties":{"rate":0.135}},{"type":"Polygon","id":19133,"arcs":[[2057,2185,-2199,-2200,-2201]],"properties":{"rate":0.071}},{"type":"Polygon","id":19127,"arcs":[[2072,2070,-2202,-2203,2177]],"properties":{"rate":0.07}},{"type":"Polygon","id":19027,"arcs":[[2061,-2204,-2205,-2206,-2207,2064]],"properties":{"rate":0.042}},{"type":"Polygon","id":19047,"arcs":[[2200,-2208,-2209,2203,2060,2063]],"properties":{"rate":0.047}},{"type":"Polygon","id":19015,"arcs":[[2027,-2210,-2211,-2212,-2213,2066]],"properties":{"rate":0.059}},{"type":"Polygon","id":19073,"arcs":[[2026,2065,2206,-2214,-2215,2209]],"properties":{"rate":0.063}},{"type":"Polygon","id":19169,"arcs":[[2067,2212,-2216,-2217,2201,2069]],"properties":{"rate":0.045}},{"type":"Polygon","id":17141,"arcs":[[2096,2093,-2218,-2219,-2220,-2221]],"properties":{"rate":0.119}},{"type":"Polygon","id":17015,"arcs":[[2095,2088,2154,-2222,-2223,2217]],"properties":{"rate":0.105}},{"type":"Polygon","id":36111,"arcs":[[2109,2085,-2224,-2225,-2226,2091]],"properties":{"rate":0.081}},{"type":"Polygon","id":17031,"arcs":[[2104,-2227,-2228,-2229,-2230,-2231,2108]],"properties":{"rate":0.106}},{"type":"Polygon","id":17037,"arcs":[[2102,2106,2220,-2232,-2233,-2234,-2235]],"properties":{"rate":0.092}},{"type":"Polygon","id":17089,"arcs":[[2103,2234,-2236,-2237,2226]],"properties":{"rate":0.099}},{"type":"Polygon","id":31075,"arcs":[[1869,1861,-2238,-2239,-2240]],"properties":{"rate":0.031}},{"type":"MultiPolygon","id":25005,"arcs":[[[2166,2159,-2241,-2242,-2243,-2244,-2245]]],"properties":{"rate":0.118}},{"type":"Polygon","id":31091,"arcs":[[1870,2239,-2246,-2247,-2248]],"properties":{"rate":0.04}},{"type":"Polygon","id":31039,"arcs":[[2156,-2249,-2250,-2251,-2252,2183]],"properties":{"rate":0.035}},{"type":"Polygon","id":31119,"arcs":[[2115,2121,-2253,-2254,-2255]],"properties":{"rate":0.042}},{"type":"Polygon","id":31167,"arcs":[[2155,2254,-2256,-2257,2248]],"properties":{"rate":0.036}},{"type":"Polygon","id":31171,"arcs":[[1871,2247,-2258,-2259,-2260]],"properties":{"rate":0.038}},{"type":"Polygon","id":31183,"arcs":[[2119,1917,-2261,-2262,-2263,-2264]],"properties":{"rate":0.032}},{"type":"Polygon","id":31009,"arcs":[[2259,-2265,-2266,-2267,1946,1872]],"properties":{"rate":0.052}},{"type":"Polygon","id":31115,"arcs":[[1915,1961,1947,2266,-2268,-2269]],"properties":{"rate":0.032}},{"type":"Polygon","id":31071,"arcs":[[1916,2268,-2270,-2271,2260]],"properties":{"rate":0.025}},{"type":"Polygon","id":26091,"arcs":[[2124,2137,-2272,-2273,-2274,-2275]],"properties":{"rate":0.161}},{"type":"Polygon","id":36027,"arcs":[[2092,2225,-2276,-2277,-2278,-2279,1988]],"properties":{"rate":0.082}},{"type":"MultiPolygon","id":25001,"arcs":[[[-2280,2168,-2281]]],"properties":{"rate":0.08}},{"type":"Polygon","id":26023,"arcs":[[2139,-2282,-2283,-2284,-2285]],"properties":{"rate":0.14}},{"type":"Polygon","id":26059,"arcs":[[2136,2140,2284,-2286,-2287,-2288,2271]],"properties":{"rate":0.172}},{"type":"Polygon","id":26149,"arcs":[[2145,-2289,-2290,-2291,2281]],"properties":{"rate":0.139}},{"type":"Polygon","id":26027,"arcs":[[2143,2197,-2292,-2293,2288]],"properties":{"rate":0.114}},{"type":"Polygon","id":9005,"arcs":[[1989,2278,-2294,-2295,-2296,2162]],"properties":{"rate":0.079}},{"type":"Polygon","id":31021,"arcs":[[2198,2184,2251,-2297,-2298,-2299]],"properties":{"rate":0.057}},{"type":"Polygon","id":9003,"arcs":[[2163,2295,-2300,-2301,-2302,-2303]],"properties":{"rate":0.088}},{"type":"Polygon","id":9013,"arcs":[[2164,2302,-2304,-2305,2008]],"properties":{"rate":0.067}},{"type":"Polygon","id":19045,"arcs":[[2153,2180,-2306,-2307,-2308,-2309,2221]],"properties":{"rate":0.077}},{"type":"Polygon","id":9015,"arcs":[[2009,2304,-2310,-2311,-2312]],"properties":{"rate":0.09}},{"type":"Polygon","id":44007,"arcs":[[2158,2010,2311,-2313,-2314,-2315,2240]],"properties":{"rate":0.135}},{"type":"Polygon","id":36105,"arcs":[[2223,2084,-2316,-2317,-2318]],"properties":{"rate":0.086}},{"type":"Polygon","id":6093,"arcs":[[1875,1967,-2319,-2320,-2321,-2322,-2323,1594]],"properties":{"rate":0.135}},{"type":"Polygon","id":31069,"arcs":[[1860,-2324,-2325,-2326,-2327,-2328,2237]],"properties":{"rate":0.044}},{"type":"Polygon","id":31123,"arcs":[[1859,2118,-2329,-2330,-2331,2323]],"properties":{"rate":0.041}},{"type":"Polygon","id":49005,"arcs":[[2134,2099,-2332,-2333,-2334]],"properties":{"rate":0.042}},{"type":"Polygon","id":31157,"arcs":[[2117,1854,2041,-2335,2328]],"properties":{"rate":0.048}},{"type":"Polygon","id":49033,"arcs":[[2045,2333,-2336,-2337,-2338,-2339,1726]],"properties":{"rate":0.028}},{"type":"Polygon","id":42015,"arcs":[[-2340,-2341,-2342,-2343,-2344,2150,2182]],"properties":{"rate":0.076}},{"type":"Polygon","id":42117,"arcs":[[2048,-2345,-2346,2339,2181]],"properties":{"rate":0.078}},{"type":"Polygon","id":49003,"arcs":[[2331,2098,2013,-2347,-2348,-2349]],"properties":{"rate":0.056}},{"type":"Polygon","id":32013,"arcs":[[-2350,1574,1251,1425,-2351,-2352,-2353]],"properties":{"rate":0.086}},{"type":"Polygon","id":32007,"arcs":[[1887,1575,2349,-2354,-2355,-2356,-2357,2346,2012]],"properties":{"rate":0.068}},{"type":"Polygon","id":42083,"arcs":[[2077,-2358,-2359,-2360,-2361,2080]],"properties":{"rate":0.1}},{"type":"Polygon","id":42105,"arcs":[[2081,2360,-2362,-2363,-2364,2344,2047]],"properties":{"rate":0.103}},{"type":"Polygon","id":6015,"arcs":[[1966,1885,-2365,-2366,2318]],"properties":{"rate":0.119}},{"type":"Polygon","id":42127,"arcs":[[2148,-2367,-2368,-2369,-2370,2315,2083]],"properties":{"rate":0.066}},{"type":"Polygon","id":42115,"arcs":[[2366,2147,2151,2343,-2371,-2372]],"properties":{"rate":0.078}},{"type":"Polygon","id":42123,"arcs":[[2076,2053,2193,-2373,-2374,-2375,2357]],"properties":{"rate":0.073}},{"type":"Polygon","id":6049,"arcs":[[1595,2322,-2376,-2377,-2378,1597]],"properties":{"rate":0.111}},{"type":"Polygon","id":32031,"arcs":[[2350,1424,1598,2377,-2379,-2380,-2381,-2382,-2383,-2384,-2385,-2386,-2387]],"properties":{"rate":0.131}},{"type":"Polygon","id":17043,"arcs":[[2227,2236,-2388]],"properties":{"rate":0.086}},{"type":"Polygon","id":39007,"arcs":[[2191,-2389,-2390,-2391,-2392,-2393]],"properties":{"rate":0.126}},{"type":"Polygon","id":19031,"arcs":[[2175,-2394,-2395,-2396,2305,2179]],"properties":{"rate":0.057}},{"type":"Polygon","id":17195,"arcs":[[2222,2308,-2397,-2398,-2399,-2400,2218]],"properties":{"rate":0.106}},{"type":"Polygon","id":31011,"arcs":[[2120,2263,-2401,-2402,-2403,2252]],"properties":{"rate":0.039}},{"type":"Polygon","id":17103,"arcs":[[2219,2399,-2404,-2405,2231]],"properties":{"rate":0.109}},{"type":"Polygon","id":19085,"arcs":[[2199,2298,-2406,-2407,-2408,2207]],"properties":{"rate":0.044}},{"type":"Polygon","id":19095,"arcs":[[2172,-2409,-2410,-2411,-2412]],"properties":{"rate":0.058}},{"type":"Polygon","id":19049,"arcs":[[2210,2214,-2413,-2414,-2415]],"properties":{"rate":0.051}},{"type":"Polygon","id":19165,"arcs":[[2208,2407,-2416,-2417,-2418]],"properties":{"rate":0.039}},{"type":"Polygon","id":19009,"arcs":[[2204,2417,-2419,-2420]],"properties":{"rate":0.051}},{"type":"Polygon","id":19157,"arcs":[[2178,-2421,-2422,-2423,2408]],"properties":{"rate":0.066}},{"type":"Polygon","id":19153,"arcs":[[2211,2414,-2424,-2425,-2426,2215]],"properties":{"rate":0.062}},{"type":"Polygon","id":19099,"arcs":[[2216,2425,-2427,-2428,2420,2202]],"properties":{"rate":0.081}},{"type":"Polygon","id":19077,"arcs":[[2213,2205,2419,-2429,2412]],"properties":{"rate":0.056}},{"type":"Polygon","id":19103,"arcs":[[2174,2411,-2430,-2431,-2432,2393]],"properties":{"rate":0.044}},{"type":"Polygon","id":39085,"arcs":[[2389,-2433,-2434,-2435]],"properties":{"rate":0.079}},{"type":"Polygon","id":42039,"arcs":[[2192,2392,-2436,-2437,-2438,2372]],"properties":{"rate":0.101}},{"type":"Polygon","id":17161,"arcs":[[2396,2307,-2439,-2440,-2441,-2442]],"properties":{"rate":0.095}},{"type":"Polygon","id":44001,"arcs":[[2241,2314,-2443]],"properties":{"rate":0.111}},{"type":"Polygon","id":19163,"arcs":[[2306,2395,-2444,2438]],"properties":{"rate":0.073}},{"type":"Polygon","id":44003,"arcs":[[2312,2310,-2445,-2446,-2447]],"properties":{"rate":0.119}},{"type":"Polygon","id":18039,"arcs":[[2289,2292,-2448,-2449,-2450,-2451,-2452]],"properties":{"rate":0.15}},{"type":"Polygon","id":18141,"arcs":[[2447,2291,2196,-2453,-2454,-2455]],"properties":{"rate":0.104}},{"type":"Polygon","id":18091,"arcs":[[2452,2195,-2456,-2457,-2458]],"properties":{"rate":0.107}},{"type":"Polygon","id":18151,"arcs":[[-2459,2285,2283,-2460,-2461]],"properties":{"rate":0.129}},{"type":"Polygon","id":18087,"arcs":[[2459,2282,2290,2451,-2462]],"properties":{"rate":0.14}},{"type":"Polygon","id":31037,"arcs":[[2256,-2463,-2464,-2465,2249]],"properties":{"rate":0.04}},{"type":"Polygon","id":31141,"arcs":[[2255,2253,2402,-2466,-2467,-2468,-2469,2462]],"properties":{"rate":0.044}},{"type":"Polygon","id":31053,"arcs":[[2250,2464,-2470,-2471,-2472,-2473,2296]],"properties":{"rate":0.049}},{"type":"Polygon","id":31117,"arcs":[[2246,-2474,-2475,-2476,-2477,2257]],"properties":{"rate":0.04}},{"type":"Polygon","id":31005,"arcs":[[2245,2238,2327,-2478,2473]],"properties":{"rate":0.044}},{"type":"Polygon","id":31077,"arcs":[[2400,2262,-2479,-2480,-2481,-2482]],"properties":{"rate":0.033}},{"type":"Polygon","id":31041,"arcs":[[2267,2265,-2483,-2484,-2485,-2486,-2487,-2488,2269]],"properties":{"rate":0.031}},{"type":"Polygon","id":31113,"arcs":[[2258,2476,-2489,2482,2264]],"properties":{"rate":0.043}},{"type":"Polygon","id":31175,"arcs":[[2270,2487,-2490,2478,2261]],"properties":{"rate":0.029}},{"type":"MultiPolygon","id":39095,"arcs":[[[-2491,-2492,-2493,-2494,-2495,-2496,2273,-2497,-2498,-2499,-2500]]],"properties":{"rate":0.113}},{"type":"Polygon","id":17197,"arcs":[[2387,-2501,-2502,-2503,-2504,2228]],"properties":{"rate":0.099}},{"type":"MultiPolygon","id":39123,"arcs":[[[2499,-2505,-2506,-2507,-2508,-2509]]],"properties":{"rate":0.107}},{"type":"Polygon","id":17093,"arcs":[[2235,2233,-2510,-2511,2500]],"properties":{"rate":0.104}},{"type":"Polygon","id":39051,"arcs":[[2496,2272,2287,-2512,-2513]],"properties":{"rate":0.121}},{"type":"Polygon","id":39055,"arcs":[[2390,2434,-2514,-2515,-2516]],"properties":{"rate":0.065}},{"type":"MultiPolygon","id":9011,"arcs":[[[2309,2303,2301,-2517,-2518,-2519,2444]]],"properties":{"rate":0.076}},{"type":"Polygon","id":18089,"arcs":[[-2520,2229,2503,-2521,-2522,-2523,-2524]],"properties":{"rate":0.094}},{"type":"Polygon","id":18127,"arcs":[[2456,-2525,2523,-2526]],"properties":{"rate":0.082}},{"type":"Polygon","id":39171,"arcs":[[2511,2286,2458,-2527,-2528,-2529]],"properties":{"rate":0.141}},{"type":"Polygon","id":31007,"arcs":[[2334,2040,-2530,-2531,-2532,2329]],"properties":{"rate":0.035}},{"type":"Polygon","id":31177,"arcs":[[2297,2472,-2533,-2534,2405]],"properties":{"rate":0.041}},{"type":"MultiPolygon","id":44005,"arcs":[[[-2535]],[[-2536]],[[2243,-2537]]],"properties":{"rate":0.1}},{"type":"MultiPolygon","id":9001,"arcs":[[[2293,2277,-2538,-2539,-2540,-2541]]],"properties":{"rate":0.078}},{"type":"Polygon","id":56021,"arcs":[[2043,2133,-2542,-2543,-2544,2529,2039]],"properties":{"rate":0.063}},{"type":"MultiPolygon","id":44009,"arcs":[[[-2545,2445,2518]]],"properties":{"rate":0.092}},{"type":"Polygon","id":42131,"arcs":[[2342,-2546,-2547,-2548,2370]],"properties":{"rate":0.069}},{"type":"MultiPolygon","id":9007,"arcs":[[[2300,-2549,-2550,2516]]],"properties":{"rate":0.067}},{"type":"Polygon","id":9009,"arcs":[[2299,2294,2540,-2551,2551,-2553,2548]],"properties":{"rate":0.089}},{"type":"Polygon","id":42069,"arcs":[[2371,2547,-2554,-2555,2367]],"properties":{"rate":0.083}},{"type":"Polygon","id":36071,"arcs":[[2224,2317,-2556,-2557,-2558,-2559,-2560,2275]],"properties":{"rate":0.082}},{"type":"Polygon","id":17099,"arcs":[[2232,2404,-2561,-2562,-2563,-2564,-2565,-2566,2509]],"properties":{"rate":0.124}},{"type":"Polygon","id":39035,"arcs":[[2433,-2567,-2568,-2569,-2570,-2571,2513]],"properties":{"rate":0.085}},{"type":"Polygon","id":42047,"arcs":[[2358,-2572,-2573,-2574,-2575]],"properties":{"rate":0.129}},{"type":"Polygon","id":42053,"arcs":[[2374,-2576,-2577,-2578,2571]],"properties":{"rate":0.102}},{"type":"Polygon","id":42121,"arcs":[[2575,2373,2437,-2579,-2580,-2581]],"properties":{"rate":0.087}},{"type":"MultiPolygon","id":39043,"arcs":[[[-2582,-2583,-2584,-2585]]],"properties":{"rate":0.095}},{"type":"Polygon","id":39173,"arcs":[[2498,-2586,-2587,-2588,-2589,2504]],"properties":{"rate":0.1}},{"type":"Polygon","id":42023,"arcs":[[2359,2574,-2590,-2591,2361]],"properties":{"rate":0.167}},{"type":"Polygon","id":42103,"arcs":[[2316,2369,-2592,-2593,2555]],"properties":{"rate":0.086}},{"type":"Polygon","id":19139,"arcs":[[2431,-2594,2439,2443,2394]],"properties":{"rate":0.089}},{"type":"Polygon","id":42081,"arcs":[[2340,2345,2363,-2595,-2596,-2597,-2598,-2599,-2600]],"properties":{"rate":0.093}},{"type":"Polygon","id":42113,"arcs":[[-2601,-2602,2545,2341,2599]],"properties":{"rate":0.079}},{"type":"Polygon","id":17011,"arcs":[[2403,2398,-2603,-2604,-2605,-2606,2560]],"properties":{"rate":0.109}},{"type":"Polygon","id":17073,"arcs":[[2397,2441,-2607,-2608,-2609,2602]],"properties":{"rate":0.086}},{"type":"Polygon","id":56041,"arcs":[[1727,2338,-2610,2186]],"properties":{"rate":0.072}},{"type":"Polygon","id":18033,"arcs":[[2526,2460,-2611,-2612,-2613]],"properties":{"rate":0.124}},{"type":"Polygon","id":18113,"arcs":[[2461,2450,-2614,-2615,-2616,2610]],"properties":{"rate":0.145}},{"type":"Polygon","id":31125,"arcs":[[2465,2401,2481,-2617,-2618]],"properties":{"rate":0.036}},{"type":"Polygon","id":36079,"arcs":[[-2619,2537,2276,2559,-2620,-2621]],"properties":{"rate":0.07}},{"type":"MultiPolygon","id":25007,"arcs":[[[-2622]]],"properties":{"rate":0.05}},{"type":"Polygon","id":39093,"arcs":[[-2623,2584,-2624,-2625,-2626,2567]],"properties":{"rate":0.091}},{"type":"Polygon","id":19183,"arcs":[[2429,2410,-2627,-2628,-2629,-2630]],"properties":{"rate":0.049}},{"type":"Polygon","id":19181,"arcs":[[2423,-2631,-2632,-2633,-2634]],"properties":{"rate":0.058}},{"type":"Polygon","id":19107,"arcs":[[2409,2422,-2635,-2636,-2637,2626]],"properties":{"rate":0.071}},{"type":"Polygon","id":19121,"arcs":[[2630,2413,-2638,-2639,-2640]],"properties":{"rate":0.058}},{"type":"Polygon","id":19123,"arcs":[[2421,2427,-2641,-2642,-2643,2634]],"properties":{"rate":0.077}},{"type":"Polygon","id":19125,"arcs":[[2426,2424,2633,-2644,-2645,2640]],"properties":{"rate":0.057}},{"type":"Polygon","id":19155,"arcs":[[2406,2533,-2646,-2647,-2648,-2649,-2650,2415]],"properties":{"rate":0.048}},{"type":"Polygon","id":19029,"arcs":[[2416,2649,-2651,-2652,-2653,2418]],"properties":{"rate":0.058}},{"type":"Polygon","id":19001,"arcs":[[2652,-2654,-2655,2637,2428]],"properties":{"rate":0.051}},{"type":"Polygon","id":39155,"arcs":[[2391,2515,-2656,-2657,-2658,2435]],"properties":{"rate":0.135}},{"type":"MultiPolygon","id":39143,"arcs":[[[2505,2588,-2659,-2660,2582,-2661]]],"properties":{"rate":0.108}},{"type":"Polygon","id":42085,"arcs":[[2436,2657,-2662,-2663,-2664,2578]],"properties":{"rate":0.113}},{"type":"Polygon","id":39069,"arcs":[[2512,2528,-2665,-2666,2585,2497]],"properties":{"rate":0.109}},{"type":"Polygon","id":18099,"arcs":[[2454,-2667,-2668,-2669,2448]],"properties":{"rate":0.114}},{"type":"Polygon","id":42035,"arcs":[[2362,2590,-2670,-2671,-2672,2594]],"properties":{"rate":0.082}},{"type":"MultiPolygon","id":6023,"arcs":[[[2365,-2673,-2674,-2675,2319]]],"properties":{"rate":0.103}},{"type":"Polygon","id":17063,"arcs":[[2501,2510,2565,-2676,-2677]],"properties":{"rate":0.114}},{"type":"Polygon","id":31023,"arcs":[[2463,2468,-2678,-2679,-2680,-2681,2469]],"properties":{"rate":0.039}},{"type":"Polygon","id":31155,"arcs":[[2470,2680,-2682,-2683,-2684,-2685]],"properties":{"rate":0.045}},{"type":"Polygon","id":18085,"arcs":[[2449,2668,-2686,-2687,-2688,2613]],"properties":{"rate":0.11}},{"type":"Polygon","id":31033,"arcs":[[2330,2531,-2689,-2690,-2691,-2692,2324]],"properties":{"rate":0.041}},{"type":"Polygon","id":42031,"arcs":[[2576,2580,-2693,-2694,-2695]],"properties":{"rate":0.083}},{"type":"Polygon","id":49057,"arcs":[[2348,-2696,-2697,2335,2332]],"properties":{"rate":0.07}},{"type":"Polygon","id":18149,"arcs":[[2453,2457,-2698,-2699,2666]],"properties":{"rate":0.126}},{"type":"Polygon","id":42079,"arcs":[[2553,2546,2601,-2700,-2701,-2702,-2703]],"properties":{"rate":0.092}},{"type":"Polygon","id":39039,"arcs":[[2664,2527,2612,-2704,-2705,-2706]],"properties":{"rate":0.117}},{"type":"Polygon","id":19115,"arcs":[[2430,2629,-2707,-2708,-2709,2593]],"properties":{"rate":0.08}},{"type":"Polygon","id":31101,"arcs":[[2474,2477,2326,-2710,-2711,-2712]],"properties":{"rate":0.039}},{"type":"Polygon","id":31111,"arcs":[[2475,2711,-2713,-2714,-2715,-2716,2483,2488]],"properties":{"rate":0.04}},{"type":"MultiPolygon","id":25019,"arcs":[[[-2717]]],"properties":{"rate":0.05}},{"type":"Polygon","id":31143,"arcs":[[2677,2467,-2718,-2719,-2720]],"properties":{"rate":0.042}},{"type":"Polygon","id":31105,"arcs":[[2530,2543,-2721,-2722,2688]],"properties":{"rate":0.043}},{"type":"Polygon","id":31121,"arcs":[[2466,2617,-2723,-2724,-2725,2717]],"properties":{"rate":0.04}},{"type":"Polygon","id":31093,"arcs":[[2480,-2726,-2727,-2728,2722,2616]],"properties":{"rate":0.038}},{"type":"Polygon","id":31163,"arcs":[[2489,2486,-2729,2725,2479]],"properties":{"rate":0.03}},{"type":"Polygon","id":31055,"arcs":[[2471,2684,-2730,2645,2532]],"properties":{"rate":0.05}},{"type":"Polygon","id":49029,"arcs":[[2336,2696,-2731,-2732,-2733]],"properties":{"rate":0.053}},{"type":"Polygon","id":42065,"arcs":[[2572,2577,2694,-2734,-2735,-2736]],"properties":{"rate":0.095}},{"type":"Polygon","id":6105,"arcs":[[2320,2674,-2737,-2738,-2739]],"properties":{"rate":0.159}},{"type":"MultiPolygon","id":36119,"arcs":[[[-2740,2538,2618,-2741,-2742,-2743]]],"properties":{"rate":0.074}},{"type":"Polygon","id":34037,"arcs":[[2556,2592,-2744,-2745,-2746,-2747]],"properties":{"rate":0.085}},{"type":"Polygon","id":39153,"arcs":[[2569,-2748,-2749,-2750,-2751]],"properties":{"rate":0.096}},{"type":"Polygon","id":39133,"arcs":[[2514,2570,2750,-2752,-2753,2655]],"properties":{"rate":0.092}},{"type":"Polygon","id":17131,"arcs":[[2440,2708,-2754,-2755,-2756,-2757,2606]],"properties":{"rate":0.089}},{"type":"Polygon","id":17155,"arcs":[[2605,-2758,2561]],"properties":{"rate":0.15}},{"type":"Polygon","id":36087,"arcs":[[-2759,2619,2558,-2760,-2761]],"properties":{"rate":0.074}},{"type":"Polygon","id":42037,"arcs":[[2699,2600,2598,-2762,-2763,-2764]],"properties":{"rate":0.082}},{"type":"Polygon","id":17091,"arcs":[[2502,2676,-2765,-2766,-2767,-2768,2520]],"properties":{"rate":0.128}},{"type":"Polygon","id":18183,"arcs":[[2614,2687,-2769,-2770,-2771]],"properties":{"rate":0.116}},{"type":"MultiPolygon","id":36103,"arcs":[[[-2772]],[[-2773,-2774]]],"properties":{"rate":0.075}},{"type":"Polygon","id":39077,"arcs":[[2583,2659,-2775,-2776,-2777,-2778,2623]],"properties":{"rate":0.128}},{"type":"Polygon","id":18073,"arcs":[[2525,2522,-2779,-2780,-2781,-2782,2697]],"properties":{"rate":0.087}},{"type":"Polygon","id":39103,"arcs":[[2568,2625,-2783,-2784,2747]],"properties":{"rate":0.075}},{"type":"Polygon","id":18003,"arcs":[[2703,2611,2615,2770,-2785,-2786,-2787,-2788,-2789]],"properties":{"rate":0.093}},{"type":"Polygon","id":39147,"arcs":[[2658,2587,-2790,-2791,-2792,2774]],"properties":{"rate":0.12}},{"type":"Polygon","id":42033,"arcs":[[2669,2589,2573,2735,-2793,-2794,-2795,-2796]],"properties":{"rate":0.098}},{"type":"Polygon","id":49043,"arcs":[[2337,2732,-2797,-2798,-2799,-2800,2187,2609]],"properties":{"rate":0.058}},{"type":"Polygon","id":42027,"arcs":[[2670,2795,-2801,-2802,-2803,-2804]],"properties":{"rate":0.056}},{"type":"Polygon","id":42089,"arcs":[[2591,2368,2554,2702,-2805,-2806,-2807,2743]],"properties":{"rate":0.09}},{"type":"Polygon","id":39125,"arcs":[[2704,2788,-2808,-2809]],"properties":{"rate":0.115}},{"type":"Polygon","id":17175,"arcs":[[2608,-2810,-2811,-2812,2603]],"properties":{"rate":0.098}},{"type":"Polygon","id":31049,"arcs":[[2325,2691,-2813,-2814,2709]],"properties":{"rate":0.038}},{"type":"Polygon","id":18111,"arcs":[[2778,2521,2767,-2815,-2816]],"properties":{"rate":0.089}},{"type":"Polygon","id":34031,"arcs":[[-2817,2759,2557,2746,-2818,-2819]],"properties":{"rate":0.117}},{"type":"Polygon","id":31153,"arcs":[[2729,2683,-2820,-2821,2646]],"properties":{"rate":0.047}},{"type":"Polygon","id":6035,"arcs":[[2376,-2822,-2823,-2824,2378]],"properties":{"rate":0.118}},{"type":"Polygon","id":6089,"arcs":[[2321,2738,-2825,-2826,2821,2375]],"properties":{"rate":0.147}},{"type":"Polygon","id":42097,"arcs":[[2596,-2827,-2828,-2829,-2830,-2831,2762,-2832]],"properties":{"rate":0.094}},{"type":"Polygon","id":18049,"arcs":[[2667,-2833,-2834,-2835,-2836,2685]],"properties":{"rate":0.112}},{"type":"Polygon","id":31081,"arcs":[[2718,2724,-2837,-2838,-2839,-2840]],"properties":{"rate":0.034}},{"type":"Polygon","id":18131,"arcs":[[2698,2781,-2841,-2842,2832]],"properties":{"rate":0.095}},{"type":"Polygon","id":42093,"arcs":[[2597,2831,2761]],"properties":{"rate":0.059}},{"type":"Polygon","id":42019,"arcs":[[2579,2663,-2843,-2844,-2845,-2846,2692]],"properties":{"rate":0.071}},{"type":"Polygon","id":42005,"arcs":[[2693,2845,-2847,-2848,-2849,2733]],"properties":{"rate":0.08}},{"type":"Polygon","id":39063,"arcs":[[2586,-2850,-2851,-2852,-2853,2789]],"properties":{"rate":0.091}},{"type":"Polygon","id":39137,"arcs":[[2665,2705,2808,-2854,-2855,2849]],"properties":{"rate":0.09}},{"type":"Polygon","id":19101,"arcs":[[2636,-2856,-2857,-2858,2627]],"properties":{"rate":0.087}},{"type":"Polygon","id":19087,"arcs":[[2628,2857,-2859,-2860,-2861,2706]],"properties":{"rate":0.088}},{"type":"Polygon","id":19179,"arcs":[[2635,2642,-2862,-2863,2855]],"properties":{"rate":0.094}},{"type":"Polygon","id":19039,"arcs":[[2631,2639,-2864,-2865,-2866]],"properties":{"rate":0.074}},{"type":"Polygon","id":19117,"arcs":[[2632,2865,-2867,-2868,2643]],"properties":{"rate":0.06}},{"type":"Polygon","id":19135,"arcs":[[2641,2644,2867,-2869,2861]],"properties":{"rate":0.075}},{"type":"Polygon","id":19129,"arcs":[[2647,2820,-2870,-2871,-2872]],"properties":{"rate":0.043}},{"type":"Polygon","id":19137,"arcs":[[2648,2871,-2873,-2874,2650]],"properties":{"rate":0.087}},{"type":"Polygon","id":19003,"arcs":[[2651,2873,-2875,-2876,2653]],"properties":{"rate":0.06}},{"type":"Polygon","id":19175,"arcs":[[2654,2875,-2877,2863,2638]],"properties":{"rate":0.06}},{"type":"Polygon","id":49011,"arcs":[[2695,-2878,-2879,2730]],"properties":{"rate":0.056}},{"type":"Polygon","id":17095,"arcs":[[2607,2756,-2880,-2881,-2882,2809]],"properties":{"rate":0.103}},{"type":"Polygon","id":42119,"arcs":[[2826,2595,2671,2803,-2883,-2884]],"properties":{"rate":0.088}},{"type":"Polygon","id":17123,"arcs":[[2604,2811,-2885,-2886,2562,2757]],"properties":{"rate":0.106}},{"type":"Polygon","id":34003,"arcs":[[-2887,2760,2816,-2888,-2889]],"properties":{"rate":0.084}},{"type":"Polygon","id":39099,"arcs":[[2656,2752,-2890,-2891,-2892,2661]],"properties":{"rate":0.118}},{"type":"Polygon","id":42025,"arcs":[[2701,-2893,-2894,-2895,2804]],"properties":{"rate":0.1}},{"type":"Polygon","id":42073,"arcs":[[2662,2891,-2896,-2897,2842]],"properties":{"rate":0.089}},{"type":"Polygon","id":17105,"arcs":[[2675,2564,-2898,-2899,-2900,2764]],"properties":{"rate":0.107}},{"type":"Polygon","id":34041,"arcs":[[2744,2806,-2901,-2902,-2903,-2904]],"properties":{"rate":0.088}},{"type":"Polygon","id":34027,"arcs":[[2817,2745,2903,-2905,-2906,-2907,-2908]],"properties":{"rate":0.076}},{"type":"Polygon","id":49045,"arcs":[[2877,2347,2356,-2909,-2910,-2911,-2912]],"properties":{"rate":0.064}},{"type":"Polygon","id":19057,"arcs":[[2707,2860,-2913,-2914,2753]],"properties":{"rate":0.082}},{"type":"Polygon","id":17071,"arcs":[[2754,2913,-2915,-2916,-2917,-2918]],"properties":{"rate":0.094}},{"type":"Polygon","id":17187,"arcs":[[2755,2917,-2919,-2920,2879]],"properties":{"rate":0.08}},{"type":"Polygon","id":39005,"arcs":[[2624,2777,-2921,-2922,-2923,-2924,2782]],"properties":{"rate":0.114}},{"type":"Polygon","id":31025,"arcs":[[2819,2682,-2925,-2926,-2927,2869]],"properties":{"rate":0.046}},{"type":"Polygon","id":31185,"arcs":[[2719,2839,-2928,-2929,-2930]],"properties":{"rate":0.057}},{"type":"Polygon","id":31079,"arcs":[[2727,-2931,-2932,2836,2723]],"properties":{"rate":0.044}},{"type":"Polygon","id":31047,"arcs":[[2484,2715,-2933,-2934,-2935,-2936]],"properties":{"rate":0.048}},{"type":"Polygon","id":31019,"arcs":[[2728,2485,2935,-2937,-2938,-2939,2930,2726]],"properties":{"rate":0.035}},{"type":"Polygon","id":31159,"arcs":[[2678,2929,-2940,-2941]],"properties":{"rate":0.037}},{"type":"Polygon","id":31109,"arcs":[[2681,2679,2940,-2942,-2943,-2944,2924]],"properties":{"rate":0.042}},{"type":"Polygon","id":18169,"arcs":[[2686,2835,-2945,-2946,-2947,2768]],"properties":{"rate":0.12}},{"type":"Polygon","id":17075,"arcs":[[2766,-2948,-2949,-2950,2814]],"properties":{"rate":0.1}},{"type":"Polygon","id":18069,"arcs":[[2769,2946,-2951,-2952,2784]],"properties":{"rate":0.111}},{"type":"MultiPolygon","id":8123,"arcs":[[[-2953,2720,2542,-2954,-2955,-2956,-2957,-2958]]],"properties":{"rate":0.075}},{"type":"Polygon","id":31135,"arcs":[[2710,2813,-2959,-2960,-2961,-2962,2712]],"properties":{"rate":0.031}},{"type":"Polygon","id":8107,"arcs":[[-2963,2128,-2964,-2965,-2966,-2967,-2968]],"properties":{"rate":0.06}},{"type":"Polygon","id":8057,"arcs":[[-2969,2131,2129,2962,-2970]],"properties":{"rate":0.033}},{"type":"Polygon","id":8081,"arcs":[[2127,2189,-2971,-2972,-2973,2963]],"properties":{"rate":0.056}},{"type":"Polygon","id":8075,"arcs":[[-2974,-2975,2689,2721,2952,-2976,-2977,-2978]],"properties":{"rate":0.046}},{"type":"Polygon","id":8115,"arcs":[[2958,2812,2690,2974,-2979]],"properties":{"rate":0.033}},{"type":"Polygon","id":49009,"arcs":[[2970,2188,2799,-2980,-2981]],"properties":{"rate":0.027}},{"type":"Polygon","id":32011,"arcs":[[2354,-2982,-2983,-2984]],"properties":{"rate":0.093}},{"type":"Polygon","id":32015,"arcs":[[2353,2352,-2985,-2986,-2987,2981]],"properties":{"rate":0.072}},{"type":"Polygon","id":8069,"arcs":[[2953,2541,2132,2968,-2988,-2989]],"properties":{"rate":0.056}},{"type":"Polygon","id":18103,"arcs":[[2834,-2990,-2991,-2992,2944]],"properties":{"rate":0.123}},{"type":"Polygon","id":39033,"arcs":[[2775,2791,-2993,-2994,-2995,-2996]],"properties":{"rate":0.132}},{"type":"Polygon","id":17053,"arcs":[[2947,2765,2899,-2997,-2998,-2999]],"properties":{"rate":0.104}},{"type":"Polygon","id":39139,"arcs":[[2776,2995,-3000,-3001,2920]],"properties":{"rate":0.118}},{"type":"Polygon","id":39175,"arcs":[[2790,2852,-3002,-3003,2992]],"properties":{"rate":0.112}},{"type":"Polygon","id":39169,"arcs":[[2783,2923,-3004,-3005,2748]],"properties":{"rate":0.089}},{"type":"Polygon","id":39161,"arcs":[[2807,2787,-3006,-3007,-3008,-3009,2853]],"properties":{"rate":0.132}},{"type":"Polygon","id":39151,"arcs":[[2751,2749,3004,-3010,-3011,-3012,-3013,2889]],"properties":{"rate":0.11}},{"type":"Polygon","id":17143,"arcs":[[2810,2881,-3014,-3015,-3016,2884]],"properties":{"rate":0.116}},{"type":"Polygon","id":42095,"arcs":[[2900,2805,2894,-3017,-3018]],"properties":{"rate":0.088}},{"type":"Polygon","id":32027,"arcs":[[2351,2386,-3019,2984]],"properties":{"rate":0.106}},{"type":"Polygon","id":42107,"arcs":[[2700,2763,2830,-3020,-3021,-3022,-3023,2892]],"properties":{"rate":0.101}},{"type":"Polygon","id":39029,"arcs":[[2890,3012,-3024,-3025,-3026,-3027,2895]],"properties":{"rate":0.125}},{"type":"Polygon","id":17203,"arcs":[[2897,2563,2885,3015,-3028,-3029]],"properties":{"rate":0.086}},{"type":"Polygon","id":18001,"arcs":[[2786,-3030,-3031,-3032,3005]],"properties":{"rate":0.134}},{"type":"Polygon","id":39003,"arcs":[[2854,3008,-3033,-3034,2850]],"properties":{"rate":0.102}},{"type":"Polygon","id":49035,"arcs":[[2878,2911,-3035,-3036,2796,2731]],"properties":{"rate":0.06}},{"type":"MultiPolygon","id":36005,"arcs":[[[2741,-3037,-3038,-3039]]],"properties":{"rate":0.133}},{"type":"Polygon","id":18179,"arcs":[[2785,2951,-3040,-3041,-3042,3029]],"properties":{"rate":0.091}},{"type":"MultiPolygon","id":36059,"arcs":[[[-3043,-3044,-3045,-3046,-3047,2773]]],"properties":{"rate":0.072}},{"type":"Polygon","id":18181,"arcs":[[2840,2780,-3048,-3049,-3050,-3051]],"properties":{"rate":0.094}},{"type":"Polygon","id":18017,"arcs":[[2841,3050,-3052,-3053,2989,2833]],"properties":{"rate":0.105}},{"type":"Polygon","id":42063,"arcs":[[2734,2848,-3054,-3055,2792]],"properties":{"rate":0.078}},{"type":"Polygon","id":34013,"arcs":[[2907,-3056,-3057,-3058,2887,2818]],"properties":{"rate":0.111}},{"type":"Polygon","id":19071,"arcs":[[2870,2926,-3059,-3060,-3061]],"properties":{"rate":0.07}},{"type":"Polygon","id":19145,"arcs":[[2872,3060,-3062,-3063,-3064]],"properties":{"rate":0.087}},{"type":"Polygon","id":19173,"arcs":[[2874,3063,-3065,-3066,-3067]],"properties":{"rate":0.067}},{"type":"Polygon","id":19177,"arcs":[[2856,-3068,-3069,-3070,-3071,2858]],"properties":{"rate":0.08}},{"type":"Polygon","id":19051,"arcs":[[2862,-3072,-3073,-3074,3067]],"properties":{"rate":0.101}},{"type":"Polygon","id":19159,"arcs":[[2876,3066,-3075,-3076,-3077]],"properties":{"rate":0.053}},{"type":"Polygon","id":19053,"arcs":[[2864,3076,-3078,-3079,-3080]],"properties":{"rate":0.066}},{"type":"Polygon","id":19185,"arcs":[[2866,3079,-3081,-3082,-3083]],"properties":{"rate":0.064}},{"type":"Polygon","id":19007,"arcs":[[2868,3082,-3084,-3085,3071]],"properties":{"rate":0.094}},{"type":"Polygon","id":42109,"arcs":[[2883,-3086,-3087,2827]],"properties":{"rate":0.086}},{"type":"Polygon","id":36061,"arcs":[[3037,-3088]],"properties":{"rate":0.092}},{"type":"Polygon","id":49047,"arcs":[[2980,-3089,-3090,-3091,-3092,-3093,-3094,2971]],"properties":{"rate":0.066}},{"type":"Polygon","id":42007,"arcs":[[2896,3026,-3095,-3096,-3097,2843]],"properties":{"rate":0.084}},{"type":"Polygon","id":42087,"arcs":[[-3098,3085,2882,2802,-3099]],"properties":{"rate":0.104}},{"type":"Polygon","id":49013,"arcs":[[2798,-3100,-3101,-3102,3088,2979]],"properties":{"rate":0.069}},{"type":"Polygon","id":39065,"arcs":[[2851,3033,-3103,-3104,-3105,-3106,3001]],"properties":{"rate":0.112}},{"type":"Polygon","id":34017,"arcs":[[2888,3057,-3107]],"properties":{"rate":0.116}},{"type":"Polygon","id":19111,"arcs":[[2859,3070,-3108,-3109,2914,2912]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":36081,"arcs":[[[-3110,-3111,-3112,3043]]],"properties":{"rate":0.091}},{"type":"Polygon","id":34019,"arcs":[[2904,2902,-3113,-3114,-3115]],"properties":{"rate":0.069}},{"type":"Polygon","id":42077,"arcs":[[3016,2893,3022,-3116,-3117,-3118]],"properties":{"rate":0.093}},{"type":"Polygon","id":31131,"arcs":[[2925,2943,-3119,-3120,-3121,3058]],"properties":{"rate":0.05}},{"type":"Polygon","id":34035,"arcs":[[2905,3114,-3122,-3123,-3124]],"properties":{"rate":0.079}},{"type":"Polygon","id":17113,"arcs":[[2898,3028,-3125,-3126,-3127,-3128,-3129,2996]],"properties":{"rate":0.074}},{"type":"Polygon","id":8095,"arcs":[[2978,2973,-3130,-3131,2959]],"properties":{"rate":0.026}},{"type":"Polygon","id":17179,"arcs":[[3027,3014,-3132,-3133,-3134,3124]],"properties":{"rate":0.113}},{"type":"Polygon","id":42061,"arcs":[[2801,-3135,-3136,-3137,-3138,-3139,3098]],"properties":{"rate":0.102}},{"type":"Polygon","id":42013,"arcs":[[3134,2800,2794,-3140,-3141]],"properties":{"rate":0.074}},{"type":"MultiPolygon","id":36047,"arcs":[[[3110,-3142]]],"properties":{"rate":0.11}},{"type":"Polygon","id":18007,"arcs":[[2815,2949,-3143,-3144,-3145,3047,2779]],"properties":{"rate":0.09}},{"type":"Polygon","id":34039,"arcs":[[3055,2906,3123,-3146,-3147]],"properties":{"rate":0.098}},{"type":"Polygon","id":18015,"arcs":[[3049,-3148,-3149,-3150,3051]],"properties":{"rate":0.099}},{"type":"Polygon","id":39019,"arcs":[[3011,-3151,-3152,-3153,3023]],"properties":{"rate":0.132}},{"type":"Polygon","id":39107,"arcs":[[3006,3031,-3154,-3155,-3156,-3157]],"properties":{"rate":0.078}},{"type":"Polygon","id":42021,"arcs":[[2793,3054,-3158,-3159,-3160,3139]],"properties":{"rate":0.088}},{"type":"Polygon","id":17057,"arcs":[[2880,2919,-3161,-3162,-3163,3131,3013]],"properties":{"rate":0.125}},{"type":"Polygon","id":39117,"arcs":[[2994,-3164,-3165,-3166,2999]],"properties":{"rate":0.1}},{"type":"Polygon","id":39101,"arcs":[[2993,3002,3105,-3167,-3168,3163]],"properties":{"rate":0.102}},{"type":"Polygon","id":31063,"arcs":[[2714,-3169,-3170,-3171,-3172,-3173,2932]],"properties":{"rate":0.03}},{"type":"Polygon","id":31001,"arcs":[[2931,2938,-3174,-3175,-3176,2837]],"properties":{"rate":0.056}},{"type":"Polygon","id":31073,"arcs":[[2933,3172,-3177,-3178]],"properties":{"rate":0.038}},{"type":"Polygon","id":31085,"arcs":[[2713,2961,-3179,-3180,-3181,3168]],"properties":{"rate":0.042}},{"type":"Polygon","id":31029,"arcs":[[2960,3130,-3182,-3183,3178]],"properties":{"rate":0.03}},{"type":"Polygon","id":31059,"arcs":[[2928,-3184,-3185,-3186,-3187]],"properties":{"rate":0.044}},{"type":"Polygon","id":31151,"arcs":[[3186,-3188,-3189,2941,2939]],"properties":{"rate":0.04}},{"type":"Polygon","id":31035,"arcs":[[2927,2838,3175,-3190,-3191,3183]],"properties":{"rate":0.043}},{"type":"Polygon","id":42067,"arcs":[[3086,3097,3138,-3192,-3193,2828]],"properties":{"rate":0.076}},{"type":"Polygon","id":49051,"arcs":[[2797,3035,-3194,3099]],"properties":{"rate":0.06}},{"type":"Polygon","id":31099,"arcs":[[3173,2937,-3195,-3196,-3197]],"properties":{"rate":0.038}},{"type":"Polygon","id":39011,"arcs":[[3032,3007,3156,-3198,-3199,3102]],"properties":{"rate":0.101}},{"type":"Polygon","id":31137,"arcs":[[2934,3177,-3200,-3201,3194,2936]],"properties":{"rate":0.038}},{"type":"Polygon","id":42129,"arcs":[[2847,-3202,-3203,-3204,-3205,3157,3053]],"properties":{"rate":0.078}},{"type":"Polygon","id":42011,"arcs":[[3115,3021,-3206,-3207,-3208,-3209]],"properties":{"rate":0.091}},{"type":"Polygon","id":42003,"arcs":[[2844,3096,-3210,3201,2846]],"properties":{"rate":0.072}},{"type":"Polygon","id":39075,"arcs":[[3003,2922,-3211,-3212,-3213,3009]],"properties":{"rate":0.063}},{"type":"Polygon","id":39157,"arcs":[[3010,3212,-3214,-3215,-3216,3150]],"properties":{"rate":0.102}},{"type":"Polygon","id":42043,"arcs":[[2829,-3217,-3218,-3219,-3220,-3221,3019]],"properties":{"rate":0.081}},{"type":"Polygon","id":18053,"arcs":[[2950,2945,2991,-3222,-3223,-3224,-3225,-3226,3039]],"properties":{"rate":0.111}},{"type":"Polygon","id":36085,"arcs":[[-3227]],"properties":{"rate":0.089}},{"type":"Polygon","id":17067,"arcs":[[2915,3108,-3228,-3229,-3230,-3231,-3232]],"properties":{"rate":0.113}},{"type":"Polygon","id":54029,"arcs":[[3094,3025,-3233,-3234,-3235]],"properties":{"rate":0.118}},{"type":"Polygon","id":17109,"arcs":[[2918,2916,3231,-3236,3160]],"properties":{"rate":0.077}},{"type":"Polygon","id":42099,"arcs":[[3216,3192,-3237,-3238]],"properties":{"rate":0.081}},{"type":"Polygon","id":29045,"arcs":[[3107,3069,-3239,-3240,-3241,3227]],"properties":{"rate":0.113}},{"type":"Polygon","id":42017,"arcs":[[3112,2901,3017,3117,-3242,-3243,-3244,-3245]],"properties":{"rate":0.073}},{"type":"Polygon","id":34023,"arcs":[[3145,3122,-3246,-3247,-3248]],"properties":{"rate":0.092}},{"type":"Polygon","id":29199,"arcs":[[3068,3073,-3249,-3250,-3251,3238]],"properties":{"rate":0.122}},{"type":"Polygon","id":39081,"arcs":[[3024,3152,-3252,-3253,-3254,-3255,3232]],"properties":{"rate":0.127}},{"type":"Polygon","id":29197,"arcs":[[3248,3072,3084,-3256,-3257]],"properties":{"rate":0.078}},{"type":"Polygon","id":29171,"arcs":[[3083,3081,-3258,-3259,-3260,3255]],"properties":{"rate":0.074}},{"type":"Polygon","id":29005,"arcs":[[3059,3120,-3261,-3262,-3263,3061]],"properties":{"rate":0.079}},{"type":"Polygon","id":29129,"arcs":[[3080,3078,-3264,-3265,-3266,3257]],"properties":{"rate":0.079}},{"type":"Polygon","id":29147,"arcs":[[3062,3262,-3267,-3268,-3269,-3270,3064]],"properties":{"rate":0.059}},{"type":"Polygon","id":49049,"arcs":[[3193,3034,2910,-3271,-3272,-3273,3100]],"properties":{"rate":0.054}},{"type":"Polygon","id":29081,"arcs":[[3077,3075,-3274,-3275,-3276,-3277,3263]],"properties":{"rate":0.078}},{"type":"Polygon","id":39083,"arcs":[[3210,2921,3000,3165,-3278,-3279,-3280]],"properties":{"rate":0.087}},{"type":"Polygon","id":18075,"arcs":[[3030,3041,-3281,-3282,-3283,-3284,3153]],"properties":{"rate":0.104}},{"type":"Polygon","id":29227,"arcs":[[3074,3065,3269,-3285,3273]],"properties":{"rate":0.084}},{"type":"Polygon","id":18009,"arcs":[[3040,3225,-3286,3280]],"properties":{"rate":0.133}},{"type":"Polygon","id":18067,"arcs":[[3221,2990,3052,3149,-3287,-3288]],"properties":{"rate":0.119}},{"type":"Polygon","id":18157,"arcs":[[3048,3144,-3289,-3290,-3291,-3292,3147]],"properties":{"rate":0.085}},{"type":"Polygon","id":31127,"arcs":[[3260,3119,-3293,-3294,-3295,-3296]],"properties":{"rate":0.054}},{"type":"Polygon","id":42075,"arcs":[[-3297,3205,3020,3220]],"properties":{"rate":0.07}},{"type":"Polygon","id":39091,"arcs":[[3198,-3298,-3299,-3300,3103]],"properties":{"rate":0.112}},{"type":"Polygon","id":8087,"arcs":[[2957,-3301,-3302,2975]],"properties":{"rate":0.049}},{"type":"Polygon","id":31067,"arcs":[[2942,3188,-3303,-3304,-3305,-3306,-3307]],"properties":{"rate":0.059}},{"type":"Polygon","id":31097,"arcs":[[3118,3306,-3308,3292]],"properties":{"rate":0.039}},{"type":"Polygon","id":39159,"arcs":[[-3309,3166,3104,3299,-3310,-3311,-3312]],"properties":{"rate":0.08}},{"type":"Polygon","id":17183,"arcs":[[2948,2998,-3313,-3314,-3315,-3316,3142]],"properties":{"rate":0.12}},{"type":"Polygon","id":8049,"arcs":[[2987,2969,2967,-3317,-3318,-3319,-3320,-3321]],"properties":{"rate":0.058}},{"type":"Polygon","id":39149,"arcs":[[3197,3155,-3322,-3323,-3324,3297]],"properties":{"rate":0.119}},{"type":"Polygon","id":42125,"arcs":[[3095,3234,-3325,-3326,-3327,-3328,-3329,3202,3209]],"properties":{"rate":0.079}},{"type":"Polygon","id":18171,"arcs":[[3143,3315,-3330,-3331,3288]],"properties":{"rate":0.101}},{"type":"Polygon","id":34025,"arcs":[[-3332,3246,-3333,-3334,-3335]],"properties":{"rate":0.087}},{"type":"Polygon","id":39031,"arcs":[[3211,3279,-3336,-3337,-3338,3213]],"properties":{"rate":0.123}},{"type":"Polygon","id":42091,"arcs":[[3241,3116,3208,-3339,-3340,-3341]],"properties":{"rate":0.07}},{"type":"Polygon","id":6103,"arcs":[[2824,2737,-3342,-3343,-3344,-3345]],"properties":{"rate":0.137}},{"type":"Polygon","id":6063,"arcs":[[2825,3344,-3346,-3347,-3348,2822]],"properties":{"rate":0.139}},{"type":"Polygon","id":39041,"arcs":[[3164,3167,3308,-3349,-3350,3277]],"properties":{"rate":0.067}},{"type":"Polygon","id":8125,"arcs":[[3181,3129,2977,-3351,-3352,-3353,-3354]],"properties":{"rate":0.026}},{"type":"Polygon","id":8121,"arcs":[[2976,3301,-3355,-3356,-3357,-3358,-3359,3350]],"properties":{"rate":0.032}},{"type":"Polygon","id":17125,"arcs":[[3132,3162,-3360,-3361,-3362,-3363]],"properties":{"rate":0.143}},{"type":"Polygon","id":39067,"arcs":[[3151,3215,-3364,-3365,3251]],"properties":{"rate":0.106}},{"type":"Polygon","id":18023,"arcs":[[3148,3291,-3366,-3367,-3368,-3369,3286]],"properties":{"rate":0.092}},{"type":"Polygon","id":34021,"arcs":[[3121,3113,3244,-3370,3332,3245]],"properties":{"rate":0.081}},{"type":"Polygon","id":18159,"arcs":[[3287,3368,-3371,-3372,3222]],"properties":{"rate":0.103}},{"type":"Polygon","id":54009,"arcs":[[3233,3254,-3373,3324]],"properties":{"rate":0.111}},{"type":"Polygon","id":17019,"arcs":[[2997,3128,-3374,-3375,3312]],"properties":{"rate":0.082}},{"type":"Polygon","id":29211,"arcs":[[3258,3265,-3376,-3377,-3378]],"properties":{"rate":0.064}},{"type":"Polygon","id":29075,"arcs":[[3284,3268,-3379,-3380,-3381,3274]],"properties":{"rate":0.068}},{"type":"Polygon","id":18095,"arcs":[[3223,3371,-3382,-3383,-3384,-3385]],"properties":{"rate":0.097}},{"type":"Polygon","id":18035,"arcs":[[3224,3384,-3386,-3387,3281,3285]],"properties":{"rate":0.095}},{"type":"Polygon","id":18045,"arcs":[[3330,-3388,-3389,-3390,3289]],"properties":{"rate":0.116}},{"type":"Polygon","id":39037,"arcs":[[3154,3283,-3391,-3392,-3393,-3394,-3395,3321]],"properties":{"rate":0.099}},{"type":"Polygon","id":31181,"arcs":[[3174,3196,-3396,-3397,-3398,-3399,3189]],"properties":{"rate":0.042}},{"type":"Polygon","id":31061,"arcs":[[3195,-3400,-3401,-3402,3395]],"properties":{"rate":0.037}},{"type":"Polygon","id":31129,"arcs":[[3190,3398,-3403,-3404,-3405,3184]],"properties":{"rate":0.047}},{"type":"Polygon","id":31057,"arcs":[[3179,3182,3353,-3406,-3407,-3408]],"properties":{"rate":0.04}},{"type":"Polygon","id":31065,"arcs":[[3176,3171,-3409,-3410,-3411,-3412,3199]],"properties":{"rate":0.041}},{"type":"Polygon","id":31169,"arcs":[[3185,3404,-3413,-3414]],"properties":{"rate":0.043}},{"type":"Polygon","id":31095,"arcs":[[3413,-3415,3302,3187]],"properties":{"rate":0.046}},{"type":"Polygon","id":31145,"arcs":[[3170,-3416,-3417,-3418,3408]],"properties":{"rate":0.042}},{"type":"Polygon","id":31087,"arcs":[[3180,3407,-3419,3415,3169]],"properties":{"rate":0.066}},{"type":"Polygon","id":31083,"arcs":[[3200,3411,-3420,-3421,3399]],"properties":{"rate":0.036}},{"type":"Polygon","id":29001,"arcs":[[3256,3259,3377,-3422,-3423,-3424,3249]],"properties":{"rate":0.065}},{"type":"Polygon","id":42041,"arcs":[[3217,3237,-3425,-3426,-3427]],"properties":{"rate":0.068}},{"type":"Polygon","id":17107,"arcs":[[3125,3133,3362,-3428,-3429,-3430,-3431]],"properties":{"rate":0.095}},{"type":"Polygon","id":42009,"arcs":[[3140,3159,-3432,-3433,-3434,3135]],"properties":{"rate":0.109}},{"type":"Polygon","id":42071,"arcs":[[3206,3296,3219,-3435,-3436,-3437,-3438]],"properties":{"rate":0.075}},{"type":"Polygon","id":18135,"arcs":[[3282,3386,-3439,-3440,3390]],"properties":{"rate":0.102}},{"type":"Polygon","id":29103,"arcs":[[3250,3423,-3441,-3442,-3443,3239]],"properties":{"rate":0.059}},{"type":"Polygon","id":42055,"arcs":[[3236,3191,3137,-3444,-3445,-3446,-3447,3424]],"properties":{"rate":0.086}},{"type":"Polygon","id":42111,"arcs":[[3158,3204,-3448,-3449,-3450,3431]],"properties":{"rate":0.085}},{"type":"Polygon","id":17039,"arcs":[[3126,3430,-3451,-3452]],"properties":{"rate":0.092}},{"type":"Polygon","id":17169,"arcs":[[3235,3230,-3453,-3454,-3455,3359,3161]],"properties":{"rate":0.066}},{"type":"Polygon","id":17147,"arcs":[[3127,3451,-3456,-3457,-3458,3373]],"properties":{"rate":0.082}},{"type":"Polygon","id":39089,"arcs":[[3278,3349,-3459,-3460,-3461,-3462,3335]],"properties":{"rate":0.089}},{"type":"Polygon","id":39021,"arcs":[[3298,3323,-3463,-3464,-3465,3309]],"properties":{"rate":0.114}},{"type":"Polygon","id":29079,"arcs":[[3264,3276,-3466,-3467,-3468,3375]],"properties":{"rate":0.069}},{"type":"Polygon","id":8013,"arcs":[[2988,3320,-3469,-3470,-3471,2954]],"properties":{"rate":0.055}},{"type":"Polygon","id":31133,"arcs":[[3307,3305,-3472,-3473,-3474,3293]],"properties":{"rate":0.041}},{"type":"Polygon","id":31147,"arcs":[[3294,3473,-3475,-3476,-3477,-3478]],"properties":{"rate":0.057}},{"type":"Polygon","id":29087,"arcs":[[3261,3295,3477,-3479,-3480,3266]],"properties":{"rate":0.071}},{"type":"Polygon","id":29111,"arcs":[[3240,3442,-3481,-3482,-3483,3228]],"properties":{"rate":0.083}},{"type":"MultiPolygon","id":42029,"arcs":[[[3338,3207,3437,-3484,-3485,-3486,-3487,-3488]]],"properties":{"rate":0.063}},{"type":"Polygon","id":42133,"arcs":[[3218,3426,-3489,-3490,-3491,-3492,3434]],"properties":{"rate":0.084}},{"type":"Polygon","id":8103,"arcs":[[2964,2972,3093,-3493]],"properties":{"rate":0.039}},{"type":"Polygon","id":39059,"arcs":[[-3494,3363,3214,3337,-3495,-3496]],"properties":{"rate":0.108}},{"type":"Polygon","id":18057,"arcs":[[3370,3367,-3497,-3498,-3499,3381]],"properties":{"rate":0.061}},{"type":"Polygon","id":18107,"arcs":[[3290,3389,-3500,-3501,-3502,-3503,3365]],"properties":{"rate":0.097}},{"type":"Polygon","id":17001,"arcs":[[3229,3482,-3504,-3505,-3506,3452]],"properties":{"rate":0.079}},{"type":"Polygon","id":39109,"arcs":[[3322,3394,-3507,-3508,3462]],"properties":{"rate":0.11}},{"type":"Polygon","id":54069,"arcs":[[3372,3253,-3509,-3510,3325]],"properties":{"rate":0.078}},{"type":"Polygon","id":34005,"arcs":[[3369,3243,-3511,-3512,-3513,-3514,-3515,-3516,3333]],"properties":{"rate":0.091}},{"type":"Polygon","id":18011,"arcs":[[3366,3502,-3517,-3518,3496]],"properties":{"rate":0.068}},{"type":"Polygon","id":39013,"arcs":[[3364,3493,-3519,-3520,-3521,3508,3252]],"properties":{"rate":0.092}},{"type":"MultiPolygon","id":34029,"arcs":[[[3334,3515,-3522]]],"properties":{"rate":0.096}},{"type":"Polygon","id":39119,"arcs":[[3336,3461,-3523,-3524,-3525,3494]],"properties":{"rate":0.119}},{"type":"Polygon","id":42057,"arcs":[[3136,3433,-3526,-3527,3443]],"properties":{"rate":0.143}},{"type":"Polygon","id":17129,"arcs":[[3361,-3528,-3529,3427]],"properties":{"rate":0.078}},{"type":"Polygon","id":6007,"arcs":[[3345,3343,-3530,-3531,-3532,-3533]],"properties":{"rate":0.122}},{"type":"Polygon","id":18165,"arcs":[[3329,3314,-3534,-3535,-3536,3387]],"properties":{"rate":0.108}},{"type":"Polygon","id":42051,"arcs":[[3203,3328,-3537,-3538,-3539,-3540,3447]],"properties":{"rate":0.091}},{"type":"Polygon","id":39049,"arcs":[[3348,3311,-3541,-3542,-3543,3458]],"properties":{"rate":0.082}},{"type":"Polygon","id":42101,"arcs":[[3242,3340,-3544,-3545,3510]],"properties":{"rate":0.11}},{"type":"Polygon","id":29061,"arcs":[[3380,-3546,-3547,-3548,3465,3275]],"properties":{"rate":0.087}},{"type":"Polygon","id":29003,"arcs":[[3267,3479,-3549,-3550,-3551,3378]],"properties":{"rate":0.076}},{"type":"Polygon","id":32033,"arcs":[[2355,2983,-3552,-3553,-3554,-3555,2908]],"properties":{"rate":0.084}},{"type":"Polygon","id":17017,"arcs":[[3454,-3556,-3557,-3558,3527,3360]],"properties":{"rate":0.073}},{"type":"Polygon","id":39097,"arcs":[[3540,3310,3464,-3559,-3560,-3561,-3562]],"properties":{"rate":0.085}},{"type":"Polygon","id":17009,"arcs":[[3453,3505,-3563,-3564,3555]],"properties":{"rate":0.045}},{"type":"Polygon","id":8045,"arcs":[[3492,3092,-3565,-3566,-3567,-3568,2965]],"properties":{"rate":0.058}},{"type":"Polygon","id":18065,"arcs":[[3385,3383,-3569,-3570,-3571,-3572,3438]],"properties":{"rate":0.12}},{"type":"Polygon","id":42001,"arcs":[[3488,3425,3446,-3573,-3574]],"properties":{"rate":0.074}},{"type":"Polygon","id":42045,"arcs":[[3339,3487,3486,-3575,3575,-3577,-3578,3543]],"properties":{"rate":0.079}},{"type":"Polygon","id":17115,"arcs":[[3450,3429,-3579,-3580,-3581,-3582,3455]],"properties":{"rate":0.124}},{"type":"Polygon","id":8014,"arcs":[[2955,3470,-3583,-3584,-3585]],"properties":{"rate":0.066}},{"type":"Polygon","id":29121,"arcs":[[3422,-3586,-3587,-3588,-3589,-3590,3440]],"properties":{"rate":0.079}},{"type":"Polygon","id":39023,"arcs":[[3463,3507,-3591,-3592,3558]],"properties":{"rate":0.099}},{"type":"Polygon","id":29115,"arcs":[[3421,3376,3467,-3593,-3594,3585]],"properties":{"rate":0.103}},{"type":"Polygon","id":29063,"arcs":[[3379,3550,-3595,-3596,-3597,3545]],"properties":{"rate":0.093}},{"type":"Polygon","id":54051,"arcs":[[-3598,3326,3509,3520,-3599,-3600]],"properties":{"rate":0.087}},{"type":"Polygon","id":42059,"arcs":[[3327,3597,-3601,-3602,3536]],"properties":{"rate":0.078}},{"type":"Polygon","id":49023,"arcs":[[2909,3554,-3603,-3604,3270]],"properties":{"rate":0.068}},{"type":"Polygon","id":18177,"arcs":[[3439,3571,-3605,-3606,-3607,3391]],"properties":{"rate":0.109}},{"type":"Polygon","id":20023,"arcs":[[3405,3352,-3608,-3609,-3610]],"properties":{"rate":0.037}},{"type":"Polygon","id":20153,"arcs":[[3418,3406,3609,-3611,-3612,-3613,3416]],"properties":{"rate":0.035}},{"type":"Polygon","id":6045,"arcs":[[2673,-3614,-3615,-3616,-3617,3341,2736]],"properties":{"rate":0.101}},{"type":"Polygon","id":20089,"arcs":[[3402,3397,-3618,-3619,-3620,-3621,-3622]],"properties":{"rate":0.049}},{"type":"Polygon","id":20183,"arcs":[[3396,3401,-3623,-3624,-3625,3617]],"properties":{"rate":0.043}},{"type":"Polygon","id":20157,"arcs":[[3412,3403,3621,-3626,-3627]],"properties":{"rate":0.041}},{"type":"Polygon","id":20201,"arcs":[[3414,3626,-3628,-3629,-3630,-3631,3303]],"properties":{"rate":0.045}},{"type":"Polygon","id":20039,"arcs":[[3417,3612,-3632,-3633,-3634,3409]],"properties":{"rate":0.033}},{"type":"Polygon","id":32001,"arcs":[[3018,2385,-3635,-3636,-3637,2985]],"properties":{"rate":0.099}},{"type":"Polygon","id":20137,"arcs":[[3419,3410,3633,-3638,-3639,-3640]],"properties":{"rate":0.047}},{"type":"Polygon","id":20147,"arcs":[[3400,3420,3639,-3641,-3642,3622]],"properties":{"rate":0.06}},{"type":"Polygon","id":20117,"arcs":[[3304,3630,-3643,-3644,-3645,3471]],"properties":{"rate":0.049}},{"type":"Polygon","id":8001,"arcs":[[3300,2956,3584,-3646,-3647,-3648,3354]],"properties":{"rate":0.081}},{"type":"Polygon","id":20013,"arcs":[[3475,-3649,-3650,-3651,-3652]],"properties":{"rate":0.056}},{"type":"Polygon","id":20131,"arcs":[[3472,3644,-3653,-3654,3648,3474]],"properties":{"rate":0.043}},{"type":"Polygon","id":20043,"arcs":[[3476,3651,-3655,-3656,3548,3478]],"properties":{"rate":0.088}},{"type":"MultiPolygon","id":34007,"arcs":[[[3512,-3657,-3658,-3659]]],"properties":{"rate":0.109}},{"type":"Polygon","id":17167,"arcs":[[3428,3528,3557,-3660,-3661,-3662,-3663,3578]],"properties":{"rate":0.079}},{"type":"Polygon","id":29117,"arcs":[[3592,3466,3547,-3664,-3665,-3666]],"properties":{"rate":0.078}},{"type":"Polygon","id":29205,"arcs":[[3441,3589,-3667,-3668,3480]],"properties":{"rate":0.081}},{"type":"Polygon","id":18121,"arcs":[[3388,3535,-3669,-3670,-3671,3499]],"properties":{"rate":0.083}},{"type":"Polygon","id":39121,"arcs":[[3495,3524,-3672,-3673,-3674,3518]],"properties":{"rate":0.14}},{"type":"Polygon","id":29127,"arcs":[[3481,3667,-3675,-3676,-3677,3503]],"properties":{"rate":0.089}},{"type":"Polygon","id":18059,"arcs":[[3382,3498,-3678,-3679,-3680,3568]],"properties":{"rate":0.078}},{"type":"Polygon","id":39045,"arcs":[[3542,-3681,-3682,-3683,3459]],"properties":{"rate":0.082}},{"type":"Polygon","id":8047,"arcs":[[3468,3319,-3684,-3685]],"properties":{"rate":0.06}},{"type":"Polygon","id":39127,"arcs":[[3522,3460,3682,-3686,-3687,-3688]],"properties":{"rate":0.128}},{"type":"Polygon","id":18097,"arcs":[[3497,3517,-3689,-3690,-3691,-3692,3677]],"properties":{"rate":0.084}},{"type":"Polygon","id":8037,"arcs":[[3316,2966,3567,-3693,-3694,-3695]],"properties":{"rate":0.062}},{"type":"Polygon","id":8117,"arcs":[[3317,3694,-3696,-3697,-3698]],"properties":{"rate":0.058}},{"type":"Polygon","id":18063,"arcs":[[3516,3501,-3699,-3700,3688]],"properties":{"rate":0.068}},{"type":"Polygon","id":39113,"arcs":[[3506,3393,-3701,-3702,-3703,-3704,3590]],"properties":{"rate":0.11}},{"type":"Polygon","id":39135,"arcs":[[3392,3606,-3705,-3706,3700]],"properties":{"rate":0.111}},{"type":"Polygon","id":8059,"arcs":[[3583,3582,3469,3684,-3707,-3708,-3709,-3710,-3711,-3712,3645]],"properties":{"rate":0.067}},{"type":"Polygon","id":8031,"arcs":[[3646,3711,-3713]],"properties":{"rate":0.077}},{"type":"MultiPolygon","id":34015,"arcs":[[[3657,-3714,-3715,-3716,-3717]]],"properties":{"rate":0.1}},{"type":"Polygon","id":17045,"arcs":[[3533,3313,-3718,-3719,-3720,-3721]],"properties":{"rate":0.107}},{"type":"Polygon","id":17041,"arcs":[[3374,3457,-3722,-3723,3717]],"properties":{"rate":0.091}},{"type":"Polygon","id":17137,"arcs":[[3556,3563,-3724,-3725,-3726,-3727,3659]],"properties":{"rate":0.084}},{"type":"Polygon","id":39111,"arcs":[[3519,3673,-3728,-3729,-3730,3598]],"properties":{"rate":0.115}},{"type":"Polygon","id":18133,"arcs":[[3500,3670,-3731,-3732,-3733,3698]],"properties":{"rate":0.082}},{"type":"Polygon","id":8019,"arcs":[[3683,3318,3697,-3734,3706]],"properties":{"rate":0.07}},{"type":"Polygon","id":39057,"arcs":[[3591,3703,-3735,-3736,-3737,3559]],"properties":{"rate":0.094}},{"type":"Polygon","id":17149,"arcs":[[3562,3504,3676,-3738,-3739,-3740,-3741,-3742,3723]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":10003,"arcs":[[[3576,3742,3574,3485,3484,-3744,-3745,-3746,-3747]]],"properties":{"rate":0.086}},{"type":"Polygon","id":17021,"arcs":[[3662,-3748,-3749,3579]],"properties":{"rate":0.099}},{"type":"Polygon","id":29021,"arcs":[[3549,3655,-3750,-3751,-3752,3594]],"properties":{"rate":0.087}},{"type":"Polygon","id":49007,"arcs":[[3272,-3753,-3754,3089,3101]],"properties":{"rate":0.065}},{"type":"Polygon","id":49039,"arcs":[[3271,3603,-3755,-3756,-3757,3752]],"properties":{"rate":0.056}},{"type":"Polygon","id":39129,"arcs":[[3541,3561,-3758,-3759,-3760,3680]],"properties":{"rate":0.103}},{"type":"Polygon","id":6021,"arcs":[[3342,3616,-3761,-3762,3529]],"properties":{"rate":0.138}},{"type":"Polygon","id":17139,"arcs":[[3456,3581,-3763,-3764,3721]],"properties":{"rate":0.09}},{"type":"Polygon","id":18041,"arcs":[[3604,3570,-3765,-3766,-3767]],"properties":{"rate":0.134}},{"type":"Polygon","id":18139,"arcs":[[3569,3679,-3768,-3769,-3770,3764]],"properties":{"rate":0.095}},{"type":"Polygon","id":17171,"arcs":[[3724,3741,-3771]],"properties":{"rate":0.075}},{"type":"Polygon","id":29025,"arcs":[[3546,3596,-3772,-3773,-3774,3663]],"properties":{"rate":0.086}},{"type":"MultiPolygon","id":34033,"arcs":[[[3714,-3775,3775,-3777,3777,-3779,-3780]]],"properties":{"rate":0.101}},{"type":"Polygon","id":6091,"arcs":[[3347,-3781,-3782,2379,2823]],"properties":{"rate":0.137}},{"type":"Polygon","id":39115,"arcs":[[3523,3687,-3783,-3784,3671]],"properties":{"rate":0.146}},{"type":"Polygon","id":29049,"arcs":[[3595,3751,-3785,-3786,-3787,3771]],"properties":{"rate":0.087}},{"type":"Polygon","id":8005,"arcs":[[3647,3712,3710,-3788,-3789,-3790,3355]],"properties":{"rate":0.069}},{"type":"Polygon","id":32019,"arcs":[[3634,2384,-3791,-3792,-3793,-3794,-3795]],"properties":{"rate":0.163}},{"type":"MultiPolygon","id":34001,"arcs":[[[3513,3658,3716,-3796,-3797,-3798]]],"properties":{"rate":0.122}},{"type":"Polygon","id":18161,"arcs":[[3605,3766,-3799,-3800,3704]],"properties":{"rate":0.086}},{"type":"Polygon","id":24043,"arcs":[[3526,-3801,-3802,-3803,-3804,-3805,-3806,3444]],"properties":{"rate":0.094}},{"type":"Polygon","id":24001,"arcs":[[3432,3449,-3807,-3808,-3809,-3810,3800,3525]],"properties":{"rate":0.075}},{"type":"Polygon","id":24023,"arcs":[[3448,3539,-3811,-3812,-3813,3806]],"properties":{"rate":0.069}},{"type":"MultiPolygon","id":24015,"arcs":[[[3483,3436,-3814,-3815,-3816,3743]]],"properties":{"rate":0.086}},{"type":"Polygon","id":54061,"arcs":[[3601,-3817,-3818,-3819,-3820,3537]],"properties":{"rate":0.046}},{"type":"Polygon","id":54077,"arcs":[[3538,3819,-3821,-3822,-3823,-3824,3810]],"properties":{"rate":0.07}},{"type":"MultiPolygon","id":24025,"arcs":[[[3491,-3825,-3826,3813,3435]]],"properties":{"rate":0.071}},{"type":"Polygon","id":54103,"arcs":[[3599,3729,-3827,-3828,-3829,-3830,3816,3600]],"properties":{"rate":0.123}},{"type":"MultiPolygon","id":24005,"arcs":[[[3490,-3831,-3832,-3833,-3834,-3835,3824]]],"properties":{"rate":0.077}},{"type":"Polygon","id":24013,"arcs":[[3489,3573,-3836,-3837,3830]],"properties":{"rate":0.06}},{"type":"Polygon","id":24021,"arcs":[[3572,3445,3805,-3838,-3839,-3840,3835]],"properties":{"rate":0.059}},{"type":"Polygon","id":39047,"arcs":[[3560,3736,-3841,-3842,-3843,3757]],"properties":{"rate":0.117}},{"type":"Polygon","id":49015,"arcs":[[3753,3756,-3844,-3845,-3846,3090]],"properties":{"rate":0.062}},{"type":"Polygon","id":29041,"arcs":[[3593,3665,-3847,-3848,-3849,-3850,3586]],"properties":{"rate":0.105}},{"type":"Polygon","id":18145,"arcs":[[3678,3691,-3851,-3852,-3853,3767]],"properties":{"rate":0.088}},{"type":"Polygon","id":54065,"arcs":[[3801,3809,-3854,-3855,-3856]],"properties":{"rate":0.091}},{"type":"Polygon","id":29173,"arcs":[[3675,-3857,-3858,-3859,3737]],"properties":{"rate":0.08}},{"type":"Polygon","id":17029,"arcs":[[3722,3763,-3860,-3861,-3862,3718]],"properties":{"rate":0.091}},{"type":"Polygon","id":29137,"arcs":[[3666,3588,-3863,-3864,3856,3674]],"properties":{"rate":0.11}},{"type":"Polygon","id":39073,"arcs":[[3685,3681,3759,-3865,-3866,-3867]],"properties":{"rate":0.104}},{"type":"Polygon","id":20029,"arcs":[[3625,3620,-3868,-3869,-3870,3627]],"properties":{"rate":0.045}},{"type":"Polygon","id":20085,"arcs":[[3649,3653,-3871,-3872,-3873,-3874]],"properties":{"rate":0.06}},{"type":"Polygon","id":20005,"arcs":[[3654,3650,3873,-3875,-3876,-3877,3749]],"properties":{"rate":0.081}},{"type":"Polygon","id":17173,"arcs":[[3580,3748,-3878,-3879,-3880,-3881,3859,3762]],"properties":{"rate":0.1}},{"type":"Polygon","id":54057,"arcs":[[3807,3812,-3882,-3883]],"properties":{"rate":0.079}},{"type":"Polygon","id":39167,"arcs":[[3672,3783,-3884,-3885,-3886,-3887,3727]],"properties":{"rate":0.094}},{"type":"Polygon","id":54049,"arcs":[[3829,-3888,-3889,3817]],"properties":{"rate":0.065}},{"type":"Polygon","id":18081,"arcs":[[3690,-3890,-3891,-3892,3850]],"properties":{"rate":0.074}},{"type":"Polygon","id":6115,"arcs":[[3346,3532,-3893,-3894,-3895,3780]],"properties":{"rate":0.178}},{"type":"Polygon","id":18109,"arcs":[[3689,3699,3732,-3896,-3897,-3898,3889]],"properties":{"rate":0.075}},{"type":"Polygon","id":32029,"arcs":[[3790,2383]],"properties":{"rate":0.148}},{"type":"Polygon","id":54003,"arcs":[[3855,-3899,-3900,3802]],"properties":{"rate":0.085}},{"type":"Polygon","id":29033,"arcs":[[3664,3773,-3901,-3902,-3903,3846]],"properties":{"rate":0.098}},{"type":"Polygon","id":29175,"arcs":[[3587,3849,-3904,-3905,-3906,3862]],"properties":{"rate":0.094}},{"type":"Polygon","id":18167,"arcs":[[3668,3534,3720,-3907,-3908,-3909]],"properties":{"rate":0.092}},{"type":"Polygon","id":18021,"arcs":[[3669,3908,-3910,-3911,-3912,3730]],"properties":{"rate":0.096}},{"type":"Polygon","id":54095,"arcs":[[3826,3728,3886,-3913,-3914,-3915]],"properties":{"rate":0.108}},{"type":"Polygon","id":29163,"arcs":[[-3916,3738,3858,-3917,-3918,-3919]],"properties":{"rate":0.083}},{"type":"Polygon","id":39017,"arcs":[[3701,3705,3799,-3920,-3921,-3922]],"properties":{"rate":0.091}},{"type":"Polygon","id":39165,"arcs":[[3702,3921,-3923,-3924,-3925,3734]],"properties":{"rate":0.085}},{"type":"Polygon","id":6033,"arcs":[[3760,3615,-3926,-3927,-3928,-3929]],"properties":{"rate":0.147}},{"type":"Polygon","id":8063,"arcs":[[3607,3351,3358,-3930,-3931,-3932,-3933,-3934]],"properties":{"rate":0.029}},{"type":"MultiPolygon","id":34011,"arcs":[[[-3935,-3936,3795,3715,3779,-3937,3937,-3939]]],"properties":{"rate":0.126}},{"type":"Polygon","id":20163,"arcs":[[3623,3641,-3940,-3941,-3942,-3943]],"properties":{"rate":0.073}},{"type":"Polygon","id":39027,"arcs":[[-3944,3840,3735,3924,-3945,-3946]],"properties":{"rate":0.139}},{"type":"Polygon","id":20181,"arcs":[[3608,3933,-3947,-3948,-3949,3610]],"properties":{"rate":0.039}},{"type":"Polygon","id":20193,"arcs":[[3611,3948,-3950,-3951,-3952,3631]],"properties":{"rate":0.036}},{"type":"Polygon","id":20141,"arcs":[[3624,3942,-3953,-3954,-3955,-3956,3618]],"properties":{"rate":0.044}},{"type":"Polygon","id":20179,"arcs":[[3632,3951,-3957,-3958,3637]],"properties":{"rate":0.032}},{"type":"Polygon","id":20027,"arcs":[[3628,3869,-3959,-3960,-3961,-3962]],"properties":{"rate":0.042}},{"type":"Polygon","id":20123,"arcs":[[3619,3955,-3963,-3964,3867]],"properties":{"rate":0.058}},{"type":"Polygon","id":20065,"arcs":[[3640,3638,3957,-3965,-3966,3939]],"properties":{"rate":0.043}},{"type":"Polygon","id":20161,"arcs":[[3642,3629,3961,-3967,-3968,-3969,-3970]],"properties":{"rate":0.032}},{"type":"Polygon","id":8035,"arcs":[[3787,3709,-3971,-3972,-3973]],"properties":{"rate":0.059}},{"type":"Polygon","id":8039,"arcs":[[3788,3972,-3974,-3975]],"properties":{"rate":0.06}},{"type":"Polygon","id":20149,"arcs":[[3643,3969,-3976,-3977,-3978,3870,3652]],"properties":{"rate":0.041}},{"type":"Polygon","id":8073,"arcs":[[3356,3789,3974,-3979,-3980,-3981,-3982,3930,3929]],"properties":{"rate":0.037}},{"type":"Polygon","id":8093,"arcs":[[3733,3696,-3983,-3984,-3985,-3986,3707]],"properties":{"rate":0.061}},{"type":"Polygon","id":39009,"arcs":[[3782,3686,3866,-3987,-3988,-3989,3883]],"properties":{"rate":0.086}},{"type":"Polygon","id":49027,"arcs":[[3602,3553,-3990,-3991,-3992,3754]],"properties":{"rate":0.04}},{"type":"Polygon","id":54027,"arcs":[[3808,3882,-3993,-3994,3853]],"properties":{"rate":0.078}},{"type":"Polygon","id":29165,"arcs":[[3876,-3995,-3996,-3997,3784,3750]],"properties":{"rate":0.08}},{"type":"Polygon","id":18047,"arcs":[[3765,3769,-3998,-3999,-4000,3919,3798]],"properties":{"rate":0.089}},{"type":"Polygon","id":29177,"arcs":[[3772,3786,-4001,-4002,-4003,3900]],"properties":{"rate":0.083}},{"type":"Polygon","id":17135,"arcs":[[3661,-4004,-4005,-4006,-4007,3877,3747]],"properties":{"rate":0.122}},{"type":"Polygon","id":17117,"arcs":[[3660,3726,-4008,-4009,-4010,4003]],"properties":{"rate":0.105}},{"type":"Polygon","id":6057,"arcs":[[3781,3894,-4011,2380]],"properties":{"rate":0.109}},{"type":"Polygon","id":17061,"arcs":[[3770,3740,-4012,-4013,4007,3725]],"properties":{"rate":0.092}},{"type":"Polygon","id":39141,"arcs":[[3758,3842,-4014,-4015,-4016,-4017,3864]],"properties":{"rate":0.115}},{"type":"Polygon","id":54037,"arcs":[[3803,3899,-4018,-4019]],"properties":{"rate":0.066}},{"type":"Polygon","id":49019,"arcs":[[3091,3845,-4020,-4021,3564]],"properties":{"rate":0.052}},{"type":"Polygon","id":17023,"arcs":[[3719,3861,-4022,-4023,-4024,-4025,3906]],"properties":{"rate":0.131}},{"type":"Polygon","id":54073,"arcs":[[3912,3885,-4026,-4027]],"properties":{"rate":0.102}},{"type":"Polygon","id":18119,"arcs":[[3731,3911,-4028,-4029,3895]],"properties":{"rate":0.081}},{"type":"Polygon","id":54033,"arcs":[[3887,3828,-4030,-4031,-4032,-4033,-4034]],"properties":{"rate":0.071}},{"type":"Polygon","id":51069,"arcs":[[3898,3854,3993,-4035,-4036,-4037,-4038]],"properties":{"rate":0.073}},{"type":"Polygon","id":29047,"arcs":[[3996,-4039,-4040,4000,3785]],"properties":{"rate":0.086}},{"type":"Polygon","id":18031,"arcs":[[3768,3852,-4041,-4042,-4043,3997]],"properties":{"rate":0.11}},{"type":"Polygon","id":54091,"arcs":[[3820,3818,3888,4033,-4044]],"properties":{"rate":0.079}},{"type":"Polygon","id":54017,"arcs":[[3827,3914,-4045,-4046,-4047,4029]],"properties":{"rate":0.074}},{"type":"Polygon","id":20087,"arcs":[[3874,3872,-4048,-4049,-4050]],"properties":{"rate":0.067}},{"type":"Polygon","id":20103,"arcs":[[3875,4049,-4051,-4052,-4053,3994]],"properties":{"rate":0.073}},{"type":"Polygon","id":6011,"arcs":[[3761,3928,-4054,-4055,3530]],"properties":{"rate":0.145}},{"type":"Polygon","id":29195,"arcs":[[3902,-4056,-4057,-4058,-4059,3847]],"properties":{"rate":0.079}},{"type":"Polygon","id":54107,"arcs":[[3884,3988,-4060,-4061,-4062,-4063,4025]],"properties":{"rate":0.088}},{"type":"Polygon","id":17013,"arcs":[[3739,3915,-4064,-4065,-4066,4011]],"properties":{"rate":0.095}},{"type":"Polygon","id":39163,"arcs":[[3865,4016,-4067,-4068,-4069,3986]],"properties":{"rate":0.113}},{"type":"Polygon","id":54085,"arcs":[[3913,4026,4062,-4070,-4071,-4072,4044]],"properties":{"rate":0.088}},{"type":"MultiPolygon","id":24029,"arcs":[[[3815,-4073,-4074,-4075,3744]]],"properties":{"rate":0.071}},{"type":"Polygon","id":8065,"arcs":[[3693,-4076,-4077,3982,3695]],"properties":{"rate":0.071}},{"type":"Polygon","id":17035,"arcs":[[3860,3880,-4078,-4079,4021]],"properties":{"rate":0.097}},{"type":"Polygon","id":39071,"arcs":[[3841,3943,-4080,-4081,-4082,4013]],"properties":{"rate":0.153}},{"type":"MultiPolygon","id":24510,"arcs":[[[3833,-4083,-4084]]],"properties":{"rate":0.106}},{"type":"Polygon","id":24027,"arcs":[[3836,3839,-4085,-4086,-4087,3831]],"properties":{"rate":0.054}},{"type":"Polygon","id":8077,"arcs":[[3565,4020,-4088,-4089,-4090,-4091]],"properties":{"rate":0.082}},{"type":"Polygon","id":8097,"arcs":[[3692,3566,4090,-4092,-4093,4075]],"properties":{"rate":0.05}},{"type":"Polygon","id":10001,"arcs":[[-4094,3745,4074,-4095,-4096,-4097]],"properties":{"rate":0.079}},{"type":"Polygon","id":18105,"arcs":[[3896,4028,-4098,-4099,-4100,-4101]],"properties":{"rate":0.056}},{"type":"Polygon","id":18005,"arcs":[[3851,3891,-4102,-4103,-4104,4040]],"properties":{"rate":0.088}},{"type":"Polygon","id":29007,"arcs":[[3863,3905,-4105,-4106,-4107,3916,3857]],"properties":{"rate":0.092}},{"type":"Polygon","id":24031,"arcs":[[4084,3838,-4108,-4109,-4110,-4111]],"properties":{"rate":0.053}},{"type":"Polygon","id":18013,"arcs":[[3890,3897,4100,-4112,4101]],"properties":{"rate":0.078}},{"type":"Polygon","id":29089,"arcs":[[-4113,3903,3848,4058,-4114]],"properties":{"rate":0.083}},{"type":"Polygon","id":54023,"arcs":[[3881,3811,3823,-4115,-4116,-4117,-4118]],"properties":{"rate":0.112}},{"type":"MultiPolygon","id":34009,"arcs":[[[3796,3935,-4119]]],"properties":{"rate":0.085}},{"type":"Polygon","id":51107,"arcs":[[3837,3804,4018,-4120,-4121,-4122,-4123,4107]],"properties":{"rate":0.047}},{"type":"Polygon","id":6061,"arcs":[[4010,3893,-4124,-4125,-4126,-4127,-4128,2381]],"properties":{"rate":0.113}},{"type":"Polygon","id":39061,"arcs":[[3920,-4129,-4130,-4131,-4132,-4133,3922]],"properties":{"rate":0.089}},{"type":"Polygon","id":18137,"arcs":[[3998,4042,-4134,-4135,-4136,-4137,-4138]],"properties":{"rate":0.091}},{"type":"Polygon","id":18029,"arcs":[[4137,-4139,-4140,4128,3999]],"properties":{"rate":0.089}},{"type":"Polygon","id":20143,"arcs":[[3868,3963,-4141,-4142,-4143,3958]],"properties":{"rate":0.065}},{"type":"Polygon","id":6101,"arcs":[[3531,4054,-4144,-4145,4123,3892]],"properties":{"rate":0.151}},{"type":"Polygon","id":54001,"arcs":[[3821,4043,4032,-4146,-4147,-4148]],"properties":{"rate":0.092}},{"type":"Polygon","id":29107,"arcs":[[4055,3901,4002,-4149,-4150,-4151]],"properties":{"rate":0.09}},{"type":"Polygon","id":54093,"arcs":[[4114,3822,4147,-4152]],"properties":{"rate":0.109}},{"type":"Polygon","id":39025,"arcs":[[-4153,3944,3923,4132,-4154,-4155,-4156]],"properties":{"rate":0.094}},{"type":"Polygon","id":51043,"arcs":[[4017,4037,-4157,-4158,4119]],"properties":{"rate":0.061}},{"type":"Polygon","id":17083,"arcs":[[4012,4065,-4159,-4160,4008]],"properties":{"rate":0.088}},{"type":"MultiPolygon","id":24035,"arcs":[[[-4161]],[[4073,-4162,-4163,-4164,4094]]],"properties":{"rate":0.066}},{"type":"Polygon","id":18153,"arcs":[[3907,4024,-4165,-4166,-4167,-4168,3909]],"properties":{"rate":0.093}},{"type":"Polygon","id":8051,"arcs":[[4089,-4169,-4170,-4171,-4172,-4173,-4174,4091]],"properties":{"rate":0.044}},{"type":"Polygon","id":39015,"arcs":[[4079,3945,4152,-4175,-4176,-4177]],"properties":{"rate":0.119}},{"type":"Polygon","id":29019,"arcs":[[3904,4112,-4178,-4179,-4180,-4181,4104]],"properties":{"rate":0.062}},{"type":"Polygon","id":32510,"arcs":[[3791,2382,4127,-4182]],"properties":{"rate":0.128}},{"type":"Polygon","id":54031,"arcs":[[3992,4117,-4183,-4184,-4185,4034]],"properties":{"rate":0.097}},{"type":"MultiPolygon","id":24003,"arcs":[[[-4186,4186,-4188,4082,3832,4086,-4189,-4190,-4191]]],"properties":{"rate":0.065}},{"type":"Polygon","id":29095,"arcs":[[4039,-4192,-4193,-4194,-4195,4148,4001]],"properties":{"rate":0.109}},{"type":"Polygon","id":29113,"arcs":[[3918,-4196,-4197,-4198,4063]],"properties":{"rate":0.113}},{"type":"Polygon","id":20061,"arcs":[[3966,3960,-4199,-4200,-4201]],"properties":{"rate":0.069}},{"type":"Polygon","id":8029,"arcs":[[4088,-4202,4168]],"properties":{"rate":0.066}},{"type":"Polygon","id":20105,"arcs":[[3962,3954,-4203,-4204,-4205,4140]],"properties":{"rate":0.063}},{"type":"Polygon","id":20177,"arcs":[[3871,3977,-4206,-4207,-4208,4047]],"properties":{"rate":0.064}},{"type":"Polygon","id":17051,"arcs":[[4006,-4209,-4210,-4211,-4212,-4213,3878]],"properties":{"rate":0.116}},{"type":"Polygon","id":17049,"arcs":[[3879,4212,-4214,-4215,4077]],"properties":{"rate":0.079}},{"type":"Polygon","id":20197,"arcs":[[3976,3975,3968,3967,4200,-4216,-4217,-4218,4205]],"properties":{"rate":0.066}},{"type":"Polygon","id":39079,"arcs":[[4066,4015,-4219,-4220,-4221,-4222]],"properties":{"rate":0.105}},{"type":"Polygon","id":39105,"arcs":[[-4223,4059,3987,4068,-4224,-4225]],"properties":{"rate":0.152}},{"type":"Polygon","id":20209,"arcs":[[4052,-4226,4191,4038,3995]],"properties":{"rate":0.104}},{"type":"Polygon","id":39131,"arcs":[[4218,4014,4081,-4227,-4228]],"properties":{"rate":0.147}},{"type":"Polygon","id":18079,"arcs":[[4133,4041,4103,-4229,-4230,-4231]],"properties":{"rate":0.122}},{"type":"Polygon","id":54105,"arcs":[[4069,4061,-4232,-4233,-4234]],"properties":{"rate":0.114}},{"type":"Polygon","id":17033,"arcs":[[4023,-4235,-4236,-4237,-4238,4165,4164]],"properties":{"rate":0.105}},{"type":"Polygon","id":17079,"arcs":[[4022,4078,4214,-4239,-4240,4234]],"properties":{"rate":0.095}},{"type":"Polygon","id":18055,"arcs":[[3910,4167,-4241,-4242,-4243,-4244,4097,4027]],"properties":{"rate":0.071}},{"type":"Polygon","id":54041,"arcs":[[4030,4046,-4245,-4246,-4247,-4248]],"properties":{"rate":0.075}},{"type":"Polygon","id":32023,"arcs":[[2986,3636,-4249,-4250,-4251,-4252,-4253,3551,2982]],"properties":{"rate":0.161}},{"type":"Polygon","id":29139,"arcs":[[4106,-4254,-4255,-4256,-4257,4195,3917]],"properties":{"rate":0.103}},{"type":"Polygon","id":21015,"arcs":[[4129,4139,-4258,-4259,-4260,-4261,-4262]],"properties":{"rate":0.092}},{"type":"Polygon","id":24011,"arcs":[[4095,4163,-4263,-4264,-4265,-4266]],"properties":{"rate":0.088}},{"type":"Polygon","id":20109,"arcs":[[3949,3947,-4267,-4268,-4269,-4270]],"properties":{"rate":0.04}},{"type":"Polygon","id":20199,"arcs":[[3946,3932,-4271,-4272,-4273,4266]],"properties":{"rate":0.059}},{"type":"Polygon","id":20051,"arcs":[[3941,-4274,-4275,-4276,-4277,3952]],"properties":{"rate":0.036}},{"type":"Polygon","id":20063,"arcs":[[3950,4269,-4278,-4279,-4280,-4281,3964,3956]],"properties":{"rate":0.035}},{"type":"Polygon","id":20041,"arcs":[[3959,4142,-4282,-4283,-4284,4198]],"properties":{"rate":0.051}},{"type":"Polygon","id":20167,"arcs":[[3953,4276,-4285,-4286,-4287,4202]],"properties":{"rate":0.046}},{"type":"Polygon","id":20195,"arcs":[[3965,4280,-4288,4273,3940]],"properties":{"rate":0.036}},{"type":"Polygon","id":24033,"arcs":[[4085,4110,-4289,-4290,-4291,-4292,-4293,4188]],"properties":{"rate":0.073}},{"type":"Polygon","id":8119,"arcs":[[3970,3708,3985,-4294,-4295]],"properties":{"rate":0.067}},{"type":"Polygon","id":8041,"arcs":[[3971,4294,-4296,-4297,3978,3973]],"properties":{"rate":0.072}},{"type":"Polygon","id":21037,"arcs":[[4131,-4298,-4299,4153]],"properties":{"rate":0.107}},{"type":"Polygon","id":54083,"arcs":[[4151,4146,-4300,-4301,-4302,-4303,4115]],"properties":{"rate":0.085}},{"type":"Polygon","id":32005,"arcs":[[4181,4126,-4304,-4305,-4306,3792]],"properties":{"rate":0.126}},{"type":"Polygon","id":54097,"arcs":[[4031,4247,-4307,4299,4145]],"properties":{"rate":0.089}},{"type":"Polygon","id":54021,"arcs":[[4045,4071,-4308,-4309,4244]],"properties":{"rate":0.065}},{"type":"Polygon","id":51171,"arcs":[[4035,4184,-4310,-4311,-4312]],"properties":{"rate":0.076}},{"type":"Polygon","id":21117,"arcs":[[4130,4261,-4313,-4314,4297]],"properties":{"rate":0.1}},{"type":"Polygon","id":54035,"arcs":[[4060,4222,-4315,-4316,-4317,-4318,4231]],"properties":{"rate":0.129}},{"type":"Polygon","id":32021,"arcs":[[3635,3794,-4319,-4320,4248]],"properties":{"rate":0.105}},{"type":"Polygon","id":18071,"arcs":[[4102,4111,4099,-4321,-4322,-4323,4228]],"properties":{"rate":0.101}},{"type":"Polygon","id":20045,"arcs":[[4048,4207,-4324,-4325,-4326,4050]],"properties":{"rate":0.054}},{"type":"Polygon","id":6017,"arcs":[[4125,-4327,-4328,-4329,4303]],"properties":{"rate":0.112}},{"type":"Polygon","id":29027,"arcs":[[4180,-4330,-4331,4253,4105]],"properties":{"rate":0.08}},{"type":"Polygon","id":29053,"arcs":[[4113,4057,-4332,-4333,-4334,4177]],"properties":{"rate":0.084}},{"type":"MultiPolygon","id":51059,"arcs":[[[4108,4122,-4335,-4336,-4337,-4338,-4339,-4340]]],"properties":{"rate":0.047}},{"type":"Polygon","id":8015,"arcs":[[4076,4092,4173,-4341,-4342,3983]],"properties":{"rate":0.051}},{"type":"Polygon","id":20091,"arcs":[[4225,4051,4325,-4343,-4344,4192]],"properties":{"rate":0.068}},{"type":"Polygon","id":39001,"arcs":[[4226,4080,4176,-4345,-4346,-4347]],"properties":{"rate":0.138}},{"type":"Polygon","id":49041,"arcs":[[3755,3991,-4348,-4349,-4350,3843]],"properties":{"rate":0.057}},{"type":"Polygon","id":8017,"arcs":[[3931,3981,-4351,-4352,4270]],"properties":{"rate":0.02}},{"type":"Polygon","id":54013,"arcs":[[4070,4233,-4353,-4354,-4355,4307]],"properties":{"rate":0.121}},{"type":"Polygon","id":51187,"arcs":[[4156,4036,4311,-4356,-4357,-4358]],"properties":{"rate":0.066}},{"type":"Polygon","id":39053,"arcs":[[4223,4067,4221,-4359,-4360,-4361]],"properties":{"rate":0.095}},{"type":"Polygon","id":18115,"arcs":[[4257,4138,4136,-4362]],"properties":{"rate":0.105}},{"type":"Polygon","id":54053,"arcs":[[4224,4360,-4363,-4364,4314]],"properties":{"rate":0.121}},{"type":"Polygon","id":17005,"arcs":[[4005,-4365,-4366,4208]],"properties":{"rate":0.093}},{"type":"Polygon","id":39145,"arcs":[[4227,4346,-4367,-4368,-4369,4219]],"properties":{"rate":0.121}},{"type":"Polygon","id":51061,"arcs":[[4120,4157,4357,-4370,-4371,-4372,-4373]],"properties":{"rate":0.05}},{"type":"Polygon","id":17119,"arcs":[[4159,-4374,-4375,-4376,-4377,-4378,4364,4004,4009]],"properties":{"rate":0.097}},{"type":"Polygon","id":29219,"arcs":[[4196,4256,-4379,-4380,-4381]],"properties":{"rate":0.112}},{"type":"MultiPolygon","id":11001,"arcs":[[[4288,4109,-4382,-4383]]],"properties":{"rate":0.117}},{"type":"Polygon","id":18093,"arcs":[[4098,4243,-4384,-4385,-4386,4320]],"properties":{"rate":0.111}},{"type":"Polygon","id":29183,"arcs":[[4158,4064,4197,4380,-4387,-4388,4373]],"properties":{"rate":0.087}},{"type":"Polygon","id":10005,"arcs":[[4096,4265,-4389,-4390,-4391,-4392,-4393,-4394]],"properties":{"rate":0.073}},{"type":"Polygon","id":20169,"arcs":[[4141,4204,-4395,-4396,4281]],"properties":{"rate":0.057}},{"type":"Polygon","id":54071,"arcs":[[4116,4302,-4397,-4398,-4399,-4400,4182]],"properties":{"rate":0.075}},{"type":"Polygon","id":29159,"arcs":[[4056,4150,-4401,-4402,-4403,-4404,4331]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":24041,"arcs":[[[4162,-4405,4262]]],"properties":{"rate":0.068}},{"type":"Polygon","id":51153,"arcs":[[4121,4372,-4406,-4407,4334]],"properties":{"rate":0.053}},{"type":"Polygon","id":54087,"arcs":[[4232,4317,-4408,-4409,4352]],"properties":{"rate":0.13}},{"type":"Polygon","id":29101,"arcs":[[4149,4194,-4410,-4411,4400]],"properties":{"rate":0.08}},{"type":"Polygon","id":51013,"arcs":[[-4412,4381,4339,-4413,4337,-4414]],"properties":{"rate":0.042}},{"type":"Polygon","id":6003,"arcs":[[4304,4328,-4415,-4416,-4417,-4418]],"properties":{"rate":0.152}},{"type":"Polygon","id":18155,"arcs":[[4361,4135,-4419,-4420,-4421,4258]],"properties":{"rate":0.07}},{"type":"Polygon","id":29135,"arcs":[[4178,4333,-4422,-4423,-4424]],"properties":{"rate":0.078}},{"type":"Polygon","id":6113,"arcs":[[4053,3927,-4425,-4426,-4427,-4428,4143]],"properties":{"rate":0.109}},{"type":"Polygon","id":18077,"arcs":[[4134,4230,-4429,-4430,-4431,-4432,4418]],"properties":{"rate":0.095}},{"type":"Polygon","id":17025,"arcs":[[4213,4211,-4433,-4434,-4435,4238]],"properties":{"rate":0.114}},{"type":"Polygon","id":18083,"arcs":[[4240,4166,-4436,4237,-4437,-4438,-4439,-4440,-4441]],"properties":{"rate":0.066}},{"type":"Polygon","id":18101,"arcs":[[4242,-4442,-4443,-4444,4383]],"properties":{"rate":0.063}},{"type":"Polygon","id":18027,"arcs":[[4441,4241,4440,-4445,-4446]],"properties":{"rate":0.049}},{"type":"Polygon","id":54007,"arcs":[[4308,4354,-4447,-4448,-4449,4245]],"properties":{"rate":0.08}},{"type":"Polygon","id":29189,"arcs":[[4387,-4450,-4451,-4452,-4453,-4454,4374]],"properties":{"rate":0.096}},{"type":"Polygon","id":21191,"arcs":[[-4455,4154,4298,4313,-4456,-4457]],"properties":{"rate":0.117}},{"type":"Polygon","id":20127,"arcs":[[4199,4283,-4458,-4459,-4460,4215]],"properties":{"rate":0.068}},{"type":"Polygon","id":20053,"arcs":[[4203,4286,-4461,-4462,-4463,4394]],"properties":{"rate":0.041}},{"type":"Polygon","id":20139,"arcs":[[4206,4217,-4464,-4465,-4466,4323]],"properties":{"rate":0.07}},{"type":"Polygon","id":6055,"arcs":[[4424,3926,-4467,-4468,-4469,-4470,-4471,-4472]],"properties":{"rate":0.087}},{"type":"Polygon","id":51157,"arcs":[[4369,4356,-4473,-4474,-4475]],"properties":{"rate":0.056}},{"type":"Polygon","id":21077,"arcs":[[4259,4420,-4476,-4477,-4478]],"properties":{"rate":0.111}},{"type":"Polygon","id":6097,"arcs":[[3614,-4479,-4480,-4481,4466,3925]],"properties":{"rate":0.099}},{"type":"Polygon","id":17101,"arcs":[[4436,4236,-4482,-4483]],"properties":{"rate":0.103}},{"type":"Polygon","id":51165,"arcs":[[4183,4399,-4484,-4485,-4486,-4487,4309],[-4488]],"properties":{"rate":0.053}},{"type":"Polygon","id":17159,"arcs":[[4239,4434,-4489,-4490,-4491,4481,4235]],"properties":{"rate":0.105}},{"type":"Polygon","id":39087,"arcs":[[4358,4220,4368,-4492,-4493,-4494,-4495]],"properties":{"rate":0.084}},{"type":"Polygon","id":29037,"arcs":[[4193,4343,-4496,-4497,-4498,4409]],"properties":{"rate":0.097}},{"type":"Polygon","id":51510,"arcs":[[4413,4336,-4499]],"properties":{"rate":0.048}},{"type":"Polygon","id":51139,"arcs":[[4355,4310,4486,-4500,-4501,4472]],"properties":{"rate":0.098}},{"type":"Polygon","id":18143,"arcs":[[4229,4322,-4502,-4503,4428]],"properties":{"rate":0.121}},{"type":"Polygon","id":21023,"arcs":[[4155,4454,-4504,-4505,-4506,4174]],"properties":{"rate":0.102}},{"type":"Polygon","id":17121,"arcs":[[4210,-4507,-4508,-4509,-4510,4432]],"properties":{"rate":0.119}},{"type":"Polygon","id":21081,"arcs":[[4260,4477,-4511,-4512,-4513,4455,4312]],"properties":{"rate":0.101}},{"type":"Polygon","id":18175,"arcs":[[4321,4385,-4514,-4515,-4516,-4517,-4518,4501]],"properties":{"rate":0.112}},{"type":"Polygon","id":29510,"arcs":[[-4519,4375,4453]],"properties":{"rate":0.111}},{"type":"Polygon","id":24009,"arcs":[[4189,4292,-4520]],"properties":{"rate":0.059}},{"type":"Polygon","id":21161,"arcs":[[4175,4505,-4521,-4522,-4523,4344]],"properties":{"rate":0.111}},{"type":"Polygon","id":21041,"arcs":[[4475,4419,4431,-4524,-4525,-4526]],"properties":{"rate":0.124}},{"type":"Polygon","id":21089,"arcs":[[4367,-4527,-4528,-4529,4491]],"properties":{"rate":0.098}},{"type":"Polygon","id":17027,"arcs":[[4365,4377,-4530,-4531,4506,4209]],"properties":{"rate":0.079}},{"type":"Polygon","id":54075,"arcs":[[4301,-4532,-4533,-4534,-4535,4396]],"properties":{"rate":0.113}},{"type":"Polygon","id":29051,"arcs":[[4179,4423,-4536,-4537,4329]],"properties":{"rate":0.067}},{"type":"Polygon","id":20111,"arcs":[[4216,4459,-4538,-4539,-4540,4463]],"properties":{"rate":0.057}},{"type":"Polygon","id":20059,"arcs":[[4324,4465,-4541,-4542,-4543]],"properties":{"rate":0.071}},{"type":"Polygon","id":20121,"arcs":[[4342,4542,-4544,-4545,4495]],"properties":{"rate":0.068}},{"type":"Polygon","id":54101,"arcs":[[4246,4448,-4546,-4547,4531,4300,4306]],"properties":{"rate":0.104}},{"type":"MultiPolygon","id":6067,"arcs":[[[4326,4124,4144,4427,-4548,-4549,-4550,-4551]]],"properties":{"rate":0.122}},{"type":"Polygon","id":21223,"arcs":[[4430,-4552,-4553,-4554,4523]],"properties":{"rate":0.107}},{"type":"Polygon","id":21187,"arcs":[[4476,4525,-4555,-4556,-4557,4510]],"properties":{"rate":0.101}},{"type":"Polygon","id":21135,"arcs":[[4526,4366,4345,4522,-4558,-4559,-4560]],"properties":{"rate":0.151}},{"type":"Polygon","id":29073,"arcs":[[4255,-4561,-4562,-4563,-4564,-4565,4378]],"properties":{"rate":0.108}},{"type":"Polygon","id":6051,"arcs":[[4305,4417,-4566,-4567,-4568,-4569,-4570,4318,3793]],"properties":{"rate":0.103}},{"type":"Polygon","id":29071,"arcs":[[4379,4564,-4571,-4572,-4573,4449,4386]],"properties":{"rate":0.115}},{"type":"Polygon","id":29151,"arcs":[[4330,4536,-4574,-4575,4560,4254]],"properties":{"rate":0.099}},{"type":"Polygon","id":6005,"arcs":[[4327,4550,-4576,-4577,4414]],"properties":{"rate":0.121}},{"type":"MultiPolygon","id":24019,"arcs":[[[4577,-4579,-4580]],[[-4581,-4582,4388,4264,-4583]]],"properties":{"rate":0.109}},{"type":"Polygon","id":20171,"arcs":[[4268,-4584,-4585,-4586,-4587,4277]],"properties":{"rate":0.032}},{"type":"Polygon","id":20101,"arcs":[[4278,4586,-4588,-4589]],"properties":{"rate":0.034}},{"type":"Polygon","id":20071,"arcs":[[4271,4351,-4590,-4591,-4592,-4593]],"properties":{"rate":0.045}},{"type":"Polygon","id":20203,"arcs":[[4267,4272,4592,-4594,-4595,4583]],"properties":{"rate":0.035}},{"type":"Polygon","id":51047,"arcs":[[4370,4474,-4596,-4597,-4598,-4599]],"properties":{"rate":0.075}},{"type":"Polygon","id":20135,"arcs":[[4279,4588,-4600,-4601,-4602,-4603,4274,4287]],"properties":{"rate":0.04}},{"type":"Polygon","id":29141,"arcs":[[4332,4403,-4604,-4605,-4606,4421]],"properties":{"rate":0.113}},{"type":"Polygon","id":20009,"arcs":[[4285,-4607,-4608,-4609,-4610,4460]],"properties":{"rate":0.061}},{"type":"Polygon","id":8043,"arcs":[[4293,3984,4341,-4611,-4612,-4613,4295]],"properties":{"rate":0.077}},{"type":"Polygon","id":20165,"arcs":[[4275,4602,-4614,4606,4284]],"properties":{"rate":0.059}},{"type":"MultiPolygon","id":24017,"arcs":[[[-4615,-4616,-4617,4290]]],"properties":{"rate":0.059}},{"type":"Polygon","id":18117,"arcs":[[4384,4443,-4618,-4619,4513]],"properties":{"rate":0.092}},{"type":"Polygon","id":54079,"arcs":[[-4620,4315,4363,-4621,-4622]],"properties":{"rate":0.063}},{"type":"Polygon","id":32017,"arcs":[[3552,4252,-4623,-4624,-4625,-4626,-4627,3989]],"properties":{"rate":0.094}},{"type":"Polygon","id":8085,"arcs":[[4201,4087,-4628,-4629,-4630,4169]],"properties":{"rate":0.069}},{"type":"Polygon","id":54015,"arcs":[[4446,4353,4408,-4631,-4632]],"properties":{"rate":0.119}},{"type":"Polygon","id":17163,"arcs":[[4376,4518,4452,-4633,-4634,-4635,4529]],"properties":{"rate":0.108}},{"type":"Polygon","id":51113,"arcs":[[4473,4500,-4636,-4637,4595]],"properties":{"rate":0.06}},{"type":"Polygon","id":54039,"arcs":[[4316,4619,-4638,-4639,-4640,-4641,-4642,4630,4407]],"properties":{"rate":0.071}},{"type":"Polygon","id":8061,"arcs":[[4350,3980,-4643,-4644,-4645,-4646,4589]],"properties":{"rate":0.028}},{"type":"Polygon","id":20113,"arcs":[[4395,4462,-4647,-4648,-4649,-4650]],"properties":{"rate":0.051}},{"type":"Polygon","id":20115,"arcs":[[4282,4649,-4651,-4652,-4653,4457]],"properties":{"rate":0.063}},{"type":"Polygon","id":21201,"arcs":[[4504,-4654,-4655,-4656,4520]],"properties":{"rate":0.096}},{"type":"Polygon","id":17191,"arcs":[[4433,4509,-4657,-4658,-4659,-4660,4488]],"properties":{"rate":0.097}},{"type":"Polygon","id":18019,"arcs":[[4429,4502,4517,-4661,-4662,-4663,4551]],"properties":{"rate":0.082}},{"type":"Polygon","id":54011,"arcs":[[4359,4494,-4664,-4665,4620,4362]],"properties":{"rate":0.066}},{"type":"Polygon","id":21103,"arcs":[[4554,4524,4553,-4666,-4667,-4668]],"properties":{"rate":0.107}},{"type":"Polygon","id":51091,"arcs":[[4397,4534,-4669,-4670]],"properties":{"rate":0.059}},{"type":"Polygon","id":51179,"arcs":[[4405,4371,4598,-4671,-4672,-4673,-4674,-4675,-4676]],"properties":{"rate":0.051}},{"type":"Polygon","id":21097,"arcs":[[4503,4456,4512,-4677,-4678,-4679,4653]],"properties":{"rate":0.111}},{"type":"Polygon","id":49001,"arcs":[[3990,4626,-4680,-4681,-4682,4347]],"properties":{"rate":0.042}},{"type":"Polygon","id":17047,"arcs":[[4489,4659,-4683,-4684]],"properties":{"rate":0.091}},{"type":"Polygon","id":17185,"arcs":[[4683,-4685,-4686,4437,4482,4490]],"properties":{"rate":0.103}},{"type":"Polygon","id":29083,"arcs":[[4410,4497,-4687,-4688,-4689,4401]],"properties":{"rate":0.096}},{"type":"Polygon","id":24045,"arcs":[[4389,4581,-4690,-4691,-4692]],"properties":{"rate":0.077}},{"type":"Polygon","id":54067,"arcs":[[4447,4631,4641,-4693,-4694,4545]],"properties":{"rate":0.091}},{"type":"Polygon","id":18125,"arcs":[[4444,4439,-4695,-4696,-4697]],"properties":{"rate":0.087}},{"type":"MultiPolygon","id":6095,"arcs":[[[4468,-4698]],[[4426,4471,4470,-4699,4547]]],"properties":{"rate":0.115}},{"type":"Polygon","id":29015,"arcs":[[4402,4688,-4700,-4701,-4702,4603]],"properties":{"rate":0.093}},{"type":"Polygon","id":18051,"arcs":[[4694,4438,4685,-4703,-4704,-4705,-4706]],"properties":{"rate":0.067}},{"type":"Polygon","id":18037,"arcs":[[4442,4445,4696,-4707,-4708,-4709,-4710,4617]],"properties":{"rate":0.08}},{"type":"Polygon","id":21069,"arcs":[[4557,4521,4655,-4711,-4712,-4713]],"properties":{"rate":0.122}},{"type":"Polygon","id":21185,"arcs":[[4552,4662,-4714,-4715,4665]],"properties":{"rate":0.086}},{"type":"Polygon","id":20017,"arcs":[[4458,4652,-4716,-4717,4537]],"properties":{"rate":0.054}},{"type":"Polygon","id":8101,"arcs":[[4296,4612,-4718,-4719,-4720,-4721,-4722]],"properties":{"rate":0.075}},{"type":"Polygon","id":8025,"arcs":[[3979,4721,-4723,4642]],"properties":{"rate":0.076}},{"type":"Polygon","id":20159,"arcs":[[4461,4609,-4724,-4725,4646]],"properties":{"rate":0.051}},{"type":"Polygon","id":17133,"arcs":[[4632,4451,-4726,-4727,-4728]],"properties":{"rate":0.078}},{"type":"Polygon","id":17189,"arcs":[[4530,4634,-4729,-4730,-4731,4507]],"properties":{"rate":0.08}},{"type":"MultiPolygon","id":24037,"arcs":[[[-4732,4615,-4733]]],"properties":{"rate":0.056}},{"type":"Polygon","id":6009,"arcs":[[4576,-4734,-4735,-4736,4415]],"properties":{"rate":0.143}},{"type":"Polygon","id":49031,"arcs":[[4348,4681,-4737,-4738]],"properties":{"rate":0.038}},{"type":"Polygon","id":49055,"arcs":[[4349,4737,-4739,-4740,3844]],"properties":{"rate":0.042}},{"type":"Polygon","id":29099,"arcs":[[4450,4572,-4741,-4742,-4743,4725]],"properties":{"rate":0.106}},{"type":"Polygon","id":21019,"arcs":[[-4744,4492,4528,-4745,-4746]],"properties":{"rate":0.083}},{"type":"Polygon","id":21043,"arcs":[[4527,4559,-4747,-4748,-4749,4744]],"properties":{"rate":0.135}},{"type":"Polygon","id":49037,"arcs":[[4019,4739,-4750,-4751,-4752,-4753,-4754,-4755,-4756,-4757,4627]],"properties":{"rate":0.086}},{"type":"Polygon","id":21209,"arcs":[[4676,4511,4556,-4758,-4759,-4760,-4761]],"properties":{"rate":0.091}},{"type":"Polygon","id":51660,"arcs":[[4487]],"properties":{"rate":0.064}},{"type":"Polygon","id":51079,"arcs":[[4635,4499,4485,-4762,-4763]],"properties":{"rate":0.058}},{"type":"Polygon","id":51015,"arcs":[[4483,4398,4669,-4764,-4765,-4766,-4767],[-4768],[-4769]],"properties":{"rate":0.058}},{"type":"Polygon","id":17081,"arcs":[[4508,4730,-4770,-4771,-4772,4656]],"properties":{"rate":0.1}},{"type":"Polygon","id":29013,"arcs":[[4496,4544,-4773,-4774,-4775,4686]],"properties":{"rate":0.108}},{"type":"Polygon","id":32009,"arcs":[[4249,4319,4569,-4776]],"properties":{"rate":0.083}},{"type":"Polygon","id":21181,"arcs":[[4654,4678,-4777,-4778,4710]],"properties":{"rate":0.125}},{"type":"Polygon","id":8109,"arcs":[[4340,4172,-4779,-4780,-4781,-4782,-4783,-4784,4610]],"properties":{"rate":0.078}},{"type":"MultiPolygon","id":24047,"arcs":[[[-4785,4390,4691,-4786,-4787,-4788,-4789]]],"properties":{"rate":0.075}},{"type":"Polygon","id":6109,"arcs":[[4416,4735,-4790,-4791,-4792,4565]],"properties":{"rate":0.127}},{"type":"Polygon","id":20031,"arcs":[[4464,4539,-4793,-4794,-4795,4540]],"properties":{"rate":0.057}},{"type":"Polygon","id":29131,"arcs":[[4422,4605,-4796,-4797,-4798,4573,4535]],"properties":{"rate":0.106}},{"type":"Polygon","id":18025,"arcs":[[4514,4618,4709,-4799,-4800,-4801]],"properties":{"rate":0.105}},{"type":"Polygon","id":18061,"arcs":[[4515,4800,-4802,-4803,-4804,-4805]],"properties":{"rate":0.078}},{"type":"Polygon","id":54099,"arcs":[[4493,4743,-4806,-4807,-4808,-4809,4663]],"properties":{"rate":0.077}},{"type":"Polygon","id":18043,"arcs":[[4516,4804,-4810,4660]],"properties":{"rate":0.074}},{"type":"Polygon","id":51099,"arcs":[[-4811,4674,-4812,-4813,-4814,-4815]],"properties":{"rate":0.075}},{"type":"Polygon","id":21205,"arcs":[[4558,4712,-4816,-4817,-4818,-4819,4746]],"properties":{"rate":0.086}},{"type":"Polygon","id":51137,"arcs":[[4596,4636,4762,-4820,-4821,-4822,-4823]],"properties":{"rate":0.076}},{"type":"Polygon","id":20003,"arcs":[[4541,4794,-4824,-4825]],"properties":{"rate":0.079}},{"type":"Polygon","id":20107,"arcs":[[4543,4824,-4826,-4827,4772]],"properties":{"rate":0.084}},{"type":"Polygon","id":21111,"arcs":[[4713,4661,4809,4803,-4828,-4829,-4830,-4831]],"properties":{"rate":0.105}},{"type":"Polygon","id":51177,"arcs":[[4597,4822,-4832,-4833,-4834,-4835,4672,-4836,4670]],"properties":{"rate":0.051}},{"type":"Polygon","id":54043,"arcs":[[4664,4808,-4837,-4838,-4839,4637,4621]],"properties":{"rate":0.106}},{"type":"Polygon","id":21073,"arcs":[[4667,-4840,-4841,-4842,4757,4555]],"properties":{"rate":0.091}},{"type":"Polygon","id":21017,"arcs":[[4776,4677,4760,-4843,-4844,-4845]],"properties":{"rate":0.091}},{"type":"Polygon","id":21211,"arcs":[[4839,4666,4714,4830,-4846,-4847]],"properties":{"rate":0.096}},{"type":"Polygon","id":20145,"arcs":[[4613,4601,-4848,-4849,-4850,4607]],"properties":{"rate":0.037}},{"type":"Polygon","id":8091,"arcs":[[4629,-4851,-4852,-4853,4170]],"properties":{"rate":0.041}},{"type":"MultiPolygon","id":6041,"arcs":[[[4479,-4854]]],"properties":{"rate":0.08}},{"type":"Polygon","id":21011,"arcs":[[4711,4777,-4855,-4856,4815]],"properties":{"rate":0.133}},{"type":"Polygon","id":6077,"arcs":[[4549,-4857,-4858,-4859,-4860,4733,4575]],"properties":{"rate":0.155}},{"type":"Polygon","id":29125,"arcs":[[4574,4797,-4861,-4862,4561]],"properties":{"rate":0.087}},{"type":"MultiPolygon","id":24039,"arcs":[[[-4863,-4864,-4865,-4866]],[[-4867,-4868,-4869]],[[-4870,4785,4690,-4871]]],"properties":{"rate":0.095}},{"type":"Polygon","id":51003,"arcs":[[4761,4484,4766,-4872,-4873,-4874,-4875,4819]],"properties":{"rate":0.05}},{"type":"MultiPolygon","id":51193,"arcs":[[[-4876,4814,-4877,-4878,-4879]]],"properties":{"rate":0.071}},{"type":"Polygon","id":29029,"arcs":[[4604,4701,-4880,-4881,-4882,-4883,4795]],"properties":{"rate":0.079}},{"type":"Polygon","id":21127,"arcs":[[4745,4748,-4884,-4885,-4886,-4887,4805]],"properties":{"rate":0.131}},{"type":"Polygon","id":51017,"arcs":[[4533,-4888,-4889,-4890,4763,4668]],"properties":{"rate":0.054}},{"type":"Polygon","id":8099,"arcs":[[4590,4645,-4891,-4892,-4893,-4894]],"properties":{"rate":0.05}},{"type":"Polygon","id":54025,"arcs":[[4532,4546,4693,-4895,-4896,-4897,-4898,4887]],"properties":{"rate":0.083}},{"type":"Polygon","id":21063,"arcs":[[4747,4818,-4899,4883]],"properties":{"rate":0.126}},{"type":"Polygon","id":8027,"arcs":[[4611,4783,-4900,4717]],"properties":{"rate":0.052}},{"type":"Polygon","id":8011,"arcs":[[4644,-4901,-4902,-4903,4890]],"properties":{"rate":0.05}},{"type":"Polygon","id":8089,"arcs":[[4643,4722,4720,-4904,4900]],"properties":{"rate":0.058}},{"type":"Polygon","id":18123,"arcs":[[4798,4708,-4905,-4906,-4907,-4908]],"properties":{"rate":0.088}},{"type":"Polygon","id":54019,"arcs":[[4640,-4909,-4910,4894,4692]],"properties":{"rate":0.086}},{"type":"Polygon","id":20093,"arcs":[[4584,4594,-4911,-4912,-4913]],"properties":{"rate":0.045}},{"type":"Polygon","id":20055,"arcs":[[4585,4912,-4914,-4915,-4916,4599,4587]],"properties":{"rate":0.043}},{"type":"Polygon","id":20075,"arcs":[[4593,4591,4893,-4917,4910]],"properties":{"rate":0.042}},{"type":"Polygon","id":17193,"arcs":[[4682,4658,-4918,-4919,-4920,4702,4684]],"properties":{"rate":0.086}},{"type":"Polygon","id":20185,"arcs":[[4608,4849,-4921,-4922,-4923,4723]],"properties":{"rate":0.061}},{"type":"Polygon","id":20083,"arcs":[[4600,4915,-4924,-4925,-4926,4847]],"properties":{"rate":0.042}},{"type":"Polygon","id":17065,"arcs":[[4657,4771,-4927,-4928,-4929,4917]],"properties":{"rate":0.093}},{"type":"Polygon","id":51033,"arcs":[[4673,4834,-4930,-4931,-4932,-4933,4811]],"properties":{"rate":0.082}},{"type":"Polygon","id":18173,"arcs":[[4695,4705,-4934,-4935,-4936,-4937,4706]],"properties":{"rate":0.069}},{"type":"Polygon","id":18129,"arcs":[[4703,4919,-4938,-4939,-4940,-4941]],"properties":{"rate":0.07}},{"type":"Polygon","id":54005,"arcs":[[4638,4838,-4942,-4943,-4944]],"properties":{"rate":0.094}},{"type":"Polygon","id":17157,"arcs":[[4727,-4945,-4946,-4947,-4948,4728,4633]],"properties":{"rate":0.094}},{"type":"Polygon","id":29185,"arcs":[[4687,4774,-4949,-4950,-4951,-4952,4699]],"properties":{"rate":0.103}},{"type":"Polygon","id":17145,"arcs":[[4947,-4953,-4954,4769,4729]],"properties":{"rate":0.119}},{"type":"Polygon","id":29055,"arcs":[[4563,-4955,-4956,-4957,-4958,4570]],"properties":{"rate":0.107}},{"type":"Polygon","id":21067,"arcs":[[4842,4759,-4959,-4960,-4961,-4962]],"properties":{"rate":0.077}},{"type":"Polygon","id":29221,"arcs":[[4571,4957,-4963,-4964,4740]],"properties":{"rate":0.137}},{"type":"Polygon","id":18147,"arcs":[[4707,4936,-4965,-4966,4904]],"properties":{"rate":0.081}},{"type":"Polygon","id":21163,"arcs":[[4801,4799,4907,-4967,-4968]],"properties":{"rate":0.124}},{"type":"Polygon","id":51790,"arcs":[[4767]],"properties":{"rate":0.073}},{"type":"Polygon","id":21239,"arcs":[[4758,4841,-4969,-4970,-4971,4958]],"properties":{"rate":0.083}},{"type":"Polygon","id":21173,"arcs":[[4854,4844,-4972,-4973,-4974]],"properties":{"rate":0.126}},{"type":"Polygon","id":20079,"arcs":[[4650,4648,-4975,-4976,-4977]],"properties":{"rate":0.074}},{"type":"Polygon","id":20073,"arcs":[[4716,-4978,-4979,-4980,-4981,4792,4538]],"properties":{"rate":0.072}},{"type":"Polygon","id":20155,"arcs":[[4724,4922,-4982,-4983,-4984,4974,4647]],"properties":{"rate":0.063}},{"type":"Polygon","id":18163,"arcs":[[4704,4940,-4985,4933]],"properties":{"rate":0.074}},{"type":"Polygon","id":29161,"arcs":[[4562,4861,-4986,-4987,-4988,4954]],"properties":{"rate":0.071}},{"type":"Polygon","id":49017,"arcs":[[4738,4736,4680,-4989,-4990,4749]],"properties":{"rate":0.049}},{"type":"Polygon","id":51057,"arcs":[[-4991,4812,4932,-4992,-4993]],"properties":{"rate":0.077}},{"type":"Polygon","id":8113,"arcs":[[4628,4756,-4994,-4995,4850]],"properties":{"rate":0.042}},{"type":"Polygon","id":51109,"arcs":[[4820,4874,-4996,-4997,-4998,4832,4821]],"properties":{"rate":0.081}},{"type":"Polygon","id":49021,"arcs":[[4679,4625,-4999,-5000,4988]],"properties":{"rate":0.063}},{"type":"Polygon","id":21215,"arcs":[[4845,4829,-5001,-5002,-5003]],"properties":{"rate":0.102}},{"type":"Polygon","id":8053,"arcs":[[4171,4852,-5004,-5005,-5006,-5007,4778]],"properties":{"rate":0.022}},{"type":"Polygon","id":21005,"arcs":[[4840,4846,5002,-5008,-5009,-5010,4968]],"properties":{"rate":0.109}},{"type":"Polygon","id":17055,"arcs":[[4770,4953,-5011,-5012,-5013,4926]],"properties":{"rate":0.146}},{"type":"Polygon","id":51159,"arcs":[[4877,-5014,-5015,-5016]],"properties":{"rate":0.072}},{"type":"Polygon","id":29186,"arcs":[[4726,4742,-5017,-5018,4944]],"properties":{"rate":0.093}},{"type":"Polygon","id":21029,"arcs":[[5000,4828,-5019,-5020]],"properties":{"rate":0.108}},{"type":"Polygon","id":21175,"arcs":[[4898,4817,-5021,-5022,-5023,-5024,4884]],"properties":{"rate":0.145}},{"type":"Polygon","id":21049,"arcs":[[4971,4843,4961,-5025,-5026,-5027]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":6013,"arcs":[[[-5028,-5029,4857]]],"properties":{"rate":0.112}},{"type":"Polygon","id":51820,"arcs":[[4768]],"properties":{"rate":0.082}},{"type":"Polygon","id":20015,"arcs":[[4651,4976,-5030,-5031,-5032,4977,4715]],"properties":{"rate":0.072}},{"type":"Polygon","id":20047,"arcs":[[4848,4925,-5033,-5034,-5035,4920]],"properties":{"rate":0.044}},{"type":"Polygon","id":51163,"arcs":[[-5036,4764,4889,-5037,-5038,-5039,-5040]],"properties":{"rate":0.056}},{"type":"Polygon","id":29187,"arcs":[[4741,4963,-5041,-5042,-5043,5016]],"properties":{"rate":0.109}},{"type":"Polygon","id":6099,"arcs":[[4789,4734,4859,-5044,-5045,-5046]],"properties":{"rate":0.153}},{"type":"Polygon","id":29085,"arcs":[[4700,4951,-5047,-5048,4879]],"properties":{"rate":0.123}},{"type":"Polygon","id":29217,"arcs":[[4773,4826,-5049,-5050,-5051,-5052,4948]],"properties":{"rate":0.079}},{"type":"Polygon","id":21165,"arcs":[[4855,4973,-5053,-5054,5020,4816]],"properties":{"rate":0.147}},{"type":"Polygon","id":51125,"arcs":[[4871,4765,5035,-5055,-5056,-5057]],"properties":{"rate":0.062}},{"type":"Polygon","id":21027,"arcs":[[4966,4906,-5058,-5059,-5060,-5061]],"properties":{"rate":0.121}},{"type":"Polygon","id":20207,"arcs":[[4793,4980,-5062,-5063]],"properties":{"rate":0.089}},{"type":"Polygon","id":20001,"arcs":[[4823,5062,-5064,-5065]],"properties":{"rate":0.078}},{"type":"Polygon","id":20011,"arcs":[[4825,5064,-5066,-5067,5048]],"properties":{"rate":0.065}},{"type":"MultiPolygon","id":51001,"arcs":[[[-5068,4787,-5069,-5070,-5071,-5072]]],"properties":{"rate":0.061}},{"type":"Polygon","id":54045,"arcs":[[4837,-5073,-5074,4941]],"properties":{"rate":0.098}},{"type":"Polygon","id":51133,"arcs":[[-5075,4878,5015,-5076]],"properties":{"rate":0.065}},{"type":"Polygon","id":29169,"arcs":[[4796,4882,-5077,-5078,4985,4860]],"properties":{"rate":0.068}},{"type":"Polygon","id":8055,"arcs":[[4899,4782,-5079,-5080,-5081,4718]],"properties":{"rate":0.072}},{"type":"Polygon","id":51085,"arcs":[[4833,4997,-5082,-5083,-5084,-5085,4929]],"properties":{"rate":0.066}},{"type":"Polygon","id":51065,"arcs":[[-5086,4995,4873,-5087,-5088]],"properties":{"rate":0.058}},{"type":"Polygon","id":21093,"arcs":[[5018,4827,4802,4967,5060,-5089,-5090,-5091,-5092]],"properties":{"rate":0.1}},{"type":"Polygon","id":21113,"arcs":[[4959,4970,-5093,-5094,-5095]],"properties":{"rate":0.088}},{"type":"Polygon","id":21115,"arcs":[[4885,5023,-5096,-5097,-5098]],"properties":{"rate":0.111}},{"type":"Polygon","id":20069,"arcs":[[4914,-5099,-5100,-5101,4923]],"properties":{"rate":0.034}},{"type":"Polygon","id":21091,"arcs":[[4905,4965,-5102,-5103,5057]],"properties":{"rate":0.136}},{"type":"Polygon","id":54081,"arcs":[[4943,-5104,-5105,-5106,4908,4639]],"properties":{"rate":0.08}},{"type":"Polygon","id":21179,"arcs":[[5001,5019,5091,-5107,-5108,-5109,5007]],"properties":{"rate":0.115}},{"type":"Polygon","id":54059,"arcs":[[5072,4836,4807,-5110,-5111,-5112,-5113,-5114]],"properties":{"rate":0.107}},{"type":"Polygon","id":21101,"arcs":[[4984,4939,-5115,-5116,-5117,-5118,4934]],"properties":{"rate":0.098}},{"type":"Polygon","id":51097,"arcs":[[4931,-5119,-5120,-5121,-5122,-5123,4991]],"properties":{"rate":0.075}},{"type":"Polygon","id":8111,"arcs":[[4851,4994,-5124,-5125,5003]],"properties":{"rate":0.053}},{"type":"Polygon","id":21167,"arcs":[[4969,5009,-5126,-5127,-5128,5092]],"properties":{"rate":0.108}},{"type":"Polygon","id":8079,"arcs":[[4779,5006,-5129,-5130]],"properties":{"rate":0.053}},{"type":"Polygon","id":21159,"arcs":[[4886,5097,-5131,-5132,5109,4806]],"properties":{"rate":0.124}},{"type":"Polygon","id":51005,"arcs":[[4888,4897,-5133,-5134,-5135,5036]],"properties":{"rate":0.087}},{"type":"Polygon","id":17077,"arcs":[[4952,4946,-5136,-5137,-5138,5010]],"properties":{"rate":0.073}},{"type":"Polygon","id":21197,"arcs":[[4972,5026,-5139,-5140,-5141,5052]],"properties":{"rate":0.167}},{"type":"Polygon","id":21059,"arcs":[[5101,4964,4935,5117,-5142,-5143]],"properties":{"rate":0.091}},{"type":"Polygon","id":21151,"arcs":[[5024,4960,5094,-5144,-5145,-5146,-5147]],"properties":{"rate":0.087}},{"type":"Polygon","id":17059,"arcs":[[4918,4928,-5148,-5149,-5150,4937]],"properties":{"rate":0.11}},{"type":"Polygon","id":21229,"arcs":[[5008,5108,-5151,-5152,5125]],"properties":{"rate":0.127}},{"type":"Polygon","id":20057,"arcs":[[4924,5100,-5153,-5154,-5155,5032]],"properties":{"rate":0.038}},{"type":"Polygon","id":20173,"arcs":[[4975,4983,-5156,-5157,5029]],"properties":{"rate":0.088}},{"type":"Polygon","id":17165,"arcs":[[4927,5012,-5158,-5159,-5160,5147]],"properties":{"rate":0.112}},{"type":"Polygon","id":51101,"arcs":[[4930,5084,-5161,-5162,5118]],"properties":{"rate":0.064}},{"type":"Polygon","id":29059,"arcs":[[5047,-5163,-5164,-5165,-5166,4880]],"properties":{"rate":0.094}},{"type":"MultiPolygon","id":6001,"arcs":[[[5028,-5167,-5168,5043,4858]]],"properties":{"rate":0.113}},{"type":"Polygon","id":51075,"arcs":[[5081,4996,5085,-5169,-5170,-5171]],"properties":{"rate":0.067}},{"type":"Polygon","id":29157,"arcs":[[4945,5017,5042,-5172,-5173,-5174,-5175,5135]],"properties":{"rate":0.072}},{"type":"Polygon","id":29039,"arcs":[[4949,5051,-5176,-5177,-5178]],"properties":{"rate":0.086}},{"type":"Polygon","id":6043,"arcs":[[4790,-5179,-5180]],"properties":{"rate":0.088}},{"type":"Polygon","id":21225,"arcs":[[5114,4938,5149,-5181,-5182,-5183]],"properties":{"rate":0.108}},{"type":"Polygon","id":29105,"arcs":[[4881,5165,-5184,-5185,-5186,5076]],"properties":{"rate":0.11}},{"type":"Polygon","id":8033,"arcs":[[4993,4755,-5187,5123]],"properties":{"rate":0.132}},{"type":"Polygon","id":21153,"arcs":[[5022,-5188,-5189,-5190,-5191,5095]],"properties":{"rate":0.214}},{"type":"Polygon","id":54089,"arcs":[[-5192,4895,4909,5105,-5193,-5194]],"properties":{"rate":0.078}},{"type":"Polygon","id":17199,"arcs":[[5011,5137,-5195,-5196,5157]],"properties":{"rate":0.096}},{"type":"Polygon","id":21237,"arcs":[[5021,5053,5140,-5197,-5198,5187]],"properties":{"rate":0.139}},{"type":"Polygon","id":21065,"arcs":[[5025,5146,-5199,-5200,5138]],"properties":{"rate":0.129}},{"type":"MultiPolygon","id":51103,"arcs":[[[-5201,5075,5014,-5202]]],"properties":{"rate":0.073}},{"type":"Polygon","id":8105,"arcs":[[5129,-5203,-5204,-5205,4780]],"properties":{"rate":0.048}},{"type":"MultiPolygon","id":6075,"arcs":[[[-5206,-5207]]],"properties":{"rate":0.097}},{"type":"Polygon","id":29167,"arcs":[[4950,5177,-5208,-5209,5162,5046]],"properties":{"rate":0.089}},{"type":"Polygon","id":21079,"arcs":[[5093,5127,-5210,-5211,-5212,5143]],"properties":{"rate":0.119}},{"type":"Polygon","id":20151,"arcs":[[4921,5034,-5213,-5214,-5215,4981]],"properties":{"rate":0.053}},{"type":"Polygon","id":51009,"arcs":[[5054,5039,-5216,-5217,-5218,-5219]],"properties":{"rate":0.07}},{"type":"Polygon","id":8071,"arcs":[[4903,4719,5080,-5220,-5221,-5222,-5223,4901]],"properties":{"rate":0.07}},{"type":"Polygon","id":51023,"arcs":[[5037,5134,-5224,-5225,-5226]],"properties":{"rate":0.062}},{"type":"Polygon","id":29065,"arcs":[[4987,-5227,-5228,-5229,-5230,4955]],"properties":{"rate":0.094}},{"type":"Polygon","id":54109,"arcs":[[5103,4942,5073,5113,-5231,-5232]],"properties":{"rate":0.115}},{"type":"Polygon","id":51029,"arcs":[[5086,4872,5056,-5233,-5234,-5235]],"properties":{"rate":0.078}},{"type":"Polygon","id":6039,"arcs":[[4791,5179,-5236,-5237,4566]],"properties":{"rate":0.123}},{"type":"MultiPolygon","id":51119,"arcs":[[[-5238,4992,5122,-5239]]],"properties":{"rate":0.064}},{"type":"Polygon","id":21071,"arcs":[[5096,5190,-5240,-5241,5130]],"properties":{"rate":0.124}},{"type":"Polygon","id":8003,"arcs":[[4781,5204,-5242,-5243,5078]],"properties":{"rate":0.055}},{"type":"Polygon","id":51049,"arcs":[[5087,5234,-5244,-5245,-5246,5168]],"properties":{"rate":0.07}},{"type":"Polygon","id":21195,"arcs":[[5110,5131,5240,-5247,-5248,-5249,-5250,-5251]],"properties":{"rate":0.107}},{"type":"Polygon","id":29093,"arcs":[[4962,4956,5229,-5252,-5253,-5254,5040]],"properties":{"rate":0.087}},{"type":"Polygon","id":20187,"arcs":[[4916,4892,-5255,-5256,-5257,-5258]],"properties":{"rate":0.034}},{"type":"Polygon","id":21183,"arcs":[[5102,5142,-5259,-5260,-5261,-5262,5058]],"properties":{"rate":0.094}},{"type":"Polygon","id":20067,"arcs":[[4911,5257,-5263,-5264]],"properties":{"rate":0.042}},{"type":"Polygon","id":20081,"arcs":[[4913,5263,-5265,-5266,-5267,5098]],"properties":{"rate":0.037}},{"type":"Polygon","id":20097,"arcs":[[5033,5154,-5268,-5269,-5270,5212]],"properties":{"rate":0.049}},{"type":"Polygon","id":20095,"arcs":[[4982,5214,-5271,-5272,-5273,5155]],"properties":{"rate":0.063}},{"type":"Polygon","id":20205,"arcs":[[5061,4979,-5274,-5275,-5276]],"properties":{"rate":0.102}},{"type":"Polygon","id":20133,"arcs":[[5063,5275,-5277,-5278,-5279,5065]],"properties":{"rate":0.07}},{"type":"Polygon","id":21123,"arcs":[[5106,5090,-5280,-5281,-5282,-5283]],"properties":{"rate":0.107}},{"type":"Polygon","id":21155,"arcs":[[5107,5282,-5284,-5285,-5286,5150]],"properties":{"rate":0.129}},{"type":"Polygon","id":54063,"arcs":[[4896,5191,-5287,-5288,5132]],"properties":{"rate":0.065}},{"type":"Polygon","id":21129,"arcs":[[5139,5199,-5289,-5290,-5291,5196]],"properties":{"rate":0.123}},{"type":"Polygon","id":21021,"arcs":[[5126,5151,5285,-5292,-5293,5209]],"properties":{"rate":0.11}},{"type":"Polygon","id":51087,"arcs":[[5082,5170,-5294,-5295,-5296,-5297,-5298,-5299]],"properties":{"rate":0.072}},{"type":"Polygon","id":6081,"arcs":[[5206,-5300,-5301,-5302,-5303]],"properties":{"rate":0.09}},{"type":"Polygon","id":21025,"arcs":[[5197,5290,-5304,-5305,-5306,5188]],"properties":{"rate":0.1}},{"type":"Polygon","id":51145,"arcs":[[5169,5245,-5307,-5308]],"properties":{"rate":0.06}},{"type":"Polygon","id":21149,"arcs":[[5141,5116,-5309,-5310,-5311,5258]],"properties":{"rate":0.106}},{"type":"Polygon","id":20037,"arcs":[[5066,5278,-5312,-5313,-5314,-5315,5049]],"properties":{"rate":0.081}},{"type":"Polygon","id":51045,"arcs":[[5223,5133,5287,-5316,-5317,-5318]],"properties":{"rate":0.072}},{"type":"Polygon","id":8023,"arcs":[[5079,5242,-5319,-5320,-5321,5219]],"properties":{"rate":0.084}},{"type":"Polygon","id":29011,"arcs":[[5050,5314,-5322,-5323,5175]],"properties":{"rate":0.117}},{"type":"Polygon","id":21233,"arcs":[[5308,5115,5182,-5324,-5325,-5326]],"properties":{"rate":0.088}},{"type":"Polygon","id":29123,"arcs":[[5041,5253,-5327,-5328,5171]],"properties":{"rate":0.098}},{"type":"Polygon","id":8009,"arcs":[[4891,4902,5222,-5329,-5330,-5331,5254]],"properties":{"rate":0.034}},{"type":"Polygon","id":8083,"arcs":[[5186,4754,-5332,-5333]],"properties":{"rate":0.063}},{"type":"Polygon","id":8067,"arcs":[[5124,5332,-5334,-5335,5004]],"properties":{"rate":0.047}},{"type":"Polygon","id":6047,"arcs":[[5178,5045,-5336,-5337,-5338,5235]],"properties":{"rate":0.157}},{"type":"Polygon","id":21137,"arcs":[[5210,5292,-5339,-5340,-5341]],"properties":{"rate":0.121}},{"type":"Polygon","id":51127,"arcs":[[5160,5083,5298,-5342,-5343,-5344]],"properties":{"rate":0.069}},{"type":"Polygon","id":21085,"arcs":[[5059,5261,-5345,-5346,-5347,5088]],"properties":{"rate":0.164}},{"type":"Polygon","id":51019,"arcs":[[5215,5038,5225,-5348,-5349,-5350,-5351,-5352]],"properties":{"rate":0.062}},{"type":"Polygon","id":49053,"arcs":[[4998,4624,-5353,-5354]],"properties":{"rate":0.078}},{"type":"Polygon","id":20049,"arcs":[[4978,5031,-5355,-5356,-5357,5273]],"properties":{"rate":0.11}},{"type":"Polygon","id":29179,"arcs":[[5251,5228,-5358,-5359,-5360]],"properties":{"rate":0.127}},{"type":"Polygon","id":29031,"arcs":[[5173,-5361,-5362,-5363,-5364,-5365]],"properties":{"rate":0.069}},{"type":"Polygon","id":29215,"arcs":[[5077,5185,-5366,-5367,-5368,-5369,5226,4986]],"properties":{"rate":0.088}},{"type":"Polygon","id":17069,"arcs":[[5159,-5370,-5371,-5372,5180,5148]],"properties":{"rate":0.128}},{"type":"Polygon","id":17151,"arcs":[[5158,-5373,-5374,-5375,5369]],"properties":{"rate":0.106}},{"type":"Polygon","id":51760,"arcs":[[5294,-5376]],"properties":{"rate":0.1}},{"type":"Polygon","id":17087,"arcs":[[5195,-5377,-5378,-5379,5372]],"properties":{"rate":0.104}},{"type":"Polygon","id":17181,"arcs":[[5136,5174,5364,-5380,-5381,5376,5194]],"properties":{"rate":0.108}},{"type":"MultiPolygon","id":51073,"arcs":[[[5238,5121,-5382,-5383,-5384,-5385]]],"properties":{"rate":0.055}},{"type":"Polygon","id":29017,"arcs":[[5172,5327,-5386,-5387,5360]],"properties":{"rate":0.088}},{"type":"Polygon","id":54055,"arcs":[[5104,5231,-5388,-5389,-5390,-5391,5192]],"properties":{"rate":0.069}},{"type":"Polygon","id":6019,"arcs":[[4567,5236,5337,-5392,-5393,-5394,-5395,-5396]],"properties":{"rate":0.141}},{"type":"Polygon","id":29057,"arcs":[[5176,5322,-5397,-5398,-5399,5207]],"properties":{"rate":0.101}},{"type":"Polygon","id":21109,"arcs":[[5198,5145,-5400,-5401,-5402,-5403,5288]],"properties":{"rate":0.175}},{"type":"Polygon","id":21107,"arcs":[[5309,5325,-5404,-5405,-5406]],"properties":{"rate":0.091}},{"type":"MultiPolygon","id":51041,"arcs":[[[5293,5307,-5407,-5408,-5409,-5410,-5411,-5412,-5413,-5414,5295,5375]]],"properties":{"rate":0.068}},{"type":"Polygon","id":51011,"arcs":[[5232,5055,5218,-5415,-5416,-5417]],"properties":{"rate":0.067}},{"type":"MultiPolygon","id":51131,"arcs":[[[-5418]],[[5070,-5419]]],"properties":{"rate":0.066}},{"type":"Polygon","id":21045,"arcs":[[5291,5284,-5420,-5421,-5422,-5423,5338]],"properties":{"rate":0.102}},{"type":"Polygon","id":54047,"arcs":[[5230,5112,-5424,-5425,5387]],"properties":{"rate":0.127}},{"type":"Polygon","id":21055,"arcs":[[5181,5371,-5426,-5427,-5428,5323]],"properties":{"rate":0.108}},{"type":"Polygon","id":49025,"arcs":[[4999,5353,-5429,-5430,4750,4989]],"properties":{"rate":0.044}},{"type":"Polygon","id":21189,"arcs":[[5289,5402,-5431,-5432,5303]],"properties":{"rate":0.112}},{"type":"Polygon","id":21203,"arcs":[[5144,5211,5340,-5433,-5434,5399]],"properties":{"rate":0.128}},{"type":"Polygon","id":51027,"arcs":[[5111,5250,-5435,-5436,-5437,5423]],"properties":{"rate":0.088}},{"type":"MultiPolygon","id":51115,"arcs":[[[-5438,5383]]],"properties":{"rate":0.048}},{"type":"Polygon","id":21119,"arcs":[[5305,-5439,-5440,5246,5239,5189]],"properties":{"rate":0.12}},{"type":"Polygon","id":51007,"arcs":[[5306,5244,-5441,-5442,-5443,5406]],"properties":{"rate":0.07}},{"type":"Polygon","id":51036,"arcs":[[5341,5297,-5444,-5445]],"properties":{"rate":0.087}},{"type":"Polygon","id":29225,"arcs":[[5164,-5446,-5447,-5448,-5449,5183]],"properties":{"rate":0.09}},{"type":"Polygon","id":6085,"arcs":[[5167,-5450,5301,-5451,-5452,5335,5044]],"properties":{"rate":0.118}},{"type":"Polygon","id":21217,"arcs":[[5281,-5453,-5454,5419,5283]],"properties":{"rate":0.102}},{"type":"Polygon","id":29229,"arcs":[[5184,5448,-5455,5365]],"properties":{"rate":0.096}},{"type":"Polygon","id":51071,"arcs":[[5286,5193,5390,-5456,-5457,-5458,5315]],"properties":{"rate":0.085}},{"type":"Polygon","id":20035,"arcs":[[5030,-5459,-5460,-5461,-5462,5354]],"properties":{"rate":0.076}},{"type":"Polygon","id":20191,"arcs":[[5156,5272,-5463,-5464,-5465,5458]],"properties":{"rate":0.09}},{"type":"Polygon","id":20119,"arcs":[[5099,5266,-5466,-5467,-5468,5152]],"properties":{"rate":0.042}},{"type":"Polygon","id":20025,"arcs":[[5153,5467,-5469,-5470,-5471,5267]],"properties":{"rate":0.037}},{"type":"Polygon","id":20007,"arcs":[[5213,5269,-5472,-5473,-5474,-5475,5270]],"properties":{"rate":0.051}},{"type":"Polygon","id":21087,"arcs":[[5280,-5476,-5477,-5478,5452]],"properties":{"rate":0.124}},{"type":"Polygon","id":51680,"arcs":[[5351,-5479,5216]],"properties":{"rate":0.077}},{"type":"Polygon","id":6027,"arcs":[[4568,5395,-5480,-5481,-5482,-5483,4250,4775]],"properties":{"rate":0.095}},{"type":"MultiPolygon","id":51095,"arcs":[[[-5484,-5485,-5486,5342,5444,-5487,-5488,-5489,-5490]]],"properties":{"rate":0.046}},{"type":"Polygon","id":21099,"arcs":[[5089,5346,-5491,-5492,-5493,5475,5279]],"properties":{"rate":0.106}},{"type":"Polygon","id":21193,"arcs":[[5304,5431,-5494,-5495,-5496,-5497,5438]],"properties":{"rate":0.125}},{"type":"Polygon","id":51031,"arcs":[[5217,5478,5350,-5498,-5499,-5500,5414]],"properties":{"rate":0.066}},{"type":"Polygon","id":29077,"arcs":[[5208,5398,-5501,-5502,5445,5163]],"properties":{"rate":0.083}},{"type":"Polygon","id":21139,"arcs":[[5370,5374,-5503,-5504,-5505,-5506,5425]],"properties":{"rate":0.098}},{"type":"Polygon","id":29203,"arcs":[[5227,5368,-5507,-5508,-5509,5357]],"properties":{"rate":0.096}},{"type":"Polygon","id":8007,"arcs":[[5005,5334,-5510,-5511,-5512,5202,5128]],"properties":{"rate":0.062}},{"type":"Polygon","id":51161,"arcs":[[5224,5317,-5513,-5514,-5515,5347],[-5516,-5517]],"properties":{"rate":0.059}},{"type":"Polygon","id":21177,"arcs":[[5259,5310,5405,-5518,-5519,-5520,-5521]],"properties":{"rate":0.107}},{"type":"Polygon","id":51147,"arcs":[[5233,5416,-5522,-5523,-5524,5440,5243]],"properties":{"rate":0.084}},{"type":"Polygon","id":8021,"arcs":[[5511,-5525,-5526,5318,5241,5203]],"properties":{"rate":0.051}},{"type":"Polygon","id":21031,"arcs":[[-5527,5344,5260,5520,-5528,-5529]],"properties":{"rate":0.137}},{"type":"Polygon","id":20129,"arcs":[[5255,5330,-5530,-5531,-5532]],"properties":{"rate":0.047}},{"type":"Polygon","id":20189,"arcs":[[5262,5256,5531,-5533,-5534,5264]],"properties":{"rate":0.053}},{"type":"Polygon","id":20175,"arcs":[[5265,5533,-5535,-5536,5465]],"properties":{"rate":0.051}},{"type":"Polygon","id":20125,"arcs":[[5356,-5537,-5538,-5539,-5540,5276,5274]],"properties":{"rate":0.094}},{"type":"Polygon","id":20077,"arcs":[[5462,5271,5474,-5541,-5542]],"properties":{"rate":0.056}},{"type":"Polygon","id":20033,"arcs":[[5471,5268,5470,-5543,-5544]],"properties":{"rate":0.038}},{"type":"Polygon","id":20099,"arcs":[[5277,5539,-5545,-5546,-5547,5311]],"properties":{"rate":0.078}},{"type":"Polygon","id":21033,"arcs":[[5324,5427,-5548,-5549,-5550,5403]],"properties":{"rate":0.109}},{"type":"MultiPolygon","id":51199,"arcs":[[[5484,-5551,5488,-5552,-5553,-5554,-5555]]],"properties":{"rate":0.05}},{"type":"Polygon","id":29097,"arcs":[[5321,5313,-5556,-5557,-5558,5396]],"properties":{"rate":0.084}},{"type":"Polygon","id":51121,"arcs":[[5512,5316,5457,-5559,-5560,-5561,-5562]],"properties":{"rate":0.063}},{"type":"Polygon","id":21051,"arcs":[[5430,5401,-5563,-5564,-5565,-5566,5493]],"properties":{"rate":0.135}},{"type":"Polygon","id":21199,"arcs":[[-5567,5432,5339,5422,-5568,-5569,-5570]],"properties":{"rate":0.1}},{"type":"Polygon","id":20021,"arcs":[[5312,5546,-5571,-5572,-5573,5555]],"properties":{"rate":0.085}},{"type":"Polygon","id":21061,"arcs":[[5345,5526,-5574,-5575,5490]],"properties":{"rate":0.128}},{"type":"Polygon","id":51770,"arcs":[[5515,-5576]],"properties":{"rate":0.086}},{"type":"Polygon","id":17127,"arcs":[[5373,5378,-5577,-5578,5502]],"properties":{"rate":0.08}},{"type":"Polygon","id":51185,"arcs":[[5424,5436,-5579,-5580,-5581,5388]],"properties":{"rate":0.079}},{"type":"Polygon","id":17003,"arcs":[[5379,5363,-5582,-5583,-5584,-5585]],"properties":{"rate":0.112}},{"type":"Polygon","id":21125,"arcs":[[5400,5433,5566,-5586,-5587,-5588,5562]],"properties":{"rate":0.101}},{"type":"Polygon","id":17153,"arcs":[[5380,5584,-5589,-5590,5576,5377]],"properties":{"rate":0.119}},{"type":"Polygon","id":51775,"arcs":[[5516,5575]],"properties":{"rate":0.063}},{"type":"Polygon","id":21131,"arcs":[[5494,5565,-5591,-5592]],"properties":{"rate":0.137}},{"type":"Polygon","id":51670,"arcs":[[-5593,5412,-5594]],"properties":{"rate":0.104}},{"type":"Polygon","id":29223,"arcs":[[5326,5252,5359,-5595,-5596,-5597,5385]],"properties":{"rate":0.095}},{"type":"Polygon","id":51149,"arcs":[[5593,5411,-5598,-5599,-5600,-5601,-5602]],"properties":{"rate":0.073}},{"type":"Polygon","id":51830,"arcs":[[5489,5550,5483,5602]],"properties":{"rate":0.135}},{"type":"Polygon","id":21001,"arcs":[[5453,5477,-5604,-5605,-5606,5420]],"properties":{"rate":0.101}},{"type":"Polygon","id":51051,"arcs":[[5434,5249,-5607,-5608]],"properties":{"rate":0.083}},{"type":"Polygon","id":20019,"arcs":[[5355,5461,-5609,-5610,5536]],"properties":{"rate":0.084}},{"type":"Polygon","id":51021,"arcs":[[5455,5389,5580,-5611,-5612,-5613]],"properties":{"rate":0.075}},{"type":"Polygon","id":51135,"arcs":[[-5614,5441,5523,-5615,-5616]],"properties":{"rate":0.079}},{"type":"Polygon","id":29109,"arcs":[[5397,5557,-5617,-5618,-5619,-5620,5500]],"properties":{"rate":0.078}},{"type":"Polygon","id":6087,"arcs":[[5450,5300,-5621,-5622,-5623]],"properties":{"rate":0.102}},{"type":"Polygon","id":51053,"arcs":[[5407,5442,5613,-5624,-5625,-5626,5598,-5627]],"properties":{"rate":0.083}},{"type":"Polygon","id":21133,"arcs":[[5439,5496,-5628,-5629,5247]],"properties":{"rate":0.12}},{"type":"Polygon","id":29201,"arcs":[[5581,5362,-5630,-5631,-5632]],"properties":{"rate":0.092}},{"type":"Polygon","id":51037,"arcs":[[5521,5415,5499,-5633,-5634,-5635]],"properties":{"rate":0.091}},{"type":"Polygon","id":51155,"arcs":[[5558,5456,5612,-5636,-5637,-5638,5560,-5639]],"properties":{"rate":0.108}},{"type":"Polygon","id":51730,"arcs":[[5597,5410,5639,5408,5626]],"properties":{"rate":0.138}},{"type":"Polygon","id":51181,"arcs":[[-5641,5600,-5642,-5643,-5644]],"properties":{"rate":0.073}},{"type":"Polygon","id":51067,"arcs":[[5348,5514,-5645,-5646,-5647,-5648]],"properties":{"rate":0.078}},{"type":"Polygon","id":21007,"arcs":[[-5649,5588,5583,-5650,-5651]],"properties":{"rate":0.102}},{"type":"Polygon","id":21145,"arcs":[[5577,5589,5648,-5652,-5653,-5654,5503]],"properties":{"rate":0.091}},{"type":"Polygon","id":51700,"arcs":[[5551,5487,-5655,-5656]],"properties":{"rate":0.073}},{"type":"Polygon","id":51195,"arcs":[[5606,5248,5628,-5657,-5658,-5659,-5660]],"properties":{"rate":0.067}},{"type":"Polygon","id":21227,"arcs":[[5528,-5661,-5662,-5663,-5664,5573]],"properties":{"rate":0.092}},{"type":"Polygon","id":21207,"arcs":[[5421,5605,-5665,-5666,-5667,5567]],"properties":{"rate":0.108}},{"type":"Polygon","id":21169,"arcs":[[5476,5492,-5668,-5669,-5670,5603]],"properties":{"rate":0.158}},{"type":"Polygon","id":21143,"arcs":[[5426,5505,-5671,-5672,5547]],"properties":{"rate":0.122}},{"type":"MultiPolygon","id":51735,"arcs":[[[-5673,5553,-5674,-5675]]],"properties":{"rate":0.05}},{"type":"Polygon","id":21009,"arcs":[[5667,5491,5574,5663,-5676,-5677]],"properties":{"rate":0.116}},{"type":"Polygon","id":21047,"arcs":[[5404,5549,-5678,-5679,-5680,-5681,5517]],"properties":{"rate":0.129}},{"type":"Polygon","id":51093,"arcs":[[-5682,5643,-5683,-5684,-5685,-5686]],"properties":{"rate":0.063}},{"type":"Polygon","id":51167,"arcs":[[5578,5435,5607,5659,-5687,-5688,-5689]],"properties":{"rate":0.096}},{"type":"Polygon","id":51143,"arcs":[[5497,5349,5647,-5690,-5691,-5692,-5693,-5694,-5695]],"properties":{"rate":0.103}},{"type":"Polygon","id":51063,"arcs":[[5513,5561,5637,-5696,-5697,5644]],"properties":{"rate":0.071}},{"type":"Polygon","id":29207,"arcs":[[5386,5596,-5698,-5699,-5700,5629,5361]],"properties":{"rate":0.09}},{"type":"Polygon","id":51111,"arcs":[[5522,5634,-5701,-5702,5614]],"properties":{"rate":0.091}},{"type":"Polygon","id":51650,"arcs":[[-5703,5673,5552,5655]],"properties":{"rate":0.077}},{"type":"Polygon","id":51183,"arcs":[[5641,5599,5625,-5704,-5705]],"properties":{"rate":0.095}},{"type":"Polygon","id":29035,"arcs":[[5358,5508,-5706,-5707,-5708,5594]],"properties":{"rate":0.087}},{"type":"Polygon","id":29043,"arcs":[[5501,5619,-5709,-5710,-5711,5446]],"properties":{"rate":0.08}},{"type":"Polygon","id":51197,"arcs":[[5635,5611,-5712,-5713,-5714]],"properties":{"rate":0.097}},{"type":"Polygon","id":21141,"arcs":[[5660,5527,5519,-5715,-5716,-5717]],"properties":{"rate":0.104}},{"type":"Polygon","id":21219,"arcs":[[5518,5680,-5718,-5719,5714]],"properties":{"rate":0.126}},{"type":"Polygon","id":29067,"arcs":[[5447,5710,-5720,-5721,-5722,5366,5454]],"properties":{"rate":0.098}},{"type":"Polygon","id":21157,"arcs":[[5504,5653,-5723,-5724,-5725,5670]],"properties":{"rate":0.107}},{"type":"Polygon","id":29133,"arcs":[[5582,5631,-5726,-5727,-5728,-5729,5649]],"properties":{"rate":0.097}},{"type":"Polygon","id":51083,"arcs":[[5498,5694,-5730,-5731,-5732,-5733,5632]],"properties":{"rate":0.115}},{"type":"Polygon","id":29091,"arcs":[[5367,5721,-5734,-5735,-5736,5506]],"properties":{"rate":0.092}},{"type":"Polygon","id":29145,"arcs":[[5556,5572,-5737,-5738,-5739,5616]],"properties":{"rate":0.079}},{"type":"Polygon","id":21121,"arcs":[[5563,5587,-5740,-5741]],"properties":{"rate":0.115}},{"type":"Polygon","id":51025,"arcs":[[5615,5701,-5742,-5743,-5744,-5745,5623]],"properties":{"rate":0.114}},{"type":"Polygon","id":21095,"arcs":[[5495,5591,-5746,-5747,5656,5627]],"properties":{"rate":0.125}},{"type":"Polygon","id":51173,"arcs":[[5579,5688,-5748,-5749,5711,5610]],"properties":{"rate":0.102}},{"type":"Polygon","id":4017,"arcs":[[4752,-5750,-5751,-5752,-5753]],"properties":{"rate":0.142}},{"type":"Polygon","id":4005,"arcs":[[4751,5429,-5754,-5755,-5756,5749]],"properties":{"rate":0.077}},{"type":"Polygon","id":21221,"arcs":[[5677,5548,5671,5724,-5757,-5758]],"properties":{"rate":0.16}},{"type":"Polygon","id":40105,"arcs":[[5538,-5759,-5760,-5761,5544]],"properties":{"rate":0.093}},{"type":"Polygon","id":40113,"arcs":[[5608,5460,-5762,-5763,-5764,-5765,-5766]],"properties":{"rate":0.074}},{"type":"Polygon","id":40151,"arcs":[[5543,-5767,-5768,-5769,-5770,5472]],"properties":{"rate":0.042}},{"type":"Polygon","id":40035,"arcs":[[5545,5760,-5771,-5772,-5773,-5774,5570]],"properties":{"rate":0.055}},{"type":"Polygon","id":40147,"arcs":[[5537,5609,5765,-5775,-5776,5758]],"properties":{"rate":0.059}},{"type":"Polygon","id":40053,"arcs":[[5463,5541,-5777,-5778,-5779]],"properties":{"rate":0.042}},{"type":"Polygon","id":40003,"arcs":[[5473,5769,-5780,-5781,5776,5540]],"properties":{"rate":0.055}},{"type":"Polygon","id":40071,"arcs":[[5459,5464,5778,-5782,-5783,5761]],"properties":{"rate":0.081}},{"type":"Polygon","id":40115,"arcs":[[5571,5773,-5784,-5785,5736]],"properties":{"rate":0.062}},{"type":"Polygon","id":40059,"arcs":[[5469,-5786,-5787,-5788,5766,5542]],"properties":{"rate":0.043}},{"type":"Polygon","id":35039,"arcs":[[5510,-5789,-5790,-5791,-5792,-5793,-5794,5524]],"properties":{"rate":0.072}},{"type":"Polygon","id":35045,"arcs":[[5509,5333,5331,-5795,-5796,-5797,5788]],"properties":{"rate":0.083}},{"type":"Polygon","id":4001,"arcs":[[4753,5752,-5798,-5799,-5800,-5801,-5802,5794]],"properties":{"rate":0.148}},{"type":"Polygon","id":35059,"arcs":[[5328,5221,-5803,-5804,-5805,-5806,-5807,-5808]],"properties":{"rate":0.055}},{"type":"Polygon","id":40025,"arcs":[[5329,5807,-5809,-5810,-5811,5529]],"properties":{"rate":0.035}},{"type":"Polygon","id":40139,"arcs":[[5534,5532,5530,5810,-5812,-5813,-5814,-5815]],"properties":{"rate":0.038}},{"type":"Polygon","id":40007,"arcs":[[5466,5535,5814,-5816,-5817,-5818,5785,5468]],"properties":{"rate":0.033}},{"type":"Polygon","id":51175,"arcs":[[5682,5642,5704,-5819,-5820,-5821,-5822,-5823,5684,-5824]],"properties":{"rate":0.077}},{"type":"Polygon","id":21231,"arcs":[[5568,5666,-5825,-5826,-5827,-5828]],"properties":{"rate":0.136}},{"type":"Polygon","id":35055,"arcs":[[5319,5525,5793,-5829,-5830]],"properties":{"rate":0.087}},{"type":"Polygon","id":35007,"arcs":[[5220,5320,5829,-5831,-5832,5802]],"properties":{"rate":0.08}},{"type":"Polygon","id":29209,"arcs":[[5708,5618,-5833,-5834,-5835]],"properties":{"rate":0.09}},{"type":"Polygon","id":6069,"arcs":[[5451,5622,-5836,5391,5336]],"properties":{"rate":0.125}},{"type":"Polygon","id":21235,"arcs":[[5586,-5837,-5838,-5839,-5840,5739]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":51710,"arcs":[[[-5841,-5842,-5843]],[[-5844,-5845]]],"properties":{"rate":0.084}},{"type":"Polygon","id":21147,"arcs":[[5585,5569,5827,-5846,-5847,5836]],"properties":{"rate":0.133}},{"type":"Polygon","id":21013,"arcs":[[5564,5740,5839,-5848,-5849,5745,5590]],"properties":{"rate":0.125}},{"type":"Polygon","id":21039,"arcs":[[5650,5728,-5850,-5851,5651]],"properties":{"rate":0.091}},{"type":"Polygon","id":21083,"arcs":[[5652,5850,-5852,-5853,-5854,-5855,5722]],"properties":{"rate":0.103}},{"type":"Polygon","id":21057,"arcs":[[5664,5604,5669,-5856,-5857,-5858]],"properties":{"rate":0.13}},{"type":"Polygon","id":21003,"arcs":[[5662,-5859,-5860,-5861,-5862,5675]],"properties":{"rate":0.143}},{"type":"Polygon","id":29009,"arcs":[[5617,5738,-5863,-5864,-5865,5832]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":51810,"arcs":[[[-5866,-5867,-5868]],[[-5869,5844,-5870,-5871,-5872,-5873,-5874,-5875,-5876]]],"properties":{"rate":0.059}},{"type":"Polygon","id":51035,"arcs":[[5695,5636,5713,-5877,-5878,-5879,-5880,-5881]],"properties":{"rate":0.113}},{"type":"Polygon","id":51191,"arcs":[[-5882,-5883,-5884,-5885,5747,5687,-5886,-5887,-5888,-5889]],"properties":{"rate":0.082}},{"type":"Polygon","id":29023,"arcs":[[5595,5707,-5890,-5891,-5892,5697]],"properties":{"rate":0.08}},{"type":"MultiPolygon","id":51740,"arcs":[[[-5893,-5894,5841]],[[-5895,-5896,-5897]]],"properties":{"rate":0.084}},{"type":"Polygon","id":51800,"arcs":[[-5898,5685,5822,-5899,-5900,-5901,5895]],"properties":{"rate":0.066}},{"type":"Polygon","id":6053,"arcs":[[5621,-5902,-5903,-5904,5392,5835]],"properties":{"rate":0.1}},{"type":"Polygon","id":51081,"arcs":[[5624,5744,-5905,5818,5703]],"properties":{"rate":0.091}},{"type":"Polygon","id":51105,"arcs":[[5657,5746,5848,-5906,-5907,-5908]],"properties":{"rate":0.071}},{"type":"Polygon","id":51117,"arcs":[[5700,5633,5732,-5909,-5910,-5911,5741]],"properties":{"rate":0.105}},{"type":"Polygon","id":21053,"arcs":[[5665,5857,-5912,-5913,5824]],"properties":{"rate":0.09}},{"type":"Polygon","id":29149,"arcs":[[5507,5735,-5914,-5915,-5916,-5917,5705]],"properties":{"rate":0.09}},{"type":"Polygon","id":51169,"arcs":[[5658,5907,-5918,-5919,-5920,5885,5686]],"properties":{"rate":0.099}},{"type":"Polygon","id":21213,"arcs":[[5858,5661,5716,-5921,-5922]],"properties":{"rate":0.118}},{"type":"Polygon","id":51141,"arcs":[[5645,5696,5880,-5923,-5924,-5925]],"properties":{"rate":0.099}},{"type":"Polygon","id":29143,"arcs":[[5630,5699,-5926,-5927,-5928,-5929,-5930,-5931,5725]],"properties":{"rate":0.089}},{"type":"Polygon","id":51550,"arcs":[[5896,5900,-5932,-5933,5870,-5934,5842,5893,-5935]],"properties":{"rate":0.064}},{"type":"Polygon","id":51089,"arcs":[[5689,5646,5924,-5936,-5937],[-5938]],"properties":{"rate":0.134}},{"type":"Polygon","id":32003,"arcs":[[4622,4251,5482,-5939,-5940]],"properties":{"rate":0.139}},{"type":"Polygon","id":21171,"arcs":[[5668,5676,5861,-5941,-5942,5855]],"properties":{"rate":0.14}},{"type":"Polygon","id":29181,"arcs":[[5706,5916,-5943,-5944,5889]],"properties":{"rate":0.095}},{"type":"Polygon","id":29213,"arcs":[[5709,5834,-5945,-5946,-5947,-5948,5719]],"properties":{"rate":0.086}},{"type":"Polygon","id":40153,"arcs":[[5767,5787,-5949,-5950,-5951]],"properties":{"rate":0.065}},{"type":"Polygon","id":51077,"arcs":[[5712,5748,5884,-5952,-5953,-5954,-5955,5878,-5956,5876]],"properties":{"rate":0.104}},{"type":"Polygon","id":29153,"arcs":[[5720,5947,-5957,-5958,-5959,5733]],"properties":{"rate":0.076}},{"type":"Polygon","id":21105,"arcs":[[5849,5727,-5960,-5961,-5962,5851]],"properties":{"rate":0.092}},{"type":"Polygon","id":29119,"arcs":[[5737,5784,-5963,-5964,5862]],"properties":{"rate":0.07}},{"type":"Polygon","id":21035,"arcs":[[5723,5854,-5965,-5966,5756]],"properties":{"rate":0.08}},{"type":"Polygon","id":6107,"arcs":[[5479,5394,-5967,-5968]],"properties":{"rate":0.149}},{"type":"Polygon","id":51690,"arcs":[[5937]],"properties":{"rate":0.2}},{"type":"Polygon","id":47161,"arcs":[[5757,5965,-5969,-5970,-5971,-5972,5678]],"properties":{"rate":0.111}},{"type":"Polygon","id":40041,"arcs":[[5783,5772,-5973,-5974,-5975,-5976,5962]],"properties":{"rate":0.06}},{"type":"Polygon","id":47147,"arcs":[[-5977,5920,5715,5718,-5978,-5979,-5980]],"properties":{"rate":0.101}},{"type":"Polygon","id":47165,"arcs":[[5859,5921,5976,-5981,-5982,-5983,-5984]],"properties":{"rate":0.097}},{"type":"MultiPolygon","id":21075,"arcs":[[[5928,-5985]],[[5959,5726,5930,-5986,-5987]]],"properties":{"rate":0.144}},{"type":"Polygon","id":47125,"arcs":[[5717,5679,5971,-5988,-5989,-5990,5977]],"properties":{"rate":0.09}},{"type":"Polygon","id":51590,"arcs":[[5692,-5991]],"properties":{"rate":0.13}},{"type":"Polygon","id":47111,"arcs":[[-5992,5940,5860,5983,-5993,-5994,-5995]],"properties":{"rate":0.112}},{"type":"MultiPolygon","id":51520,"arcs":[[[5887,-5996,5881]]],"properties":{"rate":0.099}},{"type":"Polygon","id":29069,"arcs":[[5698,5891,-5997,-5998,-5999,-6000,-6001,5925]],"properties":{"rate":0.111}},{"type":"Polygon","id":47137,"arcs":[[5825,5912,-6002,-6003,-6004,-6005]],"properties":{"rate":0.134}},{"type":"Polygon","id":47027,"arcs":[[6001,5911,5856,5941,5991,-6006,-6007]],"properties":{"rate":0.126}},{"type":"Polygon","id":47163,"arcs":[[-6008,5882,5995,5886,5919,-6009,-6010,-6011]],"properties":{"rate":0.088}},{"type":"Polygon","id":47091,"arcs":[[5883,6007,-6012,-6013,-6014,-6015,5951]],"properties":{"rate":0.122}},{"type":"Polygon","id":47151,"arcs":[[5845,5826,6004,-6016,-6017,-6018,-6019]],"properties":{"rate":0.184}},{"type":"Polygon","id":47025,"arcs":[[5905,5847,5838,-6020,-6021,-6022,-6023]],"properties":{"rate":0.111}},{"type":"Polygon","id":40103,"arcs":[[5762,5782,-6024,-6025,-6026,-6027]],"properties":{"rate":0.077}},{"type":"Polygon","id":47067,"arcs":[[5906,6022,-6028,-6029,5917]],"properties":{"rate":0.183}},{"type":"Polygon","id":40131,"arcs":[[5770,5759,5775,-6030,-6031,-6032]],"properties":{"rate":0.072}},{"type":"Polygon","id":47013,"arcs":[[6019,5837,5846,6018,-6033,-6034]],"properties":{"rate":0.131}},{"type":"Polygon","id":47073,"arcs":[[5918,6028,-6035,-6036,-6037,-6038,6008]],"properties":{"rate":0.103}},{"type":"Polygon","id":40047,"arcs":[[5777,5780,-6039,-6040,-6041,6023,5781]],"properties":{"rate":0.045}},{"type":"Polygon","id":40045,"arcs":[[5786,5817,-6042,-6043,-6044,-6045,5948]],"properties":{"rate":0.045}},{"type":"Polygon","id":37009,"arcs":[[5952,6014,-6046,-6047,-6048]],"properties":{"rate":0.1}},{"type":"Polygon","id":47049,"arcs":[[6003,-6049,-6050,-6051,-6052,6015]],"properties":{"rate":0.13}},{"type":"Polygon","id":37005,"arcs":[[5953,6047,-6053,-6054]],"properties":{"rate":0.109}},{"type":"Polygon","id":40117,"arcs":[[5763,6026,-6055,-6056,-6057]],"properties":{"rate":0.082}},{"type":"Polygon","id":37171,"arcs":[[5879,5954,6053,-6058,-6059,-6060,-6061,5922]],"properties":{"rate":0.118}},{"type":"Polygon","id":37073,"arcs":[[5898,5821,-6062,-6063,-6064,-6065,-6066,-6067]],"properties":{"rate":0.071}},{"type":"MultiPolygon","id":37053,"arcs":[[[-6068,5871,5932,-6069,-6070]],[[-6071,-6072,-6073,5875]],[[-6074,5866,-6075,5873]]],"properties":{"rate":0.05}},{"type":"Polygon","id":37169,"arcs":[[5923,6060,-6076,-6077,5935]],"properties":{"rate":0.101}},{"type":"Polygon","id":37029,"arcs":[[6066,-6078,-6079,6068,5931,5899]],"properties":{"rate":0.071}},{"type":"Polygon","id":37185,"arcs":[[5742,5910,-6080,-6081,-6082,-6083]],"properties":{"rate":0.127}},{"type":"Polygon","id":37131,"arcs":[[-6084,5819,5904,5743,6082,-6085,-6086]],"properties":{"rate":0.107}},{"type":"Polygon","id":37091,"arcs":[[5820,6083,-6087,-6088,6061]],"properties":{"rate":0.094}},{"type":"Polygon","id":37145,"arcs":[[5730,-6089,-6090,-6091,-6092]],"properties":{"rate":0.108}},{"type":"Polygon","id":37181,"arcs":[[5909,-6093,-6094,6079]],"properties":{"rate":0.13}},{"type":"Polygon","id":37077,"arcs":[[6092,5908,5731,6091,-6095,-6096,-6097]],"properties":{"rate":0.102}},{"type":"Polygon","id":37157,"arcs":[[5936,6076,-6098,-6099,-6100,5690]],"properties":{"rate":0.117}},{"type":"Polygon","id":37033,"arcs":[[5729,5693,5990,5691,6099,-6101,-6102,6088]],"properties":{"rate":0.124}},{"type":"Polygon","id":47133,"arcs":[[6002,6006,-6103,-6104,6048]],"properties":{"rate":0.12}},{"type":"Polygon","id":47087,"arcs":[[6005,5994,-6105,-6106,6102]],"properties":{"rate":0.127}},{"type":"Polygon","id":37083,"arcs":[[6084,6081,-6107,-6108,-6109,-6110]],"properties":{"rate":0.131}},{"type":"Polygon","id":40097,"arcs":[[5771,6031,-6111,-6112,5972]],"properties":{"rate":0.081}},{"type":"Polygon","id":47019,"arcs":[[6011,6010,-6113,-6114,-6115,-6116]],"properties":{"rate":0.098}},{"type":"Polygon","id":37139,"arcs":[[6077,6065,-6117,-6118]],"properties":{"rate":0.091}},{"type":"Polygon","id":47131,"arcs":[[5986,-6119,-6120,-6121,-6122,5960]],"properties":{"rate":0.104}},{"type":"Polygon","id":40093,"arcs":[[5768,5950,-6123,-6124,-6125,6038,5779]],"properties":{"rate":0.045}},{"type":"Polygon","id":47183,"arcs":[[5852,5961,6121,-6126,-6127,-6128]],"properties":{"rate":0.13}},{"type":"Polygon","id":47095,"arcs":[[6118,5985,5929,5984,5927,-6129,-6130]],"properties":{"rate":0.107}},{"type":"Polygon","id":48421,"arcs":[[-6131,5811,5809,-6132,-6133]],"properties":{"rate":0.049}},{"type":"Polygon","id":47079,"arcs":[[5964,5853,6127,-6134,-6135,5968]],"properties":{"rate":0.131}},{"type":"Polygon","id":48195,"arcs":[[-6136,-6137,5812,6130,-6138]],"properties":{"rate":0.055}},{"type":"Polygon","id":48111,"arcs":[[5806,-6139,6131,5808]],"properties":{"rate":0.044}},{"type":"Polygon","id":48357,"arcs":[[5815,5813,6136,-6140,-6141]],"properties":{"rate":0.063}},{"type":"Polygon","id":48295,"arcs":[[6041,5816,6140,-6142,-6143]],"properties":{"rate":0.061}},{"type":"Polygon","id":5007,"arcs":[[5963,5975,-6144,-6145,-6146,-6147,5863]],"properties":{"rate":0.053}},{"type":"Polygon","id":5049,"arcs":[[5913,5734,5958,-6148,-6149,-6150]],"properties":{"rate":0.061}},{"type":"Polygon","id":5015,"arcs":[[5864,6146,-6151,-6152,-6153,5944,5833]],"properties":{"rate":0.043}},{"type":"Polygon","id":5135,"arcs":[[6149,-6154,-6155,-6156,-6157,5914]],"properties":{"rate":0.078}},{"type":"Polygon","id":5121,"arcs":[[-6158,5942,5915,6156,-6159,-6160]],"properties":{"rate":0.073}},{"type":"Polygon","id":5009,"arcs":[[5945,6152,-6161,-6162,-6163]],"properties":{"rate":0.064}},{"type":"Polygon","id":5089,"arcs":[[5956,5946,6162,-6164,-6165]],"properties":{"rate":0.112}},{"type":"Polygon","id":5005,"arcs":[[5957,6164,-6166,-6167,-6168,6147]],"properties":{"rate":0.082}},{"type":"Polygon","id":5021,"arcs":[[5943,6157,-6169,5996,5890]],"properties":{"rate":0.104}},{"type":"Polygon","id":6031,"arcs":[[5966,5393,5903,-6170,-6171]],"properties":{"rate":0.139}},{"type":"Polygon","id":47169,"arcs":[[5982,-6172,-6173,5992]],"properties":{"rate":0.12}},{"type":"Polygon","id":47021,"arcs":[[5978,5989,-6174,-6175,-6176]],"properties":{"rate":0.094}},{"type":"Polygon","id":47179,"arcs":[[6009,6037,-6177,-6178,6112]],"properties":{"rate":0.086}},{"type":"Polygon","id":37193,"arcs":[[6052,6046,-6179,-6180,-6181,-6182,-6183,6057]],"properties":{"rate":0.129}},{"type":"Polygon","id":47173,"arcs":[[6020,6033,-6184,-6185,-6186]],"properties":{"rate":0.107}},{"type":"Polygon","id":47159,"arcs":[[5993,6172,-6187,-6188,-6189,6104]],"properties":{"rate":0.128}},{"type":"Polygon","id":29155,"arcs":[[5926,6000,-6190,-6191,6128]],"properties":{"rate":0.121}},{"type":"Polygon","id":40143,"arcs":[[5774,5764,6056,-6192,-6193,-6194,6029]],"properties":{"rate":0.068}},{"type":"Polygon","id":47057,"arcs":[[6021,6185,-6195,-6196,-6197,6034,6027]],"properties":{"rate":0.135}},{"type":"Polygon","id":47037,"arcs":[[5979,6175,-6198,-6199,-6200,5980]],"properties":{"rate":0.092}},{"type":"Polygon","id":47059,"arcs":[[6176,6036,-6201,-6202,-6203,-6204]],"properties":{"rate":0.143}},{"type":"Polygon","id":37189,"arcs":[[6045,6013,-6205,-6206,6178]],"properties":{"rate":0.069}},{"type":"Polygon","id":37143,"arcs":[[6116,6064,-6207,-6208]],"properties":{"rate":0.103}},{"type":"Polygon","id":47129,"arcs":[[6051,-6209,-6210,-6211,6016]],"properties":{"rate":0.116}},{"type":"Polygon","id":47083,"arcs":[[5970,-6212,-6213,-6214,5987]],"properties":{"rate":0.116}},{"type":"Polygon","id":47005,"arcs":[[5969,6134,-6215,-6216,-6217,-6218,6211]],"properties":{"rate":0.128}},{"type":"Polygon","id":47189,"arcs":[[5981,6199,-6219,-6220,-6221,6186,6171]],"properties":{"rate":0.09}},{"type":"MultiPolygon","id":37041,"arcs":[[[6206,6063,-6222]]],"properties":{"rate":0.119}},{"type":"Polygon","id":47063,"arcs":[[6035,6196,-6223,-6224,6200]],"properties":{"rate":0.125}},{"type":"MultiPolygon","id":47043,"arcs":[[[5988,6213,-6225,-6226,-6227,6173]]],"properties":{"rate":0.098}},{"type":"Polygon","id":5087,"arcs":[[6150,6145,-6228,-6229,-6230,-6231,-6232]],"properties":{"rate":0.053}},{"type":"Polygon","id":47141,"arcs":[[6103,6105,6188,-6233,-6234,-6235,6049]],"properties":{"rate":0.097}},{"type":"Polygon","id":47001,"arcs":[[6032,6017,6210,-6236,-6237,6183]],"properties":{"rate":0.097}},{"type":"Polygon","id":37197,"arcs":[[6058,6182,-6238,-6239,-6240]],"properties":{"rate":0.093}},{"type":"Polygon","id":37011,"arcs":[[6204,6012,6115,-6241,-6242,-6243,-6244]],"properties":{"rate":0.079}},{"type":"Polygon","id":37069,"arcs":[[6080,6093,6096,-6245,-6246]],"properties":{"rate":0.097}},{"type":"Polygon","id":5055,"arcs":[[6168,6159,-6247,-6248,5997]],"properties":{"rate":0.082}},{"type":"Polygon","id":35033,"arcs":[[5828,5792,-6249,-6250,-6251,5830]],"properties":{"rate":0.131}},{"type":"Polygon","id":37067,"arcs":[[6075,6059,6239,-6252,-6253,-6254]],"properties":{"rate":0.095}},{"type":"Polygon","id":5065,"arcs":[[6148,6167,-6255,-6256,6153]],"properties":{"rate":0.077}},{"type":"Polygon","id":47171,"arcs":[[6113,6177,6203,-6257,-6258,-6259]],"properties":{"rate":0.103}},{"type":"Polygon","id":5075,"arcs":[[6158,6155,-6260,-6261,-6262,6246]],"properties":{"rate":0.079}},{"type":"Polygon","id":37081,"arcs":[[6097,6253,-6263,-6264,-6265]],"properties":{"rate":0.11}},{"type":"Polygon","id":37001,"arcs":[[6100,6098,6264,-6266,-6267,-6268]],"properties":{"rate":0.118}},{"type":"Polygon","id":40119,"arcs":[[6054,6025,-6269,-6270,-6271]],"properties":{"rate":0.063}},{"type":"Polygon","id":47085,"arcs":[[6212,6217,-6272,-6273,6224]],"properties":{"rate":0.119}},{"type":"Polygon","id":37015,"arcs":[[6086,6085,6109,-6274,-6275,-6276]],"properties":{"rate":0.105}},{"type":"Polygon","id":37135,"arcs":[[6101,6267,-6277,-6278,6089]],"properties":{"rate":0.063}},{"type":"Polygon","id":37063,"arcs":[[6090,6277,-6279,-6280,6094]],"properties":{"rate":0.08}},{"type":"Polygon","id":5143,"arcs":[[6227,6144,-6281,-6282]],"properties":{"rate":0.05}},{"type":"MultiPolygon","id":37055,"arcs":[[[-6283,-6284,-6285]],[[-6286]],[[-6287,-6288]],[[-6289,6071]]],"properties":{"rate":0.068}},{"type":"Polygon","id":47053,"arcs":[[6125,6120,-6290,-6291,-6292,-6293]],"properties":{"rate":0.157}},{"type":"MultiPolygon","id":35043,"arcs":[[[5789,5796,-6294,-6295,-6296,-6297,-6298]]],"properties":{"rate":0.09}},{"type":"Polygon","id":35021,"arcs":[[5831,6250,-6299,-6300,5803]],"properties":{"rate":0.045}},{"type":"Polygon","id":47045,"arcs":[[6289,6119,6129,6190,-6301,-6302,-6303]],"properties":{"rate":0.14}},{"type":"Polygon","id":37127,"arcs":[[6245,-6304,-6305,-6306,6106]],"properties":{"rate":0.119}},{"type":"Polygon","id":47089,"arcs":[[6195,-6307,-6308,-6309,6222]],"properties":{"rate":0.118}},{"type":"Polygon","id":47093,"arcs":[[6194,6184,6236,-6310,-6311,-6312,-6313,6306]],"properties":{"rate":0.081}},{"type":"Polygon","id":47029,"arcs":[[6201,6223,6308,-6314,-6315,-6316,-6317]],"properties":{"rate":0.122}},{"type":"Polygon","id":47035,"arcs":[[6050,6234,-6318,-6319,-6320,-6321,-6322,-6323,-6324,6208]],"properties":{"rate":0.108}},{"type":"Polygon","id":40073,"arcs":[[6039,6124,-6325,-6326,-6327]],"properties":{"rate":0.043}},{"type":"Polygon","id":40083,"arcs":[[6040,6326,-6328,-6329,6268,6024]],"properties":{"rate":0.056}},{"type":"Polygon","id":40011,"arcs":[[6123,-6330,-6331,-6332,-6333,6324]],"properties":{"rate":0.057}},{"type":"Polygon","id":40043,"arcs":[[6329,6122,5949,6044,-6334,-6335]],"properties":{"rate":0.046}},{"type":"Polygon","id":40037,"arcs":[[6055,6270,-6336,-6337,-6338,6191]],"properties":{"rate":0.081}},{"type":"Polygon","id":40145,"arcs":[[6030,6193,-6339,-6340,-6341,6110]],"properties":{"rate":0.066}},{"type":"Polygon","id":40021,"arcs":[[6111,6340,-6342,-6343,-6344,5973]],"properties":{"rate":0.056}},{"type":"Polygon","id":40001,"arcs":[[5974,6343,-6345,-6346,6280,6143]],"properties":{"rate":0.076}},{"type":"Polygon","id":37121,"arcs":[[6114,6258,-6347,-6348,6240]],"properties":{"rate":0.11}},{"type":"Polygon","id":37065,"arcs":[[6107,6305,-6349,-6350,-6351]],"properties":{"rate":0.163}},{"type":"Polygon","id":47017,"arcs":[[6133,6126,6292,-6352,-6353,-6354,6214]],"properties":{"rate":0.164}},{"type":"Polygon","id":47041,"arcs":[[6232,6187,6220,-6355,-6356,-6357]],"properties":{"rate":0.102}},{"type":"Polygon","id":5137,"arcs":[[6254,6166,-6358,-6359,-6360,-6361]],"properties":{"rate":0.066}},{"type":"Polygon","id":5101,"arcs":[[6151,6231,-6362,-6363,-6364,6160]],"properties":{"rate":0.062}},{"type":"Polygon","id":37027,"arcs":[[6205,6243,-6365,-6366,-6367,6179]],"properties":{"rate":0.152}},{"type":"Polygon","id":5129,"arcs":[[6163,6161,6363,-6368,-6369,6357,6165]],"properties":{"rate":0.059}},{"type":"Polygon","id":47149,"arcs":[[6218,6198,-6370,-6371,-6372,-6373,-6374]],"properties":{"rate":0.095}},{"type":"Polygon","id":37199,"arcs":[[6346,6257,-6375,-6376,-6377]],"properties":{"rate":0.109}},{"type":"MultiPolygon","id":47185,"arcs":[[[6233,6356,-6378,-6379,6317]]],"properties":{"rate":0.135}},{"type":"Polygon","id":37183,"arcs":[[6095,6279,-6380,-6381,-6382,6244]],"properties":{"rate":0.083}},{"type":"Polygon","id":37117,"arcs":[[6273,6108,6350,-6383,-6384,-6385]],"properties":{"rate":0.106}},{"type":"Polygon","id":37115,"arcs":[[6202,6316,-6386,-6387,6374,6256]],"properties":{"rate":0.093}},{"type":"Polygon","id":37059,"arcs":[[6251,6238,-6388,-6389,-6390,-6391]],"properties":{"rate":0.121}},{"type":"Polygon","id":48393,"arcs":[[6139,6135,-6392,-6393,-6394,-6395,6141]],"properties":{"rate":0.062}},{"type":"Polygon","id":48211,"arcs":[[6394,-6396,-6397,6042,6142]],"properties":{"rate":0.03}},{"type":"Polygon","id":48233,"arcs":[[-6398,-6399,6391,6137]],"properties":{"rate":0.08}},{"type":"Polygon","id":48205,"arcs":[[6138,5805,-6400,-6401,-6402]],"properties":{"rate":0.043}},{"type":"Polygon","id":37097,"arcs":[[6181,-6403,-6404,-6405,-6406,-6407,-6408,6388,6387,6237]],"properties":{"rate":0.121}},{"type":"Polygon","id":48341,"arcs":[[6132,6401,-6409,-6410,-6411,6397]],"properties":{"rate":0.053}},{"type":"Polygon","id":47187,"arcs":[[6197,6174,6226,-6412,-6413,-6414,-6415,6369]],"properties":{"rate":0.075}},{"type":"Polygon","id":37003,"arcs":[[6402,6180,6366,-6416]],"properties":{"rate":0.136}},{"type":"Polygon","id":47145,"arcs":[[-6417,6309,6235,6209,6323,-6418,-6419,-6420,-6421,-6422]],"properties":{"rate":0.089}},{"type":"Polygon","id":47155,"arcs":[[6307,6312,-6423,-6424,-6425,-6426,6313]],"properties":{"rate":0.092}},{"type":"Polygon","id":37057,"arcs":[[6252,6390,-6427,-6428,-6429,6262]],"properties":{"rate":0.125}},{"type":"Polygon","id":40129,"arcs":[[6043,6396,-6430,-6431,-6432,6333]],"properties":{"rate":0.045}},{"type":"Polygon","id":35031,"arcs":[[5795,5801,-6433,6293]],"properties":{"rate":0.086}},{"type":"Polygon","id":35049,"arcs":[[5791,-6434,6434,-6436,6296,-6437,-6438,-6439,6248]],"properties":{"rate":0.065}},{"type":"Polygon","id":5093,"arcs":[[6300,6189,5999,-6440,-6441,-6442,-6443,-6444,-6445,-6446]],"properties":{"rate":0.113}},{"type":"Polygon","id":37023,"arcs":[[6242,-6447,-6448,-6449,-6450,-6451,6364]],"properties":{"rate":0.141}},{"type":"Polygon","id":47033,"arcs":[[6290,6302,-6452,-6453,-6454]],"properties":{"rate":0.134}},{"type":"Polygon","id":5031,"arcs":[[5998,6247,6261,-6455,-6456,6439]],"properties":{"rate":0.059}},{"type":"Polygon","id":37177,"arcs":[[-6457,-6458,-6459]],"properties":{"rate":0.088}},{"type":"Polygon","id":47081,"arcs":[[6225,6272,-6460,-6461,-6462,6411]],"properties":{"rate":0.124}},{"type":"Polygon","id":37187,"arcs":[[-6463,6274,6384,-6464,-6465,6457]],"properties":{"rate":0.117}},{"type":"Polygon","id":35028,"arcs":[[6297,6435,6465,6433,5790]],"properties":{"rate":0.029}},{"type":"Polygon","id":47015,"arcs":[[6354,6219,6373,-6467,-6468]],"properties":{"rate":0.108}},{"type":"Polygon","id":37111,"arcs":[[6446,6241,6347,6376,-6469,-6470]],"properties":{"rate":0.141}},{"type":"Polygon","id":47097,"arcs":[[6301,6445,-6471,-6472,6451]],"properties":{"rate":0.189}},{"type":"Polygon","id":40081,"arcs":[[6269,6328,-6473,-6474,-6475,6335]],"properties":{"rate":0.067}},{"type":"Polygon","id":5063,"arcs":[[6154,6255,6360,-6476,-6477,-6478,6259]],"properties":{"rate":0.078}},{"type":"Polygon","id":37151,"arcs":[[6263,6428,-6479,-6480,-6481,6265]],"properties":{"rate":0.11}},{"type":"MultiPolygon","id":47105,"arcs":[[[6420,-6482,-6483,-6484,6310,6416]]],"properties":{"rate":0.095}},{"type":"Polygon","id":5067,"arcs":[[6477,-6485,-6486,-6487,-6488,6454,6260]],"properties":{"rate":0.092}},{"type":"Polygon","id":47009,"arcs":[[6422,6311,6483,-6489,-6490,-6491]],"properties":{"rate":0.093}},{"type":"Polygon","id":37037,"arcs":[[6276,6266,6480,-6492,-6493,-6494,6379,6278]],"properties":{"rate":0.08}},{"type":"Polygon","id":35047,"arcs":[[6249,6438,-6495,-6496,-6497,6298]],"properties":{"rate":0.078}},{"type":"Polygon","id":37195,"arcs":[[6348,6304,-6498,-6499,-6500,-6501]],"properties":{"rate":0.119}},{"type":"Polygon","id":37159,"arcs":[[6389,-6502,6407,-6503,-6504,6426]],"properties":{"rate":0.128}},{"type":"Polygon","id":40111,"arcs":[[6337,-6505,-6506,-6507,6338,6192]],"properties":{"rate":0.085}},{"type":"Polygon","id":40101,"arcs":[[6339,6506,-6508,-6509,-6510,6341]],"properties":{"rate":0.081}},{"type":"Polygon","id":47177,"arcs":[[6355,6467,-6511,-6512,-6513,-6514,6377]],"properties":{"rate":0.125}},{"type":"Polygon","id":47119,"arcs":[[6412,6461,-6515,-6516,-6517,-6518,6413]],"properties":{"rate":0.119}},{"type":"Polygon","id":47039,"arcs":[[6215,6353,-6519,-6520,-6521,-6522]],"properties":{"rate":0.142}},{"type":"Polygon","id":47135,"arcs":[[6271,6216,6521,-6523,-6524,6459]],"properties":{"rate":0.176}},{"type":"Polygon","id":37147,"arcs":[[6349,6500,-6525,-6526,-6527,-6528,-6529,-6530,6382]],"properties":{"rate":0.1}},{"type":"Polygon","id":37035,"arcs":[[6415,6365,6450,-6531,6403]],"properties":{"rate":0.136}},{"type":"Polygon","id":37021,"arcs":[[6375,6386,-6532,-6533,-6534,6468]],"properties":{"rate":0.082}},{"type":"Polygon","id":47143,"arcs":[[6417,6322,-6535,-6536,-6537]],"properties":{"rate":0.127}},{"type":"Polygon","id":47175,"arcs":[[6378,6513,-6538,-6539,6320,6539,6318]],"properties":{"rate":0.142}},{"type":"Polygon","id":47077,"arcs":[[6352,-6541,-6542,-6543,6518]],"properties":{"rate":0.181}},{"type":"Polygon","id":47075,"arcs":[[6452,6471,-6544,-6545,-6546,-6547]],"properties":{"rate":0.18}},{"type":"Polygon","id":37101,"arcs":[[6303,6381,-6548,-6549,-6550,6497]],"properties":{"rate":0.095}},{"type":"Polygon","id":40039,"arcs":[[6334,6431,-6551,-6552,-6553,6330]],"properties":{"rate":0.049}},{"type":"Polygon","id":6071,"arcs":[[5938,5481,-6554,-6555,-6556,-6557,-6558,-6559]],"properties":{"rate":0.136}},{"type":"Polygon","id":6079,"arcs":[[5902,-6560,-6561,-6562,6169]],"properties":{"rate":0.09}},{"type":"Polygon","id":6029,"arcs":[[5480,5967,6170,6561,-6563,-6564,-6565,6553]],"properties":{"rate":0.139}},{"type":"Polygon","id":47113,"arcs":[[6291,6453,6546,-6566,-6567,6540,6351]],"properties":{"rate":0.11}},{"type":"Polygon","id":5141,"arcs":[[6368,-6568,-6569,-6570,-6571,6358]],"properties":{"rate":0.091}},{"type":"Polygon","id":37087,"arcs":[[6385,6315,6314,6424,-6572,-6573,-6574,6531]],"properties":{"rate":0.085}},{"type":"Polygon","id":5047,"arcs":[[-6575,6229,-6576,-6577,-6578]],"properties":{"rate":0.059}},{"type":"Polygon","id":47007,"arcs":[[6321,6538,-6579,-6580,6534]],"properties":{"rate":0.137}},{"type":"Polygon","id":5071,"arcs":[[6574,-6581,-6582,6361,6230]],"properties":{"rate":0.061}},{"type":"Polygon","id":5033,"arcs":[[6575,6228,6281,6345,-6583,-6584]],"properties":{"rate":0.066}},{"type":"Polygon","id":47121,"arcs":[[6418,6536,-6585,-6586,-6587]],"properties":{"rate":0.136}},{"type":"Polygon","id":35037,"arcs":[[5804,6299,6496,-6588,-6589,-6590,-6591,-6592,-6593,6399]],"properties":{"rate":0.059}},{"type":"MultiPolygon","id":37013,"arcs":[[[6527,-6594,-6595,-6596]],[[6383,6529,-6597,-6598,6463]]],"properties":{"rate":0.112}},{"type":"Polygon","id":5115,"arcs":[[6362,6581,-6599,-6600,-6601,6567,6367]],"properties":{"rate":0.062}},{"type":"Polygon","id":40017,"arcs":[[6325,6332,-6602,-6603,-6604,-6605,-6606]],"properties":{"rate":0.055}},{"type":"Polygon","id":40109,"arcs":[[6327,6605,-6607,-6608,6472]],"properties":{"rate":0.061}},{"type":"Polygon","id":5023,"arcs":[[6359,6570,-6609,-6610,6475]],"properties":{"rate":0.059}},{"type":"Polygon","id":47117,"arcs":[[6370,6414,-6611,6517,-6612,-6613,-6614]],"properties":{"rate":0.163}},{"type":"Polygon","id":5111,"arcs":[[6455,6487,-6615,-6616,6440]],"properties":{"rate":0.075}},{"type":"MultiPolygon","id":37095,"arcs":[[[-6617]],[[6464,6597,-6618,6287,-6619,6458]]],"properties":{"rate":0.059}},{"type":"Polygon","id":47031,"arcs":[[6372,-6620,-6621,-6622,-6623,6510,6466]],"properties":{"rate":0.102}},{"type":"Polygon","id":47003,"arcs":[[6371,6613,-6624,-6625,6619]],"properties":{"rate":0.121}},{"type":"Polygon","id":37173,"arcs":[[6571,6423,6490,-6626,-6627,-6628]],"properties":{"rate":0.091}},{"type":"Polygon","id":47123,"arcs":[[6482,-6629,6629,-6631,-6632,-6633,-6634,6488]],"properties":{"rate":0.161}},{"type":"Polygon","id":47101,"arcs":[[6460,6523,-6635,-6636,6514]],"properties":{"rate":0.149}},{"type":"Polygon","id":37079,"arcs":[[6524,6499,-6637,-6638]],"properties":{"rate":0.102}},{"type":"MultiPolygon","id":47167,"arcs":[[[6442,-6639,-6640]],[[6470,6444,-6641,-6642,6543]]],"properties":{"rate":0.116}},{"type":"Polygon","id":47107,"arcs":[[6419,6586,-6643,-6644,6630,6644,6628,6481]],"properties":{"rate":0.13}},{"type":"Polygon","id":40135,"arcs":[[6342,6509,-6646,-6647,-6648,-6649,6582,6344]],"properties":{"rate":0.087}},{"type":"Polygon","id":40107,"arcs":[[6336,6474,-6650,-6651,-6652,-6653,6504]],"properties":{"rate":0.089}},{"type":"Polygon","id":37105,"arcs":[[6492,-6654,-6655]],"properties":{"rate":0.135}},{"type":"Polygon","id":48359,"arcs":[[6400,6592,-6656,-6657,6408]],"properties":{"rate":0.055}},{"type":"Polygon","id":48065,"arcs":[[6398,6410,-6658,-6659,-6660,6392]],"properties":{"rate":0.067}},{"type":"Polygon","id":48179,"arcs":[[6393,6659,-6661,-6662]],"properties":{"rate":0.089}},{"type":"Polygon","id":48483,"arcs":[[6395,6661,-6663,-6664,6429]],"properties":{"rate":0.056}},{"type":"Polygon","id":48375,"arcs":[[6409,6656,-6665,6657]],"properties":{"rate":0.066}},{"type":"Polygon","id":37161,"arcs":[[6447,6469,6533,-6666,-6667,-6668,-6669,-6670]],"properties":{"rate":0.143}},{"type":"Polygon","id":37191,"arcs":[[6498,6549,-6671,-6672,-6673,6636]],"properties":{"rate":0.088}},{"type":"Polygon","id":47023,"arcs":[[6541,6566,-6674,-6675,-6676]],"properties":{"rate":0.115}},{"type":"Polygon","id":37085,"arcs":[[6380,6493,6654,-6677,-6678,-6679,6547]],"properties":{"rate":0.109}},{"type":"Polygon","id":37045,"arcs":[[6448,6669,-6680,-6681,-6682,-6683]],"properties":{"rate":0.143}},{"type":"Polygon","id":37109,"arcs":[[6530,6449,6682,-6684,-6685,6404]],"properties":{"rate":0.132}},{"type":"Polygon","id":47153,"arcs":[[6578,6537,6512,-6686,-6687,-6688]],"properties":{"rate":0.128}},{"type":"Polygon","id":40091,"arcs":[[6507,6505,6652,-6689,-6690,-6691]],"properties":{"rate":0.082}},{"type":"Polygon","id":40015,"arcs":[[6331,6552,-6692,-6693,-6694,-6695,6601]],"properties":{"rate":0.061}},{"type":"Polygon","id":5145,"arcs":[[6476,6609,-6696,-6697,-6698,-6699,6484]],"properties":{"rate":0.067}},{"type":"Polygon","id":47061,"arcs":[[6685,6511,6622,-6700,-6701]],"properties":{"rate":0.13}},{"type":"Polygon","id":4025,"arcs":[[5754,-6702,-6703,-6704,-6705]],"properties":{"rate":0.095}},{"type":"Polygon","id":37099,"arcs":[[6627,-6706,-6707,-6708,-6709,6572]],"properties":{"rate":0.078}},{"type":"Polygon","id":37119,"arcs":[[6405,6684,-6710,-6711,-6712,-6713,-6714]],"properties":{"rate":0.11}},{"type":"Polygon","id":37125,"arcs":[[6491,6479,-6715,-6716,-6717,-6718,6676,6653]],"properties":{"rate":0.095}},{"type":"Polygon","id":37123,"arcs":[[6478,6427,-6719,-6720,6714]],"properties":{"rate":0.133}},{"type":"Polygon","id":37025,"arcs":[[6502,6406,6713,-6721,-6722]],"properties":{"rate":0.114}},{"type":"Polygon","id":40009,"arcs":[[6430,6663,-6723,-6724,-6725,-6726,-6727,6550]],"properties":{"rate":0.059}},{"type":"Polygon","id":37167,"arcs":[[6503,6721,-6728,-6729,6718]],"properties":{"rate":0.119}},{"type":"Polygon","id":37089,"arcs":[[6532,-6730,-6731,-6732,6665]],"properties":{"rate":0.086}},{"type":"Polygon","id":47181,"arcs":[[6634,6522,6520,-6733,-6734,-6735]],"properties":{"rate":0.129}},{"type":"Polygon","id":40133,"arcs":[[6650,-6736,-6737,-6738]],"properties":{"rate":0.092}},{"type":"Polygon","id":37075,"arcs":[[6625,6489,6633,-6739,-6740]],"properties":{"rate":0.134}},{"type":"Polygon","id":40149,"arcs":[[6551,6726,-6741,6691]],"properties":{"rate":0.063}},{"type":"Polygon","id":40125,"arcs":[[6473,6607,-6742,-6743,-6744,6735,6649]],"properties":{"rate":0.065}},{"type":"Polygon","id":5029,"arcs":[[6568,6600,-6745,-6746,-6747]],"properties":{"rate":0.065}},{"type":"Polygon","id":47099,"arcs":[[6635,6734,-6748,-6749,6515]],"properties":{"rate":0.146}},{"type":"Polygon","id":40061,"arcs":[[6645,6508,6690,-6750,-6751,-6752]],"properties":{"rate":0.084}},{"type":"Polygon","id":47065,"arcs":[[6535,6579,6687,-6753,-6754,-6755,-6756,-6757,6584]],"properties":{"rate":0.087}},{"type":"Polygon","id":47055,"arcs":[[6516,6748,-6758,-6759,-6760,6611]],"properties":{"rate":0.14}},{"type":"Polygon","id":5131,"arcs":[[6583,6648,-6761,-6762,-6763,-6764,6576]],"properties":{"rate":0.062}},{"type":"Polygon","id":5037,"arcs":[[6614,6486,-6765,-6766,-6767]],"properties":{"rate":0.071}},{"type":"Polygon","id":5147,"arcs":[[6485,6698,-6768,-6769,-6770,6764]],"properties":{"rate":0.091}},{"type":"Polygon","id":5035,"arcs":[[6615,6766,-6771,-6772,-6773,-6774,-6775,6638,6441]],"properties":{"rate":0.099}},{"type":"Polygon","id":47069,"arcs":[[6545,-6776,-6777,-6778,-6779,-6780,6673,6565]],"properties":{"rate":0.127}},{"type":"Polygon","id":37107,"arcs":[[6525,6637,6672,-6781,-6782,-6783]],"properties":{"rate":0.114}},{"type":"Polygon","id":5083,"arcs":[[6577,6763,-6784,-6785,6598,6580]],"properties":{"rate":0.077}},{"type":"Polygon","id":37175,"arcs":[[6729,6573,6708,-6786,-6787,-6788]],"properties":{"rate":0.085}},{"type":"Polygon","id":47071,"arcs":[[6519,6542,6675,-6789,-6790,-6791,-6792,6732]],"properties":{"rate":0.111}},{"type":"Polygon","id":37071,"arcs":[[6683,6681,-6793,6709]],"properties":{"rate":0.133}},{"type":"MultiPolygon","id":37049,"arcs":[[[-6794,-6795,-6796]],[[6526,6782,-6797,-6798,-6799,6593]]],"properties":{"rate":0.1}},{"type":"Polygon","id":47127,"arcs":[[6620,6624,-6800,-6801]],"properties":{"rate":0.097}},{"type":"Polygon","id":47157,"arcs":[[6640,6443,6639,6774,-6802,-6803,-6804]],"properties":{"rate":0.102}},{"type":"Polygon","id":37149,"arcs":[[6666,6731,-6805,-6806]],"properties":{"rate":0.082}},{"type":"Polygon","id":47047,"arcs":[[6544,6641,6803,-6807,-6808,6775]],"properties":{"rate":0.108}},{"type":"Polygon","id":47109,"arcs":[[6674,6779,-6809,6788]],"properties":{"rate":0.127}},{"type":"Polygon","id":40079,"arcs":[[6761,6760,6647,6646,6751,-6810,-6811,-6812,-6813,-6814]],"properties":{"rate":0.087}},{"type":"Polygon","id":40051,"arcs":[[6602,6694,-6815,-6816,-6817,-6818]],"properties":{"rate":0.074}},{"type":"Polygon","id":40027,"arcs":[[6606,6604,-6819,6741]],"properties":{"rate":0.052}},{"type":"Polygon","id":47103,"arcs":[[6623,6612,6759,-6820,-6821,-6822,6799]],"properties":{"rate":0.069}},{"type":"Polygon","id":5045,"arcs":[[6569,6746,-6823,-6824,-6825,6695,6608]],"properties":{"rate":0.06}},{"type":"Polygon","id":47051,"arcs":[[6621,6800,6821,-6826,-6827,-6828,6699]],"properties":{"rate":0.104}},{"type":"Polygon","id":47011,"arcs":[[6642,6585,6756,-6829,-6830,-6831]],"properties":{"rate":0.093}},{"type":"Polygon","id":35006,"arcs":[[6432,5800,-6832,-6833,-6834,-6835,6294]],"properties":{"rate":0.063}},{"type":"Polygon","id":40087,"arcs":[[6818,6603,6817,-6836,-6837,6742]],"properties":{"rate":0.056}},{"type":"Polygon","id":37113,"arcs":[[6705,6626,6739,-6838,-6839,-6840]],"properties":{"rate":0.092}},{"type":"MultiPolygon","id":37137,"arcs":[[[-6841,6594,6798]]],"properties":{"rate":0.101}},{"type":"Polygon","id":47115,"arcs":[[6686,6700,6827,-6842,-6843,6752]],"properties":{"rate":0.121}},{"type":"Polygon","id":37163,"arcs":[[6548,6678,-6844,-6845,-6846,-6847,6670]],"properties":{"rate":0.083}},{"type":"Polygon","id":5149,"arcs":[[6599,6784,-6848,-6849,-6850,-6851,6744]],"properties":{"rate":0.064}},{"type":"Polygon","id":40121,"arcs":[[6689,-6852,-6853,-6854,-6855,-6856,6749]],"properties":{"rate":0.065}},{"type":"Polygon","id":37039,"arcs":[[6738,6632,-6857,-6858,-6859,-6860,6837]],"properties":{"rate":0.142}},{"type":"Polygon","id":40063,"arcs":[[6651,6737,-6861,-6862,6851,6688]],"properties":{"rate":0.107}},{"type":"Polygon","id":47139,"arcs":[[6631,6643,6830,-6863,-6864,6856]],"properties":{"rate":0.114}},{"type":"Polygon","id":37051,"arcs":[[6677,6717,-6865,-6866,-6867,6843]],"properties":{"rate":0.091}},{"type":"Polygon","id":37103,"arcs":[[6796,6781,-6868,-6869,-6870,-6871,6794,-6872]],"properties":{"rate":0.109}},{"type":"Polygon","id":35001,"arcs":[[6295,6834,-6873,-6874,6436]],"properties":{"rate":0.075}},{"type":"Polygon","id":35019,"arcs":[[6495,-6875,-6876,-6877,6587]],"properties":{"rate":0.075}},{"type":"Polygon","id":45045,"arcs":[[6730,6787,-6878,-6879,-6880,-6881,6804]],"properties":{"rate":0.102}},{"type":"Polygon","id":37007,"arcs":[[6728,-6882,-6883,-6884,-6885]],"properties":{"rate":0.148}},{"type":"Polygon","id":37093,"arcs":[[6716,-6886,-6887,6864]],"properties":{"rate":0.083}},{"type":"Polygon","id":37179,"arcs":[[6727,6720,6712,-6888,-6889,6881]],"properties":{"rate":0.1}},{"type":"Polygon","id":45083,"arcs":[[-6890,6667,6805,6880,-6891,-6892]],"properties":{"rate":0.122}},{"type":"Polygon","id":37061,"arcs":[[6671,6846,-6893,-6894,6867,6780]],"properties":{"rate":0.087}},{"type":"Polygon","id":48117,"arcs":[[6655,6591,-6895,-6896,-6897,-6898]],"properties":{"rate":0.058}},{"type":"Polygon","id":45021,"arcs":[[-6899,6679,6668,6889,-6900]],"properties":{"rate":0.162}},{"type":"Polygon","id":48129,"arcs":[[6660,-6901,-6902,-6903,-6904]],"properties":{"rate":0.07}},{"type":"Polygon","id":48087,"arcs":[[6662,6903,-6905,-6906,-6907,6722]],"properties":{"rate":0.059}},{"type":"Polygon","id":48381,"arcs":[[6664,6897,-6908,-6909,-6910]],"properties":{"rate":0.051}},{"type":"Polygon","id":37153,"arcs":[[6719,6884,-6911,-6912,6715]],"properties":{"rate":0.132}},{"type":"Polygon","id":48011,"arcs":[[6658,6909,-6913,-6914,6900]],"properties":{"rate":0.051}},{"type":"Polygon","id":45091,"arcs":[[6710,6792,6680,6898,-6915,-6916,-6917]],"properties":{"rate":0.141}},{"type":"Polygon","id":37043,"arcs":[[6859,-6918,-6919,-6920,6838]],"properties":{"rate":0.108}},{"type":"Polygon","id":5123,"arcs":[[6765,6769,-6921,-6922,6770]],"properties":{"rate":0.094}},{"type":"Polygon","id":40075,"arcs":[[6740,6725,-6923,-6924,-6925,-6926,6692]],"properties":{"rate":0.062}},{"type":"MultiPolygon","id":37031,"arcs":[[[-6927]],[[-6928,6795,6870,6869,-6929]]],"properties":{"rate":0.076}},{"type":"Polygon","id":40055,"arcs":[[6724,-6930,-6931,6922]],"properties":{"rate":0.079}},{"type":"MultiPolygon","id":6083,"arcs":[[[-6932]],[[-6933]],[[-6934]],[[6560,-6935,-6936,6562]]],"properties":{"rate":0.085}},{"type":"Polygon","id":5105,"arcs":[[6822,6745,6850,-6937,-6938,-6939]],"properties":{"rate":0.056}},{"type":"Polygon","id":5127,"arcs":[[6783,6762,6813,-6940,-6941,6847]],"properties":{"rate":0.063}},{"type":"Polygon","id":5117,"arcs":[[6697,-6942,-6943,-6944,6767]],"properties":{"rate":0.067}},{"type":"Polygon","id":45077,"arcs":[[6786,-6945,-6946,6877]],"properties":{"rate":0.106}},{"type":"Polygon","id":5085,"arcs":[[6696,6824,-6947,-6948,-6949,6941]],"properties":{"rate":0.052}},{"type":"Polygon","id":45057,"arcs":[[6711,6916,-6950,-6951,-6952,-6953,6887]],"properties":{"rate":0.179}},{"type":"Polygon","id":40077,"arcs":[[6750,6855,-6954,6809]],"properties":{"rate":0.104}},{"type":"Polygon","id":45073,"arcs":[[6944,6785,6707,-6955,-6956,-6957,-6958,-6959,-6960]],"properties":{"rate":0.142}},{"type":"Polygon","id":35057,"arcs":[[6494,6437,6873,-6961,-6962,-6963,6874]],"properties":{"rate":0.088}},{"type":"Polygon","id":37165,"arcs":[[6885,6911,-6964,-6965]],"properties":{"rate":0.165}},{"type":"Polygon","id":40057,"arcs":[[6723,6906,-6966,-6967,-6968,6929]],"properties":{"rate":0.069}},{"type":"Polygon","id":5119,"arcs":[[6823,6938,-6969,-6970,-6971,6946]],"properties":{"rate":0.06}},{"type":"Polygon","id":1077,"arcs":[[-6972,6757,6747,6733,6791,-6973,-6974,-6975]],"properties":{"rate":0.105}},{"type":"Polygon","id":5095,"arcs":[[6768,6943,-6976,-6977,-6978,6920]],"properties":{"rate":0.074}},{"type":"Polygon","id":13241,"arcs":[[6954,6706,6839,6919,-6979,-6980]],"properties":{"rate":0.104}},{"type":"Polygon","id":1083,"arcs":[[6758,6971,-6981,-6982,-6983,6819]],"properties":{"rate":0.093}},{"type":"Polygon","id":28003,"arcs":[[-6984,6789,6808,6778,-6985,-6986]],"properties":{"rate":0.113}},{"type":"Polygon","id":28141,"arcs":[[-6987,6972,6790,6983,-6988,-6989,-6990]],"properties":{"rate":0.101}},{"type":"Polygon","id":28139,"arcs":[[6984,6777,-6991,-6992,-6993]],"properties":{"rate":0.125}},{"type":"Polygon","id":28033,"arcs":[[-6994,6801,6773,-6995,-6996]],"properties":{"rate":0.072}},{"type":"Polygon","id":28009,"arcs":[[6990,6776,6807,-6997,-6998]],"properties":{"rate":0.126}},{"type":"Polygon","id":28093,"arcs":[[6996,6806,6802,6993,-6999,-7000,-7001]],"properties":{"rate":0.112}},{"type":"Polygon","id":13281,"arcs":[[6918,-7002,-7003,-7004,6978]],"properties":{"rate":0.078}},{"type":"Polygon","id":1089,"arcs":[[6820,6982,-7005,-7006,-7007,-7008,6825]],"properties":{"rate":0.075}},{"type":"Polygon","id":1071,"arcs":[[-7009,6841,6826,7007,-7010,-7011,-7012]],"properties":{"rate":0.118}},{"type":"Polygon","id":13213,"arcs":[[-7013,6862,6829,-7014,-7015,-7016]],"properties":{"rate":0.123}},{"type":"Polygon","id":13111,"arcs":[[6863,7012,-7017,-7018,-7019,-7020,6857]],"properties":{"rate":0.1}},{"type":"Polygon","id":13313,"arcs":[[7013,6828,-7021,-7022,-7023]],"properties":{"rate":0.125}},{"type":"Polygon","id":13047,"arcs":[[7020,6755,-7024]],"properties":{"rate":0.08}},{"type":"Polygon","id":13291,"arcs":[[6858,7019,-7025,-7026,7001,6917]],"properties":{"rate":0.09}},{"type":"MultiPolygon","id":37133,"arcs":[[[6868,6893,-7027,-7028,6928,-7029]]],"properties":{"rate":0.083}},{"type":"Polygon","id":13083,"arcs":[[6842,7008,-7030,-7031,6753]],"properties":{"rate":0.09}},{"type":"Polygon","id":13295,"arcs":[[7023,6754,7030,-7032,-7033,-7034,-7035,7021]],"properties":{"rate":0.096}},{"type":"Polygon","id":40123,"arcs":[[6743,6836,-7036,-7037,-7038,-7039,6860,6736]],"properties":{"rate":0.051}},{"type":"Polygon","id":35061,"arcs":[[6833,-7040,6960,6872]],"properties":{"rate":0.085}},{"type":"Polygon","id":37155,"arcs":[[6865,6886,6964,-7041,-7042,-7043,-7044,-7045]],"properties":{"rate":0.115}},{"type":"Polygon","id":35009,"arcs":[[6590,-7046,-7047,-7048,6894]],"properties":{"rate":0.044}},{"type":"Polygon","id":45087,"arcs":[[6899,6891,-7049,-7050,-7051,-7052,6914]],"properties":{"rate":0.206}},{"type":"Polygon","id":5077,"arcs":[[6921,6977,-7053,-7054,6771]],"properties":{"rate":0.082}},{"type":"Polygon","id":1033,"arcs":[[6973,6986,-7055,-7056]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":6111,"arcs":[[[-7057]],[[-7058,6563,6935,-7059]]],"properties":{"rate":0.11}},{"type":"Polygon","id":28143,"arcs":[[7053,-7060,-7061,-7062,-7063,-7064,6994,6772]],"properties":{"rate":0.13}},{"type":"Polygon","id":1049,"arcs":[[7029,7011,-7065,-7066,-7067,-7068,7031]],"properties":{"rate":0.143}},{"type":"Polygon","id":37017,"arcs":[[6844,6866,7044,-7069,-7070]],"properties":{"rate":0.12}},{"type":"Polygon","id":40065,"arcs":[[6923,6930,6967,-7071,-7072,-7073]],"properties":{"rate":0.048}},{"type":"Polygon","id":5125,"arcs":[[6937,-7074,-7075,-7076,6968]],"properties":{"rate":0.058}},{"type":"Polygon","id":40031,"arcs":[[6925,-7077,-7078,-7079,6814,6693]],"properties":{"rate":0.051}},{"type":"Polygon","id":40049,"arcs":[[6835,6816,-7080,-7081,-7082,7035]],"properties":{"rate":0.059}},{"type":"Polygon","id":13123,"arcs":[[7016,7015,-7083,-7084,-7085]],"properties":{"rate":0.098}},{"type":"Polygon","id":13137,"arcs":[[6979,7003,-7086,-7087,-7088,-7089,6955]],"properties":{"rate":0.094}},{"type":"MultiPolygon","id":6037,"arcs":[[[-7090]],[[-7091]],[[6564,7057,-7092,-7093,6554]]],"properties":{"rate":0.127}},{"type":"Polygon","id":45023,"arcs":[[6915,7051,-7094,6949]],"properties":{"rate":0.211}},{"type":"Polygon","id":45007,"arcs":[[6878,6945,6959,-7095,-7096,-7097]],"properties":{"rate":0.125}},{"type":"Polygon","id":45025,"arcs":[[-7098,6882,6888,6952,-7099,-7100]],"properties":{"rate":0.168}},{"type":"Polygon","id":45069,"arcs":[[6963,6910,6883,7097,-7101,-7102,-7103,7040]],"properties":{"rate":0.202}},{"type":"Polygon","id":1079,"arcs":[[6974,7055,-7104,-7105,-7106,-7107,6980]],"properties":{"rate":0.136}},{"type":"Polygon","id":13311,"arcs":[[7085,7002,7025,-7108,-7109]],"properties":{"rate":0.095}},{"type":"Polygon","id":45059,"arcs":[[6890,6879,-7110,-7111,-7112,7048]],"properties":{"rate":0.117}},{"type":"Polygon","id":35011,"arcs":[[6588,6876,-7113,-7114,-7115]],"properties":{"rate":0.043}},{"type":"Polygon","id":28137,"arcs":[[6995,7063,-7116,-7117,6998]],"properties":{"rate":0.103}},{"type":"Polygon","id":5051,"arcs":[[6936,6849,-7118,-7119,7073]],"properties":{"rate":0.066}},{"type":"Polygon","id":40029,"arcs":[[6861,7038,-7120,-7121,6852]],"properties":{"rate":0.088}},{"type":"Polygon","id":28117,"arcs":[[6985,6992,-7122,-7123,-7124,6987]],"properties":{"rate":0.115}},{"type":"Polygon","id":48437,"arcs":[[6908,-7125,-7126,-7127,-7128,6912]],"properties":{"rate":0.067}},{"type":"Polygon","id":48045,"arcs":[[6913,7127,-7129,-7130,-7131,6901]],"properties":{"rate":0.059}},{"type":"Polygon","id":48069,"arcs":[[6907,6896,-7132,-7133,-7134,7124]],"properties":{"rate":0.053}},{"type":"Polygon","id":48191,"arcs":[[6902,7130,-7135,-7136,-7137,6904]],"properties":{"rate":0.089}},{"type":"Polygon","id":48075,"arcs":[[6905,7136,-7138,-7139,6965]],"properties":{"rate":0.064}},{"type":"Polygon","id":5097,"arcs":[[6848,6940,-7140,-7141,-7142,-7143,7117]],"properties":{"rate":0.058}},{"type":"Polygon","id":48369,"arcs":[[6895,7047,-7144,-7145,7131]],"properties":{"rate":0.048}},{"type":"Polygon","id":13187,"arcs":[[7024,7018,-7146,-7147,7107]],"properties":{"rate":0.111}},{"type":"MultiPolygon","id":37141,"arcs":[[[6892,6845,7069,-7148,-7149,-7150,-7151,7026]]],"properties":{"rate":0.108}},{"type":"Polygon","id":5113,"arcs":[[7139,6939,6812,-7152,-7153,-7154]],"properties":{"rate":0.064}},{"type":"Polygon","id":1103,"arcs":[[6981,7106,-7155,-7156,7004]],"properties":{"rate":0.104}},{"type":"Polygon","id":13257,"arcs":[[6956,7088,-7157,-7158]],"properties":{"rate":0.107}},{"type":"Polygon","id":40137,"arcs":[[6815,7078,-7159,-7160,-7161,7079]],"properties":{"rate":0.084}},{"type":"Polygon","id":40005,"arcs":[[6853,7120,-7162,-7163,-7164,-7165]],"properties":{"rate":0.084}},{"type":"Polygon","id":40127,"arcs":[[6953,6854,7164,-7166,-7167,6810]],"properties":{"rate":0.089}},{"type":"Polygon","id":5107,"arcs":[[7052,6976,-7168,-7169,-7170,-7171,7059]],"properties":{"rate":0.088}},{"type":"Polygon","id":40099,"arcs":[[7081,-7172,-7173,7036]],"properties":{"rate":0.047}},{"type":"Polygon","id":40141,"arcs":[[6924,7072,-7174,-7175,-7176,7076]],"properties":{"rate":0.056}},{"type":"Polygon","id":13129,"arcs":[[7014,7022,7034,-7177,-7178,-7179,7082]],"properties":{"rate":0.131}},{"type":"Polygon","id":45033,"arcs":[[7041,7102,-7180,-7181,-7182]],"properties":{"rate":0.172}},{"type":"Polygon","id":13085,"arcs":[[7017,7084,-7183,-7184,-7185,-7186,7145]],"properties":{"rate":0.101}},{"type":"Polygon","id":45055,"arcs":[[7098,6951,-7187,-7188,-7189,-7190,-7191]],"properties":{"rate":0.104}},{"type":"Polygon","id":35041,"arcs":[[6589,7114,-7192,-7193,-7194,-7195,7045]],"properties":{"rate":0.044}},{"type":"Polygon","id":28145,"arcs":[[6991,6997,7000,-7196,-7197,-7198,7121]],"properties":{"rate":0.088}},{"type":"Polygon","id":1095,"arcs":[[7010,7009,7006,7005,7155,-7199,-7200,-7201,7064]],"properties":{"rate":0.092}},{"type":"Polygon","id":13055,"arcs":[[7032,7067,-7202,-7203]],"properties":{"rate":0.114}},{"type":"Polygon","id":13115,"arcs":[[7033,7202,-7204,-7205,-7206,7176]],"properties":{"rate":0.111}},{"type":"Polygon","id":35053,"arcs":[[7039,6832,-7207,-7208,-7209,6961]],"properties":{"rate":0.05}},{"type":"Polygon","id":35003,"arcs":[[6831,5799,-7210,-7211,-7212,7206]],"properties":{"rate":0.081}},{"type":"Polygon","id":1059,"arcs":[[7054,6989,-7213,-7214,-7215,7103]],"properties":{"rate":0.123}},{"type":"Polygon","id":48197,"arcs":[[6966,7138,-7216,-7217,-7218,7070]],"properties":{"rate":0.072}},{"type":"Polygon","id":45039,"arcs":[[7093,7050,-7219,-7220,7186,6950]],"properties":{"rate":0.129}},{"type":"Polygon","id":5001,"arcs":[[6942,6948,-7221,-7222,-7223,7167,6975]],"properties":{"rate":0.143}},{"type":"Polygon","id":13227,"arcs":[[7083,7178,-7224,7182]],"properties":{"rate":0.108}},{"type":"Polygon","id":28071,"arcs":[[6999,7116,-7225,-7226,-7227,-7228,7195]],"properties":{"rate":0.069}},{"type":"Polygon","id":28107,"arcs":[[7115,7062,-7229,-7230,-7231,7224]],"properties":{"rate":0.119}},{"type":"Polygon","id":13119,"arcs":[[6957,7157,-7232,-7233,-7234]],"properties":{"rate":0.118}},{"type":"Polygon","id":45031,"arcs":[[7099,7190,-7235,-7236,7100]],"properties":{"rate":0.13}},{"type":"Polygon","id":45071,"arcs":[[7049,7111,-7237,-7238,-7239,-7240,7218]],"properties":{"rate":0.117}},{"type":"Polygon","id":1019,"arcs":[[7201,7066,-7241,-7242,-7243,-7244,7203]],"properties":{"rate":0.118}},{"type":"Polygon","id":28027,"arcs":[[-7245,7060,7170,-7246,-7247,-7248]],"properties":{"rate":0.111}},{"type":"Polygon","id":28119,"arcs":[[7061,7244,-7249,7228]],"properties":{"rate":0.111}},{"type":"Polygon","id":13139,"arcs":[[7108,7146,7185,-7250,-7251,-7252,-7253,7086]],"properties":{"rate":0.091}},{"type":"Polygon","id":28081,"arcs":[[7122,7197,-7254,-7255,-7256,-7257]],"properties":{"rate":0.098}},{"type":"Polygon","id":40019,"arcs":[[7080,7160,-7258,-7259,-7260,-7261,7171]],"properties":{"rate":0.057}},{"type":"Polygon","id":40069,"arcs":[[7172,7260,-7262,-7263,7161,7119,7037]],"properties":{"rate":0.07}},{"type":"Polygon","id":40033,"arcs":[[7077,7175,-7264,-7265,-7266,7158]],"properties":{"rate":0.04}},{"type":"Polygon","id":40089,"arcs":[[6811,7166,-7267,-7268,-7269,-7270,-7271,7151]],"properties":{"rate":0.116}},{"type":"Polygon","id":5059,"arcs":[[7118,7142,-7272,-7273,-7274,7074]],"properties":{"rate":0.073}},{"type":"Polygon","id":4007,"arcs":[[5755,6704,-7275,-7276,-7277,5750]],"properties":{"rate":0.109}},{"type":"Polygon","id":13147,"arcs":[[6958,7233,-7278,-7279,7094]],"properties":{"rate":0.138}},{"type":"Polygon","id":5053,"arcs":[[7075,7273,-7280,-7281,-7282,6969]],"properties":{"rate":0.057}},{"type":"Polygon","id":5069,"arcs":[[6970,7281,-7283,-7284,7220,6947]],"properties":{"rate":0.092}},{"type":"Polygon","id":13011,"arcs":[[7231,7156,7087,7252,-7285,-7286]],"properties":{"rate":0.067}},{"type":"Polygon","id":37047,"arcs":[[7068,7043,-7287,-7288,7147]],"properties":{"rate":0.125}},{"type":"Polygon","id":45001,"arcs":[[7109,7096,-7289,-7290,-7291]],"properties":{"rate":0.148}},{"type":"Polygon","id":28057,"arcs":[[7123,7256,-7292,-7293,7212,6988]],"properties":{"rate":0.096}},{"type":"Polygon","id":48487,"arcs":[[7071,7217,-7294,-7295,-7296,7173]],"properties":{"rate":0.055}},{"type":"Polygon","id":13015,"arcs":[[-7297,7177,7205,-7298,-7299,-7300]],"properties":{"rate":0.133}},{"type":"Polygon","id":13057,"arcs":[[7223,7296,-7301,-7302,-7303,7183]],"properties":{"rate":0.095}},{"type":"Polygon","id":45047,"arcs":[[7110,7290,-7304,-7305,-7306,7236]],"properties":{"rate":0.137}},{"type":"MultiPolygon","id":37129,"arcs":[[[-7307,-7308]],[[7149,-7309,-7310,7310,-7312]]],"properties":{"rate":0.091}},{"type":"Polygon","id":28115,"arcs":[[7196,7227,-7313,-7314,7253]],"properties":{"rate":0.087}},{"type":"Polygon","id":45061,"arcs":[[7234,7189,-7315,-7316]],"properties":{"rate":0.157}},{"type":"MultiPolygon","id":37019,"arcs":[[[-7317]],[[7148,7287,-7318,-7319,-7320,-7321,7308]]],"properties":{"rate":0.105}},{"type":"Polygon","id":5061,"arcs":[[7153,-7322,-7323,-7324,-7325]],"properties":{"rate":0.072}},{"type":"Polygon","id":5109,"arcs":[[7140,7324,-7326,-7327,-7328]],"properties":{"rate":0.063}},{"type":"Polygon","id":35027,"arcs":[[6875,6962,7208,-7329,-7330,-7331,7112]],"properties":{"rate":0.051}},{"type":"Polygon","id":5019,"arcs":[[7141,7327,-7332,-7333,-7334,7271]],"properties":{"rate":0.063}},{"type":"Polygon","id":13117,"arcs":[[7184,7302,-7335,-7336,7249]],"properties":{"rate":0.086}},{"type":"Polygon","id":1093,"arcs":[[7213,7292,-7337,-7338,-7339,-7340,-7341]],"properties":{"rate":0.152}},{"type":"Polygon","id":4012,"arcs":[[-7342,6557,-7343,-7344,-7345,-7346,6702]],"properties":{"rate":0.089}},{"type":"Polygon","id":48345,"arcs":[[7134,7129,-7347,-7348,-7349]],"properties":{"rate":0.053}},{"type":"Polygon","id":48101,"arcs":[[7135,7348,-7350,-7351,7215,7137]],"properties":{"rate":0.056}},{"type":"Polygon","id":1043,"arcs":[[7154,7105,-7352,-7353,-7354,7198]],"properties":{"rate":0.096}},{"type":"Polygon","id":48153,"arcs":[[7128,7126,-7355,-7356,7346]],"properties":{"rate":0.069}},{"type":"Polygon","id":48189,"arcs":[[-7357,-7358,7354,7125,7133]],"properties":{"rate":0.064}},{"type":"Polygon","id":48279,"arcs":[[7132,7144,-7359,-7360,7356]],"properties":{"rate":0.066}},{"type":"Polygon","id":45041,"arcs":[[7179,7101,7235,7315,-7361,-7362,-7363,-7364]],"properties":{"rate":0.117}},{"type":"Polygon","id":48017,"arcs":[[7143,7046,7194,-7365,7358]],"properties":{"rate":0.052}},{"type":"Polygon","id":1133,"arcs":[[7214,7340,-7366,7351,7104]],"properties":{"rate":0.175}},{"type":"MultiPolygon","id":45051,"arcs":[[[7042,7181,-7367,-7368,-7369,7317,7286]]],"properties":{"rate":0.109}},{"type":"Polygon","id":45067,"arcs":[[7180,7363,-7370,-7371,7366]],"properties":{"rate":0.21}},{"type":"Polygon","id":13157,"arcs":[[7284,7251,-7372,-7373,-7374]],"properties":{"rate":0.109}},{"type":"Polygon","id":40067,"arcs":[[7159,7265,-7375,-7376,-7377,7257]],"properties":{"rate":0.086}},{"type":"Polygon","id":13105,"arcs":[[7095,7278,-7378,-7379,-7380,-7381,-7382,7288]],"properties":{"rate":0.122}},{"type":"Polygon","id":13195,"arcs":[[7277,7232,7285,7373,-7383,-7384,7377]],"properties":{"rate":0.083}},{"type":"Polygon","id":45079,"arcs":[[7187,7219,7239,-7385,-7386,-7387]],"properties":{"rate":0.095}},{"type":"Polygon","id":1009,"arcs":[[7353,-7388,-7389,-7390,-7391,7199]],"properties":{"rate":0.099}},{"type":"Polygon","id":48155,"arcs":[[7350,-7392,-7393,-7394,7293,7216]],"properties":{"rate":0.057}},{"type":"Polygon","id":48485,"arcs":[[7174,7295,-7395,-7396,7263]],"properties":{"rate":0.081}},{"type":"Polygon","id":1055,"arcs":[[7065,7200,7390,-7397,-7398,7240]],"properties":{"rate":0.107}},{"type":"Polygon","id":45063,"arcs":[[7384,7238,-7399,-7400,-7401,-7402]],"properties":{"rate":0.083}},{"type":"Polygon","id":28161,"arcs":[[7225,7230,-7403,-7404,-7405]],"properties":{"rate":0.129}},{"type":"Polygon","id":5133,"arcs":[[7321,7152,7270,-7406]],"properties":{"rate":0.051}},{"type":"Polygon","id":45081,"arcs":[[7237,7305,-7407,-7408,7398]],"properties":{"rate":0.094}},{"type":"Polygon","id":13121,"arcs":[[7301,-7409,-7410,-7411,-7412,-7413,-7414,-7415,-7416,7334]],"properties":{"rate":0.107}},{"type":"Polygon","id":40095,"arcs":[[7261,7259,-7417,-7418,-7419]],"properties":{"rate":0.075}},{"type":"Polygon","id":5079,"arcs":[[7283,-7420,-7421,-7422,7221]],"properties":{"rate":0.082}},{"type":"Polygon","id":45085,"arcs":[[7314,7188,7386,-7423,-7424,7360]],"properties":{"rate":0.139}},{"type":"Polygon","id":13135,"arcs":[[7250,7335,7415,-7425,-7426,-7427,-7428]],"properties":{"rate":0.094}},{"type":"Polygon","id":28135,"arcs":[[7229,7248,7247,-7429,-7430,-7431,7402]],"properties":{"rate":0.099}},{"type":"Polygon","id":28013,"arcs":[[7226,7404,-7432,-7433,-7434,7312]],"properties":{"rate":0.097}},{"type":"Polygon","id":40013,"arcs":[[7162,7262,7418,-7435,-7436,-7437,-7438]],"properties":{"rate":0.052}},{"type":"Polygon","id":40023,"arcs":[[7165,7163,7437,-7439,-7440,7266]],"properties":{"rate":0.076}},{"type":"Polygon","id":5039,"arcs":[[7272,7333,-7441,-7442,-7443,7279]],"properties":{"rate":0.076}},{"type":"Polygon","id":48077,"arcs":[[7264,7395,-7444,-7445,-7446,7374]],"properties":{"rate":0.074}},{"type":"Polygon","id":13013,"arcs":[[7371,7427,-7447,-7448]],"properties":{"rate":0.111}},{"type":"Polygon","id":28011,"arcs":[[7245,7169,-7449,-7450,-7451,-7452]],"properties":{"rate":0.09}},{"type":"Polygon","id":5041,"arcs":[[7168,7222,7421,-7453,-7454,7448]],"properties":{"rate":0.099}},{"type":"Polygon","id":13233,"arcs":[[7204,7243,-7455,-7456,-7457,7297]],"properties":{"rate":0.108}},{"type":"Polygon","id":28095,"arcs":[[7255,-7458,-7459,-7460,-7461,7336,7291]],"properties":{"rate":0.137}},{"type":"Polygon","id":35005,"arcs":[[7113,7330,-7462,-7463,-7464,7191]],"properties":{"rate":0.068}},{"type":"Polygon","id":13067,"arcs":[[7300,7299,-7465,-7466,7408]],"properties":{"rate":0.096}},{"type":"Polygon","id":6065,"arcs":[[7342,6556,-7467,-7468,-7469]],"properties":{"rate":0.147}},{"type":"Polygon","id":13223,"arcs":[[7298,7456,-7470,-7471,-7472,7464]],"properties":{"rate":0.107}},{"type":"Polygon","id":45065,"arcs":[[7289,7381,-7473,-7474,-7475,7303]],"properties":{"rate":0.157}},{"type":"Polygon","id":28017,"arcs":[[7313,7433,-7476,-7477,7457,7254]],"properties":{"rate":0.132}},{"type":"Polygon","id":40085,"arcs":[[7258,7376,-7478,-7479,-7480,7416]],"properties":{"rate":0.054}},{"type":"Polygon","id":5025,"arcs":[[7282,7280,7442,-7481,-7482,-7483,7419]],"properties":{"rate":0.06}},{"type":"Polygon","id":1075,"arcs":[[7337,7460,-7484,-7485,-7486]],"properties":{"rate":0.148}},{"type":"Polygon","id":13221,"arcs":[[7383,-7487,-7488,-7489,-7490,-7491,7378]],"properties":{"rate":0.082}},{"type":"Polygon","id":4013,"arcs":[[6703,7345,-7492,-7493,-7494,7274]],"properties":{"rate":0.085}},{"type":"Polygon","id":13059,"arcs":[[7382,7372,-7495,7486]],"properties":{"rate":0.07}},{"type":"Polygon","id":5057,"arcs":[[7325,7323,-7496,-7497,-7498,-7499]],"properties":{"rate":0.086}},{"type":"Polygon","id":1127,"arcs":[[7365,7339,-7500,-7501,-7502,7387,7352]],"properties":{"rate":0.119}},{"type":"Polygon","id":13317,"arcs":[[7379,7490,-7503,-7504,-7505,-7506]],"properties":{"rate":0.117}},{"type":"Polygon","id":48337,"arcs":[[7375,7445,-7507,-7508,-7509,7477]],"properties":{"rate":0.078}},{"type":"Polygon","id":1115,"arcs":[[7396,7389,-7510,-7511,-7512,-7513]],"properties":{"rate":0.107}},{"type":"Polygon","id":28133,"arcs":[[7246,7451,-7514,-7515,-7516,7428]],"properties":{"rate":0.118}},{"type":"Polygon","id":13181,"arcs":[[7380,7505,-7517,-7518,7472]],"properties":{"rate":0.103}},{"type":"Polygon","id":45037,"arcs":[[7406,7304,7474,-7519,-7520,-7521]],"properties":{"rate":0.107}},{"type":"Polygon","id":13089,"arcs":[[7414,-7522,-7523,-7524,7424]],"properties":{"rate":0.107}},{"type":"Polygon","id":1015,"arcs":[[-7525,7241,7397,7512,-7526]],"properties":{"rate":0.108}},{"type":"Polygon","id":13219,"arcs":[[7494,7447,-7527,-7528,-7529,7487]],"properties":{"rate":0.062}},{"type":"Polygon","id":1029,"arcs":[[7242,7524,-7530,-7531,-7532,-7533,-7534,7454]],"properties":{"rate":0.104}},{"type":"Polygon","id":48387,"arcs":[[7439,-7535,-7536,-7537,-7538,-7539,-7540,7267]],"properties":{"rate":0.105}},{"type":"Polygon","id":5099,"arcs":[[7326,7498,-7541,-7542,-7543,7331]],"properties":{"rate":0.087}},{"type":"Polygon","id":48181,"arcs":[[7417,7479,-7544,-7545,-7546,-7547,7434]],"properties":{"rate":0.087}},{"type":"Polygon","id":48097,"arcs":[[7478,7508,-7548,-7549,7543]],"properties":{"rate":0.065}},{"type":"Polygon","id":5081,"arcs":[[7405,7269,-7550,-7551,7495,7322]],"properties":{"rate":0.056}},{"type":"Polygon","id":45027,"arcs":[[7361,7423,-7552,-7553,-7554,-7555]],"properties":{"rate":0.161}},{"type":"MultiPolygon","id":6059,"arcs":[[[7092,-7556,-7557,7466,6555]]],"properties":{"rate":0.094}},{"type":"Polygon","id":48277,"arcs":[[7438,7436,-7558,-7559,7534]],"properties":{"rate":0.078}},{"type":"Polygon","id":13297,"arcs":[[7446,7426,-7560,-7561,-7562,7526]],"properties":{"rate":0.11}},{"type":"Polygon","id":1057,"arcs":[[7338,7485,-7563,-7564,7499]],"properties":{"rate":0.128}},{"type":"Polygon","id":13143,"arcs":[[7469,7455,7533,-7565]],"properties":{"rate":0.113}},{"type":"Polygon","id":28043,"arcs":[[7403,7430,-7566,-7567,-7568,-7569,7431]],"properties":{"rate":0.11}},{"type":"Polygon","id":45089,"arcs":[[7362,7554,-7570,-7571,7369]],"properties":{"rate":0.154}},{"type":"Polygon","id":48147,"arcs":[[7435,7546,-7572,-7573,-7574,7557]],"properties":{"rate":0.09}},{"type":"Polygon","id":45017,"arcs":[[7385,7401,-7575,7551,7422]],"properties":{"rate":0.144}},{"type":"Polygon","id":45003,"arcs":[[7399,7407,7520,-7576,-7577,-7578,-7579]],"properties":{"rate":0.094}},{"type":"Polygon","id":1073,"arcs":[[7388,7501,-7580,-7581,-7582,7509]],"properties":{"rate":0.107}},{"type":"Polygon","id":48269,"arcs":[[7349,-7583,-7584,-7585,7391]],"properties":{"rate":0.054}},{"type":"Polygon","id":48275,"arcs":[[7392,7584,-7586,-7587]],"properties":{"rate":0.064}},{"type":"Polygon","id":48009,"arcs":[[7394,-7588,-7589,-7590,7443]],"properties":{"rate":0.065}},{"type":"Polygon","id":48125,"arcs":[[7347,-7591,-7592,7582]],"properties":{"rate":0.06}},{"type":"Polygon","id":48107,"arcs":[[7355,-7593,-7594,7590]],"properties":{"rate":0.07}},{"type":"Polygon","id":48023,"arcs":[[7294,7393,7586,-7595,7587]],"properties":{"rate":0.051}},{"type":"Polygon","id":48303,"arcs":[[7357,-7596,-7597,7592]],"properties":{"rate":0.057}},{"type":"Polygon","id":48079,"arcs":[[7364,7193,-7598,-7599,-7600]],"properties":{"rate":0.072}},{"type":"Polygon","id":48219,"arcs":[[7359,7599,-7601,7595]],"properties":{"rate":0.07}},{"type":"Polygon","id":5103,"arcs":[[7332,7542,-7602,-7603,-7604,7440]],"properties":{"rate":0.071}},{"type":"Polygon","id":13211,"arcs":[[7527,7561,-7605,-7606,-7607,-7608]],"properties":{"rate":0.098}},{"type":"Polygon","id":13045,"arcs":[[-7609,7470,7564,7532,-7610,-7611,-7612,7410]],"properties":{"rate":0.108}},{"type":"Polygon","id":28083,"arcs":[[7429,7515,-7613,-7614,-7615,7565]],"properties":{"rate":0.116}},{"type":"Polygon","id":28025,"arcs":[[7476,-7616,-7617,-7618,7458]],"properties":{"rate":0.178}},{"type":"Polygon","id":13097,"arcs":[[7465,7471,7608,7409]],"properties":{"rate":0.114}},{"type":"Polygon","id":5013,"arcs":[[7480,7441,7603,-7619,-7620]],"properties":{"rate":0.062}},{"type":"Polygon","id":5043,"arcs":[[7420,7482,-7621,-7622,-7623,7452]],"properties":{"rate":0.091}},{"type":"Polygon","id":13247,"arcs":[[-7624,7559,7425,7523,-7625]],"properties":{"rate":0.12}},{"type":"MultiPolygon","id":45043,"arcs":[[[7370,7570,-7626,-7627,-7628,7367]]],"properties":{"rate":0.125}},{"type":"Polygon","id":4011,"arcs":[[5798,-7629,-7630,-7631,-7632,7209]],"properties":{"rate":0.215}},{"type":"Polygon","id":13133,"arcs":[[7488,7528,7607,-7633,-7634,-7635]],"properties":{"rate":0.111}},{"type":"Polygon","id":28087,"arcs":[[7459,7617,-7636,-7637,-7638,7483]],"properties":{"rate":0.102}},{"type":"Polygon","id":13217,"arcs":[[7560,7623,-7639,-7640,-7641,7604]],"properties":{"rate":0.126}},{"type":"Polygon","id":28155,"arcs":[[7475,7432,7568,-7642,-7643,-7644,7615]],"properties":{"rate":0.135}},{"type":"Polygon","id":13265,"arcs":[[7502,7489,7634,-7645,-7646]],"properties":{"rate":0.124}},{"type":"Polygon","id":48037,"arcs":[[7268,7539,-7647,-7648,-7649,7549]],"properties":{"rate":0.078}},{"type":"Polygon","id":45075,"arcs":[[7574,7400,7578,-7650,-7651,-7652,-7653,-7654,7552]],"properties":{"rate":0.187}},{"type":"Polygon","id":5011,"arcs":[[7481,7619,-7655,-7656,7620]],"properties":{"rate":0.078}},{"type":"Polygon","id":13073,"arcs":[[7517,-7657,-7658,7518,7473]],"properties":{"rate":0.07}},{"type":"Polygon","id":1121,"arcs":[[7511,-7659,-7660,-7661,7529,7525]],"properties":{"rate":0.136}},{"type":"Polygon","id":28097,"arcs":[[7567,-7662,-7663,-7664,7641]],"properties":{"rate":0.127}},{"type":"Polygon","id":28015,"arcs":[[7566,7614,-7665,-7666,7661]],"properties":{"rate":0.098}},{"type":"Polygon","id":13189,"arcs":[[7504,-7667,-7668,-7669,7656,7516]],"properties":{"rate":0.121}},{"type":"Polygon","id":4009,"arcs":[[5797,5751,7276,-7670,-7671,-7672,7628]],"properties":{"rate":0.144}},{"type":"Polygon","id":13063,"arcs":[[7413,-7673,-7674,-7675,7521]],"properties":{"rate":0.123}},{"type":"Polygon","id":13151,"arcs":[[7522,7674,-7676,-7677,7638,7624]],"properties":{"rate":0.104}},{"type":"Polygon","id":5091,"arcs":[[7496,7550,7648,-7678,-7679,-7680,-7681]],"properties":{"rate":0.045}},{"type":"Polygon","id":13301,"arcs":[[7666,7503,7645,-7682,-7683,-7684]],"properties":{"rate":0.188}},{"type":"Polygon","id":1125,"arcs":[[7563,-7685,-7686,-7687,-7688,7579,7500]],"properties":{"rate":0.09}},{"type":"Polygon","id":35025,"arcs":[[7192,7463,-7689,-7690,-7691,-7692,-7693,-7694,7597]],"properties":{"rate":0.083}},{"type":"Polygon","id":28105,"arcs":[[7616,7643,-7695,-7696,-7697,7635]],"properties":{"rate":0.08}},{"type":"Polygon","id":5017,"arcs":[[7453,7622,-7698,-7699,-7700,-7701,-7702,-7703,7449]],"properties":{"rate":0.096}},{"type":"Polygon","id":13113,"arcs":[[7672,7412,-7704,-7705]],"properties":{"rate":0.084}},{"type":"Polygon","id":1117,"arcs":[[7510,7581,-7706,-7707,-7708,7658]],"properties":{"rate":0.076}},{"type":"Polygon","id":13245,"arcs":[[7575,7519,7657,7668,-7709,-7710]],"properties":{"rate":0.103}},{"type":"Polygon","id":1107,"arcs":[[7484,7637,-7711,-7712,-7713,7684,7562]],"properties":{"rate":0.13}},{"type":"Polygon","id":28019,"arcs":[[7642,7663,-7714,-7715,7694]],"properties":{"rate":0.113}},{"type":"Polygon","id":28151,"arcs":[[7450,7702,-7716,-7717,-7718,7513]],"properties":{"rate":0.113}},{"type":"Polygon","id":13159,"arcs":[[7605,7640,-7719,-7720,-7721,-7722]],"properties":{"rate":0.127}},{"type":"Polygon","id":13077,"arcs":[[7411,7611,-7723,-7724,-7725,-7726,7703]],"properties":{"rate":0.1}},{"type":"Polygon","id":45015,"arcs":[[7569,7553,7653,-7727,-7728,-7729,-7730,7625]],"properties":{"rate":0.107}},{"type":"MultiPolygon","id":6073,"arcs":[[[7467,7556,-7731,-7732]]],"properties":{"rate":0.102}},{"type":"Polygon","id":1111,"arcs":[[7531,-7733,-7734,-7735,-7736,-7737,7609]],"properties":{"rate":0.151}},{"type":"Polygon","id":1027,"arcs":[[7530,7660,-7738,-7739,7732]],"properties":{"rate":0.159}},{"type":"Polygon","id":48119,"arcs":[[7558,7573,-7740,-7741,-7742,7535]],"properties":{"rate":0.084}},{"type":"Polygon","id":45011,"arcs":[[7649,7577,-7743,-7744,-7745]],"properties":{"rate":0.19}},{"type":"Polygon","id":13237,"arcs":[[7632,7606,7721,-7746,-7747,-7748]],"properties":{"rate":0.104}},{"type":"Polygon","id":35051,"arcs":[[7207,7211,-7749,-7750,-7751,-7752,7328]],"properties":{"rate":0.048}},{"type":"Polygon","id":5073,"arcs":[[7497,7680,-7753,-7754,-7755,7540]],"properties":{"rate":0.086}},{"type":"Polygon","id":13141,"arcs":[[7644,7633,7747,-7756,-7757,-7758,7681]],"properties":{"rate":0.177}},{"type":"Polygon","id":4027,"arcs":[[7344,-7759,-7760,-7761,7491]],"properties":{"rate":0.242}},{"type":"Polygon","id":4021,"arcs":[[7493,-7762,7669,7275]],"properties":{"rate":0.118}},{"type":"Polygon","id":48237,"arcs":[[7444,7589,-7763,-7764,-7765,-7766,7506]],"properties":{"rate":0.064}},{"type":"Polygon","id":5027,"arcs":[[7541,7754,-7767,-7768,-7769,7601]],"properties":{"rate":0.081}},{"type":"Polygon","id":13035,"arcs":[[7639,7676,-7770,-7771,-7772,7718]],"properties":{"rate":0.127}},{"type":"Polygon","id":45009,"arcs":[[7650,7744,-7773,-7774]],"properties":{"rate":0.181}},{"type":"Polygon","id":6025,"arcs":[[7343,7468,7731,-7775,7758]],"properties":{"rate":0.301}},{"type":"Polygon","id":48497,"arcs":[[7507,7765,-7776,-7777,-7778,7547]],"properties":{"rate":0.096}},{"type":"Polygon","id":48121,"arcs":[[7544,7548,7777,-7779,-7780,-7781]],"properties":{"rate":0.077}},{"type":"Polygon","id":13149,"arcs":[[7610,7736,-7782,7722]],"properties":{"rate":0.124}},{"type":"Polygon","id":48231,"arcs":[[-7783,7739,7572,-7784,-7785,-7786,-7787,-7788]],"properties":{"rate":0.085}},{"type":"Polygon","id":48085,"arcs":[[7545,7780,-7789,-7790,7783,7571]],"properties":{"rate":0.078}},{"type":"Polygon","id":48263,"arcs":[[7591,-7791,-7792,-7793,-7794]],"properties":{"rate":0.062}},{"type":"Polygon","id":48433,"arcs":[[7583,7793,-7795,-7796,-7797]],"properties":{"rate":0.048}},{"type":"Polygon","id":48449,"arcs":[[7537,-7798,-7799,-7800]],"properties":{"rate":0.077}},{"type":"Polygon","id":48169,"arcs":[[7593,-7801,-7802,-7803,7790]],"properties":{"rate":0.057}},{"type":"Polygon","id":48447,"arcs":[[7594,-7804,-7805,-7806,-7807]],"properties":{"rate":0.056}},{"type":"Polygon","id":48503,"arcs":[[7588,7806,-7808,-7809,7762]],"properties":{"rate":0.064}},{"type":"Polygon","id":48207,"arcs":[[7585,7796,-7810,-7811,7803]],"properties":{"rate":0.052}},{"type":"Polygon","id":5003,"arcs":[[7621,7655,-7812,-7813,7697]],"properties":{"rate":0.091}},{"type":"Polygon","id":48305,"arcs":[[7596,-7814,-7815,-7816,7800]],"properties":{"rate":0.068}},{"type":"Polygon","id":35035,"arcs":[[7329,7751,-7817,-7818,-7819,-7820,-7821,7461]],"properties":{"rate":0.068}},{"type":"Polygon","id":48501,"arcs":[[7598,7693,-7822,-7823]],"properties":{"rate":0.071}},{"type":"Polygon","id":48445,"arcs":[[7600,7822,-7824,-7825,7813]],"properties":{"rate":0.077}},{"type":"Polygon","id":48159,"arcs":[[7536,7741,-7826,-7827,-7828,7797]],"properties":{"rate":0.073}},{"type":"Polygon","id":5139,"arcs":[[7602,7768,-7829,-7830,7811,7654,7618]],"properties":{"rate":0.095}},{"type":"Polygon","id":48223,"arcs":[[7740,7782,-7831,-7832,7825]],"properties":{"rate":0.065}},{"type":"Polygon","id":48343,"arcs":[[7538,7799,-7833,-7834,-7835,-7836,7646]],"properties":{"rate":0.156}},{"type":"Polygon","id":28051,"arcs":[[7613,-7837,-7838,-7839,7664]],"properties":{"rate":0.166}},{"type":"Polygon","id":13255,"arcs":[[7675,7673,7704,7725,-7840,-7841,-7842,7769]],"properties":{"rate":0.154}},{"type":"Polygon","id":45035,"arcs":[[7652,-7843,-7844,7726]],"properties":{"rate":0.103}},{"type":"Polygon","id":28053,"arcs":[[7514,7717,-7845,-7846,7836,7612]],"properties":{"rate":0.102}},{"type":"Polygon","id":13125,"arcs":[[7682,7757,-7847,-7848]],"properties":{"rate":0.111}},{"type":"Polygon","id":13163,"arcs":[[7708,7667,7683,7847,-7849,-7850,-7851,-7852]],"properties":{"rate":0.149}},{"type":"Polygon","id":48067,"arcs":[[7647,7835,-7853,-7854,7677]],"properties":{"rate":0.125}},{"type":"Polygon","id":13033,"arcs":[[7709,7851,-7855,-7856,-7857,-7858,7742,7576]],"properties":{"rate":0.122}},{"type":"Polygon","id":28103,"arcs":[[7636,7696,-7859,-7860,-7861,7710]],"properties":{"rate":0.176}},{"type":"Polygon","id":28159,"arcs":[[7695,7714,-7862,-7863,-7864,7858]],"properties":{"rate":0.151}},{"type":"Polygon","id":28007,"arcs":[[7713,7662,7665,7838,-7865,-7866,7861]],"properties":{"rate":0.118}},{"type":"Polygon","id":1007,"arcs":[[7705,7580,7687,-7867,-7868,-7869]],"properties":{"rate":0.121}},{"type":"Polygon","id":13303,"arcs":[[7756,-7870,-7871,-7872,7848,7846]],"properties":{"rate":0.14}},{"type":"Polygon","id":13199,"arcs":[[7724,-7873,-7874,-7875,-7876,-7877,7839]],"properties":{"rate":0.132}},{"type":"Polygon","id":13285,"arcs":[[7723,7781,7735,-7878,-7879,7872]],"properties":{"rate":0.129}},{"type":"Polygon","id":35017,"arcs":[[7210,7631,-7880,-7881,7748]],"properties":{"rate":0.123}},{"type":"Polygon","id":13231,"arcs":[[7840,7876,-7882,-7883]],"properties":{"rate":0.118}},{"type":"Polygon","id":13171,"arcs":[[7770,7841,7882,-7884,-7885]],"properties":{"rate":0.153}},{"type":"Polygon","id":13207,"arcs":[[7771,7884,-7886,-7887,-7888,-7889,7719]],"properties":{"rate":0.102}},{"type":"Polygon","id":13009,"arcs":[[7746,-7890,-7891,7869,7755]],"properties":{"rate":0.116}},{"type":"Polygon","id":13169,"arcs":[[7745,7720,7888,-7892,-7893,-7894,7889]],"properties":{"rate":0.086}},{"type":"MultiPolygon","id":45029,"arcs":[[[7651,7773,-7895,-7896,-7897,-7898,7842]]],"properties":{"rate":0.142}},{"type":"Polygon","id":45005,"arcs":[[7743,7857,-7899,-7900,7772]],"properties":{"rate":0.225}},{"type":"Polygon","id":1063,"arcs":[[7685,7712,-7901,-7902,-7903]],"properties":{"rate":0.147}},{"type":"Polygon","id":1017,"arcs":[[7734,-7904,-7905,-7906,7877]],"properties":{"rate":0.186}},{"type":"Polygon","id":1123,"arcs":[[7733,7738,-7907,-7908,-7909,-7910,7903]],"properties":{"rate":0.137}},{"type":"Polygon","id":1037,"arcs":[[7737,7659,7707,-7911,-7912,7906]],"properties":{"rate":0.14}},{"type":"Polygon","id":28125,"arcs":[[7716,-7913,-7914,7844]],"properties":{"rate":0.09}},{"type":"Polygon","id":48063,"arcs":[[7798,7827,-7915,-7916,7832]],"properties":{"rate":0.096}},{"type":"Polygon","id":1021,"arcs":[[7706,7868,-7917,-7918,-7919,-7920,7910]],"properties":{"rate":0.099}},{"type":"Polygon","id":35013,"arcs":[[7816,7750,-7921,-7922,-7923]],"properties":{"rate":0.069}},{"type":"Polygon","id":13251,"arcs":[[7898,7856,-7924,-7925,-7926,-7927]],"properties":{"rate":0.137}},{"type":"Polygon","id":45049,"arcs":[[7894,7899,7926,-7928,-7929,-7930]],"properties":{"rate":0.161}},{"type":"Polygon","id":28163,"arcs":[[7837,7845,7913,-7931,-7932,-7933,-7934]],"properties":{"rate":0.105}},{"type":"Polygon","id":22017,"arcs":[[-7935,7678,7853,-7936,-7937,-7938,-7939,-7940]],"properties":{"rate":0.079}},{"type":"Polygon","id":22015,"arcs":[[7752,7679,7934,-7941,-7942,-7943]],"properties":{"rate":0.064}},{"type":"Polygon","id":22119,"arcs":[[-7944,7766,7753,7942,-7945]],"properties":{"rate":0.091}},{"type":"Polygon","id":22027,"arcs":[[-7946,7828,7767,7943,-7947,-7948]],"properties":{"rate":0.103}},{"type":"Polygon","id":22111,"arcs":[[-7949,7829,7945,-7950,-7951]],"properties":{"rate":0.122}},{"type":"Polygon","id":48499,"arcs":[[7914,7826,7831,-7952,-7953,-7954,-7955]],"properties":{"rate":0.084}},{"type":"Polygon","id":28055,"arcs":[[7715,7701,-7956,-7957,7930,7912]],"properties":{"rate":0.092}},{"type":"Polygon","id":13319,"arcs":[[7890,7893,-7958,-7959,-7960,7870]],"properties":{"rate":0.107}},{"type":"Polygon","id":22067,"arcs":[[7812,7948,-7961,-7962,-7963,7698]],"properties":{"rate":0.151}},{"type":"Polygon","id":1065,"arcs":[[7686,7902,-7964,-7965,7866]],"properties":{"rate":0.127}},{"type":"Polygon","id":22123,"arcs":[[7699,7962,-7966,-7967]],"properties":{"rate":0.17}},{"type":"Polygon","id":48363,"arcs":[[7763,7808,-7968,-7969,-7970,-7971,-7972]],"properties":{"rate":0.091}},{"type":"Polygon","id":22035,"arcs":[[7955,7700,7966,-7973,-7974,-7975]],"properties":{"rate":0.142}},{"type":"Polygon","id":48367,"arcs":[[7775,7764,7971,-7976,-7977,-7978]],"properties":{"rate":0.084}},{"type":"Polygon","id":13293,"arcs":[[7881,7875,-7979,-7980,-7981,7885,7883]],"properties":{"rate":0.133}},{"type":"Polygon","id":1119,"arcs":[[7900,7711,7860,-7982,-7983,-7984,-7985]],"properties":{"rate":0.139}},{"type":"Polygon","id":48439,"arcs":[[7977,-7986,-7987,-7988,7778,7776]],"properties":{"rate":0.082}},{"type":"Polygon","id":48113,"arcs":[[7779,7987,-7989,-7990,-7991,7788]],"properties":{"rate":0.087}},{"type":"Polygon","id":48397,"arcs":[[7789,7990,-7992,7784]],"properties":{"rate":0.078}},{"type":"Polygon","id":48379,"arcs":[[7830,7787,-7993,7951]],"properties":{"rate":0.085}},{"type":"Polygon","id":48415,"arcs":[[7791,7802,-7994,-7995,-7996]],"properties":{"rate":0.072}},{"type":"Polygon","id":35015,"arcs":[[7462,7820,-7997,-7998,-7999,7688]],"properties":{"rate":0.06}},{"type":"Polygon","id":48151,"arcs":[[7792,7995,-8000,-8001,7794]],"properties":{"rate":0.064}},{"type":"Polygon","id":48033,"arcs":[[7801,7815,-8002,-8003,-8004,7993]],"properties":{"rate":0.062}},{"type":"Polygon","id":48115,"arcs":[[7814,7824,-8005,-8006,8001]],"properties":{"rate":0.087}},{"type":"Polygon","id":48165,"arcs":[[7821,7692,-8007,-8008,8004,7823]],"properties":{"rate":0.068}},{"type":"Polygon","id":48253,"arcs":[[7795,8000,-8009,-8010,-8011,7809]],"properties":{"rate":0.082}},{"type":"Polygon","id":48417,"arcs":[[7804,7810,8010,-8012,-8013,-8014]],"properties":{"rate":0.043}},{"type":"Polygon","id":48429,"arcs":[[7807,7805,8013,-8015,7967]],"properties":{"rate":0.069}},{"type":"Polygon","id":13165,"arcs":[[7855,-8016,-8017,7923]],"properties":{"rate":0.196}},{"type":"Polygon","id":13021,"arcs":[[7891,7887,-8018,-8019,-8020]],"properties":{"rate":0.1}},{"type":"Polygon","id":28099,"arcs":[[7862,-8021,-8022,-8023]],"properties":{"rate":0.084}},{"type":"Polygon","id":28079,"arcs":[[7865,-8024,-8025,-8026,8020]],"properties":{"rate":0.087}},{"type":"Polygon","id":28069,"arcs":[[7859,7863,8022,-8027,7981]],"properties":{"rate":0.103}},{"type":"Polygon","id":48459,"arcs":[[7915,7954,-8028,-8029,-8030,-8031,7833]],"properties":{"rate":0.081}},{"type":"Polygon","id":13289,"arcs":[[7957,7892,8019,-8032,-8033]],"properties":{"rate":0.114}},{"type":"Polygon","id":13263,"arcs":[[7978,7874,-8034,-8035,-8036,-8037,-8038]],"properties":{"rate":0.098}},{"type":"Polygon","id":48315,"arcs":[[7852,7834,8030,-8039,7935]],"properties":{"rate":0.118}},{"type":"Polygon","id":28089,"arcs":[[7864,7933,-8040,-8041,-8042,8023]],"properties":{"rate":0.063}},{"type":"Polygon","id":1105,"arcs":[[7867,7964,-8043,-8044,7916]],"properties":{"rate":0.198}},{"type":"Polygon","id":13145,"arcs":[[7873,7878,7905,-8045,-8046,8033]],"properties":{"rate":0.072}},{"type":"Polygon","id":13079,"arcs":[[7886,7980,-8047,-8048,-8049,8017]],"properties":{"rate":0.095}},{"type":"Polygon","id":48257,"arcs":[[7785,7991,7989,-8050,-8051,-8052]],"properties":{"rate":0.088}},{"type":"Polygon","id":13107,"arcs":[[7850,-8053,-8054,-8055,-8056,-8057,-8058,8015,7854]],"properties":{"rate":0.103}},{"type":"Polygon","id":48467,"arcs":[[7786,8051,-8059,-8060,7952,7992]],"properties":{"rate":0.074}},{"type":"Polygon","id":13167,"arcs":[[7849,7871,7959,-8061,8052]],"properties":{"rate":0.119}},{"type":"Polygon","id":48203,"arcs":[[8038,8029,-8062,-8063,-8064,7936]],"properties":{"rate":0.087}},{"type":"Polygon","id":35023,"arcs":[[7879,7630,-8065,-8066,-8067]],"properties":{"rate":0.076}},{"type":"Polygon","id":1051,"arcs":[[7907,7911,7919,-8068,-8069,-8070]],"properties":{"rate":0.09}},{"type":"Polygon","id":22061,"arcs":[[7949,7947,-8071,-8072,-8073]],"properties":{"rate":0.078}},{"type":"MultiPolygon","id":45053,"arcs":[[[7928,-8074,-8075,-8076,-8077,-8078,-8079,-8080,-8081,-8082,-8083]]],"properties":{"rate":0.107}},{"type":"Polygon","id":13269,"arcs":[[7979,8037,-8084,-8085,-8086,-8087,8046]],"properties":{"rate":0.13}},{"type":"Polygon","id":1081,"arcs":[[7904,7909,-8088,-8089,-8090,8044]],"properties":{"rate":0.086}},{"type":"Polygon","id":1047,"arcs":[[7917,8043,-8091,-8092,-8093,-8094]],"properties":{"rate":0.211}},{"type":"Polygon","id":22073,"arcs":[[7960,7950,8072,-8095,-8096,-8097]],"properties":{"rate":0.076}},{"type":"Polygon","id":13175,"arcs":[[-8098,8060,7958,-8099,-8100,-8101]],"properties":{"rate":0.108}},{"type":"Polygon","id":1001,"arcs":[[7918,8093,-8102,-8103,8067]],"properties":{"rate":0.097}},{"type":"MultiPolygon","id":45013,"arcs":[[[-8104]],[[-8105]],[[-8106,8076]],[[-8107]],[[-8108]],[[7895,7929,8082,-8109]]],"properties":{"rate":0.087}},{"type":"Polygon","id":13225,"arcs":[[-8110,8047,8086,-8111]],"properties":{"rate":0.102}},{"type":"Polygon","id":13153,"arcs":[[8018,8048,8109,-8112,-8113,-8114,-8115,8031]],"properties":{"rate":0.073}},{"type":"Polygon","id":48423,"arcs":[[7953,8059,-8116,-8117,-8118,-8119,8027]],"properties":{"rate":0.083}},{"type":"Polygon","id":22083,"arcs":[[7965,7961,8096,-8120,-8121,-8122,7972]],"properties":{"rate":0.107}},{"type":"Polygon","id":48183,"arcs":[[8028,8118,-8123,8061]],"properties":{"rate":0.08}},{"type":"Polygon","id":13031,"arcs":[[7924,8016,8057,-8124,-8125,-8126,-8127]],"properties":{"rate":0.09}},{"type":"Polygon","id":28123,"arcs":[[8041,-8128,-8129,-8130,8024]],"properties":{"rate":0.059}},{"type":"Polygon","id":28149,"arcs":[[7931,7956,7974,-8131,-8132,-8133,-8134,-8135,-8136]],"properties":{"rate":0.091}},{"type":"Polygon","id":13215,"arcs":[[8045,8089,-8137,-8138,8034]],"properties":{"rate":0.092}},{"type":"Polygon","id":35029,"arcs":[[7749,7880,8066,-8139,7920]],"properties":{"rate":0.134}},{"type":"Polygon","id":13103,"arcs":[[7927,7925,8126,-8140,-8141,8073]],"properties":{"rate":0.079}},{"type":"Polygon","id":1087,"arcs":[[8087,7908,8069,-8142,-8143,-8144]],"properties":{"rate":0.114}},{"type":"Polygon","id":28121,"arcs":[[8040,-8145,-8146,-8147,8127]],"properties":{"rate":0.056}},{"type":"Polygon","id":22013,"arcs":[[7946,7944,7941,-8148,-8149,-8150,-8151,8070]],"properties":{"rate":0.105}},{"type":"Polygon","id":13023,"arcs":[[8098,8032,8114,-8152,-8153]],"properties":{"rate":0.097}},{"type":"Polygon","id":28075,"arcs":[[8026,-8154,-8155,-8156,7982]],"properties":{"rate":0.087}},{"type":"Polygon","id":28101,"arcs":[[8021,8025,8129,-8157,8153]],"properties":{"rate":0.079}},{"type":"Polygon","id":28049,"arcs":[[8039,7932,8135,-8158,-8159,8144]],"properties":{"rate":0.079}},{"type":"MultiPolygon","id":22065,"arcs":[[[8130,7973,8121,-8160,-8161]]],"properties":{"rate":0.093}},{"type":"Polygon","id":13197,"arcs":[[8083,8036,-8162,-8163,-8164,-8165,-8166]],"properties":{"rate":0.099}},{"type":"Polygon","id":13043,"arcs":[[8123,8056,-8167,-8168]],"properties":{"rate":0.093}},{"type":"Polygon","id":48221,"arcs":[[7975,7970,-8169,-8170,-8171]],"properties":{"rate":0.076}},{"type":"Polygon","id":48251,"arcs":[[7985,7976,8170,-8172,-8173,-8174,-8175]],"properties":{"rate":0.091}},{"type":"Polygon","id":48139,"arcs":[[7986,8174,-8176,-8177,-8178,8049,7988]],"properties":{"rate":0.086}},{"type":"Polygon","id":1091,"arcs":[[7901,7984,-8179,-8180,-8181,8090,8042,7963]],"properties":{"rate":0.148}},{"type":"Polygon","id":13053,"arcs":[[8035,8137,-8182,-8183,8161]],"properties":{"rate":0.146}},{"type":"Polygon","id":48227,"arcs":[[8002,-8184,-8185,-8186,-8187]],"properties":{"rate":0.075}},{"type":"Polygon","id":48335,"arcs":[[7994,8003,8186,-8188,-8189,-8190]],"properties":{"rate":0.087}},{"type":"Polygon","id":48353,"arcs":[[7999,8189,-8191,-8192,-8193]],"properties":{"rate":0.064}},{"type":"Polygon","id":48317,"arcs":[[8005,8007,-8194,-8195,-8196,8183]],"properties":{"rate":0.05}},{"type":"Polygon","id":48003,"arcs":[[8006,7691,-8197,-8198,-8199,8193]],"properties":{"rate":0.076}},{"type":"Polygon","id":13193,"arcs":[[8085,-8200,-8201,-8202,8111,8110]],"properties":{"rate":0.13}},{"type":"Polygon","id":48441,"arcs":[[8008,8192,-8203,-8204,-8205]],"properties":{"rate":0.061}},{"type":"Polygon","id":48133,"arcs":[[8014,8012,-8206,-8207,-8208,-8209,7968]],"properties":{"rate":0.084}},{"type":"Polygon","id":48143,"arcs":[[8208,-8210,-8211,-8212,-8213,8168,7969]],"properties":{"rate":0.071}},{"type":"Polygon","id":48059,"arcs":[[8011,8009,8204,-8214,-8215,8205]],"properties":{"rate":0.063}},{"type":"Polygon","id":4019,"arcs":[[7761,7492,7760,-8216,-8217,-8218,7670]],"properties":{"rate":0.084}},{"type":"Polygon","id":13283,"arcs":[[8053,8097,-8219,-8220,-8221]],"properties":{"rate":0.119}},{"type":"Polygon","id":1113,"arcs":[[8088,8143,-8222,-8223,-8224,8181,8136]],"properties":{"rate":0.126}},{"type":"Polygon","id":1101,"arcs":[[8068,8102,-8225,-8226,-8227,-8228,8141]],"properties":{"rate":0.102}},{"type":"Polygon","id":22049,"arcs":[[8071,8150,-8229,-8230,8094]],"properties":{"rate":0.078}},{"type":"Polygon","id":13091,"arcs":[[8099,8152,-8231,-8232,-8233,-8234]],"properties":{"rate":0.112}},{"type":"Polygon","id":13249,"arcs":[[8084,8165,-8235,8199]],"properties":{"rate":0.138}},{"type":"Polygon","id":4003,"arcs":[[7671,8217,-8236,-8237,8064,7629]],"properties":{"rate":0.074}},{"type":"Polygon","id":1085,"arcs":[[8101,8092,-8238,-8239,-8240,8224]],"properties":{"rate":0.185}},{"type":"Polygon","id":48401,"arcs":[[8062,8122,8117,-8241,-8242,-8243,-8244]],"properties":{"rate":0.091}},{"type":"Polygon","id":22041,"arcs":[[8120,-8245,-8246,-8247,8159]],"properties":{"rate":0.113}},{"type":"Polygon","id":13235,"arcs":[[8113,-8248,-8249,8230,8151]],"properties":{"rate":0.071}},{"type":"Polygon","id":48365,"arcs":[[8063,8243,-8250,-8251,7937]],"properties":{"rate":0.075}},{"type":"Polygon","id":48213,"arcs":[[8050,8177,-8252,-8253,-8254,-8255,8115,8058]],"properties":{"rate":0.085}},{"type":"Polygon","id":13209,"arcs":[[-8256,-8221,8220,8219,-8257,-8258]],"properties":{"rate":0.085}},{"type":"Polygon","id":13279,"arcs":[[8220,8255,-8259,-8260,-8261,8054]],"properties":{"rate":0.098}},{"type":"Polygon","id":22031,"arcs":[[7938,8250,-8262,-8263,-8264,-8265]],"properties":{"rate":0.09}},{"type":"Polygon","id":48349,"arcs":[[8251,8176,-8266,-8267,-8268]],"properties":{"rate":0.084}},{"type":"Polygon","id":48425,"arcs":[[8169,8212,-8269,8171]],"properties":{"rate":0.073}},{"type":"Polygon","id":13267,"arcs":[[8166,8055,8260,-8270,-8271,-8272,-8273,-8274]],"properties":{"rate":0.087}},{"type":"Polygon","id":1023,"arcs":[[8178,7983,8155,-8275,-8276,-8277,-8278]],"properties":{"rate":0.127}},{"type":"Polygon","id":13309,"arcs":[[8218,8100,8233,-8279,-8280,8256]],"properties":{"rate":0.091}},{"type":"Polygon","id":1011,"arcs":[[8142,8227,-8281,-8282,8221]],"properties":{"rate":0.164}},{"type":"Polygon","id":13093,"arcs":[[8112,8201,-8283,-8284,-8285,8247]],"properties":{"rate":0.101}},{"type":"Polygon","id":13109,"arcs":[[8167,8273,-8286,-8287,8124]],"properties":{"rate":0.089}},{"type":"Polygon","id":22021,"arcs":[[8095,8229,-8288,-8289,-8290,8244,8119]],"properties":{"rate":0.107}},{"type":"Polygon","id":1131,"arcs":[[8180,-8291,-8292,-8293,8237,8091]],"properties":{"rate":0.256}},{"type":"Polygon","id":48217,"arcs":[[8175,8173,-8294,-8295,-8296,8265]],"properties":{"rate":0.085}},{"type":"Polygon","id":48093,"arcs":[[8209,8207,-8297,-8298,-8299]],"properties":{"rate":0.061}},{"type":"Polygon","id":22107,"arcs":[[8160,8246,-8300,-8301,-8302,-8303,-8304,8133,8304,8131]],"properties":{"rate":0.135}},{"type":"MultiPolygon","id":13029,"arcs":[[[8139,8125,8286,-8306,-8307,-8308]]],"properties":{"rate":0.081}},{"type":"Polygon","id":22081,"arcs":[[7939,8264,-8309,8147,7940]],"properties":{"rate":0.096}},{"type":"MultiPolygon","id":13051,"arcs":[[[-8310]],[[-8311]],[[-8312]],[[8074,8140,8307,-8313]]],"properties":{"rate":0.085}},{"type":"Polygon","id":13307,"arcs":[[8163,-8314,-8315,-8316,-8317]],"properties":{"rate":0.091}},{"type":"Polygon","id":13259,"arcs":[[8162,8182,8223,-8318,-8319,-8320,8313]],"properties":{"rate":0.107}},{"type":"Polygon","id":13261,"arcs":[[8200,8234,8164,8316,-8321,-8322,-8323,8282]],"properties":{"rate":0.129}},{"type":"Polygon","id":28023,"arcs":[[8154,-8324,-8325,8274]],"properties":{"rate":0.1}},{"type":"Polygon","id":28021,"arcs":[[8134,8303,-8326,-8327,8157]],"properties":{"rate":0.15}},{"type":"Polygon","id":28061,"arcs":[[8156,-8328,-8329,-8330,8323]],"properties":{"rate":0.102}},{"type":"Polygon","id":28129,"arcs":[[8128,8146,-8331,-8332,-8333,8327]],"properties":{"rate":0.082}},{"type":"Polygon","id":48035,"arcs":[[8268,8211,-8334,-8335,-8336,8293,8172]],"properties":{"rate":0.086}},{"type":"Polygon","id":13271,"arcs":[[8278,8232,-8337,-8338,-8339,-8340]],"properties":{"rate":0.162}},{"type":"Polygon","id":22127,"arcs":[[8149,-8341,-8342,-8343,8287,8228]],"properties":{"rate":0.091}},{"type":"Polygon","id":22069,"arcs":[[8148,8308,8263,-8344,-8345,-8346,-8347,8340]],"properties":{"rate":0.084}},{"type":"Polygon","id":1005,"arcs":[[8222,8281,-8348,-8349,-8350,-8351,-8352,8317]],"properties":{"rate":0.134}},{"type":"Polygon","id":48073,"arcs":[[8116,8254,-8353,-8354,-8355,-8356,8240]],"properties":{"rate":0.097}},{"type":"Polygon","id":13315,"arcs":[[8248,8284,-8357,-8358,-8359,8336,8231]],"properties":{"rate":0.116}},{"type":"MultiPolygon","id":13179,"arcs":[[[-8360]],[[-8361]],[[-8362,8305,8285,8272,-8363,-8364,-8365]]],"properties":{"rate":0.085}},{"type":"Polygon","id":48431,"arcs":[[8185,-8366,-8367,-8368,-8369,8187]],"properties":{"rate":0.046}},{"type":"Polygon","id":48173,"arcs":[[8184,8195,-8370,-8371,8365]],"properties":{"rate":0.052}},{"type":"Polygon","id":48329,"arcs":[[8194,8198,-8372,-8373,8369]],"properties":{"rate":0.062}},{"type":"Polygon","id":48135,"arcs":[[8197,-8374,-8375,-8376,-8377,8371]],"properties":{"rate":0.092}},{"type":"Polygon","id":48495,"arcs":[[8196,7690,-8378,-8379,8373]],"properties":{"rate":0.09}},{"type":"Polygon","id":48081,"arcs":[[8188,8368,-8380,-8381,8190]],"properties":{"rate":0.086}},{"type":"Polygon","id":48001,"arcs":[[8352,8253,-8382,-8383,-8384]],"properties":{"rate":0.094}},{"type":"Polygon","id":48083,"arcs":[[8203,-8385,-8386,-8387,-8388,8213]],"properties":{"rate":0.069}},{"type":"Polygon","id":48399,"arcs":[[8202,8191,8380,-8389,-8390,8384]],"properties":{"rate":0.101}},{"type":"Polygon","id":48049,"arcs":[[8206,8214,8387,-8391,-8392,-8393,8296]],"properties":{"rate":0.072}},{"type":"Polygon","id":1109,"arcs":[[8280,8226,-8394,-8395,-8396,8347]],"properties":{"rate":0.087}},{"type":"Polygon","id":1041,"arcs":[[8225,8239,-8397,-8398,-8399,8393]],"properties":{"rate":0.097}},{"type":"Polygon","id":28029,"arcs":[[8158,8326,-8400,-8401,-8402,-8403]],"properties":{"rate":0.099}},{"type":"Polygon","id":28127,"arcs":[[8145,8402,-8404,-8405,-8406,8330]],"properties":{"rate":0.082}},{"type":"Polygon","id":13081,"arcs":[[8283,8322,-8407,-8408,-8409,8356]],"properties":{"rate":0.121}},{"type":"Polygon","id":48193,"arcs":[[-8410,-8411,8333,8210,8298,-8412]],"properties":{"rate":0.06}},{"type":"Polygon","id":13183,"arcs":[[8362,8271,-8413,-8414]],"properties":{"rate":0.059}},{"type":"Polygon","id":48161,"arcs":[[8381,8252,8267,-8415,-8416]],"properties":{"rate":0.067}},{"type":"Polygon","id":48109,"arcs":[[7996,7819,-8417,-8418,-8419]],"properties":{"rate":0.045}},{"type":"Polygon","id":48229,"arcs":[[8416,7818,-8420,-8421,-8422]],"properties":{"rate":0.065}},{"type":"Polygon","id":48141,"arcs":[[8419,7817,7922,-8423]],"properties":{"rate":0.098}},{"type":"Polygon","id":48301,"arcs":[[8377,7689,7998,-8424,-8425]],"properties":{"rate":0.115}},{"type":"Polygon","id":48389,"arcs":[[8423,7997,8418,-8426,-8427,-8428]],"properties":{"rate":0.14}},{"type":"Polygon","id":13239,"arcs":[[8318,8351,-8429,-8430]],"properties":{"rate":0.118}},{"type":"Polygon","id":1025,"arcs":[[8179,8277,-8431,-8432,-8433,8290]],"properties":{"rate":0.17}},{"type":"Polygon","id":48419,"arcs":[[8261,8249,8242,-8434,-8435,-8436,-8437]],"properties":{"rate":0.081}},{"type":"Polygon","id":22025,"arcs":[[8245,8289,-8438,-8439,-8440,8299]],"properties":{"rate":0.103}},{"type":"Polygon","id":13161,"arcs":[[8258,8257,8279,8339,-8441,-8442,-8443]],"properties":{"rate":0.135}},{"type":"Polygon","id":13273,"arcs":[[8320,8315,-8444,-8445,-8446,-8447]],"properties":{"rate":0.116}},{"type":"Polygon","id":13001,"arcs":[[8259,8442,-8448,-8449,-8450,8269]],"properties":{"rate":0.097}},{"type":"Polygon","id":1013,"arcs":[[8238,8292,-8451,-8452,-8453,8396]],"properties":{"rate":0.167}},{"type":"Polygon","id":13243,"arcs":[[8319,8429,-8454,-8455,8443,8314]],"properties":{"rate":0.13}},{"type":"Polygon","id":22059,"arcs":[[8288,8342,-8456,-8457,-8458,8437]],"properties":{"rate":0.073}},{"type":"Polygon","id":13177,"arcs":[[8321,8446,-8459,-8460,8406]],"properties":{"rate":0.079}},{"type":"Polygon","id":28153,"arcs":[[-8461,8275,8324,8329,-8462,-8463,-8464]],"properties":{"rate":0.094}},{"type":"Polygon","id":28063,"arcs":[[8325,8302,-8465,-8466,-8467,8399]],"properties":{"rate":0.155}},{"type":"Polygon","id":48309,"arcs":[[-8468,-8469,-8470,8294,8335,-8471]],"properties":{"rate":0.071}},{"type":"Polygon","id":13287,"arcs":[[8357,8408,-8472,-8473,-8474,-8475]],"properties":{"rate":0.13}},{"type":"Polygon","id":13017,"arcs":[[8358,8474,-8476,-8477,8337]],"properties":{"rate":0.153}},{"type":"Polygon","id":13321,"arcs":[[8459,-8478,-8479,-8480,-8481,8471,8407]],"properties":{"rate":0.108}},{"type":"Polygon","id":48347,"arcs":[[8241,8355,-8482,-8483,8433]],"properties":{"rate":0.07}},{"type":"Polygon","id":22085,"arcs":[[8262,8436,-8484,-8485,-8486,8343]],"properties":{"rate":0.081}},{"type":"Polygon","id":13305,"arcs":[[8449,-8487,-8488,-8489,-8490,8412,8270]],"properties":{"rate":0.117}},{"type":"Polygon","id":1099,"arcs":[[8291,8432,-8491,-8492,-8493,8450]],"properties":{"rate":0.187}},{"type":"Polygon","id":28067,"arcs":[[8461,8328,8332,-8494,-8495,-8496]],"properties":{"rate":0.071}},{"type":"Polygon","id":48293,"arcs":[[-8497,-8498,8414,8266,8295,8469,-8499]],"properties":{"rate":0.072}},{"type":"Polygon","id":13069,"arcs":[[8440,8338,8476,-8500,-8501,-8502,-8503,-8504]],"properties":{"rate":0.168}},{"type":"Polygon","id":22043,"arcs":[[8341,8346,-8505,8455]],"properties":{"rate":0.082}},{"type":"Polygon","id":28031,"arcs":[[8331,8405,-8506,-8507,-8508,8493]],"properties":{"rate":0.077}},{"type":"Polygon","id":13061,"arcs":[[8428,8350,-8509,-8510,-8511,8453]],"properties":{"rate":0.082}},{"type":"Polygon","id":1067,"arcs":[[8349,-8512,-8513,-8514,8508]],"properties":{"rate":0.099}},{"type":"Polygon","id":28065,"arcs":[[8505,8404,-8515,-8516,-8517]],"properties":{"rate":0.106}},{"type":"Polygon","id":13155,"arcs":[[8475,8473,-8518,-8519,8499]],"properties":{"rate":0.145}},{"type":"Polygon","id":22029,"arcs":[[8439,-8520,-8521,-8522,-8523,-8524,-8525,8300]],"properties":{"rate":0.113}},{"type":"Polygon","id":28077,"arcs":[[8514,8403,8401,-8526,-8527,-8528]],"properties":{"rate":0.102}},{"type":"Polygon","id":1035,"arcs":[[8451,8492,-8529,-8530]],"properties":{"rate":0.195}},{"type":"Polygon","id":28001,"arcs":[[8464,8301,8524,-8531,-8532]],"properties":{"rate":0.08}},{"type":"Polygon","id":4023,"arcs":[[8216,-8533,8235]],"properties":{"rate":0.172}},{"type":"Polygon","id":48333,"arcs":[[8411,8297,8392,-8534,-8535]],"properties":{"rate":0.06}},{"type":"Polygon","id":28085,"arcs":[[8525,8400,8466,-8536,-8537,-8538,-8539]],"properties":{"rate":0.088}},{"type":"Polygon","id":13005,"arcs":[[8447,8441,8503,-8540,-8541]],"properties":{"rate":0.085}},{"type":"Polygon","id":48099,"arcs":[[-8542,8470,8334,8410,-8543]],"properties":{"rate":0.087}},{"type":"Polygon","id":48451,"arcs":[[8379,8367,-8544,-8545,-8546,-8547,8388]],"properties":{"rate":0.07}},{"type":"Polygon","id":1129,"arcs":[[8276,8460,-8548,-8549,-8550,8430]],"properties":{"rate":0.151}},{"type":"MultiPolygon","id":13191,"arcs":[[[-8551]],[[8363,8413,8489,-8552,-8553]]],"properties":{"rate":0.096}},{"type":"Polygon","id":48289,"arcs":[[8382,8415,8497,-8554,-8555,-8556]],"properties":{"rate":0.079}},{"type":"Polygon","id":48461,"arcs":[[8372,8376,-8557,-8558,-8559]],"properties":{"rate":0.056}},{"type":"Polygon","id":48103,"arcs":[[8375,-8560,-8561,-8562,8556]],"properties":{"rate":0.095}},{"type":"Polygon","id":48405,"arcs":[[8434,8482,-8563,-8564,-8565]],"properties":{"rate":0.108}},{"type":"Polygon","id":48383,"arcs":[[8370,8558,-8566,-8567,8543,8366]],"properties":{"rate":0.058}},{"type":"Polygon","id":48475,"arcs":[[8427,-8568,8559,8374,8378,8424]],"properties":{"rate":0.085}},{"type":"Polygon","id":13095,"arcs":[[8458,8445,-8569,-8570,-8571,8477]],"properties":{"rate":0.111}},{"type":"Polygon","id":13037,"arcs":[[8454,8510,-8572,-8573,8568,8444]],"properties":{"rate":0.111}},{"type":"Polygon","id":1045,"arcs":[[8348,8395,-8574,-8575,-8576,8511]],"properties":{"rate":0.093}},{"type":"Polygon","id":1031,"arcs":[[8573,8394,8398,-8577,-8578]],"properties":{"rate":0.085}},{"type":"Polygon","id":28037,"arcs":[[8465,8531,-8579,-8580,8535]],"properties":{"rate":0.09}},{"type":"Polygon","id":48403,"arcs":[[8435,8564,-8581,-8582,8483]],"properties":{"rate":0.159}},{"type":"Polygon","id":13277,"arcs":[[8472,8480,-8583,-8584,-8585,8517]],"properties":{"rate":0.106}},{"type":"Polygon","id":48225,"arcs":[[8353,8383,8555,-8586,-8587,-8588,-8589]],"properties":{"rate":0.103}},{"type":"Polygon","id":48095,"arcs":[[8389,8546,-8590,-8591,8385]],"properties":{"rate":0.082}},{"type":"Polygon","id":13229,"arcs":[[8448,8540,-8592,-8593,8486]],"properties":{"rate":0.093}},{"type":"Polygon","id":1039,"arcs":[[8397,8452,8529,-8594,-8595,-8596,-8597,8576]],"properties":{"rate":0.101}},{"type":"Polygon","id":48235,"arcs":[[8544,8566,-8598,-8599]],"properties":{"rate":0.054}},{"type":"Polygon","id":48005,"arcs":[[8481,8354,8588,-8600,-8601,-8602,-8603,8562]],"properties":{"rate":0.089}},{"type":"Polygon","id":13099,"arcs":[[8509,8513,-8604,-8605,-8606,-8607,8571]],"properties":{"rate":0.105}},{"type":"Polygon","id":48145,"arcs":[[-8608,8498,8468,-8609,-8610]],"properties":{"rate":0.095}},{"type":"Polygon","id":22079,"arcs":[[8504,8345,-8611,-8612,-8613,-8614,8456]],"properties":{"rate":0.069}},{"type":"Polygon","id":48307,"arcs":[[8386,8590,-8615,-8616,-8617,8390]],"properties":{"rate":0.091}},{"type":"Polygon","id":48411,"arcs":[[8391,8616,-8618,-8619,-8620,-8621,8533]],"properties":{"rate":0.078}},{"type":"Polygon","id":13019,"arcs":[[8518,8584,-8622,-8623,-8624,-8625,8500]],"properties":{"rate":0.124}},{"type":"Polygon","id":13299,"arcs":[[8539,8502,-8626,-8627,-8628,-8629,-8630,8591]],"properties":{"rate":0.107}},{"type":"Polygon","id":48281,"arcs":[[8542,8409,8534,8620,-8631,-8632]],"properties":{"rate":0.061}},{"type":"MultiPolygon","id":13127,"arcs":[[[-8633,8633]],[[8551,8488,-8635,-8636,-8637,8637,-8639]]],"properties":{"rate":0.082}},{"type":"Polygon","id":13007,"arcs":[[8572,8606,-8640,-8641,-8642,8569]],"properties":{"rate":0.091}},{"type":"Polygon","id":13205,"arcs":[[8570,8641,-8643,-8644,-8645,-8646,8478]],"properties":{"rate":0.104}},{"type":"Polygon","id":28041,"arcs":[[8463,-8647,-8648,-8649,8547]],"properties":{"rate":0.099}},{"type":"Polygon","id":28035,"arcs":[[8494,8507,-8650,-8651,-8652,-8653]],"properties":{"rate":0.077}},{"type":"Polygon","id":28073,"arcs":[[8516,-8654,-8655,8649,8506]],"properties":{"rate":0.066}},{"type":"Polygon","id":28111,"arcs":[[8495,8652,-8656,-8657,8646,8462]],"properties":{"rate":0.104}},{"type":"Polygon","id":28091,"arcs":[[8515,8527,-8658,-8659,-8660,8653]],"properties":{"rate":0.101}},{"type":"Polygon","id":13003,"arcs":[[8501,8624,-8661,-8662,8625]],"properties":{"rate":0.126}},{"type":"Polygon","id":48455,"arcs":[[8599,8587,-8663,-8664,-8665]],"properties":{"rate":0.088}},{"type":"Polygon","id":48371,"arcs":[[8567,8426,-8666,-8667,-8668,-8669,8560]],"properties":{"rate":0.117}},{"type":"Polygon","id":13025,"arcs":[[8487,8592,8629,-8670,-8671,8634]],"properties":{"rate":0.116}},{"type":"Polygon","id":28157,"arcs":[[8530,8523,-8672,-8673,-8674,8578]],"properties":{"rate":0.101}},{"type":"Polygon","id":22115,"arcs":[[8344,8485,-8675,-8676,-8677,8610]],"properties":{"rate":0.067}},{"type":"Polygon","id":48395,"arcs":[[8553,8496,8607,-8678,-8679,-8680]],"properties":{"rate":0.087}},{"type":"Polygon","id":13075,"arcs":[[8621,8583,-8681,-8682,-8683]],"properties":{"rate":0.119}},{"type":"Polygon","id":28005,"arcs":[[8579,8673,-8684,-8685,-8686,-8687,8536]],"properties":{"rate":0.086}},{"type":"Polygon","id":28113,"arcs":[[8537,8686,-8688,-8689,-8690]],"properties":{"rate":0.098}},{"type":"Polygon","id":28147,"arcs":[[8526,8538,8689,-8691,8657]],"properties":{"rate":0.103}},{"type":"Polygon","id":22009,"arcs":[[8457,8613,-8692,-8693,-8694,-8695,8519,8438]],"properties":{"rate":0.081}},{"type":"Polygon","id":13071,"arcs":[[8479,8645,-8696,-8697,8680,8582]],"properties":{"rate":0.09}},{"type":"Polygon","id":48027,"arcs":[[8467,8541,8631,-8698,-8699,-8700,8608]],"properties":{"rate":0.071}},{"type":"MultiPolygon","id":1003,"arcs":[[[8431,8549,-8701,-8702,-8703,-8704,-8705,-8706,8490]]],"properties":{"rate":0.091}},{"type":"Polygon","id":1069,"arcs":[[8512,8575,-8707,-8708,-8709,8603]],"properties":{"rate":0.089}},{"type":"Polygon","id":1053,"arcs":[[8528,8491,8705,-8710,-8711,-8712,8593]],"properties":{"rate":0.129}},{"type":"Polygon","id":13201,"arcs":[[8605,-8713,-8714,8639]],"properties":{"rate":0.087}},{"type":"Polygon","id":1061,"arcs":[[8706,8574,8577,8596,-8715,-8716,-8717]],"properties":{"rate":0.1}},{"type":"Polygon","id":48351,"arcs":[[8674,8484,8581,-8718,-8719,-8720,-8721]],"properties":{"rate":0.124}},{"type":"Polygon","id":13065,"arcs":[[8661,-8722,-8723,-8724,-8725,8626]],"properties":{"rate":0.11}},{"type":"Polygon","id":13173,"arcs":[[8660,8623,-8726,-8727,8721]],"properties":{"rate":0.084}},{"type":"MultiPolygon","id":1097,"arcs":[[[8700,8548,8648,-8728,-8729,-8730]]],"properties":{"rate":0.111}},{"type":"MultiPolygon","id":13039,"arcs":[[[-8731]],[[8635,8670,-8732,-8733,-8734]]],"properties":{"rate":0.091}},{"type":"Polygon","id":48241,"arcs":[[8717,8580,8563,8602,-8735,-8736,-8737]],"properties":{"rate":0.119}},{"type":"Polygon","id":48373,"arcs":[[8600,8664,-8738,-8739,-8740,-8741]],"properties":{"rate":0.103}},{"type":"Polygon","id":48331,"arcs":[[8677,8609,8699,-8742,-8743,-8744]],"properties":{"rate":0.102}},{"type":"Polygon","id":48243,"arcs":[[-8745,8665,8425,8417,8421,-8746]],"properties":{"rate":0.056}},{"type":"Polygon","id":48313,"arcs":[[8585,8554,-8747,-8748,-8749]],"properties":{"rate":0.087}},{"type":"Polygon","id":48327,"arcs":[[8589,-8750,-8751,-8752,8614]],"properties":{"rate":0.09}},{"type":"Polygon","id":48413,"arcs":[[8545,8598,-8753,-8754,8749]],"properties":{"rate":0.111}},{"type":"Polygon","id":48105,"arcs":[[8561,8668,-8755,-8756,-8757,8752,8597,8565,8557]],"properties":{"rate":0.097}},{"type":"Polygon","id":13087,"arcs":[[8713,-8758,-8759,-8760,8642,8640]],"properties":{"rate":0.127}},{"type":"Polygon","id":13131,"arcs":[[8643,8759,-8761,-8762,-8763]],"properties":{"rate":0.098}},{"type":"MultiPolygon","id":13027,"arcs":[[[8681,8696,-8764,-8765,-8766,-8767]]],"properties":{"rate":0.087}},{"type":"Polygon","id":13275,"arcs":[[8644,8762,-8768,-8769,8763,8695]],"properties":{"rate":0.093}},{"type":"Polygon","id":13253,"arcs":[[8712,8604,8708,-8770,-8771,8757]],"properties":{"rate":0.107}},{"type":"Polygon","id":13049,"arcs":[[8731,8669,8628,-8772,-8773]],"properties":{"rate":0.106}},{"type":"Polygon","id":48457,"arcs":[[8601,8740,-8774,8734]],"properties":{"rate":0.105}},{"type":"Polygon","id":48471,"arcs":[[8662,8586,8748,-8775,-8776,-8777]],"properties":{"rate":0.078}},{"type":"MultiPolygon","id":22125,"arcs":[[[-8778,8671,8522,-8779,-8780]],[[8520,8694,-8781]]],"properties":{"rate":0.082}},{"type":"Polygon","id":48053,"arcs":[[8630,8619,-8782,-8783,-8784,-8785,8697]],"properties":{"rate":0.063}},{"type":"Polygon","id":13185,"arcs":[[8682,8766,-8786,8786,-8788,-8789,8725,8622]],"properties":{"rate":0.082}},{"type":"Polygon","id":22077,"arcs":[[8780,8693,-8790,-8791,-8792,-8793,8778,8521]],"properties":{"rate":0.079}},{"type":"Polygon","id":28109,"arcs":[[8654,8659,-8794,-8795,-8796,-8797,8650]],"properties":{"rate":0.083}},{"type":"Polygon","id":22117,"arcs":[[8658,8690,8688,-8798,-8799,8793]],"properties":{"rate":0.096}},{"type":"Polygon","id":22039,"arcs":[[8612,-8800,-8801,-8802,-8803,8691]],"properties":{"rate":0.086}},{"type":"Polygon","id":12063,"arcs":[[8707,8716,-8804,-8805,-8806,-8807,-8808,8769]],"properties":{"rate":0.072}},{"type":"Polygon","id":22105,"arcs":[[8687,8685,-8809,-8810,-8811,-8812,-8813,8797]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":12033,"arcs":[[[-8814,8709,8704,-8815]]],"properties":{"rate":0.098}},{"type":"MultiPolygon","id":12113,"arcs":[[[-8816,-8817,8817,-8819]],[[8710,8813,-8820,-8821]]],"properties":{"rate":0.094}},{"type":"Polygon","id":28039,"arcs":[[8647,8656,-8822,-8823,8727]],"properties":{"rate":0.1}},{"type":"Polygon","id":22091,"arcs":[[8684,-8824,-8825,-8826,8808]],"properties":{"rate":0.118}},{"type":"MultiPolygon","id":12091,"arcs":[[[-8827,-8828]],[[8711,8820,-8829,-8830,8594]]],"properties":{"rate":0.072}},{"type":"Polygon","id":22037,"arcs":[[8683,8672,8777,-8831,-8832,8823]],"properties":{"rate":0.08}},{"type":"Polygon","id":12059,"arcs":[[8715,-8833,-8834,8803]],"properties":{"rate":0.072}},{"type":"Polygon","id":12131,"arcs":[[8595,8829,-8835,8827,-8836,-8837,-8838,8832,8714]],"properties":{"rate":0.068}},{"type":"Polygon","id":48041,"arcs":[[8746,8679,-8839,-8840,-8841]],"properties":{"rate":0.062}},{"type":"Polygon","id":48319,"arcs":[[8615,8751,-8842,-8843,-8844,8617]],"properties":{"rate":0.054}},{"type":"Polygon","id":48299,"arcs":[[8618,8843,-8845,-8846,8781]],"properties":{"rate":0.073}},{"type":"Polygon","id":28131,"arcs":[[8655,8651,8796,-8847,-8848,8821]],"properties":{"rate":0.072}},{"type":"Polygon","id":48491,"arcs":[[8741,8698,8784,-8849,-8850,-8851]],"properties":{"rate":0.078}},{"type":"Polygon","id":48407,"arcs":[[8663,8776,-8852,-8853,8737]],"properties":{"rate":0.1}},{"type":"Polygon","id":22003,"arcs":[[8611,8676,-8854,-8855,8799]],"properties":{"rate":0.101}},{"type":"Polygon","id":22011,"arcs":[[8675,8720,-8856,-8857,8853]],"properties":{"rate":0.08}},{"type":"Polygon","id":13101,"arcs":[[8722,8726,8788,-8858,-8859]],"properties":{"rate":0.067}},{"type":"Polygon","id":48185,"arcs":[[8747,8840,-8860,-8861,-8862,8774]],"properties":{"rate":0.1}},{"type":"Polygon","id":22097,"arcs":[[8692,8802,-8863,-8864,-8865,8789]],"properties":{"rate":0.083}},{"type":"Polygon","id":12133,"arcs":[[8804,8833,8837,-8866]],"properties":{"rate":0.096}},{"type":"MultiPolygon","id":12089,"arcs":[[[8772,-8867,-8868,-8869,8732]]],"properties":{"rate":0.107}},{"type":"MultiPolygon","id":28059,"arcs":[[[8822,8847,-8870,-8871,8728]]],"properties":{"rate":0.08}},{"type":"Polygon","id":48051,"arcs":[[8678,8743,-8872,-8873,8838]],"properties":{"rate":0.074}},{"type":"Polygon","id":22033,"arcs":[[8824,8831,-8874,-8875,-8876,-8877]],"properties":{"rate":0.068}},{"type":"Polygon","id":22103,"arcs":[[8798,8812,-8878,-8879,-8880,-8881,8794]],"properties":{"rate":0.052}},{"type":"Polygon","id":12039,"arcs":[[8758,8770,8807,-8882,-8883,8760]],"properties":{"rate":0.096}},{"type":"Polygon","id":48267,"arcs":[[8841,8750,-8884,-8885,-8886,-8887]],"properties":{"rate":0.054}},{"type":"Polygon","id":48435,"arcs":[[8753,8756,-8888,-8889,8883]],"properties":{"rate":0.078}},{"type":"Polygon","id":12073,"arcs":[[8761,8882,-8890,-8891,-8892,8767]],"properties":{"rate":0.072}},{"type":"MultiPolygon","id":28047,"arcs":[[[8846,-8893,-8894,8869]]],"properties":{"rate":0.072}},{"type":"Polygon","id":12065,"arcs":[[8768,8891,-8895,-8896,-8897,-8898,8764]],"properties":{"rate":0.085}},{"type":"Polygon","id":48043,"arcs":[[-8899,-8900,8666,8744,-8901]],"properties":{"rate":0.051}},{"type":"Polygon","id":22121,"arcs":[[8873,8830,8779,8792,-8902]],"properties":{"rate":0.074}},{"type":"Polygon","id":48443,"arcs":[[8754,8667,8899,-8903,-8904]],"properties":{"rate":0.078}},{"type":"Polygon","id":22063,"arcs":[[8825,8876,-8905,-8906,8809]],"properties":{"rate":0.07}},{"type":"Polygon","id":12079,"arcs":[[8765,8897,-8907,-8908,-8909,-8910,8910,8785]],"properties":{"rate":0.117}},{"type":"Polygon","id":28045,"arcs":[[8795,8880,-8912,8892]],"properties":{"rate":0.075}},{"type":"Polygon","id":12047,"arcs":[[8787,8909,-8913,-8914,8857]],"properties":{"rate":0.113}},{"type":"Polygon","id":48377,"arcs":[[8745,-8915,8900]],"properties":{"rate":0.178}},{"type":"Polygon","id":48339,"arcs":[[8775,8861,-8916,-8917,-8918,8851]],"properties":{"rate":0.079}},{"type":"Polygon","id":48453,"arcs":[[8848,8783,-8919,-8920,-8921,-8922]],"properties":{"rate":0.07}},{"type":"Polygon","id":12013,"arcs":[[8806,-8923,-8924,-8925]],"properties":{"rate":0.082}},{"type":"Polygon","id":12077,"arcs":[[8881,8924,-8926,-8927,-8928,8889]],"properties":{"rate":0.053}},{"type":"Polygon","id":12023,"arcs":[[8858,8913,-8929,-8930,-8931,-8932,-8933,8723]],"properties":{"rate":0.09}},{"type":"MultiPolygon","id":12031,"arcs":[[[-8934,-8935]],[[-8936,-8937]],[[-8938]],[[8867,-8939,-8940,-8941]]],"properties":{"rate":0.112}},{"type":"Polygon","id":12003,"arcs":[[8771,8627,8724,8932,-8942,-8943,-8944,8938,8866]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":12005,"arcs":[[[-8945,-8946]],[[8805,8865,8836,-8947,-8948,8922]]],"properties":{"rate":0.089}},{"type":"Polygon","id":48287,"arcs":[[8871,8742,8850,-8949,-8950,-8951]],"properties":{"rate":0.069}},{"type":"Polygon","id":48199,"arcs":[[8773,8739,-8952,-8953,-8954,8735]],"properties":{"rate":0.101}},{"type":"Polygon","id":48171,"arcs":[[8842,8886,-8955,-8956,-8957,8844]],"properties":{"rate":0.049}},{"type":"Polygon","id":48031,"arcs":[[8845,8956,-8958,-8959,-8960,8918,8782]],"properties":{"rate":0.058}},{"type":"MultiPolygon","id":22099,"arcs":[[[-8961,-8962,-8963]],[[-8964,8790,8864,-8965,-8966]]],"properties":{"rate":0.075}},{"type":"Polygon","id":22047,"arcs":[[8791,8963,-8967,-8968,-8969,8874,8901]],"properties":{"rate":0.104}},{"type":"Polygon","id":48291,"arcs":[[8738,8852,8917,-8970,-8971,-8972,8951]],"properties":{"rate":0.112}},{"type":"Polygon","id":22019,"arcs":[[8855,8719,-8973,-8974,-8975]],"properties":{"rate":0.072}},{"type":"Polygon","id":22053,"arcs":[[8854,8856,8974,-8976,-8977,-8978,8800]],"properties":{"rate":0.064}},{"type":"Polygon","id":22001,"arcs":[[8801,8977,-8979,-8980,8862]],"properties":{"rate":0.071}},{"type":"Polygon","id":12121,"arcs":[[8912,8908,-8981,-8982,8928]],"properties":{"rate":0.098}},{"type":"Polygon","id":48021,"arcs":[[8948,8849,8921,-8983,-8984]],"properties":{"rate":0.08}},{"type":"Polygon","id":48477,"arcs":[[8839,8872,8950,-8985,-8986,-8987,8859]],"properties":{"rate":0.069}},{"type":"Polygon","id":22055,"arcs":[[8863,8979,-8988,-8989,8964]],"properties":{"rate":0.059}},{"type":"Polygon","id":48209,"arcs":[[-8990,8919,8959,-8991,-8992]],"properties":{"rate":0.068}},{"type":"Polygon","id":22005,"arcs":[[8875,8968,-8993,-8994,-8995,8904]],"properties":{"rate":0.067}},{"type":"Polygon","id":12123,"arcs":[[8906,8896,-8996,-8997,-8998]],"properties":{"rate":0.104}},{"type":"MultiPolygon","id":12129,"arcs":[[[8890,8927,-8999,-9000,8894]]],"properties":{"rate":0.072}},{"type":"Polygon","id":22095,"arcs":[[8810,8905,8994,-9001,-9002,-9003]],"properties":{"rate":0.084}},{"type":"Polygon","id":48465,"arcs":[[8755,8903,-9004,-9005,-9006,8887]],"properties":{"rate":0.096}},{"type":"Polygon","id":48137,"arcs":[[8884,8888,9005,-9007,-9008,-9009,-9010]],"properties":{"rate":0.067}},{"type":"Polygon","id":48265,"arcs":[[8954,8885,9009,-9011,-9012,-9013]],"properties":{"rate":0.06}},{"type":"Polygon","id":12067,"arcs":[[8907,8997,-9014,-9015,8980]],"properties":{"rate":0.072}},{"type":"MultiPolygon","id":12109,"arcs":[[[-9016]],[[-9017,8934,-9018,-9019,-9020,-9021,-9022]],[[-9023,8936]]],"properties":{"rate":0.09}},{"type":"Polygon","id":48361,"arcs":[[8718,8736,8953,-9024,-9025,8972]],"properties":{"rate":0.111}},{"type":"Polygon","id":48473,"arcs":[[8915,8860,8986,-9026,-9027,-9028]],"properties":{"rate":0.09}},{"type":"Polygon","id":22089,"arcs":[[-9029,9002,-9030]],"properties":{"rate":0.065}},{"type":"MultiPolygon","id":22051,"arcs":[[[8877,8811,9028,-9031,-9032,-9033,-9034]]],"properties":{"rate":0.065}},{"type":"Polygon","id":12045,"arcs":[[8923,8947,-9035,8945,-9036,-9037,-9038,-9039,8925]],"properties":{"rate":0.098}},{"type":"Polygon","id":22071,"arcs":[[8878,9033,-9040,-9041,-9042]],"properties":{"rate":0.107}},{"type":"Polygon","id":12019,"arcs":[[8939,8943,-9043,-9044,-9045]],"properties":{"rate":0.098}},{"type":"Polygon","id":48245,"arcs":[[8952,8971,-9046,-9047,-9048,9023]],"properties":{"rate":0.108}},{"type":"MultiPolygon","id":48201,"arcs":[[[8916,9027,-9049,-9050,-9051,-9052,-9053,8969]]],"properties":{"rate":0.085}},{"type":"MultiPolygon","id":22087,"arcs":[[[9053,9054,9055,9056]],[[-9058,9040,-9059,-9060,-9061,-9062,-9063,-9064,-9065]]],"properties":{"rate":0.105}},{"type":"Polygon","id":22093,"arcs":[[9000,8993,-9066,-9067]],"properties":{"rate":0.1}},{"type":"Polygon","id":48149,"arcs":[[8984,8949,8983,-9068,-9069,-9070,-9071,-9072]],"properties":{"rate":0.057}},{"type":"Polygon","id":22113,"arcs":[[8978,8976,-9073,-9074,-9075,8987]],"properties":{"rate":0.072}},{"type":"Polygon","id":12007,"arcs":[[8942,-9076,-9077,-9078,9042]],"properties":{"rate":0.083}},{"type":"Polygon","id":12125,"arcs":[[8941,8931,-9079,9075]],"properties":{"rate":0.084}},{"type":"Polygon","id":48259,"arcs":[[8955,9012,-9080,-9081,-9082,8957]],"properties":{"rate":0.06}},{"type":"MultiPolygon","id":22045,"arcs":[[[-9083]],[[8965,8988,9074,-9084,-9085,8961,-9086,8966]]],"properties":{"rate":0.076}},{"type":"Polygon","id":48015,"arcs":[[8985,9071,-9087,-9088,-9089,9025]],"properties":{"rate":0.084}},{"type":"Polygon","id":22007,"arcs":[[8992,8967,9085,8960,-9090,-9091,-9092,9065]],"properties":{"rate":0.088}},{"type":"Polygon","id":48385,"arcs":[[9008,-9093,-9094,9010]],"properties":{"rate":0.061}},{"type":"Polygon","id":48055,"arcs":[[8920,8989,-9095,-9096,9067,8982]],"properties":{"rate":0.082}},{"type":"Polygon","id":22023,"arcs":[[8973,9024,9047,-9097,9072,8975]],"properties":{"rate":0.056}},{"type":"Polygon","id":48091,"arcs":[[8990,8958,9081,-9098,-9099]],"properties":{"rate":0.066}},{"type":"MultiPolygon","id":12037,"arcs":[[[-9100]],[[-9101,9036]],[[8926,9038,-9102,8998]]],"properties":{"rate":0.071}},{"type":"Polygon","id":48089,"arcs":[[9086,9070,-9103,-9104,-9105]],"properties":{"rate":0.066}},{"type":"MultiPolygon","id":22101,"arcs":[[[8962,9084,-9106,-9107,9089]]],"properties":{"rate":0.086}},{"type":"Polygon","id":12001,"arcs":[[9078,8930,-9108,-9109,-9110,-9111,9076]],"properties":{"rate":0.071}},{"type":"Polygon","id":12041,"arcs":[[8929,8981,9014,-9112,-9113,9107]],"properties":{"rate":0.1}},{"type":"MultiPolygon","id":22057,"arcs":[[[-9114,9030,9029,9001,9066,9091,-9115,-9116,-9117,-9118,-9119,-9120,-9121,9121,-9123,-9124,-9125]]],"properties":{"rate":0.049}},{"type":"Polygon","id":48019,"arcs":[[-9126,-9127,9079,9011,9093,-9128]],"properties":{"rate":0.068}},{"type":"MultiPolygon","id":22075,"arcs":[[[-9129]],[[-9130,9058,9039,9032,-9131,-9132,-9133,-9134]]],"properties":{"rate":0.062}},{"type":"MultiPolygon","id":48071,"arcs":[[[8970,9052,-9135,-9136,-9137,9045]]],"properties":{"rate":0.107}},{"type":"Polygon","id":48187,"arcs":[[9094,8991,9098,-9138,-9139,-9140]],"properties":{"rate":0.067}},{"type":"MultiPolygon","id":12107,"arcs":[[[-9141,-9142,-9143,9018]],[[9043,9077,9110,-9144,-9145]]],"properties":{"rate":0.122}},{"type":"Polygon","id":48157,"arcs":[[9048,9026,9088,-9146,-9147]],"properties":{"rate":0.083}},{"type":"Polygon","id":48177,"arcs":[[9068,9095,9139,-9148,-9149,-9150,-9151]],"properties":{"rate":0.061}},{"type":"MultiPolygon","id":22109,"arcs":[[[-9152]],[[-9153,9114,9090,9106,-9154,-9155,-9156,-9157,-9158]]],"properties":{"rate":0.052}},{"type":"Polygon","id":48029,"arcs":[[9097,9080,9126,-9159,-9160,-9161,9137]],"properties":{"rate":0.072}},{"type":"Polygon","id":48325,"arcs":[[9158,9125,-9162,-9163,-9164]],"properties":{"rate":0.071}},{"type":"MultiPolygon","id":12035,"arcs":[[[9019,9142,-9165,-9166]],[[9166,-9168,-9169,-9170]]],"properties":{"rate":0.162}},{"type":"Polygon","id":48481,"arcs":[[9087,9104,-9171,-9172,-9173,9145]],"properties":{"rate":0.079}},{"type":"Polygon","id":48285,"arcs":[[9102,9069,9150,-9174,-9175,-9176]],"properties":{"rate":0.064}},{"type":"Polygon","id":48463,"arcs":[[9127,9092,9007,-9177,-9178,9161]],"properties":{"rate":0.089}},{"type":"Polygon","id":48271,"arcs":[[9006,9004,-9179,-9180,9176]],"properties":{"rate":0.089}},{"type":"MultiPolygon","id":48167,"arcs":[[[-9181]],[[-9182,9050,-9183,-9184]],[[9135,-9185]]],"properties":{"rate":0.085}},{"type":"MultiPolygon","id":48039,"arcs":[[[9049,9146,9172,-9186,-9187,9182]]],"properties":{"rate":0.089}},{"type":"MultiPolygon","id":12075,"arcs":[[[9112,-9188,-9189,-9190,-9191,-9192,9108]]],"properties":{"rate":0.121}},{"type":"Polygon","id":12083,"arcs":[[9143,9109,9191,-9193,-9194,-9195,-9196]],"properties":{"rate":0.133}},{"type":"Polygon","id":48493,"arcs":[[9138,9160,-9197,-9198,9147]],"properties":{"rate":0.069}},{"type":"MultiPolygon","id":12127,"arcs":[[[-9199,9164,9141,-9200,-9201,-9202,-9203,-9204,-9205]]],"properties":{"rate":0.117}},{"type":"Polygon","id":48123,"arcs":[[-9206,9173,9149,-9207,-9208]],"properties":{"rate":0.083}},{"type":"Polygon","id":12069,"arcs":[[-9209,9194,-9210,-9211,-9212,-9213,9200]],"properties":{"rate":0.123}},{"type":"Polygon","id":48239,"arcs":[[9170,9103,9175,-9214,-9215,-9216,-9217,-9218,-9219,-9220,-9221]],"properties":{"rate":0.076}},{"type":"Polygon","id":48013,"arcs":[[-9222,-9223,9196,9159,9163,-9224,-9225]],"properties":{"rate":0.079}},{"type":"MultiPolygon","id":48321,"arcs":[[[-9226,9185,9171,9220,-9227,-9228]]],"properties":{"rate":0.112}},{"type":"Polygon","id":48255,"arcs":[[-9229,9206,9148,9197,9222,-9230,-9231]],"properties":{"rate":0.105}},{"type":"MultiPolygon","id":48469,"arcs":[[[9174,9205,-9232,-9233,-9234,-9235,9213]]],"properties":{"rate":0.079}},{"type":"Polygon","id":48163,"arcs":[[9162,-9236,-9237,-9238,9223]],"properties":{"rate":0.084}},{"type":"Polygon","id":48507,"arcs":[[9177,-9239,-9240,9235]],"properties":{"rate":0.163}},{"type":"Polygon","id":48323,"arcs":[[9179,-9241,-9242,-9243,9238]],"properties":{"rate":0.136}},{"type":"MultiPolygon","id":12017,"arcs":[[[-9244,-9245,-9246,9192,9190]]],"properties":{"rate":0.121}},{"type":"Polygon","id":12119,"arcs":[[9193,9245,-9247,-9248,-9249,9209]],"properties":{"rate":0.09}},{"type":"Polygon","id":48175,"arcs":[[9207,9228,-9250,-9251,9231]],"properties":{"rate":0.079}},{"type":"Polygon","id":12117,"arcs":[[9201,9212,-9252]],"properties":{"rate":0.106}},{"type":"MultiPolygon","id":12009,"arcs":[[[-9253]],[[9202,-9254,-9255,-9256,-9257]],[[9204,-9258,9258,-9260]]],"properties":{"rate":0.111}},{"type":"Polygon","id":48297,"arcs":[[-9261,-9262,9229,9221,-9263,-9264,-9265]],"properties":{"rate":0.076}},{"type":"Polygon","id":12095,"arcs":[[9211,-9266,9253,9251]],"properties":{"rate":0.114}},{"type":"MultiPolygon","id":48057,"arcs":[[[-9267,-9268,-9269]],[[-9270,-9271,-9272]],[[9219,-9273,9226]],[[-9274,9233,-9275]],[[-9276,9217,-9277]]],"properties":{"rate":0.095}},{"type":"Polygon","id":48025,"arcs":[[9230,9261,-9278,-9279,9249]],"properties":{"rate":0.103}},{"type":"Polygon","id":12053,"arcs":[[9244,-9280,-9281,9246]],"properties":{"rate":0.138}},{"type":"Polygon","id":48283,"arcs":[[9237,-9282,-9283,-9284]],"properties":{"rate":0.099}},{"type":"Polygon","id":48311,"arcs":[[9224,9283,-9285,9262]],"properties":{"rate":0.078}},{"type":"Polygon","id":48127,"arcs":[[9239,9242,-9286,9281,9236]],"properties":{"rate":0.11}},{"type":"Polygon","id":48391,"arcs":[[9232,9250,9278,-9287,-9288,-9289,-9290,-9291,9274]],"properties":{"rate":0.07}},{"type":"MultiPolygon","id":12101,"arcs":[[[9280,-9292,-9293,-9294,-9295,9247]]],"properties":{"rate":0.125}},{"type":"Polygon","id":12105,"arcs":[[9210,9248,9294,-9296,-9297,-9298,-9299]],"properties":{"rate":0.127}},{"type":"Polygon","id":12097,"arcs":[[9265,9298,-9300,-9301,9254]],"properties":{"rate":0.128}},{"type":"MultiPolygon","id":48007,"arcs":[[[-9302]],[[9287,-9303,-9304]],[[-9305,-9306]],[[-9307,9267,-9308,9289,-9309]]],"properties":{"rate":0.073}},{"type":"Polygon","id":48479,"arcs":[[9282,9285,9241,-9310,-9311,-9312,-9313]],"properties":{"rate":0.091}},{"type":"Polygon","id":48409,"arcs":[[9286,9277,9260,-9314,-9315,-9316,-9317,-9318,9305,-9319,9302]],"properties":{"rate":0.098}},{"type":"MultiPolygon","id":12103,"arcs":[[[9292,-9320,-9321]]],"properties":{"rate":0.112}},{"type":"MultiPolygon","id":12057,"arcs":[[[9293,9320,-9322,-9323,9295]]],"properties":{"rate":0.115}},{"type":"Polygon","id":48131,"arcs":[[9263,9284,9312,-9324,-9325,-9326]],"properties":{"rate":0.125}},{"type":"Polygon","id":48249,"arcs":[[9264,9325,-9327,-9328,-9329,9313]],"properties":{"rate":0.1}},{"type":"MultiPolygon","id":48355,"arcs":[[[-9330]],[[-9331,9314,9328,-9332,-9333]]],"properties":{"rate":0.077}},{"type":"MultiPolygon","id":12061,"arcs":[[[-9334,9255,9300,-9335,-9336]],[[-9337,-9338]]],"properties":{"rate":0.152}},{"type":"Polygon","id":12055,"arcs":[[9297,-9339,-9340,-9341,-9342]],"properties":{"rate":0.116}},{"type":"Polygon","id":12049,"arcs":[[9296,-9343,-9344,9338]],"properties":{"rate":0.126}},{"type":"MultiPolygon","id":12081,"arcs":[[[9322,-9345,-9346,-9347,9342]]],"properties":{"rate":0.127}},{"type":"Polygon","id":12093,"arcs":[[9299,9341,-9348,-9349,-9350,9334]],"properties":{"rate":0.133}},{"type":"MultiPolygon","id":48273,"arcs":[[[-9351,9351,-9353,-9354]],[[9331,9327,-9355,-9356,-9357]]],"properties":{"rate":0.077}},{"type":"MultiPolygon","id":12111,"arcs":[[[9335,9349,-9358,-9359,-9360,-9361]]],"properties":{"rate":0.153}},{"type":"MultiPolygon","id":12115,"arcs":[[[-9362,-9363,-9364,-9365,-9366,9345]]],"properties":{"rate":0.123}},{"type":"Polygon","id":48247,"arcs":[[9323,9311,-9367,-9368,-9369]],"properties":{"rate":0.1}},{"type":"Polygon","id":12027,"arcs":[[9343,9346,9365,-9370,9339]],"properties":{"rate":0.117}},{"type":"Polygon","id":48505,"arcs":[[9310,-9371,-9372,9366]],"properties":{"rate":0.126}},{"type":"MultiPolygon","id":48261,"arcs":[[[-9373,-9374,-9375,-9376]],[[-9377,-9378,-9379,-9380]],[[-9381,9353,-9382,-9383]],[[-9384,9355,-9385,-9386,-9387,-9388,-9389]]],"properties":{"rate":0.061}},{"type":"Polygon","id":48047,"arcs":[[9324,9368,-9390,-9391,9384,9354,9326]],"properties":{"rate":0.099}},{"type":"MultiPolygon","id":12085,"arcs":[[[-9392,9357,9348,-9393,-9394,-9395,-9396,-9397]]],"properties":{"rate":0.119}},{"type":"Polygon","id":12043,"arcs":[[9347,9340,-9398,-9399]],"properties":{"rate":0.1}},{"type":"MultiPolygon","id":12015,"arcs":[[[-9400,9362]],[[9369,9364,-9401,-9402,9397]]],"properties":{"rate":0.127}},{"type":"MultiPolygon","id":12099,"arcs":[[[9392,-9403,-9404,-9405]]],"properties":{"rate":0.117}},{"type":"Polygon","id":12051,"arcs":[[9402,9398,-9406,-9407,-9408]],"properties":{"rate":0.168}},{"type":"MultiPolygon","id":12071,"arcs":[[[-9409]],[[9401,-9410,-9411,9405]]],"properties":{"rate":0.139}},{"type":"Polygon","id":48427,"arcs":[[9367,9371,-9412,-9413,9389]],"properties":{"rate":0.178}},{"type":"Polygon","id":48215,"arcs":[[9390,9412,-9414,-9415,-9416,9385]],"properties":{"rate":0.116}},{"type":"MultiPolygon","id":48489,"arcs":[[[-9417,9374,-9418,-9419,-9420]],[[-9421,9386,9415,-9422,-9423,-9424,-9425]]],"properties":{"rate":0.139}},{"type":"MultiPolygon","id":12021,"arcs":[[[9406,9410,-9426,-9427,-9428,-9429]]],"properties":{"rate":0.131}},{"type":"MultiPolygon","id":48061,"arcs":[[[-9430,9421,9414,-9431]]],"properties":{"rate":0.108}},{"type":"Polygon","id":12011,"arcs":[[9403,9407,9428,-9432,-9433]],"properties":{"rate":0.098}},{"type":"MultiPolygon","id":12086,"arcs":[[[-9434,9431,9427,-9435,-9436,-9437,-9438,-9439,-9440]]],"properties":{"rate":0.113}},{"type":"MultiPolygon","id":12087,"arcs":[[[-9441]],[[-9442]],[[9426,-9443,9434]]],"properties":{"rate":0.07}},{"type":"Polygon","id":4015,"arcs":[[5428,5352,4623,5939,6558,7341,6701,5753]],"properties":{"rate":0.102}},{"type":"Polygon","id":12029,"arcs":[[9013,8996,-9444,9187,9111]],"properties":{"rate":0.123}},{"type":"Polygon","id":27077,"arcs":[[-9445,103,173,121]],"properties":{"rate":0.069}},{"type":"Polygon","id":27031,"arcs":[[-9446,203,-9447]],"properties":{"rate":0.047}},{"type":"Polygon","id":55031,"arcs":[[-9448,139,474,590,657,667,-9449]],"properties":{"rate":0.065}},{"type":"Polygon","id":55007,"arcs":[[-9450,9448,662,-9451]],"properties":{"rate":0.062}},{"type":"Polygon","id":55003,"arcs":[[-9452,9450,666,710,554]],"properties":{"rate":0.083}},{"type":"Polygon","id":55003,"arcs":[[-9453]],"properties":{"rate":0.083}},{"type":"Polygon","id":55003,"arcs":[[-9454]],"properties":{"rate":0.083}},{"type":"Polygon","id":26083,"arcs":[[-9455,-9456,-9457]],"properties":{"rate":0.119}},{"type":"Polygon","id":26083,"arcs":[[-9458]],"properties":{"rate":0.119}},{"type":"Polygon","id":26061,"arcs":[[-9459,432,581,444]],"properties":{"rate":0.102}},{"type":"Polygon","id":26061,"arcs":[[9455,-9460]],"properties":{"rate":0.102}},{"type":"Polygon","id":26103,"arcs":[[-9461,446,586,632,705,-9462,-9463]],"properties":{"rate":0.101}},{"type":"Polygon","id":26003,"arcs":[[-9464]],"properties":{"rate":0.12}},{"type":"Polygon","id":26003,"arcs":[[484,-9465,9462,-9466,569]],"properties":{"rate":0.12}},{"type":"Polygon","id":26041,"arcs":[[9461,709,-9467,570,9465]],"properties":{"rate":0.115}},{"type":"Polygon","id":55075,"arcs":[[634,697,682,876,-9468,706]],"properties":{"rate":0.102}},{"type":"Polygon","id":55029,"arcs":[[-9469,1156]],"properties":{"rate":0.066}},{"type":"Polygon","id":55029,"arcs":[[-9470]],"properties":{"rate":0.066}},{"type":"Polygon","id":26033,"arcs":[[-9471,-9472]],"properties":{"rate":0.116}},{"type":"Polygon","id":26033,"arcs":[[-9473]],"properties":{"rate":0.116}},{"type":"Polygon","id":26033,"arcs":[[-9474]],"properties":{"rate":0.116}},{"type":"Polygon","id":26033,"arcs":[[-9475,487,-9476,-9477,-9478]],"properties":{"rate":0.116}},{"type":"Polygon","id":26097,"arcs":[[-9479]],"properties":{"rate":0.061}},{"type":"Polygon","id":26097,"arcs":[[9475,486,572,-9480]],"properties":{"rate":0.061}},{"type":"Polygon","id":26047,"arcs":[[-9481,-9482,761]],"properties":{"rate":0.122}},{"type":"Polygon","id":26029,"arcs":[[-9483,937,942,762,9481]],"properties":{"rate":0.139}},{"type":"Polygon","id":26029,"arcs":[[-9484]],"properties":{"rate":0.139}},{"type":"Polygon","id":26089,"arcs":[[-9485]],"properties":{"rate":0.09}},{"type":"Polygon","id":26089,"arcs":[[-9486,1101,-9487]],"properties":{"rate":0.09}},{"type":"Polygon","id":26055,"arcs":[[-9488,9486,1104,1216,1070,939]],"properties":{"rate":0.12}},{"type":"Polygon","id":26007,"arcs":[[814,946,1066,-9489]],"properties":{"rate":0.139}},{"type":"Polygon","id":26011,"arcs":[[1227,1230,1397,1430,-9490]],"properties":{"rate":0.158}},{"type":"Polygon","id":26063,"arcs":[[-9491,1556,1571]],"properties":{"rate":0.148}},{"type":"Polygon","id":26147,"arcs":[[-9492]],"properties":{"rate":0.19}},{"type":"Polygon","id":26147,"arcs":[[-9493,1573,1723,1920]],"properties":{"rate":0.19}},{"type":"Polygon","id":26163,"arcs":[[1922,1926,2122,-9494,-9495]],"properties":{"rate":0.183}},{"type":"Polygon","id":26115,"arcs":[[9493,2125,2274,2495,-9496]],"properties":{"rate":0.142}},{"type":"MultiPolygon","id":45019,"arcs":[[[-9497]],[[7727,7843,7897,-9498,9498,-9500]],[[-9501,7626,7729,-9502]]],"properties":{"rate":0.09}},{"type":"Polygon","id":15005,"arcs":[[-9503,-9504]]},{"type":"Polygon","id":15001,"arcs":[[-9505]],"properties":{"rate":0.108}},{"type":"Polygon","id":15007,"arcs":[[-9506]],"properties":{"rate":0.096}},{"type":"Polygon","id":15009,"arcs":[[-9507,9503]],"properties":{"rate":0.097}},{"type":"Polygon","id":15009,"arcs":[[-9508]],"properties":{"rate":0.097}},{"type":"Polygon","id":15009,"arcs":[[-9509]],"properties":{"rate":0.097}},{"type":"Polygon","id":15009,"arcs":[[-9510]],"properties":{"rate":0.097}},{"type":"Polygon","id":15003,"arcs":[[-9511]],"properties":{"rate":0.063}},{"type":"Polygon","id":15007,"arcs":[[-9512]],"properties":{"rate":0.096}},{"type":"MultiPolygon","id":2016,"arcs":[[[-9513]],[[-9514]],[[-9515]],[[-9516]],[[-9517]],[[-9518]],[[-9519]],[[-9520]],[[-9521]],[[-9522]]],"properties":{"rate":0.084}},{"type":"MultiPolygon","id":2013,"arcs":[[[-9523]],[[-9524]],[[-9525]],[[-9526]],[[-9527,-9528,-9529,-9530]]],"properties":{"rate":0.101}},{"type":"MultiPolygon","id":2130,"arcs":[[[-9531]]],"properties":{"rate":0.061}},{"type":"Polygon","id":2060,"arcs":[[-9532,-9533]],"properties":{"rate":0.036}},{"type":"MultiPolygon","id":2070,"arcs":[[[-9534]],[[-9535,-9536,-9537,-9538,-9539,-9540]]],"properties":{"rate":0.084}},{"type":"MultiPolygon","id":2164,"arcs":[[[-9541,9535,-9542,9531,-9543,9528,-9544,-9545,-9546]]],"properties":{"rate":0.059}},{"type":"MultiPolygon","id":2150,"arcs":[[[-9547]],[[-9548]],[[-9549]],[[-9550]],[[-9551,-9552,9544,-9553]]],"properties":{"rate":0.066}},{"type":"MultiPolygon","id":2110,"arcs":[[[-9554,-9555,-9556,-9557,-9558,-9559,-9560]],[[-9561,-9562,-9563,-9564,-9565,-9566]],[[-9567,-9568]]],"properties":{"rate":0.057}},{"type":"MultiPolygon","id":2280,"arcs":[[[-9569]],[[-9570]],[[-9571]],[[-9572]],[[-9573]],[[-9574]],[[-9575,-9576,-9577,-9578]]],"properties":{"rate":0.098}},{"type":"MultiPolygon","id":2232,"arcs":[[[-9579,9562,-9580]],[[-9581,-9582,-9583,-9584]],[[-9585,9564,-9586,9586,-9588,9574]],[[-9589,9589,-9591,-9592,9558]],[[-9593,-9594,-9595,-9596,-9597]],[[-9598,9555,9554]],[[-9599,-9600,-9601,-9602,-9603]],[[-9604,-9605,-9606,-9607]]],"properties":{"rate":0.073}},{"type":"MultiPolygon","id":2100,"arcs":[[[-9608,9606,-9609,9567,-9610,9560]],[[9604,-9611,9599,-9612]]],"properties":{"rate":0.062}},{"type":"MultiPolygon","id":2220,"arcs":[[[-9613]],[[-9614,9614,-9616]],[[-9617,9593,-9618,9583,-9619]]],"properties":{"rate":0.059}},{"type":"MultiPolygon","id":2270,"arcs":[[[-9620]],[[-9621]],[[-9622]],[[-9623,-9624,-9625,-9626]]],"properties":{"rate":0.204}},{"type":"MultiPolygon","id":2050,"arcs":[[[-9627]],[[-9628]],[[-9629]],[[-9630,9630,-9632,9536,9540,-9633,-9634,-9635,9623,-9636]]],"properties":{"rate":0.148}},{"type":"Polygon","id":2170,"arcs":[[-9637,-9638,-9639,9633,-9640,-9641,-9642,-9643]],"properties":{"rate":0.088}},{"type":"Polygon","id":2068,"arcs":[[-9644,9637,-9645,-9646]],"properties":{"rate":0.034}},{"type":"MultiPolygon","id":2020,"arcs":[[[-9647,-9648,-9649,9641]]],"properties":{"rate":0.07}},{"type":"MultiPolygon","id":2261,"arcs":[[[-9650]],[[-9651]],[[-9652]],[[-9653,-9654]],[[-9655,-9656]],[[-9657,-9658,-9659,-9660,9642,9648,-9661,-9662]]],"properties":{"rate":0.064}},{"type":"MultiPolygon","id":2122,"arcs":[[[-9663,9653,-9664,9655,-9665,9660,9647]],[[-9666,9639,9632,9545,9551]]],"properties":{"rate":0.097}},{"type":"MultiPolygon","id":2282,"arcs":[[[-9667,9601,-9668,9657,-9669,-9670]]],"properties":{"rate":0.063}},{"type":"Polygon","id":2290,"arcs":[[-9671,-9672,-9673,9624,9634,9638,9643,-9674,-9675,-9676]],"properties":{"rate":0.136}},{"type":"Polygon","id":2090,"arcs":[[9673,9645,-9677]],"properties":{"rate":0.069}},{"type":"Polygon","id":2240,"arcs":[[-9678,9674,9676,9644,9636,9659]],"properties":{"rate":0.081}},{"type":"MultiPolygon","id":2185,"arcs":[[[-9679,-9680,9670,-9681]]],"properties":{"rate":0.057}},{"type":"MultiPolygon","id":2188,"arcs":[[[9679,-9682,-9683,-9684,9671]]],"properties":{"rate":0.132}},{"type":"MultiPolygon","id":2180,"arcs":[[[-9685]],[[-9686,9625,9672,9683,-9687]]],"properties":{"rate":0.121}},{"type":"Polygon","id":2201,"arcs":[[-9688]],"properties":{"rate":0.136}},{"type":"Polygon","id":2201,"arcs":[[-9689]],"properties":{"rate":0.136}},{"type":"Polygon","id":2201,"arcs":[[-9690]],"properties":{"rate":0.136}},{"type":"Polygon","id":2201,"arcs":[[-9691]],"properties":{"rate":0.136}},{"type":"Polygon","id":2201,"arcs":[[-9692,9576]],"properties":{"rate":0.136}}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":2,"arcs":[[[-9513]],[[-9514]],[[-9515]],[[-9516]],[[-9517]],[[-9518]],[[-9519]],[[-9520]],[[-9521]],[[-9522]],[[-9523]],[[-9524]],[[-9688]],[[-9689]],[[-9525]],[[-9526]],[[-9531]],[[-9690]],[[-9569]],[[-9691]],[[-9570]],[[-9571]],[[-9572]],[[-9573]],[[-9574]],[[-9547]],[[-9613]],[[-9614,-9693,-9616]],[[-9548]],[[-9549]],[[-9593,-9618,-9581,-9694,-9583,-9619,-9617,-9595,-9596,-9597]],[[-9598,-9557,-9558,-9589,-9695,-9591,-9560,-9554]],[[-9550]],[[-9534]],[[-9650]],[[-9627]],[[-9651]],[[-9652]],[[-9628]],[[-9629]],[[-9620]],[[-9621]],[[-9622]],[[-9685]],[[-9599,-9612,-9606,-9609,-9567,-9610,-9562,-9580,-9579,-9564,-9586,-9696,-9588,-9576,-9692,-9578,-9585,-9566,-9608,-9604,-9611,-9601,-9668,-9659,-9678,-9676,-9681,-9679,-9682,-9683,-9687,-9686,-9623,-9636,-9630,-9697,-9632,-9538,-9539,-9540,-9535,-9542,-9533,-9543,-9530,-9698,-9528,-9544,-9553,-9699,-9666,-9641,-9647,-9663,-9653,-9664,-9655,-9665,-9662,-9657,-9669,-9670,-9667,-9603]]]},{"type":"MultiPolygon","id":15,"arcs":[[[-9505]],[[-9509]],[[-9508]],[[-9510]],[[-9507,-9503]],[[-9511]],[[-9512]],[[-9506]]]},{"type":"MultiPolygon","id":1,"arcs":[[[6758,6757,6747,6733,6791,-6973,6986,6989,-7213,7292,-7337,7460,-7484,7637,-7711,7860,-7982,-7983,8155,-8275,-8276,8460,-8548,8648,-8728,-8729,-8730,-8702,-9700,-8704,-8705,-8710,-8711,-8712,-8595,-8596,-8715,-8716,-8717,-8708,-8709,8603,-8514,8508,-8351,-8352,8317,-8224,8181,8136,-8090,8044,-7906,7877,-7736,-7737,7609,-7533,-7534,7454,-7244,7203,7201,-7068,7031,7029,-7009,6841,6826,6825,6820,6819]]]},{"type":"Polygon","id":5,"arcs":[[5963,5975,-6144,-6281,6345,-6583,6648,-6761,-6762,6813,6812,-7152,7270,7269,-7550,7648,-7678,-7679,-7680,-7753,-7754,-7767,-7768,-7829,-7830,-7813,-7699,-7700,-7701,-7702,-7703,7449,7448,-7170,-7171,7059,-7054,-6773,-6774,-6775,6638,-6443,-6444,-6445,-6446,6300,6189,5999,5998,5997,5996,5890,5943,5942,5915,5914,5913,5734,5958,5957,5956,5946,5945,5944,5833,5864,5863]]},{"type":"Polygon","id":4,"arcs":[[4752,4751,5429,5428,5352,4623,5939,6558,6557,-7343,-7344,-7759,-7760,-8216,-8533,-8237,8064,-7631,-7632,7209,-5800,-5801,-5802,5794,4753]]},{"type":"MultiPolygon","id":6,"arcs":[[[-7090]],[[-7057]],[[-7091]],[[-6932]],[[-6933]],[[-6934]],[[1875,1967,1966,1885,-2365,-2673,-3614,-4479,-4854,-4481,-4468,-4698,-4470,-4699,-4549,-4857,-5028,-5167,-5450,-5303,-5206,-5300,-5621,-5902,-6560,-6935,-7059,-7092,-7556,-7731,-7775,7758,7343,7342,-6558,-6559,5938,-5483,4250,4775,-4570,4318,3793,4305,4304,4303,-4127,-4128,2381,2380,2379,2378,-2378,1597,1595,1594]]]},{"type":"Polygon","id":8,"arcs":[[2129,2128,2127,2189,-2971,-2972,3093,3092,-3565,4020,-4628,4756,4755,4754,-5332,-5334,-5510,-5511,-5525,-5526,-5320,-5321,-5221,-5222,-5329,-5330,-5331,5254,-4893,-4894,4590,4589,-4352,4270,-3933,-3934,3607,-3353,-3354,3181,-3131,2959,2958,2812,2690,2689,2721,2720,2542,2541,2132,2131]]},{"type":"MultiPolygon","id":9,"arcs":[[[1989,2278,2277,-2538,-2539,-2540,-2551,-9701,-2553,-2550,-2518,-2519,2444,-2311,-2312,2009,2008,2164,2163,2162]]]},{"type":"MultiPolygon","id":11,"arcs":[[[4288,4109,-4382,-4383]]]},{"type":"MultiPolygon","id":10,"arcs":[[[3576,3742,3574,3485,3484,-3744,-3745,4074,-4095,-4096,4265,-4389,-4390,-4391,-4392,-4393,-4394,-4094,-3747]]]},{"type":"MultiPolygon","id":12,"arcs":[[[-9441]],[[-9442]],[[-9409]],[[-9337,-9702]],[[-9253]],[[-9100]],[[-9703,-9170,-9704,-9168]],[[-9016]],[[-8936,-9023]],[[-9705,-8817,-9706,-8819]],[[-8938]],[[-9434,-9433,-9405,-9394,-9707,-9396,-9708,-9392,-9359,-9709,-9361,-9334,-9257,-9204,-9258,-9710,-9260,-9199,-9166,-9021,-9711,-9017,-8934,-9018,-9141,-9200,-9209,-9196,-9145,-9045,-8941,-8869,8732,8772,8771,8627,8724,8723,8858,8857,8787,8910,8785,8765,8764,8768,8767,8761,8760,8758,8770,8769,8707,8716,8715,8714,8595,8594,8711,8710,8709,8704,-8815,-8820,-8829,-8835,-8827,-8836,-8947,-9035,-8945,-9036,-9101,-9038,-9102,-9000,-8896,-8996,-9444,-9189,-9712,-9244,-9280,-9292,-9320,-9322,-9345,-9362,-9400,-9364,-9401,-9410,-9426,-9443,-9436,-9713,-9438,-9714,-9440]]]},{"type":"MultiPolygon","id":13,"arcs":[[[-8731]],[[-8633,-9715]],[[-8551]],[[-8360]],[[-8361]],[[-8310]],[[-8311]],[[-8312]],[[-8362,-8307,-8313,8074,8073,7927,-7927,7898,-7858,7742,7576,7575,7519,7518,7473,7472,-7382,7288,7095,7094,6958,6957,6956,6955,6954,6706,6839,6919,6918,6917,6858,6857,6863,6862,6829,6828,6755,6754,6753,6842,7008,-7030,-7032,7067,-7202,-7204,7243,-7455,7533,7532,-7610,7736,7735,-7878,7905,-8045,8089,-8137,-8182,8223,-8318,8351,8350,-8509,8513,-8604,8708,-8770,-8771,-8759,-8761,-8762,-8768,-8769,-8765,-8766,-8786,-8911,-8788,-8858,-8859,-8724,-8725,-8628,-8772,-8773,-8733,-8734,-8637,-9716,-8639,-8553,-8365]]]},{"type":"Polygon","id":19,"arcs":[[1500,1499,1508,1507,1496,1495,1494,1492,1491,1515,1514,1521,1520,1511,1510,1509,1488,1487,1485,1519,-1646,1657,-1750,1829,1828,-2056,-2057,2185,-2199,2298,-2406,2533,-2646,-2647,2820,-2870,2926,-3059,-3060,-3062,-3063,-3065,-3066,-3075,-3076,-3078,-3079,-3081,-3082,-3084,-3085,-3073,-3074,-3069,-3070,-3108,-3109,2914,-2914,2753,-2709,2439,2438,-2308,-2309,2221,-2155,2087,-2019,1772,1771,1689,-1652,1557]]},{"type":"Polygon","id":16,"arcs":[[-21,-22,82,-111,249,248,-364,399,398,-531,-532,-517,704,-904,963,-1081,1254,1253,1252,-1575,-1576,-1888,-2013,-2014,-2099,-2100,-2135,-2046,1725,1724,-1590,1161,1160,-1117,643,751,729,728,727,521,-521,326,325,349,-245,197,-114,34,-24]]},{"type":"Polygon","id":17,"arcs":[[1773,2018,-2088,2154,-2222,2308,2307,-2439,-2440,2708,-2754,2913,-2915,3108,-3228,-3229,3482,-3504,3676,-3738,-3739,3915,-4064,-4065,-4159,-4374,-4375,-4376,4518,4452,4451,-4726,-4727,-4945,-4946,-5136,5174,5364,5363,-5582,-5583,-5584,-5589,-5590,-5578,5502,-5375,-5371,-5372,5180,-5150,4937,-4920,4702,-4686,4437,4436,-4238,4165,4164,-4025,3906,-3721,3533,-3315,-3316,3142,-2950,2814,-2768,2520,-2504,-2230,-2231,-2108,2020,2019,1950,1949,1944,1943,1940,1939,1960,1959]]},{"type":"Polygon","id":18,"arcs":[[2292,2291,2196,2195,-2456,-2525,-2520,2229,2503,-2521,2767,-2815,2949,-3143,3315,3314,-3534,3720,-3907,4024,-4165,-4166,4237,-4437,-4438,4685,-4703,4919,-4938,-4939,-4940,-4985,-4935,-4936,-4965,-4966,-4906,-4907,-4908,-4800,-4802,-4803,-4804,-4810,-4662,-4663,4551,-4431,-4432,-4420,-4421,4258,4257,-4140,4128,3919,-3800,3704,-3607,3391,3390,-3284,3153,-3032,3005,-2788,-2789,2703,-2613,2526,-2459,2285,2283,2282,2290,2289]]},{"type":"Polygon","id":20,"arcs":[[3405,3352,-3608,3933,3932,-4271,4351,-4590,-4591,4893,4892,-5255,5330,-5530,-5531,-5533,-5535,-5536,-5467,-5469,-5470,-5543,-5544,-5473,-5474,-5541,-5542,-5464,-5465,-5460,-5461,-5609,-5610,-5538,-5539,-5545,-5546,-5571,-5572,-5573,5555,-5314,-5315,5049,5048,-4827,4772,-4545,4495,-4344,4192,4191,4038,3995,3994,-3877,3749,-3656,3548,3478,3476,3475,3474,3472,3471,3304,3303,3414,3412,3403,3402,3397,3396,3401,3400,3420,3419,3410,3409,3417,3416,3418,3406]]},{"type":"MultiPolygon","id":21,"arcs":[[[5928,-5985]],[[4129,4139,-4258,-4259,4420,4419,4431,4430,-4552,4662,4661,4809,4803,4802,4801,4799,4907,4906,4905,4965,4964,4935,4934,4984,4939,4938,5149,-5181,5371,5370,5374,-5503,5577,5589,5588,5583,-5650,5728,5727,5726,5930,-5986,-5987,-5961,-5962,-5853,-5854,-5965,-5966,-5758,-5679,-5680,-5718,-5719,-5716,-5921,-5922,-5860,-5861,-5941,-5942,-5857,-5912,-5913,-5826,-5827,-5846,-5847,-5838,-5839,-5848,-5849,-5747,5656,-5629,-5249,-5250,-5251,5110,5109,4806,4805,-4744,4492,4491,4367,4366,4345,4344,4175,4174,4155,4154,4153,4131,4130]]]},{"type":"MultiPolygon","id":22,"arcs":[[[-9152]],[[-9129]],[[-9083]],[[9053,9720,9721,9056]],[[-9058,-9042,-8880,-8881,8794,8793,8658,8690,8688,8687,8685,8684,8683,8672,8671,-8524,-8525,-8302,-8303,-8304,8133,8132,8131,8130,-7975,7955,7700,7699,7698,7812,7829,7828,7767,7766,7753,7752,7679,7678,7853,-7936,-7937,-7938,8250,-8262,8436,-8484,-8485,-8675,8720,8719,-8973,9024,9047,-9097,-9074,-9084,-9106,-9154,-9155,-9156,-9157,-9158,-9153,-9116,-9723,-9118,-9724,-9120,-9121,-9725,-9123,-9124,-9125,-9114,-9032,-9131,-9132,-9133,-9134,-9130,-9060,-9726,-9062,-9063,-9064,-9065]]]},{"type":"MultiPolygon","id":25,"arcs":[[[-2717]],[[-2622]],[[-2280,-2170,-9727,-2166,-2162,-2113,-2003,-9728,-2005,-2114,-1930,1743,1778,1777,1776,1800,1799,1747,1731,1730,1881,-1988,-1989,-1990,-2163,-2164,-2165,-2009,-2010,-2011,-2159,-2241,-2242,-2243,-2244,-2245,-2168,-2281]]]},{"type":"MultiPolygon","id":24,"arcs":[[[-4863,-4864,-4865,-4866]],[[-4867,-4868,-4869]],[[4577,-4579,-4580]],[[-4161]],[[-4785,4390,4389,4388,-4266,4095,4094,-4075,3744,3743,3483,3436,3435,3491,3490,3489,3573,3572,3445,3444,3526,3525,3432,3449,3448,3539,-3811,-3812,-3813,-3808,-3809,-3810,-3802,-3803,-3804,-3805,-3838,-4108,-4109,-4110,-4289,-4290,-4615,-4733,-4732,-4617,-4292,-4520,-4191,-4186,-9729,-4188,-4084,-3835,-3826,-3815,-4073,-4162,-4405,-4264,-4583,-4581,-4690,-4871,-4870,-4787,-4788,-4789]]]},{"type":"MultiPolygon","id":23,"arcs":[[[-1280]],[[-1274]],[[-1275]],[[-911]],[[-912]],[[-1386,-1283,-1277,-1112,-593,-913,-807,-357,-559,-809,-878,-879,-880,1296,1295,-1534,-1535,-1376,-1385,-1378,-1389,-1127,-1281,-1387,-1388]]]},{"type":"MultiPolygon","id":26,"arcs":[[[-9492]],[[-9485]],[[-9484]],[[-9481,-9483,-939,-9488,-9486,-1103,-1213,-1372,-1528,-1680,-1780,-1980,-2142,-2195,-2196,-2197,-2292,-2293,-2290,-2291,-2283,-2284,-2286,-2287,-2288,-2273,-2274,2495,-9496,-9495,-1924,-9493,-1571,-9491,-1552,-1435,-9490,-1229,-1070,-9489,-813,-761]],[[-9479]],[[-9471,-9472]],[[-9473]],[[-9474]],[[-9464]],[[-9459,-434,-476,-477,-478,-479,-480,-583,-584,-585,-634,-635,-707,-708,-709,-9467,-572,-9480,-9477,-9730,-9475,-484,-9465,-9461,-444]],[[-9455,-9460,-9457]],[[-9458]]]},{"type":"MultiPolygon","id":27,"arcs":[[[-9445,-105,-58,56,-161,-162,210,-212,317,-347,405,-414,-541,548,-695,742,-832,886,-908,1037,1036,-1169,1211,-1330,-1485,-1486,-1488,-1489,-1510,-1511,-1512,-1521,-1522,-1515,-1516,-1492,-1493,-1495,-1496,-1497,-1508,-1509,-1500,-1501,-1502,1417,-1368,1178,1176,1175,1151,-1135,1064,-1046,-896,-897,791,-791,658,-590,-591,-475,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-203,-9447,-9446,-202,-136,-121]]]},{"type":"Polygon","id":29,"arcs":[[3069,3068,3073,3072,3084,3083,3081,3080,3078,3077,3075,3074,3065,3064,3062,3061,3059,3120,-3261,3295,3477,-3479,-3549,3655,-3750,3876,-3995,-3996,-4039,-4192,-4193,4343,-4496,4544,-4773,4826,-5049,-5050,5314,5313,-5556,5572,-5737,5784,-5963,-5964,-5864,-5865,-5834,-5945,-5946,-5947,-5957,-5958,-5959,-5735,-5914,-5915,-5916,-5943,-5944,-5891,-5997,-5998,-5999,-6000,-6190,-6191,6128,-5928,-5929,-5930,-5931,-5727,-5728,-5729,5649,5582,5581,-5364,-5365,-5175,5135,4945,4944,4726,4725,-4452,-4453,-4519,4375,4374,4373,4158,4064,4063,-3916,3738,3737,-3677,3503,-3483,3228,3227,3107]]},{"type":"MultiPolygon","id":28,"arcs":[[[6789,6808,6778,6777,6776,6807,6806,6802,6801,6773,6772,7053,-7060,7170,7169,-7449,-7450,7702,7701,-7956,7974,-8131,-8132,-8133,-8134,8303,8302,8301,8524,8523,-8672,-8673,-8684,-8685,-8686,-8688,-8689,-8691,-8659,-8794,-8795,8880,-8912,-8894,-8871,8728,8727,-8649,8547,-8461,8275,8274,-8156,7982,7981,-7861,7710,-7638,7483,-7461,7336,-7293,7212,-6990,-6987,6972,6790]]]},{"type":"Polygon","id":30,"arcs":[[-11,-34,23,-35,113,-198,244,-350,-326,-327,520,-522,-728,-729,-730,-752,-644,-645,-646,-648,-821,-822,-692,-693,-758,-759,-760,-671,-672,-673,-512,-513,-514,379,-376,226,-224,129,-110,90,-108,-51,-5,-25,-48,-45,-87,-100,-41]]},{"type":"MultiPolygon","id":37,"arcs":[[[-7317]],[[-7307,-9747]],[[-6927]],[[-6617]],[[-6283,-9748,-6285]],[[-6286]],[[-6071,-6289,-6073,5875]],[[-6074,5866,-6075,5873]],[[-6068,5871,5932,5931,5899,5898,5821,5820,5819,5904,5743,5742,5910,5909,5908,5731,5730,5729,5693,5990,5691,5690,5936,5935,5923,5922,5879,5954,5953,5952,6014,6013,6012,6115,6114,6258,6257,6256,6202,6316,6315,6314,6424,6423,6490,6489,6633,6632,-6857,-6858,-6859,-6918,-6919,-6920,-6840,-6707,-6708,-6786,-6787,-6788,-6731,-6805,-6806,-6668,-6669,-6680,-6681,-6793,-6711,-6712,-6888,-6889,-6883,-6884,-6911,-6964,-7041,-7042,-7043,-7287,-7318,-7319,-7320,-7321,-7310,-9749,-7312,-7151,-7028,-6928,-6794,-6872,-6798,-6841,-6596,-6529,-6597,-6618,-6287,-6619,-6457,-6463,-6276,-6088,-6063,-6222,-6208,-6118,-6079,-6070]]]},{"type":"Polygon","id":38,"arcs":[[-54,-66,-62,-30,-37,-101,-94,-90,-91,109,-130,223,-227,375,-380,513,512,-630,-619,-620,-621,-581,-526,-625,-626,-628,-629,-623,-624,-548,-549,540,413,-406,346,-318,211,-211,161,160,-57]]},{"type":"Polygon","id":31,"arcs":[[1702,1568,1567,1678,1677,1640,-1854,2041,2040,-2530,2543,-2721,-2722,-2690,-2691,-2813,-2959,-2960,3130,-3182,3353,-3406,-3407,-3419,-3417,-3418,-3410,-3411,-3420,-3421,-3401,-3402,-3397,-3398,-3403,-3404,-3413,-3415,-3304,-3305,-3472,-3473,-3475,-3476,-3477,-3478,-3296,3260,-3121,3058,-2927,2869,-2821,2646,2645,-2534,2405,-2299,2198,-2186,2056,2055,1827,1826,1831,1830,1803,1802,1805,1664,1663,1676,1675,1547,1704]]},{"type":"MultiPolygon","id":33,"arcs":[[[878,-890,-891,990,1107,-1256,-1257,1454,-1608,1748,-1800,-1801,-1777,-1778,-1779,-1744,-1745,-1612,1533,-1296,-1297,879]]]},{"type":"MultiPolygon","id":34,"arcs":[[[-3935,-4119,-3798,-3515,-3522,-3332,-3248,-3147,-3057,-3107,-2887,2760,2759,2557,2556,2592,-2744,2806,-2901,-2902,-3113,3244,3243,-3511,-3512,-3657,-3714,-3775,3775,-3777,3777,-3779,-3937,-9750,-3939]]]},{"type":"Polygon","id":35,"arcs":[[5328,5221,5220,5320,5319,5525,5524,5510,5509,5333,5331,-5795,5801,5800,5799,-7210,7631,7630,-8065,-8066,-8139,-7922,-7923,-7818,-7819,-7820,-7997,-7998,-7999,-7690,-7691,-7692,-7693,-7694,7597,-7194,-7195,-7047,-7048,6894,-6592,-6593,6399,-5806,-5807,-5808]]},{"type":"Polygon","id":32,"arcs":[[1887,1575,1574,1251,1425,1424,1598,2377,-2379,-2380,-2381,-2382,4127,4126,-4304,-4305,-4306,-3794,-4319,4569,-4776,-4251,5482,-5939,-5940,-4624,-4625,-4626,-4627,3989,-3554,-3555,2908,-2357,2346,2012]]},{"type":"MultiPolygon","id":36,"arcs":[[[-3227]],[[-2772]],[[-2773,-3043,-3110,-3142,-3112,-3045,-9751,-3047]],[[-1821]],[[-1266]],[[-2740,2538,2537,-2278,-2279,1988,1987,-1882,1729,-1544,1479,1286,-1198,1120,-998,992,-995,-1022,-1007,-1272,-1273,-1267,-9752,-1269,-1562,-1692,-1718,-1713,-1706,-1710,-1822,-2052,-2053,-2054,-2077,-2078,-2081,-2082,-2048,-2049,-2182,-2183,-2151,-2152,-2148,-2149,-2084,-2316,-2317,-2556,-2557,-2558,-2760,-2761,-2759,-2621,-2741,-3037,-3088,-3039,-2743]]]},{"type":"MultiPolygon","id":39,"arcs":[[[2191,-2389,-2433,-2567,-2623,-2582,-2661,-2507,-9755,-2509,-2491,-2492,-2493,-2494,-2495,-2496,2273,2272,2287,2286,2458,-2527,2612,-2704,2788,2787,-3006,3031,-3154,3283,-3391,-3392,3606,-3705,3799,-3920,-4129,-4130,-4131,-4132,-4154,-4155,-4156,-4175,-4176,-4345,-4346,-4367,-4368,-4492,-4493,-4494,-4495,-4360,-4361,-4225,-4223,4059,-3989,-3885,-3886,-3887,-3729,-3730,3598,-3521,3508,-3254,-3255,3232,-3026,-3027,2895,-2892,2661,-2658,2435,-2393]]]},{"type":"Polygon","id":40,"arcs":[[5466,5535,5534,5532,5530,5529,5329,5807,-5809,-5810,-5812,-5813,-5814,-5816,-5817,-6042,-6043,6396,-6430,6663,-6723,6906,-6966,-6967,-7071,-7072,-7174,-7175,-7264,-7265,-7375,-7376,-7478,-7479,-7480,-7418,-7435,-7436,-7437,-7439,-7440,-7268,-7269,-7270,-7271,7151,-6813,-6814,6761,6760,-6649,6582,-6346,6280,6143,-5976,5962,-5785,5736,5571,5570,5545,5544,5538,5537,5609,5608,5460,5459,5464,5463,5541,5540,5473,5472,5543,5542,5469,5468]]},{"type":"MultiPolygon","id":41,"arcs":[[[-615,-767,-971,-1291,-1456,-1606,-1885,-1886,-1967,-1968,-1876,-1595,-1596,-1598,-1599,-1425,-1426,-1252,-1253,-1254,-1255,1080,-964,903,-705,516,531,578,508,551,550,552,498,497,689,688,687,686,685,598,597,684,-656,602,-653]]]},{"type":"MultiPolygon","id":42,"arcs":[[[2052,-2191,-2192,2392,-2436,2657,-2662,2891,-2896,3026,-3095,3234,-3325,-3326,-3327,3597,-3601,-3602,-3538,-3539,-3540,-3449,-3450,-3433,-3526,-3527,-3445,-3446,-3573,-3574,-3490,-3491,-3492,-3436,-3437,-3484,-3485,-3486,-3575,-3743,-3577,-3578,-3545,3510,-3244,-3245,3112,2901,2900,-2807,2743,-2593,2555,2316,2315,2083,2148,2147,2151,2150,2182,2181,2048,2047,2081,2080,2077,2076,2053]]]},{"type":"MultiPolygon","id":44,"arcs":[[[-2535]],[[-2536]],[[2243,-2537]],[[2158,2010,2311,2310,-2445,2518,-2545,-2447,-2314,-2443,2241,2240]]]},{"type":"MultiPolygon","id":45,"arcs":[[[-8104]],[[-8105]],[[-8107]],[[-8108]],[[-9497]],[[-9501,-7628,-7369,7317,7286,7042,7041,7040,6963,6910,6883,6882,6888,6887,6711,6710,6792,6680,6679,6668,6667,6805,6804,6730,6787,6786,6785,6707,-6955,-6956,-6957,-6958,-6959,-7095,-7096,-7289,7381,-7473,-7474,-7519,-7520,-7576,-7577,-7743,7857,-7899,7926,-7928,-8074,-8075,-8076,-8106,-8078,-9759,-8080,-9760,-8082,-8109,-7897,-9498,-9761,-9500,-7729,-9502]]]},{"type":"Polygon","id":46,"arcs":[[619,618,629,511,672,671,-930,1025,-1174,-1236,1370,-1482,1641,-1678,-1679,-1568,-1569,-1703,-1705,-1548,-1676,-1677,-1664,-1665,-1806,-1803,-1804,-1831,-1832,-1827,-1828,-1829,-1830,1749,-1658,1645,-1520,1484,1329,-1212,1168,-1037,-1038,907,-887,831,-743,694,547,623,622,628,627,625,624,525,580,620]]},{"type":"Polygon","id":47,"arcs":[[5757,5965,5964,5853,5852,5961,5960,5986,5985,5929,5984,5927,-6129,6190,-6301,6445,6444,6443,6442,-6639,6774,-6802,-6803,-6807,-6808,-6777,-6778,-6779,-6809,-6790,-6791,-6792,-6734,-6748,-6758,-6759,-6820,-6821,-6826,-6827,-6842,-6843,-6754,-6755,-6756,-6829,-6830,-6863,-6864,6856,-6633,-6634,-6490,-6491,-6424,-6425,-6315,-6316,-6317,-6203,-6257,-6258,-6259,-6115,-6116,-6013,-6014,-6015,5951,5883,5882,5995,5886,5919,5918,5917,5906,5905,5847,5838,5837,5846,5845,5826,5825,5912,5911,5856,5941,5940,5860,5859,5921,5920,5715,5718,5717,5679,5678]]},{"type":"MultiPolygon","id":48,"arcs":[[[-9373,-9374,-9418,-9419,-9420,-9417,-9376]],[[-9377,-9378,-9379,-9380]],[[-9381,-9351,-9762,-9353,-9382,-9383]],[[-9330]],[[-9302]],[[-9270,-9763,-9272]],[[-9181]],[[-9182,-9052,-9135,-9185,-9137,-9047,-9048,-9025,8972,-8720,-8721,8674,8484,8483,-8437,8261,-8251,7937,7936,7935,-7854,7677,-7649,7549,7268,7267,7439,7438,7436,7435,7434,7417,7479,7478,7477,7375,7374,7264,7263,7174,7173,7071,7070,6966,6965,-6907,6722,-6664,6429,-6397,6042,6041,5816,5815,5813,5812,5811,5809,5808,5806,5805,-6400,6592,6591,-6895,7047,7046,7194,7193,-7598,7693,7692,7691,7690,7689,7998,7997,7996,7819,7818,7817,7922,-8423,-8421,-8915,-8899,-8903,-9004,-9179,-9241,-9310,-9371,-9412,-9414,-9431,-9430,-9423,-9424,-9425,-9421,-9388,-9389,-9384,-9357,-9333,-9331,-9316,-9764,-9318,-9305,-9319,-9304,-9289,-9309,-9307,-9269,-9267,-9308,-9291,-9274,-9235,-9215,-9765,-9217,-9277,-9276,-9219,-9273,-9228,-9226,-9187,-9184]]]},{"type":"Polygon","id":49,"arcs":[[2045,2134,2099,2098,2013,-2347,2356,-2909,3554,3553,-3990,4626,4625,4624,-5353,-5429,-5430,-4752,-4753,-4754,-4755,-4756,-4757,4627,-4021,3564,-3093,-3094,2971,2970,2188,2187,2609,-2339,1726]]},{"type":"MultiPolygon","id":51,"arcs":[[[-5866,-5867,-5868]],[[-5418]],[[-5068,4787,-5069,-5070,-5419,-5072]],[[-5201,-5075,-4876,-4811,-4676,-4407,-4336,-4499,-4412,4381,4108,4107,3837,3804,4018,4017,3898,3854,3993,-4035,4184,4183,4399,4398,4397,4534,4533,-4888,4897,-5133,5287,5286,5193,5390,5389,5388,5424,5423,5111,5250,5249,5248,5628,-5657,5746,5848,-5906,-5907,-5918,-5919,-5920,-5887,-5996,-5883,-5884,-5952,-5953,-5954,-5955,-5880,-5923,-5924,-5936,-5937,-5691,-5692,-5991,-5694,-5730,-5731,-5732,-5909,-5910,-5911,-5743,-5744,-5905,-5820,-5821,-5822,-5899,-5900,-5932,-5933,-5872,-5873,-5874,-5875,-5876,-5869,-5844,-5870,-5934,-5841,-5893,-5935,-5895,-5898,-5682,-5641,-5602,-5593,-5414,-5297,-5444,-5487,-5655,-5703,-5675,-5673,-5555,-5486,-5344,-5162,-5120,-5121,-5383,-5438,-5385,-5238,-4991,-4814,-4877,-5014,-5202]]]},{"type":"Polygon","id":50,"arcs":[[-983,-992,-993,997,-1121,1197,-1287,-1480,1543,-1730,-1731,-1732,-1748,-1749,1607,-1455,1256,1255,-1108,-991,890,-988,-999]]},{"type":"MultiPolygon","id":53,"arcs":[[[-319]],[[-304]],[[-272]],[[-231]],[[-184]],[[-118]],[[-119]],[[-120]],[[-126,-195,-182,-196,-305,-368,-407,-322,-373,-276,-372,-273,-324,-232,-185,-186,-233,-341,-466,-605,-602,-603,655,-685,-598,-599,-686,-687,-688,-689,-690,-498,-499,-553,-551,-552,-509,-579,530,-399,-400,363,-249,-250,110,-83,21,-81,-76,-84,-69,-1,-2,-129]]]},{"type":"MultiPolygon","id":55,"arcs":[[[-9470]],[[-9453]],[[-9450,-9448,139,474,590,589,-659,790,-792,896,895,1045,-1065,1134,-1152,-1176,-1177,-1179,1367,-1418,1501,-1558,1651,-1690,-1772,-1773,-1774,-1960,-1961,-1940,-1941,-1944,-1945,-1950,-1951,-2020,-2021,-2022,-1955,-1796,-1621,-1473,-1286,-1160,-9469,-1158,-1151,-874,-9770,-876,-9468,706,634,633,584,583,582,479,478,477,476,-558,-554,-9452]],[[-9454]]]},{"type":"Polygon","id":54,"arcs":[[3094,3025,-3233,3254,3253,-3509,3520,-3599,3729,3728,3886,3885,3884,3988,-4060,4222,4224,4360,4359,4494,4493,4743,-4806,-4807,-5110,-5111,-5112,-5424,-5425,-5389,-5390,-5391,-5194,-5287,-5288,5132,-4898,4887,-4534,-4535,-4398,-4399,-4400,-4184,-4185,4034,-3994,-3855,-3899,-4018,-4019,3803,3802,3801,3809,3808,3807,3812,3811,3810,3538,3537,3601,3600,-3598,3326,3325,3324,-3235]]},{"type":"Polygon","id":56,"arcs":[[820,647,645,644,1116,-1161,-1162,1589,-1725,-1726,-1727,2338,-2610,-2188,-2189,-2190,-2128,-2129,-2130,-2132,-2133,-2542,-2543,-2544,2529,-2041,-2042,1853,-1641,-1642,1481,-1371,1235,1173,-1026,929,670,759,758,757,692,691,821]]}]},"land":{"type":"MultiPolygon","arcs":[[[-9441]],[[-9442]],[[-9373,-9374,-9418,-9419,-9420,-9417,-9376]],[[-9409]],[[-9377,-9378,-9379,-9380]],[[-9381,-9351,-9762,-9353,-9382,-9383]],[[-9330]],[[-9337,-9702]],[[-9302]],[[-9270,-9763,-9272]],[[-9253]],[[-9181]],[[-9152]],[[-9129]],[[-9083]],[[9053,9720,9721,9056]],[[-9100]],[[-9703,-9170,-9704,-9168]],[[-9016]],[[-8936,-9023]],[[-9705,-8817,-9706,-8819]],[[-8938]],[[-8731]],[[-8633,-9715]],[[-8551]],[[-8360]],[[-8361]],[[-8310]],[[-8311]],[[-8312]],[[-8104]],[[-8105]],[[-8107]],[[-8108]],[[-9497]],[[-7090]],[[-7057]],[[-7091]],[[-7317]],[[-6932]],[[-6933]],[[-7307,-9747]],[[-6934]],[[-6927]],[[-6617]],[[-6283,-9748,-6285]],[[-6286]],[[-5418]],[[-4863,-4864,-9775,-4866]],[[-4867,-9776,-4869]],[[4577,-4579,-4580]],[[-4161]],[[-3227]],[[-2772]],[[-2773,-3043,-3110,-3142,-3112,-3045,-9751,-3047]],[[-2717]],[[-2622]],[[-2535]],[[-2536]],[[-9492]],[[-1821]],[[-1280]],[[-1266]],[[-1274]],[[-1275]],[[-911]],[[-912]],[[-9485]],[[-9470]],[[-9484]],[[-9479]],[[-9471,-9472]],[[-9473]],[[-9474]],[[-9464]],[[-9453]],[[-9454]],[[-9455,-9460,-9457]],[[-9458]],[[-1267,-9752,-1269,-1562,-1692,-1718,-1713,-1706,-1710,-1822,-2052,-2191,-2389,-2433,-2567,-2623,-2582,-2661,-2507,-9755,-2509,-2491,-9738,-2493,-9736,-2495,-9496,-9495,-1924,-9493,-1571,-9491,-1552,-1435,-9490,-1229,-1070,-9489,-813,-761,-9481,-9483,-939,-9488,-9486,-1103,-1213,-1372,-1528,-1680,-1780,-1980,-2142,-2195,-2456,-2525,-2520,-2231,-2108,-2022,-1955,-1796,-1621,-1473,-1286,-1160,-9469,-1158,-1151,-874,-9770,-876,-9468,-708,-709,-9467,-572,-9480,-9477,-9730,-9475,-484,-9465,-9461,-444,-9459,-434,-476,-558,-554,-9452,-9450,-9448,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-203,-9447,-9446,-202,-136,-121,-9445,-105,-58,-54,-66,-62,-30,-37,-101,-94,-90,-108,-51,-5,-25,-48,-45,-87,-100,-41,-11,-34,-21,-81,-76,-84,-69,-1,-9766,-9777,-9768,-186,-233,-341,-466,-605,-602,-653,-615,-767,-971,-1291,-1456,-1606,-1885,-2365,-2673,-3614,-4479,-4854,-4481,-4468,-4698,-4470,-4699,-4549,-4857,-5028,-5167,-5450,-5303,-5206,-5300,-5621,-5902,-6560,-6935,-7059,-7092,-7556,-7731,-7775,-7760,-8216,-8533,-8237,-8066,-8139,-7922,-8423,-8421,-8915,-8899,-8903,-9004,-9179,-9241,-9310,-9371,-9412,-9414,-9431,-9430,-9423,-9424,-9425,-9421,-9388,-9389,-9384,-9357,-9333,-9331,-9316,-9764,-9318,-9305,-9319,-9304,-9289,-9309,-9307,-9269,-9267,-9308,-9291,-9274,-9235,-9215,-9765,-9217,-9277,-9276,-9219,-9273,-9228,-9226,-9187,-9184,-9182,-9052,-9135,-9185,-9137,-9047,-9097,-9074,-9084,-9106,-9154,-9155,-9156,-9157,-9158,-9153,-9116,-9723,-9118,-9724,-9120,-9121,-9725,-9123,-9124,-9125,-9114,-9032,-9131,-9132,-9133,-9134,-9130,-9060,-9726,-9062,-9063,-9064,-9065,-9058,-9042,-8880,-8912,-8894,-8871,-8730,-8702,-9700,-8704,-8815,-8820,-8829,-8835,-8827,-8836,-8947,-9035,-8945,-9036,-9101,-9038,-9102,-9000,-8896,-8996,-9444,-9189,-9712,-9244,-9280,-9292,-9320,-9322,-9345,-9362,-9400,-9364,-9401,-9410,-9426,-9443,-9436,-9713,-9438,-9714,-9440,-9434,-9433,-9405,-9394,-9707,-9396,-9708,-9392,-9359,-9709,-9361,-9334,-9257,-9204,-9258,-9710,-9260,-9199,-9166,-9021,-9711,-9017,-8934,-9018,-9141,-9200,-9209,-9196,-9145,-9045,-8941,-8869,-8734,-8637,-9716,-8639,-8553,-8365,-8362,-8307,-8313,-8076,-8106,-8078,-9759,-8080,-9760,-8082,-8109,-7897,-9498,-9761,-9500,-7729,-9502,-9501,-7628,-7369,-7319,-9778,-7321,-7310,-9749,-7312,-7151,-7028,-6928,-6794,-6872,-6798,-6841,-6596,-6529,-6597,-6618,-6287,-6619,-6457,-6463,-6276,-6088,-6063,-6222,-6208,-6118,-6079,-6070,-6068,-5873,-6074,-5868,-5866,-6075,-5875,-6071,-6289,-6073,-5869,-5844,-5870,-5934,-5841,-5893,-5935,-5895,-5898,-5682,-5641,-5602,-5593,-5414,-5297,-5444,-5487,-5655,-5703,-5675,-5673,-5555,-5486,-5344,-5162,-5120,-5121,-5383,-5438,-5385,-5238,-4991,-4814,-4877,-5014,-5202,-5201,-5075,-4876,-4811,-4676,-4407,-4336,-4499,-4412,-4383,-4290,-4615,-4733,-4732,-4617,-4292,-4520,-4191,-4186,-9729,-4188,-4084,-3835,-3826,-3815,-4073,-4162,-4405,-4264,-4583,-4581,-4690,-4871,-4870,-4787,-5069,-5070,-5419,-5072,-5068,-4789,-4785,-4392,-9779,-4394,-4094,-3747,-3578,-3545,-3512,-3657,-3714,-3775,-9780,-3777,-9781,-3779,-3937,-9750,-3939,-3935,-4119,-3798,-3515,-3522,-3332,-3248,-3147,-3057,-3107,-2887,-2759,-2621,-2741,-3037,-3088,-3039,-2743,-2740,-2540,-2551,-9701,-2553,-2550,-2518,-2545,-2447,-2314,-2443,-2243,-2537,-2245,-2168,-2281,-2280,-2170,-9727,-2166,-2162,-2113,-2003,-9728,-2005,-2114,-1930,-1745,-1612,-1535,-1376,-1385,-1378,-1389,-1127,-1281,-1387,-1388,-1386,-1283,-1277,-1112,-593,-913,-807,-357,-559,-809,-878,-890,-988,-999,-983,-992,-995,-1022,-1007,-1272,-1273]],[[-9681,-9679,-9682,-9683,-9687,-9686,-9623,-9636,-9630,-9697,-9632,-9538,-9539,-9540,-9535,-9542,-9533,-9543,-9530,-9698,-9528,-9544,-9553,-9699,-9666,-9641,-9647,-9663,-9653,-9664,-9655,-9665,-9662,-9657,-9669,-9670,-9667,-9603,-9599,-9612,-9606,-9609,-9567,-9610,-9562,-9580,-9579,-9564,-9586,-9696,-9588,-9576,-9692,-9578,-9585,-9566,-9608,-9604,-9611,-9601,-9668,-9659,-9678,-9676]],[[-9548]],[[-9685]],[[-9593,-9618,-9581,-9694,-9583,-9619,-9617,-9595,-9596,-9597]],[[-9627]],[[-9598,-9557,-9558,-9589,-9695,-9591,-9560,-9554]],[[-9616,-9614,-9693]],[[-9524]],[[-9574]],[[-9522]],[[-9629]],[[-9573]],[[-9550]],[[-9521]],[[-9622]],[[-9621]],[[-9518]],[[-9650]],[[-9569]],[[-9520]],[[-9515]],[[-9572]],[[-9571]],[[-9651]],[[-9570]],[[-9513]],[[-9613]],[[-9690]],[[-9526]],[[-9517]],[[-9628]],[[-9514]],[[-9534]],[[-9523]],[[-9652]],[[-9547]],[[-9525]],[[-9620]],[[-9516]],[[-9519]],[[-9549]],[[-9688]],[[-9689]],[[-9531]],[[-9691]],[[-9505]],[[-9509]],[[-9508]],[[-9510]],[[-9507,-9503]],[[-9511]],[[-9512]],[[-9506]]]}},"arcs":[[[15540,402],[1422,708],[1302,595]],[[15707,1885],[55,-354],[-197,-260],[-151,-684],[126,-185]],[[18212,3020],[-238,-44],[-2267,-1091]],[[18264,1705],[-12,231],[107,-8],[-49,649],[81,262],[-179,181]],[[38180,8233],[1575,305]],[[37487,13074],[155,-1977],[76,-315],[161,35],[-14,-674],[168,-74],[-4,-224],[90,-1292],[61,-320]],[[39051,12368],[-125,-27],[-74,407],[-363,382],[-167,-54],[-21,179],[-215,51],[-358,-67],[-241,-165]],[[39925,12326],[-235,-128],[-339,-36],[-238,-190],[-62,396]],[[40110,10257],[-78,1295],[-59,-10],[-48,784]],[[39755,8538],[-100,648],[193,35],[-60,976],[322,60]],[[27113,5232],[964,329]],[[26272,8740],[79,-786],[253,87],[149,-1289],[-20,-335],[365,122],[-68,-95],[134,-205],[-138,-302],[75,-100],[12,-605]],[[26775,9784],[37,-319],[-572,-185],[32,-540]],[[28139,10967],[87,-292],[-48,-159],[25,-673],[-253,-677],[-296,9],[33,246],[-671,-221],[-52,647],[-189,-63]],[[28388,11046],[-249,-79]],[[28867,11210],[-479,-164]],[[29247,9951],[-166,86],[-59,630],[-134,40],[-21,503]],[[29270,9271],[143,646],[-166,34]],[[28849,8456],[141,288],[-26,268],[306,259]],[[28077,5561],[42,356],[-73,56],[122,313],[179,-88],[108,181],[33,306],[-109,437],[391,397],[-55,320],[169,190],[-35,427]],[[23768,4024],[1427,529]],[[23693,4586],[75,-562]],[[24965,6394],[-1078,-396],[166,-1278],[-360,-134]],[[25195,4553],[-230,1841]],[[36623,7906],[1557,327]],[[35281,12427],[61,-706],[392,96],[48,-256],[255,113],[71,-911],[33,7],[65,-845],[91,106],[82,-538],[49,-651],[89,20],[106,-956]],[[36106,13192],[-672,-390],[-153,-375]],[[36677,13825],[3,-447],[-194,-160],[-380,-26]],[[37487,13074],[-67,251],[-280,-162],[-214,343],[-167,113],[-82,206]],[[48532,9669],[974,67]],[[48542,11385],[18,-651],[-56,-8],[28,-1057]],[[49517,11454],[-975,-69]],[[49506,9736],[-23,1055],[49,8],[-15,655]],[[25195,4553],[1918,679]],[[24831,7455],[134,-1061]],[[26272,8740],[-212,-83],[-89,350],[-151,59],[-357,-199],[15,-277],[-143,-808],[10,-272],[-481,169],[-33,-224]],[[46583,9499],[1949,170]],[[47178,11271],[-585,-57],[22,-656],[-67,-28],[35,-1031]],[[48347,11372],[-194,-16],[9,-328],[-974,-85],[-10,328]],[[48542,11385],[-195,-13]],[[28077,5561],[561,188],[2176,664]],[[30633,8357],[-577,-194],[-72,644],[-1135,-351]],[[30814,6413],[-181,1944]],[[34780,7474],[-51,318],[-107,1293],[25,446],[-180,563],[-24,600]],[[32939,7010],[1841,464]],[[32654,9912],[245,-2590],[40,-312]],[[34443,10694],[-288,-62],[29,-332],[-178,-36],[28,-325],[-1156,-300],[-30,325],[-194,-52]],[[34780,7474],[1843,432]],[[34312,12178],[131,-1484]],[[35281,12427],[-60,-234],[-499,-123],[-234,215],[-176,-107]],[[39755,8538],[1558,271]],[[41346,10467],[-1236,-210]],[[41313,8809],[10,339],[-55,976],[97,17],[-19,326]],[[51844,9847],[1071,31]],[[51858,11574],[-26,-660],[12,-1067]],[[53001,11606],[-1143,-32]],[[52915,9878],[79,568],[-26,135],[130,576],[-97,449]],[[52915,9878],[1222,19]],[[54159,11618],[-1158,-12]],[[54137,9897],[-2,1067],[24,654]],[[50286,9780],[-19,1062],[44,3],[-12,656]],[[49506,9736],[780,44]],[[49504,12110],[13,-656]],[[49942,12138],[-438,-28]],[[50299,11501],[-13,654],[-344,-17]],[[50286,9780],[1558,67]],[[51273,11549],[-974,-48]],[[51858,11574],[-585,-25]],[[18264,1705],[1169,528],[1729,741]],[[18214,3512],[-73,-400],[71,-92]],[[19102,6143],[-261,-116],[-79,-444],[-95,-97],[-165,-437],[-3,-279],[-177,-540],[-109,-189],[76,-379],[-75,-150]],[[20402,6695],[76,-195],[-63,-387],[-126,-204],[-321,80],[-44,160],[-131,-167],[-345,160],[-4,-364],[-118,-95],[-200,92],[-24,368]],[[20405,6768],[-3,-73]],[[20591,6791],[-186,-23]],[[21162,2974],[-180,1269],[-50,-19],[-90,629],[38,17],[-289,1921]],[[22085,3354],[1110,442]],[[21308,7334],[-5,-495],[235,-62],[39,-251],[209,-399],[-7,-689],[286,-806],[-60,-878],[80,-400]],[[22037,7899],[-72,-116],[-318,57],[-123,-617],[-216,111]],[[22713,7303],[-144,-59],[-125,920],[-211,-309],[-196,44]],[[23195,3796],[-39,285],[-100,-38],[-42,316],[-95,-37],[-46,347],[-96,-39],[-43,320],[189,72],[-263,1920],[95,37],[-42,324]],[[23195,3796],[573,228]],[[23291,7534],[-578,-231]],[[23693,4586],[-402,2948]],[[21162,2974],[923,380]],[[21308,7334],[-51,185],[-239,-228],[-28,-235],[-167,-110],[-55,131],[-177,-286]],[[32654,9912],[-106,-27],[-29,322],[-865,-233]],[[32165,6805],[774,205]],[[31685,9648],[199,55],[281,-2898]],[[31654,9974],[31,-326]],[[42805,9036],[1642,224]],[[42737,10412],[68,-1376]],[[44467,10647],[-1730,-235]],[[44447,9260],[-46,1027],[80,32],[-14,328]],[[44447,9260],[1359,160]],[[44453,10975],[14,-328]],[[45425,11090],[-972,-115]],[[45778,10142],[-193,-21],[-13,327],[-121,-14],[-26,656]],[[45806,9420],[-28,722]],[[31685,9648],[-382,-108],[48,-485],[-192,-56],[16,-160],[-289,-89],[18,-164],[-271,-229]],[[30814,6413],[1351,392]],[[45806,9420],[777,79]],[[47167,11600],[-1169,-119],[35,-983],[-266,-30],[11,-326]],[[47178,11271],[-11,329]],[[55746,9897],[0,250],[101,181],[243,-140],[6,783],[-376,6],[2,652]],[[54137,9897],[1609,0]],[[55334,11638],[-1175,-20]],[[55722,11629],[-388,9]],[[41313,8809],[1492,227]],[[42693,11332],[-868,-129],[18,-327],[-193,-32],[17,-325],[-321,-52]],[[42737,10412],[-44,920]],[[23257,7786],[34,-252]],[[24276,8508],[-269,-100],[49,-374],[-197,-19],[-602,-229]],[[24721,8329],[-225,-427],[-170,131],[-50,475]],[[24831,7455],[-110,874]],[[45870,13787],[21,-664],[-73,-7],[49,-1317],[-77,-10],[24,-659],[-389,-40]],[[47229,13915],[-1359,-128]],[[47167,11600],[58,334],[-41,1318],[66,6],[-21,657]],[[14940,2215],[154,-335],[8,588],[-162,-253]],[[14668,1815],[73,-309],[157,307],[-93,360],[-137,-358]],[[14912,1608],[185,-278],[253,318],[-161,155],[-277,-195]],[[57080,10995],[248,0],[31,171],[593,65],[94,430],[478,-136],[-1,-158],[384,-223],[179,47]],[[57095,12255],[-15,-1260]],[[57129,14228],[-34,-1973]],[[59146,13972],[-1048,22],[2,198],[-971,36]],[[59086,11191],[25,2116],[35,665]],[[15646,3223],[-169,-392],[-19,-286],[-128,76]],[[17645,4176],[-1999,-953]],[[18214,3512],[-170,-130],[-332,44],[-156,622],[89,128]],[[15330,2621],[-23,-330],[145,-48],[6,222],[173,47],[6,-330],[133,-88],[-63,-209]],[[42624,12815],[69,-1483]],[[44471,12580],[-558,-115],[-46,222],[-386,264],[-152,-272],[55,-104],[-183,-157],[-176,215],[-71,296],[-151,66],[-179,-180]],[[44453,10975],[-28,655],[87,9],[-41,941]],[[47812,13970],[-583,-55]],[[48396,14016],[-584,-46]],[[48347,11372],[-17,655],[59,5],[-34,1320],[59,5],[-18,659]],[[59086,11191],[239,65],[305,238],[139,-20],[-111,306],[88,96],[222,-57],[64,359],[160,484],[149,-111],[-61,-254],[62,-150],[310,-38],[82,350],[319,213]],[[59243,17252],[-45,-1409],[-10,-1222],[-42,-649]],[[59254,18240],[-11,-988]],[[60444,18562],[-24,-382],[-1166,60]],[[60582,18565],[-138,-3]],[[60579,18567],[3,-2]],[[60579,18389],[0,178]],[[60583,18381],[-4,8]],[[60623,18335],[-40,46]],[[60628,18336],[-5,-1]],[[60729,18208],[-101,128]],[[60734,18207],[-5,1]],[[60862,18366],[-128,-159]],[[60862,18365],[0,1]],[[61183,17453],[-445,613],[124,299]],[[61053,12672],[47,1841],[32,641],[51,2299]],[[40911,12286],[-50,-113],[-409,-86],[-527,239]],[[42624,12815],[-128,-245],[-169,70],[-158,-90],[-149,-298],[-190,24],[-350,-100],[-105,-135],[-154,287],[-310,-42]],[[17176,5982],[98,-139],[-120,-331],[148,-324],[-25,-183],[219,-35],[211,-249],[-62,-545]],[[17078,6654],[39,-327],[98,-64],[-39,-281]],[[18386,8561],[-436,-190],[-159,-356],[-201,-130],[-156,-381],[-173,-122],[-57,-361],[-126,-367]],[[19102,6143],[-288,579],[-331,-13],[-10,201],[-298,739],[1,307],[218,206],[-8,399]],[[44704,13747],[4,-296],[156,-354],[-158,-323],[-235,-194]],[[45081,14041],[-261,-115],[-116,-179]],[[45870,13787],[-775,-87],[-14,341]],[[53023,12928],[40,-483],[-66,-278],[59,-173],[-55,-388]],[[53016,13003],[7,-75]],[[53986,13016],[-970,-13]],[[55350,13021],[-1364,-5]],[[55334,11638],[16,1383]],[[48591,14032],[-195,-16]],[[48979,14059],[-388,-27]],[[49504,12110],[-530,-36],[-34,1320],[53,5],[-14,660]],[[50926,13913],[-142,-11],[-72,-320],[-103,74],[-125,-322],[-254,258],[-15,-235],[-103,110],[6,-326],[-191,-189],[15,-814]],[[51294,12867],[-196,-6],[-10,658],[-155,-7],[-7,401]],[[51273,11549],[-10,658],[40,2],[-9,658]],[[51878,12891],[-584,-24]],[[53023,12928],[-1145,-37]],[[55722,11629],[195,-1],[5,657],[1173,-30]],[[55368,13598],[-18,-577]],[[55982,15895],[-25,-1743],[-128,-202],[72,-355],[-533,3]],[[56762,15890],[-780,5]],[[57147,15747],[2,127],[-387,16]],[[57129,14228],[18,1519]],[[31602,10516],[-856,-235],[-57,-409],[-192,-59],[16,-162],[-1243,-380]],[[31654,9974],[-52,542]],[[15589,3462],[-146,91],[67,548],[-148,-372],[42,-436],[182,86]],[[15586,3379],[3,83]],[[15044,3213],[347,-563],[35,523],[-161,-102],[-54,152],[73,268],[-36,645],[120,-257],[129,306],[-87,471],[-57,-266],[-192,-356],[66,-464],[-95,-41],[-88,-316]],[[12324,1196],[140,51],[287,547],[189,190],[234,470],[246,216],[235,68],[378,389],[253,138],[195,-57],[104,336],[134,136]],[[12169,3099],[-35,-349],[67,-491],[-13,-297],[207,-523],[-71,-243]],[[14719,3680],[-32,-15],[-122,720],[-814,-408],[9,-51],[-1591,-827]],[[49756,14111],[-777,-52]],[[50922,14173],[-1166,-62]],[[50926,13913],[-4,260]],[[31499,11596],[103,-1080]],[[32554,12966],[-185,-163],[27,-296],[-142,-39],[-254,-351],[146,-345],[-647,-176]],[[33195,13132],[-641,-166]],[[34312,12178],[-459,7],[-62,611],[-509,350],[-87,-14]],[[15586,3379],[60,-156]],[[15315,5105],[233,-560],[185,-201],[-162,-465],[18,-417]],[[17176,5982],[-1289,-589],[-572,-288]],[[25116,10406],[-158,-326],[119,-132],[-4,-394],[-125,-264],[-227,-961]],[[26261,11628],[-237,-255],[17,-321],[-405,-488],[-520,-158]],[[27119,12418],[-107,31],[-121,-304],[-267,-330],[-363,-187]],[[26775,9784],[-50,710],[346,115],[-100,431],[135,-8],[-128,369],[209,198],[-68,819]],[[61053,12672],[133,24],[6,293],[230,11],[-6,246],[473,-191],[316,-427]],[[62302,15367],[-659,1351],[-135,138],[-325,597]],[[62205,12628],[52,1194],[45,1545]],[[50951,14835],[-38,-3],[9,-659]],[[51731,14866],[-780,-31]],[[51886,14872],[-155,-6]],[[51878,12891],[24,661],[-16,1320]],[[52507,14891],[-621,-19]],[[53380,14900],[-873,-9]],[[53016,13003],[110,491],[68,649],[186,757]],[[53447,15563],[-67,-663]],[[54636,15576],[-1189,-13]],[[55416,15569],[-780,7]],[[55370,13925],[7,988],[39,-1],[0,657]],[[55178,13919],[192,6]],[[54011,13813],[0,440],[195,2],[1,329],[779,0],[0,-331],[193,-2],[-1,-332]],[[53986,13016],[25,797]],[[55178,13919],[-1,-107],[-1166,1]],[[55368,13598],[2,327]],[[40792,13312],[76,-282],[43,-744]],[[41933,15155],[-141,-22],[35,-660],[-123,-18],[18,-328],[-581,-93],[19,-329],[-387,-64],[19,-329]],[[42510,15078],[-139,143],[-438,-66]],[[42624,12815],[-114,2263]],[[18491,8773],[-105,-212]],[[20402,6695],[-178,-75],[-198,206],[-48,319],[-165,211],[-126,400],[-93,-40],[-234,231],[-48,317],[-507,-203],[-103,238],[-152,108],[-59,366]],[[42497,15332],[13,-254]],[[43072,15417],[-575,-85]],[[43934,15534],[-862,-117]],[[44704,13747],[-23,566],[-691,-87],[-56,1308]],[[14976,3870],[111,-154],[-26,321],[-85,-167]],[[14719,3680],[184,-181],[111,698],[-79,370],[-120,202],[-105,385],[-85,-47],[135,-378],[-125,-15],[-139,437],[-150,156]],[[12312,4551],[30,-841],[-42,-296],[-131,-315]],[[13537,5250],[-789,-408],[11,-57],[-447,-234]],[[14346,5307],[-752,-382],[-57,325]],[[30476,12005],[-350,-64],[-173,-238],[-5,-190],[-220,-182],[-367,-10],[-110,-380],[52,-514],[-56,-476]],[[31499,11596],[-386,-107],[-31,323],[-383,-110],[-39,396],[-184,-93]],[[39366,15389],[-127,-23],[41,-657],[-193,-33],[42,-659],[56,11],[81,-1279],[-146,-28],[21,-335],[-90,-18]],[[40400,15569],[-649,-111],[-20,332],[-193,-34],[20,-332],[-192,-35]],[[40792,13312],[-194,-31],[-57,985],[-65,-10],[-76,1313]],[[24041,10270],[235,-1762]],[[23856,11722],[185,-1452]],[[23815,12049],[41,-327]],[[25871,12791],[-2056,-742]],[[25116,10406],[-162,152],[218,371],[10,200],[293,269],[-3,265],[147,277],[134,667],[118,184]],[[28139,10967],[-469,-155],[23,343],[-79,124],[85,350],[-55,267],[78,224],[-38,316],[-167,-56],[-18,163],[-380,-125]],[[21747,9983],[290,-2084]],[[22910,10443],[-1163,-460]],[[22963,10048],[-53,395]],[[23257,7786],[-294,2262]],[[55425,16894],[-9,-1325]],[[56008,16883],[-583,11]],[[55982,15895],[26,988]],[[24041,10270],[-380,-146],[-85,135],[-613,-211]],[[36536,16088],[-70,-115],[127,-417],[-81,-529],[62,-874],[103,-328]],[[39287,16655],[-967,-179],[3,-54],[-1137,-229],[-650,-105]],[[39290,16601],[-3,54]],[[39366,15389],[-76,1212]],[[18274,10572],[112,-264],[13,-492],[-38,-514],[130,-529]],[[18361,11037],[-87,-465]],[[19017,11123],[-76,-213],[-201,228],[-379,-101]],[[19173,10963],[-31,218],[-125,-58]],[[20034,9276],[-191,1289],[-574,-248],[-96,646]],[[20405,6768],[-371,2508]],[[21545,9902],[-1511,-626]],[[21747,9983],[-202,-81]],[[29666,15990],[75,-888],[-120,-202],[-190,-52],[52,-509],[-393,-110],[133,-1292],[-394,-130],[121,-1149],[-80,-39],[-3,-409]],[[30517,15666],[-367,-106],[-104,173],[-190,14],[28,170],[-218,73]],[[31028,15065],[-166,-88],[-61,152],[-53,603],[-231,-66]],[[30840,14430],[-7,273],[195,362]],[[30476,12005],[-116,1204],[140,244],[220,112],[-79,806],[199,59]],[[14940,5630],[88,-403],[75,53],[-31,474],[-132,-124]],[[14241,5594],[218,-290],[267,-52],[181,-427],[299,-302],[-50,641],[-100,-74],[-191,705],[101,-119],[38,336],[-149,348]],[[14492,6177],[74,-422],[-325,-161]],[[14736,6300],[-244,-123]],[[14746,6305],[-10,-5]],[[14855,6360],[-109,-55]],[[58143,17288],[-25,-1055],[-198,45],[-175,-194],[-6,-215],[-140,-271],[-308,257],[-144,-108]],[[59243,17252],[-1100,36]],[[45328,14766],[-84,-193],[26,-605],[-189,73]],[[46726,16084],[-136,-128],[-11,-273],[-108,-374],[113,-233],[-93,-149],[-581,198],[-331,-326],[-251,-33]],[[47158,16538],[-4,-300],[-114,-229],[-314,75]],[[47622,15928],[-116,-10],[-19,647],[-329,-27]],[[47812,13970],[-19,657],[-131,-11],[-40,1312]],[[49784,15096],[-41,-328],[13,-657]],[[50946,15158],[-1162,-62]],[[50951,14835],[-5,323]],[[48596,16005],[33,-1312],[-55,-4],[17,-657]],[[49437,16064],[-841,-59]],[[49764,16083],[-327,-19]],[[49784,15096],[-20,987]],[[48475,15996],[-853,-68]],[[48596,16005],[-121,-9]],[[43977,16865],[58,-1319],[-101,-12]],[[45338,16913],[-581,-66],[-5,110],[-775,-92]],[[45328,14766],[-37,933],[94,10],[-47,1204]],[[33667,16027],[11,-329],[-105,-109],[144,-326],[91,-1090],[-175,-42],[14,-163],[-193,-50],[14,-162],[-192,-48],[28,-327],[-128,-33],[19,-216]],[[34210,16162],[-543,-135]],[[34805,16086],[-577,-140],[-18,216]],[[35382,16224],[-577,-138]],[[36106,13192],[-80,1009],[-420,-61],[-10,135],[-194,-44],[-78,642],[194,46],[-80,983],[-56,322]],[[41555,16980],[-647,-105],[-52,-228],[-195,-33],[13,-219],[-195,-33],[44,-772],[-123,-21]],[[41933,15155],[-55,130],[153,300],[15,778],[-327,643],[-164,-26]],[[14855,6589],[182,-566],[-10,404],[79,111],[-251,51]],[[15004,6759],[152,-38],[-2,-898],[134,-55],[-87,-174],[114,-489]],[[16389,8342],[-279,-257],[-40,-141],[-234,-208],[-237,28],[-199,-316],[-32,-265],[-281,-137],[-83,-287]],[[17078,6654],[-166,33],[-192,265],[-206,134],[-92,221],[27,274],[111,75],[-27,545],[-144,141]],[[32331,15185],[-144,-120],[7,-211],[-296,-469],[-138,-53],[15,-314],[-117,-33],[-27,288],[-581,-117],[-31,324],[-179,-50]],[[32554,12966],[-20,214],[-192,-51],[-95,984],[187,53],[-74,975],[-29,44]],[[51747,16505],[-34,-326],[18,-1313]],[[52137,16520],[-390,-15]],[[52525,16535],[-388,-15]],[[52507,14891],[-13,1318],[31,326]],[[50932,16146],[14,-988]],[[50975,16475],[-43,-329]],[[51747,16505],[-772,-30]],[[53470,16560],[-945,-25]],[[53447,15563],[23,997]],[[14206,6707],[151,-189],[-120,481],[-31,-292]],[[13707,7049],[-422,-206],[86,-651],[166,-942]],[[13902,7092],[-195,-43]],[[14464,6341],[-231,195],[-117,374],[-214,182]],[[14492,6177],[-28,164]],[[14346,5307],[-273,460],[-133,345],[202,87],[-123,-200],[222,-405]],[[26213,13668],[195,25],[68,-816],[185,-52],[-17,-291],[-124,-42],[-6,-220],[-163,-282],[-90,-362]],[[26289,14094],[-76,-426]],[[26697,14127],[-408,-33]],[[27459,14377],[-762,-250]],[[28323,13991],[-279,25],[-23,216],[-296,18],[-24,214],[-242,-87]],[[28388,11046],[-170,1571],[244,76],[-139,1298]],[[28500,16233],[184,-1760],[-125,50],[-236,-532]],[[29230,16459],[-730,-226]],[[29666,15990],[-244,263],[-129,-28],[-63,234]],[[36608,16470],[-1226,-246]],[[36536,16088],[72,382]],[[18274,10572],[-798,-359],[50,-317],[-185,-89],[48,-317],[-580,-263],[-48,-335],[-225,-490],[-147,-60]],[[50932,16146],[-1168,-63]],[[45407,17032],[-69,-119]],[[45916,17086],[-509,-54]],[[46726,16084],[-4,92],[-771,-76],[-35,986]],[[12205,7434],[15,-431],[57,285],[68,-176],[356,-60],[-214,-212],[-24,-209],[-189,-49],[10,336],[-105,-27],[116,-728],[29,-624],[-78,-313],[66,-675]],[[13274,7991],[-1069,-557]],[[13585,8141],[-311,-150]],[[13707,7049],[8,355],[-130,737]],[[54637,16895],[-1,-1319]],[[55425,16894],[-788,1]],[[53455,16889],[15,-329]],[[54442,16897],[-987,-8]],[[54637,16895],[-195,2]],[[26213,13668],[-134,109],[6,-238],[-203,-336],[-11,-412]],[[56602,18196],[195,-2],[-35,-2304]],[[56700,19851],[-74,-97],[-24,-1558]],[[56821,19925],[-121,-74]],[[57306,20182],[-130,-202],[-169,115],[-186,-170]],[[58154,18153],[-870,20],[44,1963],[-22,46]],[[58143,17288],[11,865]],[[94277,9803],[-34,-464],[670,-3346],[315,69],[65,546],[270,177],[400,-635],[295,-150],[-37,-189],[203,-167],[516,373],[159,275],[160,69],[745,4079],[134,978]],[[94725,9588],[-448,215]],[[96173,9579],[-115,-643],[-1333,652]],[[97803,11754],[-536,517],[-180,-1087],[-338,-1841],[-576,236]],[[98138,11418],[-335,336]],[[32869,15760],[-120,114],[-171,-65],[-215,-415],[-32,-209]],[[33667,16027],[-114,-27],[-206,-271],[-478,31]],[[22846,10933],[64,-490]],[[23856,11722],[-186,-124],[-565,-197],[-157,-387],[-102,-81]],[[56025,18204],[-17,-1321]],[[56602,18196],[-577,8]],[[14456,7372],[219,-238],[147,-350],[118,176],[64,-201]],[[14980,8949],[-144,-192],[7,-194],[-225,-201],[-62,-465],[-87,-45],[-13,-480]],[[16098,9403],[-448,-215],[-142,153],[-528,-392]],[[16389,8342],[-210,548],[-128,136],[47,377]],[[14855,6360],[-140,520],[-106,-183],[137,-392]],[[14736,6300],[-171,173],[-174,587],[-41,-323],[114,-396]],[[41515,17646],[40,-666]],[[42367,17940],[-473,-70],[-89,-179],[-290,-45]],[[42497,15332],[-130,2608]],[[43034,18079],[62,-1327],[-87,-12],[63,-1323]],[[43614,18156],[-580,-77]],[[43977,16865],[-303,-36],[-60,1327]],[[42349,18321],[18,-381]],[[43034,18079],[-294,-40],[-16,337],[-375,-55]],[[48457,18635],[42,-1321],[-60,-6],[36,-1312]],[[48711,18656],[-254,-21]],[[49428,18708],[-717,-52]],[[49437,16064],[-29,1314],[54,3],[-34,1327]],[[50064,18749],[-636,-41]],[[50984,18792],[-920,-43]],[[50975,16475],[-15,991],[43,1],[-19,1325]],[[47183,17202],[86,-115],[-111,-549]],[[47564,18562],[-183,-220],[-198,-1140]],[[48457,18635],[-893,-73]],[[47183,17202],[-1267,-116]],[[20906,11680],[-954,-381],[-779,-336]],[[21545,9902],[-174,1278],[-144,428],[-321,72]],[[20820,12232],[25,-558],[61,6]],[[21383,12318],[-168,60],[-355,-20],[-40,-126]],[[22238,13290],[4,-320],[-121,-210],[-120,-490],[-218,20],[-216,-153],[-184,181]],[[22503,13535],[-243,-72],[-22,-173]],[[22560,13105],[-57,430]],[[22846,10933],[-286,2172]],[[51607,18819],[-623,-27]],[[52149,18840],[-542,-21]],[[52137,16520],[-11,993],[38,2],[-15,1325]],[[52768,18859],[-619,-19]],[[53510,18868],[-742,-9]],[[53455,16889],[1,541],[116,284],[-57,594],[-5,560]],[[13902,7092],[275,-158],[-211,319],[367,-257],[123,376]],[[14980,8949],[-1414,-701],[19,-107]],[[41307,17890],[-193,-30],[-9,164],[-199,77],[-391,-66],[6,-110],[-321,-57],[-47,-338],[-128,-25],[-25,-670],[-329,-57],[7,-108],[-388,-69]],[[41515,17646],[-199,79],[-9,165]],[[54471,18544],[2,-987],[-31,-660]],[[56025,18536],[-1554,8]],[[56025,18204],[0,332]],[[53533,18869],[-23,-1]],[[54306,18875],[-773,-6]],[[54471,18544],[3,332],[-168,-1]],[[23481,13113],[-250,-93],[-189,265],[-482,-180]],[[23815,12049],[-145,1140],[-189,-76]],[[15764,10803],[192,87],[-18,-499],[263,-695],[-103,-293]],[[15560,12068],[204,-1265]],[[18047,13211],[-1362,-611],[-1125,-532]],[[18361,11037],[-314,2174]],[[31488,17389],[-71,-333],[153,-454],[-92,-174],[-189,-61],[5,-214],[-112,-210],[50,-329],[-104,-59],[-100,-490]],[[31914,17506],[-426,-117]],[[32680,17740],[-766,-234]],[[32692,17603],[-12,137]],[[32869,15760],[-177,1843]],[[58152,20284],[-23,-37],[-18,-1259],[52,-24],[-9,-811]],[[58722,20600],[-5,-351],[-565,35]],[[59308,20555],[-586,45]],[[59288,19561],[20,994]],[[59254,18240],[34,1321]],[[65544,16667],[45,1002],[105,-7],[14,325],[-192,22],[40,989]],[[64124,17846],[258,-277],[131,32],[301,-117],[287,-295],[151,-339],[215,-44],[77,-139]],[[65572,19326],[-579,72],[-27,-656],[-577,69],[-12,-331],[-191,19],[-22,-655],[-40,2]],[[65556,18998],[16,328]],[[44080,18215],[-466,-59]],[[45358,18361],[-1278,-146]],[[45371,18031],[-13,330]],[[45407,17032],[-36,999]],[[46928,19839],[10,-330],[-387,-36],[33,-983],[-644,-67],[11,-331],[-580,-61]],[[47652,19356],[-207,122],[-304,-41],[-213,402]],[[47564,18562],[140,165],[-52,629]],[[66296,16919],[-31,409],[39,305],[316,-730],[159,-136],[-144,278],[288,-110]],[[66037,18934],[-74,-1638],[195,-26],[-16,-328],[154,-23]],[[66903,18817],[-866,117]],[[66923,16935],[27,555],[81,-10],[16,326],[-190,30],[46,981]],[[23534,13765],[-111,-147],[58,-505]],[[23789,14231],[-21,-170],[-168,-62],[-66,-234]],[[26289,14094],[-1630,54],[-381,674],[-205,-165],[-144,-337],[-140,-89]],[[38874,20630],[84,-1321],[59,10],[79,-1312],[54,10],[81,-1316],[56,-46]],[[40751,20961],[-1877,-331]],[[40973,19657],[-81,-12],[-74,1327],[-67,-11]],[[41307,17890],[-27,494],[-265,-42],[-42,1315]],[[36607,17467],[32,-707],[-31,-290]],[[36669,17534],[-62,-67]],[[37737,20100],[68,-1009],[-106,-11],[35,-996],[-191,-38],[-10,-335],[-864,-177]],[[38591,22915],[-764,-144],[43,-657],[61,16],[85,-1232],[-286,-85],[93,-548],[-86,-165]],[[38874,20630],[-65,-11],[-107,1656],[-69,-7],[-42,647]],[[27635,17228],[-192,-164],[-29,-277],[-171,-107],[103,-215],[-71,-368],[142,-223],[-93,-951],[130,-266],[5,-280]],[[28500,16233],[-17,164],[-377,-117],[-52,617],[-419,331]],[[56044,19863],[-19,-1327]],[[56700,19851],[-656,12]],[[58135,20615],[-875,28],[-35,-207],[81,-254]],[[58152,20284],[-17,331]],[[12428,9551],[-253,71],[-165,-385],[-120,125],[108,-403],[148,-947],[33,249],[-118,752],[87,82],[107,-223],[-19,-204],[109,-187],[-52,-274],[244,-299],[-71,-164],[-123,108],[-164,-206],[26,-212]],[[13035,9489],[-544,-282],[-63,344]],[[13274,7991],[-239,1498]],[[13244,9590],[-209,-101]],[[14694,10305],[-1450,-715]],[[15764,10803],[-1070,-498]],[[30441,18486],[80,-813],[-191,-56],[187,-1951]],[[31488,17389],[-436,-102],[-27,237],[-137,205],[-9,227],[-313,315],[-125,215]],[[60465,19498],[-1177,63]],[[60444,18562],[21,936]],[[63339,18693],[596,-494],[189,-353]],[[64128,19624],[-301,-110],[-193,-639],[-295,-182]],[[64129,19668],[-1,-44]],[[64128,19624],[1,44]],[[65610,20222],[-163,-136],[-1319,-462]],[[65572,19326],[38,896]],[[34970,18499],[45,-544],[-100,-362],[-2,-817],[-128,-34],[20,-656]],[[36607,17467],[-29,380],[-224,-48],[-144,194],[-48,269],[-447,-100],[-137,77],[-31,391],[-577,-131]],[[70302,17232],[559,-52],[383,-377]],[[70346,17933],[-44,-701]],[[70407,18918],[-61,-985]],[[71373,18732],[-966,186]],[[71244,16803],[129,1929]],[[33655,17850],[385,94],[170,-1782]],[[33963,18599],[-288,-74],[28,-327],[-76,-19],[28,-329]],[[34749,18449],[-755,-180],[-31,330]],[[34970,18499],[-221,-50]],[[33655,17850],[-963,-247]],[[19371,13183],[-296,-460],[130,-897],[-152,-435],[-36,-268]],[[20802,12206],[-333,-149],[-300,255],[-72,318],[-193,123],[-65,218],[-338,86],[-130,126]],[[20820,12232],[-18,-26]],[[17931,13966],[116,-755]],[[18634,13947],[-207,-117],[-186,189],[-310,-53]],[[19350,13931],[-246,160],[-470,-144]],[[19371,13183],[78,279],[-14,390],[-85,79]],[[54327,20863],[-21,-661],[0,-1327]],[[55096,20868],[-769,-5]],[[56065,20861],[-969,7]],[[56044,19863],[21,998]],[[45450,19995],[-65,-306],[43,-1320],[-70,-8]],[[45427,20573],[23,-578]],[[46928,19839],[-297,533],[-491,365],[-222,47],[-247,-103],[-11,-159],[-233,51]],[[21442,14790],[158,-1266],[-96,-35],[-26,-533],[-190,-75],[95,-563]],[[21628,14867],[-186,-77]],[[22238,13290],[-25,190],[-301,-9],[-131,970],[-91,-35],[-62,461]],[[42226,20824],[-140,-21],[16,-331],[-397,-64],[18,-321],[-195,-29],[17,-310],[-572,-91]],[[42236,20582],[-10,242]],[[42299,19311],[-63,1271]],[[42349,18321],[-50,990]],[[22805,15328],[99,-99],[145,179],[107,-477],[129,-207],[375,300],[112,-190],[188,26],[-140,-333],[-31,-296]],[[22597,15796],[208,-468]],[[22478,18051],[312,-804],[196,-361],[-121,-688],[-102,-43],[-166,-359]],[[23235,18960],[-205,-165],[-25,-547],[-527,-197]],[[25511,19416],[-1975,-690],[-301,234]],[[25869,18133],[-193,273],[-172,-219],[-39,283],[230,625],[-184,321]],[[26697,14127],[-76,522],[-99,41],[24,257],[-103,157],[-52,383],[-73,40],[-3,385],[-109,-32],[53,279],[-73,390],[97,89],[-51,473],[-137,-38],[-136,250],[58,427],[-112,85],[-36,298]],[[26890,17936],[-611,629],[-117,45],[-147,-456],[-146,-21]],[[27635,17233],[-49,219],[-271,48],[-237,283],[-48,-135],[-140,288]],[[27635,17228],[0,5]],[[47721,21208],[-134,-441],[-23,-359],[118,-369],[24,-418],[-54,-265]],[[48703,21291],[-982,-83]],[[48737,19991],[-34,1300]],[[48711,18656],[-33,1330],[59,5]],[[50038,20071],[-1301,-80]],[[50064,18749],[-26,1322]],[[22480,15206],[-54,-350],[128,-306],[-35,-510],[-82,-220],[66,-285]],[[22597,15796],[-117,-590]],[[23534,13765],[-43,428],[-206,30],[-337,-127],[-143,1232]],[[43920,19528],[-1621,-217]],[[44029,19539],[-109,-11]],[[44080,18215],[-51,1324]],[[50091,20075],[-53,-4]],[[51590,20143],[-1499,-68]],[[51607,18819],[-17,1324]],[[45450,19995],[-773,-90],[12,-293],[-660,-73]],[[53843,21191],[27,-361],[-61,-818],[-204,-573],[-72,-570]],[[54326,21195],[-483,-4]],[[54327,20863],[-1,332]],[[51633,20145],[-43,-2]],[[52757,20179],[-1124,-34]],[[52768,18859],[-11,1320]],[[52828,21504],[-47,-237],[9,-1087],[-33,-1]],[[53862,21521],[-1034,-17]],[[53843,21191],[19,330]],[[20847,14545],[114,-765],[-189,-76],[46,-325],[-189,-75],[173,-1098]],[[20876,14557],[-29,-12]],[[21442,14790],[-566,-233]],[[20847,14545],[-1497,-614]],[[63133,18646],[204,46]],[[63593,20896],[-23,-660],[-192,22],[-10,-328],[-195,17],[-40,-1301]],[[63994,20852],[-401,44]],[[64129,19668],[45,1164],[-180,20]],[[63337,18692],[2,1]],[[94026,13509],[212,-368],[-82,-198],[176,-456],[1,-201],[-160,-237],[42,-521],[-110,-131],[44,-568],[171,-419],[-43,-607]],[[95603,16950],[-141,-198],[-169,-661],[-143,119],[-24,-368],[-185,-631],[-193,165],[-52,-182],[-158,142],[-512,-1827]],[[96253,16308],[-35,-92],[-216,185],[130,240],[-11,192],[-407,21],[-111,96]],[[96547,16048],[-199,-30],[-95,290]],[[96194,14823],[353,1225]],[[94725,9588],[93,669],[258,1528],[64,-54],[130,404],[-77,119],[14,341],[-129,116],[256,360],[-70,340],[566,1838],[364,-426]],[[96173,9579],[439,2606],[-187,181],[86,553],[151,-133],[304,989],[-149,135],[89,282],[-712,631]],[[29168,16777],[62,-318]],[[29596,18570],[-298,-415],[5,-1003],[-26,-354],[-109,-21]],[[30206,18557],[-170,-278],[-276,-21],[-164,312]],[[30441,18486],[-235,71]],[[69270,19447],[-38,-662],[385,-61],[-39,-659],[768,-132]],[[69599,20929],[-29,-528],[-48,8],[-58,-993],[-194,31]],[[70472,19965],[-62,197],[-248,-128],[-199,43],[-170,196],[-56,508],[-138,148]],[[70407,18918],[65,1047]],[[34717,20448],[-75,-297],[89,-1042],[18,-660]],[[34980,21074],[-67,-240],[-150,-149],[56,-320],[-102,83]],[[36899,19266],[-252,-55],[-16,220],[-191,-41],[-152,301],[-257,-57],[-66,431],[-77,1004],[-390,24],[-9,110],[-509,-129]],[[36669,17534],[156,533],[-11,165],[190,540],[-105,494]],[[37737,20100],[-175,-34],[12,-166],[-193,-37],[12,-164],[-384,-79],[23,-327],[-133,-27]],[[22480,15206],[-852,-339]],[[45412,20986],[15,-413]],[[47721,21208],[-2309,-222]],[[65556,18998],[481,-64]],[[65704,20301],[-94,-79]],[[66100,20478],[-206,1],[-190,-178]],[[66995,20708],[-210,-130],[-265,-9],[-189,-149],[-119,138],[-112,-80]],[[66934,19474],[61,1234]],[[66903,18817],[31,657]],[[59200,22191],[-19,-954],[137,-8],[-10,-674]],[[59669,22168],[-469,23]],[[60486,20487],[7,314],[-85,232],[-131,-13],[-53,188],[-257,166],[-188,417],[-110,377]],[[60465,19498],[21,989]],[[97257,15846],[-44,-50],[-491,474],[-86,-297],[-89,75]],[[97261,15842],[-4,4]],[[98041,13165],[-351,316],[129,419],[-181,159],[88,297],[-182,158],[224,754],[-345,344],[-42,264],[-120,-34]],[[97803,11754],[406,1277],[-168,134]],[[14485,11517],[209,-1212]],[[14173,13372],[312,-1855]],[[14726,13236],[-553,136]],[[15373,13244],[-281,-12],[-159,-123],[-207,127]],[[15560,12068],[-134,-61],[-149,963],[140,67],[-44,207]],[[13119,10359],[125,-769]],[[13118,10370],[1,-11]],[[13554,11866],[25,-408],[-57,-532],[-258,-533],[-146,-23]],[[14485,11517],[-184,267],[-273,-213],[-167,111],[-115,-77],[-192,261]],[[13119,10359],[-179,-40],[-163,-525],[-278,-111],[-71,-132]],[[56081,22132],[-16,-1271]],[[56854,22115],[-773,17]],[[56821,19925],[33,2190]],[[57435,22094],[-581,21]],[[58224,21887],[-917,32],[128,175]],[[58135,20615],[8,661],[65,-1],[16,612]],[[65704,20301],[14,348],[-177,22],[14,330]],[[64008,21174],[-14,-322]],[[65555,21001],[-205,10],[13,162],[-196,8],[-7,-155],[-1152,148]],[[11743,11220],[71,-614],[132,-164],[43,-386],[-33,-503],[195,388],[163,-107],[42,159],[207,44],[170,-107],[140,442]],[[12648,11696],[-540,-249],[-365,-227]],[[12873,10372],[-225,1324]],[[43864,20803],[56,-1275]],[[43947,20815],[-83,-12]],[[45409,20986],[-1462,-171]],[[45412,20986],[-3,0]],[[51614,21466],[19,-1321]],[[51660,21468],[-46,-2]],[[52828,21504],[-1168,-36]],[[48955,21311],[-252,-20]],[[50063,21382],[-1108,-71]],[[50091,20075],[-28,1307]],[[50500,21409],[-437,-27]],[[51614,21466],[-1114,-57]],[[43864,20803],[-1628,-221]],[[28265,17733],[-191,-116],[-325,316],[-114,-700]],[[29168,16777],[-176,115],[-149,-46],[-32,328],[-115,-35],[-154,167],[0,227],[-277,200]],[[66934,19474],[775,-112],[48,988]],[[67113,21231],[-129,-136],[93,-210],[-82,-177]],[[67452,21405],[-339,-174]],[[67757,20350],[17,332],[-123,18],[34,668],[-233,37]],[[58245,22888],[-21,-1001]],[[58634,22874],[-389,14]],[[58619,22205],[15,669]],[[58722,20600],[9,657],[-133,5],[21,943]],[[32682,21645],[-256,-68],[74,-661],[142,-1647],[-111,-29],[149,-1500]],[[33963,18599],[-35,316],[-129,-27],[-93,317],[-104,984],[-190,-46],[-15,163],[-191,-45],[-14,161],[-189,-49],[-59,657],[-203,-52],[-59,667]],[[30486,22687],[224,-2258],[34,10],[104,-1098],[-286,-81],[-152,-434],[-204,-269]],[[30903,23878],[-242,-463],[26,-170],[-201,-558]],[[30961,23149],[-58,729]],[[31096,21888],[-135,1261]],[[31914,17506],[-225,2264],[-96,-28],[-119,221],[-58,658],[-187,-51],[-133,1318]],[[33040,22392],[-1419,-328],[-525,-176]],[[33094,21768],[-54,624]],[[32682,21645],[412,123]],[[28784,18805],[-101,-567],[-309,-265],[-109,-240]],[[29596,18570],[-495,-155],[-83,232],[-234,158]],[[12873,10372],[181,112],[64,-114]],[[13259,12230],[-117,-284],[-494,-250]],[[13511,12331],[-252,-101]],[[13554,11866],[-43,465]],[[59200,22191],[-581,14]],[[60486,20487],[377,-27]],[[59603,22500],[66,-332]],[[60748,22445],[-7,-327],[-585,26],[7,330],[-560,26]],[[60941,22431],[-193,14]],[[60863,20460],[41,660],[37,1311]],[[61636,20404],[971,-74]],[[61707,22381],[-71,-1977]],[[63053,22261],[-1346,120]],[[63012,20953],[41,1308]],[[62607,20330],[20,661],[385,-38]],[[60863,20460],[773,-56]],[[61707,22381],[-766,50]],[[40497,23937],[75,-1338],[79,13],[100,-1651]],[[42038,24186],[-1541,-249]],[[42106,23369],[-68,817]],[[42226,20824],[-120,2545]],[[34717,20448],[-210,-68],[-240,58],[-136,437],[-255,-62],[-352,306],[-105,367],[-127,-32],[-31,356],[-167,-42]],[[54343,22194],[-17,-999]],[[55116,22193],[-773,1]],[[55096,20868],[20,1325]],[[56081,22188],[-965,5]],[[56081,22132],[0,56]],[[65627,22640],[-72,-1639]],[[66218,22894],[-388,50],[-10,-330],[-193,26]],[[66609,22848],[-391,46]],[[66552,21533],[57,1315]],[[66100,20478],[62,1105],[390,-50]],[[14173,13372],[-109,-46],[-456,-477],[-128,-212],[31,-306]],[[15478,13401],[-105,-157]],[[16239,13975],[-239,-145],[-194,70],[-2,-226],[-167,-225],[-159,-48]],[[16690,13802],[-451,173]],[[17719,13966],[-284,70],[-90,112],[-421,-73],[-234,-273]],[[17931,13966],[-212,0]],[[35461,22973],[34,-238],[265,-548],[-938,-200],[91,-808],[67,-105]],[[35990,23082],[-529,-109]],[[38572,23627],[-1285,-258],[-1297,-287]],[[38591,22915],[-19,712]],[[53432,22847],[-3,-237],[276,-344],[133,-339],[24,-406]],[[54343,22859],[-911,-12]],[[54343,22194],[0,665]],[[67113,21231],[10,258],[-571,44]],[[18542,17539],[73,-312],[235,-1605],[-156,-67],[47,-318],[-283,-124],[176,-1166]],[[19530,17952],[-988,-413]],[[20811,15080],[-131,117],[-100,465],[-76,-32],[-112,809],[-146,112],[-351,-150],[-38,274],[-416,-133],[-15,577],[167,69],[-63,764]],[[20876,14557],[-65,523]],[[21497,18407],[41,-317],[-322,-124],[-76,-708],[-93,-33],[28,-686],[-66,-25],[52,-381],[-55,-305],[148,-614],[-343,-134]],[[22238,18699],[-741,-292]],[[22478,18051],[-123,436],[-117,212]],[[67757,20350],[386,-56]],[[67931,23715],[-201,-251],[107,-655],[-82,-176],[-87,171],[-208,14],[119,-584],[-75,-245],[58,-410],[-110,-174]],[[67974,23728],[-43,-13]],[[68392,21922],[-216,1008],[-227,594],[25,204]],[[68143,20294],[83,319],[68,1323],[98,-14]],[[63012,20953],[581,-57]],[[63084,23254],[-31,-993]],[[64082,23137],[-998,117]],[[64056,22477],[26,660]],[[64008,21174],[48,1303]],[[43804,23599],[143,-2784]],[[43776,24259],[28,-660]],[[45282,24441],[-1506,-182]],[[45343,22785],[-61,1656]],[[45409,20986],[-66,1799]],[[46172,22870],[-829,-85]],[[47938,23024],[-1766,-154]],[[47812,22548],[-73,282],[199,194]],[[47721,21208],[226,349],[-45,116],[111,459],[-201,416]],[[43804,23599],[-1698,-230]],[[48926,22635],[-1114,-87]],[[48955,21311],[-29,1324]],[[28094,23445],[-54,54],[-211,-419],[23,-291],[-96,-992],[-176,-237],[-143,93],[-144,-352],[-29,-340],[84,-18],[28,-375],[-137,-254],[-151,-632],[-69,-586],[62,-418],[-104,-33],[75,-293],[-143,-121],[-19,-295]],[[30038,23340],[-133,-74],[-202,139],[-52,-228],[-373,51],[-283,-257],[-126,115],[-78,288],[-121,-158],[-481,-164],[-114,196],[19,197]],[[30323,22805],[-122,371],[4,268],[-167,-104]],[[28784,18805],[-59,554],[151,232],[118,-14],[37,370],[-100,984],[192,57],[-35,331],[222,68],[-28,664],[158,52],[-16,156],[442,138],[-27,273],[484,135]],[[48941,22636],[-15,-1]],[[50477,22733],[-1536,-97]],[[50500,21409],[-23,1324]],[[50459,24060],[18,-1327]],[[50466,24061],[-7,-1]],[[51623,24122],[-1157,-61]],[[51643,22793],[-20,1329]],[[51660,21468],[-17,1325]],[[52819,22943],[9,-1439]],[[52813,23938],[6,-995]],[[54000,23845],[-820,-12],[-24,115],[-343,-10]],[[53432,22847],[218,642],[275,172],[75,184]],[[52819,22943],[-228,-118],[-948,-32]],[[17623,16859],[101,-349],[-186,-90],[49,-318],[-189,-90],[321,-2046]],[[17763,17210],[-182,-80],[42,-271]],[[18542,17539],[-779,-329]],[[65035,22702],[-20,-334],[-959,109]],[[65627,22640],[-592,62]],[[19931,18265],[-165,-197],[-236,-116]],[[21497,18407],[-457,-174],[-44,323],[-328,-128],[-67,-282],[-276,134],[-174,-267],[-220,252]],[[30486,22687],[-163,118]],[[57635,22912],[-84,-207],[-27,-427],[-89,-184]],[[58245,22888],[-610,24]],[[16543,16320],[113,-196],[-100,-308],[105,-580],[186,-368],[156,-25],[-27,-352],[-286,-689]],[[16547,16379],[-4,-59]],[[17623,16859],[-1076,-480]],[[38946,23697],[-374,-70]],[[40417,23924],[-1294,-224],[-177,-3]],[[40497,23937],[-80,-13]],[[72271,20310],[454,425],[204,-87],[204,104]],[[72402,22200],[-131,-1890]],[[72423,22532],[-21,-332]],[[72998,22425],[-575,107]],[[73186,22386],[-188,39]],[[73133,20752],[-74,16],[127,1618]],[[11216,13892],[208,-832],[17,-258],[109,-163],[50,-391],[103,98],[-81,-340],[125,-409],[-4,-377]],[[11630,14109],[-414,-217]],[[11653,13993],[-23,116]],[[12272,12881],[-136,798],[-484,-246],[-90,511],[91,49]],[[12648,11696],[-45,260],[-185,-97],[46,315],[167,198],[-317,302],[-42,207]],[[13098,13760],[-135,-182],[-58,-261],[-138,-183],[-495,-253]],[[13357,13426],[-64,374],[-195,-40]],[[13259,12230],[-56,325],[206,557],[-52,314]],[[56101,23510],[-20,-1322]],[[56681,23829],[-2,-332],[-578,13]],[[57472,23968],[-193,10],[-1,-167],[-597,18]],[[57801,23427],[-67,306],[-262,235]],[[57635,22912],[26,270],[140,245]],[[54556,23522],[-195,-3],[-18,-660]],[[55135,23520],[-579,2]],[[55116,22193],[19,1327]],[[55907,23512],[-772,8]],[[56101,23510],[-194,2]],[[16543,16320],[-344,-159],[37,-169],[-169,-332],[-238,-202],[65,-314],[87,35],[178,-234],[142,-449],[-75,-77],[13,-444]],[[58644,23424],[-10,-550]],[[59413,23397],[-769,27]],[[59200,22191],[11,658],[188,-6],[14,554]],[[59422,23836],[-9,-439]],[[59851,23816],[-429,20]],[[59603,22500],[9,252],[175,27],[209,476],[-145,561]],[[59838,24147],[13,-331]],[[60784,24087],[-946,60]],[[60748,22445],[36,1642]],[[14767,13999],[-1239,-598],[-171,25]],[[14726,13236],[-54,481],[95,282]],[[14831,14837],[67,-450],[-131,-388]],[[15478,13401],[-103,657],[-63,-31],[-154,962],[-327,-152]],[[14553,16172],[-66,-224],[34,-284],[216,-118],[-24,-488],[118,-221]],[[14478,16385],[75,-213]],[[16596,17377],[-2118,-992]],[[16547,16379],[-54,776],[103,222]],[[25158,20811],[156,-227],[120,-1021],[77,-147]],[[27243,23739],[5,-316],[-121,-587],[-94,99],[-447,-400],[-277,-802],[-46,-347],[-207,-35],[80,-422],[-258,186],[-128,243],[10,193],[-316,265],[-118,-377],[-124,-17],[-83,-386],[39,-225]],[[27753,23895],[-510,-156]],[[28094,23445],[-56,551],[-285,-101]],[[98138,11418],[144,-71],[85,151],[408,-6],[-55,379],[175,307],[-20,442],[208,378],[119,75],[60,-291],[186,34],[277,535],[40,206],[-126,24],[83,346],[124,-237],[112,260],[-108,197],[-66,457],[-168,256],[-68,-290],[-95,71],[-23,402],[-159,-52],[-19,438],[-159,-52],[-34,308],[-184,-352],[-71,158],[32,701],[-204,-320]],[[98632,15872],[-462,-1510],[176,-158],[-305,-1039]],[[93829,15143],[-57,-459],[93,-149],[211,1],[-215,-348],[165,-679]],[[95223,17735],[-131,-378],[-437,43],[51,-89],[-259,-547],[-199,344],[-70,-394],[-178,-608],[64,-47],[-235,-916]],[[95373,17551],[-150,184]],[[95603,16950],[-154,160],[58,385],[-134,56]],[[73133,20752],[235,471],[263,-38],[233,250],[327,159],[119,-63],[212,528]],[[73755,22250],[-569,136]],[[74522,22059],[-767,191]],[[61555,24036],[-771,51]],[[61742,23700],[7,326],[-194,10]],[[61707,22381],[35,1319]],[[62709,23617],[-967,83]],[[63084,23254],[-385,29],[10,334]],[[34879,22839],[-1839,-447]],[[35461,22973],[-582,-134]],[[48043,23897],[-82,-278],[74,-237],[-97,-358]],[[48909,23962],[-866,-65]],[[48941,22636],[-32,1326]],[[49122,23978],[-213,-16]],[[50459,24060],[-1337,-82]],[[51619,24455],[4,-333]],[[52386,24485],[-767,-30]],[[52808,24495],[-422,-10]],[[52813,23938],[-5,557]],[[54027,24066],[-27,-221]],[[54576,24421],[-282,-267],[-267,-88]],[[54556,23522],[20,899]],[[58634,24067],[-93,-169],[-271,0],[-469,-471]],[[58649,24070],[-15,-3]],[[58644,23424],[5,646]],[[64115,24135],[-33,-998]],[[65087,24029],[-972,106]],[[65035,22702],[52,1327]],[[46606,25687],[31,-943],[-575,-54],[28,-167],[45,-1323],[37,-330]],[[47272,25655],[-331,-39],[-123,159],[-212,-88]],[[47780,25212],[-28,206],[-211,300],[-203,-262],[-66,199]],[[48043,23897],[-118,555],[68,278],[-232,113],[19,369]],[[45207,26450],[75,-2009]],[[46606,25687],[-160,198],[-205,-1],[-283,417],[-285,-64],[-197,196],[-269,17]],[[65419,24334],[-20,-340],[-312,35]],[[65800,24288],[-381,46]],[[66321,23881],[-536,67],[15,340]],[[66218,22894],[26,662],[77,325]],[[13089,13986],[9,-226]],[[14553,16172],[-1009,-474],[-180,-293],[-40,-347],[-142,-229],[-81,-323],[149,-440],[-161,-80]],[[12641,14497],[-988,-504]],[[13089,13986],[-230,-108],[-101,118],[21,391],[-138,110]],[[57492,25132],[-20,-1164]],[[57877,25122],[-385,10]],[[58265,25110],[-388,12]],[[58634,24067],[-183,154],[-191,554],[5,335]],[[59111,24851],[-86,5],[-40,-396],[-336,-390]],[[59432,24497],[-327,15],[6,339]],[[59422,23836],[10,661]],[[55926,24506],[-19,-994]],[[55927,25504],[-1,-998]],[[56702,25487],[-775,17]],[[56681,23829],[21,1658]],[[54681,24515],[-105,-94]],[[55926,24506],[-1245,9]],[[62743,24611],[-34,-994]],[[63700,24509],[-957,102]],[[64115,24135],[-242,24],[13,332],[-186,18]],[[66606,24848],[-38,-996],[-247,29]],[[67026,25465],[-41,-659],[-379,42]],[[67419,25417],[-393,48]],[[67425,25416],[-6,1]],[[67429,25415],[-4,1]],[[67729,24263],[-191,561],[-109,591]],[[66609,22848],[192,-17],[26,659],[193,-13],[11,328],[111,-9],[12,331],[281,-29],[3,105],[290,-33],[1,93]],[[93434,15213],[90,-203],[157,67],[75,240],[73,-174]],[[94141,18932],[-329,-1782],[-378,-1937]],[[94461,20744],[-320,-1812]],[[94461,20744],[0,0]],[[94767,20512],[-306,232]],[[95107,19486],[-85,142],[-139,-165],[-81,-386],[-290,587],[273,252],[-72,453],[54,143]],[[95223,17735],[2,986],[-143,664],[25,101]],[[53346,25174],[1,-663],[-539,-16]],[[54026,25180],[-680,-6]],[[54027,24066],[-1,1114]],[[57106,25476],[-404,11]],[[57492,25132],[-388,10],[2,334]],[[92968,16581],[48,-895],[116,-317],[113,149],[148,-44],[41,-261]],[[92910,19010],[73,-48],[160,-445],[14,-326],[-237,-542],[116,-697],[-112,-235],[44,-136]],[[93557,19486],[-64,-118],[-207,72],[-46,-178],[-185,-26],[-145,-226]],[[94141,18932],[-23,197],[-327,124],[-54,627],[-180,-394]],[[59451,25392],[54,-7],[-17,-890],[-56,2]],[[59802,25917],[-323,-73],[-28,-452]],[[59846,25476],[-44,441]],[[59838,24147],[35,364],[-80,139],[78,536],[-25,290]],[[61616,25378],[-61,-1342]],[[62766,25276],[-1150,102]],[[62743,24611],[23,665]],[[12324,15636],[118,-196],[-118,-138],[159,-299],[122,-21],[36,-485]],[[14340,16882],[-383,-189],[-115,-211],[-127,56],[-92,-275],[-345,-170],[-134,-207],[-269,-146],[-383,231],[-21,-217],[-147,-118]],[[14478,16385],[-112,89],[-26,408]],[[21943,19521],[150,-309],[19,-337],[126,-176]],[[22681,21352],[-168,-61],[-164,-245],[58,-465],[-116,-43],[75,-850],[-423,-167]],[[22928,21228],[-87,-71],[-160,195]],[[23235,18960],[64,197],[-260,686],[-61,298],[47,323],[-55,179],[-42,585]],[[54025,25833],[1,-653]],[[55154,25339],[0,171],[-174,0],[-2,329],[-953,-6]],[[54681,24515],[375,769],[98,55]],[[97677,17478],[58,-257],[114,80],[-53,401],[-119,-224]],[[98080,16778],[84,-432],[123,-11],[164,260],[-151,299],[-21,277],[-154,-125],[-45,-268]],[[98632,15872],[4,675],[-96,-140],[-63,-348],[-345,-150],[88,136],[-180,552],[-65,-366],[-100,55],[35,303],[-96,90],[177,613],[-289,-126],[-280,-304],[34,-427],[-203,-355],[8,-238]],[[48935,25297],[-1155,-85]],[[49093,25307],[-158,-10]],[[49122,23978],[-29,1329]],[[49506,25334],[-413,-27]],[[50446,25385],[-940,-51]],[[50466,24061],[-20,1324]],[[58658,25767],[0,-340],[-391,16],[-2,-333]],[[58962,25799],[-304,-32]],[[59199,25410],[-62,219],[-175,170]],[[59111,24851],[88,559]],[[50446,26391],[0,-1006]],[[51601,26450],[-1155,-59]],[[51619,24455],[-18,1995]],[[22678,22498],[82,-647],[92,33],[76,-656]],[[24198,22310],[-96,-52],[-107,293],[-196,25],[-908,-334],[-60,326],[-153,-70]],[[25158,20811],[-261,252],[-236,-218],[-128,379],[-188,72],[-60,289],[86,196],[-31,249],[-142,280]],[[41959,25811],[79,-1625]],[[42738,25793],[-397,-58],[-382,76]],[[43776,24259],[-82,1659],[-956,-125]],[[60848,25428],[-1002,48]],[[60784,24087],[40,334],[24,1007]],[[60865,26091],[-17,-663]],[[61634,26037],[-769,54]],[[61616,25378],[18,659]],[[71399,22712],[258,-42],[22,333],[574,-109]],[[71402,24050],[57,-300],[3,-682],[-63,-356]],[[71585,24197],[-183,-147]],[[72337,23873],[-700,133],[-52,191]],[[72253,22894],[84,979]],[[72253,22894],[192,-32],[-22,-330]],[[73084,23731],[-747,142]],[[72998,22425],[86,1306]],[[73842,23562],[-758,169]],[[73755,22250],[87,1312]],[[51795,26789],[-1,-331],[-193,-8]],[[52368,26808],[-573,-19]],[[52379,25814],[-11,994]],[[52386,24485],[-7,1329]],[[53339,25832],[-960,-18]],[[53346,25174],[-7,658]],[[55558,26037],[-142,-323],[-262,-375]],[[55927,25504],[-371,6],[2,527]],[[59451,25392],[-175,-106],[-77,124]],[[63745,25839],[-45,-1330]],[[64492,25761],[-747,78]],[[65475,25660],[-983,101]],[[65419,24334],[56,1326]],[[66606,24848],[-390,48],[-14,-331],[-387,50],[-15,-327]],[[19586,20887],[-412,-165],[201,-403],[27,-296],[243,-419],[-37,-190],[-228,-224],[236,-216],[145,37],[41,-420],[93,38],[36,-364]],[[21182,21343],[-414,-162],[44,-322],[-135,-276],[-590,-230],[-501,534]],[[21943,19521],[-81,188],[-178,75],[-264,692],[-158,194],[-80,673]],[[11608,15387],[-173,-162],[195,-1116]],[[12298,15738],[-690,-351]],[[12324,15636],[-26,102]],[[16428,18321],[168,-944]],[[17409,19770],[-375,-162],[45,-308],[-188,-83],[26,-182],[-562,-246],[73,-468]],[[17763,17210],[-64,648],[-290,1912]],[[10541,16615],[302,-1225],[132,-761],[145,-252],[96,-485]],[[11064,16857],[-523,-242]],[[11608,15387],[-176,1061],[-187,-96],[-39,269],[-166,-21],[24,257]],[[42839,27587],[20,-442],[-193,-24],[72,-1328]],[[45206,26453],[-182,270],[-178,-85],[-142,78],[-166,839],[-3,246],[-1696,-214]],[[45207,26450],[-1,3]],[[62797,26271],[-31,-995]],[[63781,26834],[-773,83],[-10,-330],[-192,16],[-9,-332]],[[63745,25839],[36,995]],[[66467,25883],[-14,-335],[-978,112]],[[67039,25826],[-572,57]],[[67026,25465],[13,361]],[[90383,17703],[979,-394]],[[90480,18806],[-63,-122],[16,-597],[-91,-131],[41,-253]],[[90998,18942],[-185,7],[-333,-143]],[[91449,18164],[-262,94],[-23,381],[-96,-34],[-70,337]],[[91362,17309],[129,634],[-42,221]],[[92366,16871],[602,-290]],[[92435,17784],[-62,-42],[102,-400],[-100,-78],[-9,-393]],[[92829,19274],[-199,-280],[87,-256],[-109,-153],[65,-283],[-124,-86],[73,-308],[-187,-124]],[[92910,19010],[-81,264]],[[90152,17810],[231,-107]],[[90359,19483],[-72,-186],[-14,-727],[-84,-94],[-37,-666]],[[90480,18806],[33,274],[-154,403]],[[89109,18295],[1043,-485]],[[89582,20329],[-231,-1005],[-31,17],[-211,-1046]],[[90404,19531],[-189,114],[-22,211],[-248,288],[-363,185]],[[90359,19483],[45,48]],[[91362,17309],[1004,-438]],[[91870,18762],[-192,-113],[47,-372],[-276,-113]],[[92435,17784],[-72,309],[-185,-119],[-113,868],[-195,-80]],[[32313,26056],[42,-473],[-104,-28],[4,-613],[-80,-79],[-104,-500],[59,-319],[-144,-299],[-448,-117],[30,-316],[-607,-163]],[[33427,27086],[-169,-495],[-149,-156],[-170,107],[-62,281],[-212,114],[-98,-124],[80,-179],[-41,-310],[-211,-20],[-82,-248]],[[34718,26357],[-383,-88],[-27,337],[-196,-45],[-21,328],[-286,-67],[-26,336],[-352,-72]],[[34745,26020],[-27,337]],[[34879,22839],[7,503],[-103,1324],[30,7],[-105,1339],[37,8]],[[86566,21596],[93,-472],[558,-1467],[229,-323],[216,-422],[196,-198],[177,10]],[[87300,22052],[-734,-456]],[[87789,22340],[-489,-288]],[[88295,22252],[-316,198],[-190,-110]],[[88778,21949],[-483,303]],[[88035,18724],[151,106],[571,2847],[21,272]],[[36969,26507],[-2224,-487]],[[36721,24937],[83,406],[153,96],[57,466],[-45,602]],[[35990,23082],[43,68],[23,759],[117,101],[108,373],[121,-34],[319,588]],[[38869,25335],[77,-1638]],[[38604,29405],[91,-1242],[118,-2110],[56,-718]],[[40110,29652],[-1506,-247]],[[40256,27066],[-146,2586]],[[40417,23924],[-161,3142]],[[38869,25335],[-664,-95],[-1484,-303]],[[88035,18724],[1074,-429]],[[89162,21713],[-384,236]],[[89582,20329],[-348,228],[213,974],[-285,182]],[[41888,27302],[-1632,-236]],[[41959,25811],[-71,1491]],[[17214,21061],[195,-1291]],[[19481,21695],[-910,-406],[-49,326],[-1308,-554]],[[19586,20887],[-105,808]],[[57119,26146],[-13,-670]],[[57892,26121],[-386,11],[2,335],[-385,13],[-4,-334]],[[57877,25122],[15,999]],[[58280,26401],[-193,-120],[-2,-166],[-193,6]],[[58658,25767],[-144,142],[0,222],[-234,270]],[[53332,26829],[7,-997]],[[54021,26838],[-689,-9]],[[54022,26504],[-1,334]],[[54025,25833],[-3,671]],[[54592,26510],[-570,-6]],[[55383,26844],[-15,-334],[-776,0]],[[55753,26244],[2,599],[-372,1]],[[55558,26037],[195,207]],[[59057,26735],[-64,-328],[-31,-608]],[[59447,26991],[-385,20],[-5,-276]],[[59917,26037],[7,323],[-96,6],[6,332],[-200,10],[-190,131],[3,152]],[[59802,25917],[115,120]],[[47550,26535],[-142,-77],[-2,-663],[-134,-140]],[[48899,26632],[-1349,-97]],[[48935,25297],[-36,1335]],[[48891,27897],[29,-1264],[-21,-1]],[[49028,28003],[-137,-106]],[[49469,28021],[-441,-18]],[[49506,25334],[-29,1334],[19,4],[-27,1349]],[[50067,28048],[-598,-27]],[[50427,28066],[-360,-18]],[[50446,26391],[-19,1675]],[[56542,26998],[-356,-301],[-244,-330],[-189,-123]],[[56678,27154],[-136,-156]],[[56928,27150],[-250,4]],[[57119,26146],[-208,7],[17,997]],[[24499,23938],[41,-226],[-81,-204],[96,-127],[-17,-234],[-202,-255],[23,-358],[-161,-224]],[[24525,23992],[-26,-54]],[[26216,26001],[-221,-622],[-61,-290],[-127,105],[-234,-428],[16,-180],[-360,-194],[-48,184],[-205,-388],[-208,-72],[28,-245],[-271,121]],[[27243,23739],[-151,-48],[-70,655],[-66,-20],[-70,699],[106,239],[-367,372],[-327,182],[-82,183]],[[60591,26658],[-375,-85],[-299,-536]],[[60865,26091],[12,553],[-286,14]],[[73842,23562],[889,-206]],[[73944,24881],[-102,-1319]],[[74838,24669],[-894,212]],[[74731,23356],[119,530],[-12,783]],[[71659,25338],[-74,-1141]],[[72422,25193],[-763,145]],[[72337,23873],[85,1320]],[[73181,25051],[-759,142]],[[73084,23731],[97,1320]],[[61643,26369],[-9,-332]],[[61835,26355],[-192,14]],[[62411,26304],[-576,51]],[[62797,26271],[-386,33]],[[73944,24881],[-763,170]],[[21610,22092],[-77,-384],[-120,8],[-59,-218],[-172,-155]],[[22304,22359],[-694,-267]],[[22681,21352],[-132,430],[-99,632],[-146,-55]],[[14091,17921],[124,-423],[125,-616]],[[15219,18458],[-1128,-537]],[[16428,18321],[-679,-302],[-50,318],[-248,-113],[-51,320],[-181,-86]],[[58058,26782],[88,-307],[134,-74]],[[58672,26755],[-614,27]],[[59057,26735],[-385,20]],[[52947,26825],[-579,-17]],[[53332,26829],[-385,-4]],[[91279,19538],[-91,-358],[-190,-238]],[[91821,19091],[-42,336],[-193,-129],[-45,339],[-262,-99]],[[91870,18762],[-49,329]],[[11968,17316],[-30,-253],[127,-582],[-42,-221],[194,-228],[152,20],[-71,-314]],[[14075,18448],[-811,-371],[-114,88],[-286,-183],[-189,-333],[-292,-28],[-41,215],[-397,-198],[23,-322]],[[14091,17921],[-63,395],[47,132]],[[46679,27912],[-191,-16],[83,-1992],[35,-217]],[[47764,28004],[-1085,-92]],[[48451,27954],[-685,-50],[-2,100]],[[47550,26535],[-95,315],[308,122],[27,334],[437,197],[302,277],[-78,174]],[[70426,24543],[410,-59]],[[70234,25578],[-51,-704],[230,-196],[13,-135]],[[70894,25480],[-660,98]],[[70836,24484],[58,996]],[[92090,20168],[119,-870],[-388,-207]],[[92624,20125],[-221,-46],[-313,89]],[[92829,19274],[-264,226],[-48,217],[107,408]],[[96415,17622],[19,-491],[80,-12],[-18,-340],[-72,9],[-19,-345],[-152,-135]],[[96573,17604],[-158,18]],[[97205,17605],[-145,47],[-295,-288],[-82,262],[-110,-22]],[[97257,15846],[-23,349],[151,300],[-153,349],[-107,69],[137,238],[-57,454]],[[29007,24958],[192,57],[33,-327],[189,54],[103,-140],[58,-485],[96,28],[30,-316],[273,74],[57,-563]],[[29240,25532],[16,-164],[-283,-85],[34,-325]],[[30153,25808],[-213,-43],[-56,123],[-434,-185],[-210,-171]],[[30732,25733],[-239,134],[-340,-59]],[[30903,23878],[-171,1855]],[[45123,28425],[83,-1972]],[[46631,28574],[-1508,-149]],[[46679,27912],[-48,662]],[[90593,20566],[-88,-389],[26,-277],[-127,-369]],[[91208,20714],[-112,-498],[-503,350]],[[91279,19538],[-72,701],[1,475]],[[11968,17316],[-904,-459]],[[95783,18797],[-16,-215],[-142,-34],[-54,-341],[-198,-656]],[[96154,18560],[-166,-34],[-30,254],[-175,17]],[[96158,18560],[-4,0]],[[96415,17622],[-24,334],[-157,6],[86,585],[-162,13]],[[58032,27105],[-1104,45]],[[58058,26782],[-26,323]],[[59464,28045],[-17,-1054]],[[60042,28017],[-578,28]],[[60246,28007],[-204,10]],[[60717,26982],[-300,17],[7,331],[-192,11],[14,666]],[[60591,26658],[126,324]],[[55388,28172],[-5,-1328]],[[55598,28169],[-210,3]],[[56162,28165],[-564,4]],[[56542,26998],[5,826],[-384,8],[-1,333]],[[64745,27411],[-42,-1007],[-185,20],[-26,-663]],[[64948,27394],[-203,17]],[[65543,27332],[-595,62]],[[65475,25660],[68,1672]],[[63811,27507],[-30,-673]],[[64463,27435],[-652,72]],[[64745,27411],[-282,24]],[[67186,27123],[-60,-1317],[-87,20]],[[67423,27093],[-237,30]],[[67847,26700],[-193,27],[16,333],[-247,33]],[[67792,25490],[55,1210]],[[67419,25417],[-65,443],[133,114],[161,-368],[144,-116]],[[60973,27144],[-256,-162]],[[61643,26369],[-601,85],[-69,690]],[[66081,27269],[-538,63]],[[66315,27236],[-234,33]],[[66467,25883],[-207,27],[55,1326]],[[67827,25359],[571,-81]],[[67792,25490],[35,-131]],[[68200,26646],[-353,54]],[[68398,25278],[-138,637],[-60,731]],[[30564,27561],[168,-1828]],[[30500,28264],[64,-703]],[[31217,28769],[-376,-100],[28,-307],[-369,-98]],[[32137,28116],[-38,327],[-459,-117],[-28,329],[-375,-100],[-20,214]],[[32313,26056],[-176,2060]],[[51015,28093],[-588,-27]],[[51779,28126],[-764,-33]],[[51795,26789],[-16,1337]],[[54016,28167],[5,-1329]],[[54614,28171],[-598,-4]],[[54592,26510],[22,1661]],[[54637,28171],[-23,0]],[[55388,28172],[-751,-1]],[[41880,27452],[8,-150]],[[42839,27587],[-959,-135]],[[61351,27938],[-124,-537],[-254,-257]],[[61847,28543],[-496,-605]],[[61835,26355],[35,1337],[-114,327],[123,250],[-32,274]],[[62066,28683],[-219,-140]],[[62492,28281],[-249,78],[-13,310],[-164,14]],[[62411,26304],[40,1337],[41,640]],[[62779,28290],[-287,-9]],[[63821,27864],[-946,81],[-113,131],[17,214]],[[63811,27507],[10,357]],[[66849,27162],[-534,74]],[[67186,27123],[-337,39]],[[28123,25028],[-471,-146],[101,-987]],[[29007,24958],[-849,-258],[-35,328]],[[36852,29052],[77,-1205],[-21,-4],[90,-1330],[-29,-6]],[[38507,29390],[-1657,-308],[2,-30]],[[38604,29405],[-97,-15]],[[16694,21866],[-560,-250],[48,-321],[-186,-83],[48,-323],[-573,-255],[50,-320],[-367,-181],[99,-641],[-175,-97],[141,-937]],[[17214,21061],[-184,-80],[-148,968],[-188,-83]],[[48891,27897],[-55,171],[134,98],[-39,192],[-213,-158],[-161,33],[-106,-279]],[[89705,22977],[-10,-199],[-174,-61],[-95,110],[-250,-349],[103,-219],[-117,-546]],[[90642,22362],[-937,615]],[[90732,22305],[-90,57]],[[90593,20566],[-81,322],[5,580],[188,585],[27,252]],[[57912,27952],[120,-409],[0,-438]],[[58303,28102],[-2,-166],[-389,16]],[[58690,28085],[-387,17]],[[58672,26755],[18,1330]],[[58880,28075],[-190,10]],[[59456,28045],[-576,30]],[[59464,28045],[-8,0]],[[51785,28127],[-6,-1]],[[52551,28150],[-766,-23]],[[52935,28155],[-384,-5]],[[52947,26825],[-12,1330]],[[53319,28163],[-384,-8]],[[54016,28168],[-697,-5]],[[54016,28167],[0,1]],[[70068,26914],[155,-727],[11,-609]],[[70621,26860],[-553,54]],[[70972,26807],[-351,53]],[[70894,25480],[78,1327]],[[70894,25480],[765,-142]],[[71379,26730],[-407,77]],[[71745,26660],[-366,70]],[[71659,25338],[86,1322]],[[72512,26523],[-90,-1330]],[[72899,26448],[-387,75]],[[73280,26368],[-381,80]],[[73181,25051],[99,1317]],[[72138,26586],[-393,74]],[[72512,26523],[-374,63]],[[74047,26199],[-103,-1318]],[[74550,26080],[-503,119]],[[74838,24669],[29,668],[-148,315],[-112,-9],[-57,437]],[[73600,26295],[-320,73]],[[74047,26199],[-447,96]],[[21730,23494],[85,-652],[219,87],[105,-297],[123,49],[42,-322]],[[22044,23612],[-314,-118]],[[22406,23748],[-362,-136]],[[22678,22498],[-95,-35],[-177,1285]],[[41824,28550],[56,-1098]],[[43790,29448],[202,-397],[22,-218],[-2190,-283]],[[44869,29526],[-61,44],[-1018,-122]],[[45123,28425],[-57,996],[-59,163],[-138,-58]],[[91606,21065],[-295,-42],[-103,-309]],[[92090,20168],[-89,-29],[15,359],[-245,-20],[-67,610],[-98,-23]],[[56562,28492],[-384,6],[-16,-333]],[[57347,28470],[-785,22]],[[57334,27869],[13,601]],[[56678,27154],[247,262],[173,59],[236,394]],[[95829,19367],[-85,316],[-387,-337],[-44,224],[-206,-84]],[[95783,18797],[46,570]],[[57912,27952],[16,272],[-106,37],[-488,-392]],[[61007,28293],[-383,25],[-8,-333],[-370,22]],[[61351,27938],[-352,26],[8,329]],[[18466,29344],[148,-1042],[-31,-13],[330,-2388],[-20,-8],[446,-3228],[142,-970]],[[20347,30077],[-1881,-733]],[[21177,23781],[-830,6296]],[[21342,23060],[-66,55],[-99,666]],[[21610,22092],[-167,344],[47,115],[-148,509]],[[92582,21665],[-18,-327],[87,-478],[-55,-84],[83,-378],[-55,-273]],[[92483,22385],[-12,-373],[111,-347]],[[93139,22382],[-656,3]],[[93443,22108],[-130,133],[-87,-226],[-87,367]],[[93632,21224],[55,245],[-187,119],[29,251],[-86,269]],[[93557,19486],[254,1061],[-302,225],[123,452]],[[13374,20671],[107,-293],[80,-577],[185,-117],[284,-635],[45,-601]],[[14414,21162],[-1040,-491]],[[16643,22199],[-2229,-1037]],[[16694,21866],[-51,333]],[[86089,23307],[123,-91],[-97,276],[-26,-185]],[[86374,24500],[-119,-516],[-112,-31],[240,-364],[-161,-201],[107,-276],[-207,-28],[-33,223]],[[86383,24498],[-9,2]],[[86401,24494],[-18,4]],[[87038,24223],[-403,77],[24,144],[-258,50]],[[87300,22052],[-101,487],[110,72],[-40,432],[-97,22],[-198,437],[-132,28],[30,351],[100,-24],[66,366]],[[85859,22992],[97,-374],[213,-236],[-15,-155],[412,-631]],[[86089,23307],[-42,-173],[-188,-142]],[[97682,18162],[-70,76],[-137,-214],[224,23],[-17,115]],[[97421,18038],[105,-331],[48,97],[-153,234]],[[96854,18713],[87,-188],[-184,-539],[-205,-110],[21,-272]],[[97205,17605],[-7,685],[64,92],[-137,321],[-7,216],[-150,20],[-114,-226]],[[22786,24732],[-380,-984]],[[24499,23938],[-215,-211],[-10,-395],[-245,498],[-356,53],[-119,338],[-317,398],[-292,170],[-159,-57]],[[96335,19445],[58,-383],[-8,517],[-50,-134]],[[96151,19018],[7,-458]],[[96330,19265],[-6,-260],[-173,13]],[[96854,18713],[-26,-185],[-83,418],[-14,535],[-82,-229],[-181,466],[-79,-785],[-59,332]],[[67491,28425],[-68,-1332]],[[67986,28351],[-495,74]],[[68200,26646],[78,376],[-39,266],[-159,238],[-94,825]],[[90787,22501],[-55,-196]],[[91378,21964],[-121,-29],[-290,159],[57,254],[-237,153]],[[91566,21350],[-61,421],[-40,-145],[-150,143],[63,195]],[[91606,21065],[-40,285]],[[10204,18093],[214,-855],[123,-623]],[[13067,21220],[-947,-449],[64,-397],[-572,-256],[-4,-264],[113,-650],[-323,-164],[18,-107],[-266,-216],[-81,-404],[-304,-256],[-201,214],[-360,-178]],[[13374,20671],[-235,119],[-72,430]],[[94336,21800],[-171,-52],[-533,-524]],[[94649,21650],[-313,150]],[[94462,20747],[187,903]],[[94461,20744],[1,3]],[[57357,29468],[-10,-998]],[[57553,29462],[-196,6]],[[58322,29434],[-769,28]],[[58303,28102],[19,1332]],[[63880,29487],[-59,-1623]],[[63892,29832],[-12,-345]],[[64738,29741],[-846,91]],[[64463,27435],[8,274],[-105,54],[-82,300],[110,360],[26,453],[207,429],[111,436]],[[65037,29702],[-299,39]],[[64987,28401],[50,1301]],[[64948,27394],[39,1007]],[[65675,28318],[-688,83]],[[66126,28260],[-451,58]],[[66081,27269],[45,991]],[[66141,28596],[-15,-336]],[[66904,28330],[8,173],[-771,93]],[[66849,27162],[55,1168]],[[67299,28455],[-8,-177],[-387,52]],[[67491,28425],[-192,30]],[[27355,27470],[-564,-176],[34,-311],[-435,-141],[95,-442],[-98,-80],[-10,-329],[-161,10]],[[27983,26343],[-36,312],[-187,-40],[-35,328],[-190,-61],[-83,616],[-97,-28]],[[28123,25028],[-140,1315]],[[92582,21665],[-986,-198],[-30,-117]],[[87789,22340],[329,1767]],[[87171,25031],[-133,-808]],[[88118,24107],[-572,984],[-375,-60]],[[49028,28003],[15,356],[334,457],[-17,198]],[[47763,29736],[-31,-500],[32,-1232]],[[47935,29762],[-172,-26]],[[49039,30661],[-145,-10],[20,-931],[-116,-69],[-238,252],[-448,-30],[-177,-111]],[[49419,30684],[-380,-23]],[[49360,29014],[75,297],[-167,288],[-99,466],[168,67],[82,552]],[[54011,29497],[5,-1329]],[[54636,29502],[-625,-5]],[[54637,28171],[-1,1331]],[[54655,29503],[-19,-1]],[[55602,29503],[-947,0]],[[55598,28169],[4,1334]],[[50047,29049],[20,-1001]],[[50238,29059],[-191,-10]],[[51002,29085],[-764,-26]],[[51015,28093],[-13,992]],[[58902,29408],[-22,-1333]],[[59475,29379],[-573,29]],[[59481,29379],[-6,0]],[[59456,28045],[25,1334]],[[60052,29347],[-571,32]],[[60042,28017],[10,1330]],[[53313,29494],[6,-1331]],[[54011,29497],[-698,-3]],[[58514,29425],[-192,9]],[[58902,29408],[-388,17]],[[50047,29049],[-687,-35]],[[51007,29416],[-5,-331]],[[51581,29439],[-574,-23]],[[51768,29449],[-187,-10]],[[51785,28127],[-17,1322]],[[60439,29378],[-387,-31]],[[61031,29288],[-593,36],[1,54]],[[61007,28293],[24,995]],[[55618,29503],[-16,0]],[[56570,29488],[-952,15]],[[56562,28492],[8,996]],[[52541,29476],[10,-1326]],[[52927,29488],[-386,-12]],[[53313,29494],[-386,-6]],[[52157,29464],[-389,-15]],[[52541,29476],[-384,-12]],[[61591,29248],[-560,40]],[[62306,29189],[-715,59]],[[62066,28683],[240,506]],[[40400,29695],[-290,-43]],[[41759,29888],[-1359,-193]],[[41824,28550],[-65,1338]],[[70081,28296],[-68,-493],[-118,-410],[173,-479]],[[70710,28199],[-629,97]],[[70621,26860],[89,1339]],[[95599,21229],[-258,-162],[32,-156],[-187,-205],[-165,115],[-41,-307],[-213,-2]],[[96116,19553],[41,402],[-120,-223],[-121,68],[-183,463],[-67,379],[157,363],[-224,224]],[[96105,19342],[11,211]],[[96036,19488],[69,-146]],[[95829,19367],[207,121]],[[46612,29163],[19,-589]],[[47763,29736],[-218,-32],[-167,-190],[-164,200],[-153,-65],[-235,-426],[-214,-60]],[[36077,28887],[39,-551],[-193,-38],[24,-333],[-384,-84],[25,-323],[-346,-76],[-209,-154],[17,-215],[-190,-42],[29,-337],[-97,-21],[22,-335],[-96,-21]],[[36173,28908],[-96,-21]],[[36852,29052],[-679,-144]],[[96105,19342],[37,-135],[109,346],[81,505],[-61,178],[-155,-683]],[[96330,19265],[-52,210],[146,205],[-53,267]],[[96354,19953],[-211,-758],[8,-177]],[[96371,19947],[-17,6]],[[96154,18560],[-118,928]],[[71469,28060],[-759,139]],[[71379,26730],[90,1330]],[[72225,27920],[-756,140]],[[72138,26586],[87,1334]],[[72995,27761],[-770,159]],[[72899,26448],[96,1313]],[[73691,27573],[-696,188]],[[73645,26923],[46,650]],[[73600,26295],[45,628]],[[62920,29603],[-47,-1325],[-94,12]],[[63880,29487],[-960,116]],[[21730,23494],[-228,-29],[-160,-405]],[[88907,25097],[-271,-106],[72,-606],[-413,-2133]],[[89826,24861],[-110,172],[-177,-9],[-322,180],[-310,-107]],[[89735,24434],[91,427]],[[89705,22977],[-238,157],[268,1300]],[[56578,29488],[-8,0]],[[57357,29468],[-779,20]],[[22101,26359],[456,165],[229,-1792]],[[23898,28353],[-666,-232],[95,-604],[-278,-199],[-272,-78],[-203,-272],[-76,201],[-324,-532],[-73,-278]],[[23968,27816],[-70,537]],[[24012,26710],[-127,1067],[83,39]],[[24461,24281],[-134,396],[-43,482],[-84,27],[-188,1524]],[[24525,23992],[-64,289]],[[88316,26922],[-95,-643],[152,-745],[-158,-51],[96,-331],[-193,-1045]],[[89038,26711],[-201,-60],[-9,291],[-349,-193],[-38,205],[-125,-32]],[[88951,26019],[87,692]],[[88907,25097],[83,409],[-87,268],[48,245]],[[62364,29640],[-58,-451]],[[62920,29603],[-556,37]],[[36077,28887],[-8,112],[-899,-186],[-294,-23],[-550,-406],[13,-165],[-182,-156],[-566,-190],[25,-301],[-189,-486]],[[28265,26415],[-282,-72]],[[29683,26827],[-1418,-412]],[[29240,25532],[-75,653],[93,-21],[201,405],[235,152],[-11,106]],[[16601,28577],[405,-2818],[-916,-366],[246,-1613],[67,24],[240,-1605]],[[16659,28603],[-58,-26]],[[18466,29344],[-798,-307],[-1009,-434]],[[33378,33080],[53,-647],[-42,-9],[75,-991],[-341,-712],[-61,-361],[-192,-298],[-155,-492],[-68,-553],[28,-383],[-95,-23],[31,-369],[-474,-126]],[[35856,33638],[-2478,-558]],[[35902,32979],[-46,659]],[[36173,28908],[21,116],[-93,1313],[23,4],[-92,1322],[-69,-14],[-92,1324],[31,6]],[[73645,26923],[192,-43],[25,324],[218,-41]],[[73762,28551],[-71,-978]],[[74538,28730],[-190,41],[-12,-164],[-374,73],[-12,-163],[-188,34]],[[74505,28309],[33,421]],[[74080,27163],[3,517],[67,393],[355,236]],[[44870,30721],[-33,-337],[32,-858]],[[46294,30869],[-1424,-148]],[[46612,29163],[-269,148],[-49,1558]],[[25144,27091],[22,-487],[-218,-102],[99,-591],[-84,-288],[-136,-168],[90,-546],[-45,-319],[-190,42],[-221,-351]],[[26195,27434],[-1051,-343]],[[26363,29562],[74,-681],[95,30],[142,-1323],[-479,-154]],[[26723,29847],[-195,-306],[-165,21]],[[27286,28126],[-377,-117],[-130,1320],[93,29],[-36,328],[-113,161]],[[27355,27470],[-69,656]],[[30042,26947],[111,-1139]],[[30564,27561],[-232,-214],[-43,-329],[-247,-71]],[[65606,29632],[-20,-473],[125,-10],[-67,-419],[31,-412]],[[65991,29623],[-385,9]],[[66184,29597],[-193,26]],[[66141,28596],[43,1001]],[[65606,29632],[-569,70]],[[91804,23861],[23,-324],[118,53],[-11,-449],[-114,-55],[38,-759],[-204,-47],[11,-350],[-172,-139],[-115,173]],[[91905,23997],[-101,-136]],[[92523,23820],[-390,210],[-228,-33]],[[92483,22385],[-55,107],[95,1328]],[[9946,18973],[258,-880]],[[10041,22315],[121,-761],[94,40],[55,-319],[95,33],[107,-630],[-96,-44],[114,-644],[-86,-41],[61,-306],[-92,-49],[60,-338],[-528,-283]],[[10187,22413],[-146,-98]],[[10899,23077],[-200,-195],[-144,47],[-186,-249],[-209,-104],[27,-163]],[[12559,22752],[-185,-91],[-127,165],[-155,-75],[-221,123],[-247,280],[-575,-185],[-150,108]],[[13067,21220],[86,180],[52,599],[-130,122],[-168,465],[-302,-102],[-46,268]],[[66980,29837],[-16,-333],[-780,93]],[[67365,29786],[-385,51]],[[67299,28455],[66,1331]],[[50231,30731],[7,-1672]],[[50374,30737],[-143,-6]],[[50995,30768],[-621,-31]],[[51007,29416],[-12,1352]],[[50231,30731],[-812,-47]],[[30042,26947],[-359,-120]],[[67559,29761],[-194,25]],[[67957,29700],[-398,61]],[[67986,28351],[86,792],[-115,557]],[[21797,25549],[-335,-865],[-39,-467],[-103,-72],[-143,-364]],[[22044,23612],[-84,648],[61,23],[-83,653],[-62,-21],[-79,634]],[[47931,31003],[-1637,-134]],[[47935,29762],[-23,904],[19,337]],[[24794,26978],[-782,-268]],[[25144,27091],[-350,-113]],[[91189,24064],[-91,-725],[-148,-397],[-121,272],[-82,-230],[40,-483]],[[91804,23861],[-615,203]],[[41754,29984],[5,-96]],[[43449,30219],[-1695,-235]],[[43790,29448],[-151,32],[-169,247],[-21,492]],[[54008,30836],[3,-1339]],[[54653,30841],[-645,-5]],[[54655,29503],[-2,1338]],[[54963,30841],[-310,0]],[[55619,30835],[-656,6]],[[55618,29503],[1,1332]],[[58533,30762],[-19,-1337]],[[58777,30752],[-244,10]],[[59499,30716],[-722,36]],[[59475,29379],[24,1337]],[[59540,30714],[-41,2]],[[60299,30668],[-759,46]],[[60467,30656],[-168,12]],[[60439,29378],[28,1278]],[[61624,30574],[-33,-1326]],[[61818,30559],[-194,15]],[[62451,30506],[-633,53]],[[62364,29640],[-7,435],[94,431]],[[51327,30783],[-332,-15]],[[51569,30789],[-242,-6]],[[51581,29439],[-12,1350]],[[52146,30804],[-577,-15]],[[52157,29464],[-11,1340]],[[61063,30616],[-596,40]],[[61624,30574],[-561,42]],[[55727,30835],[-108,0]],[[56490,30822],[-763,13]],[[56586,30819],[-96,3]],[[56578,29488],[8,1331]],[[57566,30796],[-13,-1334]],[[58012,30783],[-446,13]],[[58533,30762],[-521,21]],[[52917,30824],[10,-1336]],[[53247,30829],[-330,-5]],[[53773,30834],[-526,-5]],[[54008,30836],[-235,-2]],[[57251,30804],[-665,15]],[[57566,30796],[-315,8]],[[52478,30813],[-332,-9]],[[52917,30824],[-439,-11]],[[73086,29091],[-91,-1330]],[[73467,29011],[-381,80]],[[73762,28551],[20,331],[-315,129]],[[70111,29628],[-167,-679],[137,-653]],[[70789,29528],[-678,100]],[[70710,28199],[79,1329]],[[72321,29244],[-96,-1324]],[[72704,29168],[-383,76]],[[73086,29091],[-382,77]],[[95094,23061],[-22,-352],[-368,-449],[-55,-610]],[[95599,21229],[40,364],[-65,366],[-156,189],[21,404],[-55,608],[-290,-99]],[[71554,29384],[-85,-1324]],[[72321,29244],[-767,140]],[[71231,30120],[-400,71],[-42,-663]],[[71597,30047],[-366,73]],[[71554,29384],[43,663]],[[90658,24318],[-143,-633],[-11,-335],[123,-358],[15,-630]],[[90785,25705],[31,-460],[-158,-927]],[[91356,25461],[-571,244]],[[91189,24064],[167,1397]],[[22101,26359],[-152,-377],[-37,-413],[-115,-20]],[[90658,24318],[-207,248],[-19,175],[-132,-119],[-144,-462],[-421,274]],[[47917,32507],[14,-1504]],[[48996,32584],[-1079,-77]],[[49039,30661],[-43,1923]],[[94371,22796],[-583,-402],[-75,103],[-270,-389]],[[94336,21800],[-29,120],[141,558],[-77,318]],[[74505,28309],[63,-35],[186,-582],[81,9]],[[74618,29708],[-80,-978]],[[74995,29617],[-377,91]],[[75510,29096],[-374,105],[30,330],[-171,86]],[[75408,27771],[128,1318],[-26,7]],[[74835,27701],[19,227],[554,-157]],[[62479,30803],[-28,-297]],[[63347,30724],[-868,79]],[[63906,30165],[-581,62],[22,497]],[[63892,29832],[14,333]],[[85835,25719],[300,-525],[257,-117],[9,-583]],[[86140,26357],[-211,-27],[-94,-611]],[[86931,26246],[-145,-13],[-226,-197],[-71,172],[-349,149]],[[87117,26286],[-186,-40]],[[87171,25031],[-99,-15],[-39,636],[41,7],[43,627]],[[43371,32040],[78,-1821]],[[43709,32086],[-338,-46]],[[44860,32222],[-1151,-136]],[[44870,30721],[-34,996],[24,505]],[[76217,27521],[45,366],[148,588],[138,985]],[[75408,27771],[809,-250]],[[75762,29707],[-47,-495],[-190,49],[-15,-165]],[[76548,29460],[-786,247]],[[20361,30085],[-14,-8]],[[23551,31263],[-1226,-440],[-1964,-738]],[[23898,28353],[-347,2910]],[[64894,31062],[52,-257],[129,-100],[-24,-686],[-213,-14],[-100,-264]],[[66044,30955],[-570,84],[-3,-49],[-577,72]],[[65991,29623],[53,1332]],[[64148,31637],[-51,-1496],[-191,24]],[[64717,31416],[-268,79],[-83,193],[-218,-51]],[[64894,31062],[-177,354]],[[66059,31289],[-15,-334]],[[66824,31196],[-765,93]],[[67015,31175],[-191,21]],[[66980,29837],[35,1338]],[[29520,29141],[98,-989],[-374,-109],[31,-318],[-351,-103],[-74,-250],[-663,-196],[78,-761]],[[30396,29384],[-876,-243]],[[30500,28264],[-104,1120]],[[27634,28855],[-141,301],[-306,-97],[99,-933]],[[28762,28914],[-981,-289],[-147,230]],[[29520,29141],[-758,-227]],[[11942,26395],[617,-3643]],[[13274,27071],[-1332,-676]],[[14175,27504],[-901,-433]],[[14414,21162],[-145,959],[-26,-12],[-369,2262],[732,344],[-431,2789]],[[15580,28131],[-1405,-627]],[[16601,28577],[-1021,-446]],[[88263,26975],[-296,145],[-45,-259],[-159,66],[-64,-392],[-298,-335],[-284,86]],[[88316,26922],[-53,53]],[[93215,23698],[-203,-445],[-10,-465],[69,-14],[68,-392]],[[94285,23930],[-233,-133],[-184,141],[-98,-347],[-274,270],[-142,-301],[-139,138]],[[94359,22843],[-93,979],[19,108]],[[94371,22796],[-12,47]],[[9110,21165],[359,-1081],[365,-783],[112,-328]],[[10041,22315],[-187,-38],[-170,270],[-231,-60],[105,-796],[-103,-343],[-345,-183]],[[92534,24100],[-11,-280]],[[93202,23938],[-222,85],[6,-201],[-452,278]],[[93215,23698],[-13,240]],[[95033,23295],[-288,136],[38,-241],[-424,-347]],[[95094,23061],[-61,234]],[[73563,30296],[-96,-1285]],[[74268,30129],[-705,167]],[[74618,29708],[-379,88],[29,333]],[[63381,31686],[-34,-962]],[[63761,31536],[-191,-20],[-189,170]],[[64148,31637],[-112,-117],[-275,16]],[[67587,31105],[-31,-670],[37,-6],[-34,-668]],[[67863,31066],[-276,39]],[[67957,29700],[-5,305],[-88,311],[-42,507],[41,243]],[[67587,31105],[-572,70]],[[58025,31720],[-13,-937]],[[58791,31688],[-766,32]],[[58777,30752],[14,936]],[[58025,31720],[15,1334]],[[57260,31746],[-9,-942]],[[57273,33077],[-13,-1331]],[[58040,33054],[-767,23]],[[56490,30822],[8,942]],[[55730,31775],[-3,-940]],[[56498,31764],[-768,11]],[[57260,31746],[-762,18]],[[59540,30714],[17,936]],[[59557,31650],[-766,38]],[[54963,31771],[0,-930]],[[55730,31775],[-767,-4]],[[40225,33101],[26,-668],[149,-2738]],[[40610,33160],[-385,-59]],[[41592,33299],[-982,-139]],[[41666,31796],[-74,1503]],[[41754,29984],[-88,1812]],[[60299,30668],[22,1102]],[[59560,31814],[-3,-164]],[[60321,31770],[-761,44]],[[53840,31758],[52,-512],[-109,-159],[-10,-253]],[[54963,31771],[-1123,-13]],[[61087,31719],[-766,51]],[[61063,30616],[24,1103]],[[61870,32165],[-52,-1606]],[[62565,32112],[-695,53]],[[62479,30803],[12,280],[247,341],[-176,480],[3,208]],[[61098,32218],[-11,-499]],[[61870,32165],[-772,53]],[[53239,32426],[8,-1597]],[[53431,32429],[-192,-3]],[[54002,32437],[-571,-8]],[[53840,31758],[129,155],[33,524]],[[38258,33443],[109,-1665],[140,-2388]],[[38262,33444],[-4,-1]],[[39549,33675],[-79,-12],[-102,528],[-386,-122],[15,-279],[108,-187],[-843,-159]],[[40225,33101],[-642,-93],[-34,667]],[[50678,32674],[-47,-172],[-257,-140],[-132,-274],[-130,-41],[-64,-357],[-268,-288],[-151,-455],[-183,-45],[-27,-218]],[[50979,33133],[-253,-261],[-48,-198]],[[51232,33310],[-253,-177]],[[51372,32050],[-59,361],[22,366],[-103,533]],[[51321,31939],[51,111]],[[50374,30737],[39,492],[908,710]],[[52471,32080],[7,-1267]],[[52855,32421],[2,-333],[-386,-8]],[[53239,32426],[-384,-5]],[[51321,31939],[6,-1156]],[[52084,32072],[-712,-22]],[[52471,32080],[-387,-8]],[[38258,33443],[-665,-114],[-1691,-350]],[[49449,32612],[-453,-28]],[[50678,32674],[-1229,-62]],[[42556,31935],[-890,-139]],[[43371,32040],[-815,-105]],[[70496,30927],[-309,-942],[-76,-357]],[[71251,30455],[-189,32],[22,332],[-588,108]],[[71231,30120],[20,335]],[[72043,30640],[-44,-670],[-402,77]],[[72810,30487],[-767,153]],[[72704,29168],[106,1319]],[[31737,32651],[-789,-231],[56,-650],[-76,-20],[237,-2571],[52,-410]],[[33378,33080],[-738,-175],[-903,-254]],[[73566,30336],[-756,151]],[[73563,30296],[3,40]],[[62609,32463],[-44,-351]],[[63381,31686],[-278,387],[-147,69],[-199,293],[-148,28]],[[85703,26067],[132,-348]],[[85860,27254],[-8,-227],[-149,-960]],[[86117,28735],[-154,-357],[-114,-911],[11,-213]],[[86759,28506],[-642,229]],[[86676,27956],[83,550]],[[86140,26357],[221,1419],[147,-67],[168,247]],[[90033,25847],[-207,-986]],[[90054,25945],[-21,-98]],[[90595,26425],[-293,-349],[-248,-131]],[[90803,26322],[-92,-107],[-116,210]],[[90785,25705],[-52,219],[70,398]],[[46246,32369],[-1386,-147]],[[46294,30869],[-48,1500]],[[47917,32507],[-1671,-138]],[[82924,26881],[575,-203],[174,-15]],[[83024,27796],[-100,-915]],[[83769,27538],[-745,258]],[[83673,26663],[96,875]],[[82401,28401],[-85,-138],[-219,12],[-82,-689],[654,-574],[255,-131]],[[83045,27965],[-433,140],[-211,296]],[[83024,27796],[21,169]],[[83673,26663],[385,-34],[344,282],[295,-243]],[[83970,28040],[-88,-175],[32,-377],[-145,50]],[[84515,28030],[-284,109],[24,-196],[-285,97]],[[84808,27576],[-181,62],[44,343],[-156,49]],[[84697,26668],[111,908]],[[84697,26668],[423,-194],[315,127],[-27,-213],[295,-321]],[[85467,27434],[-270,96],[-13,-103],[-376,149]],[[85860,27254],[-393,180]],[[75108,30919],[-113,-1302]],[[75671,30757],[-563,162]],[[75862,30693],[-191,64]],[[75762,29707],[100,986]],[[30212,31306],[184,-1922]],[[30031,33248],[181,-1942]],[[29883,34850],[148,-1602]],[[31518,35290],[-1635,-440]],[[31737,32651],[-219,2639]],[[91475,26193],[-71,-193],[-48,-539]],[[91861,26050],[-386,143]],[[92010,25995],[-149,55]],[[91905,23997],[-47,2],[47,561],[-205,62],[84,713],[139,-45],[87,705]],[[64768,32752],[-51,-1336]],[[65532,32711],[-2,-43],[-762,84]],[[66110,32632],[-578,79]],[[66059,31289],[51,1343]],[[71370,32121],[-119,-1666]],[[71754,32049],[-384,72]],[[72136,31970],[-382,79]],[[72043,30640],[93,1330]],[[90033,25847],[-706,270],[-376,-98]],[[94669,24814],[-333,-177],[-99,-374],[114,-86],[-66,-247]],[[95267,24025],[-185,35],[-143,167],[-23,221],[-181,144],[-66,222]],[[95033,23295],[100,-181],[196,205],[-62,706]],[[87270,27662],[-594,294]],[[86931,26246],[166,320],[173,1096]],[[92763,25721],[-753,274]],[[92534,24100],[95,553],[-89,232],[0,428],[223,408]],[[53863,33106],[139,-669]],[[54968,33109],[-1105,-3]],[[54963,31771],[5,1338]],[[55735,33100],[-767,9]],[[55730,31775],[5,1325]],[[58810,33020],[-19,-1332]],[[59580,32985],[-770,35]],[[59560,31814],[20,1171]],[[58810,33020],[-770,34]],[[56507,33089],[-9,-1325]],[[57273,33077],[-766,12]],[[56507,33089],[-772,11]],[[74379,31467],[-111,-1338]],[[74760,31373],[-381,94]],[[75108,30919],[-378,119],[30,335]],[[60346,32943],[-25,-1173]],[[61115,32892],[-769,51]],[[61098,32218],[17,674]],[[60346,32943],[-766,42]],[[63817,33024],[-56,-1488]],[[64774,32919],[-957,105]],[[64768,32752],[6,167]],[[63069,33625],[-284,-270],[-176,-892]],[[63506,34226],[-149,-498],[-288,-103]],[[63858,34196],[-352,30]],[[63817,33024],[41,1172]],[[93608,25411],[-115,-256],[-137,-553],[-89,36],[-65,-700]],[[93656,25393],[-48,18]],[[94657,24845],[-38,173],[-963,375]],[[94669,24814],[-12,31]],[[70679,32248],[-99,-955],[-84,-366]],[[71370,32121],[-691,127]],[[24643,28287],[151,-1309]],[[25664,28961],[-187,-62],[18,-162],[-473,-159],[-13,-169],[-366,-122]],[[26195,27434],[-145,1322],[-80,-26],[-37,323],[-269,-92]],[[24519,29034],[-306,-167],[-20,-328],[-134,-163],[91,-239],[-61,-292],[-121,-29]],[[24643,28287],[-37,-13],[-87,760]],[[66494,32599],[-384,33]],[[66877,32548],[-383,51]],[[66824,31196],[53,1352]],[[25569,29830],[95,-869]],[[26363,29562],[-142,4],[-204,402],[-194,-140],[-254,2]],[[67259,32500],[-382,48]],[[67643,32441],[-384,59]],[[67587,31105],[56,1336]],[[68037,32388],[-394,53]],[[67863,31066],[70,459],[-34,243],[86,170],[52,450]],[[87312,27910],[-42,-248]],[[88250,27482],[-938,428]],[[88263,26975],[-13,507]],[[93043,25621],[-280,100]],[[93608,25411],[-565,210]],[[52075,33291],[9,-1219]],[[52320,33302],[-245,-11]],[[52848,33509],[-239,-266],[-289,59]],[[52855,32421],[-7,1088]],[[52075,33291],[-78,80],[-300,-120],[-144,340],[-132,14],[-189,-295]],[[73666,31639],[-100,-1303]],[[73999,31565],[-333,74]],[[74379,31467],[-380,98]],[[83134,28781],[-89,-816]],[[83951,28536],[-817,245]],[[83970,28040],[-19,496]],[[72517,31892],[-381,78]],[[72901,31817],[-384,75]],[[72810,30487],[91,1330]],[[73281,31742],[-380,75]],[[73666,31639],[-385,103]],[[26984,31091],[101,-986],[-278,-92],[-84,-166]],[[27990,30712],[-126,-38],[-33,328],[-252,-75],[-35,330],[-560,-166]],[[27634,28855],[-11,144],[268,-150],[102,285],[-38,670],[154,385],[-119,523]],[[82185,28495],[22,-173],[149,9],[-19,344],[-152,-180]],[[82176,30245],[93,-501],[273,-446],[-217,-704],[76,-193]],[[82310,30326],[-134,-81]],[[83271,30031],[-635,584],[-221,-301],[-105,12]],[[83134,28781],[137,1250]],[[53423,33886],[8,-1457]],[[53706,34581],[-108,-485],[-175,-210]],[[54007,34716],[-301,-135]],[[53923,34443],[84,273]],[[53863,33106],[-165,667],[208,401],[17,269]],[[53081,33660],[-233,-151]],[[53423,33886],[-226,-52],[-116,-174]],[[61139,33909],[-24,-1017]],[[61914,33844],[-775,65]],[[61870,32165],[44,1679]],[[62686,33772],[-772,72]],[[63069,33625],[1,113],[-384,34]],[[89237,26766],[-199,-55]],[[89865,26649],[-292,207],[-336,-90]],[[90054,25945],[44,213],[-233,491]],[[84818,29363],[-35,-352],[-180,53],[-88,-1034]],[[85017,29300],[-199,63]],[[85565,28375],[-544,199],[-45,380],[41,346]],[[85467,27434],[98,941]],[[28381,31676],[-79,-280],[-231,39],[97,-481],[-178,-242]],[[28836,31297],[-95,595],[-130,-150],[-230,-66]],[[28762,28914],[-186,432],[-32,389],[41,398],[212,-22],[48,405],[-9,781]],[[29284,31427],[-448,-130]],[[30212,31306],[-316,47],[54,-350],[-225,-132],[-384,-109],[-59,62],[2,603]],[[85787,29172],[-61,-470],[-161,-327]],[[86104,29040],[-317,132]],[[86117,28735],[163,231],[-176,74]],[[42556,31935],[-38,827],[37,4],[-61,1332],[59,7]],[[41476,35635],[116,-2336]],[[42547,35777],[-1071,-142]],[[42553,34105],[-61,1329],[55,343]],[[44860,32222],[-6,822],[-49,1312],[46,5],[-52,1329],[56,8]],[[43650,34236],[55,-1324],[-31,-3],[35,-823]],[[43704,35919],[-59,-345],[44,-1334],[-39,-4]],[[43738,35921],[-34,-2]],[[44743,36022],[-1005,-101]],[[44855,35698],[-16,335],[-96,-11]],[[43650,34236],[-1097,-131]],[[49431,33356],[18,-744]],[[50980,33599],[-453,-91],[-418,-277],[-191,-201],[-487,326]],[[50979,33133],[1,466]],[[47902,33093],[15,-586]],[[48740,33595],[-739,-350],[-99,-152]],[[49431,33356],[-260,108],[-204,197],[-227,-66]],[[45807,35812],[-952,-114]],[[46761,35916],[-954,-104]],[[47713,36001],[-952,-85]],[[47877,36015],[-164,-14]],[[47902,33093],[18,251],[-34,1334],[26,3],[-35,1334]],[[10450,25672],[449,-2595]],[[11942,26395],[-1492,-723]],[[83961,29868],[-42,-194],[112,-403],[-80,-735]],[[84490,29889],[-187,48],[-22,-161],[-320,92]],[[84818,29363],[-274,79],[-54,447]],[[90799,27585],[-39,-547],[43,-716]],[[91462,27131],[-663,454]],[[91475,26193],[-13,938]],[[90031,26844],[-138,118],[-28,-313]],[[90595,26425],[-564,419]],[[8897,24898],[-154,-502],[39,-307],[-17,-556],[130,-635],[100,-250],[20,-350],[-100,-346],[12,-437],[183,-350]],[[9511,25229],[-614,-331]],[[10187,22413],[-279,463],[-178,439],[-187,-80],[-117,489],[206,132],[83,513],[-165,294],[-39,566]],[[24774,31686],[-1223,-423]],[[25454,29827],[-108,8],[-48,368],[-347,-116],[-177,1599]],[[24519,29034],[222,270],[336,268],[167,303],[210,-48]],[[54968,34447],[-1045,-4]],[[54968,33109],[0,1338]],[[55740,34438],[-5,-1338]],[[56514,34431],[-774,7]],[[56507,33089],[7,1342]],[[55162,34444],[-194,3]],[[55740,34438],[-578,6]],[[57286,34419],[-772,12]],[[57283,34087],[3,332]],[[57273,33077],[10,1010]],[[58053,34064],[-13,-1010]],[[58057,34396],[-4,-332]],[[58828,34367],[-771,29]],[[58810,33020],[18,1347]],[[58053,34064],[-770,23]],[[59602,34332],[-774,35]],[[59580,32985],[22,1347]],[[60374,34291],[-772,41]],[[60367,33959],[7,332]],[[60346,32943],[21,1016]],[[61139,33909],[-772,50]],[[88267,29167],[18,-385],[-88,-365],[82,-251],[-29,-684]],[[89292,27973],[-209,102],[-488,793],[-328,299]],[[89237,26766],[10,309],[120,440],[-75,458]],[[49413,36109],[35,-2668],[-17,-85]],[[49432,36110],[-19,-1]],[[50192,36149],[-760,-39]],[[50951,36182],[-759,-33]],[[50970,34845],[-19,1337]],[[50980,33599],[-10,1246]],[[75862,30693],[393,-108],[76,724],[43,66]],[[75837,32430],[-166,-1673]],[[76181,32334],[-344,96]],[[76374,31375],[-155,200],[67,262],[-99,72],[-6,425]],[[74897,32707],[-137,-1334]],[[75080,32650],[-183,57]],[[75837,32430],[-757,220]],[[95190,25759],[-129,-282],[-15,-287],[-119,77],[-222,-126],[-48,-296]],[[95264,25777],[-74,-18]],[[95267,24025],[173,586],[164,124],[140,-79],[-35,265],[-344,382],[79,81],[-180,393]],[[51733,34870],[-763,-25]],[[52305,34884],[-572,-14]],[[52320,33302],[-15,1582]],[[52495,35222],[3,-334],[-193,-4]],[[53069,35236],[-574,-14]],[[53081,33660],[-12,1576]],[[83527,30009],[-256,22]],[[83961,29868],[-434,141]],[[64820,34100],[-46,-1181]],[[65533,34038],[-713,62]],[[65591,34032],[-58,6]],[[65532,32711],[59,1321]],[[25569,29830],[-115,-3]],[[66287,33966],[-696,66]],[[66555,33943],[-268,23]],[[66494,32599],[61,1344]],[[48668,36070],[-791,-55]],[[48709,36073],[-41,-3]],[[48740,33595],[-3,1139],[-28,1339]],[[66668,33923],[-113,20]],[[67325,33830],[-657,93]],[[67302,33385],[23,445]],[[67259,32500],[43,885]],[[68105,33050],[-622,83],[11,224],[-192,28]],[[68037,32388],[123,220],[-55,442]],[[89802,28414],[-315,-149],[-195,-292]],[[90078,28096],[31,110],[-307,208]],[[90031,26844],[48,269],[-55,343],[54,640]],[[90799,27585],[-721,511]],[[64675,34115],[-817,81]],[[64820,34100],[-145,15]],[[49413,36109],[-704,-36]],[[87499,29053],[-424,176]],[[87312,27910],[187,1143]],[[86879,29311],[-120,-805]],[[87075,29229],[-196,82]],[[9994,25454],[-483,-225]],[[10450,25672],[-456,-218]],[[74126,32901],[-127,-1336]],[[74141,32898],[-15,3]],[[74897,32707],[-756,191]],[[73378,33068],[-97,-1326]],[[74126,32901],[-748,167]],[[72612,33225],[-95,-1333]],[[73186,33109],[-574,116]],[[73378,33068],[-192,41]],[[71844,33373],[-90,-1324]],[[72242,33303],[-398,70]],[[72612,33225],[-370,78]],[[70653,33598],[43,-1039],[-17,-311]],[[71483,33444],[-830,154]],[[71844,33373],[-361,71]],[[85474,29507],[-100,-331],[-357,124]],[[85787,29172],[45,291],[-358,44]],[[53388,35576],[-321,-6],[2,-334]],[[53546,35526],[-158,50]],[[53706,34581],[-149,-3],[-11,948]],[[91475,28945],[-37,-130],[24,-1684]],[[91490,28939],[-15,6]],[[92190,28687],[-700,252]],[[92128,27635],[62,1052]],[[92037,26709],[37,681],[-55,224],[109,21]],[[91861,26050],[169,326],[7,333]],[[88319,29616],[-351,129],[-28,-198],[-335,80],[-106,-574]],[[88267,29167],[52,449]],[[93043,25621],[117,181],[-25,259],[84,309],[-55,159],[39,522]],[[93203,27051],[-45,178],[-94,-424],[-190,30],[-325,252],[-21,-179],[-287,-1],[-40,-209],[-164,11]],[[94639,27157],[-189,-67],[-44,-238],[127,-76],[-7,-256],[-146,139],[-86,-113],[70,-280],[-43,-502],[-214,147],[-24,-312],[-319,53],[-108,-259]],[[95022,26482],[-79,-110],[-158,100],[80,219],[-38,206],[-188,260]],[[95052,26385],[-30,97]],[[95049,26280],[3,105]],[[95172,26070],[-123,210]],[[95173,26069],[-1,1]],[[95144,25996],[29,73]],[[95181,25971],[-37,25]],[[95190,25759],[-9,212]],[[93406,27351],[-21,-251],[-182,-49]],[[93662,28093],[-72,-490],[-218,7],[34,-259]],[[93717,28075],[-55,18]],[[94212,27939],[-11,-57],[-484,193]],[[94687,27690],[-475,249]],[[94639,27157],[48,533]],[[25164,31816],[-390,-130]],[[26852,32336],[-1688,-520]],[[26984,31091],[-132,1245]],[[62731,35115],[-45,-1343]],[[63112,35083],[-381,32]],[[63797,34686],[-313,28],[10,335],[-382,34]],[[63506,34226],[-17,116],[308,344]],[[67501,33803],[-176,27]],[[68141,33721],[-640,82]],[[68105,33050],[36,671]],[[61966,35177],[-52,-1333]],[[62350,35145],[-384,32]],[[62731,35115],[-381,30]],[[57374,35760],[-11,-1015],[-77,-326]],[[57755,35745],[-381,15]],[[58139,35731],[-384,14]],[[58057,34396],[69,329],[13,1006]],[[61199,35231],[-60,-1322]],[[61582,35196],[-383,35]],[[61966,35177],[-384,19]],[[60430,35283],[-56,-992]],[[60814,35256],[-384,27]],[[61199,35231],[-385,25]],[[86348,29989],[-117,36],[-127,-985]],[[86479,29947],[-131,42]],[[86879,29311],[56,415],[-275,14],[24,208],[-205,-1]],[[40418,36822],[192,-3662]],[[41393,37312],[-992,-153],[17,-337]],[[41418,36799],[-25,513]],[[41476,35635],[-58,1164]],[[39388,36642],[102,-1653],[59,-1314]],[[40418,36822],[-1030,-180]],[[29279,33048],[12,-266],[-121,-135],[-9,-442],[127,-223],[-4,-555]],[[30031,33248],[-752,-200]],[[84650,31692],[-160,-1803]],[[84876,31606],[-226,86]],[[85918,31251],[-1042,355]],[[85794,30201],[124,1050]],[[85474,29507],[106,792],[214,-98]],[[81283,31684],[477,-764],[149,-330],[267,-345]],[[81634,32641],[-247,67],[-104,-1024]],[[82524,32362],[-890,279]],[[82310,30326],[214,2036]],[[54154,35537],[-95,-260],[29,-541],[-81,-20]],[[54153,35774],[1,-237]],[[55280,35788],[-1127,-14]],[[55162,34444],[0,330],[119,2],[-1,1012]],[[55851,35785],[-2,-1012],[-106,-2],[-3,-333]],[[56234,35781],[-383,4]],[[56616,35777],[-382,4]],[[56514,34431],[3,331],[95,-1],[4,1016]],[[55851,35785],[-571,3]],[[56993,35769],[-377,8]],[[57374,35760],[-381,9]],[[58523,35719],[-384,12]],[[58909,35702],[-386,17]],[[58828,34367],[66,331],[15,1004]],[[59290,35686],[-381,16]],[[59668,35665],[-378,21]],[[59602,34332],[45,329],[21,1004]],[[60052,35640],[-384,25]],[[60430,35283],[-385,25],[7,332]],[[93406,27351],[-245,343],[-39,-165],[-286,203],[-104,-202],[-38,373],[-195,-126],[-191,70],[-7,-366],[-173,154]],[[86348,29989],[-14,199],[-152,-3],[-23,-171],[-365,187]],[[82756,32300],[-232,62]],[[83746,31977],[-990,323]],[[83527,30009],[219,1968]],[[54154,35537],[-608,-11]],[[83910,31924],[-164,53]],[[84650,31692],[-740,232]],[[88503,30315],[-115,-120],[-69,-579]],[[88934,30734],[-196,35],[-62,-256],[-173,-198]],[[89432,29895],[-498,839]],[[89883,29116],[-451,779]],[[89802,28414],[-72,635],[153,67]],[[64077,35380],[-128,-115],[-50,-358],[-102,-221]],[[64731,35301],[-654,79]],[[64675,34115],[56,1186]],[[90772,28926],[119,-592],[-92,-749]],[[90766,29121],[6,-195]],[[91475,28945],[-11,289],[-310,18],[-388,-131]],[[65588,35181],[-480,67]],[[65533,34038],[55,1143]],[[65108,35248],[-377,53]],[[66345,35280],[-382,55],[-8,-207],[-367,53]],[[66287,33966],[58,1314]],[[28209,32748],[-1357,-412]],[[28299,32774],[-90,-26]],[[28381,31676],[71,204],[-87,242],[-66,652]],[[66729,35225],[-61,-1302]],[[66921,35200],[-192,25]],[[67496,35119],[-575,81]],[[67559,35110],[-63,9]],[[67501,33803],[58,1307]],[[66729,35225],[-384,55]],[[68141,33721],[-9,765],[149,527]],[[68281,35013],[-722,97]],[[90772,28926],[-234,-75],[-15,297],[-381,82],[-259,-114]],[[95052,26385],[-3,-105]],[[95262,26374],[-112,268],[-128,-160]],[[95172,26070],[90,304]],[[95264,25777],[9,334],[-92,-140]],[[51718,36207],[15,-1337]],[[52486,36225],[-768,-18]],[[52495,35222],[-9,1003]],[[42610,35788],[-63,-11]],[[43704,35919],[-1094,-131]],[[50949,36851],[2,-669]],[[51713,36874],[-764,-23]],[[51718,36207],[-5,667]],[[75080,32650],[123,1328]],[[74239,34244],[-98,-1346]],[[74821,34076],[-582,168]],[[75203,33978],[-382,98]],[[34856,38309],[114,-1513],[52,-1001],[691,154],[126,-1641],[17,-670]],[[35853,38515],[-997,-206]],[[36615,38669],[-762,-154]],[[37510,38854],[-895,-185]],[[38262,33444],[-239,3971],[-421,-78],[-92,1517]],[[37725,38898],[-215,-44]],[[39246,39164],[-1521,-266]],[[39388,36642],[-142,2522]],[[29279,33048],[-980,-274]],[[73295,34447],[-109,-1338]],[[73860,34317],[-565,130]],[[74239,34244],[-379,73]],[[72339,34632],[-97,-1329]],[[73103,34477],[-764,155]],[[73295,34447],[-192,30]],[[70546,34297],[107,-699]],[[70817,34913],[-41,-657],[-230,41]],[[71571,34786],[-754,127]],[[71483,33444],[88,1342]],[[72339,34632],[-768,154]],[[87306,30758],[-104,-692],[23,-293],[-150,-544]],[[88311,30393],[-1005,365]],[[88503,30315],[-192,78]],[[86576,31019],[-97,-1072]],[[87240,30782],[-664,237]],[[87306,30758],[-66,24]],[[63143,36088],[-31,-1005]],[[64370,35973],[-1227,115]],[[64077,35380],[265,270],[28,323]],[[53060,36239],[-574,-14]],[[53383,36245],[-323,-6]],[[53388,35576],[-5,669]],[[94892,27726],[-20,-126],[-185,90]],[[95307,27096],[-415,630]],[[95455,26423],[63,330],[-211,343]],[[95262,26374],[193,49]],[[92262,28661],[-72,26]],[[93064,28338],[-802,323]],[[93662,28093],[-598,245]],[[95455,26423],[157,-141]],[[95958,28654],[-220,-542],[-160,120],[36,-343],[-182,-324],[-125,-469]],[[96243,28054],[-154,115],[-7,334],[-124,151]],[[96339,27754],[-96,300]],[[95692,26340],[314,449],[41,503],[221,34],[71,428]],[[95692,26340],[-80,-58]],[[60854,36926],[-40,-1670]],[[61624,36876],[-770,50]],[[61582,35196],[42,1680]],[[62392,36822],[-768,54]],[[62384,36486],[8,336]],[[62350,35145],[34,1341]],[[60080,36976],[-28,-1336]],[[60854,36926],[-774,50]],[[63153,36424],[-769,62]],[[63143,36088],[10,336]],[[85981,31229],[-63,22]],[[86576,31019],[-595,210]],[[53824,36537],[0,-285],[-441,-7]],[[54289,36420],[-60,121],[-405,-4]],[[54153,35774],[146,401],[-10,245]],[[31325,37497],[193,-2207]],[[31403,37517],[-78,-20]],[[32979,37891],[-1576,-374]],[[34856,38309],[-1877,-418]],[[80162,33144],[295,-319],[652,-935],[174,-206]],[[80209,33630],[-47,-486]],[[81687,33200],[-1478,430]],[[81634,32641],[53,559]],[[69898,36273],[302,-552],[194,-952],[152,-472]],[[70393,36192],[-495,81]],[[70883,36104],[-490,88]],[[70817,34913],[66,1191]],[[54509,37116],[14,-413],[-234,-283]],[[55280,37127],[-771,-11]],[[55280,35788],[0,1339]],[[59312,37016],[-22,-1330]],[[60080,36976],[-768,40]],[[56238,37115],[-4,-1334]],[[56813,37108],[-575,7]],[[57005,37102],[-192,6]],[[56993,35769],[12,1333]],[[55471,37124],[-191,3]],[[56238,37115],[-767,9]],[[57772,37078],[-17,-1333]],[[58348,37057],[-576,21]],[[58542,37049],[-194,8]],[[58523,35719],[19,1330]],[[57580,37085],[-575,17]],[[57772,37078],[-192,7]],[[59119,37024],[-577,25]],[[59312,37016],[-193,8]],[[65153,36278],[-45,-1030]],[[65250,36378],[-97,-100]],[[66386,36279],[-690,100],[-2,-56],[-444,55]],[[66345,35280],[41,999]],[[64385,36368],[-15,-395]],[[65153,36278],[-768,90]],[[90312,31229],[-72,-184],[-341,-262],[130,-566],[-597,-322]],[[90981,30965],[-275,141],[-249,-101],[-145,224]],[[90766,29121],[40,686],[111,537],[64,621]],[[67486,35768],[10,-649]],[[67927,36866],[184,-147],[-64,-1061],[-561,110]],[[68802,37582],[-439,53],[-21,-336],[-193,33],[-21,-334],[-190,37],[-11,-169]],[[68756,36659],[46,923]],[[68281,35013],[143,278],[178,916],[154,452]],[[66435,37289],[-49,-1010]],[[66990,37205],[-555,84]],[[66975,36867],[15,338]],[[66921,35200],[-6,337],[60,1330]],[[67536,36771],[-561,96]],[[67486,35768],[50,1003]],[[44839,37061],[-136,-14],[40,-1025]],[[45764,37153],[-925,-92]],[[45807,35812],[-43,1341]],[[95114,28456],[-104,-439],[-66,50],[-52,-341]],[[95296,28624],[-182,-168]],[[95368,28742],[-72,-118]],[[95593,29348],[-116,-597],[-109,-9]],[[95958,28654],[-117,115],[34,282],[-282,297]],[[45796,37155],[-32,-2]],[[46727,37252],[-931,-97]],[[46761,35916],[-34,1336]],[[53051,37575],[9,-1336]],[[53240,37579],[-189,-4]],[[53820,37590],[-580,-11]],[[53824,36537],[-4,1053]],[[51710,37544],[3,-670]],[[52475,37562],[-765,-18]],[[52486,36225],[-11,1337]],[[52666,37567],[-191,-5]],[[53051,37575],[-385,-8]],[[46944,37273],[-217,-21]],[[47681,37332],[-737,-59]],[[47713,36001],[-32,1331]],[[50173,37487],[19,-1338]],[[50184,37488],[-11,-1]],[[50940,37519],[-756,-31]],[[50949,36851],[-9,668]],[[47705,37334],[-24,-2]],[[48638,37399],[-933,-65]],[[48668,36070],[-30,1329]],[[49407,37445],[-769,-46]],[[49432,36110],[-25,1335]],[[49424,37446],[-17,-1]],[[50173,37487],[-749,-41]],[[73966,35717],[-106,-1400]],[[74750,35496],[-784,221]],[[74942,35440],[-192,56]],[[74821,34076],[121,1364]],[[91014,31548],[-68,-302],[35,-281]],[[91697,30922],[-631,412],[-52,214]],[[91643,30392],[54,530]],[[91490,28939],[153,1453]],[[96339,27754],[408,212],[427,-520],[-44,-447],[-102,73],[-70,-349],[43,-139],[145,264],[206,705],[-1,348],[-81,-34],[-594,475]],[[96676,28342],[-87,296],[-302,261],[-44,-845]],[[72420,35822],[-81,-1190]],[[72577,35793],[-157,29]],[[73188,35670],[-611,123]],[[73103,34477],[85,1193]],[[73236,35908],[-48,-238]],[[73902,35733],[-666,175]],[[73966,35717],[-64,16]],[[71610,35978],[31,-159],[-70,-1033]],[[71816,35940],[-206,38]],[[72420,35822],[-604,118]],[[71152,36056],[-269,48]],[[71610,35978],[-458,78]],[[92083,30993],[-148,-120],[-76,123],[-216,-604]],[[92519,30135],[-211,585],[-259,144],[34,129]],[[92262,28661],[6,283],[225,-120],[-44,327],[34,337],[-104,77],[140,570]],[[54002,37816],[2,-224],[-184,-2]],[[54536,37821],[-534,-5]],[[54509,37116],[123,287],[-96,418]],[[92923,30204],[-129,190],[-171,25],[-35,-332],[-69,48]],[[93380,29987],[-97,-208],[-325,215],[-35,210]],[[93460,29882],[-80,105]],[[93064,28338],[126,836],[49,-34],[221,742]],[[93673,29344],[-213,538]],[[93717,28075],[44,258],[-188,85],[67,458],[85,-35],[58,305],[-110,198]],[[63174,37095],[-21,-671]],[[64143,37165],[-266,-146],[-309,62],[-117,119],[-90,-123],[-187,18]],[[64257,36944],[-114,221]],[[64385,36368],[-31,473],[-97,103]],[[94439,29301],[-261,137],[-340,25],[-165,-119]],[[94388,28987],[51,314]],[[94212,27939],[176,1048]],[[95003,28554],[-91,168],[-524,265]],[[95073,28566],[-70,-12]],[[95114,28456],[-41,110]],[[89171,31630],[-47,-575],[-190,-321]],[[89769,32098],[-225,35],[-171,-99],[-202,-404]],[[90312,31229],[-131,393],[-442,216],[30,260]],[[9367,27619],[96,-154],[20,-417],[-65,-247],[148,-331],[24,-530],[267,-165],[137,-321]],[[9641,28570],[-23,-825],[-251,-126]],[[11100,29286],[-19,-133],[134,-363],[-116,-248],[-473,429],[-134,-75],[-198,275],[70,367],[-54,114],[-186,-134],[-73,-321],[-206,-106],[-27,-205],[-177,-316]],[[12791,30092],[-1691,-806]],[[13274,27071],[-483,3021]],[[43716,38102],[48,-1167],[-60,-232],[34,-782]],[[43725,38942],[29,-666],[-38,-174]],[[44649,39048],[-924,-106]],[[44791,38395],[-117,-14],[-25,667]],[[44839,37061],[-48,1334]],[[42545,36951],[65,-1163]],[[42502,37954],[43,-1003]],[[43716,38102],[-1214,-148]],[[28451,35047],[-10,-442],[-108,-12],[-51,-661],[71,-280],[-9,-345],[-135,-559]],[[29064,35234],[-253,-93],[-118,172],[-242,-266]],[[29279,33048],[34,287],[-79,281],[55,144],[6,548],[-58,467],[-173,459]],[[42545,36951],[-1127,-152]],[[29189,35510],[-125,-276]],[[29367,36406],[95,-240],[-35,-335],[-173,-352],[-65,31]],[[29765,36097],[-398,309]],[[29883,34850],[-118,1247]],[[86245,32720],[-264,-1491]],[[86348,32709],[-103,11]],[[87335,32547],[-987,162]],[[87453,32071],[-134,71],[16,405]],[[87240,30782],[213,1289]],[[85091,33328],[-215,-1722]],[[86245,32720],[-118,219],[-1036,389]],[[24741,35571],[423,-3755]],[[27319,36079],[-534,138],[-2044,-646]],[[28451,35047],[-145,-17],[-6,211],[-126,77],[-335,-100],[-520,861]],[[20361,30085],[-494,3749]],[[16117,32470],[-33,-14],[149,-1026],[39,19],[70,-684],[317,-2162]],[[19170,35436],[64,-596],[-548,-219],[88,-650],[-1863,-751],[56,-392],[-850,-358]],[[19867,33834],[-177,1342],[-374,-142],[-146,402]],[[20572,34102],[-705,-268]],[[21394,37843],[-275,-98],[-4,-2125],[158,-1256],[-701,-262]],[[24358,38908],[-1990,-697],[-974,-368]],[[24741,35571],[-383,3337]],[[82845,33732],[-71,-786],[44,-15],[-62,-631]],[[83730,33538],[-116,-71],[-769,265]],[[84075,33365],[-345,173]],[[83910,31924],[165,1441]],[[84484,33793],[-100,30],[-309,-458]],[[85121,33567],[-637,226]],[[85091,33328],[30,239]],[[8778,26983],[23,-1096],[-117,-227],[103,-215],[110,-547]],[[9367,27619],[-174,-86],[53,-312],[-468,-238]],[[88516,31722],[-205,-1329]],[[88643,33286],[92,-136],[-219,-1428]],[[88879,33169],[-236,117]],[[89171,31630],[-112,686],[-95,295],[-134,87],[87,175],[-38,296]],[[88096,31875],[-643,196]],[[88516,31722],[-420,153]],[[81773,34057],[-86,-857]],[[81938,34006],[-165,51]],[[82845,33732],[-907,274]],[[12976,30177],[-185,-85]],[[15123,31151],[-2147,-974]],[[15580,28131],[-457,3020]],[[14298,36601],[218,-1406],[607,-4044]],[[14139,37623],[159,-1022]],[[14058,38112],[81,-489]],[[13978,38676],[80,-564]],[[14511,38570],[-327,197],[-206,-91]],[[15426,37492],[-320,13],[-304,157],[-113,-90],[-43,736],[-135,262]],[[15589,37517],[-163,-25]],[[15730,36120],[-76,720],[50,108],[-115,569]],[[16117,32470],[-249,1649],[-40,-16],[-287,1940],[189,77]],[[67927,36866],[-11,-166],[-380,71]],[[79419,33833],[156,-99],[587,-590]],[[79467,34358],[-48,-525]],[[79543,35169],[-76,-811]],[[80337,34958],[-794,211]],[[80209,33630],[128,1328]],[[62420,37827],[-28,-1005]],[[63194,37764],[-774,63]],[[63174,37095],[20,669]],[[64378,37696],[31,-232],[-116,-109],[-36,-411]],[[64913,37641],[-535,55]],[[65295,37594],[-382,47]],[[65250,36378],[45,1216]],[[50933,38521],[7,-1002]],[[51701,38375],[-352,48],[-98,111],[-318,-13]],[[51710,37544],[-9,831]],[[66065,37502],[-770,92]],[[66435,37289],[-378,46],[8,167]],[[54745,38499],[-140,-69],[-69,-609]],[[55573,38498],[-828,1]],[[55471,37124],[1,1003],[100,1],[1,370]],[[60886,38283],[-32,-1357]],[[61468,38239],[-582,44]],[[61662,38222],[-194,17]],[[61624,36876],[38,1346]],[[57658,38465],[-68,-373],[-10,-1007]],[[58408,38407],[-750,58]],[[58348,37057],[16,1011],[44,339]],[[56143,38495],[-570,3]],[[56332,38494],[-189,1]],[[56238,37115],[6,1004],[86,0],[2,375]],[[56897,38484],[-565,10]],[[56813,37108],[10,1001],[70,-2],[4,377]],[[60124,38335],[-44,-1359]],[[60696,38297],[-572,38]],[[60886,38283],[-190,14]],[[59176,38454],[-141,-50],[-627,3]],[[59174,38389],[2,65]],[[59119,37024],[17,1007],[38,358]],[[59934,38347],[-760,42]],[[60124,38335],[-190,12]],[[57658,38465],[-761,19]],[[62245,38514],[-72,-330],[-511,38]],[[62437,38501],[-192,13]],[[62420,37827],[17,674]],[[78702,34889],[289,-589],[428,-467]],[[78883,35081],[-159,40],[-22,-232]],[[79467,34358],[-161,47],[26,276],[-316,87],[23,271],[-156,42]],[[80340,34998],[-3,-40]],[[81192,34751],[-203,96],[-649,151]],[[81773,34057],[-352,112],[-229,582]],[[63399,38301],[216,-56],[95,-199],[220,-69],[187,-266],[26,-546]],[[62939,38803],[44,-332],[416,-170]],[[64001,38728],[-1062,75]],[[64378,37696],[-11,172],[-225,124],[-155,237],[14,499]],[[95296,28624],[-13,284],[-94,-293],[-116,-49]],[[63399,38301],[-14,-552],[-191,15]],[[94461,29461],[-22,-160]],[[95006,29003],[-61,219],[-484,239]],[[95003,28554],[73,352],[-70,97]],[[71224,37132],[-72,-1076]],[[71234,37297],[-10,-165]],[[71905,37171],[-671,126]],[[71881,36840],[24,331]],[[71816,35940],[65,900]],[[70465,37443],[33,-538],[-85,-294],[-20,-419]],[[70561,37427],[-96,16]],[[71224,37132],[-673,128],[10,167]],[[69731,36494],[167,-221]],[[69836,38306],[-105,-1812]],[[70465,37443],[-284,167],[-112,470],[-233,226]],[[73236,35908],[46,634]],[[72641,36683],[-64,-890]],[[73282,36542],[-641,141]],[[72641,36683],[-760,157]],[[52654,38948],[12,-1381]],[[53234,38681],[-455,298],[-125,-31]],[[53240,37579],[-6,1102]],[[51905,38887],[6,-508],[-210,-4]],[[52078,39130],[2,-238],[-175,-5]],[[52463,38896],[-385,234]],[[52654,38948],[-191,-52]],[[53234,38693],[0,-12]],[[53956,38933],[-164,-156],[-210,27],[-348,-111]],[[54192,38935],[-236,-2]],[[54002,37816],[0,614],[190,505]],[[45750,38491],[46,-1336]],[[45978,38515],[-228,-24]],[[46902,38603],[-924,-88]],[[46944,37273],[-42,1330]],[[45750,38491],[-959,-96]],[[50163,38820],[21,-1332]],[[50175,38820],[-12,0]],[[50928,38855],[-753,-35]],[[50933,38521],[-5,334]],[[47670,38666],[35,-1332]],[[47680,40002],[-23,-1],[38,-1333],[-25,-2]],[[49013,40095],[-1333,-93]],[[49378,40114],[-365,-19]],[[49412,38779],[-34,1335]],[[49424,37446],[-12,1333]],[[47670,38666],[-768,-63]],[[50163,38820],[-751,-41]],[[75445,35291],[-30,127],[235,-68],[303,250]],[[75430,35296],[15,-5]],[[75421,35298],[9,-2]],[[75403,35304],[18,-6]],[[75400,35305],[3,-1]],[[74942,35440],[458,-135]],[[74813,36384],[-63,-888]],[[74833,36663],[-20,-279]],[[75544,35711],[-254,65],[-199,531],[-258,356]],[[75953,35600],[-409,111]],[[67600,37772],[-64,-1001]],[[67661,38774],[-61,-1002]],[[68834,38228],[-808,143],[20,331],[-385,72]],[[68802,37582],[32,646]],[[75580,36164],[-36,-453]],[[76174,36194],[-453,103],[-141,-133]],[[76183,36191],[-9,3]],[[76212,36184],[-29,7]],[[75953,35600],[166,61],[188,258],[126,-32],[78,-278],[42,205],[160,37],[-376,183],[-125,150]],[[67031,37872],[-41,-667]],[[67600,37772],[-569,100]],[[74057,36555],[-72,-96],[-83,-726]],[[74813,36384],[-756,171]],[[78959,35923],[-76,-842]],[[79597,35753],[-638,170]],[[79543,35169],[54,584]],[[93526,30561],[195,-135],[-83,-353],[-168,111],[-90,-197]],[[94519,30498],[-208,11],[-32,186],[-311,73],[-10,153],[-183,111],[-249,-471]],[[94461,29461],[89,679],[-31,358]],[[68756,36659],[294,263],[220,-20]],[[68860,38734],[-26,-506]],[[69267,38468],[-221,252],[-186,14]],[[69356,38364],[-89,104]],[[69270,36902],[86,1462]],[[69270,36902],[461,-408]],[[69836,38306],[-59,76],[-284,-211],[-137,193]],[[73310,36939],[-28,-397]],[[74073,36776],[-763,163]],[[74057,36555],[16,221]],[[41361,37968],[32,-656]],[[42480,38118],[-1119,-150]],[[42502,37954],[-22,164]],[[54843,38946],[-651,-11]],[[54745,38499],[121,187],[-23,260]],[[95133,29324],[90,260],[-52,150],[-38,-410]],[[95223,29654],[78,-738],[101,420],[-91,322],[-88,-4]],[[95593,29348],[-61,173],[-119,-286],[-45,-493]],[[91758,31532],[-61,-610]],[[91772,33010],[-171,-361],[339,-583],[-154,-263],[-28,-271]],[[92536,31744],[50,296],[-132,-10],[-106,245],[-130,67],[-114,280],[-332,388]],[[92083,30993],[235,148],[247,316],[-29,287]],[[39801,39255],[-555,-91]],[[41285,39470],[-1484,-215]],[[41361,37968],[-76,1502]],[[95006,29003],[-3,272],[125,383],[-48,424],[-107,34],[-458,484],[4,-102]],[[87309,33205],[26,-658]],[[88014,32752],[-264,265],[-441,188]],[[88096,31875],[-75,495],[-7,382]],[[93427,31242],[-144,-204],[-125,-377],[-140,119],[-95,-576]],[[93526,30561],[227,515],[-326,166]],[[93449,31264],[-647,262],[-229,438],[-37,-220]],[[93449,31264],[-15,-11]],[[93427,31242],[7,11]],[[88522,33610],[-90,-69],[-133,-549],[-262,-120],[-23,-120]],[[88643,33286],[-121,324]],[[89892,32328],[-123,-230]],[[90514,32691],[-622,-363]],[[90760,32817],[-246,-126]],[[91067,31992],[-307,825]],[[91014,31548],[78,143],[-25,301]],[[66114,38557],[-49,-1055]],[[66150,39348],[-36,-791]],[[66370,40008],[-29,-687],[-191,27]],[[66564,39976],[-194,32]],[[67109,39210],[-574,83],[29,683]],[[67031,37872],[78,1338]],[[77957,35573],[374,-26],[371,-658]],[[78183,36410],[-24,-288],[-156,37],[-46,-586]],[[78500,36320],[-317,90]],[[78958,35923],[-336,79],[75,265],[-197,53]],[[78959,35923],[-1,0]],[[82731,34874],[7,-442],[178,9],[-71,-709]],[[83418,35204],[-66,-218],[-407,-262],[-214,150]],[[84182,34848],[-681,127],[-83,229]],[[83730,33538],[80,747],[272,-87],[100,650]],[[82086,34891],[-87,-281],[-61,-604]],[[82548,34964],[-36,-374],[-318,74],[19,189],[-127,38]],[[82731,34874],[-183,90]],[[81312,35958],[-120,-1207]],[[81812,35807],[-500,151]],[[82086,34891],[19,193],[-201,115],[17,169],[-109,439]],[[76447,36233],[135,-204],[186,-2],[326,227],[265,-227]],[[76589,36745],[-55,-532],[-87,20]],[[77414,36570],[-825,175]],[[77359,36027],[55,543]],[[74907,37604],[-74,-941]],[[75669,37438],[-762,166]],[[75645,37105],[24,333]],[[75580,36164],[65,941]],[[84423,34823],[-241,25]],[[84484,33793],[46,399],[-107,631]],[[89549,33495],[-298,-114],[-3,-404],[-369,192]],[[89892,32328],[-176,329],[-32,431],[-135,407]],[[62939,38803],[-495,33],[-7,-335]],[[86042,34862],[-355,-467],[-51,12],[-348,-427],[-167,-413]],[[86417,34457],[-109,0],[-2,240],[-264,165]],[[86669,34239],[-252,218]],[[86827,34248],[-158,-9]],[[87087,33684],[-182,528],[-78,36]],[[86348,32709],[185,656],[305,295],[249,24]],[[87295,33480],[-208,204]],[[87309,33205],[-14,275]],[[64972,38982],[-59,-1341]],[[65350,39271],[-14,-327],[-364,38]],[[65636,39238],[-286,33]],[[66114,38557],[-285,71],[-23,263],[-183,19],[13,328]],[[64018,39404],[-17,-676]],[[64773,39332],[-755,72]],[[64972,38982],[-6,326],[-193,24]],[[31325,37497],[-1650,-436],[90,-964]],[[72711,37685],[-70,-1002]],[[73352,37530],[-641,155]],[[73310,36939],[42,591]],[[71942,37714],[-37,-543]],[[72519,37723],[-380,64],[-197,-73]],[[72711,37685],[-192,38]],[[50936,38856],[-8,-1]],[[51905,38887],[-6,329],[-580,42],[-82,109],[-289,-12],[-12,-499]],[[91758,31532],[-681,454]],[[91067,31993],[0,-1]],[[91077,31986],[-10,7]],[[96132,29698],[114,-38],[56,-383],[128,-256],[30,188],[295,171],[-417,242],[-80,201],[-126,-125]],[[77359,36027],[151,-67],[372,-410],[75,23]],[[77494,37397],[-80,-827]],[[77768,37338],[-274,59]],[[78183,36410],[-156,39],[21,287],[-161,42],[18,242],[-159,37],[22,281]],[[61503,39574],[-35,-1335]],[[61886,39548],[-383,26]],[[62270,39519],[-384,29]],[[62245,38514],[25,1005]],[[58427,39753],[-19,-1346]],[[58814,39740],[-387,13]],[[59198,39724],[-384,16]],[[59176,38454],[22,1270]],[[60728,39633],[-32,-1336]],[[61111,39605],[-383,28]],[[61503,39574],[-392,31]],[[57673,39799],[-15,-1334]],[[58053,39787],[-380,12]],[[58427,39753],[-374,34]],[[59962,39684],[-28,-1337]],[[60344,39660],[-382,24]],[[60728,39633],[-384,27]],[[59579,39705],[-381,19]],[[59962,39684],[-383,21]],[[54867,39715],[-9,-348],[72,-142],[-87,-279]],[[54938,39834],[-71,-119]],[[55767,39828],[-829,6]],[[56148,39826],[-381,2]],[[56143,38495],[5,1331]],[[56529,39822],[-381,4]],[[56908,39816],[-379,6]],[[56897,38484],[11,1332]],[[57291,39808],[-383,8]],[[57673,39799],[-382,9]],[[79678,36564],[-81,-811]],[[80471,36349],[-793,215]],[[80340,34998],[131,1351]],[[76602,36877],[-957,228]],[[76589,36745],[13,132]],[[76174,36194],[273,39]],[[80474,36382],[-3,-33]],[[81190,36392],[-101,-143],[-186,-2],[-429,135]],[[81312,35958],[-122,434]],[[74333,37736],[-73,-1001],[-187,41]],[[74907,37604],[-574,132]],[[70619,38428],[-58,-1001]],[[71266,38309],[-647,119]],[[71234,37297],[71,1004],[-39,8]],[[84542,35040],[-119,-217]],[[86053,34955],[-292,322],[-270,189],[-319,-467],[-126,48],[-110,-257],[-168,72],[-39,-275],[-131,474],[-56,-21]],[[86042,34862],[11,93]],[[7887,32410],[-75,-450],[-109,-169],[-196,-621],[61,-207],[-17,-493],[86,-249],[310,-591],[66,95],[141,-395],[166,-7],[-68,-201],[164,-563],[1,-468],[136,-265],[225,-843]],[[8665,32807],[-778,-397]],[[9641,28570],[-151,371],[23,248],[-160,300],[-211,-175],[-3,804],[-474,2689]],[[67665,39111],[-556,99]],[[67661,38774],[4,337]],[[52452,40241],[11,-1345]],[[53216,40260],[-764,-19]],[[53220,40260],[-4,0]],[[53234,38693],[-14,1567]],[[53963,40385],[1,-112],[-744,-13]],[[54205,40275],[-242,110]],[[54193,39717],[12,558]],[[53956,38933],[199,494],[38,290]],[[71516,38767],[-227,-121],[-23,-337]],[[71949,38673],[-433,94]],[[71942,37714],[27,445],[-56,11],[36,503]],[[42403,39622],[77,-1504]],[[43619,39776],[-1216,-154]],[[43673,39782],[-54,-6]],[[43725,38942],[-52,840]],[[81820,35813],[-8,-6]],[[82649,36035],[-238,337],[-401,144],[14,-236],[-112,-16],[-92,-451]],[[82548,34964],[101,1071]],[[28391,36151],[-543,-212],[-529,140]],[[29189,35510],[-174,476],[-158,-93],[-121,173],[-233,-182],[-112,267]],[[69850,38554],[-14,-248]],[[70619,38428],[-769,126]],[[87630,34771],[-122,-698],[-76,54],[-102,-252],[-35,-395]],[[87992,34785],[-362,-14]],[[88462,33787],[-177,244],[96,236],[-389,518]],[[88522,33610],[-60,177]],[[73357,37602],[-5,-72]],[[74146,37777],[-12,-166],[-189,38],[-16,-168],[-572,121]],[[74333,37736],[-187,41]],[[62471,39843],[-8,-333],[-193,9]],[[63174,39787],[-703,56]],[[62939,38803],[-57,365],[216,306],[76,313]],[[44624,39885],[25,-837]],[[45962,40020],[-1338,-135]],[[45978,38515],[-44,1335],[28,170]],[[45928,41198],[34,-1178]],[[46717,41260],[-789,-62]],[[47647,41335],[-930,-75]],[[47680,40002],[-33,1333]],[[97150,29482],[225,-92],[116,-252],[92,149],[-68,194],[-365,1]],[[51688,39731],[107,-232],[283,-369]],[[51686,40220],[2,-489]],[[52452,40241],[-766,-21]],[[42083,39581],[-798,-111]],[[42403,39622],[-320,-41]],[[50916,40193],[20,-1337]],[[50914,40863],[2,-670]],[[51688,39731],[-109,236],[-199,144],[-466,752]],[[50145,40157],[30,-1337]],[[50190,40159],[-45,-2]],[[50916,40193],[-726,-34]],[[50145,40157],[-767,-43]],[[54867,39715],[-674,2]],[[28482,37262],[-91,-402],[0,-709]],[[28620,37543],[-138,-281]],[[29367,36406],[-175,9],[-38,156],[-219,32],[-165,228],[99,181],[39,382],[-107,254],[-181,-105]],[[82704,36561],[-55,-526]],[[83382,36373],[-678,188]],[[83418,35204],[-92,25],[-34,297],[90,847]],[[9643,33395],[-995,-496],[17,-92]],[[9624,32147],[106,205],[-67,386],[-20,657]],[[11100,29286],[10,351],[-143,22],[-18,227],[-138,85],[-49,280],[-199,420],[-176,236],[9,490],[-277,118],[-131,178],[-172,23],[-153,216],[-39,215]],[[91772,33010],[7,63]],[[91401,33465],[-12,-631],[-74,-410],[-179,-179],[-59,-259]],[[91607,33506],[-206,-41]],[[91779,33073],[-172,433]],[[89588,33471],[-39,24]],[[90003,34032],[-415,-561]],[[90348,33209],[-164,541],[3,171],[-184,111]],[[90514,32691],[-166,518]],[[78592,37420],[-92,-1100]],[[78684,37685],[-92,-265]],[[79079,37292],[-16,324],[-379,69]],[[78958,35923],[121,1369]],[[79586,37158],[-507,134]],[[79678,36564],[52,554],[-144,40]],[[63174,39795],[0,-8]],[[63449,39777],[-275,18]],[[64027,39739],[-578,38]],[[64018,39404],[9,335]],[[66150,39348],[-327,41],[42,-176],[-229,25]],[[91067,31993],[119,485],[102,133],[81,537]],[[90795,32840],[-35,-23]],[[91369,33148],[-574,-308]],[[87136,35212],[-3,-249],[-228,-384],[-78,-331]],[[87428,35529],[-69,-206],[-151,89],[-72,-200]],[[87630,34771],[-95,295],[1,321],[-108,142]],[[67694,39567],[-29,-456]],[[67885,39528],[-191,39]],[[68892,39331],[-1007,197]],[[68860,38734],[32,597]],[[72027,38830],[-78,-157]],[[72539,38722],[-512,108]],[[72519,37723],[-29,335],[49,664]],[[93797,31851],[59,-175],[130,224],[-189,-49]],[[92157,33376],[-89,-241],[568,-191],[-40,-179],[627,-256],[222,-164],[424,-815],[-168,672],[-179,380],[181,1],[164,-480],[185,-134],[115,-217],[139,187],[178,-398],[149,9],[-795,1125],[-126,-47],[-98,309],[-441,487],[-564,330],[-280,351]],[[92329,34105],[-172,-729]],[[76700,37859],[-98,-982]],[[76874,37821],[-174,38]],[[77358,37714],[-484,107]],[[77494,37397],[-165,45],[29,272]],[[69380,40314],[-113,-1846]],[[69662,40269],[-282,45]],[[69905,39550],[-95,16],[18,285],[-189,31],[23,387]],[[69850,38554],[55,996]],[[77861,37594],[-93,-256]],[[78592,37420],[-731,174]],[[72560,39059],[-21,-337]],[[72996,38971],[-436,88]],[[73446,38863],[-450,108]],[[73427,38608],[19,255]],[[73357,37602],[70,1006]],[[75722,38105],[-53,-667]],[[76232,37982],[-510,123]],[[76700,37859],[-468,123]],[[83462,37059],[-80,-686]],[[84207,36821],[-745,238]],[[84188,36797],[19,24]],[[84542,35040],[-105,197],[119,261],[2,295],[-201,226],[-206,705],[37,73]],[[28696,38305],[-76,-762]],[[29801,38342],[-164,295],[-230,-60],[-59,144],[-348,-427],[-10,-222],[-192,302],[-102,-69]],[[31343,38218],[-277,-67],[-149,-127],[-211,133],[-477,56],[-153,-68],[-275,197]],[[31403,37517],[-60,701]],[[84587,36642],[-399,155]],[[85308,36442],[-242,26],[-175,262],[-304,-88]],[[85779,35823],[-471,619]],[[86053,34955],[-274,868]],[[88896,34837],[-230,-452],[111,-183],[-315,-415]],[[89400,34041],[-217,485],[-287,311]],[[89588,33471],[-212,478],[24,92]],[[74098,38466],[-671,142]],[[74146,37777],[47,668],[-95,21]],[[64796,40003],[-23,-671]],[[65376,39943],[-580,60]],[[65350,39271],[26,672]],[[44622,39890],[-949,-108]],[[44624,39885],[-2,5]],[[68947,40380],[-55,-1049]],[[69380,40314],[-433,66]],[[90795,32840],[-37,475],[241,110],[93,541]],[[90820,33768],[-94,-373],[-153,19],[-225,-205]],[[91092,33966],[-272,-198]],[[54940,40244],[-295,-46],[-254,268],[-186,-191]],[[54938,39834],[2,410]],[[12544,32923],[286,-1705],[146,-1041]],[[14049,36549],[93,-190],[101,-647],[-111,-343],[29,-276],[-200,-206],[-201,-622],[-197,-323],[-178,-115],[-341,339],[-178,-339],[112,-707],[-434,-197]],[[14298,36601],[-249,-52]],[[12267,32793],[-505,-236],[-331,-84],[-527,-33],[-335,-231],[-245,118],[-124,-207],[-234,-44],[-103,112],[-239,-41]],[[12544,32923],[-277,-130]],[[86690,35372],[-172,-291],[-2,-382],[-99,-242]],[[86570,36371],[122,-348],[-47,-215],[45,-436]],[[86559,36415],[11,-44]],[[86954,36160],[-289,289],[-106,-34]],[[87428,35529],[-474,631]],[[86669,34239],[33,299],[-29,586],[206,-156],[177,44],[80,200]],[[70676,39430],[-57,-1002]],[[71175,39344],[-499,86]],[[71524,38935],[-368,78],[19,331]],[[71516,38767],[8,168]],[[50905,41533],[9,-670]],[[50913,41533],[-8,0]],[[51672,41560],[-759,-27]],[[51686,40220],[-14,1340]],[[70487,39459],[-582,91]],[[70676,39430],[-189,29]],[[81169,37236],[-65,-545],[86,-299]],[[81253,37917],[-84,-681]],[[82009,37715],[-756,202]],[[81820,35813],[189,1902]],[[82010,37718],[-1,-3]],[[82466,38124],[-191,-71],[-8,-158],[-257,-177]],[[82704,36561],[54,514],[-292,1049]],[[74979,38548],[-72,-944]],[[75009,38932],[-30,-384]],[[75615,38804],[-606,128]],[[75722,38105],[-107,699]],[[74232,38947],[-109,-151],[-25,-330]],[[74979,38548],[-376,143],[12,167],[-383,89]],[[61138,40616],[-27,-1011]],[[61908,40556],[-770,60]],[[61886,39548],[22,1008]],[[61917,40892],[-9,-336]],[[62434,40853],[-517,39]],[[62471,39843],[27,1006],[-64,4]],[[60368,40669],[-24,-1009]],[[61138,40616],[-770,53]],[[58064,40787],[-11,-1000]],[[58832,40752],[-768,35]],[[58814,39740],[18,1012]],[[59600,40714],[-768,38]],[[59579,39705],[21,1009]],[[60368,40669],[-768,45]],[[55052,40828],[-112,-584]],[[55769,40823],[-717,5]],[[55767,39828],[2,995]],[[56534,40815],[-765,8]],[[56529,39822],[5,993]],[[57301,40802],[-767,13]],[[57291,39808],[10,994]],[[58064,40787],[-763,15]],[[27580,37343],[-261,-1264]],[[28482,37262],[-350,51],[8,-387],[-79,-22],[-481,439]],[[64063,41083],[-36,-1344]],[[64833,41012],[-770,71]],[[64796,40003],[37,1009]],[[85809,35969],[-30,-146]],[[86690,35372],[-236,58],[-645,539]],[[65662,40112],[33,-205],[-319,36]],[[66370,40008],[-708,104]],[[91369,33148],[-43,800]],[[91080,34103],[12,-137]],[[91326,33948],[-51,-70],[-195,225]],[[79617,37487],[-31,-329]],[[80556,37236],[-939,251]],[[80474,36382],[82,854]],[[88469,35309],[-477,-524]],[[88688,35023],[-219,286]],[[88896,34837],[-208,186]],[[80575,37419],[-19,-183]],[[81169,37236],[-594,183]],[[66596,40646],[-32,-670]],[[67407,41064],[-192,30],[-42,-540],[-577,92]],[[67694,39567],[90,1442],[-377,55]],[[89451,35441],[-52,-307],[163,-771],[-162,-322]],[[89471,35499],[-20,-58]],[[89866,34575],[-140,428],[-255,496]],[[90003,34032],[-137,543]],[[90170,34728],[-304,-153]],[[90625,34727],[-198,-253],[-257,254]],[[90738,34426],[-113,301]],[[90820,33768],[-100,-5],[18,663]],[[24267,39706],[91,-798]],[[27428,40276],[-312,327],[-764,-226],[-2085,-671]],[[27613,38550],[-68,12],[14,484],[-55,263],[41,378],[-117,589]],[[27580,37343],[71,246],[11,438],[-49,523]],[[62946,41259],[-156,-73],[-356,-333]],[[63174,39795],[-4,559],[-201,408],[-23,497]],[[62831,41494],[115,-235]],[[63302,41447],[-471,47]],[[63495,41442],[-193,5]],[[63449,39777],[46,1665]],[[64074,41417],[-579,25]],[[64063,41083],[11,334]],[[77658,39344],[-58,-648],[-161,-355],[-81,-627]],[[77849,39245],[-191,99]],[[77972,38825],[-157,42],[34,378]],[[77861,37594],[111,1231]],[[53961,41278],[2,-893]],[[55017,41282],[-1056,-4]],[[55052,40828],[-35,454]],[[51674,41560],[-2,0]],[[52440,41582],[-766,-22]],[[52452,40241],[-12,1341]],[[50168,41497],[22,-1338]],[[50905,41533],[-737,-36]],[[48052,41366],[-405,-31]],[[48619,41463],[-92,-64],[-475,-33]],[[48997,41541],[-378,-78]],[[49013,40095],[-16,1446]],[[49396,41596],[-399,-55]],[[50163,41532],[-312,128],[-455,-64]],[[50168,41497],[-5,35]],[[53205,41600],[-765,-18]],[[53216,40260],[-11,1340]],[[53202,42272],[3,-672]],[[53958,42283],[-756,-11]],[[53961,41278],[-3,1005]],[[71744,40240],[-125,26],[-95,-1331]],[[72121,40165],[-377,75]],[[72027,38830],[94,1335]],[[68310,41445],[-306,36],[-119,-1953]],[[68996,41322],[-686,123]],[[68947,40380],[49,942]],[[72438,40103],[-317,62]],[[72560,39059],[69,1005],[-191,39]],[[42083,39581],[-98,1835]],[[39457,42048],[16,-336],[187,31],[141,-2488]],[[39405,43052],[52,-1004]],[[39559,43077],[-154,-25]],[[40930,43286],[-1371,-209]],[[41985,41416],[-950,-139],[-105,2009]],[[44588,40862],[34,-972]],[[44580,41062],[8,-200]],[[45764,41181],[-1184,-119]],[[45928,41198],[-164,-17]],[[36615,38669],[-30,172],[217,373],[61,-54],[67,398],[-158,637],[46,676]],[[35440,41454],[104,-1215],[207,-183],[102,-1541]],[[36081,42096],[34,-510],[-675,-132]],[[36045,42758],[36,-662]],[[36730,42869],[-685,-111]],[[36818,40871],[8,401],[-94,1298],[-2,299]],[[37725,38898],[-6,246],[275,851],[170,964]],[[38164,40959],[-210,498],[-82,-109],[-376,121],[-195,-161],[-155,4],[-64,-263],[-77,149],[-136,-64],[-51,-263]],[[32875,39216],[104,-1325]],[[32737,40859],[138,-1643]],[[35440,41454],[-1535,-324],[-1168,-271]],[[43583,40747],[-72,1192]],[[43619,39776],[-36,971]],[[42165,41776],[12,-334],[-192,-26]],[[43318,41916],[-1153,-140]],[[43511,41939],[-193,-23]],[[44588,40862],[-1005,-115]],[[31379,38242],[-36,-24]],[[32875,39216],[-179,-160],[27,-391],[-43,-293],[-317,-74],[-21,256],[-165,160],[-47,-354],[-376,4],[-211,98],[-164,-220]],[[19657,41012],[283,-2045],[590,-4669],[42,-196]],[[20821,41441],[-1164,-429]],[[21394,37843],[-64,504],[3,547],[-123,456],[-28,501],[-93,321],[-127,128],[-141,1141]],[[18508,37252],[662,-1816]],[[17656,40506],[-23,-217],[176,-195],[1,-554],[234,-200],[138,-306],[170,-1],[95,-303],[10,-498],[126,-502],[-75,-478]],[[19657,41012],[-1223,-477],[-778,-29]],[[38451,41883],[-238,-675],[-49,-249]],[[39457,42048],[-1006,-165]],[[71263,40672],[-88,-1328]],[[71766,40570],[-503,102]],[[71744,40240],[22,330]],[[76322,39090],[-90,-1108]],[[76743,38983],[-421,107]],[[76959,38907],[-216,76]],[[76874,37821],[85,1086]],[[67445,41903],[-38,-839]],[[68332,41776],[-887,127]],[[68310,41445],[22,331]],[[77182,39480],[-56,-606],[-167,33]],[[77658,39344],[-476,136]],[[75814,39269],[-131,-27],[-68,-438]],[[76322,39090],[-508,179]],[[78764,38623],[-792,202]],[[78684,37685],[80,938]],[[73498,39606],[-52,-743]],[[74087,39653],[-12,-165],[-577,118]],[[74186,39632],[-99,21]],[[74232,38947],[-83,185],[37,500]],[[78777,38750],[-13,-127]],[[79321,38541],[-544,209]],[[79677,38148],[-247,84],[19,279],[-128,30]],[[79617,37487],[60,661]],[[65052,41756],[-20,-428],[-191,17],[-8,-333]],[[65550,40795],[-141,693],[-357,268]],[[65662,40112],[-103,364],[-9,319]],[[89261,35796],[-136,-122],[-89,-332],[-73,96],[-275,-415]],[[89451,35441],[-190,355]],[[18508,37252],[-1585,-629],[-1193,-503]],[[87274,36451],[-320,-291]],[[87459,36618],[-185,-167]],[[88277,35608],[-209,445],[-185,259],[-424,306]],[[88469,35309],[-192,299]],[[80097,38535],[-109,-142],[-28,-318],[-283,73]],[[80425,38510],[-328,25]],[[80652,38228],[-227,282]],[[80575,37419],[77,809]],[[66053,41327],[-101,-69],[-27,-510],[-375,47]],[[66596,40646],[-96,16],[18,335],[-238,293],[-227,37]],[[73096,40307],[-100,-1336]],[[73539,40203],[-443,104]],[[73498,39606],[41,597]],[[75059,39602],[-379,88],[-204,-123],[-290,65]],[[75009,38932],[50,670]],[[28617,38409],[-295,103],[-412,329],[-67,-207],[-230,-84]],[[28696,38305],[-79,104]],[[91396,33610],[5,-145]],[[91455,33910],[-59,-300]],[[91607,33506],[28,256],[-180,148]],[[72463,40435],[-25,-332]],[[72874,40354],[-411,81]],[[73096,40307],[-222,47]],[[91739,33862],[-45,-193],[266,-434],[197,141]],[[91817,34395],[8,-460],[-86,-73]],[[91789,34475],[28,-80]],[[91849,34551],[-60,-76]],[[92329,34105],[-480,446]],[[69704,40934],[-42,-665]],[[70247,40849],[-543,85]],[[70526,40130],[-276,39],[-3,680]],[[70487,39459],[39,671]],[[70912,40738],[-28,-502],[-254,44],[-104,-150]],[[71263,40672],[-351,66]],[[83308,38393],[-133,93],[-354,-26],[-84,-149],[-147,70],[-124,-257]],[[83462,37059],[-154,1334]],[[91111,34484],[-373,-58]],[[91156,34277],[-45,207]],[[91080,34103],[76,174]],[[55133,42046],[-52,-299],[-155,-259],[91,-206]],[[55792,42059],[-659,-13]],[[55769,40823],[23,1236]],[[56081,42063],[-289,-4]],[[56565,42068],[-484,-5]],[[56534,40815],[31,1253]],[[57041,42072],[-476,-4]],[[57312,42067],[-271,5]],[[57301,40802],[11,1265]],[[61164,41767],[-26,-1151]],[[61561,41719],[-397,48]],[[61942,41718],[-381,1]],[[61917,40892],[25,826]],[[60394,41854],[-26,-1185]],[[60876,41799],[-482,55]],[[61164,41767],[-288,32]],[[57714,42051],[-402,16]],[[58078,42031],[-364,20]],[[58064,40787],[14,1244]],[[58484,42002],[-406,29]],[[58849,41976],[-365,26]],[[58832,40752],[17,1224]],[[59157,41962],[-308,14]],[[59622,41924],[-465,38]],[[59600,40714],[22,1210]],[[60266,41868],[-644,56]],[[60394,41854],[-128,14]],[[85972,36360],[-113,7],[-50,-398]],[[86570,36371],[-175,-91],[-423,80]],[[91455,33910],[-109,428],[-23,-180],[73,-548]],[[31064,42072],[102,-1348],[213,-2482]],[[30858,43332],[9,-375],[318,-856],[-121,-29]],[[30856,43360],[2,-28]],[[32512,43626],[-104,114],[-1552,-380]],[[32563,43004],[-51,622]],[[32737,40859],[-174,2145]],[[80711,38841],[-59,-613]],[[80974,38766],[-263,75]],[[81253,37917],[-24,262],[-255,587]],[[85972,36360],[-309,435],[13,105],[-333,907]],[[85343,37807],[-107,101],[-169,-86],[117,-436],[-64,-177],[202,-564],[-14,-203]],[[29544,41311],[257,-2969]],[[29569,41656],[-25,-345]],[[31064,42072],[-1495,-416]],[[75090,40006],[-31,-404]],[[75700,40005],[-610,1]],[[75870,39962],[-170,43]],[[75814,39269],[56,693]],[[91326,33948],[-55,575],[-111,113],[-4,-359]],[[62465,42526],[-178,-108],[-185,-500],[-160,-200]],[[62831,41494],[-280,145],[-76,187],[80,606],[-90,94]],[[91411,34165],[54,-235],[274,-68]],[[91625,34421],[-214,-256]],[[91817,34395],[-192,26]],[[90000,36284],[-67,-196],[-169,-31],[-72,-450],[-221,-108]],[[90279,35851],[-139,359],[-140,74]],[[90170,34728],[87,500],[-61,333],[83,290]],[[88982,36254],[-705,-646]],[[89071,36334],[-89,-80]],[[89261,35796],[-190,538]],[[54626,42286],[-668,-3]],[[55227,42282],[-601,4]],[[55133,42046],[94,236]],[[90516,35955],[-171,59],[-66,-163]],[[90660,35011],[-83,201],[143,202],[-204,541]],[[90625,34727],[92,-11],[-57,295]],[[66105,42360],[-52,-1033]],[[66306,42502],[-192,28],[-9,-170]],[[67273,42380],[-967,122]],[[67467,42353],[-194,27]],[[67445,41903],[22,450]],[[44543,42052],[-1032,-113]],[[44580,41062],[-37,990]],[[64976,42063],[76,-307]],[[65534,42447],[-188,25],[-21,-445],[-349,36]],[[66105,42360],[-571,87]],[[84539,38388],[134,-765],[-143,-257],[28,-250],[-109,-112],[138,-362]],[[84798,38824],[-193,-170],[-66,-266]],[[85292,39069],[-119,-119],[-375,-126]],[[85473,38215],[-181,854]],[[85343,37807],[130,408]],[[83924,38470],[76,-195],[-16,-527],[75,-158],[148,-769]],[[84539,38388],[-28,222],[-268,-145],[2,227],[-321,-222]],[[91625,34421],[4,261],[-214,129],[-81,-190],[77,-456]],[[68999,41376],[-3,-54]],[[69725,41268],[-726,108]],[[69704,40934],[21,334]],[[91079,34859],[-419,152]],[[91111,34484],[-32,375]],[[70404,41325],[-29,-497],[-128,21]],[[70940,41235],[-536,90]],[[70912,40738],[28,497]],[[79477,39350],[-37,-503],[-96,19],[-23,-325]],[[80027,39236],[-550,114]],[[80097,38535],[-83,191],[13,510]],[[73595,41043],[-56,-840]],[[74213,40910],[-618,133]],[[74214,40909],[-1,1]],[[74087,39653],[90,1247],[37,9]],[[83217,38856],[91,-463]],[[83895,38808],[-392,98],[-71,-117],[-215,67]],[[83924,38470],[-29,338]],[[64112,42769],[-38,-1352]],[[64548,43081],[-427,25],[-9,-337]],[[64976,42063],[-193,285],[-115,547],[-120,186]],[[76556,40081],[86,-241],[-46,-590],[163,-43],[-16,-224]],[[77043,40293],[-311,41],[-10,-218],[-166,-35]],[[77182,39480],[27,791],[-166,22]],[[76172,40131],[-18,-241],[-284,72]],[[76556,40081],[-384,50]],[[46678,42609],[39,-1349]],[[46710,42611],[-32,-2]],[[47655,42686],[-945,-75]],[[47829,42694],[-174,-8]],[[48052,41366],[-23,1007],[-192,-16],[-8,337]],[[50142,42839],[21,-1307]],[[50894,42873],[-752,-34]],[[50913,41533],[-19,1340]],[[48592,42747],[-763,-53]],[[48619,41463],[-27,1284]],[[45725,42518],[39,-1337]],[[45757,42521],[-32,-3]],[[46678,42609],[-921,-88]],[[44530,42401],[13,-349]],[[45725,42518],[-1195,-117]],[[51660,42900],[14,-1340]],[[51666,42901],[-6,-1]],[[52429,42923],[-763,-22]],[[52440,41582],[-11,1341]],[[53194,42941],[-765,-18]],[[53202,42272],[-8,669]],[[50901,42873],[-7,0]],[[51660,42900],[-759,-27]],[[85514,38100],[-41,115]],[[86559,36415],[-364,306],[-510,892],[-171,487]],[[29544,41311],[-321,-91],[16,-164],[-238,-501],[80,-417],[-95,-478],[-199,-70],[-62,-311],[-122,-37],[-79,-366],[94,-138],[-1,-329]],[[49373,42797],[23,-1201]],[[50137,42839],[-764,-42]],[[50142,42839],[-5,0]],[[74901,40263],[-562,129],[28,391],[-153,126]],[[75090,40006],[-190,55],[1,202]],[[48612,42749],[-20,-2]],[[49373,42797],[-761,-48]],[[81895,39595],[136,-158],[-37,-575],[89,-225],[-32,-369],[-141,-173],[100,-377]],[[81911,39866],[-16,-271]],[[82918,39904],[-377,-298],[-145,297],[-268,-106],[-217,69]],[[83217,38856],[-145,729],[-154,319]],[[88019,37127],[-560,-509]],[[88562,37631],[-543,-504]],[[88805,37129],[-243,502]],[[88982,36254],[-177,875]],[[81895,39595],[-147,-20],[53,-169],[-470,-170],[-357,-470]],[[77944,39657],[-29,-447],[-66,35]],[[78741,39499],[-797,158]],[[78777,38750],[30,736],[-66,13]],[[78961,40313],[-39,-562],[-161,31],[-20,-283]],[[79439,40215],[-478,98]],[[79477,39350],[36,497],[-99,23],[25,345]],[[86751,37526],[-168,-58],[-43,-249],[84,-161],[-110,-388],[45,-255]],[[86892,37873],[-141,-347]],[[87166,38194],[-49,-219],[-225,-102]],[[87384,37826],[-218,368]],[[87274,36451],[-198,387],[308,988]],[[71807,41177],[-41,-607]],[[71813,41286],[-6,-109]],[[72289,41194],[-476,92]],[[72514,41153],[-225,41]],[[72463,40435],[51,718]],[[91042,35072],[50,-406],[176,-93],[62,151],[-99,333],[-169,200],[-20,-185]],[[62347,43035],[118,-509]],[[62340,43222],[7,-187]],[[63343,43164],[-1003,58]],[[63336,42812],[7,352]],[[63302,41447],[34,1365]],[[80558,39203],[21,-339],[-154,-354]],[[80741,39138],[-183,65]],[[80711,38841],[30,297]],[[64112,42769],[-776,43]],[[85648,38413],[-134,-313]],[[86751,37526],[-777,549],[-36,-132],[-290,470]],[[61579,42893],[-18,-1174]],[[61581,43061],[-2,-168]],[[62347,43035],[-766,26]],[[89982,37096],[-911,-762]],[[90094,37406],[-112,-310]],[[90457,36875],[-153,142],[-210,389]],[[90000,36284],[334,354],[123,237]],[[90800,36322],[-262,-178],[-22,-189]],[[91129,35410],[-193,755],[-136,157]],[[91079,34859],[-54,443],[104,108]],[[60900,42764],[-24,-965]],[[60907,42932],[-7,-168]],[[61579,42893],[-672,39]],[[80219,40218],[-65,-1010],[-127,28]],[[80521,40143],[-302,75]],[[80545,40026],[-24,117]],[[80558,39203],[76,270],[-89,553]],[[60336,42811],[0,-603],[-70,-340]],[[60900,42764],[-564,47]],[[59181,42721],[-24,-759]],[[60046,42831],[-2,-166],[-863,56]],[[60336,42811],[-290,20]],[[55491,43278],[-167,-221],[52,-82],[-149,-693]],[[56124,43283],[-633,-5]],[[56081,42063],[44,382],[-1,838]],[[58519,43208],[-35,-1206]],[[59188,43170],[-669,38]],[[59181,42721],[7,449]],[[56359,43786],[-50,-502],[-185,-1]],[[57100,43786],[-741,0]],[[57104,42782],[-4,1004]],[[57041,42072],[63,710]],[[28257,41291],[-212,-51],[70,-159],[-117,-390],[-399,529],[-109,-27],[104,-403],[-166,-514]],[[28915,41475],[-658,-184]],[[29569,41656],[-654,-181]],[[57752,42773],[-38,-722]],[[57758,43727],[-6,-954]],[[58524,43713],[-766,14]],[[58519,43208],[5,505]],[[77056,40573],[-13,-280]],[[77996,40490],[-473,91],[-4,-73],[-463,65]],[[77944,39657],[52,833]],[[72891,41080],[-17,-726]],[[72911,41357],[-20,-277]],[[73607,41206],[-696,151]],[[73595,41043],[12,163]],[[57752,42773],[-648,9]],[[72891,41080],[-377,73]],[[71176,41418],[-236,-183]],[[71807,41177],[-638,130],[7,111]],[[69751,41687],[-26,-419]],[[69782,42269],[-31,-582]],[[70451,42161],[-669,108]],[[70404,41325],[47,836]],[[54626,43292],[0,-1006]],[[54722,43294],[-96,-2]],[[55495,43289],[-773,5]],[[55491,43278],[4,11]],[[88019,37127],[-230,321],[-405,378]],[[74940,41069],[-39,-806]],[[75729,41066],[-789,3]],[[75700,40005],[29,1061]],[[41681,43391],[-751,-105]],[[42165,41776],[-88,1669],[-396,-54]],[[53185,44283],[9,-1342]],[[53372,44286],[-187,-3]],[[53952,44294],[-580,-8]],[[53955,43288],[-3,1006]],[[53958,42283],[-3,1005]],[[54626,43292],[-671,-4]],[[76172,40131],[61,761],[127,-28],[35,385]],[[75844,41498],[-18,-439],[-97,7]],[[76345,41398],[-501,100]],[[76395,41249],[-50,149]],[[68423,43772],[-74,-1326],[-17,-670]],[[69107,43658],[-684,114]],[[69057,42641],[50,1017]],[[68999,41376],[58,1265]],[[37055,42931],[-325,-62]],[[37863,43955],[-167,11],[-135,-611],[-191,-314],[-315,-110]],[[38295,43438],[-87,158],[-238,-11],[-107,370]],[[38338,43134],[-43,304]],[[38451,41883],[-55,217],[59,229],[-31,408],[-91,74],[5,323]],[[74260,41510],[-47,-600]],[[74951,41414],[-333,9],[-358,87]],[[74940,41069],[11,345]],[[80827,40048],[-86,-910]],[[80880,40593],[-53,-545]],[[80899,40798],[-19,-205]],[[81763,40470],[-534,19],[-330,309]],[[81911,39866],[36,347],[-184,257]],[[69271,42687],[-214,-46]],[[69751,41687],[-224,249],[-191,419],[-104,98],[39,234]],[[91129,35410],[145,-74],[274,96],[-26,344],[88,18],[7,796],[-112,-35]],[[90687,36821],[113,-499]],[[90774,37021],[-87,-200]],[[91505,36555],[-242,118],[-61,-176],[-234,79],[-194,445]],[[78035,40761],[-39,-271]],[[78828,40617],[-793,144]],[[78961,40313],[-133,304]],[[89445,37586],[-319,-214],[-78,-196],[-243,-47]],[[89628,37866],[-183,-280]],[[89982,37096],[-111,405],[-212,-104],[-48,171],[116,122],[-99,176]],[[9523,34058],[120,-663]],[[10981,34773],[-1458,-715]],[[12177,33929],[-121,144],[-138,-64],[-170,389],[-93,-50],[-176,296],[-436,-189],[-62,318]],[[12267,32793],[-15,368],[183,239],[-95,357],[-163,172]],[[12454,36266],[-145,-580],[-239,-696],[67,-539],[125,-311],[-85,-211]],[[12587,36168],[-133,98]],[[14049,36549],[-836,-365],[-62,86],[-185,-262],[-71,-253],[-308,413]],[[77085,41153],[-690,96]],[[77056,40573],[29,580]],[[43139,45257],[68,-1671],[74,-1338],[37,-332]],[[44422,45382],[-1283,-125]],[[44480,43731],[-58,1651]],[[44530,42401],[-50,1330]],[[41632,44395],[49,-1004]],[[41600,45062],[32,-667]],[[42540,45189],[-940,-127]],[[42540,45189],[0,0]],[[43139,45257],[-599,-68]],[[64293,43338],[255,-257]],[[64904,43335],[-333,251],[-151,5],[-127,-253]],[[65567,43207],[-121,-132],[-130,143],[-376,-16],[-36,133]],[[65534,42447],[33,760]],[[79642,40333],[-191,43],[-12,-161]],[[80219,40218],[-577,115]],[[70458,42297],[-7,-136]],[[71221,42158],[-763,139]],[[71213,42024],[8,134]],[[71176,41418],[37,606]],[[90687,36821],[-225,-80],[-5,134]],[[71852,41897],[-639,127]],[[71813,41286],[39,611]],[[80827,40048],[-282,-22]],[[67534,43900],[-67,-1547]],[[68423,43772],[-889,128]],[[59212,44068],[-24,-898]],[[60069,44007],[-857,61]],[[60046,42831],[23,1176]],[[57104,44121],[-4,-335]],[[57759,44119],[-655,2]],[[57758,43727],[1,392]],[[71918,42952],[-66,-1055]],[[72400,42854],[-482,98]],[[72368,42351],[32,503]],[[72289,41194],[79,1157]],[[72977,42235],[-609,116]],[[72911,41357],[66,878]],[[69284,43362],[-13,-675]],[[69840,43272],[-556,90]],[[69782,42269],[58,1003]],[[73676,42375],[-69,-1169]],[[73696,42713],[-20,-338]],[[74247,42594],[-551,119]],[[74346,42569],[-99,25]],[[74260,41510],[86,1059]],[[50115,44179],[22,-1340]],[[50491,44197],[-376,-18]],[[50882,44212],[-391,-15]],[[50901,42873],[-19,1339]],[[49347,44139],[26,-1342]],[[49537,44149],[-190,-10]],[[50115,44179],[-578,-30]],[[51462,44236],[-580,-24]],[[51649,44243],[-187,-7]],[[51666,42901],[-17,1342]],[[45565,43845],[-1085,-114]],[[45710,43859],[-145,-14]],[[45757,42521],[-47,1338]],[[47627,44027],[28,-1341]],[[47654,44029],[-27,-2]],[[48586,44094],[-932,-65]],[[48612,42749],[-26,1345]],[[52416,44265],[-767,-22]],[[52429,42923],[-13,1342]],[[53185,44283],[-769,-18]],[[46670,43947],[40,-1336]],[[46704,43951],[-34,-4]],[[47627,44027],[-923,-76]],[[46670,43947],[-960,-88]],[[48591,44094],[-5,0]],[[49347,44139],[-756,-45]],[[60083,44006],[-14,1]],[[60935,43954],[-852,52]],[[60907,42932],[28,1022]],[[85998,39295],[-350,-882]],[[86497,38630],[-62,180],[-347,256],[-90,229]],[[86892,37873],[-53,263],[-201,145],[-141,349]],[[65628,43765],[-61,-558]],[[66248,43919],[-452,-8],[-9,-167],[-159,21]],[[66350,43397],[24,503],[-126,19]],[[66306,42502],[44,895]],[[83857,40858],[44,-412],[-104,-879],[98,-759]],[[84573,40632],[-716,226]],[[84798,38824],[-86,338],[54,95],[-99,942],[-94,433]],[[88150,39420],[-328,-607],[-155,-94],[-168,-378],[-163,35],[-170,-182]],[[88160,39416],[-10,4]],[[88323,39358],[-163,58]],[[88562,37631],[-101,148],[45,266],[-57,357],[45,312],[-75,457],[-96,187]],[[73017,42508],[-40,-273]],[[73676,42375],[-659,133]],[[61038,44275],[-95,2],[-8,-323]],[[61607,44246],[-569,29]],[[61581,43061],[26,1185]],[[85044,40482],[145,-640],[35,-506],[68,-267]],[[86099,40141],[-1055,341]],[[86116,40135],[-17,6]],[[85998,39295],[118,840]],[[82879,41163],[3,-385],[-97,-104],[133,-770]],[[83651,40922],[-772,241]],[[83857,40858],[-206,64]],[[67025,43287],[-675,110]],[[67273,42380],[-248,907]],[[63351,43505],[-8,-341]],[[64042,43889],[-159,39],[-164,-455],[-368,32]],[[64293,43338],[-120,410],[-131,141]],[[67069,44298],[-44,-1011]],[[67531,44238],[-462,60]],[[67534,43900],[-3,338]],[[77108,41872],[-23,-719]],[[77649,41778],[-541,94]],[[78039,41748],[-390,30]],[[78035,40761],[51,831],[-47,156]],[[74970,41968],[-19,-554]],[[75853,41890],[-883,78]],[[75844,41498],[9,392]],[[58537,44381],[-13,-668]],[[59215,44320],[-678,61]],[[59212,44068],[3,252]],[[38803,43290],[4,-85],[-469,-71]],[[39227,43357],[-424,-67]],[[39405,43052],[-9,163],[-169,142]],[[54333,44297],[-381,-3]],[[54721,44299],[-388,-2]],[[54722,43294],[-1,1005]],[[55099,44299],[-378,0]],[[55859,44295],[-760,4]],[[55912,44294],[-53,1]],[[55495,43289],[260,516],[-35,271],[192,218]],[[56449,44679],[-142,142],[-220,-181],[-175,-346]],[[56359,43786],[90,893]],[[61797,44237],[-190,9]],[[62485,44195],[-688,42]],[[62340,43222],[35,626],[110,347]],[[88901,39143],[-578,215]],[[89167,38590],[-105,101],[-161,452]],[[89168,38589],[-1,1]],[[89167,38590],[1,-1]],[[89445,37586],[-85,349],[-126,209],[-67,446]],[[86883,39872],[-48,-423],[61,-119],[-177,-557],[-222,-143]],[[87237,39746],[-354,126]],[[87600,39617],[-363,129]],[[88150,39420],[-550,197]],[[36081,42096],[-471,-92],[-50,672],[-189,-50],[-25,342],[-856,-168],[-37,499],[-1041,-227],[-13,166],[-836,-234]],[[79642,40333],[63,836]],[[78970,41786],[-88,-325],[-54,-844]],[[79705,41169],[-255,70],[-112,249],[-193,38],[17,224],[-192,36]],[[71285,43134],[-64,-976]],[[71795,43038],[-510,96]],[[71918,42952],[-123,86]],[[69996,43581],[-139,20],[-17,-329]],[[70529,43501],[-533,80]],[[70516,43278],[13,223]],[[70458,42297],[58,981]],[[62624,44902],[-128,-317],[-11,-390]],[[63377,44504],[12,338],[-765,60]],[[63351,43505],[26,999]],[[74990,42587],[-180,16],[-12,-144],[-452,110]],[[74970,41968],[20,619]],[[80513,40628],[8,-485]],[[80880,40593],[-367,35]],[[89980,37667],[114,-261]],[[89989,37674],[-9,-7]],[[90646,38451],[-146,-157],[-161,34],[-96,-344],[-254,-310]],[[91263,38892],[-19,63],[-420,-183],[-178,-321]],[[91266,38876],[-3,16]],[[90774,37021],[424,1038],[89,656],[-21,161]],[[71139,43167],[-623,111]],[[71285,43134],[-146,33]],[[79728,41488],[-23,-319]],[[80431,41372],[-703,116]],[[80513,40628],[2,490],[-84,254]],[[91505,36555],[115,82],[-75,376],[44,271],[-56,759],[82,129],[-230,639],[-119,65]],[[78350,42224],[-9,-174],[-165,24],[-16,-341],[-121,15]],[[78993,42119],[-643,105]],[[78970,41786],[23,333]],[[84637,40613],[-64,19]],[[85044,40482],[-407,131]],[[64934,44128],[-30,-793]],[[65628,43765],[-203,26],[3,225],[-494,112]],[[10986,36432],[156,-541],[-236,-99],[61,-353],[125,-223],[-111,-443]],[[10907,36709],[79,-277]],[[11372,36967],[-465,-258]],[[12454,36266],[-161,205],[-261,-90],[-272,587],[-388,-1]],[[69164,44716],[-57,-1058]],[[69418,44674],[-254,42]],[[69284,43362],[101,228],[3,891],[30,193]],[[82000,41427],[-62,-607],[-175,-350]],[[82256,41352],[-256,75]],[[82738,41208],[-482,144]],[[82879,41163],[-141,45]],[[76371,42540],[-89,-900],[63,-242]],[[77083,42441],[-712,99]],[[77108,41872],[-25,569]],[[89778,38230],[-150,-364]],[[89980,37667],[-108,178],[15,274],[-109,111]],[[57792,45065],[-8,-946],[-25,0]],[[58551,45054],[-759,11]],[[58537,44381],[14,673]],[[56650,44973],[-201,-294]],[[57115,44967],[-465,6]],[[57104,44121],[11,846]],[[22127,43811],[-1306,-2370]],[[23739,44355],[-1612,-544]],[[24111,41080],[-372,3275]],[[24267,39706],[-156,1374]],[[63939,44328],[103,-439]],[[64938,44241],[-999,87]],[[64934,44128],[4,113]],[[75702,42845],[100,-5],[51,-950]],[[75708,43062],[-6,-217]],[[76391,42990],[-683,72]],[[76371,42540],[20,450]],[[63963,44470],[-586,34]],[[63939,44328],[24,142]],[[32473,44126],[39,-500]],[[35222,44736],[-1757,-378],[-992,-232]],[[35762,44847],[-540,-111]],[[36045,42758],[-138,-28],[-145,2117]],[[72404,43470],[-4,-616]],[[72904,43372],[-500,98]],[[73040,43342],[-136,30]],[[73017,42508],[23,834]],[[86521,39998],[-405,137]],[[86883,39872],[-362,126]],[[89170,38589],[-2,0]],[[89170,38589],[22,-14]],[[89466,38597],[-274,-22]],[[89778,38230],[-153,90],[-159,277]],[[66265,44311],[-17,-392]],[[66617,44889],[-193,20],[-28,-559],[-131,-39]],[[66982,44846],[-365,43]],[[67069,44298],[-105,213],[18,335]],[[39227,43357],[0,0]],[[39386,43383],[-159,-26]],[[39559,43077],[-173,306]],[[60091,45306],[-8,-1300]],[[60380,45635],[-2,-336],[-287,7]],[[61047,45612],[-667,23]],[[61049,45612],[-2,0]],[[61038,44275],[11,1337]],[[74994,42700],[-4,-113]],[[75702,42845],[-315,-28],[-3,-94],[-390,-23]],[[59394,45329],[-167,7],[-12,-1016]],[[60091,45306],[-697,23]],[[57119,45246],[-4,-279]],[[57793,45231],[-674,15]],[[57792,45065],[1,166]],[[80899,40798],[88,916]],[[80460,41865],[-70,-185],[41,-308]],[[80987,41714],[-527,151]],[[81152,41669],[-165,45]],[[82000,41427],[-848,242]],[[27438,43004],[-297,-146],[74,-592],[-29,-272],[-1832,-551],[-849,-273],[-394,-90]],[[28257,41291],[66,303],[-241,109],[-78,895],[-86,277],[-297,-80],[-183,209]],[[73374,43563],[-255,46],[-79,-267]],[[73743,43442],[-369,121]],[[73696,42713],[47,729]],[[44421,45404],[1,-22]],[[45504,45515],[-1083,-111]],[[45565,43845],[-61,1670]],[[45547,45519],[-43,-4]],[[46651,45621],[-1104,-102]],[[46704,43951],[-53,1670]],[[7888,37372],[-140,-413],[-80,-442],[134,-246],[-30,-677],[8,-615],[70,-325],[167,-399],[38,-1073],[-168,-772]],[[9123,37664],[-431,-224],[-125,112],[-385,-180],[-21,102],[-273,-102]],[[9467,34895],[-32,192],[-302,-40],[-82,341],[24,700],[-180,159],[-86,366],[128,367],[4,391],[182,293]],[[9523,34058],[22,359],[-78,478]],[[50464,45871],[27,-1674]],[[50494,45873],[-30,-2]],[[51442,45913],[-948,-40]],[[51447,45578],[-5,335]],[[51462,44236],[-15,1342]],[[49507,45821],[30,-1672]],[[49544,45824],[-37,-3]],[[50464,45871],[-920,-47]],[[52406,45606],[-959,-28]],[[52416,44265],[-10,1341]],[[52403,45941],[3,-335]],[[53103,45958],[-700,-17]],[[53363,45962],[-260,-4]],[[53372,44286],[-9,1676]],[[46687,45624],[-36,-3]],[[47607,45702],[-920,-78]],[[47654,44029],[-47,1673]],[[16012,39910],[19,-140],[-182,-419],[-77,-380],[-199,-491],[118,-468],[131,-753],[-233,258]],[[17496,40520],[-1484,-610]],[[17656,40506],[-160,14]],[[47639,45703],[-32,-1]],[[48549,45766],[-910,-63]],[[48591,44094],[-42,1672]],[[48593,45770],[-44,-4]],[[49507,45821],[-914,-51]],[[53746,45967],[-383,-5]],[[54331,45972],[-585,-5]],[[54333,44297],[-2,1675]],[[39359,43854],[27,-471]],[[39634,44095],[261,-70],[-16,-211],[222,20],[47,-274],[-222,-31],[-121,369],[-446,-44]],[[41632,44395],[-1157,-160],[-841,-140]],[[55099,45638],[0,-1339]],[[55482,45636],[-383,2]],[[55864,45632],[-382,4]],[[55859,44295],[5,1337]],[[54678,45973],[-347,-1]],[[55099,45638],[0,333],[-421,2]],[[56351,45738],[-104,-110],[-383,4]],[[56650,44973],[-42,373],[-257,392]],[[89913,38123],[-31,-240],[107,-209]],[[90473,38999],[-141,-287],[-103,-22],[-316,-567]],[[90646,38451],[-173,548]],[[65105,45577],[-123,-716],[-44,-620]],[[65487,45529],[-382,48]],[[65773,45492],[-286,37]],[[66265,44311],[-288,313],[-128,410],[-96,10],[20,448]],[[58562,45722],[-11,-668]],[[59381,45669],[-819,53]],[[59394,45329],[-13,340]],[[61816,45353],[-576,24],[2,227],[-193,8]],[[61797,44237],[19,1116]],[[69730,44629],[-312,45]],[[70046,44587],[-316,42]],[[69996,43581],[50,1006]],[[79235,42714],[-23,-294],[-97,18],[-24,-333],[-98,14]],[[79743,42506],[-187,67],[-148,-135],[21,239],[-194,37]],[[79728,41488],[-128,28],[47,620],[65,-16],[31,386]],[[62039,45339],[-223,14]],[[62735,45182],[-699,46],[3,111]],[[62624,44902],[111,280]],[[71826,43924],[-31,-886]],[[72365,43819],[-539,105]],[[72404,43470],[-39,349]],[[77315,43322],[-189,18],[-43,-899]],[[77886,42791],[-194,22],[5,228],[-207,28],[10,171],[-185,82]],[[77649,41778],[14,359],[129,-15],[94,669]],[[38766,43926],[-242,-145],[-229,-343]],[[38803,43290],[-37,636]],[[78281,43076],[-386,-60],[-9,-225]],[[78472,43051],[-191,25]],[[78350,42224],[104,154],[18,673]],[[71206,44286],[-67,-1119]],[[71335,44257],[-129,29]],[[71839,44149],[-504,108]],[[71826,43924],[13,225]],[[36929,45090],[-1167,-243]],[[37307,45091],[-81,69],[-297,-70]],[[37055,42931],[44,619],[313,506],[-75,447],[-90,133],[60,455]],[[37429,45114],[-122,-23]],[[37992,44497],[14,106],[-258,435],[-189,182],[-130,-106]],[[37863,43955],[208,280],[-79,262]],[[70652,44501],[-59,-103],[-64,-897]],[[71206,44286],[-237,49],[7,112],[-324,54]],[[74347,43845],[-100,-1251]],[[74540,43810],[-193,35]],[[74969,43764],[-429,46]],[[74994,42700],[-63,60],[38,1004]],[[73785,44051],[-42,-609]],[[74347,43845],[6,84],[-568,122]],[[38724,44619],[42,-693]],[[38744,46313],[-116,-19],[96,-1675]],[[38746,46313],[-2,0]],[[39319,44719],[-156,484],[-86,89],[-66,402],[-265,619]],[[39321,44532],[-2,187]],[[39359,43854],[-22,397],[-111,265],[95,16]],[[39634,44095],[-73,438],[-93,-184],[-147,183]],[[89472,38684],[67,-152],[374,-409]],[[90185,39266],[-278,-282],[-223,-11],[-212,-289]],[[90339,39420],[-154,-154]],[[90473,38999],[-134,421]],[[68411,44524],[12,-752]],[[68460,45308],[-49,-784]],[[69191,45216],[-267,0],[-464,92]],[[69164,44716],[27,500]],[[67558,44776],[-27,-538]],[[68411,44524],[-158,152],[-695,100]],[[63923,44664],[40,-194]],[[64465,45652],[-14,-448],[-128,-102],[-8,-335],[-190,19],[-6,-138],[-196,16]],[[64717,45625],[-252,27]],[[65105,45577],[-388,48]],[[80178,42646],[-8,-123],[-357,69],[-70,-86]],[[80314,42349],[-136,297]],[[80460,41865],[-35,374],[-111,110]],[[70199,45071],[-128,19],[-25,-503]],[[70630,45012],[-431,59]],[[70652,44501],[-22,511]],[[38724,44619],[-732,-122]],[[75203,43747],[-234,17]],[[75728,43705],[-525,42]],[[75708,43062],[20,643]],[[62962,45493],[-227,-311]],[[63396,46221],[-160,-146],[-274,-582]],[[63949,46184],[-553,37]],[[63987,45694],[-38,490]],[[63923,44664],[-68,365],[132,665]],[[89192,38575],[-22,14]],[[89102,40427],[-201,-1284]],[[89151,40728],[-49,-301]],[[89527,40325],[-191,353],[-185,50]],[[89466,38597],[-69,125],[-145,783],[101,104],[4,394],[170,322]],[[66473,46087],[-668,79],[-32,-674]],[[66617,44889],[51,1184],[-195,14]],[[56271,46087],[80,-349]],[[57127,46081],[-856,6]],[[57119,45246],[8,835]],[[28877,41888],[38,-413]],[[30858,43332],[-1778,-471],[-41,-575],[-55,54],[-107,-452]],[[27338,44028],[100,-1024]],[[28547,44422],[-940,-269],[-269,-125]],[[28877,41888],[-86,903],[-90,-25],[-154,1656]],[[76421,43680],[-30,-690]],[[77326,43654],[-439,59],[14,-107],[-480,74]],[[77315,43322],[11,332]],[[9588,35755],[130,-732],[-251,-128]],[[10986,36432],[-169,-198],[-222,-114],[-17,106],[-990,-471]],[[67598,45562],[-194,24],[-111,-269],[-128,16],[-11,-223],[-157,16],[-15,-280]],[[67558,44776],[40,786]],[[72976,44374],[-72,-1002]],[[73420,44284],[-444,90]],[[73374,43563],[46,721]],[[72432,44760],[-67,-941]],[[72995,44650],[-563,110]],[[72976,44374],[19,276]],[[64465,45652],[-478,42]],[[57797,46074],[-4,-843]],[[58565,46056],[-768,18]],[[58562,45722],[3,334]],[[89326,39349],[146,-665]],[[89326,39349],[16,85]],[[89426,39836],[21,-301],[-105,-101]],[[89426,39836],[-7,4]],[[89681,40172],[-262,-332]],[[90185,39266],[18,431],[-309,-283],[-165,470],[-48,288]],[[12428,37063],[50,-456],[109,-439]],[[14139,37623],[-831,-368],[-51,-298],[-156,-106],[-175,173],[-498,39]],[[78848,43347],[-360,53],[-16,-349]],[[79235,42714],[-212,77],[44,380],[-197,2],[-22,174]],[[57131,46367],[-4,-286]],[[57797,46354],[-666,13]],[[57797,46074],[0,280]],[[39978,44824],[-659,-105]],[[41587,45060],[-1609,-236]],[[41600,45062],[-13,-2]],[[14511,38570],[437,-156],[478,-922]],[[14688,39304],[42,-418],[-143,-62],[-76,-254]],[[14755,41518],[76,-763],[-95,-30],[97,-838],[204,-56],[48,-348],[-397,-179]],[[14980,42095],[-225,-577]],[[16012,39910],[-295,-119],[-212,427],[-49,345],[188,76],[-244,1634],[-420,-178]],[[90641,40058],[-41,-382],[-261,-256]],[[91002,40055],[-361,3]],[[91263,38892],[78,501],[-119,147],[153,71],[-178,309],[-195,135]],[[73796,44226],[-376,58]],[[73785,44051],[11,175]],[[84687,40931],[-50,-318]],[[85217,40828],[-297,-206],[-111,327],[-122,-18]],[[85601,41197],[-134,-210],[77,-195],[-172,101],[-155,-65]],[[85854,41791],[-58,-252],[-195,-342]],[[85922,41753],[-68,38]],[[86099,40141],[-126,435],[-51,1177]],[[83520,41913],[131,-991]],[[84187,41490],[-262,-208],[-218,735],[-187,-104]],[[84512,41459],[-325,31]],[[84687,40931],[-175,528]],[[82922,43168],[-184,-1960]],[[83237,42596],[-315,572]],[[83520,41913],[-283,683]],[[88506,39991],[-346,-575]],[[88992,40482],[-350,76],[116,-388],[190,44],[-155,-166],[138,-173],[-60,-163],[-201,590],[6,-432],[-170,121]],[[89102,40427],[-110,55]],[[81226,41975],[-74,-306]],[[82064,42457],[-421,-495],[-327,88],[-90,-75]],[[82145,42499],[-81,-42]],[[82256,41352],[-5,381],[-132,593],[26,173]],[[82196,43017],[-51,-518]],[[82367,43236],[-171,-219]],[[82925,43210],[-367,-190],[-191,216]],[[82922,43168],[3,42]],[[88102,40727],[-164,-351],[-198,-117],[-140,-642]],[[88506,39991],[6,425],[-169,393],[-48,-445],[-63,109],[18,561],[-66,-315],[-82,8]],[[80919,42792],[-174,-50],[-275,-418],[-156,25]],[[81051,42838],[-132,-46]],[[81122,42660],[-71,178]],[[81226,41975],[-145,330],[41,355]],[[87246,41201],[-59,-350],[50,-1105]],[[87617,41608],[-180,-139],[-26,-182],[-165,-86]],[[87739,41472],[-122,136]],[[87887,41406],[-60,-493],[-305,106],[44,355],[173,98]],[[88102,40727],[68,194],[-72,382],[-77,-116],[-58,346],[-76,-127]],[[86764,41353],[42,-555],[-195,-275],[-158,-49],[68,-476]],[[87246,41201],[-349,51],[-133,101]],[[86335,42011],[-218,-248],[-195,-10]],[[86763,41355],[-428,656]],[[86764,41353],[-1,2]],[[75913,44331],[-24,-640],[-161,14]],[[76283,44252],[-370,79]],[[76421,43680],[-138,572]],[[28347,46405],[200,-1983]],[[30535,47026],[-2192,-582],[4,-39]],[[30856,43360],[-34,417],[-291,957],[-45,269],[237,264],[-241,-128],[-60,433],[102,453],[-52,339],[94,81],[-61,257],[114,106],[-84,218]],[[59693,46548],[-249,-275],[-63,-604]],[[60141,47130],[-106,16],[-103,-347],[-187,-77],[-52,-174]],[[60377,46749],[-145,-77],[-91,458]],[[60380,45635],[-3,1114]],[[71908,45264],[-69,-1115]],[[72363,45170],[-455,94]],[[72432,44760],[23,393],[-92,17]],[[84736,41586],[-224,-127]],[[84967,41805],[-231,-219]],[[85217,40828],[-184,161],[-66,816]],[[62067,46566],[-28,-1227]],[[62548,46607],[-479,15],[-2,-56]],[[62962,45493],[-44,3],[-422,605],[52,506]],[[67610,45840],[-12,-278]],[[68392,45714],[-782,126]],[[68460,45308],[-91,15],[23,391]],[[61054,46605],[-7,-993]],[[62067,46566],[-1013,39]],[[77344,44040],[-18,-386]],[[78117,43789],[-385,49],[3,102],[-391,100]],[[78281,43076],[16,348],[-191,22],[11,343]],[[51434,46917],[8,-1004]],[[52393,46947],[-959,-30]],[[52403,45941],[-10,1006]],[[54678,47321],[0,-1348]],[[55443,47319],[-765,2]],[[55474,46537],[-33,3],[2,779]],[[55482,45636],[-8,901]],[[56140,46529],[-666,8]],[[56502,46524],[-362,5]],[[56271,46087],[231,437]],[[66494,46590],[-21,-503]],[[67066,46524],[-572,66]],[[67638,46453],[-572,71]],[[67610,45840],[28,613]],[[83765,42787],[-291,-204],[-237,13]],[[84187,41490],[-148,389],[-95,489],[-179,419]],[[79128,44188],[-11,-206],[-165,31],[-75,-159],[-29,-507]],[[79686,43550],[-141,-224],[-169,300],[-7,305],[-146,-5],[-95,262]],[[80067,42995],[-381,555]],[[80178,42646],[-111,349]],[[81651,42808],[-178,-109],[-351,-39]],[[82064,42457],[-126,236],[-287,115]],[[71399,45377],[-64,-1120]],[[71682,45318],[-283,59]],[[71908,45264],[-226,54]],[[11539,38241],[-231,-12],[-85,171],[86,-634],[21,-677],[42,-122]],[[11786,38205],[-247,36]],[[12428,37063],[-187,-26],[-294,296],[-161,872]],[[70752,45465],[-29,-469],[-93,16]],[[71179,45423],[-427,42]],[[71399,45377],[-220,46]],[[85349,42178],[-382,-373]],[[85601,41197],[-252,981]],[[58583,47280],[-18,-1224]],[[59061,46929],[-35,290],[-262,-106],[-181,167]],[[59693,46548],[-122,-100],[-90,325],[-183,93],[19,200],[-256,-137]],[[60856,47000],[-479,-251]],[[61056,46996],[-200,4]],[[61054,46605],[2,391]],[[69111,46070],[-38,-177],[144,-182],[-26,-495]],[[69732,45976],[-621,94]],[[69730,44629],[-50,346],[52,1001]],[[69749,46311],[-17,-335]],[[70068,46274],[-319,37]],[[70199,45071],[23,504],[-189,29],[35,670]],[[80297,43351],[-69,-421],[-161,65]],[[80519,43512],[-109,-340],[-113,179]],[[80919,42792],[-400,720]],[[63396,46221],[300,367],[90,274]],[[62617,47281],[-69,-674]],[[62873,47270],[-256,11]],[[63786,46862],[-790,60],[5,339],[-128,9]],[[73846,45057],[-50,-831]],[[74643,44943],[-479,23],[-318,91]],[[74540,43810],[68,134],[35,999]],[[74808,44991],[-165,-48]],[[75242,44959],[-434,32]],[[75203,43747],[39,1212]],[[9325,38497],[-202,-833]],[[9833,37957],[9,155],[-222,378],[-295,7]],[[9961,37778],[-105,-55],[-23,234]],[[9588,35755],[-103,227],[101,409],[262,193],[41,158],[-99,432],[109,190],[-28,213],[90,201]],[[42540,45190],[0,-1]],[[42436,47218],[104,-2028]],[[44352,47409],[-1916,-191]],[[44363,47078],[-11,331]],[[44421,45404],[-58,1674]],[[90624,40643],[-455,-49],[-382,-294]],[[90641,40058],[-17,585]],[[89689,40182],[-8,-10]],[[89689,40182],[11,6]],[[89787,40300],[-87,-112]],[[48550,47444],[43,-1674]],[[48573,47446],[-23,-2]],[[49507,47499],[-934,-53]],[[49544,45824],[-37,1675]],[[75913,44331],[-296,517],[-133,88]],[[75271,44957],[-29,2]],[[75484,44936],[-213,21]],[[45338,47173],[-975,-95]],[[45487,47186],[-149,-13]],[[45547,45519],[-60,1667]],[[46481,47284],[-994,-98]],[[46636,47297],[-155,-13]],[[46687,45624],[-51,1673]],[[49525,47500],[-18,-1]],[[50464,47548],[-939,-48]],[[50469,47213],[-5,335]],[[50494,45873],[-25,1340]],[[47591,47379],[-955,-82]],[[47639,45703],[-48,1676]],[[52385,47618],[8,-671]],[[53085,47631],[-700,-13]],[[53090,47293],[-5,338]],[[53103,45958],[-13,1335]],[[51429,47253],[-960,-40]],[[51434,46917],[-5,336]],[[47619,47380],[-28,-1]],[[48550,47444],[-931,-64]],[[53877,47983],[1,-112],[-601,-68],[6,-503],[-193,-7]],[[54072,47490],[-5,496],[-190,-3]],[[54072,47487],[0,3]],[[53746,45967],[-219,409],[-31,216],[152,442],[129,190],[12,239],[283,24]],[[39251,46397],[-505,-84]],[[39885,46498],[-634,-101]],[[39978,44824],[-93,1674]],[[40874,47657],[56,-996],[-1045,-163]],[[41587,45060],[-137,2686],[-576,-89]],[[54072,47490],[0,-3]],[[54667,47657],[-73,-249],[-272,-58],[-173,196],[-77,-56]],[[54678,47321],[-11,336]],[[40810,48988],[64,-1331]],[[41757,49144],[-947,-156]],[[42346,48850],[-14,335],[-575,-41]],[[42436,47218],[-90,1632]],[[37256,46336],[49,-305],[25,-667],[99,-250]],[[37549,47795],[135,-415],[-17,-255],[-160,-304],[-145,-20],[-106,-465]],[[38650,47973],[-1101,-178]],[[38744,46313],[-94,1660]],[[78211,44468],[-94,-679]],[[79087,44337],[-876,131]],[[79128,44188],[-41,149]],[[23694,44750],[45,-395]],[[26306,45573],[-2612,-823]],[[27338,44028],[-119,307],[-113,-29],[-194,302],[-41,525],[-175,150],[-233,-89],[-157,379]],[[84622,43103],[-706,-212],[-151,-104]],[[84736,41586],[59,422],[-93,409],[63,331],[-143,355]],[[56841,47365],[-184,-317],[-13,-420],[-142,-104]],[[57139,47510],[-298,-145]],[[57131,46367],[8,1143]],[[73044,45358],[-49,-708]],[[73427,45133],[-260,46],[-123,179]],[[73846,45057],[-419,76]],[[57804,47308],[-7,-954]],[[57991,47547],[-187,-239]],[[58583,47280],[-310,117],[-151,-42],[-131,192]],[[65571,47546],[-84,-2017]],[[65671,47534],[-100,12]],[[66335,47343],[-576,68],[-88,123]],[[66494,46590],[-189,25],[30,728]],[[64762,46618],[-45,-993]],[[64803,47626],[-41,-1008]],[[65571,47546],[-768,80]],[[14058,38112],[-1059,-469],[-152,40],[-447,372],[-225,405],[-389,-255]],[[64001,47253],[12,-317],[-64,-752]],[[64762,46618],[-86,150],[-192,22],[7,195],[-438,-25],[-52,293]],[[76370,44931],[-87,-679]],[[77344,44816],[-974,115]],[[77370,44657],[-26,159]],[[77344,44040],[26,617]],[[85751,42565],[-402,-387]],[[85854,41791],[-103,774]],[[32190,47432],[-1655,-406]],[[32473,44126],[-283,3306]],[[68438,46500],[-46,-786]],[[68536,46482],[-98,18]],[[69089,46468],[-205,-53],[-348,67]],[[69111,46070],[59,149],[-81,249]],[[79934,43772],[-248,-222]],[[80297,43351],[-363,421]],[[70704,46179],[-636,95]],[[70752,45465],[-91,61],[43,653]],[[81060,43859],[98,-135],[-156,-333],[73,-316],[-24,-237]],[[81584,43958],[-524,-99]],[[81705,43889],[-121,69]],[[81759,43367],[-54,522]],[[81651,42808],[34,440],[74,119]],[[84574,43243],[48,-140]],[[84983,43304],[-71,-335],[-102,23],[-72,312],[-164,-61]],[[85245,43108],[-262,196]],[[85349,42178],[-104,930]],[[57131,47688],[8,-178]],[[57804,47308],[-135,-111],[-130,298],[-158,160],[-126,-95],[-124,128]],[[72413,46012],[-50,-842]],[[72818,45684],[-205,283],[-200,45]],[[73044,45358],[-226,326]],[[82196,43017],[-196,258],[-241,92]],[[80713,44180],[-229,-575],[35,-93]],[[80862,44193],[-149,-13]],[[81060,43859],[-198,334]],[[55598,47933],[-168,-34],[13,-580]],[[56137,47975],[-272,50],[-267,-92]],[[56140,46529],[-3,1446]],[[56363,48211],[-223,71],[-3,-307]],[[56616,48170],[-253,41]],[[56841,47365],[-215,-10],[-10,815]],[[10798,38180],[-837,-402]],[[10907,36709],[-136,438],[28,432],[77,84],[-78,517]],[[59049,48279],[12,-1350]],[[59817,48297],[-768,-18]],[[60005,47761],[-188,365],[0,171]],[[60141,47130],[-157,472],[21,159]],[[79130,44652],[-43,-315]],[[79438,44847],[-308,-195]],[[79864,44114],[-199,250],[-227,483]],[[79934,43772],[-70,342]],[[63918,47969],[-80,-393],[33,-195],[-85,-519]],[[64281,47805],[-153,382],[-117,3],[-93,-221]],[[64001,47253],[82,495],[198,57]],[[77982,45182],[-15,-397],[-198,23],[-5,-140],[-394,-11]],[[78176,45163],[-194,19]],[[78211,44468],[-65,10],[30,685]],[[80148,44642],[-149,24],[-45,-258],[-131,-156],[41,-138]],[[80374,44663],[-226,-21]],[[80713,44180],[-144,286],[-195,197]],[[88797,41059],[-121,246],[-39,348],[-115,3],[-41,274],[-127,-324],[49,-488],[124,-455],[431,-108],[34,-73]],[[89182,40916],[-385,143]],[[89151,40728],[31,188]],[[36595,46205],[53,-366],[111,-86],[56,-489],[114,-174]],[[37256,46336],[-661,-131]],[[67835,46596],[-189,24],[-8,-167]],[[68438,46500],[-603,96]],[[75878,45731],[-340,72],[-54,-867]],[[76358,45488],[-480,243]],[[76370,44931],[-12,557]],[[87812,41564],[-73,-92]],[[87887,41406],[-178,-11],[103,169]],[[87334,42033],[-155,-20],[-83,-196],[-230,-162],[-103,-300]],[[87427,42110],[-93,-77]],[[87617,41608],[-190,502]],[[33409,47058],[-50,643],[-1169,-269]],[[35064,45279],[-254,242],[-246,331],[-155,-171],[-210,29],[-215,265],[-98,254],[-430,213],[-47,616]],[[35255,45170],[-191,109]],[[35222,44736],[-71,158],[104,276]],[[36544,46428],[-146,-249],[-205,257],[-318,-279],[-99,-348],[-367,-74],[-107,-232],[-47,-333]],[[36595,46205],[-51,223]],[[89527,40325],[239,333],[97,713],[203,381]],[[89245,41299],[-63,-383]],[[89437,42468],[-192,-1169]],[[90066,41752],[-266,287],[-83,296],[-280,133]],[[70743,46843],[-39,-664]],[[71368,46742],[-625,101]],[[71353,46520],[15,222]],[[71179,45423],[86,1114],[88,-17]],[[71760,46443],[-78,-1125]],[[72236,46286],[-99,125],[-377,32]],[[72413,46012],[-193,42],[16,232]],[[61422,47674],[-7,-677],[-359,-1]],[[62240,47633],[-818,41]],[[62617,47281],[-378,10],[1,342]],[[86630,42566],[-236,9],[-121,-143],[62,-421]],[[87032,42911],[-214,-92],[-188,-253]],[[87216,42723],[-78,-89],[-106,277]],[[87334,42033],[-118,690]],[[71760,46443],[-407,77]],[[60856,47000],[-208,976],[13,108]],[[60661,48084],[-390,22],[-213,-147],[-53,-198]],[[83235,44018],[57,-443],[-101,-21],[27,-496],[-293,152]],[[83251,44041],[-16,-23]],[[83673,44477],[-422,-436]],[[83765,42787],[-100,684],[112,523],[-104,483]],[[91002,40055],[93,132],[-226,933],[59,105],[-198,359],[-80,-3],[40,-624],[-66,-314]],[[85575,43089],[176,-524]],[[86125,43186],[-550,-97]],[[86367,43479],[-242,-293]],[[86630,42566],[-263,913]],[[11266,39159],[141,-696],[91,39],[41,-261]],[[11819,39509],[-553,-350]],[[13926,39044],[-232,-105],[-187,94],[-294,-145],[-172,254],[-151,51],[-263,-501],[-197,132],[-118,-94],[-185,115],[-308,664]],[[13950,38874],[-24,170]],[[13978,38676],[-28,198]],[[73898,45821],[-52,-764]],[[74242,45872],[-226,-238],[-118,187]],[[74436,45752],[-194,120]],[[74775,45966],[-191,-83],[-50,-228],[-98,97]],[[74808,44991],[-33,975]],[[72880,46768],[-62,-1084]],[[73293,46685],[-413,83]],[[73405,46602],[-112,83]],[[73406,46530],[-1,72]],[[73427,45133],[-21,1397]],[[73819,46127],[-413,403]],[[73898,45821],[-79,306]],[[51420,48258],[9,-1005]],[[52378,48289],[-958,-31]],[[52385,47618],[-7,671]],[[11069,39065],[24,-165],[-153,-30],[-3,-337],[-139,-353]],[[11266,39159],[-197,-94]],[[82008,44449],[45,-258],[-348,-302]],[[82384,43680],[-65,576],[-311,193]],[[82367,43236],[17,444]],[[57986,48419],[5,-872]],[[59048,48334],[-581,-12],[-2,112],[-479,-15]],[[59049,48279],[-1,55]],[[83235,44018],[-260,37],[-494,-97],[-97,-278]],[[75271,44957],[30,1869]],[[74965,46496],[-190,-530]],[[74981,46677],[-16,-181]],[[75301,46826],[-320,-149]],[[85519,43241],[-274,-133]],[[85575,43089],[-56,152]],[[64589,47943],[-308,-138]],[[64803,47626],[-221,25],[7,292]],[[88309,42430],[40,-381],[139,222],[-179,159]],[[88737,42346],[-123,217],[-127,-323],[117,-129],[-46,-177],[187,-534],[-48,-157],[100,-184]],[[89013,42271],[-276,75]],[[89245,41299],[-130,184],[-119,596],[17,192]],[[69322,47419],[-110,-310],[-7,-271],[-163,-279],[47,-91]],[[69321,47420],[1,-1]],[[69804,47324],[-483,96]],[[69749,46311],[55,1013]],[[34914,47381],[150,-2102]],[[34583,48736],[232,49],[99,-1404]],[[34655,49352],[-72,-616]],[[35635,49553],[-980,-201]],[[37007,48746],[-1298,-260],[-74,1067]],[[36544,46428],[117,89],[90,289],[239,44],[-160,287],[-109,485],[110,255],[18,411],[158,458]],[[75557,46783],[-256,43]],[[75934,47207],[-377,-424]],[[75878,45731],[56,1476]],[[60768,48266],[-107,-182]],[[60960,48959],[22,-243],[-214,-450]],[[61270,49309],[-249,-137],[-61,-213]],[[61422,47674],[-85,647],[52,349],[-111,341],[-8,298]],[[14688,39304],[-335,-143],[1,-115],[-404,-172]],[[83824,44632],[-151,-155]],[[84143,44530],[-246,-265],[-73,367]],[[84574,43243],[-230,670],[-110,101],[-91,516]],[[87896,41533],[211,224],[-133,274],[246,158],[-114,155],[-154,-241],[-36,110],[180,139],[45,262]],[[87896,41533],[-73,34]],[[87812,41564],[11,3]],[[87848,43358],[-58,-87],[16,-508],[-192,-446],[-187,-207]],[[88130,43397],[-282,-39]],[[88141,42614],[-80,585],[69,198]],[[57133,47955],[-2,-267]],[[57138,48714],[-5,-759]],[[57982,48744],[-844,-30]],[[57986,48419],[-4,325]],[[62883,47837],[-10,-567]],[[63423,48260],[-263,15],[-5,-227],[-137,11],[-5,-231],[-130,9]],[[63918,47969],[-235,113],[0,121],[-260,57]],[[53205,48644],[-63,-2],[3,-418],[-63,52],[3,-645]],[[53875,48654],[-670,-10]],[[53877,47983],[-2,671]],[[34914,47381],[-1505,-323]],[[50458,48558],[6,-1010]],[[51415,48595],[-957,-37]],[[51420,48258],[-5,337]],[[54831,48657],[0,-882],[-164,-118]],[[55599,48653],[-768,4]],[[55598,47933],[1,720]],[[66374,48444],[-39,-1101]],[[66575,48442],[-201,2]],[[67322,47998],[-761,109],[14,335]],[[67310,47659],[12,339]],[[67066,46524],[50,1171],[194,-36]],[[67880,47596],[-570,63]],[[67835,46596],[45,1000]],[[54130,49160],[-64,-335],[-191,-3],[0,-168]],[[54832,49161],[-702,-1]],[[54831,48657],[1,504]],[[77376,45667],[-32,-851]],[[77675,45981],[-190,23],[-16,-349],[-93,12]],[[77804,45967],[-129,14]],[[77982,45182],[27,735],[-205,50]],[[79130,44652],[-102,89],[98,207],[34,378],[-115,-59],[-115,287]],[[78579,45318],[-8,-157],[-395,2]],[[78930,45554],[-74,-395],[-135,-135],[-142,294]],[[57133,47955],[-475,-14],[-42,229]],[[76565,45594],[-207,-106]],[[77376,45667],[-694,116],[-117,-189]],[[72306,47285],[-70,-999]],[[72495,47219],[-189,66]],[[72880,46768],[-385,451]],[[79609,45226],[-171,-379]],[[79992,45135],[-105,103],[-194,-128],[-84,116]],[[80148,44642],[-156,493]],[[68605,47729],[-69,-1247]],[[68670,47719],[-65,10]],[[69317,47614],[-647,105]],[[69321,47420],[-4,194]],[[68069,47815],[-178,8],[-11,-227]],[[68605,47729],[-536,86]],[[70048,47300],[-244,24]],[[70382,47245],[-334,55]],[[70761,47180],[-379,65]],[[70743,46843],[18,337]],[[81139,44864],[-225,-342],[-52,-329]],[[81452,45420],[-132,-417],[-181,-139]],[[81566,45435],[-114,-15]],[[81584,43958],[25,560],[-87,353],[44,564]],[[17481,42889],[-619,-2011],[42,-305],[592,-53]],[[17619,48887],[508,-3818],[1,-75],[-647,-2105]],[[19361,53368],[-1742,-4481]],[[19751,50195],[-390,3173]],[[22127,43811],[-280,2367],[-1524,-538],[-572,4555]],[[62254,49005],[-14,-1372]],[[62266,49002],[-12,3]],[[62648,48948],[-221,149],[-161,-95]],[[62883,47837],[14,573],[-259,16],[10,522]],[[73866,46622],[49,-244],[-96,-251]],[[74006,46762],[-140,-140]],[[74259,47022],[-253,-260]],[[74328,46911],[-69,111]],[[74242,45872],[96,741],[-10,298]],[[89099,42722],[50,-95],[-136,-356]],[[89146,43173],[-147,-174],[100,-277]],[[89555,43187],[-118,-157],[-233,26],[-58,117]],[[89437,42468],[118,719]],[[45271,48844],[67,-1671]],[[45885,48901],[-614,-57]],[[46419,48952],[-534,-51]],[[46481,47284],[-62,1668]],[[44304,48754],[48,-1345]],[[45129,48832],[-825,-78]],[[45271,48844],[-142,-12]],[[48525,49124],[48,-1678]],[[48548,49126],[-23,-2]],[[49484,49181],[-936,-55]],[[49525,47500],[-41,1681]],[[46645,48971],[-226,-19]],[[47405,49039],[-760,-68]],[[47566,49054],[-161,-15]],[[47619,47380],[-53,1674]],[[52367,49632],[11,-1343]],[[53130,49648],[-763,-16]],[[53205,48644],[-65,222],[-10,782]],[[49501,49182],[-17,-1]],[[50445,49228],[-944,-46]],[[50458,48558],[-13,670]],[[48525,49124],[-959,-70]],[[87263,43323],[143,-378],[-190,-222]],[[87213,43809],[50,-486]],[[87919,44144],[-116,-256],[-209,-84],[-179,49],[-119,218],[-83,-262]],[[87868,43681],[51,463]],[[87848,43358],[20,323]],[[39305,48264],[-513,-76],[15,-188],[-157,-27]],[[39251,46397],[-48,1002],[-89,255],[228,46],[-37,564]],[[39279,48764],[26,-500]],[[40810,48988],[-1531,-224]],[[74663,46827],[-81,-171],[-146,-904]],[[74965,46496],[-302,331]],[[81770,45503],[56,-207],[188,-62],[-6,-785]],[[81943,46652],[54,-553],[-227,-596]],[[82895,45296],[-199,-4],[-84,-208],[-77,760],[-248,432],[-156,-12],[-188,388]],[[83251,44041],[-19,135],[-257,401],[73,218],[-153,501]],[[14015,39617],[-124,-320],[35,-253]],[[14431,40687],[-416,-1070]],[[14755,41518],[-324,-831]],[[81770,45503],[-204,-68]],[[80560,45751],[-148,-252],[73,-229],[-111,-607]],[[81139,44864],[-154,141],[-425,746]],[[84594,45008],[-451,-478]],[[84934,44016],[-164,463],[-73,-28],[-103,557]],[[84983,43304],[50,236],[-99,476]],[[74477,46919],[-149,-8]],[[74663,46827],[-186,92]],[[79228,46248],[-298,-694]],[[79377,46422],[-149,-174]],[[79680,46396],[-169,272],[-134,-246]],[[79609,45226],[9,954],[62,216]],[[15934,44552],[-954,-2457]],[[17481,42889],[-1418,1726],[-129,-63]],[[71492,47600],[-59,-851],[-65,-7]],[[72163,47594],[-363,-125],[-308,131]],[[72306,47285],[-143,309]],[[55601,49158],[-2,-505]],[[56368,49149],[-767,9]],[[56363,48211],[5,938]],[[11899,40358],[-32,-841],[-48,-8]],[[13604,40353],[-153,191],[-347,222],[-544,-84],[-132,-236],[-196,-124],[-333,36]],[[14015,39617],[1,273],[-412,463]],[[61745,49463],[-197,158],[-178,-75],[-100,-237]],[[62254,49005],[-362,160],[-147,298]],[[59817,49204],[0,-907]],[[60198,49219],[-381,-15]],[[60768,48266],[-185,945],[-385,8]],[[86943,43983],[-483,-340],[-93,-164]],[[87213,43417],[43,275],[-140,88],[-17,264],[-156,-61]],[[87088,43249],[-25,187],[150,-19]],[[87008,43150],[80,99]],[[86962,43096],[46,54]],[[87032,42911],[-70,185]],[[37419,48729],[-117,67],[-295,-50]],[[37549,47795],[126,304],[-64,435],[-192,195]],[[57140,49135],[-772,14]],[[57138,48714],[2,421]],[[76038,47188],[-104,19]],[[76690,47111],[-463,-217],[-189,294]],[[76565,45594],[125,1517]],[[26276,45809],[30,-236]],[[27556,46214],[-502,-178],[-778,-227]],[[28347,46405],[-791,-191]],[[44292,49071],[-1946,-221]],[[44304,48754],[-12,317]],[[80429,46200],[-138,-86],[-49,-327],[-250,-652]],[[80498,45963],[-69,237]],[[80560,45751],[-62,212]],[[85136,44230],[-202,-214]],[[85354,43745],[-75,355],[-143,130]],[[85519,43241],[-165,504]],[[78381,46845],[-128,22],[-18,-349],[-203,24],[-48,-337],[-171,15],[-9,-253]],[[78502,46780],[-121,65]],[[78579,45318],[-36,493],[-113,221],[137,600],[-65,148]],[[73866,46622],[-462,83],[1,-103]],[[78814,47158],[-312,-378]],[[79228,46248],[-304,169],[-170,236],[60,505]],[[65783,48509],[-24,-504],[-64,8],[-24,-479]],[[66374,48444],[-591,65]],[[77063,46607],[-182,459],[-191,45]],[[77479,47111],[-145,-425],[-17,-228],[-254,149]],[[77675,45981],[-42,678],[-99,14],[66,306],[-121,132]],[[85756,44277],[-141,-66],[-63,-247],[-198,-219]],[[86390,45190],[-172,45],[-315,-568],[13,-147],[-160,-243]],[[86502,44577],[-135,405],[23,208]],[[86125,43186],[-55,451],[432,940]],[[64878,48368],[-2,-179],[-287,-246]],[[64799,48504],[79,-136]],[[64789,48938],[-63,-194],[73,-240]],[[65608,48870],[-819,68]],[[65783,48509],[17,336],[-192,25]],[[62735,48982],[-87,-34]],[[63451,49505],[-195,-222],[-270,-49],[-152,-285],[-99,33]],[[63423,48260],[28,1245]],[[87084,42998],[-52,-87]],[[87263,43323],[-179,-325]],[[70809,48017],[-48,-837]],[[71452,47901],[-643,116]],[[71492,47600],[-40,301]],[[63841,49114],[-68,180],[-239,253],[-83,-42]],[[64878,48368],[-140,-47],[-177,-237],[-107,242],[-122,1],[-169,582],[-231,39],[-91,166]],[[89601,43464],[-46,-277]],[[90263,43646],[-600,192],[-62,-374]],[[90695,43485],[-432,161]],[[90722,43474],[-27,11]],[[90757,43461],[-35,13]],[[90066,41752],[284,473],[169,-39],[69,382],[-92,86],[97,203],[-189,192],[55,80],[204,-245],[94,577]],[[51411,49602],[4,-1007]],[[52367,49632],[-956,-30]],[[82887,45585],[8,-289]],[[83523,46094],[-292,-88],[-138,-321],[-206,-100]],[[83653,45797],[-130,297]],[[83824,44632],[-171,1165]],[[59046,49770],[2,-1436]],[[59046,49939],[0,-169]],[[59816,49833],[-387,-1],[0,112],[-383,-5]],[[59817,49204],[-1,629]],[[89099,42722],[-110,302],[129,168],[-38,328],[-200,-4],[-262,-312],[85,-72],[-156,-174],[-30,275],[-87,-83],[83,-431],[201,316],[-85,-339],[141,-216],[-33,-134]],[[86917,44639],[-355,-223],[-60,161]],[[86943,43983],[22,421],[-48,235]],[[80270,46572],[-471,38],[-119,-214]],[[80429,46200],[-159,372]],[[58087,49765],[-93,-2],[-12,-1019]],[[59046,49770],[-959,-5]],[[87084,42998],[111,223]],[[87008,43150],[-46,-54]],[[87195,43221],[-107,28]],[[13495,41073],[109,-720]],[[13542,41382],[-47,-309]],[[14120,42076],[-142,-420],[-244,121],[-192,-395]],[[14431,40687],[-123,366],[68,450],[-83,321],[-173,252]],[[73353,47537],[-60,-852]],[[73640,47208],[-287,329]],[[74006,46762],[-25,294],[-116,-21],[-225,173]],[[60589,50172],[-388,-617],[-3,-336]],[[60814,50170],[-225,2]],[[60960,48959],[-146,1211]],[[10102,39492],[-21,-578],[-86,-781],[-162,-176]],[[10102,39492],[0,0]],[[10823,40636],[-159,-84],[127,-780],[-403,-222],[-151,104],[-135,-162]],[[11069,39065],[-79,141],[152,433],[-123,293],[54,192],[-91,392],[-159,120]],[[72742,47984],[-20,-277],[-207,-187],[-20,-301]],[[72990,48014],[-248,-30]],[[73116,47408],[-174,64],[48,542]],[[73353,47537],[-237,-129]],[[67355,48845],[-33,-847]],[[68130,48766],[-775,79]],[[68069,47815],[22,448],[-50,379],[89,124]],[[69321,47420],[0,0]],[[69166,48737],[70,-373],[164,-332],[-83,-418]],[[69038,49351],[-3,-252],[154,-152],[-23,-210]],[[69499,48823],[-145,106],[-72,242],[-244,180]],[[69877,48716],[-73,142],[-141,-100],[-164,65]],[[70048,47300],[-193,420],[-73,442],[89,197],[6,357]],[[70434,48781],[-65,-1197],[13,-339]],[[70846,48631],[-412,150]],[[70809,48017],[37,614]],[[70176,48787],[-299,-71]],[[70434,48781],[-258,6]],[[80813,46505],[-315,-542]],[[81200,46322],[-241,-55],[-146,238]],[[81452,45420],[-53,381],[-199,521]],[[63855,49780],[-14,-666]],[[64548,50020],[-125,-428],[-319,29],[-249,159]],[[64661,49483],[-30,359],[-83,178]],[[64675,49447],[-14,36]],[[64799,48504],[-141,222],[-100,496],[117,225]],[[74981,46677],[111,928]],[[74638,47855],[-161,-936]],[[75092,47605],[-454,250]],[[53320,49986],[-191,-3],[1,-335]],[[54126,49997],[-806,-11]],[[54130,49160],[-4,837]],[[50445,49903],[0,-675]],[[51407,49938],[-962,-35]],[[51411,49602],[-4,336]],[[54825,50337],[7,-1176]],[[55592,50334],[-767,3]],[[55601,49158],[-9,1176]],[[9376,40566],[100,-54],[11,-484],[-160,-1056],[-77,-235],[75,-240]],[[9376,40575],[0,-9]],[[9552,40656],[-176,-81]],[[9566,40664],[-14,-8]],[[10102,39493],[-91,299],[34,464],[-239,-116],[-96,501],[-144,23]],[[10102,39492],[0,1]],[[85101,44759],[35,-529]],[[85321,45059],[-220,-300]],[[85756,44277],[-327,788],[-108,-6]],[[73820,47560],[-180,-352]],[[74059,47284],[-239,276]],[[74259,47022],[-203,88],[3,174]],[[8469,39563],[-115,-675],[-265,-598],[-117,-668],[-84,-250]],[[9143,40450],[-293,-339],[-194,-521],[-187,-27]],[[9376,40566],[-170,100],[-63,-216]],[[68717,48796],[-47,-1077]],[[69166,48737],[-449,59]],[[84574,46575],[-921,-778]],[[84692,46259],[-118,316]],[[84935,45619],[-243,640]],[[84594,45008],[-45,386],[386,225]],[[84195,45791],[14,165],[144,-150],[-107,-229],[-51,214]],[[68311,48858],[-181,-92]],[[68643,48806],[-332,52]],[[68717,48796],[-74,10]],[[77757,47297],[-119,-174],[-159,-12]],[[77903,47590],[-146,-293]],[[78063,47589],[-160,1]],[[78381,46845],[-15,522],[-303,222]],[[57142,50139],[-2,-1004]],[[58091,50229],[-333,-1],[-101,-79],[-515,-10]],[[58087,49765],[4,464]],[[87195,43221],[18,196]],[[84969,45396],[-34,223]],[[85101,44759],[-132,637]],[[72275,48245],[-69,-42],[-43,-609]],[[72742,47984],[-384,77],[-83,184]],[[75175,47698],[-83,-93]],[[75456,47483],[-158,16],[-123,199]],[[75557,46783],[-101,700]],[[66603,49340],[-28,-898]],[[66607,49452],[-4,-112]],[[67377,49350],[-770,102]],[[67355,48845],[22,505]],[[74478,48159],[-373,-491],[-46,-384]],[[74512,48074],[-34,85]],[[74638,47855],[-126,219]],[[71513,48918],[-61,-1017]],[[71606,48902],[-93,16]],[[71990,48853],[-384,49]],[[72056,48839],[-66,14]],[[72275,48245],[-50,233],[-183,92],[14,269]],[[64789,48938],[-114,509]],[[88130,43397],[99,651],[74,206],[228,289],[-38,262],[-211,-271],[-225,-137],[-189,-716]],[[75590,47848],[-134,-365]],[[76076,47612],[-353,346],[-133,-110]],[[76038,47188],[38,424]],[[73437,47931],[-321,-523]],[[73596,47856],[-159,75]],[[73820,47560],[-224,296]],[[76899,47508],[136,-386],[28,-515]],[[77538,47864],[-269,-13],[-162,-242],[-208,-101]],[[77757,47297],[-219,567]],[[65647,49780],[-39,-910]],[[66603,49340],[-364,1],[-216,201],[-228,10],[-148,228]],[[81808,47326],[-31,-458],[166,-216]],[[82554,47741],[-341,210],[-175,10],[-195,-209],[-35,-426]],[[82761,46893],[-183,383],[-24,465]],[[82887,45585],[-47,909],[-120,248],[41,151]],[[61343,50491],[-371,2],[1,-324],[-159,1]],[[61745,49463],[-124,154],[-28,351],[-218,15],[100,244],[-132,264]],[[54118,51338],[8,-1341]],[[54811,51351],[-693,-13]],[[54825,50337],[-14,1014]],[[55592,50502],[0,-168]],[[56359,50494],[-767,8]],[[56368,49149],[-9,1345]],[[57145,50482],[-786,12]],[[57142,50139],[3,343]],[[81661,47205],[-330,-264],[-170,-518],[39,-101]],[[81808,47326],[-147,-121]],[[10647,41078],[113,-96],[63,-346]],[[10744,41419],[-202,-3],[-144,158],[249,-496]],[[11779,41144],[-331,42],[-336,-72],[-109,-177],[-259,482]],[[11899,40358],[-120,786]],[[72998,48255],[-8,-241]],[[73210,48336],[-212,-81]],[[73437,47931],[-227,405]],[[74009,48707],[-32,-233],[-149,-45],[-128,-247],[30,-181],[-134,-145]],[[74235,48677],[-226,30]],[[74478,48159],[-243,518]],[[76443,48088],[-231,-134],[-136,-342]],[[76654,48282],[-154,-263],[-57,69]],[[76899,47508],[-98,321],[37,330],[-184,123]],[[62302,50602],[-36,-1600]],[[62340,51120],[-38,-518]],[[62508,51110],[-168,10]],[[62790,50867],[-290,19],[8,224]],[[62735,48982],[55,1885]],[[14421,44542],[151,-195],[36,-363],[-151,-349],[18,-447],[-184,-125],[-231,-507],[68,-129],[-8,-351]],[[14758,45294],[-78,-595],[-259,-157]],[[15113,45931],[-121,-102],[-74,-327],[-160,-208]],[[16724,46581],[-1611,-650]],[[15934,44552],[790,2029]],[[63264,50848],[-474,19]],[[63811,50798],[-547,50]],[[63855,49780],[-44,1018]],[[61344,50658],[-1,-167]],[[62302,50602],[-958,56]],[[11786,41437],[-7,-293]],[[13495,41073],[-460,-26],[-152,-96],[-350,137],[-72,196],[-329,63],[-147,121],[-199,-31]],[[88987,44932],[0,-1]],[[88934,44897],[53,34]],[[88987,44932],[-53,-35]],[[89451,44061],[-135,511],[-5,223],[-126,-186],[-76,189],[-186,-143]],[[89601,43464],[-170,385],[20,212]],[[88923,44655],[-130,-246],[2,192],[-220,-422],[199,-294],[-173,-92],[37,-222],[152,-46],[231,148],[105,-132],[20,-368]],[[45837,50581],[48,-1680]],[[45876,50584],[-39,-3]],[[46597,50649],[-721,-65]],[[46645,48971],[-48,1678]],[[47366,50718],[-769,-69]],[[47405,49039],[-39,1679]],[[44243,50404],[49,-1333]],[[44242,50428],[1,-24]],[[45070,50512],[-828,-84]],[[45129,48832],[-59,1680]],[[45114,50516],[-44,-4]],[[45837,50581],[-723,-65]],[[85648,45821],[-42,-352],[-285,-410]],[[86295,45415],[-132,-84],[-323,236],[-192,254]],[[86435,45340],[-140,75]],[[86390,45190],[45,150]],[[47396,50721],[-30,-3]],[[48512,50799],[-1116,-78]],[[48519,50463],[-7,336]],[[48548,49126],[-29,1337]],[[59816,50872],[0,-1039]],[[60482,50984],[-118,132],[-340,-10],[-208,-234]],[[60589,50172],[-10,321],[-97,3],[0,488]],[[49477,50524],[24,-1342]],[[49679,50872],[-208,-12],[6,-336]],[[50430,50909],[-751,-37]],[[50445,49903],[-15,1006]],[[37746,49491],[-327,-762]],[[39037,49738],[-1291,-247]],[[39279,48764],[-53,1003],[-189,-29]],[[49477,50524],[-958,-61]],[[87701,44821],[105,447],[-267,-206],[-146,-424],[-254,494],[-84,-62],[-84,-362],[103,-500],[139,-399]],[[87941,44315],[-134,0],[-106,506]],[[87919,44144],[22,171]],[[70877,49136],[-31,-505]],[[71513,48918],[7,110],[-643,108]],[[79377,46422],[-86,195],[90,427],[-275,334],[-2,287]],[[78861,47537],[-47,-379]],[[79104,47665],[-122,261],[-96,-68],[-25,-321]],[[22957,51298],[-1237,-416],[4,-37],[-1698,-594],[-275,-56]],[[23024,50704],[-67,594]],[[23278,48414],[-254,2290]],[[23514,46357],[-236,2057]],[[23694,44750],[-180,1607]],[[32114,48764],[6,-475],[70,-857]],[[33970,49187],[-1856,-423]],[[34583,48736],[7,-116],[-856,-181],[57,309],[247,194],[-68,245]],[[80299,47594],[-163,-769],[134,-253]],[[80813,46505],[119,79],[-138,286],[-495,724]],[[65339,50578],[-37,-332],[-213,19],[-428,-782]],[[65679,50546],[-340,32]],[[65647,49780],[32,766]],[[85337,46078],[-79,23],[-199,-295],[-90,-410]],[[85648,45821],[-237,376],[-74,-119]],[[79283,48072],[-7,-413],[-172,6]],[[80007,48750],[-145,-450],[-257,-354],[-322,126]],[[80144,48785],[-137,-35]],[[80298,47595],[-138,350],[-16,840]],[[80299,47594],[-1,1]],[[41718,50110],[39,-966]],[[41894,50133],[-176,-23]],[[43034,50272],[-1140,-139]],[[44243,50404],[-1209,-132]],[[51395,51282],[12,-1344]],[[51778,51294],[-383,-12]],[[52353,51311],[-575,-17]],[[52367,49632],[-14,1679]],[[52731,51651],[2,-335],[-380,-5]],[[53275,51668],[-544,-17]],[[53320,49986],[-35,670],[-10,1012]],[[75304,48037],[-150,-113],[21,-226]],[[75520,48070],[-216,-33]],[[75590,47848],[-70,222]],[[67408,50190],[-31,-840]],[[67984,50117],[-576,73]],[[68364,50062],[-380,55]],[[68311,48858],[53,1204]],[[72438,49273],[37,-245],[-94,-194],[-325,5]],[[72679,48871],[-43,316],[-198,86]],[[72998,48255],[-228,318],[-91,298]],[[78534,48184],[-118,-369],[-43,112],[-310,-338]],[[78861,47537],[-240,260],[-87,387]],[[73298,48841],[-134,-369],[46,-136]],[[73796,48830],[-498,11]],[[74009,48707],[-213,123]],[[83278,47075],[-349,-56],[-168,-126]],[[83523,46094],[-132,806],[-113,175]],[[86611,45511],[-176,-171]],[[86764,45557],[-153,-46]],[[86911,45656],[-147,-99]],[[86986,45636],[-75,20]],[[86949,45287],[37,349]],[[86917,44639],[32,648]],[[74767,48836],[-74,-412],[-181,-350]],[[75170,48407],[-285,421],[-118,8]],[[75304,48037],[-134,370]],[[26203,47206],[-2689,-849]],[[26264,47214],[-61,-8]],[[26276,45809],[102,453],[142,308],[-79,405],[-177,239]],[[68640,50008],[-276,54]],[[68643,48806],[44,412],[-47,252],[63,405],[-63,133]],[[68645,50019],[-5,-11]],[[69038,49351],[-155,562],[-59,-113],[-179,219]],[[58129,51126],[-43,0],[5,-897]],[[59045,51105],[-66,38],[-850,-17]],[[59046,49939],[-1,1166]],[[89584,44632],[-165,188],[-39,-212],[71,-547]],[[89886,44471],[-302,161]],[[90263,43646],[105,349],[-66,274],[-416,202]],[[80956,48042],[-215,-410],[-165,149],[-278,-186]],[[81661,47205],[-404,849],[-301,-12]],[[69810,49885],[-26,-515],[-157,43],[-114,-331],[-14,-259]],[[70235,49870],[-425,15]],[[70176,48787],[59,1083]],[[9552,40656],[39,334],[-215,-415]],[[10647,41078],[-308,328],[-199,-41],[-192,-427],[-185,276],[-144,-159],[-53,-391]],[[59087,51635],[-42,-530]],[[59852,51634],[-765,1]],[[59816,50872],[36,762]],[[68657,50119],[-12,-100]],[[69182,50281],[-204,-202],[-321,40]],[[69566,50235],[-384,46]],[[69810,49885],[9,170],[-259,46],[6,134]],[[70337,49965],[-102,-95]],[[70728,49895],[-391,70]],[[70909,49641],[-192,86],[11,168]],[[70877,49136],[32,505]],[[75788,48564],[-268,-494]],[[76186,48901],[-235,-324],[-163,-13]],[[76443,48088],[-60,451],[-197,362]],[[72999,49180],[-320,-309]],[[73298,48841],[-59,195],[-240,144]],[[53828,51672],[-553,-4]],[[54118,51338],[-3,339],[-287,-5]],[[38963,51052],[74,-1314]],[[40158,51618],[-497,-396],[-643,-28],[-55,-142]],[[40647,52012],[-489,-394]],[[40731,50431],[-84,1581]],[[40810,48988],[-79,1443]],[[41718,50110],[-30,354],[-191,-22],[-10,224],[-372,-50],[-384,-185]],[[50437,51248],[-7,-339]],[[51395,51282],[-958,-34]],[[64738,51001],[-202,-371],[12,-610]],[[64823,51145],[-85,-144]],[[65339,50578],[-238,19],[13,334],[-291,214]],[[65871,50524],[-192,22]],[[66644,50456],[-773,68]],[[66607,49452],[37,1004]],[[87941,44315],[448,535]],[[88389,44850],[195,24],[-27,155],[164,346],[68,398],[-197,-151],[-73,-181],[-124,139],[-143,-270],[-225,-191],[-56,265],[-100,-86],[-170,-477]],[[11812,42038],[-26,-601]],[[12129,43164],[-317,-1126]],[[13542,41382],[-298,122],[-550,840],[-261,471],[-304,349]],[[27295,47511],[-1031,-297]],[[27556,46214],[-170,253],[-91,1044]],[[30587,48396],[-2557,-672],[-735,-213]],[[30535,47026],[-49,438],[174,486],[12,321],[-85,125]],[[64072,51265],[-261,-467]],[[64466,51358],[-286,178],[-108,-271]],[[64738,51001],[-272,357]],[[77903,47590],[85,593],[-44,74]],[[77618,48350],[-9,-405],[-71,-81]],[[77944,48257],[-53,-64],[-273,157]],[[76859,48729],[-100,-42],[-105,-405]],[[77415,48667],[-229,-10],[-211,-241],[-116,313]],[[77618,48350],[-203,317]],[[29139,50404],[178,-331],[114,-20],[169,-451],[-65,6],[147,-395],[323,49],[175,-398],[71,57],[178,-399],[158,-126]],[[27615,52095],[269,-131],[26,134],[150,-275],[385,25],[123,-170],[156,-443],[115,-63],[170,-372],[-76,-124],[206,-272]],[[28770,52404],[-1155,-309]],[[30080,52765],[-1310,-361]],[[31751,53170],[-1671,-405]],[[31905,51315],[-154,1855]],[[32031,49803],[-126,1512]],[[32114,48764],[-83,1039]],[[74302,49273],[-67,-596]],[[74497,49539],[-61,-228],[-134,-38]],[[74858,49110],[-361,429]],[[74767,48836],[91,274]],[[85232,46453],[-540,-194]],[[85337,46078],[-105,375]],[[83366,47418],[48,-316],[-136,-27]],[[84001,47990],[-635,-572]],[[84484,47227],[-219,718],[-135,-89],[-129,134]],[[84574,46575],[-2,447],[-88,205]],[[83971,46970],[123,90],[-6,-298],[-117,208]],[[84285,47203],[146,72],[-16,-216],[-130,144]],[[66690,50791],[-46,-335]],[[67427,50696],[-737,95]],[[67408,50190],[19,506]],[[57154,51749],[-9,-1267]],[[58122,51810],[-968,-61]],[[58129,51126],[-7,684]],[[17619,48887],[-895,-2306]],[[75593,49013],[-265,-255],[-158,-351]],[[75788,48564],[-195,449]],[[35586,50284],[49,-731]],[[36088,50851],[10,-146],[-255,-227],[-75,-204],[-182,10]],[[37205,51396],[-952,-182],[20,-324],[-185,-39]],[[38218,51563],[-1013,-167]],[[38223,51004],[66,181],[-71,378]],[[37746,49491],[150,407],[149,787],[178,319]],[[90695,43485],[-10,209]],[[90005,45541],[-88,-144],[183,-259],[-52,-331],[-162,-336]],[[90010,45546],[-5,-5]],[[90413,45314],[-403,232]],[[90685,43694],[52,261],[-54,341],[-164,234],[-13,414],[-93,370]],[[12466,44102],[-337,-938]],[[14374,44368],[-147,-412],[-166,-219],[-253,258],[-285,76],[-233,-122],[-196,-339],[-104,141],[-397,41],[27,256],[-135,-131],[-19,185]],[[14421,44542],[-47,-174]],[[54810,51856],[1,-505]],[[55578,51860],[-768,-4]],[[55592,50502],[-14,1358]],[[61003,51727],[-191,7],[-148,-333],[-85,-388],[-97,-29]],[[61388,51720],[-385,7]],[[61344,50658],[44,1062]],[[71319,50121],[-19,-329],[-191,30],[-12,-226],[-188,45]],[[71532,49850],[-113,312],[-100,-41]],[[71606,48902],[-35,420],[42,337],[-81,191]],[[72148,50445],[-315,12],[-166,-154],[-24,-300],[-111,-153]],[[72234,50403],[-86,42]],[[72276,49730],[-42,673]],[[71990,48853],[21,334],[151,245],[12,276],[102,22]],[[78224,49366],[43,-156],[-343,-526],[20,-427]],[[78396,49678],[-172,-312]],[[78555,49291],[-159,387]],[[78534,48184],[-8,331],[193,332],[-164,444]],[[72438,49273],[-162,457]],[[86949,45287],[160,-37],[355,-288],[20,414]],[[87388,45873],[-311,-283],[-91,46]],[[87470,45797],[-82,76]],[[87475,45790],[-5,7]],[[87484,45376],[-9,414]],[[76462,49369],[-58,-228],[-149,-9],[-69,-231]],[[76579,49409],[-117,-40]],[[76848,49038],[-269,371]],[[76859,48729],[-11,309]],[[85530,46559],[-298,-106]],[[85969,46478],[-265,-50],[-174,131]],[[85971,46473],[-2,5]],[[86295,45415],[-324,1058]],[[56347,51852],[-769,8]],[[56359,50494],[-12,1358]],[[57155,51838],[-808,14]],[[57154,51749],[1,89]],[[72254,50431],[-20,-28]],[[73106,49808],[-209,211],[-274,0],[-283,235],[-86,177]],[[73108,49694],[-2,114]],[[72999,49180],[112,63],[-3,451]],[[85971,46473],[0,0]],[[86474,46740],[-296,-270],[-207,3]],[[86559,46778],[-85,-38]],[[86911,45656],[-352,1122]],[[86611,45511],[153,46]],[[78745,49123],[-190,168]],[[79174,48817],[-429,306]],[[79283,48072],[-54,295],[-89,-37],[-41,416],[75,71]],[[73804,49630],[-8,-800]],[[74082,49623],[-67,104],[-211,-97]],[[74302,49273],[-220,350]],[[75096,49606],[-176,-140],[16,-321],[-78,-35]],[[75438,49347],[-342,259]],[[75593,49013],[-155,334]],[[73692,50010],[-584,-316]],[[73804,49630],[-112,380]],[[48523,51473],[-11,-674]],[[49470,51867],[-572,-35],[7,-334],[-382,-25]],[[49679,50872],[-19,1004],[-190,-9]],[[34294,50215],[-5,-186],[-240,-340],[39,-335],[-118,-167]],[[34604,50049],[-310,166]],[[34655,49352],[74,353],[-125,344]],[[9143,40450],[65,242],[-73,325],[66,156],[-128,163],[79,223],[-191,162],[-188,-465],[-57,44],[-134,-477],[-177,-226],[-129,25],[169,-411],[0,-407],[156,648],[-132,-889]],[[76027,49670],[-250,-479],[-184,-178]],[[76462,49369],[-127,179],[-145,-30],[-163,152]],[[10687,41662],[57,-243]],[[10595,42513],[92,-851]],[[10539,43829],[-110,-291],[166,-1025]],[[11812,42038],[-197,1266],[-102,-138],[-393,85],[-581,578]],[[61675,51722],[-287,-2]],[[62340,51120],[7,394],[-457,34],[-215,174]],[[89337,45875],[19,-31]],[[89372,45943],[-35,-68]],[[89391,45937],[-19,6]],[[89356,45844],[35,93]],[[89332,45957],[5,-82]],[[89344,45952],[-12,5]],[[89337,45875],[7,77]],[[90005,45541],[-50,158],[-211,29],[-126,266],[-71,-203],[27,-379]],[[89574,45412],[3,-221],[-192,62],[-13,-233],[124,-93],[88,-295]],[[84948,48314],[-464,-1087]],[[85184,47990],[4,128],[-240,196]],[[85414,47094],[-230,896]],[[85530,46559],[-116,535]],[[87484,45376],[138,164],[446,181],[37,-137],[347,333],[-86,142]],[[87727,46026],[-167,14],[-85,-250]],[[88293,46279],[-238,-55],[-248,-395],[-80,197]],[[88366,46059],[-73,220]],[[59850,52252],[2,-618]],[[60230,52257],[-380,-5]],[[61012,52351],[-223,234],[-148,-339],[-411,11]],[[61003,51727],[9,624]],[[77299,49348],[198,-461],[-82,-220]],[[77370,49499],[-71,-151]],[[78047,49667],[-603,-322],[-74,154]],[[78224,49366],[-148,11],[-29,290]],[[82432,48218],[122,-477]],[[83160,48319],[-414,39],[-107,-209],[-207,69]],[[83366,47418],[-206,901]],[[42925,52667],[109,-2395]],[[44159,52807],[-1234,-140]],[[44172,52445],[-13,362]],[[44242,50428],[-70,2017]],[[81170,48899],[101,-13],[-138,-291],[58,-157],[-89,-276],[-146,-120]],[[81466,49352],[-19,-116],[-277,-337]],[[82115,49326],[-264,106],[-385,-80]],[[82432,48218],[-154,345],[-163,763]],[[77299,49348],[-298,56],[-144,-162],[-9,-204]],[[38963,51052],[-184,-431],[-228,425],[-42,-154],[-286,112]],[[41777,52522],[117,-2389]],[[42351,52596],[-574,-74]],[[42925,52667],[-574,-71]],[[41777,52522],[-1142,-161],[12,-349]],[[70735,50696],[64,-248],[-71,-553]],[[71043,51245],[8,-225],[-154,48],[-162,-372]],[[71284,50419],[-1,446],[-131,54],[-109,326]],[[71319,50121],[-35,298]],[[80948,49154],[-196,0],[-45,-156],[-388,51],[-22,-210],[-153,-54]],[[81170,48899],[-222,255]],[[45071,52546],[-15,-353],[58,-1677]],[[45836,52619],[-765,-73]],[[45876,50584],[-54,1677],[14,358]],[[46600,52686],[-764,-67]],[[47371,51727],[-762,-68],[-9,1027]],[[47396,50721],[-25,1006]],[[45071,52546],[-899,-101]],[[68039,51451],[-55,-1334]],[[68534,51449],[-79,-54],[-416,56]],[[68657,50119],[114,261],[-153,805],[53,230],[-137,34]],[[49473,52540],[-3,-673]],[[50417,52590],[-944,-50]],[[50437,51248],[-20,1342]],[[47361,52062],[10,-335]],[[48508,52146],[-1147,-84]],[[48523,51473],[-15,673]],[[67462,51535],[-35,-839]],[[68040,51454],[-578,81]],[[68039,51451],[1,3]],[[87155,47370],[-97,71],[-120,-412],[-181,-21],[-198,-230]],[[87391,46888],[-110,115],[-126,367]],[[87549,46546],[-184,117],[26,225]],[[87388,45873],[-61,298],[222,375]],[[69639,51092],[-73,-857]],[[69907,51214],[-268,-122]],[[69970,51280],[-63,-66]],[[70337,49965],[18,328],[-95,16],[-15,270],[-284,522],[9,179]],[[68663,51787],[-129,-338]],[[68819,51367],[54,357],[-82,148],[-128,-85]],[[69214,51323],[-221,116],[-174,-72]],[[69182,50281],[32,1042]],[[79815,49575],[-104,-151],[-103,123],[-121,-192],[-22,-258],[-360,-133],[69,-147]],[[79975,49523],[-160,52]],[[80007,48750],[-177,276],[145,497]],[[65321,51916],[-116,-329],[-382,-442]],[[65792,52141],[-311,-360],[-160,135]],[[65907,51539],[-115,602]],[[65871,50524],[36,1015]],[[58116,52334],[6,-524]],[[58883,52579],[-319,-7],[1,-222],[-449,-16]],[[58980,52580],[-97,-1]],[[59087,51635],[-5,612],[-99,-1],[-3,334]],[[66635,51472],[-728,67]],[[66690,50791],[32,245],[-87,436]],[[62555,52510],[-47,-1400]],[[63222,52808],[-276,13],[-5,-336],[-386,25]],[[63311,52634],[-89,174]],[[63264,50848],[47,1786]],[[74466,49983],[31,-444]],[[74898,50502],[-101,-340],[-331,-179]],[[75056,50295],[-158,207]],[[75096,49606],[-40,689]],[[64105,52581],[-794,53]],[[64072,51265],[33,1316]],[[70462,51004],[-107,155],[-93,449],[-111,-217],[-181,-111]],[[70735,50696],[-273,308]],[[71930,51262],[-176,-271],[-470,-572]],[[72148,50445],[69,471],[-40,225],[-247,121]],[[74240,50160],[-158,-537]],[[74419,50543],[-85,76],[-118,-227],[24,-232]],[[74466,49983],[-47,560]],[[75688,50009],[-250,-662]],[[76034,49981],[-187,91],[-159,-63]],[[76027,49670],[7,311]],[[51767,52303],[11,-1009]],[[52727,52326],[-960,-23]],[[52731,51651],[-4,675]],[[53818,53521],[10,-1849]],[[54807,53538],[-989,-17]],[[54808,53035],[-1,503]],[[54810,51856],[-2,1179]],[[50426,52946],[-9,-356]],[[51575,52985],[-1149,-39]],[[51767,52303],[-1,684],[-191,-2]],[[69639,51092],[-85,140],[-182,-220],[5,540],[-112,6],[-51,-235]],[[61699,53295],[-24,-1573]],[[62084,53281],[-385,14]],[[62555,52510],[-483,28],[12,743]],[[25614,49394],[93,-1001],[191,63],[16,-331],[207,62],[82,-981]],[[29139,50404],[-1048,-280],[-1923,-538],[-554,-192]],[[87470,45797],[40,201],[231,59],[41,335],[270,252],[247,406]],[[88202,47248],[-119,-219],[-235,121],[-158,-181],[-141,-423]],[[88299,47050],[-97,198]],[[34046,50667],[-201,-358],[-213,-41],[-179,94],[-59,-299],[-970,-224],[-393,-36]],[[34294,50215],[-248,452]],[[85875,47344],[-461,-250]],[[86406,47856],[-170,-65],[-139,-290],[-222,-157]],[[86474,46740],[-68,1116]],[[25221,49444],[-245,23],[-372,-146],[20,-177],[-382,-120],[36,-339],[-200,-11],[-800,-260]],[[25614,49394],[-376,-116],[-17,166]],[[73029,50311],[-40,-64],[117,-439]],[[73596,50281],[-392,200],[-175,-170]],[[73692,50010],[-96,271]],[[34666,51326],[69,-649],[-78,-87],[4,-447],[-57,-94]],[[34607,52156],[59,-830]],[[35224,52281],[-617,-125]],[[35586,50284],[-243,19],[-81,1005],[37,9],[-75,964]],[[73641,50561],[-45,-280]],[[73855,50542],[-214,19]],[[74240,50160],[-233,109],[-152,273]],[[66695,51806],[-60,-334]],[[67469,51703],[-774,103]],[[67462,51535],[7,168]],[[88398,46870],[-155,-7],[-326,-480],[-190,-357]],[[88568,46685],[-170,185]],[[88293,46279],[149,84],[126,322]],[[65049,52732],[-156,23],[-481,-759],[224,-421],[-170,-217]],[[65321,51916],[-272,816]],[[72647,51085],[-151,-155],[-86,-321],[-156,-178]],[[73029,50311],[-221,651],[-161,123]],[[76524,50092],[64,-328],[-9,-355]],[[76973,50569],[-129,-221],[-320,-256]],[[77374,49906],[-189,25],[-243,435],[31,203]],[[77370,49499],[62,184],[-58,223]],[[75513,50350],[-457,-55]],[[75653,50378],[-140,-28]],[[75688,50009],[-35,369]],[[9374,41609],[-147,-228],[328,-308],[171,206],[231,-34],[387,359],[341,-183],[2,241]],[[10595,42513],[-740,46],[-94,-365],[-152,-98],[-150,-470],[-85,-17]],[[52713,54012],[14,-1686]],[[53816,54025],[-1103,-13]],[[53818,53521],[-2,504]],[[48511,52834],[-3,-688]],[[49466,52897],[-955,-63]],[[49473,52540],[-7,357]],[[84001,47990],[10,341]],[[83162,48743],[70,-385],[-72,-39]],[[83554,49527],[-370,-394],[-22,-390]],[[83627,49176],[-73,351]],[[84011,48331],[-105,-7],[-138,639],[-141,213]],[[64309,52914],[-197,23],[-7,-356]],[[64990,52853],[-681,61]],[[65049,52732],[-59,121]],[[10538,43827],[1,2]],[[10750,45306],[-67,-218],[-220,28],[-20,-540],[105,-58],[-10,-691]],[[12466,44102],[-1149,417],[-2,223],[-565,564]],[[59656,52646],[-676,-9],[0,-57]],[[59850,52252],[-192,3],[-2,391]],[[57160,53241],[-5,-1403]],[[57161,53316],[-1,-75]],[[58115,53341],[-954,-25]],[[58116,52334],[-1,1007]],[[76299,50284],[-265,-303]],[[76524,50092],[-225,192]],[[84637,49160],[-54,1],[-209,-525],[-150,-44],[-30,-220],[-183,-41]],[[84709,49097],[-72,63]],[[84948,48314],[-119,433],[-122,10],[2,340]],[[71113,51936],[-98,-491],[28,-200]],[[71214,52295],[-101,-359]],[[71762,52089],[-229,142],[-177,-184],[-142,248]],[[71930,51262],[-168,827]],[[55570,53037],[-762,-2]],[[55578,51860],[-8,1177]],[[56335,53029],[-765,8]],[[56347,51852],[-12,1177]],[[56337,53252],[-2,-223]],[[57160,53241],[-823,11]],[[90413,45314],[-71,139],[59,268],[-75,86]],[[89822,46506],[114,-168],[74,-792]],[[89847,47339],[-176,53],[151,-886]],[[89950,47514],[-103,-175]],[[90326,45807],[80,27],[-229,808],[29,505],[-159,125],[-97,242]],[[79520,50151],[-309,51],[-184,-80],[-107,-573],[-175,-426]],[[79815,49575],[-260,209],[126,166],[-161,201]],[[88366,46059],[570,197],[65,96],[-100,756]],[[88901,47108],[-175,-419],[-158,-4]],[[61313,53314],[-4,-169],[-294,-234],[-3,-560]],[[61699,53295],[-386,19]],[[38130,52221],[88,-658]],[[38646,53411],[14,-1260],[-184,-183],[-346,253]],[[40158,51618],[-196,268],[-197,613],[-388,598],[-319,-17],[-412,331]],[[86702,47846],[-296,10]],[[87468,48259],[-333,-158],[-97,-262],[-336,7]],[[87608,47854],[-140,405]],[[87155,47370],[124,253],[342,102],[-13,129]],[[85875,47344],[-100,645]],[[85661,48254],[-408,-134],[-69,-130]],[[85775,47989],[-114,265]],[[72194,52569],[-144,-427],[-288,-53]],[[72466,52556],[-272,13]],[[72766,51369],[-84,334],[-209,443],[-7,410]],[[72647,51085],[119,284]],[[74419,50724],[0,-181]],[[74764,50833],[-71,172],[-205,-337],[-69,56]],[[74898,50502],[-134,331]],[[77530,50425],[-156,-519]],[[78048,50287],[-222,-86],[-296,224]],[[78047,49667],[-93,130],[94,490]],[[46571,53693],[29,-1007]],[[47336,53753],[-765,-60]],[[47361,52062],[13,337],[-38,1354]],[[70774,51698],[-75,-387],[-237,-307]],[[71113,51936],[-339,-238]],[[80578,50459],[-179,-231],[-325,-704],[-99,-1]],[[80772,50102],[-177,100],[-17,257]],[[80948,49154],[164,467],[-132,-71],[-182,345],[-26,207]],[[73087,52000],[-178,41],[77,-267],[-57,-286],[-163,-119]],[[73251,51283],[-164,717]],[[73641,50561],[-211,222],[-179,500]],[[78573,50075],[31,-97],[-208,-300]],[[79274,50692],[-293,16],[-95,-286],[-217,-83],[-96,-264]],[[79354,50770],[-80,-78]],[[79465,50600],[-111,170]],[[79520,50151],[-55,449]],[[69206,52330],[-54,-367],[-115,-98],[-218,-498]],[[69622,52231],[-416,99]],[[69766,52069],[-144,162]],[[69907,51214],[-18,309],[96,137],[-202,249],[-17,160]],[[88188,47801],[-138,-64],[-123,-261],[-205,-31],[-331,-557]],[[88409,48274],[-160,-199],[-61,-274]],[[88410,48274],[-1,0]],[[88425,47663],[68,456],[-83,155]],[[88202,47248],[223,415]],[[33814,51146],[21,-213],[173,-58],[38,-208]],[[34666,51326],[-852,-180]],[[73919,51354],[-3,-681],[-61,-131]],[[74397,51126],[-478,228]],[[74419,50724],[54,351],[-76,51]],[[35949,52497],[-733,-99],[8,-117]],[[36088,50851],[-75,648],[-64,998]],[[78193,50389],[-145,-102]],[[78573,50075],[-188,330],[-192,-16]],[[82269,49533],[-154,-207]],[[82608,49358],[-195,255],[-144,-80]],[[83162,48743],[-261,-71],[-146,447],[-147,239]],[[66094,52999],[71,-112],[-81,-354],[-274,-222],[-18,-170]],[[66733,52813],[-514,70],[-125,116]],[[66695,51806],[38,1007]],[[76174,50736],[-114,-147],[-218,53],[-189,-264]],[[76198,50730],[-24,6]],[[76299,50284],[-101,446]],[[70438,52438],[-406,-173],[-266,-196]],[[70774,51698],[24,243],[-229,221],[-131,276]],[[75136,51648],[-372,-815]],[[75399,51655],[-263,-7]],[[75576,51448],[-177,207]],[[75513,50350],[63,1098]],[[68094,52638],[-54,-1184]],[[68522,52676],[-86,-84],[-342,46]],[[68663,51787],[-204,575],[63,314]],[[73923,51538],[-395,78],[-151,-50],[-126,-283]],[[73919,51354],[4,184]],[[47528,53769],[-192,-16]],[[48494,53863],[-966,-94]],[[48511,52834],[-17,1029]],[[51564,53986],[11,-1001]],[[52713,54012],[-1149,-26]],[[67511,52717],[-42,-1014]],[[68030,52645],[-519,72]],[[68094,52638],[-64,7]],[[87902,47926],[-53,101],[-241,-173]],[[88188,47801],[47,141],[-158,129],[21,-173],[-196,28]],[[59691,54132],[-5,-1205],[-30,-281]],[[59883,54131],[-192,1]],[[60264,53844],[-384,11],[3,276]],[[60230,52257],[34,1587]],[[9656,43486],[-183,-250],[13,-663],[-118,-349],[45,-153],[-128,-112],[89,-350]],[[10538,43827],[-663,-324],[-219,-17]],[[85963,48286],[-188,-297]],[[86724,48407],[-523,-330],[-75,280],[-163,-71]],[[86702,47846],[22,561]],[[64996,53023],[-6,-170]],[[65496,52962],[-500,61]],[[66094,53022],[-147,-126],[-451,66]],[[66094,52999],[0,23]],[[58114,53566],[1,-225]],[[58920,53569],[-806,-3]],[[58883,52579],[39,337],[-2,653]],[[12788,46038],[-175,-373],[-147,-1563]],[[14374,44368],[-585,613],[-36,246],[-159,241],[-192,-84],[-614,654]],[[68660,52924],[-138,-248]],[[68890,52989],[-133,-235],[-97,170]],[[69206,52330],[-316,659]],[[60557,53836],[-293,8]],[[61320,53821],[-763,15]],[[61313,53314],[7,507]],[[33814,51146],[-761,-138],[-883,-202],[-265,509]],[[77009,50728],[-36,-159]],[[77582,51242],[-284,-435],[-38,90],[-251,-169]],[[77627,51295],[-45,-53]],[[77530,50425],[146,730],[-49,140]],[[81466,49352],[12,64],[-240,1185]],[[81235,50598],[-463,-496]],[[81238,50601],[-3,-3]],[[66930,52803],[-197,10]],[[67511,52717],[-581,86]],[[76543,50956],[-345,-226]],[[77009,50728],[-249,-58],[-106,294],[-111,-8]],[[75905,51468],[-115,-125],[-214,105]],[[76174,50736],[-160,255],[-109,477]],[[88901,47108],[36,302]],[[88937,47410],[-228,-94],[-54,112],[-257,-558]],[[36005,52510],[-56,-13]],[[37121,52730],[-1116,-220]],[[37205,51396],[-84,1334]],[[8936,42155],[25,-277],[192,-26],[-33,392]],[[9120,42244],[-184,-89]],[[58918,54129],[2,-560]],[[59691,54132],[-773,-3]],[[74569,51395],[-172,-269]],[[74978,51889],[-409,-494]],[[75136,51648],[-29,265],[-129,-24]],[[49448,53909],[18,-1012]],[[50410,53954],[-962,-45]],[[50426,52946],[-16,1008]],[[84120,49621],[-297,-136],[-196,-309]],[[84323,49835],[-203,-214]],[[84424,49666],[-101,169]],[[84637,49160],[-213,506]],[[38580,54554],[66,-1143]],[[40600,54862],[-583,-76],[-1437,-232]],[[42225,55068],[-1625,-206]],[[42351,52596],[-126,2472]],[[82600,50240],[135,-517],[-127,-365]],[[83036,50556],[-436,-316]],[[83554,49527],[-132,369],[-127,-105],[-237,387],[65,186],[-87,192]],[[62388,53937],[-191,9],[-17,-672],[-96,7]],[[63152,53903],[-764,34]],[[63232,53229],[-276,5],[6,338],[180,-3],[10,334]],[[63222,52808],[10,421]],[[80453,50827],[-280,-155],[-114,59],[-236,-123],[-83,130],[-216,-15],[-59,-123]],[[80578,50459],[-125,368]],[[85171,49558],[-198,-140],[-264,-321]],[[85418,49708],[-76,63],[-171,-213]],[[85661,48254],[7,213],[-250,1241]],[[11863,46186],[141,-145],[468,-55],[316,52]],[[14758,45294],[-560,591],[-123,205],[-49,398],[-292,254],[-43,-173],[-123,81],[-140,298],[-142,9],[-294,497],[-110,-78],[-271,58],[-81,-79],[-392,69],[-129,-140],[-105,-357],[38,-188],[-79,-553]],[[88299,47050],[175,163],[157,343],[424,50],[-190,257],[-242,-131]],[[88623,47732],[-198,-69]],[[78063,51976],[-80,-81],[-54,-433],[-123,69],[-10,-199],[-169,-37]],[[78193,50389],[-47,177],[-2,531],[82,132],[-163,747]],[[37629,52991],[-517,-93],[9,-168]],[[38130,52221],[-501,770]],[[85804,49472],[-231,319],[-155,-83]],[[85946,49087],[-142,385]],[[85963,48286],[-17,801]],[[78030,52038],[33,-62]],[[78345,52255],[-315,-217]],[[78363,52225],[-18,30]],[[78757,51753],[-67,148],[-327,324]],[[79274,50692],[-517,1061]],[[64006,54383],[-78,-389],[-22,-884],[-674,119]],[[64326,54172],[4,173],[-324,38]],[[64309,52914],[17,1258]],[[44123,53789],[36,-982]],[[44974,53881],[-851,-92]],[[45028,53886],[-54,-5]],[[45071,52546],[-43,1340]],[[70361,53012],[-20,-249],[97,-325]],[[70755,53736],[-161,-207],[-13,-183],[-220,-334]],[[71219,52951],[-238,392],[-112,-49],[-114,442]],[[71214,52295],[-115,106],[120,550]],[[45793,53962],[-765,-76]],[[45836,52619],[-43,1343]],[[45832,53965],[-39,-3]],[[46561,54030],[-729,-65]],[[46571,53693],[-10,337]],[[48509,54198],[-15,-335]],[[49444,54241],[-935,-43]],[[49448,53909],[-4,332]],[[50607,54298],[-202,-9],[5,-335]],[[51562,54325],[-955,-27]],[[51564,53986],[-2,339]],[[54807,54375],[0,-837]],[[55573,54382],[-766,-7]],[[55570,53037],[3,1345]],[[55581,54382],[-8,0]],[[56342,54373],[-761,9]],[[56337,53252],[5,1121]],[[72882,52550],[-416,6]],[[72999,52344],[-117,206]],[[73205,52321],[-206,23]],[[73087,52000],[118,321]],[[73903,52387],[-184,-162],[-119,197],[-178,-159],[-217,58]],[[73929,51872],[25,508],[-51,7]],[[73923,51538],[6,334]],[[81904,50437],[-84,-206],[-409,541],[-173,-171]],[[82269,49533],[-163,294],[71,199],[-273,411]],[[75948,51558],[-43,-90]],[[76483,51482],[-99,-100],[-331,272],[-105,-96]],[[76543,50956],[-60,526]],[[74263,51796],[-334,76]],[[74569,51395],[-306,401]],[[86824,48396],[-100,11]],[[87176,48709],[22,-354],[-122,-204],[-252,245]],[[87387,48878],[-126,39],[-85,-208]],[[87501,48852],[-114,26]],[[87576,48398],[-75,454]],[[87468,48259],[108,139]],[[8920,44554],[-136,-424],[107,-588],[-11,-502],[-83,-199],[139,-686]],[[9267,44006],[-45,259],[-300,-30],[-2,319]],[[9440,43369],[-148,68],[-62,242],[37,327]],[[9120,42244],[-14,457],[152,154],[182,514]],[[76589,52127],[-39,-495],[-67,-150]],[[77305,51688],[-169,-108],[-258,468],[-177,-113],[-112,192]],[[77582,51242],[-252,-15],[-25,461]],[[86439,49068],[-99,-190],[-157,7],[-237,202]],[[86724,48407],[-285,661]],[[69847,52496],[-163,-67],[-62,-198]],[[70023,53159],[-107,-118],[-69,-545]],[[70361,53012],[-187,165],[-151,-18]],[[56366,54542],[-24,-169]],[[57171,54531],[-805,11]],[[57171,54432],[0,99]],[[57161,53316],[10,1116]],[[82017,50827],[-113,-390]],[[82305,50645],[-125,-67],[-163,249]],[[82600,50240],[-295,405]],[[37589,54383],[-77,-272],[62,-150],[80,-711],[-25,-259]],[[38465,54535],[-876,-152]],[[38580,54554],[-115,-19]],[[58113,54461],[-942,-29]],[[58114,53566],[-1,895]],[[69140,53343],[-87,-147],[-144,66],[-19,-273]],[[69124,53455],[16,-112]],[[69847,52496],[-196,349],[-169,131],[-358,479]],[[64911,54123],[-585,49]],[[64996,53023],[42,1098],[-127,2]],[[42373,55087],[-148,-19]],[[44065,55311],[-1692,-224]],[[44123,53789],[-58,1522]],[[32919,53437],[-1168,-267]],[[33814,51146],[-101,164],[-55,478],[-150,290],[-159,57],[-212,483],[-17,262],[-201,557]],[[34493,53774],[-1574,-337]],[[34607,52156],[-114,1618]],[[10665,45968],[-14,-263],[99,-399]],[[11044,47021],[-326,-531],[-53,-522]],[[11863,46186],[-819,835]],[[74566,52936],[-35,-467],[-241,-209],[-27,-464]],[[74923,52512],[-101,-86],[-256,510]],[[74978,51889],[-55,623]],[[88097,48666],[-360,-125],[-161,-143]],[[88315,48275],[-225,187],[7,204]],[[87902,47926],[264,41],[149,308]],[[71486,53193],[-41,-154],[-226,-88]],[[72028,53041],[-542,152]],[[72194,52569],[56,209],[-222,263]],[[83068,50874],[-32,-318]],[[83579,51439],[-285,-501],[-226,-64]],[[83837,51309],[-53,206],[-205,-76]],[[84041,50074],[-204,1235]],[[84120,49621],[-129,173],[50,280]],[[25024,51338],[-2000,-634]],[[25221,49444],[-197,1894]],[[53815,54694],[1,-669]],[[54802,54711],[-987,-17]],[[54807,54375],[-5,336]],[[63531,55103],[-39,-281],[-164,-102],[-65,-208],[-47,-613],[-64,4]],[[63956,55239],[-326,18],[-99,-154]],[[64006,54383],[9,402],[-69,118],[10,336]],[[65555,54782],[-59,-1820]],[[65733,54763],[-178,19]],[[66201,54226],[-229,98],[-239,439]],[[66196,53901],[5,325]],[[66094,53022],[163,476],[32,326],[-93,77]],[[61358,55413],[-38,-1592]],[[61645,55406],[-287,7]],[[62411,55378],[-766,28]],[[62388,53937],[23,1441]],[[68056,53325],[-26,-680]],[[68159,53384],[-103,-59]],[[68660,52924],[-35,134],[-342,124],[-124,202]],[[67553,53726],[-42,-1009]],[[67987,54708],[-17,-352],[-417,-630]],[[68056,53325],[-101,156],[-39,490],[172,405],[-101,332]],[[87176,48709],[-168,-42],[-55,-217],[-129,-54]],[[66968,53830],[-38,-1027]],[[67176,53909],[-208,-79]],[[67553,53726],[-342,51],[-35,132]],[[66610,53854],[-414,47]],[[66968,53830],[-358,24]],[[88410,48274],[0,0]],[[88856,48110],[180,673],[-191,134],[-435,-643]],[[88838,47878],[18,232]],[[88623,47732],[215,146]],[[65136,55157],[-5,-172],[-199,18],[-21,-880]],[[65555,54782],[-164,14],[11,281],[-266,80]],[[80394,51182],[59,-355]],[[80669,51509],[-275,-327]],[[81072,51173],[-209,106],[-194,230]],[[81235,50598],[47,309],[-210,266]],[[11180,48974],[177,-165],[91,-594],[-404,-1194]],[[11601,50599],[-45,-248],[-127,-81],[-289,-682],[91,-342],[-51,-272]],[[13205,48991],[-192,193],[-163,11],[-353,-156],[-123,810],[-773,750]],[[15429,48901],[-325,-101],[-738,-323],[-46,313],[-550,-239],[-48,320],[-284,-126],[-233,246]],[[15113,45931],[-85,439],[116,114],[3,736],[72,28],[258,443],[39,696],[-85,183],[-2,331]],[[58168,54687],[-55,-226]],[[58918,54689],[-750,-2]],[[58918,54129],[0,560]],[[75567,52410],[0,-150],[-168,-605]],[[75922,52600],[-201,-22],[-154,-168]],[[76171,52166],[-249,434]],[[75948,51558],[223,608]],[[69396,54194],[-236,-321],[-36,-418]],[[70004,54071],[-319,248],[-289,-125]],[[70023,53159],[-139,395],[160,378],[-40,139]],[[86858,49530],[-188,49],[-95,-224],[-151,-73],[15,-214]],[[87227,49573],[-196,54],[-173,-97]],[[87277,49515],[-50,58]],[[87297,49492],[-20,23]],[[87341,49447],[-44,45]],[[87384,49167],[-43,280]],[[87417,49171],[-33,-4]],[[87387,48878],[30,293]],[[84852,50413],[-172,-91],[-256,-656]],[[85081,50171],[-229,242]],[[85171,49558],[21,202],[-111,411]],[[89857,48602],[85,-229],[-38,443],[-47,-214]],[[89950,47514],[-122,807],[43,675],[-45,80],[-161,-503],[16,-1127],[166,-107]],[[73770,52813],[133,-426]],[[74015,53248],[-42,-267],[-203,-168]],[[74283,53467],[-90,71],[-178,-290]],[[74566,52936],[-283,531]],[[79771,51735],[-215,-140],[-311,-657],[109,-168]],[[80394,51182],[-74,271],[-227,320],[-192,69],[-130,-107]],[[68496,54333],[-68,-477],[-269,-472]],[[68660,54184],[-164,149]],[[69140,53343],[-414,610],[-66,231]],[[25649,51527],[-625,-189]],[[27615,52095],[-1966,-568]],[[76647,52409],[-248,-328],[-228,85]],[[76589,52127],[58,282]],[[75346,53108],[-423,-596]],[[75567,52410],[-130,169],[-91,529]],[[79123,52663],[15,-82],[-381,-828]],[[79522,52170],[-178,134],[-1,200],[-220,159]],[[79771,51735],[-28,151],[-221,284]],[[88838,47878],[123,-90],[210,211],[39,534],[-339,-317],[-15,-106]],[[77587,52437],[-190,-109],[-92,-640]],[[78030,52038],[-152,46],[-247,431],[-44,-78]],[[85841,49743],[-37,-271]],[[86638,49888],[-797,-145]],[[86858,49530],[-220,358]],[[88148,48682],[46,419],[-97,115],[-163,-237],[-420,116],[-13,-243]],[[88097,48666],[51,16]],[[59920,55387],[-37,-1256]],[[60207,55441],[-287,-54]],[[60591,55433],[-384,8]],[[60557,53836],[34,1597]],[[9440,43369],[216,117]],[[10004,45902],[-207,-693],[-343,-546],[-187,-657]],[[10665,45968],[-347,-160],[-106,-139],[-208,233]],[[73472,53330],[-264,-611],[-199,-227],[-10,-148]],[[73770,52813],[-298,517]],[[61358,55413],[-767,20]],[[81345,51667],[-324,-411],[51,-83]],[[81741,51178],[-396,489]],[[82017,50827],[-276,351]],[[52710,55849],[3,-1837]],[[53414,55861],[-704,-12]],[[53810,55867],[-396,-6]],[[53815,54694],[-5,1173]],[[51553,55818],[9,-1493]],[[52154,55836],[-601,-18]],[[52710,55849],[-556,-13]],[[46552,55525],[42,-1492],[-33,-3]],[[47513,55592],[-961,-67]],[[47528,53769],[18,341],[-33,1482]],[[47666,55605],[-153,-13]],[[48481,55667],[-815,-62]],[[48509,54198],[-28,1469]],[[49436,55724],[26,-1482],[-18,-1]],[[50241,55767],[-805,-43]],[[50590,55785],[-349,-18]],[[50607,54298],[-17,1487]],[[72889,53480],[-48,-455],[41,-475]],[[73187,53705],[-190,-25],[-108,-200]],[[73472,53330],[-285,375]],[[84323,49835],[-200,304],[-82,-65]],[[15554,52756],[90,-286],[19,-473],[-52,-433],[51,-300],[-47,-518],[67,-94],[-186,-671],[17,-454],[-106,-420],[22,-206]],[[16210,52982],[-503,-211],[-153,-15]],[[19699,54237],[-157,6],[-1277,-466],[-2055,-795]],[[19361,53368],[338,869]],[[88434,48834],[-7,124]],[[88500,48561],[-136,102],[70,171]],[[88315,48275],[185,286]],[[88701,49278],[-107,-175],[-160,177],[-217,-126],[-69,-472]],[[88710,49092],[-9,186]],[[88534,48953],[176,139]],[[88427,48958],[107,-5]],[[72244,53654],[2,-186],[-218,-427]],[[72791,53545],[-279,134],[-268,-25]],[[72889,53480],[-98,65]],[[76687,52488],[-40,-79]],[[77322,53180],[-83,-581],[-254,-182],[-45,-225],[-188,56],[-65,240]],[[77433,53231],[-111,-51]],[[77587,52437],[-84,324],[43,375],[-113,95]],[[84445,51093],[-178,92],[-129,-261],[-222,119],[-79,266]],[[84786,51151],[-341,-58]],[[84852,50413],[-66,738]],[[58959,55397],[-3,-708],[-38,0]],[[59920,55387],[-961,10]],[[67852,54679],[135,29]],[[68009,54881],[-157,-202]],[[68445,54983],[-238,-289],[-198,187]],[[68496,54333],[-51,650]],[[62423,55994],[-12,-616]],[[63193,55951],[-770,43]],[[63531,55103],[-351,68],[13,780]],[[34599,53796],[-106,-22]],[[36257,54148],[-1658,-352]],[[36005,52510],[-44,671],[133,156],[1,212],[162,599]],[[82535,51466],[-70,-451],[-160,-370]],[[82619,51405],[-84,61]],[[83068,50874],[-166,393],[-94,-110],[-189,248]],[[82731,50827],[150,152],[101,-384],[-166,-84],[-83,138]],[[82733,50649],[-163,129],[161,49]],[[70151,54379],[-147,-308]],[[70518,54361],[-343,132],[-24,-114]],[[70713,54298],[-195,63]],[[70755,53736],[-42,562]],[[85564,50682],[-148,-164],[-319,-138],[-16,-209]],[[85901,50414],[-337,268]],[[85841,49743],[60,671]],[[37082,54295],[-825,-147]],[[37589,54383],[-507,-88]],[[71486,53193],[156,557]],[[71197,54487],[-484,-189]],[[71642,53750],[-396,26],[-49,711]],[[44089,55315],[-24,-4]],[[44924,55394],[-835,-79]],[[44974,53881],[-50,1513]],[[45787,55466],[-863,-72]],[[45832,53965],[-45,1501]],[[46001,55484],[-214,-18]],[[46552,55525],[-551,-41]],[[54802,55869],[0,-1158]],[[55116,55868],[-314,1]],[[55583,55865],[-467,3]],[[55581,54382],[2,1483]],[[51006,55802],[-416,-17]],[[51553,55818],[-547,-16]],[[48631,55677],[-150,-10]],[[49436,55724],[-805,-47]],[[55786,55863],[-203,2]],[[56377,55854],[-591,9]],[[56366,54542],[11,1312]],[[69088,54970],[-332,-781],[-96,-5]],[[69332,54772],[-244,198]],[[69396,54194],[-64,578]],[[88534,48953],[-100,-119]],[[89035,49448],[-282,-394],[-43,38]],[[89100,49380],[-65,68]],[[89052,49268],[48,112]],[[88500,48561],[212,306],[286,92],[54,309]],[[57180,55617],[-9,-1086]],[[58167,55621],[-987,-4]],[[58168,54687],[-1,934]],[[81918,51504],[-177,-326]],[[81844,51756],[74,-252]],[[81945,52138],[-101,-382]],[[82535,51466],[-259,412],[-331,260]],[[76105,53322],[-206,-421],[23,-301]],[[76627,53591],[-348,-238],[-174,-31]],[[76774,53625],[-147,-34]],[[76687,52488],[-41,467],[128,670]],[[75346,53108],[-69,760]],[[74430,53897],[-137,-166],[-10,-264]],[[74916,54305],[-207,-398],[-155,118],[-124,-128]],[[75277,53868],[-361,437]],[[56493,55852],[-116,2]],[[57182,55839],[-689,13]],[[57180,55617],[2,222]],[[72169,54080],[-194,-133],[-106,109],[-227,-306]],[[72244,53654],[-6,443],[-69,-17]],[[82731,50827],[2,-178]],[[67190,54201],[-14,-292]],[[67852,54679],[-662,-478]],[[79794,52818],[-272,-648]],[[80377,52465],[-237,141],[-167,265],[-60,-156],[-119,103]],[[80669,51509],[-159,378],[130,181],[-316,311],[53,86]],[[66545,55116],[-117,-99],[-227,-791]],[[66868,55191],[-59,46],[-175,-341],[-89,220]],[[66795,54875],[73,316]],[[66610,53854],[87,167],[-104,259],[22,440],[180,155]],[[75388,53900],[-111,-32]],[[75741,53789],[-353,111]],[[76105,53322],[-134,331],[-230,136]],[[67182,54208],[-252,262],[-135,405]],[[67190,54201],[-8,7]],[[76820,53783],[-46,-158]],[[77322,53180],[-121,231],[-381,372]],[[87417,49171],[115,24]],[[87532,49195],[-148,-28]],[[64150,55698],[-194,-459]],[[64892,55642],[-742,56]],[[65136,55157],[-244,485]],[[87334,49741],[106,-135],[-99,-159]],[[87414,50413],[-80,-672]],[[87782,49819],[-368,594]],[[87979,49275],[-197,544]],[[87532,49195],[267,-147],[180,227]],[[88427,48958],[0,0]],[[73362,54337],[-108,-248],[-67,-384]],[[73752,54312],[-390,25]],[[74015,53248],[-236,782],[-27,282]],[[78832,53013],[-55,72],[-204,-207],[-168,-361],[-42,-292]],[[79123,52663],[-291,350]],[[54738,55870],[-928,-3]],[[54802,55869],[-64,1]],[[80498,52657],[-121,-192]],[[81270,51978],[-334,289],[-202,-43],[-236,433]],[[81345,51667],[-121,161],[46,150]],[[86638,49888],[-159,244],[84,581]],[[86351,50650],[-135,68],[-315,-304]],[[86563,50713],[-212,-63]],[[58166,56069],[1,-448]],[[58966,56073],[-800,-4]],[[58963,55790],[3,283]],[[58959,55397],[4,393]],[[9599,45889],[-159,-564],[-296,-55],[-155,-351],[-69,-365]],[[9895,45872],[-165,-135],[-131,152]],[[10004,45902],[-109,-30]],[[87006,50937],[-214,-230],[-229,6]],[[87081,50977],[-75,-40]],[[87414,50413],[-333,564]],[[87227,49573],[107,168]],[[77884,53230],[-135,-128],[-353,319],[37,-190]],[[78345,52255],[-248,351],[21,294],[-234,330]],[[65903,55773],[-5,-270],[-195,-570],[30,-170]],[[66205,55700],[-302,73]],[[66545,55116],[-103,74],[-237,510]],[[85364,52241],[-107,-598],[-241,-292],[-191,-35],[-39,-165]],[[85555,51422],[-191,819]],[[85564,50682],[-9,740]],[[81640,52634],[-320,-490],[-50,-166]],[[81807,52383],[-167,251]],[[81945,52138],[-138,245]],[[81918,51504],[-74,252]],[[87297,49492],[-20,23]],[[87979,49275],[373,-22],[128,183],[74,-226],[46,216]],[[88207,50332],[-71,-410],[-354,-103]],[[88363,50074],[-156,258]],[[88600,49426],[-2,315],[-235,333]],[[82525,52413],[161,-604],[-67,-404]],[[82893,52610],[-61,-164],[-307,-33]],[[83570,52171],[-186,320],[-432,-39],[-59,158]],[[83579,51439],[-9,732]],[[67182,54208],[251,1015]],[[66933,55329],[-65,-138]],[[67433,55223],[-441,203],[-59,-97]],[[67440,55251],[-7,-28]],[[68021,55191],[-581,60]],[[68009,54881],[12,310]],[[89165,49816],[-476,-380],[12,-158]],[[89035,49448],[23,293],[107,75]],[[77894,53546],[-10,-316]],[[78110,53854],[-216,-308]],[[78725,53407],[-400,89],[-215,358]],[[78832,53013],[73,235],[-180,159]],[[71334,54916],[-137,-429]],[[71720,55263],[2,-120],[-327,-33],[-61,-194]],[[72105,54584],[-385,679]],[[72169,54080],[-64,504]],[[73799,54577],[-47,-265]],[[74064,54509],[-88,138],[-177,-70]],[[74430,53897],[-366,612]],[[72880,54802],[-95,-1016],[6,-241]],[[73138,54845],[-258,-43]],[[73362,54337],[-28,176],[-196,332]],[[68611,55400],[-166,-417]],[[69088,54970],[-477,430]],[[89052,49268],[81,-122]],[[89120,49351],[-20,29]],[[89133,49146],[136,100],[-149,105]],[[72490,55335],[-184,-289],[-26,-371],[-175,-91]],[[72880,54802],[-390,533]],[[69474,56164],[-6,-1275],[-136,-117]],[[69567,56147],[-93,17]],[[70107,56050],[-540,97]],[[70151,54379],[-44,1671]],[[88600,49426],[56,332],[148,33],[207,215],[-44,204]],[[88363,51209],[98,-841],[-98,-294]],[[88416,51424],[-53,-215]],[[88439,51432],[-23,-8]],[[88967,50210],[-18,-27],[-510,1249]],[[78910,54012],[-185,-605]],[[79706,52956],[-172,294],[-226,95],[-27,228],[-371,439]],[[79794,52818],[-88,138]],[[83561,53403],[9,-1232]],[[83920,53301],[-359,102]],[[83990,53279],[-70,22]],[[84213,53210],[51,-175],[-190,-187],[-84,431]],[[84430,53143],[-217,67]],[[84445,51093],[-15,2050]],[[82186,53148],[-379,-765]],[[82525,52413],[-172,200],[-67,375],[-100,160]],[[65127,56742],[-19,-333],[-98,-200],[-118,-567]],[[65464,56711],[-337,31]],[[65903,55773],[18,896],[-457,42]],[[86413,51590],[-385,7],[-171,-120],[-302,-55]],[[86351,50650],[62,940]],[[89120,49351],[203,35],[-18,333],[-140,97]],[[87484,51509],[-110,-16],[-8,-553],[-163,124],[-122,-87]],[[88207,50332],[-723,1177]],[[63389,56166],[-194,9],[-2,-224]],[[64193,56139],[-804,27]],[[64150,55698],[43,441]],[[59515,56456],[-67,2],[-4,-677],[-481,9]],[[60215,56450],[-700,6]],[[60207,55441],[8,1009]],[[80770,53324],[-161,-488],[-111,-179]],[[81138,53056],[-67,171],[-301,97]],[[81640,52634],[-502,422]],[[70593,55967],[-75,-1606]],[[71117,55859],[-524,108]],[[71334,54916],[-131,174],[-86,769]],[[70497,55985],[-390,65]],[[70593,55967],[-96,18]],[[60471,56447],[-256,3]],[[61628,56419],[-1157,28]],[[61645,55406],[12,1011],[-29,2]],[[68052,55929],[-31,-738]],[[68716,55850],[-664,79]],[[68611,55400],[105,450]],[[66582,56574],[-377,-874]],[[66846,56462],[-116,355],[-148,-243]],[[66920,55942],[-126,277],[52,243]],[[66933,55329],[-50,375],[37,238]],[[84571,53100],[-141,43]],[[85169,52915],[-598,185]],[[85278,52880],[-109,35]],[[85364,52241],[-86,114],[0,525]],[[61641,57557],[-13,-1138]],[[62437,57496],[-796,61]],[[62423,55994],[-18,392],[32,1110]],[[57189,56735],[-7,-896]],[[58163,56778],[-974,-43]],[[58166,56069],[-3,709]],[[76199,54729],[-154,-120],[-53,-257],[-171,-189],[-80,-374]],[[76627,53591],[26,198],[-326,472],[-128,468]],[[86480,52486],[-67,-896]],[[86735,52400],[-255,86]],[[86967,52321],[-232,79]],[[87006,50937],[82,682],[-121,702]],[[76939,54651],[-131,-525],[12,-343]],[[77894,53546],[-211,223],[-118,2],[-77,453],[-549,427]],[[80209,53957],[-216,-533],[-287,-468]],[[80770,53324],[-474,362],[-87,271]],[[27815,62832],[955,-10428]],[[28948,65797],[140,-1609],[-1364,-356],[91,-1000]],[[29144,65882],[-196,-85]],[[30080,52765],[-443,5090],[309,79],[-77,544],[-229,2649],[-123,988],[0,354],[-131,1304],[-114,1322],[-59,-13],[-69,800]],[[23666,56684],[112,-1031],[78,-340],[-15,-584],[99,-200],[151,79],[68,-212],[371,-227],[387,-56],[227,-158],[128,-229],[-1,-563],[74,-128],[95,-776],[212,-577],[-3,-155]],[[26437,61639],[127,-1253],[-405,-118],[65,-677],[-999,-258],[66,-666],[-190,-61],[46,-420],[-250,-8],[-73,-244],[-184,-76],[-368,-312],[-25,-151],[-307,-541],[-274,-170]],[[27815,62832],[-176,-63],[-402,-612],[-97,56],[-186,-317],[-380,6],[-137,-263]],[[68800,56104],[-84,-254]],[[69474,56164],[-281,57],[0,-118],[-393,1]],[[55077,57417],[-2,-1327],[41,-222]],[[55749,57412],[-672,5]],[[55786,55863],[-42,219],[5,1330]],[[52867,57411],[-14,-357],[226,15],[84,-260],[242,-113],[9,-835]],[[52942,57749],[193,-167],[-17,-181],[-251,10]],[[54259,59095],[27,-238],[-176,-47],[-230,-385],[-121,139],[-147,-488],[-150,-80],[-86,-464],[-193,358],[-167,42],[-74,-183]],[[54737,58088],[-1,1011],[-477,-4]],[[54738,55870],[-1,2218]],[[48901,56389],[-136,-242],[-134,-470]],[[49472,57627],[7,-352],[-305,-730],[-195,-19],[-78,-137]],[[50229,57831],[-4,254],[-135,19],[-304,-239],[-106,-225],[-208,-13]],[[50241,55767],[-12,2064]],[[55935,57746],[-2,-336],[-184,2]],[[56508,57739],[-573,7]],[[56515,57120],[-7,619]],[[56493,55852],[22,1268]],[[55073,58087],[-336,1]],[[55077,57417],[-4,670]],[[50999,57362],[7,-1560]],[[52140,57398],[-1141,-36]],[[52154,55836],[-14,1562]],[[50993,57864],[-764,-33]],[[50999,57362],[-6,502]],[[52141,57398],[-1,0]],[[52867,57411],[-726,-13]],[[57193,57116],[-678,4]],[[57189,56735],[4,381]],[[47626,57178],[40,-1573]],[[48332,57228],[-706,-50]],[[48901,56389],[-17,864],[-552,-25]],[[34028,56706],[171,-2235],[334,-357],[66,-318]],[[36408,58160],[10,-134],[-1136,-208],[56,-832],[-1310,-280]],[[36404,58297],[4,-137]],[[37357,58283],[6,-90],[-631,-112],[13,279],[-341,-63]],[[37698,58209],[-82,142],[-259,-68]],[[37082,54295],[36,428],[-57,659],[15,971],[-86,446],[-163,158],[340,317],[185,537],[346,398]],[[31443,56975],[308,-3805]],[[33964,57545],[-2521,-570]],[[34028,56706],[-64,839]],[[29896,65738],[-216,111],[-336,440],[-200,-407]],[[30755,65458],[-549,-129],[-25,182],[-246,89],[-39,138]],[[31002,62405],[-247,3053]],[[31121,60953],[-119,1452]],[[31443,56975],[-322,3978]],[[40450,57850],[150,-2988]],[[41495,59843],[79,-1327],[-766,-103],[17,-338],[-383,-57],[8,-168]],[[42093,59923],[-598,-80]],[[42147,58710],[-54,1213]],[[42289,57008],[-70,-9],[-72,1711]],[[42373,55087],[-84,1921]],[[43781,57185],[-1492,-177]],[[44012,57209],[-231,-24]],[[44089,55315],[-77,1894]],[[44737,57290],[-725,-81]],[[45694,57383],[-957,-93]],[[45927,57402],[-233,-19]],[[46001,55484],[-74,1918]],[[46652,57465],[-725,-63]],[[47616,57538],[-964,-73]],[[47626,57178],[-10,360]],[[87787,52047],[-104,0],[-93,-311],[-215,-43],[109,-184]],[[88018,51963],[-231,84]],[[88451,51822],[-433,141]],[[88448,51791],[3,31]],[[88439,51432],[9,359]],[[88363,51209],[53,215]],[[74285,55409],[-89,-527],[-132,-373]],[[74622,55389],[-337,20]],[[74635,55386],[-13,3]],[[74916,54305],[14,170],[-148,355],[-147,556]],[[38091,57311],[-122,72],[-48,404],[-223,422]],[[38465,54535],[19,327],[-67,236],[-29,475],[-143,-24],[-115,187],[50,700],[-89,875]],[[39690,57735],[-764,-116],[10,-165],[-845,-143]],[[40450,57850],[-760,-115]],[[59036,57704],[2,-1238],[-71,1],[-1,-394]],[[59516,57685],[-480,19]],[[59515,56456],[1,1229]],[[11180,48974],[-90,-208],[4,425],[-94,-44],[-211,-526],[-200,114],[-1,-255],[-229,-700],[-130,-185],[51,-401],[-211,-403],[52,-142],[-219,-584],[-7,-193]],[[75610,55227],[-164,-287],[-124,-508],[66,-532]],[[75993,55153],[-383,74]],[[76134,55131],[-141,22]],[[76199,54729],[-127,204],[62,198]],[[89401,50354],[84,-37]],[[89413,50388],[-12,-34]],[[89485,50317],[-72,71]],[[89545,50297],[-223,-82],[-39,-337],[270,66]],[[89553,49944],[-8,353]],[[75550,55240],[-915,146]],[[75610,55227],[-60,13]],[[76581,54982],[-22,75],[-425,74]],[[76939,54651],[-124,27],[-234,304]],[[67470,55918],[-550,24]],[[67440,55251],[30,667]],[[67509,56958],[-39,-1040]],[[68041,56892],[-532,66]],[[68091,56886],[-50,6]],[[68052,55929],[39,957]],[[73468,55557],[-225,-563],[-105,-149]],[[73715,55480],[-247,77]],[[73799,54577],[-84,903]],[[71739,55744],[-19,-481]],[[72107,55723],[-368,21]],[[72519,55693],[-412,30]],[[72490,55335],[29,358]],[[58161,57738],[2,-960]],[[58535,57725],[-374,13]],[[59036,57704],[-501,21]],[[90107,51206],[-9,-31]],[[90181,51178],[-74,28]],[[90098,51175],[83,3]],[[89553,49944],[322,-118],[400,1318]],[[89518,50294],[27,3]],[[89831,51305],[-54,-433],[84,-127],[-274,-214],[-69,-237]],[[89982,51250],[-151,55]],[[90020,51236],[-38,14]],[[90076,51217],[-56,19]],[[90231,51159],[-166,-598],[-50,342],[61,314]],[[90275,51144],[-44,15]],[[81379,53517],[-241,-461]],[[81418,53588],[-39,-71]],[[81585,53899],[-167,-311]],[[81982,53794],[-397,105]],[[82186,53148],[-126,293],[-86,-49],[8,402]],[[79274,54368],[26,-207]],[[79829,54151],[-182,125],[-373,92]],[[80146,54078],[-317,73]],[[80209,53957],[-63,121]],[[79014,54429],[-104,-417]],[[79103,54407],[-89,22]],[[79300,54161],[-197,246]],[[79300,54161],[0,0]],[[64385,57329],[-52,-693],[-63,5],[-15,-506],[-62,4]],[[65017,57268],[-632,61]],[[65127,56742],[-110,526]],[[89220,50485],[181,-131]],[[89413,50388],[-193,97]],[[89174,50179],[82,-131],[-16,331]],[[89166,50301],[8,-122]],[[89240,50379],[-74,-78]],[[88967,50210],[18,289],[189,-320]],[[89100,51567],[-652,224]],[[89188,51536],[-88,31]],[[89166,50301],[-40,218],[62,1017]],[[9748,50199],[-146,-443],[7,-369],[-117,-224],[-45,-406],[-103,-352],[-245,-544],[48,-582],[-12,-503],[103,-181],[87,175],[138,-211],[136,-670]],[[11705,51118],[-1957,-919]],[[11601,50599],[108,163],[-4,356]],[[87787,52047],[-820,274]],[[76939,54915],[-358,67]],[[77798,54730],[-859,185]],[[78110,53854],[-70,275],[-201,272],[-41,329]],[[85763,52724],[-485,156]],[[85995,52644],[-232,80]],[[86480,52486],[-485,158]],[[73751,55471],[-36,9]],[[74285,55409],[-534,62]],[[62833,57471],[-396,25]],[[62908,57467],[-75,4]],[[63408,57422],[-500,45]],[[63389,56166],[19,1256]],[[78070,54665],[-272,65]],[[78460,54571],[-390,94]],[[79014,54429],[-554,142]],[[71475,55856],[-358,3]],[[71739,55744],[-264,112]],[[82286,53736],[-304,58]],[[82967,53573],[-681,163]],[[82893,52610],[-87,83],[161,880]],[[65494,57638],[-30,-927]],[[66242,57754],[-94,-247],[-270,-45],[-12,144],[-372,32]],[[66227,57133],[72,467],[-57,154]],[[66324,57123],[-7,-282],[-152,66],[62,226]],[[66442,57105],[-118,18]],[[66582,56574],[-74,51],[-66,480]],[[89499,51425],[-311,111]],[[89831,51305],[-332,120]],[[89485,50317],[33,-23]],[[89240,50379],[-20,106]],[[83013,53561],[-46,12]],[[83561,53403],[-548,158]],[[83175,52960],[124,122],[-15,-232],[-109,110]],[[21133,57921],[-1434,-3684]],[[22957,51298],[-265,2463],[-265,582],[-149,-9],[-186,-577],[-134,29],[-209,-173],[-307,78],[-66,611],[89,320],[-146,572],[47,409],[-94,416],[53,362],[-9,982],[-157,193],[-26,365]],[[72846,55659],[-327,34]],[[73468,55557],[-622,102]],[[64015,57364],[-607,58]],[[64385,57329],[-370,35]],[[59550,57683],[-34,2]],[[60336,57643],[-786,40]],[[60482,57636],[-146,7]],[[60471,56447],[11,1189]],[[48695,58902],[-382,-23],[19,-1651]],[[49456,58956],[-761,-54]],[[49472,57627],[-16,1329]],[[80100,54183],[46,-105]],[[80674,54085],[-574,98]],[[81472,53920],[-798,165]],[[81585,53899],[-113,21]],[[81379,53517],[39,71]],[[60914,57606],[-432,30]],[[61588,57562],[-674,44]],[[61641,57557],[-53,5]],[[67477,56962],[-134,-270],[-221,-30],[-276,-200]],[[67492,56959],[-15,3]],[[67509,56958],[-17,1]],[[57198,57764],[-5,-648]],[[58161,57738],[-963,26]],[[68864,56792],[-773,94]],[[68800,56104],[93,519],[-29,169]],[[12883,51628],[285,-1781],[87,42],[76,-495],[-90,-42],[49,-325],[-85,-36]],[[15554,52756],[-2671,-1128]],[[69002,57303],[-144,-323],[6,-188]],[[69020,57327],[-18,-24]],[[69707,57172],[-218,30],[-181,180],[-288,-55]],[[69567,56147],[140,1025]],[[56506,59081],[2,-1342]],[[56889,59075],[-383,6]],[[57308,59063],[-419,12]],[[57198,57764],[110,1299]],[[71475,55856],[-187,910],[-102,23]],[[70527,56703],[-51,-361],[21,-357]],[[70910,56924],[-130,73],[-253,-294]],[[71186,56789],[-116,238],[-160,-103]],[[71506,57357],[-249,-338],[-71,-230]],[[72035,56868],[-19,136],[-281,-33],[-155,81],[-74,305]],[[72100,56316],[-63,145],[-2,407]],[[72107,55723],[-7,593]],[[66324,57123],[-97,10]],[[66570,57073],[-128,32]],[[67477,56962],[-907,111]],[[69854,57277],[-147,-105]],[[70260,57263],[-406,14]],[[70527,56703],[-263,433],[-4,127]],[[84213,53210],[-223,69]],[[72846,55659],[-15,479]],[[72556,56472],[-339,-10],[-117,-146]],[[72827,56478],[-271,-6]],[[72831,56138],[-4,340]],[[79274,54368],[-171,39]],[[65112,58403],[211,-418],[-9,-269],[-133,-177],[-47,-284],[-117,13]],[[64804,59228],[137,-472],[171,-353]],[[64963,59209],[-159,19]],[[65553,59136],[-590,73]],[[65494,57638],[59,1498]],[[73758,55838],[-7,-367]],[[74081,56258],[-70,-200],[-253,-220]],[[74737,55670],[-384,-142],[-187,149],[-85,581]],[[74622,55389],[115,281]],[[73418,56401],[-161,-235],[-237,-152],[-189,124]],[[73758,55838],[-267,172],[-73,391]],[[79829,54151],[-241,473]],[[78385,55221],[96,-364],[-21,-286]],[[79068,55191],[-262,-126],[-421,156]],[[79588,54624],[-343,508],[-177,59]],[[79759,55528],[-256,-331],[155,-454],[-70,-119]],[[79778,55440],[-19,88]],[[80077,54956],[56,205],[-161,-62],[-194,341]],[[80100,54183],[-23,773]],[[74833,56248],[68,-108],[-164,-470]],[[75350,56947],[-64,-144],[-267,-203],[-186,-352]],[[75456,56716],[-106,231]],[[75550,55240],[21,307],[-147,211],[89,680],[-57,278]],[[76226,55762],[-233,-609]],[[76669,55959],[-116,23],[-155,-320],[-172,100]],[[77145,55584],[-243,288],[-233,87]],[[76939,54915],[149,210],[57,459]],[[52128,59052],[13,-1654]],[[52318,59078],[-190,-26]],[[53087,58757],[-385,-7],[-3,336],[-381,-8]],[[52942,57749],[-40,7],[-3,663],[190,3],[-2,335]],[[77338,55612],[-193,-28]],[[78070,54665],[-195,245],[-113,-54],[-151,199],[-273,557]],[[55165,59092],[-96,1],[4,-1006]],[[55741,59425],[-235,2],[-85,-336],[-256,1]],[[55935,57746],[-192,2],[-2,1677]],[[76094,56373],[-111,189],[-277,-7],[-6,262],[-244,-101]],[[76226,55762],[-99,210],[-33,401]],[[77414,56005],[-76,-393]],[[77734,56113],[-206,-319],[-114,211]],[[78353,55312],[-399,399],[-220,402]],[[78385,55221],[-32,91]],[[50979,59014],[14,-1150]],[[51744,59041],[-765,-27]],[[52128,59052],[-384,-11]],[[47580,59248],[36,-1710]],[[47564,59922],[16,-674]],[[48685,59487],[-145,23],[-296,610],[-322,-294],[-13,-350],[-135,48],[-72,280],[-138,118]],[[48695,58902],[-10,585]],[[80571,55416],[-494,-460]],[[80922,54836],[-128,-12],[-62,402],[-161,190]],[[80674,54085],[187,447],[61,304]],[[74150,57262],[53,-210],[-99,-404],[-23,-390]],[[74186,57279],[-36,-17]],[[74524,57143],[-223,-15],[-115,151]],[[74833,56248],[-142,293],[-127,62],[-40,540]],[[81414,54562],[-93,135],[-146,-223],[-116,63],[-137,299]],[[81472,53920],[-90,450],[32,192]],[[53628,59098],[-353,-2],[2,-336],[-190,-3]],[[54207,59094],[-579,4]],[[54259,59095],[-52,-1]],[[81638,55145],[-24,-344],[-200,-239]],[[82378,54919],[-171,-113],[-188,177],[-185,3],[-196,159]],[[82372,54842],[6,77]],[[82286,53736],[86,1106]],[[88476,52359],[-25,-537]],[[88974,52597],[-166,-158],[-332,-80]],[[89161,52329],[-187,268]],[[89334,52164],[-173,165]],[[89207,51688],[127,476]],[[89100,51567],[107,121]],[[89982,51250],[5,184],[391,723],[220,575],[-120,12],[-213,-478]],[[90112,52022],[-177,7],[-109,-232],[-327,-372]],[[90265,52266],[-153,-244]],[[90586,52289],[-63,-52],[-147,-630],[-145,-448]],[[90590,52286],[-4,3]],[[90275,51144],[315,1142]],[[90181,51178],[41,206],[-134,43],[-68,-191]],[[90076,51217],[31,-11]],[[83106,54648],[-734,194]],[[83013,53561],[93,1087]],[[89725,52049],[-404,-234],[-114,-127]],[[90112,52022],[90,111],[138,506],[-162,-36],[-230,-293],[-127,1],[-96,-262]],[[86140,53686],[35,-168],[-180,-874]],[[86694,53755],[-241,-92],[-313,23]],[[86755,52541],[27,469],[-88,745]],[[86735,52400],[20,141]],[[88018,51963],[198,181],[-89,66],[-54,911]],[[87962,53467],[-186,-114],[-145,-386],[-163,137],[-95,-100],[31,-307],[-189,-195],[-460,39]],[[88073,53121],[-128,178],[17,168]],[[88924,52838],[-851,283]],[[88476,52359],[302,76],[162,200],[-16,203]],[[84663,54245],[-92,-1145]],[[85021,54146],[-358,99]],[[85284,54077],[-263,69]],[[85169,52915],[115,1162]],[[85845,54138],[-141,-1049],[59,-365]],[[86140,53686],[-112,159],[-32,266],[-151,27]],[[85444,54671],[-108,-58],[-52,-536]],[[85821,54745],[-263,-123],[-114,49]],[[85845,54138],[-24,607]],[[83998,54449],[-892,199]],[[83995,54421],[3,28]],[[83920,53301],[75,1120]],[[84481,54293],[-486,128]],[[84663,54245],[-182,48]],[[73444,56787],[-26,-386]],[[74150,57262],[-152,0],[-404,-249],[-150,-226]],[[72954,57128],[-130,-173],[3,-477]],[[73444,56787],[-91,325],[-109,68],[-290,-52]],[[87256,53764],[-327,145],[-235,-154]],[[87840,54151],[-231,-49],[-36,-198],[-317,-140]],[[87941,53841],[-101,310]],[[87962,53467],[134,186],[-155,188]],[[56157,59422],[-416,3]],[[56506,59081],[-191,4],[2,336],[-160,1]],[[79043,55756],[25,-565]],[[79283,56071],[-85,-277],[-155,-38]],[[79551,56213],[-268,-142]],[[79759,55528],[-121,556],[-87,129]],[[89700,52667],[-174,-103],[-192,-400]],[[89725,52049],[58,271],[164,128],[181,323],[-173,171],[-255,-275]],[[66372,58219],[87,-182],[101,-600],[10,-364]],[[66958,58179],[-586,40]],[[67302,58066],[1,82],[-345,31]],[[67492,56959],[33,354],[-237,34],[14,719]],[[50026,58973],[-570,-17]],[[50788,59006],[-762,-33]],[[50979,59014],[-191,-8]],[[67805,58620],[-277,-205],[-226,-349]],[[68079,58238],[4,142],[-221,21],[-57,219]],[[68041,56892],[38,1346]],[[66115,58354],[-128,-245],[286,-40],[-148,-200],[117,-115]],[[66372,58219],[-257,135]],[[44737,57290],[-58,1708]],[[43715,58896],[66,-1711]],[[44679,58998],[-964,-102]],[[68652,58282],[-4,-98],[-569,54]],[[69002,57303],[-173,31],[-3,492],[-174,456]],[[45640,59082],[0,9]],[[45694,57383],[-54,1699]],[[45640,59091],[-961,-93]],[[43715,58896],[-1568,-186]],[[46603,59170],[-963,-88]],[[46652,57465],[-49,1705]],[[46615,59171],[-12,-1]],[[47580,59248],[-965,-77]],[[57329,59293],[-21,-230]],[[58510,58743],[-230,111],[-564,-6],[-3,280],[-96,168],[-288,-3]],[[58635,58462],[-94,3],[-31,278]],[[58535,57725],[-46,467],[146,270]],[[61598,58477],[-10,-915]],[[62429,58446],[-831,31]],[[62833,57471],[9,625],[-198,9],[8,337],[-223,4]],[[59246,59136],[-128,1],[-127,-284],[-73,-389],[-283,-2]],[[59567,59136],[-321,0]],[[59550,57683],[17,1453]],[[62426,59648],[45,-230],[-42,-972]],[[63065,59794],[-193,9],[-2,-171],[-444,16]],[[63200,58366],[-161,117],[26,1311]],[[62908,57467],[185,280],[98,338],[9,281]],[[64015,57364],[74,324],[11,501],[-95,70]],[[64014,58711],[-419,32],[-175,-46],[-220,-331]],[[64005,58259],[9,452]],[[60203,59127],[-636,9]],[[60300,59125],[-97,2]],[[60336,57643],[-55,30],[19,1452]],[[61160,59271],[-762,18],[-98,-164]],[[60914,57606],[1,571],[-67,170],[191,205],[3,261],[116,122],[2,336]],[[61163,59606],[-3,-335]],[[61540,58975],[3,284],[-192,6],[3,336],[-191,5]],[[61598,58477],[-58,498]],[[65112,58403],[-233,27],[-6,-226],[-868,55]],[[11743,51134],[-38,-16]],[[12883,51628],[-1140,-494]],[[72307,57021],[-272,-153]],[[72556,56472],[-249,549]],[[70501,58279],[31,-497],[-85,-282],[59,-188],[-246,-49]],[[70731,58258],[-230,21]],[[70910,56924],[-82,538],[-14,461],[-83,335]],[[78642,56465],[-109,-169],[-61,-1044],[-119,60]],[[79043,55756],[-140,418],[-158,61],[-103,230]],[[80493,55916],[119,-373],[-41,-127]],[[80919,56275],[-260,-302],[-166,-57]],[[81431,55945],[-408,187],[-104,143]],[[81687,55835],[-256,110]],[[81638,55145],[49,690]],[[76229,56670],[-135,-297]],[[76606,56672],[-377,-2]],[[76669,55959],[-63,713]],[[72493,57800],[-186,-779]],[[72931,57545],[-92,164],[-177,-34],[-169,125]],[[72954,57128],[-23,417]],[[66004,59076],[-451,60]],[[66115,58354],[72,213],[-145,185],[-38,324]],[[54680,60272],[6,-842],[-479,-3],[0,-333]],[[55062,60275],[-382,-3]],[[55165,59092],[2,1009],[-105,174]],[[76746,56967],[-140,-295]],[[77073,56528],[-293,184],[-34,255]],[[77414,56005],[-119,5],[-204,348],[-18,170]],[[71524,58426],[-314,-209],[-258,-23],[-162,272],[-59,-208]],[[71678,57886],[-154,540]],[[71506,57357],[172,529]],[[77605,56382],[129,-269]],[[78152,57171],[-547,-789]],[[78646,56683],[-69,-84],[-239,358],[-42,269],[-144,-55]],[[78642,56465],[4,218]],[[80027,56059],[-54,-212],[-154,-137],[-41,-270]],[[80493,55916],[-466,143]],[[89404,53291],[-156,-44],[-81,-436],[-6,-482]],[[89700,52667],[215,360],[-78,52],[-423,-240],[182,257],[129,47],[-321,148]],[[74993,58010],[-94,-316],[-375,-551]],[[75558,57348],[-168,279],[-270,186],[-127,197]],[[75350,56947],[208,401]],[[69097,57743],[-77,-416]],[[69791,57892],[-270,-158],[-424,9]],[[69854,57277],[-63,615]],[[68764,59328],[-71,7],[-41,-1053]],[[69141,59391],[-118,-92],[-259,29]],[[69150,59292],[-9,99]],[[69097,57743],[76,427],[-127,413],[-6,315],[159,28],[-49,366]],[[72358,58335],[-286,-43],[-394,-406]],[[72603,58266],[-245,69]],[[72493,57800],[110,466]],[[89404,53291],[150,16],[-154,294],[-340,-116],[-91,-298],[5,-590]],[[77512,56775],[-121,-178],[-318,-69]],[[77605,56382],[-93,393]],[[69885,58593],[-94,-701]],[[70482,58632],[-597,-39]],[[70501,58279],[-19,353]],[[58399,60574],[18,-1273],[93,-558]],[[58493,60576],[-94,-2]],[[58879,60526],[-386,50]],[[59197,60532],[-318,-6]],[[59246,59136],[63,168],[-3,437],[-125,343],[16,448]],[[73249,57938],[-87,-178],[-162,-22],[-69,-193]],[[73935,57946],[-94,-186],[-366,-124],[-226,302]],[[74186,57279],[-83,168],[-167,28],[-1,471]],[[75721,57851],[-163,-503]],[[76229,56670],[-237,508],[71,109],[-225,209],[-117,355]],[[82023,55761],[-336,74]],[[82371,55680],[-348,81]],[[82378,54919],[62,385],[-108,146],[39,230]],[[79790,56899],[-104,-94],[-135,-592]],[[79842,56698],[-52,201]],[[80082,56628],[-176,-103],[-64,173]],[[80027,56059],[146,134],[-91,435]],[[86419,55354],[-120,-256],[-247,-240],[-231,-113]],[[86694,53755],[-275,1599]],[[63960,59417],[41,-435],[118,-278],[-105,7]],[[64804,59228],[-14,119],[-830,70]],[[37327,58695],[30,-412]],[[39726,59433],[-1146,-141],[-588,-483],[-665,-114]],[[39690,57735],[20,377],[116,637],[-124,373],[24,311]],[[82578,55911],[-151,-304],[-56,73]],[[83186,55590],[-308,26],[11,112],[-311,183]],[[83106,54648],[80,942]],[[62185,59952],[-219,-258],[-260,24],[91,-378],[-257,-365]],[[62426,59648],[-241,304]],[[78839,56878],[-184,85],[-9,-280]],[[78966,56478],[-127,400]],[[79283,56071],[-317,407]],[[63349,59772],[-284,22]],[[63647,59765],[-298,7]],[[63960,59417],[-30,339],[-283,9]],[[83213,55934],[-27,-344]],[[84114,55750],[-901,184]],[[83998,54449],[116,1301]],[[84135,55965],[-21,-215]],[[84640,55681],[33,117],[-538,167]],[[84481,54293],[120,1281],[39,107]],[[52694,59922],[-381,-173],[5,-671]],[[53626,59938],[-932,-16]],[[53628,59098],[-2,840]],[[69590,59235],[-236,171],[-204,-114]],[[69885,58593],[9,91],[-299,292],[-5,259]],[[89030,54291],[-135,-36],[-41,287],[-152,-278],[-99,200],[-127,-277],[-226,111],[-65,-268],[-244,-189]],[[89105,54034],[-75,257]],[[88924,52838],[-14,368],[199,567],[-4,261]],[[85056,55607],[-416,74]],[[85021,54146],[35,1461]],[[85249,55529],[-193,78]],[[85444,54671],[109,249],[-172,570],[-132,39]],[[57447,60612],[-118,-1319]],[[58399,60574],[-291,51],[-661,-13]],[[91122,56184],[371,-443],[-55,-1201],[-71,-335]],[[91128,56203],[-6,-19]],[[91367,54205],[78,285],[58,1428],[-173,49],[-202,236]],[[90812,53371],[107,-2],[140,420],[-247,-418]],[[90436,54559],[-13,-648],[-45,-198],[156,-133],[29,-279],[151,112],[154,447],[78,416],[-106,75],[106,172],[-135,289],[-141,-220]],[[90670,54592],[-234,-33]],[[90590,52286],[177,467],[349,773],[-217,-330],[-95,-310],[-62,92],[-156,-689]],[[66930,58975],[41,-108],[-13,-688]],[[67451,59691],[-357,-205],[-64,-399],[-100,-112]],[[67827,59667],[-376,24]],[[67805,58620],[22,1047]],[[34340,60321],[189,-2652],[-565,-124]],[[34522,60691],[-54,-345],[-128,-25]],[[36231,61037],[-1709,-346]],[[36357,58966],[-126,2071]],[[36408,58160],[-271,-26],[-41,583],[208,98],[53,151]],[[40962,61125],[-151,-147],[-382,-1520],[-84,66],[-619,-91]],[[41495,59843],[-68,1313],[-465,-31]],[[66130,59438],[-126,-362]],[[66674,59465],[-126,-239],[-268,66],[-150,146]],[[66930,58975],[-145,455],[-111,35]],[[86567,55650],[-148,-296]],[[87150,54923],[-583,727]],[[87256,53764],[-106,1159]],[[76748,57130],[-2,-163]],[[77434,57530],[-300,-40],[-386,-360]],[[77512,56775],[-78,755]],[[75739,57898],[-18,-47]],[[75938,58214],[-199,-316]],[[76577,57755],[-92,200],[-321,-51],[-226,310]],[[76748,57130],[52,247],[-223,378]],[[77587,58198],[-45,-421],[-108,-247]],[[77587,58193],[0,5]],[[78087,57784],[-207,55],[-293,354]],[[78152,57171],[17,278],[-82,335]],[[73974,58660],[70,-468],[-109,-246]],[[73969,58682],[5,-22]],[[74008,58755],[-39,-73]],[[74008,58760],[0,-5]],[[74612,58657],[-604,103]],[[74835,58366],[-223,291]],[[74993,58010],[-158,356]],[[50771,60701],[17,-1695]],[[51730,60731],[-959,-30]],[[51744,59041],[-14,1690]],[[52688,60762],[-958,-31]],[[52694,59922],[-6,840]],[[50013,60331],[13,-1358]],[[50013,61337],[0,-1006]],[[50571,61362],[-558,-25]],[[50771,60701],[-191,-7],[-9,668]],[[48678,60260],[7,-773]],[[50013,60331],[-1335,-71]],[[53622,61105],[4,-1167]],[[54392,61110],[-770,-5]],[[54680,60272],[-286,-1],[-2,839]],[[55159,60273],[-97,2]],[[56058,60431],[-672,99],[-20,-260],[-207,3]],[[56157,59422],[-132,410],[95,376],[-62,223]],[[56310,61099],[-3,-669],[-249,1]],[[56886,61090],[-576,9]],[[56889,59075],[-3,2015]],[[57488,61075],[-602,15]],[[57447,60612],[41,463]],[[79549,57299],[-178,-691],[-259,-12],[-33,-198],[-113,80]],[[79790,56899],[-15,150],[-226,250]],[[87526,55542],[-125,-164],[-98,-351],[-153,-104]],[[88013,54822],[-76,-27],[-411,747]],[[87840,54151],[149,339],[24,332]],[[68007,59650],[-180,17]],[[68767,59440],[-700,65],[-60,145]],[[68764,59328],[3,112]],[[72863,58689],[-260,-423]],[[73227,58654],[-364,35]],[[73249,57938],[48,500],[-70,216]],[[61174,60328],[-11,-722]],[[61498,60601],[-320,6],[-4,-279]],[[62223,60577],[-725,24]],[[62185,59952],[-32,209],[70,416]],[[59836,60635],[-638,9],[-1,-112]],[[60219,60631],[-383,4]],[[60203,59127],[16,1504]],[[80934,57162],[-344,54],[-306,-301],[-202,-287]],[[80977,57039],[-43,123]],[[80919,56275],[58,764]],[[60474,60626],[-255,5]],[[61174,60328],[-382,15],[2,279],[-320,4]],[[71461,59437],[24,-318],[88,-13],[-49,-680]],[[71550,59515],[-89,-78]],[[72268,59600],[-181,-93],[-99,193],[-217,-232],[-221,47]],[[72320,59313],[-52,287]],[[72358,58335],[-38,978]],[[79062,57445],[-223,-567]],[[79336,57819],[-192,-407],[-82,33]],[[79549,57299],[-76,361],[-137,159]],[[73378,58767],[-151,-113]],[[73974,58660],[-375,-41],[-221,148]],[[85351,56614],[-155,-60],[53,-1025]],[[85740,56741],[-389,-127]],[[86419,55354],[-325,535],[-354,852]],[[88362,55041],[-349,-219]],[[88954,54945],[-227,263],[-365,-167]],[[89030,54291],[-76,654]],[[78259,58184],[-172,-400]],[[79062,57445],[-183,102],[-482,573],[-138,64]],[[82069,56522],[-46,-761]],[[82069,56523],[0,-1]],[[82547,56809],[-340,-295],[-138,9]],[[82578,55911],[59,482],[-129,103],[39,313]],[[45587,60746],[53,-1655]],[[45587,60769],[0,-23]],[[46568,60854],[-981,-85]],[[46615,59171],[-47,1683]],[[47539,60928],[-971,-74]],[[47564,59922],[-25,1006]],[[44622,60657],[57,-1659]],[[45587,60746],[-965,-89]],[[42073,60373],[20,-450]],[[43652,60541],[-1579,-168]],[[43715,58896],[-63,1645]],[[81376,56997],[99,-329],[29,-401],[-73,-322]],[[81730,57805],[35,-298],[-148,-268],[-124,-2],[-117,-240]],[[81774,58028],[-44,-223]],[[82055,57879],[-225,27],[-56,122]],[[82141,57850],[-86,29]],[[82069,56523],[-49,708],[121,619]],[[43651,60570],[1,-29]],[[44622,60672],[-971,-102]],[[44622,60657],[0,15]],[[70485,59052],[-3,-420]],[[71290,59478],[-805,-426]],[[71290,59479],[0,-1]],[[71461,59437],[-171,42]],[[81376,56997],[-71,-173],[-328,215]],[[75739,57898],[-117,42],[-70,495],[-104,60],[-140,373]],[[74958,58621],[-123,-255]],[[75172,58997],[-15,-240],[-199,-136]],[[75236,58985],[-64,12]],[[75308,58868],[-72,117]],[[75308,58868],[0,0]],[[76903,58918],[-35,-463],[-82,-63],[-209,-637]],[[77595,58270],[-396,606],[-296,42]],[[77587,58198],[8,72]],[[77587,58198],[0,0]],[[83129,57585],[-73,-271],[-251,-311],[-31,-166],[-227,-28]],[[83334,57520],[-205,65]],[[83213,55934],[121,1586]],[[47520,61686],[19,-758]],[[48675,61430],[-381,-25],[-8,336],[-766,-55]],[[48678,60260],[-3,1170]],[[34340,60321],[-571,-117],[12,-166],[-189,-41],[-13,167],[-1316,-296],[-104,1328],[-1038,-243]],[[36381,58583],[23,-286]],[[36381,58583],[-4,64]],[[36357,58966],[150,-242],[-130,-77]],[[36191,61709],[40,-672]],[[37147,61875],[-956,-166]],[[37327,58695],[-180,3180]],[[65008,60349],[-45,-1140]],[[65042,61354],[-34,-1005]],[[65302,61341],[-260,13]],[[65468,61500],[-33,-288],[-133,129]],[[65491,61469],[-23,31]],[[65709,60899],[-236,-11],[18,581]],[[66130,59438],[-214,150],[115,193],[-198,262],[-233,104],[64,301],[124,81],[-173,191],[94,179]],[[80182,58110],[-129,-530],[-238,-282],[117,-322],[-90,-278]],[[80415,58032],[-115,-92],[-118,170]],[[80695,58018],[-280,14]],[[80700,58000],[-5,18]],[[80934,57162],[-234,838]],[[66660,59711],[14,-246]],[[67194,60128],[-366,-195],[-168,-222]],[[67451,59691],[44,47],[-210,461],[-91,-71]],[[63660,60445],[-13,-680]],[[65008,60349],[-1348,96]],[[89690,53795],[319,-362],[192,-53],[174,1129],[-214,45]],[[89750,54694],[-57,-340],[54,-299],[-57,-260]],[[90161,54554],[-45,400],[-154,13],[13,-324],[-225,51]],[[69740,60100],[-164,-188],[14,-677]],[[70302,59821],[-206,203],[-236,-113],[-120,189]],[[70485,59052],[-8,488],[-175,281]],[[89105,54034],[507,-413],[78,174]],[[89319,54818],[-365,127]],[[89750,54694],[-431,124]],[[36377,58647],[4,-64]],[[72727,59409],[-183,85],[-224,-181]],[[72863,58689],[-153,435],[17,285]],[[79582,58446],[-237,-189],[-9,-438]],[[80182,58110],[-22,134],[-227,126],[-62,-90],[-289,166]],[[66434,60652],[-227,-243],[-243,28],[-209,271],[-46,191]],[[66660,59711],[-83,-10],[-143,951]],[[52680,61764],[8,-1002]],[[53612,61784],[-932,-20]],[[53622,61105],[-10,679]],[[62318,61229],[-12,-684],[-83,32]],[[62700,61213],[-382,16]],[[63349,59772],[-80,362],[-169,316],[-17,748],[-383,15]],[[83861,57344],[-527,176]],[[84239,57218],[-378,126]],[[84135,55965],[104,1253]],[[75346,59041],[-110,-56]],[[75953,58965],[-196,-130],[-412,99],[1,107]],[[75938,58214],[14,355],[81,169],[-80,227]],[[63132,61530],[-428,22],[-4,-339]],[[63697,61808],[-383,21],[-12,-339],[-170,40]],[[63686,61467],[11,341]],[[63660,60445],[26,1022]],[[76401,59439],[-88,-327],[-150,86],[-210,-233]],[[76416,59448],[-15,-9]],[[76903,58918],[-192,74],[-295,456]],[[84603,57098],[-364,120]],[[85276,56876],[-176,-235],[-166,-59],[-331,516]],[[85351,56614],[-75,262]],[[37911,62003],[-764,-128]],[[40037,61950],[13,-281],[-2101,-333],[-38,667]],[[40962,61125],[-27,572],[-397,-61],[4,-84],[-505,398]],[[86853,56125],[-115,-32],[-171,-443]],[[87285,56033],[-432,92]],[[87468,55660],[-183,373]],[[87526,55542],[-58,118]],[[82069,56523],[0,0]],[[82929,57647],[-788,203]],[[83129,57585],[-200,62]],[[54773,62121],[-192,0],[0,-675],[-189,0],[0,-336]],[[55256,61446],[-197,1],[-1,338],[-94,2],[0,334],[-191,0]],[[55159,60273],[0,503],[96,4],[1,666]],[[55924,62437],[-5,-997],[-663,6]],[[56453,61790],[-198,361],[-150,407],[-181,-121]],[[56310,61099],[-7,433],[150,258]],[[72953,59894],[-139,-165],[-87,-320]],[[73435,59777],[-482,117]],[[73523,59755],[-88,22]],[[73378,58767],[58,675],[87,313]],[[70427,60631],[-13,-397],[-120,-123],[8,-290]],[[70587,60651],[-160,-20]],[[71032,60642],[-308,-98],[-137,107]],[[71290,59479],[-51,47],[-30,667],[-177,449]],[[68728,60965],[-22,-404],[80,-321],[-19,-800]],[[69124,61029],[-74,-88],[-239,171],[-83,-147]],[[69149,60905],[-25,124]],[[69141,59391],[-90,346],[11,433],[125,339],[-102,252],[64,144]],[[69659,60600],[-455,157],[-55,148]],[[69740,60100],[-81,500]],[[87963,56380],[-88,-329],[-210,-123],[-197,-268]],[[88152,56656],[-189,-276]],[[88472,56238],[-96,296],[-71,-84],[-153,206]],[[88576,55682],[-121,164],[17,392]],[[88589,55647],[-13,35]],[[88362,55041],[100,483],[127,123]],[[81730,57805],[-1030,195]],[[78587,59097],[-109,-165],[28,-374],[-247,-374]],[[79429,58718],[-129,-94],[-50,153],[-351,213],[-193,-64],[-119,171]],[[79582,58446],[-153,272]],[[74299,59893],[20,-440],[293,-796]],[[74525,60041],[-226,-148]],[[74958,58621],[-54,200],[-19,579],[-137,40],[27,228],[-83,222],[-99,-88],[-68,239]],[[73754,59578],[-231,177]],[[74008,58760],[-21,210],[-233,608]],[[74008,58755],[-39,-73]],[[68030,60424],[-23,-774]],[[68514,61012],[-19,-282],[-257,-39],[-208,-267]],[[68728,60965],[-214,47]],[[66513,61329],[-15,-552],[-64,-125]],[[67036,61289],[-523,40]],[[67220,61134],[-187,18],[3,137]],[[67194,60128],[26,1006]],[[86121,57420],[10,-88],[-297,-531],[-94,-60]],[[86553,57396],[-324,191],[-108,-167]],[[86853,56125],[-89,686],[23,269],[-234,316]],[[48671,61597],[4,-167]],[[50007,61673],[-1336,-76]],[[50013,61337],[-6,336]],[[15655,56609],[62,24],[493,-3651]],[[15002,59816],[132,-245],[289,-938],[99,-1034],[133,-990]],[[15165,60178],[-163,-362]],[[21095,61492],[-1593,-523],[-19,165],[-1584,-564],[-1319,-489],[-13,112],[-534,-205],[-256,-210],[-327,-129],[-285,529]],[[21718,60854],[-262,420],[-361,218]],[[21133,57921],[-50,525],[93,409],[118,248],[15,465],[109,606],[300,680]],[[10482,53809],[100,-638],[-182,-137],[-191,-468],[137,-374],[-39,-352],[-162,-123],[-180,-778],[-190,-205],[-27,-535]],[[12506,55003],[-112,-46],[-194,-378],[-130,-59],[-510,-786],[-222,204],[-288,27],[14,367],[-231,-453],[-351,-70]],[[11743,51134],[-99,647],[187,88],[-50,321],[105,396],[203,96],[-47,329],[122,51],[-47,324],[249,118],[-47,325],[201,70],[-64,333],[149,109],[-99,662]],[[12561,55028],[-55,-25]],[[13492,55864],[-156,-162],[-474,-208],[-20,-265],[-281,-201]],[[15655,56609],[-1391,-543],[-779,-324],[7,122]],[[67647,61094],[-427,40]],[[68030,60424],[-93,391],[-290,279]],[[60419,61629],[61,-335],[-6,-668]],[[61093,61952],[-3,-334],[-671,11]],[[61507,61943],[-414,9]],[[61498,60601],[9,1342]],[[77771,58933],[-40,-598],[-136,-65]],[[78314,59673],[-162,-278],[-381,-462]],[[78587,59097],[-122,437],[-151,139]],[[58879,60526],[-4,1515]],[[58212,61797],[88,-499],[-95,-2],[0,-335],[160,0],[128,-385]],[[58307,62686],[-97,-1],[2,-888]],[[58875,62041],[-179,-203],[0,451],[-193,-16],[-1,346],[-195,67]],[[74163,60325],[-353,-468],[-56,-279]],[[74299,59893],[-136,432]],[[59620,62193],[-191,-41],[-52,-300],[-502,189]],[[59836,60635],[2,506],[-96,0],[5,502],[-131,1],[4,549]],[[57571,62002],[-83,-927]],[[58212,61797],[-114,-32],[11,255],[-295,157],[-163,-374],[-80,199]],[[74682,60481],[-157,-440]],[[74821,60211],[-139,270]],[[75172,58997],[-291,864],[-60,350]],[[39959,63342],[78,-1392]],[[40254,64056],[-328,-47],[33,-667]],[[40636,64112],[-382,-56]],[[41960,62939],[-435,-56],[-18,343],[-191,-27],[-16,334],[-191,-27],[-16,334],[-381,-55],[-76,327]],[[41998,62059],[-38,880]],[[42073,60373],[-75,1686]],[[89068,56682],[-596,-444]],[[89558,56420],[-15,167],[-369,204],[-106,-109]],[[88576,55682],[288,361],[55,-72],[593,210],[46,239]],[[89632,55232],[32,122],[-235,97],[143,524],[-255,-71],[-498,-42],[-230,-215]],[[89319,54818],[118,294],[195,120]],[[59658,62230],[-38,-37]],[[60358,62758],[-350,158],[-197,-511],[-153,-175]],[[60419,61629],[14,1117],[-75,12]],[[50954,62045],[-380,-13],[-3,-670]],[[51718,62233],[-307,0],[-181,-176],[-276,-12]],[[51719,62229],[-1,4]],[[51721,62073],[-2,156]],[[51730,60731],[-9,1342]],[[52677,62100],[-956,-27]],[[52680,61764],[-3,336]],[[61762,61929],[-255,14]],[[62318,61229],[3,302],[-95,81],[5,300],[-469,17]],[[71290,59479],[0,0]],[[71304,61191],[-152,-171],[-120,-378]],[[71693,60733],[3,146],[-243,329],[-149,-17]],[[71550,59515],[22,967],[121,251]],[[64655,61381],[-197,-8],[-772,94]],[[65042,61354],[-387,27]],[[90714,56810],[80,-203],[270,-374],[-350,577]],[[90670,54592],[43,233],[-150,315],[-37,402],[-116,261],[-271,158],[-291,-244],[-80,249],[-136,-116],[-132,-325],[200,-80],[-68,-213]],[[90161,54554],[232,103],[43,-98]],[[72296,60445],[-28,-845]],[[72308,60749],[-12,-304]],[[72944,60808],[-238,-171],[-219,-33],[-179,145]],[[72953,59894],[-9,914]],[[71828,60750],[-135,-17]],[[72296,60445],[-313,409],[-155,-104]],[[76957,60032],[124,-631],[-107,48],[-558,-1]],[[77552,59698],[-199,153],[-396,181]],[[77771,58933],[-94,-15],[-188,266],[63,514]],[[75354,59061],[-8,-20]],[[75354,59061],[2,41]],[[75492,60325],[140,-205],[-16,-260],[-260,-758]],[[75879,60549],[-387,-224]],[[76327,60122],[-160,232],[-164,-62],[-124,257]],[[76401,59439],[-92,252],[18,431]],[[69931,60886],[-141,-265],[-131,-21]],[[70427,60631],[-280,-7],[8,143],[-224,119]],[[87404,56789],[-119,-756]],[[87963,56380],[-330,417],[-49,-109],[-180,101]],[[65433,61523],[-131,-182]],[[65468,61500],[-35,23]],[[66231,61467],[-131,-111],[-134,104],[-475,9]],[[66513,61329],[-282,138]],[[75130,60572],[-309,-361]],[[75492,60325],[-304,132],[-58,115]],[[75356,59102],[-2,-41]],[[56883,62304],[-51,-182],[-280,-154],[-99,-178]],[[57568,62072],[-109,303],[-175,-104],[-113,151],[-176,-249],[-112,131]],[[57569,62065],[-1,7]],[[57571,62002],[-2,63]],[[53613,62022],[-1,-238]],[[53941,62452],[2,-682],[-170,290],[-160,-38]],[[54773,62456],[-832,-4]],[[54773,62121],[0,335]],[[84982,57806],[-176,-120],[-201,-404],[-2,-184]],[[85276,56876],[-294,930]],[[43579,62248],[-1581,-189]],[[43651,60570],[-72,1678]],[[44563,62353],[59,-1681]],[[45533,62450],[-970,-97]],[[45587,60769],[-54,1681]],[[46523,62533],[-990,-83]],[[46568,60854],[-45,1679]],[[47497,62608],[-974,-75]],[[47520,61686],[-23,922]],[[44563,62353],[-984,-105]],[[79462,59002],[-33,-284]],[[80052,59653],[-23,-267],[-377,-491],[-190,107]],[[80223,59622],[-171,31]],[[80414,59587],[-191,35]],[[80415,58032],[56,851],[-57,704]],[[86845,57681],[-292,-285]],[[87435,57533],[-92,149],[-285,-84],[-213,83]],[[87404,56789],[31,744]],[[67786,61772],[-139,-678]],[[68518,61158],[-434,77],[-126,222],[-60,301],[-112,14]],[[68514,61012],[4,146]],[[85183,58195],[-256,-219],[55,-170]],[[86014,57726],[-377,64],[-85,142],[-369,263]],[[86121,57420],[-107,306]],[[81138,59459],[-724,128]],[[81208,59446],[-70,13]],[[80890,58531],[300,542],[18,373]],[[80695,58018],[195,513]],[[81790,58363],[-900,168]],[[81774,58028],[16,335]],[[73574,60573],[110,-358],[-249,-438]],[[73926,61173],[-152,-437],[-200,-163]],[[74163,60325],[-237,848]],[[54769,62988],[4,-532]],[[55721,62392],[-258,323],[-275,147],[-142,-24],[-158,185],[-119,-35]],[[55924,62437],[-203,-45]],[[49988,63085],[19,-1412]],[[49975,64018],[13,-933]],[[50934,64059],[-959,-41]],[[50954,62045],[-20,2014]],[[61773,63070],[-11,-1141]],[[62351,63168],[-130,37],[-252,-186],[-196,51]],[[62958,62893],[-216,10],[5,255],[-244,-124],[-152,134]],[[63132,61530],[-165,370],[130,507],[-82,79],[-57,407]],[[73032,61045],[-88,-237]],[[73574,60573],[-263,166],[-38,293],[-241,13]],[[23172,61267],[494,-4583]],[[23042,62472],[130,-1205]],[[26373,63463],[-414,-117],[-780,-413],[-268,567],[-801,-699],[-1068,-329]],[[26437,61639],[-10,125],[-210,146],[-182,867],[424,120],[-86,566]],[[78067,60862],[-255,-555],[-24,-302],[-92,60],[-144,-367]],[[78068,60861],[-1,1]],[[78238,60718],[-170,143]],[[78314,59673],[-64,639],[-106,327],[94,79]],[[81741,59362],[-10,-481],[59,-518]],[[81995,59575],[-64,-106],[-168,290],[-22,-397]],[[82141,59827],[-146,-252]],[[82583,58894],[-331,773],[-111,160]],[[82055,57879],[299,849],[229,166]],[[84270,58582],[-183,-288],[-226,-950]],[[84595,58956],[-205,-26],[-120,-348]],[[85187,58265],[-249,-67],[-169,242],[-174,516]],[[85183,58195],[4,70]],[[83455,58901],[-73,-354],[31,-525],[-284,-437]],[[84270,58582],[-431,50],[-384,269]],[[82672,58964],[-89,-70]],[[82929,57647],[-257,1317]],[[47483,63191],[14,-583]],[[47686,63209],[-203,-18]],[[48561,62941],[-676,-51],[-8,333],[-191,-14]],[[48650,62938],[-89,3]],[[48671,61597],[-21,1341]],[[83075,58803],[-280,216],[-123,-55]],[[83455,58901],[-100,-170],[-80,202],[-200,-130]],[[78978,60085],[-128,-587],[-263,-401]],[[79362,59812],[-384,273]],[[79462,59002],[-117,446],[17,364]],[[69269,62502],[-49,-1112],[-96,-361]],[[69952,62411],[-683,91]],[[69931,60886],[44,1309],[-23,216]],[[53329,63948],[8,-1964],[276,38]],[[53847,63913],[-74,152],[-83,-177],[-164,-52],[-100,278],[-97,-166]],[[53941,62452],[-2,670],[-89,-1],[-3,792]],[[76926,60160],[-232,22],[-218,198],[-149,-258]],[[76957,60032],[-31,128]],[[49988,63085],[-230,-85],[-1108,-62]],[[52664,63814],[13,-1714]],[[53049,63696],[-156,216],[-229,-98]],[[53329,63948],[-81,-180],[-199,-72]],[[60104,63134],[254,-376]],[[60982,62942],[-161,152],[-717,40]],[[61093,61952],[1,361],[-74,176],[57,213],[-95,240]],[[70646,62319],[-694,92]],[[70587,60651],[59,1668]],[[55919,63340],[-1,-393],[-192,2],[-5,-557]],[[56684,63329],[-765,11]],[[56883,62304],[1,466],[-204,6],[4,553]],[[73810,61832],[145,-253],[-29,-406]],[[74007,61793],[-197,39]],[[74186,61752],[-179,41]],[[74700,61641],[-514,111]],[[74682,60481],[-102,641],[120,519]],[[70670,62317],[-24,2]],[[71349,62234],[-679,83]],[[71304,61191],[45,1043]],[[57568,62072],[1,-7]],[[57559,63788],[9,-1716]],[[58109,63132],[-148,84],[-9,427],[-393,145]],[[58307,62686],[-1,280],[-197,-3],[0,169]],[[63716,62602],[-19,-794]],[[64692,62525],[-976,77]],[[64655,61381],[37,1144]],[[63152,63558],[-7,-534],[-175,12],[-12,-143]],[[63539,63179],[-258,89],[4,280],[-133,10]],[[63716,62602],[12,567],[-189,10]],[[64894,63431],[-18,-939],[-184,33]],[[64904,63705],[-10,-274]],[[65090,63582],[-186,123]],[[65063,63060],[116,180],[-89,342]],[[65433,61523],[-122,507],[143,102],[-14,408],[-148,33],[-59,353],[-146,-46],[-24,180]],[[67075,62839],[-39,-1550]],[[67403,62797],[-328,42]],[[67755,62751],[-352,46]],[[67820,62742],[-65,9]],[[67786,61772],[34,970]],[[87693,58114],[-128,-497],[-130,-84]],[[88054,57126],[-102,-23],[68,256],[-125,438],[-202,317]],[[88152,56656],[-98,470]],[[58903,63411],[-670,-3],[-124,-276]],[[59658,62230],[4,401],[-322,5],[-126,277],[-320,53],[9,445]],[[78430,60561],[-192,157]],[[78665,60459],[-235,102]],[[78978,60085],[-313,374]],[[68555,62643],[-37,-1485]],[[68588,62639],[-33,4]],[[68882,62597],[-294,42]],[[69269,62502],[-387,95]],[[81741,59362],[-533,84]],[[88763,57501],[119,-147],[148,308],[262,188],[165,19],[82,-178],[65,202]],[[88924,58503],[-51,-95],[-110,-907]],[[89604,57893],[-107,238],[-217,83],[-120,175],[-236,114]],[[88730,57515],[-104,-4],[-572,-385]],[[89068,57335],[-182,-28],[-156,208]],[[89068,56682],[-96,497],[96,156]],[[72253,61557],[-197,-477],[-221,-165],[-7,-165]],[[72308,60749],[-55,808]],[[66123,62949],[-1060,111]],[[66267,62932],[-144,17]],[[66231,61467],[36,1465]],[[79607,59731],[-245,81]],[[80052,59653],[-445,78]],[[66796,62876],[-529,56]],[[67075,62839],[-279,37]],[[68555,62643],[-735,99]],[[56453,64787],[-4,-672],[113,-2],[-3,-331],[128,-6],[-3,-447]],[[56680,65452],[-5,-669],[-222,4]],[[57550,65430],[-870,22]],[[57554,64577],[-4,853]],[[57559,63788],[-5,789]],[[50932,64728],[2,-669]],[[51698,64754],[-766,-26]],[[51706,64084],[-8,670]],[[51718,62233],[-12,1851]],[[52664,63814],[-361,-134],[-19,-433],[-243,-483],[-128,-129],[-35,-270],[-159,-136]],[[71443,62219],[-94,15]],[[72283,62078],[-840,141]],[[72253,61557],[30,521]],[[61014,63557],[-100,-153],[68,-462]],[[61776,63280],[-193,5],[3,334],[-336,7],[-63,117],[-173,-186]],[[61773,63070],[3,210]],[[72299,62075],[-16,3]],[[73105,61942],[-806,133]],[[73032,61045],[73,897]],[[75002,61580],[-302,61]],[[75068,61566],[-66,14]],[[75130,60572],[26,266],[-88,728]],[[33394,62944],[-2392,-539]],[[34337,63137],[-943,-193]],[[34686,61741],[-245,-53],[-104,1449]],[[34522,60691],[164,1050]],[[53043,64118],[-1337,-34]],[[53049,63696],[-6,422]],[[76889,60527],[37,-367]],[[77396,61044],[-148,-142],[-217,-425],[-142,50]],[[78067,60862],[-671,182]],[[89558,56420],[1,-215],[233,133],[8,216],[-223,260],[162,40],[-59,319],[-267,475],[-83,52],[-257,-199],[-5,-166]],[[73573,61870],[-468,72]],[[73810,61832],[-237,38]],[[86393,59132],[-320,-419],[-91,-377],[32,-610]],[[86949,60139],[-180,-401],[-376,-606]],[[87131,59420],[-182,719]],[[86845,57681],[150,1076],[-26,656],[162,7]],[[58909,64467],[-6,-1056]],[[59484,64449],[-575,18]],[[59676,64325],[-192,124]],[[60104,63134],[-281,456],[-154,397],[7,338]],[[54572,64467],[6,-1086],[191,-393]],[[54571,64802],[1,-335]],[[55338,65133],[-384,3],[0,-334],[-383,0]],[[55624,64796],[1,334],[-287,3]],[[55919,63340],[0,112],[-285,4],[-10,1340]],[[75886,61395],[-7,-846]],[[76231,61325],[-345,70]],[[76456,61277],[-225,48]],[[76889,60527],[-182,88],[-251,662]],[[53999,64465],[2,-542],[-154,-10]],[[54572,64467],[-573,-2]],[[75346,61507],[-278,59]],[[75886,61395],[-540,112]],[[85388,59066],[-134,-305],[-67,-496]],[[85675,59442],[-128,-267],[-159,-109]],[[86393,59132],[-619,230],[-99,80]],[[87806,58212],[-113,-98]],[[88797,58617],[-244,-470],[-169,111],[-269,-135],[-309,89]],[[88797,58616],[0,1]],[[88924,58503],[-127,113]],[[88730,57515],[33,-14]],[[35848,62303],[-33,-135],[-453,-98],[-75,126],[-546,-108],[-55,-347]],[[36191,61709],[-21,331],[169,31],[-19,320],[-472,-88]],[[37718,64661],[58,-997],[41,8],[94,-1669]],[[38485,64786],[-767,-125]],[[39959,63342],[-382,-56],[-17,333],[-191,-27],[-17,331],[-813,-123],[-54,986]],[[79242,61287],[-154,-724],[-117,-145],[-306,41]],[[79661,62488],[-214,-231],[-122,-399],[-3,-397],[-80,-174]],[[79865,61264],[-99,797],[20,194],[-125,233]],[[79607,59731],[94,1321],[164,212]],[[83139,60277],[-64,-1474]],[[83843,60103],[-704,174]],[[83847,60102],[-4,1]],[[83455,58901],[167,178],[116,-147],[116,249],[98,523],[-105,398]],[[84873,59673],[-74,-451],[-204,-266]],[[85388,59066],[-232,541],[-283,66]],[[82701,60387],[-421,108],[-13,-443],[-126,-225]],[[83139,60277],[-438,110]],[[80223,59622],[298,903],[85,56]],[[80456,61858],[-104,-6],[-323,-310],[-164,-278]],[[80606,60581],[-104,319],[-46,958]],[[87906,59170],[-775,250]],[[87806,58212],[63,164],[37,794]],[[41925,63734],[35,-795]],[[42865,63850],[-940,-116]],[[43513,63922],[-648,-72]],[[43579,62248],[-66,1674]],[[81138,59459],[-36,470],[-112,31],[-2,387],[100,394]],[[81088,60741],[-54,-92],[-428,-68]],[[45473,64117],[60,-1667]],[[45738,64141],[-265,-24]],[[46473,64206],[-735,-65]],[[46523,62533],[-50,1673]],[[46700,64225],[-227,-19]],[[47456,64287],[-756,-62]],[[47483,63191],[-27,1096]],[[43823,63953],[-310,-31]],[[44494,64025],[-671,-72]],[[44563,62353],[-69,1672]],[[84278,59981],[-431,121]],[[84595,58956],[-186,267],[54,293],[-185,465]],[[44780,64054],[-286,-29]],[[45473,64117],[-693,-63]],[[81056,60818],[32,-77]],[[82099,60541],[-1043,277]],[[81995,59575],[125,552],[-21,414]],[[76580,61249],[-124,28]],[[77276,61076],[-696,173]],[[77396,61044],[-120,32]],[[63645,63691],[-101,-163],[-5,-349]],[[64894,63431],[-1253,89],[4,171]],[[48834,64084],[-125,-196],[-22,-593],[-126,-354]],[[49081,64809],[96,-241],[-177,-14],[10,-542],[-176,72]],[[49583,65003],[-319,-17],[3,-167],[-186,-10]],[[49975,64018],[-375,-21],[-17,1006]],[[90335,57689],[273,-833],[-7,174],[-266,659]],[[89604,57893],[-17,-269],[300,-268],[95,-194],[27,427],[104,-161],[184,-33],[-140,462],[-43,-102],[-115,660],[-119,72],[-130,-328],[-28,277],[-176,-26],[122,172],[-357,91],[-317,312],[-170,-301]],[[88824,58684],[-27,-67]],[[48061,64413],[-93,-175],[-6,-677],[-284,-19],[8,-333]],[[48834,64084],[-289,18],[-41,337],[-443,-26]],[[10632,57755],[385,30],[77,406],[-293,58],[-169,-494]],[[10286,57484],[188,-92],[68,241],[-256,-149]],[[11230,57785],[293,133],[239,269],[119,-101],[-14,221],[-316,13],[-226,-126],[-95,-409]],[[12213,56963],[-136,-222],[-557,-207],[-202,-305],[-225,-150],[-552,-156],[-76,-324],[-201,-253],[150,-508],[-36,-204],[101,-314],[-76,-261],[79,-250]],[[12561,55028],[-237,1597],[-111,338]],[[60063,64311],[-387,14]],[[60667,63963],[-608,15],[4,333]],[[61014,63557],[-188,179],[-189,8],[30,219]],[[58512,64790],[-162,-98],[-546,-1],[0,-112],[-250,-2]],[[58909,64467],[-290,137],[-107,186]],[[62634,65260],[73,-313],[-26,-289],[-107,-128],[-13,-951],[-200,8],[-10,-419]],[[63173,64903],[-395,15],[7,335],[-151,7]],[[63152,63558],[15,947],[-131,8],[5,224],[132,166]],[[78666,62189],[-71,-406],[-66,-3],[-121,-1019],[22,-200]],[[79242,61287],[-497,691],[-79,211]],[[61991,65280],[-12,-508],[-152,4],[53,-417],[-14,-1084],[-90,5]],[[62585,65261],[-594,19]],[[62634,65260],[-49,1]],[[82235,61586],[-67,-326],[45,-264],[-114,-455]],[[82263,61911],[-28,-325]],[[83055,61079],[-237,280],[63,201],[-375,196],[-28,-224],[-215,379]],[[82701,60387],[354,692]],[[56453,64787],[-829,9]],[[77713,62049],[149,-658],[170,-226],[36,-304]],[[77747,62155],[-34,-106]],[[78217,62632],[-123,-226],[-133,-12],[-214,-239]],[[78324,62773],[-107,-141]],[[78440,62791],[-116,-18]],[[78666,62189],[-226,602]],[[35731,63948],[19,-314],[-95,-16],[97,-1333],[96,18]],[[36585,64800],[-896,-163],[42,-689]],[[37718,64661],[-19,332],[-1114,-193]],[[84751,60523],[-473,-542]],[[84873,59673],[54,241],[-176,609]],[[47444,65002],[12,-715]],[[47720,65231],[-181,-294],[-95,65]],[[48061,64413],[-18,833],[-323,-15]],[[61596,65291],[-4,-336],[-191,6],[0,-166],[-180,6],[0,-173],[-200,-54],[-1,-279],[-192,1],[0,-336],[-161,3]],[[61666,65289],[-70,2]],[[61991,65280],[-325,9]],[[70670,62317],[31,702],[-72,234]],[[69086,62967],[-204,-370]],[[70320,63141],[-164,-91],[-327,264],[-115,186],[-288,-239],[-72,-239],[-268,-55]],[[70629,63253],[-151,-137],[-158,25]],[[63786,65724],[-97,-58],[-141,-368],[-64,48],[-154,-450],[-157,7]],[[63758,64535],[15,672],[99,-4],[11,514],[-97,7]],[[63645,63691],[10,509],[97,-5],[6,340]],[[77140,61765],[-24,-211],[160,-478]],[[77713,62049],[-141,-86],[-229,36],[-84,-249],[-119,15]],[[70927,63486],[-211,-250],[-87,17]],[[71528,63911],[-235,-83],[-366,-342]],[[71443,62219],[85,1692]],[[68588,62639],[37,921]],[[67985,63642],[-63,7],[-17,-391],[-128,17],[-22,-524]],[[68625,63560],[-640,82]],[[69086,62967],[-19,1202]],[[68745,64671],[-53,-1062],[-67,-49]],[[69060,64629],[-315,42]],[[69067,64169],[-7,460]],[[67339,64336],[-35,-833],[121,-183],[-22,-523]],[[67982,64261],[-643,75]],[[67985,63642],[-3,619]],[[66123,62949],[34,857]],[[65297,64082],[-23,-521],[-184,21]],[[66157,63806],[-338,35],[-224,270],[-163,-172],[-135,143]],[[67055,64429],[-96,13],[-43,-1004],[-97,11],[-23,-573]],[[67339,64336],[-284,93]],[[66290,64631],[-21,-506],[-97,10],[-15,-329]],[[67068,64765],[-429,-174],[-349,40]],[[67055,64429],[13,336]],[[76918,61930],[-106,-446],[-176,-12],[-56,-223]],[[77094,61862],[-176,68]],[[77140,61765],[-46,97]],[[71965,63856],[-248,-103],[-189,158]],[[72378,63577],[-19,352],[-280,158],[-114,-231]],[[72358,63580],[20,-3]],[[72299,62075],[-7,1390],[66,115]],[[73573,61870],[70,469]],[[72378,63577],[-20,3]],[[72876,63968],[-156,-147],[-38,-295],[-304,51]],[[73643,62339],[-72,123],[-237,849],[-361,624],[-97,33]],[[75346,61507],[41,507]],[[74912,62968],[-67,-163],[137,-134],[-40,-306],[77,-353],[-17,-432]],[[75395,63067],[-483,-99]],[[75387,62014],[74,103],[-109,402],[43,548]],[[76215,62762],[-266,-679],[-203,-141],[-359,72]],[[76233,62816],[-18,-54]],[[76277,62632],[-44,184]],[[76231,61325],[-77,154],[147,223],[-39,315],[89,3],[-74,612]],[[74459,62541],[11,-204],[126,-24],[104,-672]],[[74668,63062],[-26,-372],[-213,41],[30,-190]],[[74912,62968],[-244,94]],[[74459,62541],[-105,-9],[-21,-303],[-113,23],[-34,-500]],[[76801,62231],[-157,-38],[-146,410],[-221,29]],[[76918,61930],[-117,301]],[[88318,60130],[-144,-186],[-268,-774]],[[88824,58684],[102,194],[-295,735],[-171,-130],[96,-215],[-137,-278],[-54,165],[134,189],[-128,89],[209,289],[-262,408]],[[88797,58617],[0,0]],[[73791,63227],[-148,-888]],[[74007,61793],[-117,609],[19,278],[-118,547]],[[73812,63359],[-21,-132]],[[74573,63217],[-761,142]],[[74643,63204],[-70,13]],[[74668,63062],[-25,142]],[[53039,64957],[4,-839]],[[53228,65463],[1,-336],[-191,-3],[1,-167]],[[53800,65472],[-572,-9]],[[53999,64465],[-1,336],[-192,-1],[-6,672]],[[35731,63948],[-611,-468],[-199,-229],[-584,-114]],[[84775,60552],[-24,-29]],[[85581,61560],[-806,-1008]],[[85584,61564],[-3,-4]],[[85871,60758],[-132,174],[-155,632]],[[85675,59442],[230,497],[-34,819]],[[41849,65441],[-1271,-171],[58,-1158]],[[41851,65402],[-2,39]],[[41925,63734],[-74,1668]],[[80857,61991],[-401,-133]],[[81268,62036],[-195,245],[-216,-290]],[[81242,61741],[26,295]],[[81056,60818],[186,923]],[[64612,64471],[-854,64]],[[64904,63705],[-139,-90],[66,469],[-201,70],[174,72],[-83,284],[-109,-39]],[[70180,64062],[-1113,107]],[[70320,63141],[27,126],[-167,795]],[[11427,60971],[94,14],[125,312],[-182,-126],[-37,-200]],[[13492,55864],[170,2078],[-127,397],[-209,-90],[-324,240],[-24,105]],[[12978,58594],[-420,-577],[-52,-502],[-293,-552]],[[64652,64918],[48,-130],[-88,-317]],[[64975,65275],[-323,-357]],[[65330,64902],[-194,26],[17,326],[-178,21]],[[65323,64736],[7,166]],[[65297,64082],[-58,384],[84,270]],[[72852,65036],[-61,-868],[85,-200]],[[73331,64953],[-479,83]],[[73852,63601],[-104,179],[-79,465],[-338,708]],[[73812,63359],[40,242]],[[87010,60722],[-132,169],[-200,26],[-436,-224],[-292,120],[-79,-55]],[[86949,60139],[17,172],[160,116],[-116,295]],[[48383,65700],[-190,-93],[-40,159],[-173,-24],[-260,-511]],[[48862,65956],[-134,-304],[-170,-174],[-49,316],[-126,-94]],[[49081,64809],[30,189],[-144,-4],[-148,613],[43,349]],[[60596,65315],[-33,-333],[-127,-165],[-190,3],[10,-521],[-193,12]],[[60831,65645],[-35,-224],[-200,-106]],[[61596,65291],[-287,10],[0,169],[-336,7],[-142,168]],[[49870,65743],[6,-391],[-299,-14],[6,-335]],[[50826,65395],[-186,-8],[-98,220],[-382,-18],[-4,111],[-286,43]],[[50932,64728],[-96,-3],[-10,670]],[[51885,65431],[6,-671],[-193,-6]],[[52269,65441],[-384,-10]],[[53039,64957],[-488,44],[98,450],[-380,-10]],[[75405,63199],[-10,-132]],[[75961,63029],[-43,64],[-513,106]],[[76215,62762],[-92,208],[-162,59]],[[77208,62988],[79,-165],[-120,-409],[34,-431],[-107,-121]],[[77321,63243],[-113,-255]],[[77589,62990],[-144,-9],[-124,262]],[[77747,62155],[-45,56],[-113,779]],[[13042,62680],[63,-31],[105,479],[190,486],[-145,12],[-109,-242],[-104,-704]],[[13286,60965],[391,446],[21,432],[-227,-182],[-36,-450],[-149,-246]],[[14310,60328],[-180,-172],[-155,197],[-203,-224],[88,-352],[-52,-521],[-113,-339],[-345,-120],[-145,67],[-227,-270]],[[15002,59816],[-342,-138],[-23,161],[-178,151],[-149,338]],[[82235,61586],[-993,155]],[[78890,63432],[-136,-222],[-77,-375],[-237,-44]],[[78976,63725],[-86,-293]],[[79661,62488],[-685,1237]],[[83843,60103],[146,398],[154,133],[-16,459]],[[83362,61960],[-128,-522],[-179,-359]],[[84127,61093],[-83,183],[-292,81],[-390,603]],[[84524,61862],[-219,-456],[23,-224],[-146,75],[-55,-164]],[[84571,61876],[-47,-14]],[[84775,60552],[-204,1324]],[[70233,65068],[-53,-1006]],[[70999,64970],[-766,98]],[[70996,64914],[3,56]],[[70927,63486],[69,1428]],[[76887,63052],[-97,-460],[11,-361]],[[77208,62988],[-321,64]],[[79808,62741],[-147,-253]],[[80422,63390],[-281,-302],[-164,-80],[-169,-267]],[[80857,61991],[-197,711],[-181,296],[-57,392]],[[38429,65777],[56,-991]],[[40161,66061],[-384,-58],[-18,337],[-1153,-194],[18,-336],[-195,-33]],[[40254,64056],[-93,2005]],[[66194,64642],[-871,94]],[[66290,64631],[-96,11]],[[59482,65784],[2,-1335]],[[60596,65315],[-222,3],[-52,452],[-840,14]],[[53994,65808],[-195,-6],[1,-330]],[[54571,64802],[0,672],[-97,0],[0,336],[-480,-2]],[[67995,64597],[-13,-336]],[[68357,64718],[-8,-169],[-354,48]],[[68745,64671],[-388,47]],[[43762,65625],[61,-1672]],[[44553,65709],[-791,-84]],[[44724,65727],[-171,-18]],[[44780,64054],[-56,1673]],[[45510,65801],[-786,-74]],[[45685,65815],[-175,-14]],[[45738,64141],[-53,1674]],[[42797,65516],[68,-1666]],[[43593,65606],[-796,-90]],[[43762,65625],[-169,-19]],[[46469,65877],[-784,-62]],[[46651,65894],[-182,-17]],[[46700,64225],[-49,1669]],[[47420,65959],[-769,-65]],[[47444,65002],[-24,957]],[[58517,66004],[-5,-1214]],[[59354,66005],[-837,-1]],[[59484,66004],[-130,1]],[[59482,65784],[2,220]],[[42634,65497],[-783,-95]],[[42797,65516],[-163,-19]],[[76664,63438],[-219,-114],[-196,-262],[-16,-246]],[[76887,63052],[-223,386]],[[87197,60829],[-187,-107]],[[87447,60846],[-250,-17]],[[87984,60820],[-191,-313],[-346,339]],[[88318,60130],[-334,690]],[[57545,66652],[5,-1222]],[[57960,66630],[-415,22]],[[58517,66004],[-583,-1],[26,627]],[[71961,64790],[-965,124]],[[71965,63856],[-4,934]],[[77706,63041],[-117,-51]],[[78217,62632],[-117,255],[-394,154]],[[50820,66231],[6,-836]],[[51877,66269],[-1057,-38]],[[51885,65431],[-8,838]],[[53991,66813],[3,-1005]],[[54755,66818],[-764,-5]],[[55145,66818],[-390,0]],[[55338,65133],[1,336],[-197,4],[3,1345]],[[56287,66806],[-1142,12]],[[56680,65452],[-200,3],[7,1014],[-192,2],[-8,335]],[[63699,66570],[59,-90],[28,-756]],[[63997,66544],[-298,26]],[[63994,66539],[3,5]],[[64652,64918],[17,355],[-192,254],[-144,25],[33,235],[-155,140],[-23,529],[-114,-98],[-80,181]],[[53030,66127],[-174,-3],[-23,-166],[-568,-14],[4,-503]],[[53228,65463],[-98,-1],[-4,665],[-96,0]],[[49326,66460],[-168,46],[-264,-75],[-32,-475]],[[49950,66705],[-287,66],[-337,-311]],[[49870,65743],[-4,279],[96,3],[-12,680]],[[74808,63926],[-181,-9],[16,-713]],[[75443,63720],[-142,91],[-493,115]],[[75405,63199],[38,521]],[[84752,62085],[-181,-209]],[[85500,61769],[-157,40],[-317,-80],[-176,102],[-98,254]],[[85581,61560],[-81,209]],[[76170,63690],[-22,-329],[-114,21],[-73,-353]],[[76182,63866],[-12,-176]],[[76729,63753],[-547,113]],[[76664,63438],[65,315]],[[82427,62603],[62,-436],[-226,-256]],[[82868,63140],[-176,169],[-313,-359],[48,-347]],[[83089,62809],[-221,331]],[[83363,61968],[-215,334],[-59,507]],[[83362,61960],[1,8]],[[40867,68137],[16,-333],[-384,-48],[33,-625],[-230,-32],[49,-1006],[-190,-32]],[[41711,68247],[-844,-110]],[[41763,67272],[-52,975]],[[41849,65441],[-86,1831]],[[67087,65211],[-19,-446]],[[67858,65170],[-192,-31],[-579,72]],[[67995,64597],[-94,67],[16,387],[-59,119]],[[72207,64924],[-55,-159],[-191,25]],[[72515,65489],[-308,-565]],[[72852,65036],[-165,120],[-172,333]],[[74005,64493],[-153,-892]],[[74573,63217],[-94,605],[-262,305],[-76,341],[-136,25]],[[74130,65265],[-125,-772]],[[74810,65071],[-385,59],[4,84],[-299,51]],[[74808,63926],[2,1145]],[[33111,67153],[210,-2991],[73,-1218]],[[35575,67632],[-187,-18],[-2277,-461]],[[36585,64800],[-103,1662],[-235,-43],[-42,671],[-587,-147],[-43,689]],[[30579,67625],[176,-2167]],[[32504,68090],[-828,-181],[-1097,-284]],[[33111,67153],[-528,-117],[-79,1054]],[[69055,65178],[5,-549]],[[70041,65088],[-986,90]],[[70233,65068],[-192,20]],[[47412,66295],[8,-336]],[[48357,66893],[-138,106],[-136,-166],[-280,-19],[-391,-519]],[[48383,65700],[-26,1193]],[[81548,62954],[-191,-521],[-89,-397]],[[82427,62603],[-469,341],[-157,17],[20,172],[-273,-179]],[[63102,66771],[-135,-231],[-35,-285],[-334,-37],[-13,-957]],[[63153,67019],[-51,-248]],[[63699,66570],[-137,274],[128,354],[-414,7],[-123,-186]],[[76170,63690],[-588,122],[-139,-92]],[[66248,66031],[-54,-1389]],[[66639,66103],[-4,-111],[-387,39]],[[67123,66049],[-484,54]],[[67087,65211],[36,838]],[[65494,66238],[-14,-406],[-113,-125],[-37,-805]],[[65867,66182],[-373,56]],[[66248,66031],[3,111],[-384,40]],[[77856,63929],[-101,-368],[-49,-520]],[[78279,63639],[-87,143],[-244,-32],[-92,179]],[[78324,62773],[-49,285],[4,581]],[[83857,62913],[-181,-248],[67,-153],[-179,-605],[-105,191],[-96,-130]],[[84524,61862],[-126,75],[-541,976]],[[80580,63613],[-158,-223]],[[81323,63649],[-127,15],[-376,-313],[-237,90],[-3,172]],[[81523,63124],[-155,305],[105,168],[-150,52]],[[81548,62954],[-25,170]],[[73578,65804],[-139,-489],[-83,-22],[-25,-340]],[[73967,65836],[-389,-32]],[[74201,65703],[-234,133]],[[74130,65265],[71,438]],[[64975,65275],[22,624],[-94,6],[24,728]],[[64560,66997],[-21,-503],[-545,45]],[[64939,66968],[-379,29]],[[64927,66633],[12,335]],[[65494,66238],[11,335],[-578,60]],[[76584,64429],[120,-127],[97,-377],[-72,-172]],[[77042,64485],[-83,131],[-375,-187]],[[77353,63766],[-311,719]],[[77321,63243],[-79,270],[111,253]],[[67908,66283],[-50,-1113]],[[68102,66260],[-194,23]],[[68421,66161],[-319,99]],[[68357,64718],[64,1443]],[[51872,67108],[5,-839]],[[52957,67133],[-1085,-25]],[[53026,66743],[-64,-1],[-5,391]],[[53030,66127],[-4,616]],[[53664,66975],[-154,-224],[-484,-8]],[[53991,66813],[-85,165],[-242,-3]],[[50288,67006],[-117,71],[-221,-372]],[[50816,66795],[-59,109],[-356,-179],[-113,281]],[[50820,66231],[-4,564]],[[56292,67654],[-5,-848]],[[57054,68538],[-215,-153],[-201,-446],[-147,-10],[-199,-275]],[[57536,68776],[-482,-238]],[[57541,67610],[-5,1166]],[[57545,66652],[-4,958]],[[60452,66662],[-256,-2],[-21,-293],[-303,-29],[0,-113],[-291,3],[-97,-224]],[[60834,66664],[-382,-2]],[[60831,65645],[3,1019]],[[27009,65718],[-131,-859],[-154,248],[-246,-641],[28,-654],[-82,-23],[38,-307],[-89,-19]],[[27998,67039],[-446,205],[-242,424],[-206,-1083],[-95,-867]],[[28948,65797],[-37,422],[-637,-12],[-199,126],[-56,330],[69,385],[-90,-9]],[[78359,63814],[-80,-175]],[[78890,63432],[-352,391],[-179,-9]],[[61468,66970],[-296,-306],[-338,0]],[[61658,66947],[-190,23]],[[61666,65289],[14,1010],[-22,648]],[[62171,66904],[-513,43]],[[63102,66771],[-122,22],[-133,-178],[-272,-163],[-24,309],[-384,31],[4,112]],[[77777,64049],[-161,-214],[-144,69],[-119,-138]],[[77856,63929],[-79,120]],[[86486,62669],[-902,-1105]],[[87197,60829],[-107,585],[-211,112],[-60,277],[-223,44],[14,285],[-128,280],[4,257]],[[79303,64404],[-327,-679]],[[79774,64092],[-373,61],[-98,251]],[[79808,62741],[-137,292],[196,432],[1,432],[-94,195]],[[69043,66086],[-622,75]],[[69055,65178],[-12,908]],[[48336,67860],[21,-967]],[[49298,67915],[-962,-55]],[[49326,66460],[-28,1455]],[[75443,63720],[79,1280]],[[75040,65080],[-230,-9]],[[75378,65023],[-338,57]],[[75522,65000],[-144,23]],[[75962,64928],[-440,72]],[[76223,64436],[-172,79],[-89,413]],[[76182,63866],[41,570]],[[80319,64388],[-6,-116],[-281,89],[-94,-132],[-97,205],[-67,-342]],[[80387,64338],[-68,50]],[[80580,63613],[-193,725]],[[87780,62300],[-15,-458],[71,-104],[-52,578]],[[87784,62316],[-4,-16]],[[87634,61330],[-8,-168],[-179,-316]],[[88031,60813],[-200,605],[-66,419],[-131,-507]],[[88031,60813],[-8,-11]],[[87984,60820],[39,-18]],[[67332,66359],[-193,25],[-16,-335]],[[67908,66283],[-576,76]],[[84001,63023],[-289,453],[-304,-414],[-301,-40],[-18,-213]],[[83857,62913],[144,110]],[[87751,62380],[29,277],[-100,-70],[71,-207]],[[86651,62870],[-165,-201]],[[86660,62882],[-9,-12]],[[86684,62911],[-24,-29]],[[87634,61330],[81,426],[17,397],[-84,366],[-237,-22],[-409,127],[-318,287]],[[58503,68310],[-202,-625],[-75,-1059],[-266,4]],[[58507,68310],[-4,0]],[[58741,67309],[-3,1005],[-231,-4]],[[58517,66004],[26,625],[194,7],[4,673]],[[59417,67480],[-135,19],[-541,-190]],[[59571,67473],[-154,7]],[[59354,66005],[-35,489],[95,29],[42,606],[115,344]],[[35604,67983],[-29,-351]],[[37443,69308],[34,-661],[-751,-128],[17,-329],[-1139,-207]],[[38429,65777],[-144,2645],[-79,987],[-763,-101]],[[60078,68140],[-68,-145],[-279,-98],[-160,-424]],[[60464,67993],[-248,166],[-138,-19]],[[60452,66662],[0,664],[-103,-6],[108,318],[7,355]],[[76554,64890],[-312,-176],[-19,-278]],[[76584,64429],[-30,461]],[[69042,66195],[1,-109]],[[69536,66658],[-20,-392],[-70,-105],[-404,34]],[[70116,66591],[-580,67]],[[70098,66258],[18,333]],[[70041,65088],[57,1170]],[[21718,60854],[213,264],[714,328],[196,-253],[260,152],[71,-78]],[[20461,63830],[235,-373],[51,-495],[65,-39],[28,-882],[170,-222],[85,-327]],[[20484,65446],[-266,-114],[-56,-265],[81,-224],[39,-447],[-12,-512],[191,-54]],[[22788,64824],[-1137,-366],[36,-329],[-563,-181],[-188,1636],[-452,-138]],[[23042,62472],[-254,2352]],[[45454,67641],[56,-1840]],[[46416,67715],[-962,-74]],[[46469,65877],[-53,1838]],[[47281,67781],[-865,-66]],[[47412,66295],[-90,-27],[-41,1513]],[[70989,66154],[71,-8],[-61,-1176]],[[71361,66615],[-242,-83],[-130,-378]],[[72207,64924],[-120,47],[-133,554],[-166,164],[-85,418],[-283,306],[-59,202]],[[44492,67561],[61,-1852]],[[45454,67641],[-962,-80]],[[43531,67483],[62,-1877]],[[44492,67561],[-961,-78]],[[42557,67369],[77,-1872]],[[43531,67483],[-974,-114]],[[84088,63390],[130,-200],[-217,-167]],[[84290,63571],[-124,36],[-78,-217]],[[85323,63599],[-87,-51],[-216,234],[-570,-65],[-160,-146]],[[84752,62085],[-26,174],[234,862],[363,478]],[[42557,67369],[-794,-97]],[[70989,66154],[-891,104]],[[85605,63878],[-172,-378],[-16,-222],[-186,-322],[103,-317],[166,-870]],[[85998,64279],[-175,55],[-218,-456]],[[86651,62870],[6,133],[-321,405],[-338,871]],[[85345,63667],[-22,-68]],[[85605,63878],[-137,51],[-123,-262]],[[77600,64988],[-67,-240],[-378,-46],[-113,-217]],[[77901,64630],[-301,358]],[[77777,64049],[107,292],[17,289]],[[51097,67780],[64,-383],[-250,-56],[-95,-546]],[[51864,67765],[-49,-203],[-180,-138],[-340,519],[-198,-163]],[[51872,67108],[-8,657]],[[78599,64458],[-256,-406],[16,-238]],[[78980,64648],[-381,-190]],[[79220,64539],[-240,109]],[[79376,64612],[-156,-73]],[[79303,64404],[73,208]],[[78099,64746],[-198,-116]],[[78599,64458],[-125,134],[-149,-82],[-226,236]],[[82227,64172],[-132,-451],[-236,-266],[-187,20],[-149,-351]],[[82989,64495],[-352,-23],[-213,-92],[-197,-208]],[[82868,63140],[121,1355]],[[71388,66777],[-27,-162]],[[72095,66853],[-132,-8],[-224,-224],[-230,29],[-121,127]],[[72511,66105],[-127,432],[-303,176],[14,140]],[[72515,65489],[-4,616]],[[47377,67788],[-96,-7]],[[48330,68245],[-34,-134],[-369,-246],[-6,96],[-247,-152],[-297,-21]],[[48336,67860],[-6,385]],[[50274,67955],[-976,-40]],[[50288,67006],[-14,949]],[[73011,66395],[-280,-518],[-141,23],[-79,205]],[[73578,65804],[5,127],[-293,24],[-279,440]],[[81210,64454],[113,-805]],[[81988,65121],[-356,-200],[-422,-467]],[[82232,64844],[-244,277]],[[82227,64172],[-35,528],[67,-152],[168,56],[-195,240]],[[65915,67204],[-48,-1022]],[[66689,67234],[-481,55],[-5,-114],[-288,29]],[[66639,66103],[50,1131]],[[58503,68310],[-153,-114],[-265,-7],[-225,-179],[-59,-179],[-260,-221]],[[81085,64731],[-351,-108],[-145,-390],[-202,105]],[[81210,64454],[-125,277]],[[75760,66247],[175,-358],[19,-322],[103,-234],[-95,-405]],[[75382,66981],[96,-244],[155,-130],[127,-360]],[[75322,67235],[60,-254]],[[75768,67179],[-446,56]],[[76032,66937],[-264,242]],[[76204,66525],[-197,38],[25,374]],[[76253,65314],[-131,12],[82,1199]],[[76554,64890],[-283,303],[-18,121]],[[53019,67583],[-62,-450]],[[53655,67820],[-122,-74],[-218,303],[-176,-83],[-120,-383]],[[53664,66975],[66,183],[-140,223],[88,187],[-23,252]],[[62156,67954],[-18,-713],[33,-337]],[[62928,67928],[-772,26]],[[63153,67019],[-229,164],[4,745]],[[83182,64828],[-193,-333]],[[84088,63390],[-484,765],[-217,133],[28,196],[-157,49],[-76,295]],[[76773,65997],[-480,-545],[-40,-138]],[[76840,65854],[-67,143]],[[77133,65232],[-293,622]],[[77042,64485],[-58,488],[149,259]],[[64959,67637],[-20,-669]],[[65552,67922],[-314,-47],[191,-90],[27,-191],[-497,43]],[[65915,67204],[10,284],[-384,97],[11,337]],[[66712,67792],[-23,-558]],[[67290,67659],[2,63],[-580,70]],[[67332,66359],[45,1005],[-96,14],[9,281]],[[54039,68474],[-82,-197],[-144,12],[-55,-191],[-176,-85],[73,-193]],[[55021,68036],[-163,-183],[-208,196],[-75,-79],[-166,371],[-210,-25],[-52,275],[-108,-117]],[[55181,67906],[-160,130]],[[54755,66818],[98,122],[0,661],[179,303],[149,2]],[[56007,67882],[-171,44],[-271,-80],[-89,-200],[-295,260]],[[56292,67654],[-117,-98],[-168,326]],[[61036,67989],[-572,4]],[[61496,67987],[-460,2]],[[61468,66970],[-247,26],[0,325],[257,492],[18,174]],[[50256,69374],[18,-1419]],[[51076,69405],[-820,-31]],[[51097,67780],[-21,1625]],[[77417,65261],[-211,82],[-73,-111]],[[77600,64988],[-183,273]],[[63554,68730],[182,-167],[-188,-309],[120,-94],[157,174],[12,-225],[-146,-42],[19,-205],[204,61],[-87,-423],[65,-243],[-124,-90],[181,-228],[175,-52],[33,-210],[-160,-133]],[[63588,68852],[-34,-122]],[[64420,68775],[-832,77]],[[64560,66997],[43,1426],[-192,19],[9,333]],[[63143,68756],[-18,-833],[-197,5]],[[63554,68730],[-22,173],[-195,7],[-2,-170],[-192,16]],[[74239,65937],[-38,-234]],[[74854,65807],[-615,130]],[[75040,65080],[-68,522],[-118,205]],[[68145,67271],[-43,-1011]],[[68552,67837],[21,-118],[-405,53],[-23,-501]],[[69023,67407],[-142,19],[-135,295],[-194,116]],[[69042,66195],[-19,1212]],[[38177,71789],[-938,-147],[101,-1694],[67,12],[36,-652]],[[40194,70378],[-1906,-279],[-93,1692],[-18,-2]],[[40867,68137],[-388,-51],[-34,666],[-82,-10],[-79,1648],[-90,-12]],[[75476,66063],[-98,-1040]],[[75760,66247],[-100,-215],[-184,31]],[[15274,61663],[249,-510],[-193,-283],[-165,-692]],[[17815,62935],[-1717,-643],[-377,-165],[-205,-317],[-242,-147]],[[20461,63830],[-2646,-895]],[[74900,66156],[-46,-349]],[[75158,66226],[-258,-70]],[[75476,66063],[-318,163]],[[80066,65461],[-254,-489],[-436,-360]],[[80312,65776],[-157,-89],[-89,-226]],[[80319,64388],[-190,141],[105,352],[-82,279],[37,283],[147,182],[-24,151]],[[67579,67619],[-289,40]],[[68145,67271],[-388,45],[9,222],[-187,81]],[[52007,67710],[-143,55]],[[53001,67602],[-280,603],[-25,269],[-122,-74],[-55,-238],[49,-345],[-232,3],[-127,265],[-164,-85],[-38,-290]],[[53019,67583],[-18,19]],[[61510,68322],[-14,-335]],[[62164,68290],[-654,32]],[[62156,67954],[8,336]],[[69014,68222],[9,-815]],[[69621,68174],[-607,48]],[[69536,66658],[85,1516]],[[78112,65329],[47,-231],[-60,-352]],[[78130,65660],[-18,-331]],[[78671,65798],[-227,33],[-314,-171]],[[78744,65627],[-73,171]],[[78980,64648],[-116,148],[-204,667],[84,164]],[[22432,68120],[356,-3296]],[[24518,68748],[-2086,-628]],[[27009,65718],[-988,-273],[-99,986],[-905,-256],[-197,-393],[-302,2966]],[[78112,65329],[-512,-341]],[[58757,68843],[-262,-221],[12,-312]],[[58953,69327],[-91,-59],[-105,-425]],[[59398,69331],[-445,-4]],[[59417,67480],[-18,508],[-1,1343]],[[70569,67731],[-18,-333],[-193,18],[-41,-672],[-193,12],[-8,-165]],[[70876,68027],[-95,10],[-16,-280],[-196,-26]],[[71388,66777],[-90,123],[-67,517],[-215,198],[-4,243],[-136,169]],[[79278,66018],[-261,-155],[-138,114],[-135,-350]],[[79333,65972],[-55,46]],[[79632,65778],[-62,-57],[-237,251]],[[79220,64539],[139,562],[273,677]],[[51186,69537],[-110,-132]],[[51985,69562],[-799,-25]],[[52007,67710],[-22,1852]],[[72250,67674],[-68,-46],[27,-373],[-114,-402]],[[72539,68223],[-24,-427],[-191,33],[-74,-155]],[[72902,67046],[-119,376],[63,161],[-307,640]],[[73011,66395],[54,264],[-163,387]],[[64541,69763],[-88,7],[-33,-995]],[[65021,69487],[-190,20],[9,225],[-299,31]],[[64959,67637],[62,1850]],[[79728,65711],[-96,67]],[[80066,65461],[-149,-4],[-189,254]],[[80488,65932],[-176,-156]],[[80521,65974],[-33,-42]],[[81085,64731],[-564,1243]],[[76330,66501],[-126,24]],[[76509,66468],[-179,33]],[[76773,65997],[-130,564],[-134,-93]],[[73967,65836],[8,200],[-164,479],[29,478],[-267,406]],[[73573,67399],[-5,-112],[-368,63],[-124,-318],[-174,14]],[[77701,65540],[-284,-279]],[[77919,65954],[-218,-414]],[[78130,65660],[-211,294]],[[73484,67638],[89,-239]],[[73868,67578],[-384,60]],[[74495,67509],[-627,69]],[[74390,66870],[105,639]],[[74239,65937],[151,933]],[[56020,69795],[-13,-1913]],[[56024,69805],[-4,-10]],[[56360,69757],[-336,48]],[[56947,69845],[-149,-130],[-438,42]],[[57063,69976],[-116,-131]],[[57054,68538],[9,1438]],[[59617,69442],[-219,-111]],[[60078,69387],[-461,55]],[[60078,68140],[0,1247]],[[52990,69651],[11,-2049]],[[53194,69696],[-204,-45]],[[54026,69735],[-832,-39]],[[54039,68474],[-13,1261]],[[52177,69580],[-192,-18]],[[52990,69651],[-813,-71]],[[58357,69080],[-375,-137],[-259,185],[-187,-352]],[[58757,68843],[-131,139],[-269,98]],[[83283,65132],[-101,-304]],[[83825,65427],[-237,119],[-305,-414]],[[84025,65161],[-200,266]],[[84290,63571],[-173,506],[28,241],[-120,843]],[[15059,62042],[-178,-356],[-85,-356],[-330,-578],[-156,-424]],[[15274,61663],[-151,142],[-64,237]],[[55002,69491],[19,-1455]],[[56020,69795],[-343,-284],[-496,-150],[-179,130]],[[76975,65987],[-135,-133]],[[77445,66454],[-470,-467]],[[77701,65540],[-256,914]],[[69816,68142],[-195,32]],[[70569,67731],[-385,29],[-47,347],[-321,35]],[[74900,66156],[2,377],[-512,337]],[[65574,68092],[-22,-170]],[[66203,68024],[-629,68]],[[66719,67962],[-516,62]],[[66712,67792],[7,170]],[[84874,65662],[-155,-53],[-458,-532],[-236,84]],[[85345,63667],[-134,403],[1,433],[-163,364],[-175,795]],[[54191,69912],[-165,41],[0,-218]],[[55001,69691],[-810,221]],[[55002,69491],[-1,200]],[[83283,65132],[-105,2],[-161,414],[-320,-431],[-242,49],[-223,-322]],[[80910,66981],[24,-118],[-211,-251],[-22,-413],[-180,-225]],[[81101,67124],[-191,-143]],[[81705,65829],[-604,1295]],[[81988,65121],[-283,708]],[[71302,68986],[-190,-200],[-350,-660],[114,-99]],[[71374,68976],[-72,10]],[[72250,67674],[-144,329],[-129,24],[-258,563],[-345,386]],[[46371,69397],[45,-1682]],[[47346,69473],[-975,-76]],[[47377,67788],[-31,1685]],[[48306,69532],[-960,-59]],[[48330,68245],[-24,1287]],[[49266,69593],[32,-1678]],[[50254,69646],[-988,-53]],[[50256,69374],[-2,272]],[[45406,69317],[48,-1676]],[[46371,69397],[-965,-80]],[[44447,69235],[45,-1674]],[[45406,69317],[-959,-82]],[[49266,69593],[-960,-61]],[[43486,69154],[45,-1671]],[[44447,69235],[-961,-81]],[[41673,68944],[38,-697]],[[42527,69049],[-854,-105]],[[42557,67369],[-30,1680]],[[43486,69154],[-959,-105]],[[60339,69664],[-261,2],[0,-279]],[[61101,69658],[-177,54],[-585,-48]],[[61036,67989],[-1,273],[-112,272],[-116,35],[13,231],[-97,398],[118,231],[260,229]],[[77464,66724],[-19,-270]],[[77763,67013],[-299,-289]],[[78214,66720],[-451,293]],[[77919,65954],[300,570],[-5,196]],[[75158,66226],[47,793],[177,-38]],[[74529,67714],[-34,-205]],[[75042,67624],[-513,90]],[[75322,67235],[-280,389]],[[65250,69567],[-56,245],[-166,-86],[-7,-239]],[[65536,69419],[-277,-131],[-9,279]],[[65574,68092],[49,55],[31,776],[-131,176],[13,320]],[[67637,68296],[-58,-677]],[[68288,68428],[-11,-226],[-640,94]],[[68552,67837],[81,173],[-12,316],[-75,-98],[-258,200]],[[61509,69895],[-151,118],[-257,-355]],[[61510,68322],[54,794],[-107,476],[52,303]],[[62167,69468],[-45,-502],[59,-5],[-17,-671]],[[63155,69427],[-988,41]],[[63143,68756],[12,671]],[[76975,65987],[-4,362],[-172,522]],[[76799,66871],[-158,-103],[-132,-300]],[[85331,65883],[-457,-221]],[[85423,65975],[-92,-92]],[[85998,64279],[-175,695],[-21,620],[-195,-187],[207,495],[-127,162],[-264,-89]],[[30213,70575],[-171,-495],[88,-722],[-121,-151],[40,-234],[-111,-82],[-225,-967],[183,-2186]],[[30337,70603],[-124,-28]],[[30447,69267],[-110,1336]],[[30579,67625],[-132,1642]],[[78466,67161],[-252,-441]],[[78708,66661],[-242,500]],[[78671,65798],[94,112],[-93,327],[36,424]],[[68330,69267],[-42,-839]],[[69004,69171],[-674,96]],[[69014,68222],[-10,949]],[[77043,67134],[-244,-263]],[[77177,67400],[-134,-266]],[[77464,66724],[-267,491],[-20,185]],[[66985,68768],[-231,29],[-35,-835]],[[67513,68423],[-306,81],[-222,264]],[[67637,68296],[-124,127]],[[79011,66689],[-303,-28]],[[79278,66018],[-95,363],[-128,-4],[-44,312]],[[57241,70202],[-178,-226]],[[58371,70160],[-229,-148],[-168,290],[-387,-200],[-208,178],[-138,-78]],[[58357,69080],[14,1080]],[[81998,65947],[-293,-118]],[[82869,66734],[-307,-407],[-564,-380]],[[82881,66716],[-12,18]],[[83639,66206],[-232,-16],[-54,-204],[-472,730]],[[83825,65427],[-4,538],[-182,241]],[[61915,70391],[-168,-335],[-238,-161]],[[62167,69468],[24,382],[-276,411],[0,130]],[[80063,66778],[-323,-676],[-12,-391]],[[80488,65932],[-425,846]],[[72397,69360],[-40,-285],[243,-501],[-61,-351]],[[72982,69252],[-585,108]],[[73484,67638],[-97,18],[-11,397],[-93,73],[13,337],[-254,37],[19,390],[-97,13],[18,349]],[[66523,69495],[-21,-448],[-257,-24],[-42,-999]],[[66877,69453],[-354,42]],[[66985,68768],[-131,120],[23,565]],[[66340,69790],[-804,-371]],[[66523,69495],[-102,12],[-81,283]],[[79912,66981],[-295,-104],[-284,-905]],[[79968,66966],[-56,15]],[[80063,66778],[-95,188]],[[27762,69623],[236,-2584]],[[27732,69951],[30,-328]],[[30213,70575],[-2481,-624]],[[76216,67667],[-18,-416],[-166,-314]],[[76278,67654],[-62,13]],[[76330,66501],[70,237],[-35,575],[-109,22],[22,319]],[[76756,67763],[-99,-124],[-379,15]],[[77043,67134],[-54,280],[-233,349]],[[58383,71128],[-12,-968]],[[58807,71112],[-424,16]],[[58826,71111],[-19,1]],[[58953,69327],[55,416],[-11,580],[-121,317],[-140,-13],[-18,208],[108,276]],[[79247,67370],[-55,-44],[-121,-584],[-60,-53]],[[79836,67144],[-252,-142],[-337,368]],[[79912,66981],[-76,163]],[[69893,69563],[-77,-1421]],[[70148,70092],[-219,-8],[-36,-521]],[[70693,70022],[-545,70]],[[71302,68986],[-236,232],[14,252],[-154,15],[-42,497],[-191,40]],[[40189,74094],[95,-1998],[-170,-24],[80,-1694]],[[40934,74194],[-745,-100]],[[41442,73927],[-15,331],[-493,-64]],[[41514,72261],[-72,1666]],[[41587,70588],[-73,1673]],[[41673,68944],[-86,1644]],[[67554,69370],[-41,-947]],[[68063,69304],[-509,66]],[[68330,69267],[-267,37]],[[63190,70898],[-35,-1471]],[[63235,70894],[-45,4]],[[63555,70871],[-320,23]],[[63738,70859],[-183,12]],[[63737,70831],[1,28]],[[63588,68852],[-30,348],[218,-58],[-164,180],[126,90],[12,314],[102,289],[16,309],[-192,24],[141,307],[-80,176]],[[76040,68072],[-74,-253],[-186,-274],[-12,-366]],[[76216,67667],[-57,384],[-119,21]],[[71686,69684],[-292,-399],[-20,-309]],[[72367,69683],[-183,-159],[-504,76],[6,84]],[[72397,69360],[-30,323]],[[80140,67098],[-172,-132]],[[80910,66981],[-449,176],[-158,-215],[-163,156]],[[68991,70318],[13,-1147]],[[69303,70257],[-312,61]],[[69893,69563],[-194,204],[-167,307],[-196,26],[-33,157]],[[67157,70102],[-25,-678],[-255,29]],[[67554,69370],[-24,342],[-193,26],[13,338],[-193,26]],[[64205,70804],[-468,27]],[[64589,70427],[-394,32],[10,345]],[[64541,69763],[76,258],[-28,406]],[[77306,68100],[-3,-241],[-126,-459]],[[77332,68282],[-26,-182]],[[77818,68018],[-486,264]],[[77763,67013],[55,1005]],[[75235,68363],[-193,-739]],[[75385,68463],[-150,-100]],[[76041,68212],[-646,123],[-10,128]],[[76040,68072],[1,140]],[[84116,66988],[-364,-407],[-113,-375]],[[84522,67305],[-108,70],[-116,-354],[-182,-33]],[[84796,67130],[-196,467],[-78,-292]],[[85331,65883],[-107,287],[-217,156],[-211,804]],[[17390,65957],[-1904,-386],[80,-516],[-214,-363],[104,-152],[-111,-158],[81,-181],[16,-526],[-49,-549],[-204,-830],[-130,-254]],[[17815,62935],[-161,1323],[-42,-13],[-222,1712]],[[73945,69068],[-77,-1490]],[[74057,69045],[-112,23]],[[74723,68915],[-666,130]],[[74710,68834],[13,81]],[[74529,67714],[181,1120]],[[73291,69252],[-309,0]],[[73945,69068],[-594,115],[-60,69]],[[54996,70423],[5,-732]],[[56020,69817],[-558,103],[-62,143],[-211,61],[-193,299]],[[56024,69805],[-4,12]],[[81398,67446],[-256,-115],[-41,-207]],[[82164,67153],[-311,124],[-344,-104],[-111,273]],[[81998,65947],[87,1054],[79,152]],[[78029,67918],[-211,100]],[[78314,67846],[-285,72]],[[78466,67161],[43,164],[-180,239],[-15,282]],[[33064,70518],[-232,-143],[66,-342],[-57,-907],[-126,-218],[62,-281],[-25,-486],[-248,-51]],[[33638,70636],[-574,-118]],[[35531,69276],[-1072,684],[-11,166],[-762,-156],[-48,666]],[[35604,67983],[-73,1293]],[[59354,71092],[-528,19]],[[59410,71090],[-56,2]],[[59617,69442],[-131,722],[-73,-3],[-3,929]],[[78755,68157],[-80,138],[-25,-386],[-336,-63]],[[79266,67424],[-184,207],[-44,234],[-283,292]],[[79247,67370],[19,54]],[[19975,66479],[370,-25],[183,-529],[-44,-479]],[[22242,69880],[-2533,-2609],[62,-481],[204,-311]],[[22432,68120],[-190,1760]],[[27762,69623],[-1307,-344],[-4,39],[-1933,-570]],[[50221,71137],[33,-1491]],[[50910,71182],[-689,-45]],[[51160,71199],[-250,-17]],[[51186,69537],[-26,1662]],[[59880,71069],[-470,21]],[[60344,71047],[-464,22]],[[60339,69664],[5,1383]],[[76744,68135],[12,-372]],[[76896,68103],[-152,32]],[[77306,68100],[-106,-63],[-304,66]],[[82399,67448],[-235,-295]],[[82869,66734],[-470,714]],[[19975,66479],[-2585,-522]],[[51863,71248],[-703,-49]],[[52134,71271],[-271,-23]],[[52177,69580],[-43,1691]],[[52816,71307],[-682,-36]],[[53167,71302],[-351,5]],[[53194,69696],[-27,1606]],[[75235,68363],[-525,471]],[[54996,70423],[-1,921]],[[54185,71335],[6,-1423]],[[54184,71873],[1,-538]],[[54596,71886],[-412,-13]],[[54861,71891],[-265,-5]],[[54995,71344],[-154,-1],[-76,413],[96,135]],[[53776,71329],[-609,-27]],[[54185,71335],[-409,-6]],[[45355,70955],[51,-1638]],[[46067,71043],[-712,-88]],[[46321,71066],[-254,-23]],[[46371,69397],[-50,1669]],[[47019,71132],[-698,-66]],[[47308,71153],[-289,-21]],[[47346,69473],[-38,1680]],[[56366,71120],[-6,-1363]],[[56938,71308],[-197,-321],[-203,-17],[-172,150]],[[56947,69845],[-9,1463]],[[44389,70899],[58,-1664]],[[45104,70958],[-715,-59]],[[45355,70955],[-251,3]],[[48272,71229],[34,-1697]],[[48971,71271],[-699,-42]],[[49241,71286],[-270,-15]],[[49266,69593],[-25,1693]],[[49940,71330],[-699,-44]],[[50221,71137],[-5,214],[-276,-21]],[[48010,71213],[-702,-60]],[[48272,71229],[-262,-16]],[[62057,70976],[-77,-92],[-65,-493]],[[63190,70898],[-1133,78]],[[43424,70803],[62,-1649]],[[44140,70870],[-716,-67]],[[44389,70899],[-249,-29]],[[35206,73277],[235,-3651],[90,-350]],[[35917,73403],[-711,-126]],[[37943,73756],[-2026,-353]],[[38075,73777],[-132,-21]],[[38177,71789],[-102,1988]],[[42459,70696],[-872,-108]],[[42527,69049],[-68,1647]],[[43178,70778],[-719,-82]],[[43424,70803],[-246,-25]],[[56027,71402],[-7,-1585]],[[56318,71202],[-39,199],[-252,1]],[[56366,71120],[-48,82]],[[60835,71031],[-491,16]],[[62057,70976],[-1222,55]],[[55363,71416],[-5,-73],[-363,1]],[[56027,71402],[-664,14]],[[57126,71605],[-188,-297]],[[57153,71702],[-27,-97]],[[57250,71699],[-97,3]],[[57241,70202],[9,1497]],[[65228,70694],[-127,-169],[13,-220],[160,-95],[-24,-643]],[[65987,71118],[-702,-426],[-57,2]],[[66340,69790],[-121,403],[6,186],[-120,532],[-118,207]],[[76061,68352],[-20,-140]],[[76519,68236],[-381,4],[-77,112]],[[76744,68135],[-225,101]],[[83713,67739],[-71,-401],[3,-335],[-354,78],[-239,-302],[-171,-63]],[[84116,66988],[-46,61],[211,258],[-109,186],[-2,270],[-457,-24]],[[64698,71085],[-27,-667],[-82,9]],[[65228,70694],[-158,22],[10,328],[-382,41]],[[79460,67812],[-156,-144],[-38,-244]],[[79836,67144],[-245,455],[4,191],[-135,22]],[[79816,68905],[-11,-355],[-106,-380],[-92,-28],[-147,-330]],[[79996,69095],[-180,-190]],[[80190,68761],[-181,138],[-13,196]],[[80140,67098],[77,132],[-54,656],[75,467],[-48,408]],[[58389,71659],[-1139,40]],[[58383,71128],[6,531]],[[80514,68770],[-324,-9]],[[81178,68226],[-181,-126],[-401,246],[-82,424]],[[81548,67600],[-370,626]],[[81398,67446],[150,154]],[[68125,70685],[-62,-1381]],[[68988,70558],[-863,127]],[[68991,70318],[-3,240]],[[67183,70781],[-26,-679]],[[67936,70707],[-753,74]],[[68125,70685],[-189,22]],[[66425,71050],[-438,68]],[[67183,70781],[-756,95],[-2,174]],[[70721,70515],[-28,-493]],[[71475,70540],[-556,110],[-9,-167],[-189,32]],[[71686,69684],[55,816],[-266,40]],[[78757,68677],[-2,-520]],[[79048,69334],[-84,-308],[-95,-27],[-112,-322]],[[79816,68905],[-441,313],[-76,-139],[-251,255]],[[75470,69678],[-85,-1215]],[[75776,69724],[-306,-46]],[[76125,69508],[-108,164],[-241,52]],[[76063,69178],[62,330]],[[76061,68352],[-35,342],[37,484]],[[74873,69804],[-150,-889]],[[75470,69678],[-597,126]],[[31720,73096],[-576,-128],[39,-827],[131,-1662],[-205,-47],[28,-330],[-384,-89],[50,-661],[-356,-85]],[[33064,70518],[-585,-121],[-25,332],[-568,-123],[-128,1663],[-38,827]],[[76533,69000],[-407,76],[-63,102]],[[76519,68236],[14,764]],[[76821,69166],[-15,-219],[-273,53]],[[76896,68103],[67,972],[-142,91]],[[76842,69482],[-21,-316]],[[77272,69393],[-430,89]],[[77578,68921],[-306,472]],[[77332,68282],[206,372],[40,267]],[[78238,68876],[-209,-958]],[[78757,68677],[-155,-206],[-364,405]],[[77974,69251],[-280,-104],[-116,-226]],[[78155,69003],[-181,248]],[[78238,68876],[-83,127]],[[82986,68541],[-182,-449],[-183,-214],[-222,-430]],[[83500,68939],[-314,-357],[-200,-41]],[[83773,68711],[37,414],[-136,13],[-174,-199]],[[83713,67739],[-53,476],[113,496]],[[81903,68675],[-64,-331],[-182,-347],[-3,-274],[-106,-123]],[[82399,67448],[-226,345],[-84,261],[46,194],[-232,427]],[[69983,71946],[-158,-362],[-226,184],[-76,-689],[-273,-541],[53,-281]],[[70061,71964],[-78,-18]],[[70148,70092],[-32,275],[-156,299],[136,982],[93,50],[-128,266]],[[74150,70491],[-93,-1446]],[[74996,70259],[-275,115],[-571,117]],[[74873,69804],[123,455]],[[73374,70532],[-83,-1280]],[[73662,71491],[-74,-996],[-214,37]],[[73991,71033],[-188,93],[24,330],[-165,35]],[[74150,70491],[-185,155],[26,387]],[[72691,70658],[-164,-202],[0,-188],[-138,-238],[-22,-347]],[[73374,70532],[-683,126]],[[64603,72096],[-450,39],[-19,-673],[71,-658]],[[64698,71085],[-181,347],[122,72],[-81,329],[148,136],[-103,127]],[[56320,71629],[-2,-427]],[[57126,71605],[-806,24]],[[71501,70952],[-26,-412]],[[71702,71170],[-187,34],[-14,-252]],[[72631,70847],[-560,102],[8,168],[-377,53]],[[72691,70658],[-60,189]],[[33424,73769],[214,-3133]],[[34869,74052],[-1445,-283]],[[35206,73277],[-453,-83],[-66,506],[182,352]],[[81130,69249],[-57,-142],[105,-881]],[[81726,69716],[-281,-149],[-315,-318]],[[81984,69235],[-258,481]],[[81903,68675],[-26,176],[107,384]],[[82197,69330],[-213,-95]],[[82921,68728],[-46,164],[-254,-440],[-424,878]],[[82986,68541],[-65,187]],[[64615,72261],[-12,-165]],[[64940,72658],[-193,-129],[-132,-268]],[[65126,72383],[-186,275]],[[65987,71118],[-123,535],[-279,337],[-149,30],[-104,221],[-206,142]],[[58807,71112],[-2,519],[65,96],[-67,481],[169,545],[-28,204],[110,151],[34,402],[320,348],[85,229]],[[58398,72381],[-9,-722]],[[58412,73535],[-14,-1154]],[[58422,74288],[-10,-753]],[[59223,74098],[-104,-307],[-170,-91],[-356,584],[-171,4]],[[59493,74087],[-270,11]],[[59575,74088],[-82,-1]],[[59668,73415],[-93,673]],[[59354,71092],[-15,195],[154,425],[47,1708],[128,-5]],[[59880,71069],[21,1157],[96,-5],[24,505]],[[60021,72726],[67,495],[-167,12],[3,170],[-256,12]],[[60835,71031],[20,979]],[[60578,72696],[-557,30]],[[60855,72010],[-193,14],[-84,672]],[[62057,70976],[-16,509],[57,144],[-7,441]],[[61450,72652],[-9,-335],[-192,10],[-6,-190],[-205,-138],[-183,11]],[[62091,72070],[-43,139],[-329,430],[-269,13]],[[55421,72338],[-58,-922]],[[55497,72465],[-76,-127]],[[56324,72905],[-54,113],[-282,-240],[-240,-17],[-251,-296]],[[56320,71629],[4,1276]],[[64015,72480],[-143,-20],[-65,-226],[166,-308],[-147,-33],[-22,-389],[117,-204],[-53,-384],[-107,342],[-102,-85],[79,-314]],[[64615,72261],[-12,206],[-246,-14],[16,511],[-144,-27],[-45,163],[-19,-631],[-150,11]],[[78583,70122],[-428,-1119]],[[79045,69533],[-462,589]],[[79048,69334],[-3,199]],[[62396,72882],[-59,-583],[-76,-194],[-170,-35]],[[62894,72224],[-182,430],[-119,-38],[-60,208],[-137,58]],[[63235,70894],[-127,499],[-100,98],[-114,733]],[[70607,72046],[-381,62],[-8,-167],[-157,23]],[[70721,70515],[-86,183],[32,669],[-96,15],[36,664]],[[63264,72523],[-282,21],[-12,-326],[-76,6]],[[63555,70871],[-128,569],[6,403],[-89,578],[-80,102]],[[49912,73016],[28,-1686]],[[50101,73033],[-189,-17]],[[50863,73070],[-762,-37]],[[50868,72889],[-5,181]],[[50910,71182],[-42,1707]],[[63246,72694],[18,-171]],[[63966,72539],[-114,103],[-606,52]],[[64015,72480],[-49,59]],[[51710,72929],[-842,-40]],[[51835,72933],[-125,-4]],[[51863,71248],[-28,1685]],[[76569,69930],[-176,-76],[-268,-346]],[[76741,70120],[-172,-190]],[[76842,69482],[-101,638]],[[68976,71912],[12,-1354]],[[68963,72951],[13,-1039]],[[69881,72815],[-918,136]],[[69983,71946],[-314,425],[-15,228],[227,216]],[[52703,72977],[-868,-44]],[[52794,72981],[-91,-4]],[[52816,71307],[-22,1674]],[[53746,73008],[-952,-27]],[[53770,71977],[-24,1031]],[[53776,71329],[-6,648]],[[54184,71873],[0,105],[-414,-1]],[[55421,72338],[-246,-196],[-157,4],[-157,-255]],[[45048,72629],[56,-1671]],[[46010,72723],[-962,-94]],[[46067,71043],[-57,1680]],[[39622,74014],[-1547,-237]],[[39705,74026],[-83,-12]],[[40189,74094],[-484,-68]],[[46972,72809],[-962,-86]],[[47019,71132],[-47,1677]],[[44086,72545],[54,-1675]],[[45048,72643],[-962,-98]],[[45048,72629],[0,14]],[[43125,72449],[53,-1671]],[[44086,72545],[-961,-96]],[[43109,72448],[-1595,-187]],[[43125,72449],[-16,-1]],[[47939,72908],[-967,-99]],[[47972,72910],[-33,-2]],[[48010,71213],[-38,1697]],[[48904,72966],[-932,-56]],[[48938,72968],[-34,-2]],[[48971,71271],[-33,1697]],[[49912,73016],[-974,-48]],[[80847,69485],[-169,-175],[-164,-540]],[[81130,69249],[-283,236]],[[77671,69910],[-251,-151],[-148,-366]],[[77871,69973],[-200,-63]],[[77974,69251],[37,155],[-171,276],[31,291]],[[67242,72142],[-59,-1361]],[[67994,72046],[-752,96]],[[67936,70707],[58,1339]],[[66462,72010],[-37,-960]],[[67232,72143],[-761,85],[-9,-218]],[[67242,72142],[-10,1]],[[68976,71912],[-982,134]],[[56637,73026],[-313,-121]],[[57168,72572],[-107,-25],[-113,267],[-311,212]],[[57163,72033],[5,539]],[[57153,71702],[10,331]],[[78119,70739],[-88,-231],[-47,-406],[-113,-129]],[[78583,70122],[-464,617]],[[75857,70716],[-81,-992]],[[75874,70964],[-17,-248]],[[75976,70881],[-102,83]],[[76328,70703],[-352,178]],[[76569,69930],[-87,127],[-88,633],[-66,13]],[[58398,72381],[-193,-178],[-53,180],[-204,-201],[-200,215],[-218,8],[-367,-372]],[[65869,72978],[-333,34],[-13,-336],[-387,38],[-10,-331]],[[66369,72203],[-138,22],[-181,381],[-115,89],[-66,283]],[[66462,72010],[-93,193]],[[70739,72698],[-96,16],[-36,-668]],[[71501,70952],[-18,521],[-108,427],[-579,113],[38,668],[-95,17]],[[75132,70768],[-136,-509]],[[75857,70716],[-397,82],[-6,-92],[-322,62]],[[77156,70651],[-252,-537],[-163,6]],[[77672,69916],[-119,18],[-397,717]],[[77671,69910],[1,6]],[[53890,73726],[34,-196],[-119,-171],[-59,-351]],[[54597,73733],[-707,-7]],[[54596,71886],[1,1847]],[[79679,70141],[148,-113],[-69,-165],[217,-315],[-76,-135],[97,-318]],[[80173,70635],[22,-337],[-220,-172],[-296,15]],[[80511,70688],[-216,156],[-122,-209]],[[80512,70687],[-1,1]],[[80816,69758],[-99,-58],[-114,182],[-142,691],[51,114]],[[80847,69485],[-31,273]],[[55773,73737],[-1176,-4]],[[55497,72465],[3,796],[273,476]],[[79679,70141],[-70,-370],[-248,-127],[-145,-181],[-171,70]],[[57405,73558],[-231,-104],[-6,-882]],[[57569,73554],[-164,4]],[[58412,73535],[-569,255],[-274,-236]],[[29997,74760],[340,-4157]],[[31713,73405],[-130,1712],[-1586,-357]],[[31720,73096],[-7,309]],[[72701,71983],[-70,-1136]],[[73424,71817],[-244,23],[-174,-239],[-305,382]],[[73662,71491],[-238,326]],[[60782,73190],[-191,8],[-13,-502]],[[61457,72987],[-388,21],[4,164],[-291,18]],[[61450,72652],[7,335]],[[82566,70514],[-12,-442],[-90,-64],[-85,-382],[-182,-296]],[[82654,70912],[-88,-398]],[[82966,70781],[-9,216],[-303,-85]],[[83041,69790],[-119,339],[-128,13],[4,239],[168,400]],[[83073,69700],[-32,90]],[[83084,69659],[-11,41]],[[83072,69643],[12,16]],[[83063,69473],[9,170]],[[83018,69047],[45,426]],[[82921,68728],[97,319]],[[76465,71247],[-137,-544]],[[76733,71353],[-268,-106]],[[77136,70747],[-176,8],[-130,466],[-97,132]],[[77156,70651],[-20,96]],[[74525,71652],[-30,-332],[-95,19],[-409,-306]],[[75306,71111],[-99,164],[-510,117],[21,219],[-193,41]],[[75132,70768],[174,343]],[[70749,72861],[-10,-163]],[[71853,73522],[-505,83],[-161,-339],[-387,-428],[-51,23]],[[71963,72375],[-79,269],[112,172],[-184,30],[41,676]],[[71702,71170],[60,522],[165,371],[36,312]],[[61669,73811],[-3,-166],[-202,-321],[-7,-337]],[[62191,73777],[-522,34]],[[62396,72882],[-158,491],[-47,404]],[[79679,70141],[-123,733],[49,73]],[[78794,70697],[-211,-575]],[[79337,71449],[-183,232],[-360,-984]],[[79605,70947],[-268,502]],[[72556,72260],[-186,-33],[-62,-164],[-96,217],[-92,-181],[-157,276]],[[72701,71983],[-145,277]],[[83191,70773],[46,-427],[91,-213],[123,180],[-121,327],[-139,133]],[[83589,70041],[163,-321],[61,73],[-224,248]],[[83041,69790],[221,336],[-89,507],[-207,148]],[[83317,69335],[241,-121],[216,258],[-176,256],[46,79],[-167,307],[-73,-665],[-87,-114]],[[83097,69395],[91,-269],[128,38],[111,837],[-226,-272],[-104,-334]],[[83500,68939],[45,233],[-371,-67],[-86,229],[-70,-287]],[[77672,69916],[11,613],[-218,293]],[[77465,70822],[-329,-75]],[[77513,71498],[-48,-676]],[[77947,71411],[-434,87]],[[78133,70931],[-186,480]],[[78119,70739],[14,192]],[[55756,74580],[-55,-370],[72,-473]],[[56650,74558],[-894,22]],[[56644,73665],[6,893]],[[56637,73026],[7,639]],[[62465,74239],[-163,-46],[-34,-421],[-77,5]],[[63224,73203],[-297,25],[-235,306],[-2,285],[-225,420]],[[63246,72694],[-22,509]],[[57405,73558],[-111,92],[-650,15]],[[81018,70754],[44,-566],[-128,-361],[-118,-69]],[[81407,71103],[-93,-302],[-296,-47]],[[82019,70602],[-612,501]],[[81726,69716],[62,365],[145,205],[86,316]],[[66523,73590],[-19,-502],[-135,-885]],[[67288,73494],[-765,96]],[[67232,72143],[56,1351]],[[63907,73893],[227,-66],[35,-274],[121,-187],[-176,-69],[63,-284],[-247,-80],[36,-394]],[[64051,74215],[-211,-17],[67,-305]],[[64093,74225],[-42,-10]],[[64094,74249],[-1,-24]],[[64648,73772],[-69,275],[-250,113],[-20,199],[-215,-110]],[[64940,72658],[-134,516],[-107,96],[-51,502]],[[75395,71606],[-89,-495]],[[75874,70964],[-121,401],[-358,241]],[[33424,73769],[-1711,-364]],[[82151,71131],[-132,-529]],[[82566,70514],[-99,-17],[-316,634]],[[73652,72337],[-152,-219],[-76,-301]],[[74569,72320],[-786,157],[-131,-140]],[[74525,71652],[44,668]],[[65608,74351],[-45,-469],[139,-534],[167,-370]],[[66549,74259],[-941,92]],[[66523,73590],[26,669]],[[60034,74402],[-58,-334],[-401,20]],[[60501,74379],[-467,23]],[[60735,74370],[-234,9]],[[60782,73190],[21,841],[-68,339]],[[78454,71359],[-321,-428]],[[78794,70697],[-72,-97],[-211,477],[-57,282]],[[68055,73397],[-61,-1351]],[[68959,73264],[-904,133]],[[68963,72951],[-4,313]],[[68055,73397],[-767,97]],[[64690,74447],[-42,-675]],[[65608,74351],[-918,96]],[[63216,73982],[-80,-334],[104,-109],[-16,-336]],[[63907,73893],[-34,-145],[-175,167],[-482,67]],[[76017,72040],[-67,-999],[26,-160]],[[76035,72036],[-18,4]],[[76469,72329],[-179,35],[-255,-328]],[[76462,72206],[7,123]],[[76465,71247],[-3,959]],[[80910,70742],[-398,-55]],[[81018,70754],[-108,-12]],[[51080,74145],[-217,-1075]],[[51705,73839],[-317,0],[-308,306]],[[51710,72929],[-5,910]],[[51701,74280],[4,-441]],[[51961,74403],[-70,150],[-190,-273]],[[52697,74067],[-736,336]],[[52703,72977],[-6,1090]],[[53050,74808],[-84,82],[-269,-823]],[[54020,73841],[-970,967]],[[53890,73726],[130,115]],[[69674,74078],[-94,-238],[132,-124],[50,-408],[-42,-371],[161,-122]],[[70436,73962],[-762,116]],[[70749,72861],[-94,53],[27,466],[-191,31],[27,484],[-82,67]],[[75524,72148],[57,-134],[-231,-189],[45,-219]],[[76017,72040],[-493,108]],[[44016,74220],[70,-1675]],[[44826,74302],[-810,-82]],[[44977,74316],[-151,-14]],[[45048,72643],[-71,1673]],[[45659,74379],[-682,-63]],[[45953,74409],[-294,-30]],[[46010,72723],[-57,1686]],[[46762,74486],[-809,-77]],[[46919,74496],[-157,-10]],[[46972,72809],[-53,1687]],[[43045,74119],[64,-1671]],[[43863,74207],[-818,-88]],[[44016,74220],[-153,-13]],[[41940,73994],[-498,-67]],[[42902,74102],[-962,-108]],[[43045,74119],[-143,-17]],[[76908,71866],[-156,-224],[-19,-289]],[[77212,72027],[-203,-12],[-101,-149]],[[77513,71498],[-205,211],[-96,318]],[[47743,74557],[-824,-61]],[[47898,74570],[-155,-13]],[[47939,72908],[-41,1662]],[[48864,74635],[40,-1669]],[[49230,74661],[-366,-26]],[[49944,73992],[-714,669]],[[50101,73033],[-11,821],[-146,138]],[[50570,75339],[-78,-243],[-146,143],[-402,-1247]],[[50958,74969],[-388,370]],[[51226,74711],[-268,258]],[[51080,74145],[146,566]],[[48718,74628],[-820,-58]],[[48864,74635],[-146,-7]],[[25674,73283],[-3124,-3086],[-308,-317]],[[27495,72591],[-1334,-338],[-72,773],[-380,-103],[-35,360]],[[27732,69951],[-237,2640]],[[79732,70961],[-127,-14]],[[80173,70636],[-441,325]],[[80173,70635],[0,1]],[[74635,72647],[-66,-327]],[[75319,72837],[-241,52],[-158,-302],[-285,60]],[[75524,72148],[-233,429],[28,260]],[[72792,73353],[-49,-739],[-160,-137],[-27,-217]],[[73214,73604],[-207,42],[-23,-330],[-192,37]],[[73559,73216],[23,318],[-368,70]],[[73652,72337],[-144,118],[51,761]],[[61680,74315],[-945,55]],[[61669,73811],[11,504]],[[78521,71988],[64,-297],[-175,-233],[44,-99]],[[78828,72713],[-171,-253],[-136,-472]],[[79276,71699],[-448,1014]],[[79337,71449],[-61,250]],[[76908,71866],[17,272],[-463,68]],[[27343,74097],[152,-1506]],[[29997,74760],[-2654,-663]],[[71964,73834],[-16,-329],[-95,17]],[[72733,73695],[-769,139]],[[72792,73353],[22,331],[-81,11]],[[56748,75679],[-91,-1],[-7,-1120]],[[57664,75662],[-916,17]],[[57548,75168],[116,494]],[[57569,73554],[-159,740],[-30,881],[168,-7]],[[62492,74928],[-72,-358],[100,-103],[-55,-228]],[[63093,75224],[-50,-331],[-338,402],[-213,-367]],[[63216,73982],[17,431],[-57,512],[-83,299]],[[78010,72056],[-63,-645]],[[78521,71988],[-511,68]],[[58482,75116],[-934,52]],[[58422,74288],[8,745],[52,83]],[[54636,75057],[-90,-528],[-107,-18],[-243,-533],[-176,-137]],[[54640,75083],[-4,-26]],[[55816,74776],[-1176,307]],[[55756,74580],[60,196]],[[80173,70636],[-15,1495]],[[80048,72197],[-107,-171],[-209,-1065]],[[80158,72131],[-110,66]],[[80255,72119],[-97,12]],[[80658,72224],[-403,-105]],[[80511,70688],[145,554],[2,982]],[[58747,75626],[-44,-200],[-221,-310]],[[59574,75588],[-827,38]],[[59732,75247],[-163,85],[5,256]],[[59223,74098],[152,164],[-8,341],[194,428],[171,216]],[[53380,75807],[-330,-999]],[[53800,75883],[-420,-76]],[[54636,75057],[-836,826]],[[51701,74280],[-475,431]],[[81016,72468],[-130,-189],[-228,-55]],[[81177,72574],[-161,-106]],[[81372,71649],[-99,284],[-96,641]],[[81478,71493],[-106,156]],[[80910,70742],[150,728],[179,75],[239,-52]],[[68940,74551],[19,-1287]],[[68991,75298],[-51,-747]],[[69700,75194],[-709,104]],[[69674,74078],[-83,167],[-85,508],[154,215],[40,226]],[[79870,72395],[-184,-297],[-317,-206],[-93,-193]],[[80048,72197],[-178,198]],[[74237,73750],[-251,47],[-19,-332],[-177,32],[-36,-302],[-195,21]],[[74635,72647],[-1,509],[-292,123],[-105,471]],[[77377,72535],[-165,-508]],[[78035,72400],[-658,135]],[[78010,72056],[25,344]],[[81544,71316],[-66,177]],[[81407,71103],[137,213]],[[61699,75153],[-19,-838]],[[62278,75114],[-579,39]],[[62492,74928],[-24,171],[-190,15]],[[70782,74534],[-224,42],[-97,-172],[-25,-442]],[[71900,74351],[-1118,183]],[[71964,73834],[-96,18],[32,499]],[[52322,76054],[-91,-176],[95,-150],[-201,-163],[-104,-229],[120,-176],[-91,-199],[-113,39],[24,-597]],[[52974,76207],[-195,-595],[-457,442]],[[53380,75807],[-406,400]],[[49688,76133],[-458,-1472]],[[50074,76214],[-52,-154],[-334,73]],[[50570,75339],[94,294],[-590,581]],[[63164,75719],[-71,-495]],[[63480,75761],[-316,-42]],[[63593,75692],[-113,69]],[[63713,75221],[-181,115],[-29,323],[90,33]],[[64094,74249],[-121,264],[47,117],[-206,231],[-101,360]],[[64093,74225],[-42,-10]],[[82384,72181],[-132,-139],[-78,-328],[-357,-13],[-69,-217],[-204,-168]],[[82519,71828],[179,99],[-55,241],[66,244],[-199,-65],[-126,-166]],[[82151,71131],[368,697]],[[60034,74402],[133,668],[-218,10],[2,266],[-210,29],[-9,-128]],[[82650,72163],[58,-226],[201,72],[-142,407],[-117,-253]],[[82910,71054],[272,71],[-128,156],[-144,-227]],[[82814,71215],[52,-187],[184,197],[-65,284],[-171,-294]],[[82654,70912],[226,80],[-17,247],[84,315],[120,55],[-87,222],[-153,-24],[-184,-191],[-124,212]],[[76107,73230],[-72,-1194]],[[76211,73209],[-104,21]],[[76491,72972],[-5,184],[-275,53]],[[76469,72329],[22,643]],[[75315,73113],[4,-276]],[[75634,73309],[-100,-174],[-219,-22]],[[76107,73230],[-473,79]],[[76714,73284],[-223,-312]],[[77483,72980],[-780,142],[11,162]],[[77377,72535],[106,445]],[[68127,74917],[-72,-1520]],[[68940,74551],[-291,187],[-522,179]],[[64689,75455],[-221,23],[14,-160],[-326,-105],[-443,8]],[[64690,74447],[27,781],[-28,227]],[[67366,75106],[-78,-1612]],[[68066,74933],[-700,173]],[[68127,74917],[-61,16]],[[66734,75262],[-57,-1018],[-128,15]],[[67207,75145],[-473,117]],[[67366,75106],[-159,39]],[[51394,76308],[-436,-1339]],[[51696,76642],[-156,-477],[-146,143]],[[52322,76054],[-626,588]],[[78897,72900],[-69,-187]],[[79258,73075],[-361,-175]],[[79547,72891],[-85,140],[-204,44]],[[79870,72395],[-323,496]],[[60467,76066],[8,-261],[164,-667],[-138,-759]],[[61614,75661],[-483,28],[5,336],[-669,41]],[[61699,75153],[-85,508]],[[59993,77412],[-13,-666],[-191,10],[-14,-675],[-194,8],[-7,-501]],[[60478,77455],[-98,-63],[-387,20]],[[60964,76772],[-358,593],[-128,90]],[[60467,76066],[128,311],[197,94],[172,301]],[[74130,74782],[121,-667],[-14,-365]],[[74755,74659],[-625,123]],[[75263,74008],[-152,262],[-377,56],[21,333]],[[75232,73945],[31,63]],[[75315,73113],[-100,606],[17,226]],[[56116,76658],[-32,-349],[-210,-292],[-85,-325],[-19,-439],[46,-477]],[[56633,77289],[-187,-161],[-6,-209],[-134,-235],[-190,-26]],[[56891,76897],[-258,392]],[[56748,75679],[-76,203],[49,586],[170,429]],[[78081,73063],[-46,-663]],[[78330,73033],[-249,30]],[[78897,72900],[-567,133]],[[82467,72753],[156,-62],[47,150],[-203,-88]],[[82664,72686],[91,-179],[9,505],[-100,-326]],[[82384,72181],[205,236]],[[82100,72683],[-303,-177],[-267,-352],[3,-367],[-161,-138]],[[82377,72786],[-152,88],[-125,-191]],[[82589,72417],[62,187],[-274,182]],[[44766,75972],[60,-1670]],[[44754,76333],[12,-361]],[[45607,75875],[-66,-42],[-25,548],[-762,-48]],[[45659,74379],[-52,1496]],[[43804,75875],[59,-1668]],[[44766,75972],[-962,-97]],[[42837,75770],[65,-1668]],[[43804,75875],[-967,-105]],[[41870,75654],[70,-1660]],[[41930,75662],[-60,-8]],[[42779,75763],[-849,-101]],[[42837,75770],[-58,-7]],[[40872,75529],[62,-1335]],[[41870,75654],[-998,-125]],[[46722,75978],[-1115,-103]],[[46762,74486],[-40,1492]],[[55142,76568],[-170,-528],[-202,-123],[-130,-834]],[[55233,77007],[46,-195],[-38,-378],[-99,134]],[[56116,76658],[-716,202],[-167,147]],[[47684,76492],[59,-1935]],[[47904,76831],[-220,-339]],[[48659,76974],[-70,-64],[-138,261],[-260,-237],[-123,168],[-42,-230],[-122,-41]],[[48718,74628],[-59,2346]],[[46946,76427],[-233,-22],[9,-427]],[[47684,76492],[-738,-65]],[[48871,77010],[-212,-36]],[[49061,76931],[-190,79]],[[49688,76133],[-174,40],[-43,294],[-410,464]],[[73381,74919],[-45,-660],[-96,19],[-26,-674]],[[74053,74796],[-672,123]],[[74130,74782],[-77,14]],[[72735,75388],[-29,-496],[95,-18],[-68,-1179]],[[73331,75613],[-160,-32],[-23,-277],[-205,333],[-21,-288],[-187,39]],[[73381,74919],[22,305],[-94,46],[22,343]],[[64699,75791],[-10,-336]],[[65625,75626],[-69,75],[-857,90]],[[65852,75467],[-227,159]],[[65608,74351],[211,719],[33,397]],[[66130,75402],[-278,65]],[[66543,75307],[-413,95]],[[66734,75262],[-191,45]],[[77469,73222],[14,-242]],[[77739,73334],[-270,-112]],[[78081,73063],[13,190],[-355,81]],[[50600,77081],[-175,174]],[[51394,76308],[-794,773]],[[50425,77255],[-351,-1041]],[[81833,73377],[-88,-158],[-343,-318],[-225,-327]],[[82100,72683],[-97,503],[-170,191]],[[54289,77354],[-489,-1471]],[[55142,76568],[-853,786]],[[37664,78857],[54,-654],[225,-4447]],[[39304,77411],[-1640,1446]],[[39622,74014],[-318,3397]],[[35774,75749],[81,-125],[-53,-221],[115,-2000]],[[37537,78968],[-411,-746],[-336,-227],[-4,-162],[-268,-418],[-73,-383],[-299,-367],[-153,-497],[-219,-419]],[[37664,78857],[-127,111]],[[35774,75749],[-150,-68],[-246,-355],[-247,-1027],[-262,-247]],[[40337,75455],[-134,-385],[-119,8],[-96,-234],[-41,-356],[-89,62],[-153,-524]],[[40872,75529],[-535,-74]],[[40227,78843],[-923,-1432]],[[41423,76677],[-1196,2166]],[[40337,75455],[187,128],[-11,458],[65,300],[380,60],[117,228],[348,48]],[[75576,73887],[-344,58]],[[75634,73309],[33,564],[-91,14]],[[70064,77090],[-53,-465],[104,-47],[24,-257],[-107,70],[52,-454],[-333,-345],[-51,-398]],[[70388,76640],[-106,84],[-35,274],[-183,92]],[[70782,74534],[-2,506],[-95,18],[31,547],[-95,177],[117,122],[-52,244],[-208,86],[-90,406]],[[57772,76390],[-108,-728]],[[58561,76687],[-204,-189],[-585,-108]],[[58842,76612],[-118,-94],[-163,169]],[[58747,75626],[167,540],[-72,446]],[[62330,77418],[-52,-2304]],[[62666,77621],[-178,-96],[-51,192],[-131,-128],[24,-171]],[[63164,75719],[-280,86],[-12,356],[-134,-12],[-83,325],[45,327],[158,144],[-162,8],[-96,-203],[12,286],[147,100],[-156,140],[63,345]],[[79982,73322],[-392,99],[-43,-530]],[[80168,73129],[12,145],[-198,48]],[[80255,72119],[41,486],[-166,39],[38,485]],[[76391,74326],[5,-234],[-151,-318],[-34,-565]],[[76573,74288],[-182,38]],[[76859,74226],[-286,62]],[[76714,73284],[156,142],[-36,151],[25,649]],[[80778,73676],[-254,-281],[-356,-266]],[[80974,73857],[-196,-181]],[[81016,72468],[-141,243],[99,1146]],[[71919,74647],[-19,-296]],[[72353,75458],[-260,38],[-150,-389],[-24,-460]],[[72735,75388],[-382,70]],[[75882,74436],[-234,52],[-72,-601]],[[76391,74326],[-509,110]],[[61959,76861],[-312,-539],[-33,-661]],[[62178,77392],[-219,-531]],[[62330,77418],[-152,-26]],[[77377,74006],[-39,111],[-479,109]],[[77469,73222],[-127,551],[35,233]],[[68991,75298],[75,998]],[[68131,76428],[-65,-1495]],[[68323,76402],[-192,26]],[[69066,76296],[-743,106]],[[63920,76201],[-283,-220],[-44,-289]],[[64707,76125],[-787,76]],[[64699,75791],[8,334]],[[52307,77839],[-126,133],[-140,-295]],[[53219,76926],[-912,913]],[[52974,76207],[245,719]],[[52041,77677],[-345,-1035]],[[78094,74166],[-145,-176],[-148,29],[-62,-685]],[[78366,74004],[-279,54],[7,108]],[[78406,73361],[-40,643]],[[78330,73033],[76,328]],[[79286,73486],[-336,58],[6,102],[-287,-46],[-22,-289],[-241,50]],[[79258,73075],[28,411]],[[77474,74783],[-50,-787],[-47,10]],[[77502,75197],[-28,-414]],[[78154,75070],[-652,127]],[[78094,74166],[60,904]],[[57926,78030],[-239,-364],[-102,-339],[-102,-91],[-510,-177],[-82,-162]],[[57772,76390],[169,242],[18,642],[-47,226],[14,530]],[[59312,78165],[0,-210],[-175,-295],[-18,-498],[-107,-106],[65,-176],[-136,-40],[-99,-228]],[[59402,78125],[-90,40]],[[59993,77412],[-294,15],[-94,340],[-175,8],[-28,350]],[[81179,74185],[-44,-290],[-161,-38]],[[81775,74201],[-142,-95],[-223,127],[-231,-48]],[[81935,73682],[-160,519]],[[81833,73377],[102,305]],[[70682,76800],[-206,-196],[-88,36]],[[71036,76685],[-242,161],[-112,-46]],[[71919,74647],[-267,177],[-144,320],[-94,719],[-158,244],[-220,578]],[[67267,76532],[-60,-1387]],[[67747,76474],[-480,58]],[[68131,76428],[-384,46]],[[54132,77569],[-530,517]],[[54289,77354],[-157,215]],[[53602,78086],[-383,-1160]],[[79070,74314],[132,-386],[84,-442]],[[79095,74509],[-25,-195]],[[80076,74495],[-355,82],[-64,-135],[-562,67]],[[80102,74080],[-26,415]],[[79982,73322],[34,434],[86,324]],[[61959,76861],[-871,400],[-124,-489]],[[66912,76575],[-47,-399],[-299,-238],[-23,-631]],[[67168,76544],[-256,31]],[[67267,76532],[-99,12]],[[75480,74913],[-54,-397],[-143,-250],[-20,-258]],[[75909,74888],[-391,137],[-38,-112]],[[75882,74436],[27,452]],[[74829,75819],[-74,-1160]],[[75454,75722],[-625,97]],[[75480,74913],[-26,809]],[[66213,76819],[-52,-501],[-31,-916]],[[66784,76589],[-322,37],[8,167],[-257,26]],[[66912,76575],[-128,14]],[[78706,74383],[-340,-379]],[[79070,74314],[-364,69]],[[62897,78455],[0,-346],[75,-200],[-306,-288]],[[63028,78637],[-131,-182]],[[63022,78729],[6,-92]],[[63069,78614],[-47,115]],[[63139,77873],[-62,290],[123,182],[-131,269]],[[63480,75761],[-30,441],[-179,-81],[24,224],[141,71],[-184,138],[0,313],[-114,185],[143,339],[-70,195],[-203,71],[131,216]],[[65677,77031],[-52,-1405]],[[66067,77044],[-390,-13]],[[66213,76819],[-156,1],[10,224]],[[72429,76722],[-117,40],[-19,-283],[-1257,206]],[[72353,75458],[99,578],[-62,103],[39,583]],[[63942,77210],[-280,-37],[-306,190],[-31,361],[-135,-25],[-51,174]],[[63920,76201],[22,1009]],[[27343,74097],[-1155,-307],[-514,-507]],[[49859,77943],[-119,-200],[80,-159],[-203,-327],[-160,95],[-167,-251],[-180,22],[-49,-192]],[[50425,77255],[-566,688]],[[64938,77109],[-34,-1004],[-197,20]],[[65100,77091],[-162,18]],[[65646,77034],[-546,57]],[[65677,77031],[-31,3]],[[80457,74196],[-161,-159],[-194,43]],[[80778,73676],[-189,436],[-132,84]],[[52041,77677],[-941,933]],[[51100,78610],[-500,-1529]],[[44750,76440],[4,-107]],[[45798,78230],[40,-1675],[-1088,-115]],[[46891,78311],[-1093,-81]],[[46946,76427],[-55,1884]],[[69156,77520],[-90,-1224]],[[70020,77212],[-92,84],[-583,84],[-189,140]],[[70064,77090],[-44,122]],[[82484,73444],[216,-288],[51,61],[-148,567],[-119,-340]],[[82252,74041],[-317,-359]],[[82377,72786],[251,37],[63,190],[-203,488],[17,321],[111,185],[-364,34]],[[54278,79038],[-169,-1071],[23,-398]],[[55188,78577],[-397,8],[-513,453]],[[55233,77007],[160,701],[-131,190],[-5,417],[-69,262]],[[42727,77928],[52,-2165]],[[43726,78061],[-999,-133]],[[43804,75875],[-78,2186]],[[41873,77030],[57,-1368]],[[42560,77905],[-83,-492],[-124,-194],[-158,-38],[-144,-256],[-178,105]],[[42727,77928],[-167,-23]],[[58306,78498],[-380,-468]],[[58478,78358],[-172,140]],[[58561,76687],[7,396],[-114,219],[24,1056]],[[44681,78157],[-955,-96]],[[44750,76440],[-69,1717]],[[41873,77030],[-106,86],[-201,-340],[-143,-99]],[[76661,74983],[-88,-695]],[[77205,74855],[-544,128]],[[77474,74783],[-269,72]],[[76271,75075],[-287,49],[-75,-236]],[[76661,74983],[-390,92]],[[74150,76404],[-97,-1608]],[[74303,76380],[-153,24]],[[74829,75819],[-113,287],[-335,-32],[-78,306]],[[73389,76557],[-58,-944]],[[74150,76404],[-761,153]],[[64063,77298],[-121,-88]],[[64938,77109],[-664,64],[-211,125]],[[58720,78258],[-242,100]],[[59312,78165],[-592,93]],[[78422,75022],[-268,48]],[[78562,74902],[-140,120]],[[78706,74383],[-144,519]],[[55469,79202],[-121,-215],[90,-193],[-60,-176],[-190,-41]],[[55818,78710],[-349,492]],[[56719,77437],[-901,1273]],[[56633,77289],[86,148]],[[47867,78382],[-976,-71]],[[47904,76831],[-37,1551]],[[80766,74867],[-214,-230],[-95,-441]],[[81179,74185],[85,349],[-188,72],[-127,299],[-183,-38]],[[72495,77472],[-66,-750]],[[73064,77376],[-569,96]],[[73447,77310],[-383,66]],[[73389,76557],[58,753]],[[45277,78200],[-596,-43]],[[45798,78230],[-521,-30]],[[56945,78354],[-118,-708],[-108,-209]],[[57484,78677],[-539,-323]],[[57683,78769],[-199,-92]],[[58306,78498],[-623,271]],[[75626,76587],[-179,-400],[7,-465]],[[75828,76558],[-202,29]],[[76310,75742],[-521,118],[39,698]],[[76271,75075],[39,667]],[[53602,78086],[-444,435]],[[52695,78972],[-388,-1133]],[[53158,78521],[-463,451]],[[60812,79186],[-39,-1386],[-100,-244],[-195,-101]],[[61243,79137],[-431,49]],[[61842,78835],[-197,-127],[-182,201],[-50,218],[-170,10]],[[62178,77392],[-109,137],[-166,-68],[14,731],[53,633],[-128,10]],[[48081,78957],[-227,-15],[13,-560]],[[48830,79000],[-749,-43]],[[48871,77010],[-41,1990]],[[49073,79089],[-243,-89]],[[50064,79137],[-991,-48]],[[50082,78723],[-18,414]],[[49859,77943],[96,291],[-32,255],[159,234]],[[78923,76068],[-143,-807],[-194,-155],[-24,-204]],[[79106,76033],[-183,35]],[[79344,75366],[27,137],[-239,54],[-26,476]],[[79095,74509],[244,501],[5,356]],[[80052,75198],[-82,-340],[131,-23],[-25,-340]],[[80721,77363],[-108,-895],[-113,29],[-36,-547],[-213,-167],[-199,-585]],[[81113,77317],[-392,46]],[[81127,75603],[-538,122],[59,830],[518,-86],[-53,848]],[[80766,74867],[163,165],[29,326],[169,245]],[[51090,78742],[-1008,-19]],[[51100,78610],[-10,132]],[[82545,74085],[138,169],[-167,478],[-132,-188],[46,-448],[101,-3]],[[82545,74085],[-14,8]],[[81763,74825],[12,-624]],[[82193,75060],[-41,-182],[-117,109],[-272,-162]],[[82314,74063],[119,144],[-101,442],[112,499],[-251,-88]],[[82314,74063],[-58,-13]],[[82252,74041],[4,9]],[[76545,76388],[-37,-675],[-198,29]],[[76611,76376],[-66,12]],[[77205,74855],[-85,333],[-256,265],[-28,250],[-200,368],[-25,305]],[[76860,76322],[-249,54]],[[77352,76222],[-492,100]],[[77566,76178],[-214,44]],[[77502,75197],[64,981]],[[68411,78065],[-88,-1663]],[[69190,77961],[-779,104]],[[69156,77520],[34,441]],[[67429,78140],[-51,-1286],[-196,25],[-14,-335]],[[67460,78522],[-31,-382]],[[67847,78475],[-387,47]],[[67747,76474],[70,1657],[30,344]],[[66849,78238],[-65,-1649]],[[67429,78140],[-238,134],[-53,-113],[-289,77]],[[68329,78411],[-482,64]],[[68411,78065],[15,335],[-97,11]],[[66502,78279],[-10,-279],[-162,19],[-41,-219],[-185,-144],[-37,-612]],[[66708,78255],[-206,24]],[[66849,78238],[-141,17]],[[79488,75331],[-144,35]],[[80052,75198],[-564,133]],[[56026,79469],[-206,-296],[-2,-463]],[[56270,79599],[-102,-313],[-142,183]],[[56945,78354],[-181,405],[-494,840]],[[40487,79264],[-260,-421]],[[42062,81815],[-1575,-2551]],[[43682,79692],[-706,-86],[-10,224],[-391,-49],[-48,1201],[-430,-47],[-35,880]],[[42560,77905],[367,363],[373,96],[208,280],[174,1048]],[[81484,75366],[-245,-42],[-112,279]],[[81763,74825],[-279,541]],[[63946,78543],[-877,71]],[[64169,78524],[-223,19]],[[64063,77298],[75,156],[31,1070]],[[59409,79338],[56,-234],[-88,-153],[116,-230],[-84,-186],[-7,-410]],[[60516,79248],[-836,23],[-271,67]],[[60812,79186],[-296,62]],[[53548,79963],[-36,-335],[-175,-324],[-62,-539],[-117,-244]],[[53651,80099],[-103,-136]],[[54278,79038],[-182,198],[-233,677],[-212,186]],[[78377,75996],[85,-514],[-40,-460]],[[78579,76129],[-202,-133]],[[78923,76068],[-344,61]],[[64615,78482],[-446,42]],[[65108,78433],[-493,49]],[[65146,78429],[-38,4]],[[65100,77091],[46,1338]],[[65527,78389],[-381,40]],[[65695,78370],[-168,19]],[[65646,77034],[49,1336]],[[66502,78279],[-807,91]],[[61983,79272],[-141,-437]],[[62743,79219],[-760,53]],[[62851,78557],[-102,194],[-6,468]],[[62897,78455],[-46,102]],[[78084,76217],[-508,97],[-10,-136]],[[78377,75996],[15,167],[-308,54]],[[51243,79240],[-153,-498]],[[52219,79857],[-589,-468],[-387,-149]],[[52695,78972],[-364,362],[-112,523]],[[70036,78654],[91,-145],[-75,-161],[57,-244],[-21,-535],[-68,-357]],[[70004,78732],[32,-78]],[[70010,78819],[-6,-87]],[[71182,79645],[89,133],[-290,714],[-524,250],[-254,9],[382,-162],[34,-106],[-335,-433],[-67,-254],[55,-237],[-101,-670],[-161,-70]],[[70763,77738],[-43,512],[225,439],[249,223],[-12,733]],[[70682,76800],[49,943],[32,-5]],[[74773,77055],[-45,-773],[-425,98]],[[75695,76862],[-922,193]],[[75626,76587],[69,275]],[[71591,77603],[-828,135]],[[72309,77494],[-718,109]],[[72495,77472],[-186,22]],[[76191,76498],[-363,60]],[[76545,76388],[-354,110]],[[73736,77261],[-289,49]],[[74755,77059],[-1019,202]],[[74773,77055],[-18,4]],[[58784,81760],[33,-2698],[-97,-804]],[[59153,81740],[-369,20]],[[59083,81138],[-41,223],[111,379]],[[59409,79338],[-7,240],[-208,804],[-116,234],[83,301],[-78,221]],[[79583,76525],[-95,-1194]],[[80404,77402],[-49,-431],[-344,-20],[-183,-352],[-245,-74]],[[80642,77372],[-238,30]],[[80721,77363],[-79,9]],[[79498,76622],[-75,-361],[-259,50],[-58,-278]],[[79583,76525],[-85,97]],[[69261,78960],[-71,-999]],[[69355,80285],[-94,-1325]],[[70036,78654],[-72,191],[35,336],[-105,592],[16,484],[-149,240],[-3,-188],[-336,-99],[-67,75]],[[82342,75791],[133,-258],[59,98],[-87,703],[-27,-442],[-78,-101]],[[81615,76185],[-69,-793],[-62,-26]],[[82217,76459],[-220,-50],[-382,-224]],[[82193,75060],[254,442],[-115,295],[92,451],[-71,197],[-136,14]],[[58443,80689],[-48,-190],[83,-242],[-143,-165],[-113,-430],[-44,-508],[-169,-422],[-310,153],[-16,-116]],[[58367,81779],[37,-373],[-43,-362],[82,-355]],[[58784,81760],[-417,19]],[[56948,80852],[13,-199],[-352,-114],[-57,-391],[-116,75],[-46,-471],[-120,-153]],[[57174,80863],[-226,-11]],[[57532,80713],[16,137],[-374,13]],[[57484,78677],[-183,185],[231,1851]],[[52518,80993],[-216,-1071],[-83,-65]],[[52889,80618],[-371,375]],[[53548,79963],[-659,655]],[[40487,79264],[-736,872]],[[39751,80136],[-193,-26],[-2021,-1142]],[[54417,79616],[-139,-578]],[[55001,79458],[-584,158]],[[55469,79202],[-468,256]],[[46852,79756],[39,-1445]],[[48063,79837],[-1211,-81]],[[48081,78957],[-18,880]],[[45236,79640],[41,-1440]],[[46852,79756],[-1616,-116]],[[43652,81089],[202,-243],[-150,-266],[200,-508],[-4,-231],[-218,-149]],[[45187,81238],[-1535,-149]],[[45236,79640],[-49,1598]],[[76034,77909],[-9,-179],[128,-187],[39,-338],[-1,-707]],[[76958,77802],[-924,107]],[[76860,76322],[98,1480]],[[77146,77781],[-188,21]],[[77527,77736],[-381,45]],[[77352,76222],[26,405],[98,209],[51,900]],[[78179,77660],[-95,-1443]],[[78432,77632],[-253,28]],[[78920,77575],[-488,57]],[[78579,76129],[104,467],[174,225],[-165,109],[-47,250],[275,395]],[[77673,77718],[-146,18]],[[78179,77660],[-506,58]],[[76031,77909],[-138,-213],[-12,-265],[-186,-569]],[[76034,77909],[-3,0]],[[81493,78019],[-227,70],[-91,-190],[-62,-582]],[[81615,76185],[-211,211],[-14,438],[122,402],[-19,783]],[[58443,80689],[-911,24]],[[55065,80353],[-64,-895]],[[55970,80828],[-462,-14],[-443,-461]],[[56026,79469],[-56,1359]],[[63946,78543],[-90,676],[-151,492],[38,180]],[[63690,79870],[-95,-365],[-324,120],[-97,-64],[141,-437],[-208,97],[-85,-138],[0,-354]],[[63743,79891],[-53,-21]],[[63028,78637],[-177,-80]],[[50223,80811],[4,-277],[-100,-25],[-62,-424],[124,-273],[-106,-154],[107,-187],[-150,-168],[24,-166]],[[50651,81057],[-428,-246]],[[50806,80305],[-133,469],[-22,283]],[[51243,79240],[-262,452],[-175,613]],[[78951,77572],[-31,3]],[[78951,77572],[61,-7]],[[79344,77529],[-332,36]],[[79498,76622],[-130,33],[-71,298],[47,576]],[[62890,80550],[24,-783],[-171,-548]],[[62997,80543],[-107,7]],[[63412,80511],[-415,32]],[[63690,79870],[-146,575],[-132,66]],[[66539,79562],[169,-1307]],[[66861,80320],[-259,-453],[-63,-305]],[[67500,79523],[-388,43],[20,503],[-195,76],[-76,175]],[[67460,78522],[40,1001]],[[65742,79473],[-215,-1084]],[[66539,79562],[-296,36],[-501,-125]],[[61214,80703],[55,-185],[-26,-1381]],[[61211,80729],[3,-26]],[[61477,80715],[-266,14]],[[61983,79272],[84,303],[9,360],[-65,409],[-97,119],[-356,40],[-81,212]],[[74602,77729],[153,-670]],[[74982,78670],[-50,-830],[-106,-151],[-224,40]],[[75079,78654],[-97,16]],[[75930,78335],[-449,83],[3,167],[-405,69]],[[76031,77909],[-101,426]],[[65153,79770],[-45,-1337]],[[65518,81131],[-202,-273],[-142,-465],[-21,-623]],[[65764,81315],[-46,-236],[-200,52]],[[65832,81332],[-68,-17]],[[65742,79473],[32,253],[58,1606]],[[71591,77603],[-213,320],[-43,296],[27,437],[229,650],[65,34]],[[71656,79340],[66,196],[-45,272],[-149,320],[-341,158],[25,-328],[157,-128],[-187,-185]],[[72413,79801],[0,22]],[[72188,79906],[225,-105]],[[72188,79906],[1,14]],[[72413,79823],[-224,97]],[[72411,79749],[-286,88],[-425,241],[275,-234],[161,-230],[-167,-172],[-82,231],[-199,-474],[-32,141]],[[72309,77494],[102,2255]],[[68359,79079],[-30,-668]],[[69261,78960],[-902,119]],[[64602,79557],[22,-362],[-68,-511],[59,-202]],[[64496,79834],[106,-277]],[[65153,79770],[-657,64]],[[73187,79722],[-208,19],[25,-136],[179,44]],[[73183,79649],[4,73]],[[73175,79435],[-127,-198],[-60,199],[-187,112],[-10,155],[-380,46]],[[73064,77376],[111,2059]],[[63754,79899],[-11,-8]],[[64602,79557],[-771,122],[-77,220]],[[74167,78300],[-368,60],[-63,-1099]],[[74602,77729],[-16,336],[-222,32],[-173,-139],[-24,342]],[[73183,79649],[538,-21],[-17,-190],[-268,-174],[-261,171]],[[73981,80004],[-529,-233],[-265,-49]],[[73959,79545],[22,459]],[[74167,78300],[-119,278],[140,539],[-229,428]],[[54163,81310],[15,-242],[-127,-378],[-118,-157],[-348,-233],[66,-201]],[[54441,81499],[7,-155],[-285,-34]],[[54417,79616],[15,336],[-53,522],[118,574],[88,73],[-144,378]],[[48392,80665],[-347,-21],[18,-807]],[[49044,80706],[-652,-41]],[[49073,79089],[-29,1617]],[[49760,80737],[-716,-31]],[[50223,80811],[-463,-74]],[[68369,79302],[-679,85],[-190,136]],[[68359,79079],[10,223]],[[52106,81128],[-435,-325],[-304,251],[-180,-155],[-127,-511],[-254,-83]],[[52172,81192],[-66,-64]],[[52518,80993],[-346,199]],[[56345,81433],[-275,-227],[-100,-378]],[[56948,80852],[-603,581]],[[60256,81002],[-10,-666],[290,-17],[-20,-1071]],[[61214,80703],[-275,14],[-1,194],[-557,28],[-125,63]],[[60257,81081],[-488,26],[-6,-335],[-195,8],[7,336],[-492,22]],[[60256,81002],[1,79]],[[80202,77427],[-858,102]],[[80404,77402],[-202,25]],[[54559,81904],[13,-246],[-131,-159]],[[55116,81825],[-557,79]],[[55065,80353],[51,1472]],[[62167,81364],[-77,-522],[-137,-157],[-476,30]],[[62457,81077],[-117,-41],[-173,328]],[[62890,80550],[160,382],[-368,-58],[-225,203]],[[74982,78670],[-99,18],[30,499],[-700,115],[-254,243]],[[81524,78355],[-31,-336]],[[82279,77050],[-220,16],[-535,1289]],[[82217,76459],[114,86],[97,-149],[138,85],[45,624],[-133,-129],[-199,74]],[[68414,80257],[-45,-955]],[[69355,80285],[-133,275],[-184,-73],[-20,-210],[-230,243],[-105,1],[-269,-264]],[[53505,81623],[-192,-87],[-159,-374],[-143,-170],[-122,-374]],[[54163,81310],[-658,313]],[[64090,81120],[-196,-114],[74,-242],[-5,-337],[-126,18],[-90,-252],[7,-294]],[[64323,81106],[-233,14]],[[64568,80993],[-245,113]],[[64496,79834],[-123,227],[-10,510],[205,422]],[[66101,81429],[-269,-97]],[[67031,81468],[-242,-55],[-79,103],[-212,-137],[-177,187],[-220,-137]],[[67223,81355],[-192,113]],[[66861,80320],[144,536],[31,337],[187,162]],[[76533,79053],[-276,-219],[-17,-223],[-196,-16],[-20,-276],[-94,16]],[[77146,77781],[-151,461],[-55,438],[-183,85],[-224,288]],[[46811,81361],[41,-1605]],[[47509,81409],[-698,-48]],[[48379,81480],[-870,-71]],[[48392,80665],[-13,815]],[[45687,81280],[-500,-42]],[[46811,81361],[-1124,-81]],[[76429,79414],[104,-361]],[[77656,79259],[-317,65],[-21,-108],[-889,198]],[[77673,77718],[100,558],[-121,27],[-40,346],[44,610]],[[67544,80572],[-44,-1049]],[[68414,80257],[49,78],[-384,167],[-426,324],[66,-165],[-175,-89]],[[77703,79923],[-47,-664]],[[77865,79901],[-162,22]],[[78135,79040],[-165,264],[-105,597]],[[78432,77632],[35,260],[-231,335],[50,274],[-149,284],[-2,255]],[[42510,82532],[-150,433],[-184,-118],[-371,118],[-47,253],[-247,559],[-86,617],[-74,7],[-42,549],[-206,76],[-57,213],[-181,237],[-37,270],[-266,-13],[-345,-287],[-216,-469],[-318,-135],[-128,-326]],[[42062,81815],[448,717]],[[39555,84516],[196,-4380]],[[64090,81120],[-326,31],[-352,-640]],[[43578,83022],[-738,-165],[-330,-325]],[[43652,81089],[-74,1933]],[[65082,81419],[-95,163],[-419,-589]],[[65518,81131],[-183,135],[-107,245],[-146,-92]],[[79013,79009],[-195,44],[-12,-166],[-671,153]],[[79242,78955],[-229,54]],[[79350,78449],[-108,506]],[[79012,77565],[74,11],[168,769],[96,104]],[[79012,77565],[-61,7]],[[67544,80572],[35,264],[-356,519]],[[80083,78464],[-97,7],[-333,-272],[-154,13],[-149,237]],[[80202,77427],[-59,163],[202,536],[-62,305],[-200,33]],[[39555,84516],[-348,-177],[-308,-365],[-207,-544],[-144,-44],[-367,-684],[-2,-212],[-210,-702],[-20,-585],[30,-649],[-262,-638],[1,-462],[-84,-378],[-97,-108]],[[55119,82419],[-3,-594]],[[56482,82111],[-321,521],[-311,-315],[-129,23],[-98,-231],[-249,268],[-255,42]],[[56345,81433],[137,678]],[[50557,81320],[94,-263]],[[51434,82620],[-877,-1300]],[[51553,82458],[-119,162]],[[52106,81128],[-245,795],[-308,535]],[[75159,80047],[-80,-1393]],[[75684,79949],[-525,98]],[[75930,78335],[-91,341],[40,297],[-195,976]],[[75916,80783],[-229,-232],[-43,-253],[40,-349]],[[76828,80446],[-888,169],[-24,168]],[[76429,79414],[128,635],[271,397]],[[80197,79998],[-114,-1534]],[[80501,80320],[-152,-68],[-152,-254]],[[80713,79840],[-212,480]],[[80787,79067],[-161,662],[87,111]],[[80642,77372],[145,1695]],[[82450,78687],[-135,12],[34,-399],[-95,-315],[70,-283],[331,43],[55,385]],[[82710,78130],[44,554],[-304,3]],[[82714,78129],[-71,-451],[89,-111],[74,535]],[[82806,78102],[-92,27]],[[82549,77192],[119,52],[29,233],[-148,-285]],[[81552,78682],[-28,-327]],[[82233,78491],[-681,191]],[[82279,77050],[141,195],[136,-123],[52,398],[-326,169],[27,290],[-142,158],[107,163],[-41,191]],[[81388,78892],[-601,175]],[[81566,78848],[-178,44]],[[81552,78682],[14,166]],[[75230,81091],[-164,-118],[-457,-513],[123,-41],[242,304],[225,-27]],[[75199,80696],[31,395]],[[75198,80671],[-177,43],[-99,-323],[-136,51],[-282,-214],[-79,-461],[-172,119],[16,203],[202,56],[48,329],[-538,-470]],[[75159,80047],[39,624]],[[52760,82550],[-106,-797],[-482,-561]],[[53206,82140],[-100,169],[-336,315],[-10,-74]],[[53505,81623],[-182,209],[-117,308]],[[57741,82290],[-292,12],[-275,-1439]],[[58374,82090],[-154,-105],[-153,76],[-32,203],[-294,26]],[[58367,81779],[7,311]],[[49104,82088],[-735,-26],[10,-582]],[[49745,82117],[-641,-29]],[[49760,80737],[-15,1380]],[[50069,82902],[-324,-785]],[[50300,82528],[-231,374]],[[50557,81320],[-257,1208]],[[63911,82482],[151,465],[183,156],[-2,391]],[[63495,82576],[416,-94]],[[64243,83494],[-230,-178],[-335,-96],[20,-195],[-203,-449]],[[62997,80543],[122,200],[51,505],[104,241],[184,43],[48,483],[177,152]],[[62558,82200],[79,-316],[-148,-108],[69,-200],[-34,-468],[-67,-31]],[[63683,82167],[-445,135],[-123,-282],[-136,-40],[-165,313],[-256,-93]],[[63965,82272],[-92,-123],[-190,18]],[[64188,82110],[-223,162]],[[64323,81106],[-135,1004]],[[56713,83189],[0,-277],[-101,-137],[-130,-664]],[[57755,83144],[-1042,45]],[[57741,82290],[14,854]],[[59140,82477],[13,-737]],[[60542,82460],[-256,-40],[-1146,57]],[[60257,81081],[195,80],[8,454],[66,-3],[8,396],[199,-8],[14,281],[-207,12],[2,167]],[[61042,82437],[-500,23]],[[61254,82214],[-212,223]],[[61211,80729],[77,230],[-59,146],[25,1109]],[[61907,81961],[-277,388],[-203,-205],[-173,70]],[[62167,81364],[-260,597]],[[80059,80206],[-120,-243],[-301,-403],[-312,-61],[-84,-544]],[[80197,79998],[-138,208]],[[52189,83550],[-636,-1092]],[[52760,82550],[-571,1000]],[[53537,82588],[-47,-383],[-284,-65]],[[54458,82496],[-281,-101],[-640,193]],[[54559,81904],[-98,22],[-3,570]],[[62534,82341],[-323,-280],[-304,-100]],[[62558,82200],[-24,141]],[[51434,82620],[-362,527],[36,98]],[[50863,83641],[-59,-373],[-504,-740]],[[51108,83245],[-245,396]],[[64463,82070],[-275,40]],[[65070,81631],[-519,253],[-88,186]],[[65082,81419],[-12,212]],[[79143,81250],[-184,-28],[-210,-271],[-146,-409],[-321,-302],[-272,-138],[-145,-201]],[[79236,80646],[-24,497],[-69,107]],[[79013,79009],[103,1413],[120,224]],[[77022,80550],[-194,-104]],[[77703,79923],[-164,140],[-84,-93],[-262,140],[-54,307],[-117,133]],[[65079,82690],[-82,-553],[73,-506]],[[65299,82661],[-220,29]],[[65764,81315],[-304,789],[-169,77],[8,480]],[[45389,85257],[-397,-507],[-96,-365],[-380,-337],[8,-355],[-188,-92],[-80,-470],[-580,-24],[-98,-85]],[[45615,83816],[-21,779],[-135,681],[-70,-19]],[[45687,81280],[-72,2536]],[[46755,83909],[-1140,-93]],[[46945,83922],[-190,-13]],[[47483,82236],[-405,-60],[-84,704],[-67,197],[18,845]],[[47509,81409],[-26,827]],[[47771,82892],[-174,-15],[17,-632],[-131,-9]],[[49084,83451],[-492,-461],[-821,-98]],[[49104,82088],[-20,1363]],[[80000,80462],[-764,184]],[[80059,80206],[-59,256]],[[83072,79406],[44,-56],[169,717],[-205,-512],[-8,-149]],[[82710,78130],[178,564],[21,245],[156,397],[6,220],[243,663]],[[82697,80040],[-166,-461],[42,-310],[-252,-284],[129,-298]],[[82746,80555],[-49,-515]],[[83265,80277],[-137,166],[-382,112]],[[83305,80222],[-40,55]],[[83314,80219],[-9,3]],[[82806,78102],[281,1253],[-166,-415],[-30,-247],[-177,-564]],[[58894,83200],[-17,-428],[-335,-182],[-122,-212],[-46,-288]],[[59140,82477],[-125,238],[-121,485]],[[54676,83804],[-36,-290],[-100,-22],[-55,-494],[91,-250],[-118,-252]],[[55076,83573],[-281,229],[-119,2]],[[55119,82419],[-304,-279],[261,1433]],[[65764,81315],[30,989],[92,410],[147,157],[-100,489]],[[65933,83360],[-229,19],[-65,-259],[-202,-169],[-138,-290]],[[66040,83383],[-107,-23]],[[66451,84195],[-299,-314],[-21,-466],[-91,-32]],[[66330,82539],[-107,266],[15,344],[187,486],[26,560]],[[66101,81429],[-26,1048],[151,-117],[104,179]],[[75199,80696],[-1,-25]],[[75617,81908],[-179,55],[-7,-421],[-201,-451]],[[75921,81526],[-118,30],[-186,352]],[[75921,81520],[0,6]],[[75916,80783],[-37,270],[89,308],[-47,159]],[[66522,82622],[-192,-83]],[[66602,82099],[-248,77],[-39,172],[181,96],[26,178]],[[67031,81468],[-188,530],[-166,-62],[-75,163]],[[81705,80452],[-139,-1604]],[[82515,79777],[-395,114],[-215,399],[-200,162]],[[82233,78491],[-118,315],[144,-42],[-15,307],[218,241],[53,465]],[[57938,84393],[-20,-1245],[-163,-4]],[[58932,83859],[-450,112],[-544,422]],[[58894,83200],[-136,197],[174,462]],[[55858,84362],[-366,-332],[-416,-457]],[[56262,84450],[-90,-142],[-314,54]],[[56648,84474],[-88,-40],[-191,239],[-107,-223]],[[56822,83962],[-174,-112],[-117,-437],[-52,221],[89,235],[146,109],[-66,496]],[[56713,83189],[132,202],[-23,571]],[[67276,83335],[72,92]],[[67348,83427],[-8,-7]],[[67340,83420],[-37,-54]],[[67303,83366],[-27,-31]],[[66602,82099],[30,177],[194,88],[92,195],[223,-77],[14,-420],[157,-191],[141,378]],[[67225,83343],[-317,-339],[-292,-107],[-94,-275]],[[67237,83339],[-12,4]],[[67260,83365],[-23,-26]],[[67442,82969],[-403,47],[14,150],[207,199]],[[67621,82802],[-179,167]],[[67499,82387],[157,101],[-167,192],[132,122]],[[67453,82249],[46,138]],[[64633,82671],[-152,-264],[-18,-337]],[[65079,82690],[-254,-99],[-192,80]],[[52185,83557],[4,-7]],[[52520,84163],[23,-60],[-358,-546]],[[53041,84154],[-521,9]],[[53637,82906],[-596,1248]],[[53537,82588],[100,318]],[[61309,84169],[-31,-1749],[-236,17]],[[62540,83118],[-8,126],[-358,407],[222,440],[-191,12],[-308,205],[-588,-139]],[[62534,82341],[-50,204],[56,573]],[[80931,79856],[192,-169],[79,-305],[189,-364],[-3,-126]],[[81693,80457],[-187,-408],[-270,41],[-253,-104],[-52,-130]],[[81705,80452],[-12,5]],[[80931,79856],[-218,-16]],[[49349,83700],[-265,-249]],[[49608,83616],[-259,84]],[[50069,82902],[-461,714]],[[62442,84101],[201,-236],[170,15],[257,269],[-204,314],[-424,-362]],[[62773,83467],[45,-352],[-278,3]],[[63495,82576],[-295,67],[-159,394],[-268,430]],[[63965,82272],[-54,210]],[[54398,84163],[-163,-136],[-147,-513],[-148,-82],[-238,-318],[-65,-208]],[[54567,84286],[-169,-123]],[[54676,83804],[14,478],[-123,4]],[[64285,83770],[-42,-276]],[[64422,83420],[-137,350]],[[64633,82671],[-211,749]],[[47743,83962],[-798,-40]],[[47771,82892],[-28,1070]],[[51568,84055],[-212,-189],[-248,-621]],[[52185,83557],[-549,574],[-68,-76]],[[61309,84169],[-647,-435],[-507,-247],[-273,75],[-275,-23],[-489,145],[-186,175]],[[50250,84220],[-128,-265],[19,-222],[-138,9],[-213,-175],[-182,49]],[[50863,83641],[-178,255],[-435,324]],[[75612,81968],[245,-72],[8,197],[-253,-125]],[[75921,81526],[123,218],[-427,164]],[[77022,80550],[224,70],[1,164],[-201,-69],[-169,105],[-471,642],[-193,171],[50,-192],[-213,212],[-129,-133]],[[53455,85568],[192,-271],[-449,-929],[-157,-214]],[[53490,85630],[-35,-62]],[[54398,84163],[-257,454],[-80,406],[-571,607]],[[64032,83941],[-183,397],[-187,-236],[-272,151],[-13,-413],[-169,-38],[13,-397],[-448,62]],[[64285,83770],[-253,171]],[[80588,81322],[-87,-1002]],[[81094,81506],[-288,90],[-19,-217],[-199,-57]],[[81773,81390],[-161,249],[-130,-29],[-13,-193],[-375,89]],[[81693,80457],[80,933]],[[80039,81351],[-43,9],[-32,-627],[36,-271]],[[80588,81322],[-549,29]],[[66040,83383],[37,421],[-118,214],[94,169],[267,135]],[[65658,85034],[-11,-450],[-460,-789],[-298,-343],[-89,-301],[-133,239],[-245,30]],[[65650,85052],[8,-18]],[[65641,85118],[9,-66]],[[65642,85139],[-1,-21]],[[65644,85193],[-2,-54]],[[65936,85473],[-84,-447],[-153,-114],[-55,281]],[[66276,85333],[-253,337],[-87,-197]],[[66276,85333],[43,-158]],[[66269,84827],[50,348]],[[66326,84725],[-57,102]],[[66320,84322],[6,403]],[[49296,83804],[-245,483],[-92,35],[-14,-274],[-830,-64]],[[49349,83700],[-53,104]],[[48115,83984],[-372,-22]],[[66778,84708],[199,-258],[178,173],[-172,115],[-205,-30]],[[67225,83343],[-149,51]],[[66660,84217],[-109,-174],[-100,152]],[[66776,84321],[-116,-104]],[[67068,83493],[-174,84],[181,336],[200,230],[-35,179],[348,10],[105,213],[85,-113],[110,208],[91,-183],[241,595],[-49,426],[-139,183],[-130,-323],[4,219],[-292,534],[263,-810],[-110,-307],[-56,322],[-56,-316],[-140,148],[-121,-248],[7,-277],[-222,-217],[-357,55],[-46,-120]],[[67076,83394],[-8,99]],[[57713,84415],[-152,-54],[-409,193],[85,-339],[42,-550],[-97,-122],[-152,132],[-106,327],[-102,-40]],[[57906,84417],[-3,-152],[-190,150]],[[57938,84393],[-32,24]],[[50585,84826],[18,-167],[-331,-311],[-22,-128]],[[51154,85086],[-475,-28],[-94,-232]],[[51568,84055],[-414,1031]],[[82742,81614],[-235,-277],[-49,-567],[161,-136],[-104,-291],[182,-303]],[[82995,81356],[-253,258]],[[82746,80555],[48,461],[123,378],[78,-38]],[[82553,81575],[-141,39],[-106,-422],[-139,-94],[-322,166],[-72,126]],[[82515,79777],[102,198],[-6,242],[-112,53],[49,451],[-102,19],[34,595],[73,240]],[[55036,85580],[-282,-652],[-187,-642]],[[55858,84362],[-73,539],[-170,5],[-56,376],[-146,188],[-192,-127],[-185,237]],[[51366,85684],[-249,-508],[37,-90]],[[51587,86118],[-221,-434]],[[52324,85089],[-737,1029]],[[52520,84163],[-121,182],[-75,744]],[[63804,84996],[149,-174],[216,134],[-64,379],[-160,-89],[-141,-250]],[[65658,85034],[-77,-219],[-310,173],[38,158]],[[64820,85594],[-86,89],[-126,-176],[255,-295],[-243,-77],[69,-133],[-129,-153],[-165,584],[-169,-154],[-5,-408],[-258,-383],[-24,-345],[93,-202]],[[65069,85591],[-249,3]],[[65197,85227],[-128,364]],[[65254,85271],[-57,-44]],[[65309,85146],[-55,125]],[[49268,85488],[28,-1684]],[[50035,86044],[-767,-556]],[[50585,84826],[-550,1218]],[[48067,86029],[48,-2045]],[[49257,86099],[-1190,-70]],[[49268,85488],[-11,611]],[[83611,81081],[-85,85],[61,544],[-513,155],[-79,-509]],[[83265,80277],[43,0],[303,804]],[[83326,80216],[-8,2]],[[83615,81080],[-195,-474],[-102,-388]],[[83624,81077],[-9,3]],[[83326,80216],[298,861]],[[54134,86721],[-644,-1091]],[[54985,85706],[-178,316],[-673,699]],[[55036,85580],[-51,126]],[[52831,86169],[-507,-1080]],[[52904,86326],[-73,-157]],[[53455,85568],[-551,758]],[[46705,85956],[50,-2047]],[[48067,86029],[-1362,-73]],[[45619,85878],[-202,-359],[-28,-262]],[[46705,85956],[-1086,-78]],[[56451,86234],[272,-379],[206,-408],[291,-158],[-769,945]],[[56648,84474],[211,193],[-81,117],[137,335],[-40,297]],[[56581,85803],[-350,-1007],[31,-346]],[[56875,85416],[-73,-51],[-221,438]],[[57906,84417],[-464,371],[-229,361],[-91,-30],[211,-389],[197,-209],[122,76],[61,-182]],[[55705,87242],[-118,-14],[-212,-511],[-177,-11],[0,-358],[-140,-120],[-73,-522]],[[56581,85803],[-182,73],[-167,731],[-320,486],[-207,149]],[[79792,82433],[83,-120],[106,-460],[58,-502]],[[80572,83516],[-158,-610],[-487,65],[-61,-342],[-161,-39],[87,-157]],[[80575,83510],[-3,6]],[[80984,83230],[-146,173],[-151,-59],[-112,166]],[[81094,81506],[92,1016],[-256,67],[54,641]],[[81445,83442],[-356,-268],[-105,56]],[[82137,83270],[-692,172]],[[82635,81919],[84,863],[-10,339],[-572,149]],[[82553,81575],[82,344]],[[50446,86947],[-411,-903]],[[51366,85684],[-920,1263]],[[83611,81081],[66,254],[616,1612],[161,360]],[[82831,82200],[14,-423],[-103,-163]],[[83302,83281],[-13,-407],[-324,-350],[-134,-324]],[[84130,84084],[-229,-715],[-207,176],[-103,-162],[-262,9],[-27,-111]],[[84334,83340],[-229,67],[69,665],[-44,12]],[[84361,83333],[-27,7]],[[84454,83307],[-93,26]],[[52831,86169],[-651,902]],[[51651,87251],[-345,-751],[281,-382]],[[52180,87071],[-219,-236],[-310,416]],[[82635,81919],[84,265],[112,16]],[[82333,85589],[-196,-2319]],[[82918,85431],[-585,158]],[[83242,83659],[-472,147],[148,1625]],[[83302,83281],[-60,378]],[[53443,87637],[-138,-630],[-117,-126],[-77,-392],[-207,-163]],[[53445,87643],[-2,-6]],[[53451,87642],[-6,1]],[[53612,87699],[-161,-57]],[[53898,87694],[-286,5]],[[53971,87820],[-73,-126]],[[54104,87817],[-133,3]],[[54134,86721],[-30,1096]],[[50623,87317],[-474,646]],[[50446,86947],[177,370]],[[49236,87788],[21,-1689]],[[50149,87963],[1,-136],[-914,-39]],[[55705,87242],[-361,373],[58,-134],[-248,66],[-281,186],[-58,278],[518,-380],[-359,344],[-654,533],[-50,-24],[378,-317]],[[54105,87941],[-1,-124]],[[54648,88167],[140,-274],[-371,194],[-136,-139],[84,-185],[-260,178]],[[51651,87251],[-406,541]],[[50801,87692],[-178,-375]],[[51245,87792],[-273,-203],[-171,103]],[[52456,88261],[-41,-219],[47,-656],[-137,-317],[-145,2]],[[52985,88447],[-179,25],[-145,-195],[-205,-16]],[[53444,87714],[-388,252],[-146,175],[75,306]],[[53443,87637],[1,77]],[[48041,87747],[26,-1718]],[[48067,87748],[-26,-1]],[[49236,87788],[-1169,-40]],[[46657,87625],[48,-1669]],[[48041,87747],[-1384,-122]],[[46420,89328],[-152,-321],[-88,-426],[29,-426],[-105,-68],[-12,-267],[-192,-306],[-5,-302],[-166,-627],[-77,-58],[-33,-649]],[[46614,89338],[-194,-10]],[[46657,87625],[-43,1713]],[[80905,84599],[-116,-117],[-10,-542],[-204,-430]],[[81633,84523],[-301,81],[-10,-109],[-417,104]],[[81445,83442],[327,575],[-139,506]],[[82099,85135],[-12,-155],[-317,-123],[-137,-334]],[[82152,85763],[-53,-628]],[[82333,85589],[11,139],[-192,35]],[[52027,88879],[-343,-246],[-13,-242],[-271,-114],[-155,-485]],[[52456,88261],[-429,618]],[[84130,84084],[-661,188],[-11,-109],[-254,64],[38,-568]],[[84929,85032],[52,30],[140,700],[-105,-219],[-87,-511]],[[84465,85016],[-63,-130],[-37,-465],[-235,-337]],[[84639,86992],[-174,-1976]],[[85358,86746],[-14,52],[-705,194]],[[84334,83340],[191,867],[154,564],[343,989],[340,872],[-4,114]],[[84560,83278],[378,681],[148,466],[-141,177],[-27,-593],[-88,551],[54,699],[-150,-464],[-80,-766],[-133,-89],[-25,-255],[101,-91],[-236,-261]],[[84560,83278],[-13,3]],[[84454,83307],[273,424],[59,-13],[-239,-437]],[[51147,89660],[-173,232],[39,220]],[[50801,87692],[-167,98],[531,1846],[-18,24]],[[50120,90075],[29,-2112]],[[50316,90082],[-196,-7]],[[51013,90112],[-697,-30]],[[84465,85016],[-1547,415]],[[53163,89330],[2,194]],[[53140,89541],[23,-211]],[[53165,89524],[-25,17]],[[53097,89963],[75,-299],[166,-25],[221,-338]],[[53076,90038],[21,-75]],[[53559,89301],[329,-233],[-812,970]],[[54105,87941],[-134,-121]],[[53444,87714],[95,401],[169,153],[249,436],[-487,420],[-127,-62],[0,-229],[-151,-156]],[[53192,88677],[-58,62],[-149,-292]],[[53898,87694],[21,254],[-260,-4]],[[53659,87944],[-47,-245]],[[51693,89723],[-55,131],[-491,-194]],[[52027,88879],[-334,844]],[[80911,85601],[14,-419],[-70,-373],[50,-210]],[[82099,85135],[-387,97],[15,164],[-816,205]],[[48035,89408],[32,-1660]],[[49192,90033],[-1160,39],[3,-664]],[[49236,87788],[-44,2245]],[[50120,90075],[-928,-42]],[[48035,89408],[-1421,-70]],[[52245,90075],[-111,-238],[-217,70],[-90,-222],[-134,38]],[[52281,90125],[-36,-50]],[[52729,89601],[-300,270],[-148,254]],[[53179,89166],[-655,164],[38,176],[167,95]],[[53192,88677],[5,183],[-144,-29],[126,335]],[[80770,86638],[141,-1037]],[[81033,86572],[-263,66]],[[82100,86316],[-1067,256]],[[82152,85763],[-81,224],[29,329]],[[82371,88267],[-174,-1976],[-97,25]],[[83337,88018],[-966,249]],[[84166,87811],[-829,207]],[[82918,85431],[29,331],[194,-51],[105,421],[134,-35],[20,216],[214,-54],[-113,355],[238,250],[32,207],[152,37],[212,452],[31,251]],[[84694,87671],[-528,140]],[[84639,86992],[55,679]],[[52647,90948],[158,-581],[234,-201],[-392,782]],[[52387,90463],[-142,-388]],[[52281,90125],[162,57],[-56,281]],[[52393,90478],[102,-289],[149,-157],[61,213],[-218,488]],[[52487,90733],[-94,-255]],[[53140,89541],[-64,122]],[[53179,89166],[-16,164]],[[53076,89663],[-234,242],[91,-553],[-106,186],[-17,334],[-81,-271]],[[47842,92970],[-164,-209],[69,-77],[62,-526],[-92,-75],[28,-282],[-169,-280],[-213,-74],[-184,-425],[-135,-142],[-94,-694],[-112,-54],[-179,-600],[-239,-204]],[[48838,93012],[-756,-58],[-70,-178],[-170,194]],[[49156,92707],[-5,326],[-313,-21]],[[49192,90033],[-36,2674]],[[51178,90351],[-13,-175],[-152,-64]],[[51782,90961],[-293,-105],[-322,-273],[11,-232]],[[52473,90770],[-97,270],[-117,-207],[-406,-13],[-71,141]],[[52484,90739],[-11,31]],[[52487,90733],[-3,6]],[[52387,90463],[6,15]],[[81086,87155],[-114,345],[263,212],[-64,643],[-430,-518],[55,-363],[16,-575],[-42,-261]],[[81033,86572],[53,583]],[[81391,88513],[117,-416],[134,-211],[-26,-327],[-181,-123],[57,371],[-128,-32],[-17,-367],[-261,-253]],[[82371,88267],[-980,246]],[[49699,93070],[7,-296],[-133,-65],[-417,-2]],[[50280,93105],[-581,-35]],[[50316,90082],[-36,3023]],[[50628,93124],[-348,-19]],[[50877,91709],[-234,-9],[-15,1424]],[[51178,90351],[-274,410],[-27,948]],[[52419,91416],[157,-240],[-227,653],[70,-413]],[[51782,90961],[205,3],[-15,216],[123,255]],[[52101,92030],[-1022,-21],[-202,-300]],[[52095,91435],[152,82],[-146,513]],[[85358,86746],[12,-72],[292,665],[78,368]],[[85104,87880],[-192,52],[-31,-316],[-187,55]],[[85740,87707],[-636,173]],[[85787,87693],[-280,-912],[112,253],[190,652]],[[85809,87686],[-22,7]],[[83439,89167],[-102,-1149]],[[83544,90318],[-105,-1151]],[[84708,89328],[-445,124],[31,329],[-196,55],[32,332],[-586,150]],[[84166,87811],[-98,457],[245,496],[99,-8],[296,572]],[[82469,89425],[-98,-1158]],[[83439,89167],[-970,258]],[[81445,89484],[-272,-273],[211,-399],[7,-299]],[[82510,89916],[-390,93],[-55,-667],[-620,142]],[[82469,89425],[41,491]],[[84910,90240],[-39,-741],[-163,-171]],[[85233,89201],[31,314],[-354,725]],[[85104,87880],[129,1321]],[[52307,91976],[-174,656],[-85,471]],[[52307,91976],[-51,-21]],[[52021,93102],[66,-595],[169,-552]],[[52048,93103],[-27,-1]],[[50770,93327],[2,-196],[-144,-7]],[[51190,93058],[-79,109],[-341,160]],[[52101,92030],[-187,909],[-187,169],[36,-586],[37,98],[-178,308],[-432,130]],[[86006,88969],[-773,232]],[[85999,88887],[7,82]],[[86090,88740],[-91,147]],[[85740,87707],[161,563],[189,470]],[[82005,91046],[-216,-378],[-174,-626],[-86,-128],[-84,-430]],[[82183,90799],[17,201],[-195,46]],[[82181,90773],[2,26]],[[82565,90576],[-392,95],[8,102]],[[82510,89916],[55,660]],[[48806,94846],[32,-1834]],[[49873,94906],[-1067,-60]],[[49699,93070],[59,119],[43,685],[97,2],[-25,1030]],[[83544,90318],[-979,258]],[[48358,95633],[-68,-584],[-217,-737],[-234,-410],[51,-589],[-48,-343]],[[48806,94846],[-122,414],[-326,373]],[[52057,95391],[54,97]],[[52107,95676],[-50,-285]],[[52147,95676],[-40,0]],[[52111,95488],[36,188]],[[51993,94550],[118,938]],[[51970,94585],[23,-35]],[[52012,95202],[-42,-617]],[[52111,95488],[-99,-286]],[[52048,93103],[-71,871],[16,576]],[[51998,93231],[23,-129]],[[51993,94550],[-38,-24],[4,-956],[39,-339]],[[51190,93058],[251,37],[218,184],[236,-123],[-55,557]],[[50751,94951],[19,-1624]],[[50800,95594],[-56,-17],[7,-626]],[[51832,95670],[-840,-17],[-192,-59]],[[51620,94246],[-1,560],[162,268],[51,596]],[[51840,93713],[-76,44],[-12,408],[-132,81]],[[50078,94917],[-205,-11]],[[50751,94951],[-673,-34]],[[86006,88969],[130,-21],[166,257],[186,546]],[[86395,89776],[-13,59],[-1472,405]],[[86410,89772],[-15,4]],[[86437,89765],[-27,7]],[[86443,89763],[-6,2]],[[86488,89751],[-45,12]],[[83627,91310],[-83,-992]],[[84910,90240],[-51,743],[-1232,327]],[[82183,90799],[160,199],[79,282],[-53,229],[-196,-42],[-168,-421]],[[82646,91559],[-60,-675],[-177,142],[-228,-253]],[[83627,91310],[-981,249]],[[85140,92587],[-230,-2347]],[[86750,92172],[-308,36],[-1302,379]],[[86395,89776],[133,69],[203,1375],[19,952]],[[83717,92269],[-90,-959]],[[85167,92854],[-773,234],[-97,-986],[-580,167]],[[85140,92587],[27,267]],[[82427,91902],[111,-40],[201,720],[-70,50],[-140,-553],[-102,-177]],[[83216,93100],[-53,-413],[-330,-85],[194,-405],[82,-459],[-132,282],[-34,344],[-177,102],[-138,-551],[18,-356]],[[83717,92269],[33,339],[-193,57],[38,386],[-379,49]],[[49513,96883],[-181,59],[-251,-494],[-189,43],[-280,-244],[-96,54],[-8,-296],[-150,-372]],[[50078,94917],[-565,1966]],[[50969,97651],[-413,80],[-258,-39],[-230,-208],[-81,-185],[-474,-416]],[[50980,96599],[-11,1052]],[[50800,95594],[-102,614],[286,68],[-4,323]],[[52147,95676],[63,356]],[[52058,95827],[49,-151]],[[52192,96005],[-134,-178]],[[52210,96032],[-18,-27]],[[51832,95670],[34,323]],[[51934,96391],[-134,318],[-146,95],[-674,-205]],[[51821,96387],[113,4]],[[51863,96273],[-42,114]],[[51866,95993],[-3,280]],[[84396,94809],[-292,-261],[-283,8],[-219,-237],[-221,-360],[-165,-859]],[[85340,94546],[-944,263]],[[85280,93897],[60,649]],[[85167,92854],[113,1043]],[[51934,96391],[118,229],[-7,445],[75,146],[26,388],[144,114]],[[52290,97713],[-91,355],[185,-140],[31,190],[-261,15],[-205,166],[2,252],[-303,-190],[-367,-577],[-312,-133]],[[86790,93488],[-346,170],[-770,216],[-8,-81],[-386,104]],[[86750,92172],[40,1316]],[[86790,93488],[17,283]],[[85591,96884],[-96,-690],[-155,-1648]],[[86327,96557],[-157,-93],[-260,430],[-319,-10]],[[86324,96542],[3,15]],[[86423,96426],[-99,116]],[[86435,96423],[-12,3]],[[86807,93771],[-81,148],[3,417],[-87,147],[-124,909],[108,452],[-191,579]],[[84643,98843],[141,174],[-59,104],[-82,-278]],[[86170,97592],[329,-747],[119,-666],[136,-245],[-235,941],[-269,677],[-80,40]],[[85591,96884],[-73,160],[-374,190],[-202,-347],[31,-471],[105,32],[57,259],[300,92],[38,-171],[-146,-272],[-147,109],[-238,-192],[-81,-358],[-293,-721],[160,-171],[-109,-65],[-176,174],[-47,-323]],[[79792,82433],[-127,12],[-154,-364],[-81,16],[-263,-268],[-24,-579]],[[55746,9897],[250,-3],[-8,-1452],[141,115],[149,-67],[197,282],[222,1541],[-8,401],[156,224],[235,57]],[[62205,12628],[211,-235],[175,307],[31,235],[301,-119],[7,97],[271,-11],[364,-111],[168,82],[52,206],[184,143],[225,-152],[234,51]],[[64428,13121],[-275,395],[-316,315],[-824,562],[-286,317],[-425,657]],[[60582,18565],[167,-311],[124,199],[340,-65],[361,-261]],[[61574,18127],[62,2277]],[[61574,18127],[279,-169],[242,-311],[58,92],[286,-393],[159,-93],[187,270],[-189,525],[56,201],[-101,444]],[[62551,18693],[56,1637]],[[62551,18693],[362,-312],[220,265]],[[62737,17916],[271,-366],[62,94],[-131,239],[-202,33]],[[62930,17376],[185,-196],[-10,225],[-175,-29]],[[66142,15618],[117,-330],[301,-348],[362,-171],[190,-5]],[[66591,15884],[-108,16],[-17,-327],[-324,45]],[[67112,14764],[205,90],[19,152],[-369,110],[38,163],[-414,605]],[[65785,12448],[297,-159],[-260,377],[71,72],[-348,317],[-250,304],[128,59],[-367,289],[-88,-315],[325,-388],[313,-285],[179,-271]],[[65544,16667],[59,-276],[371,-530],[21,365],[179,59],[22,263],[111,157],[-11,214]],[[66591,15884],[-19,246],[-145,245],[-77,386],[-112,-292],[63,-148],[-288,-81],[-33,-375],[162,-247]],[[66923,16935],[224,-21],[353,215],[174,415],[301,484],[69,290],[382,-18]],[[68497,19573],[-194,31],[34,660],[-194,30]],[[68426,18300],[71,1273]],[[69041,18011],[129,15],[22,295],[-101,-13],[-50,-297]],[[68426,18300],[142,-176],[236,330],[216,-170],[161,209],[238,-581],[169,-128],[299,-412],[96,45],[319,-185]],[[69270,19447],[-773,126]],[[69599,20929],[-117,65],[-121,351],[33,219],[-156,-162],[116,-527],[115,-276],[-92,-174],[-83,264],[-216,-67],[23,184],[-130,410],[-140,184],[-93,-612],[-32,346],[-194,346],[-120,442]],[[67931,23715],[1,454],[-203,94]],[[67827,25359],[167,-644],[191,-92],[109,-214],[173,-571],[46,-465],[107,39],[132,-569],[132,-23],[13,305],[-88,-39],[17,520],[-110,112],[-86,398],[-5,360],[-145,296],[-82,506]],[[68911,22467],[138,-122],[10,283],[-148,-161]],[[73589,19357],[111,-258],[139,-74],[-57,-250],[182,13],[197,352],[-128,277]],[[74033,19417],[-102,-112],[-237,142],[-105,-90]],[[72931,18117],[121,11],[-3,343],[-118,-354]],[[72771,17522],[90,-196],[136,55],[-69,337],[152,371],[-98,-33],[-211,-534]],[[71244,16803],[434,-139],[-93,251],[70,864],[345,58],[244,-194],[70,251],[368,-410],[141,234],[177,700],[-107,121],[370,236],[-55,165],[295,361],[-165,136],[-164,-63]],[[72991,19403],[-34,-325],[-191,40],[-25,-327],[-1153,234],[-24,-331],[-191,38]],[[73018,19397],[-27,6]],[[73174,19374],[-156,23]],[[72485,20163],[373,91],[-84,210],[-121,-27],[-168,-274]],[[72991,19403],[-442,67],[-231,-189],[-97,419],[80,348],[-217,-55],[-297,-433],[-200,-107],[-469,-122],[-141,64],[-177,512],[-328,58]],[[71816,22023],[274,-162],[-299,-274],[-61,-377],[235,-543],[-64,-156],[261,-18],[109,-183]],[[72402,22200],[-362,64],[-53,85],[-171,-326]],[[71399,22712],[18,-268],[235,-374],[164,-47]],[[70929,21287],[54,-612],[83,21],[73,526],[-99,159],[-111,-94]],[[70358,23168],[135,-24],[-27,320],[-108,-296]],[[70426,24543],[-18,-482],[143,-48],[46,-219],[209,19],[239,-952],[142,-37],[-121,268],[63,207],[8,551],[-62,178],[34,403]],[[71109,24431],[-273,53]],[[71109,24431],[70,22],[138,-893],[-6,521],[-94,393],[79,27],[106,-451]],[[74522,22059],[167,393],[-127,105],[-99,303],[76,264],[192,232]],[[74550,26080],[14,439],[-121,21],[-20,232],[-263,49],[-80,342]],[[74835,27701],[95,-507],[158,-507],[321,-203],[179,-278],[322,221],[267,760],[40,334]],[[76478,31797],[208,-186],[-84,233],[-124,-47]],[[76548,29460],[198,700],[-63,353],[44,440],[-54,642],[-299,-220]],[[75775,34046],[-179,-191],[-393,123]],[[76181,32334],[-69,380],[-207,195],[-120,610],[-10,527]],[[75775,34046],[-358,1042],[-17,217]],[[85037,67159],[172,-147],[-119,260],[-53,-113]],[[83951,69078],[-178,-367]],[[83951,69078],[162,-177]],[[84522,67305],[94,522],[70,65],[-127,542],[-446,467]],[[85423,65975],[254,157],[-226,483],[-172,-41],[-120,172],[-70,313],[-188,376]],[[84901,67435],[-134,339],[-119,-21],[-1,-281],[149,-342]],[[33756,90874],[83,-122],[122,177]],[[33961,90929],[35,149],[-240,-204]],[[35762,96395],[189,-462],[105,-32],[185,-444],[19,-209],[-143,-362],[-29,-272],[143,-274],[529,557],[274,77],[392,320],[190,236],[210,391],[-16,426],[184,-5],[43,355],[375,462],[-26,156],[-330,507],[-325,285],[-342,42],[-331,439],[-127,77],[-187,615],[-183,118],[-238,-276],[-174,-95],[-80,-307],[66,-864],[-134,-536],[-90,-575],[-149,-350]],[[27953,87610],[122,-415],[313,-309],[482,41],[108,418],[-87,292],[16,248],[-241,347],[-330,-95],[-130,-230],[-191,-102],[-62,-195]],[[33961,90929],[372,-12],[53,84],[-134,250],[-209,138],[-396,-206],[-387,56],[-131,-59],[109,-430],[518,124]],[[33653,91978],[60,-124],[246,18],[179,238],[-14,364],[-265,109],[-97,-455],[-109,-150]],[[34411,93366],[261,-295],[47,256],[-264,124],[-44,-85]],[[34417,91875],[64,-332],[163,-92],[130,167],[99,333],[331,-185],[198,71],[243,389],[234,121],[28,318],[-126,218],[-299,88],[-229,174],[-298,-82],[-43,-657],[-339,-115],[-156,-416]],[[31100,89379],[329,-37],[225,-425],[105,-45],[274,694],[-9,258],[114,185],[42,-191],[120,416],[115,195],[-349,156],[-158,-287],[-447,136],[-58,-261],[-303,-794]],[[26988,88397],[31,-212],[374,-446],[-41,374],[-192,145],[-80,289],[-92,-150]],[[3704,98803],[99,-60],[-93,-189],[128,-5],[31,210],[-89,201],[-76,-157]],[[4128,99027],[-138,-107],[260,-82],[-122,189]],[[4201,99219],[165,-147],[0,-205],[133,-17],[-3,353],[-295,16]],[[1667,97042],[278,-114],[-115,201],[-163,-87]],[[5682,99334],[250,101],[-17,170],[-233,-271]],[[5063,99146],[499,47],[125,-257],[64,200],[-83,194],[-459,-83],[-146,-101]],[[189,95008],[175,-2],[-37,200],[-138,-198]],[[0,94052],[114,-22],[240,342],[-99,113],[-182,-171],[-73,-262]],[[8116,99492],[410,-632],[211,-133],[45,261],[-220,116],[-117,210],[-329,178]],[[8765,99081],[384,-133],[66,-542],[160,-69],[39,269],[133,-203],[6,407],[-139,38],[-78,199],[-119,-17],[-355,170],[-97,-119]],[[9679,98292],[72,-112],[130,161],[-108,99],[-94,-148]],[[10260,97909],[277,-464],[82,61],[226,-147],[137,150],[30,304],[-138,150],[-286,-37],[-123,193],[-175,-45],[-30,-165]],[[12397,97886],[192,-486],[-4,258],[-188,228]],[[12155,97434],[140,-210],[1,339],[-141,-129]],[[13123,95337],[-1,12]],[[12755,96955],[-112,-298],[-327,447],[-140,-93],[-177,198],[-121,-33],[85,-291],[-96,-57],[-212,648],[-233,23],[-14,-333],[-74,37],[37,399],[-206,-19],[-106,126],[-1,-374],[202,-46],[322,-623],[213,-219],[322,-5],[109,309],[20,-211],[232,105],[-135,-247],[99,-316],[260,-352],[224,-138],[197,-255]],[[13118,95440],[-176,275],[-274,80],[27,233],[-56,573],[133,20],[-17,334]],[[13122,95349],[-4,91]],[[24805,94086],[149,-284],[226,358],[47,319],[-45,294],[-331,-185],[39,-225],[-85,-277]],[[14004,92730],[270,10],[-7,382],[-386,-28]],[[13881,93094],[123,-364]],[[12305,92765],[201,-96],[-92,279],[-109,-183]],[[13935,92763],[-407,291],[-162,-271],[36,-309],[-135,391],[-110,-157]],[[14464,90049],[-27,1650],[-201,107],[-113,342],[-209,95],[21,520]],[[12376,92585],[119,-547],[142,-99],[123,-561],[90,11],[121,-556],[146,-213],[43,-340],[138,-99],[38,-226],[400,45],[142,-117],[130,130],[456,36]],[[12454,92561],[-78,24]],[[13271,93092],[-127,177],[-114,-475],[-135,-239],[-59,190],[-140,-175],[-21,-249],[-221,240]],[[13157,92708],[114,384]],[[14464,90049],[956,16]],[[14004,92730],[-69,33]],[[13118,95440],[115,73],[-18,-295],[175,-397],[279,-342],[84,-953],[128,-432]],[[14211,95063],[-373,499],[-74,-135],[-42,312],[-116,-75],[-263,230],[47,272],[-147,391],[-149,-65],[-228,156],[-111,307]],[[15084,93100],[-68,382],[-356,217],[-4,425],[-152,99],[-57,263],[-232,91],[-173,472],[169,14]],[[15420,90065],[19,585],[-51,1],[-45,922],[-118,120],[1,236],[-184,122],[3,233],[-135,1],[39,813],[135,2]],[[15461,95197],[76,-173],[149,73],[-225,100]],[[15759,94128],[143,69],[-54,293],[131,-32],[-66,256],[-267,-110],[149,214],[-279,187],[-265,612],[-107,31],[125,-291],[-102,-212],[-91,371],[-91,-199],[-81,-576],[154,-293],[146,-7],[82,307],[-52,-530],[88,-113],[216,140],[-42,-261],[263,144]],[[15446,93886],[60,-120],[134,221],[-194,-101]],[[15897,93390],[134,87],[-43,272],[-94,-127],[-212,347],[-155,-222],[194,-146],[-58,-177],[234,-34]],[[15486,92819],[23,-2]],[[15084,93100],[199,0],[203,-281]],[[15509,92817],[-170,330],[-164,167],[14,176],[-218,444],[-188,-6],[-151,417],[-97,-107],[-53,317],[-115,-34],[-226,312],[70,230]],[[23017,91714],[170,47]],[[23013,91765],[4,-51]],[[23012,91768],[1,-3]],[[23013,91765],[-1,3]],[[23025,91891],[-12,-126]],[[23186,91762],[-161,129]],[[23187,91761],[-1,1]],[[22757,90802],[238,-114]],[[23504,92053],[-288,-412],[-240,-114],[-145,-332],[-74,-393]],[[23532,91981],[-28,72]],[[23558,91846],[-26,135]],[[23637,91485],[-79,361]],[[22995,90688],[495,487],[147,310]],[[22754,90803],[28,317],[-113,-277]],[[22669,90843],[85,-40]],[[24293,93844],[89,-234],[219,427],[-83,107],[-225,-300]],[[24114,93753],[163,-186],[-48,294],[-115,-108]],[[24519,93765],[-159,-343],[264,257],[-105,86]],[[24043,93159],[231,180],[-147,190],[-84,-370]],[[23694,93431],[66,1007],[-121,-286],[67,-189],[-259,-529],[58,-163],[189,160]],[[23552,93063],[392,-129],[94,129],[43,360],[-207,-224],[192,343],[-213,237],[-88,-459],[-213,-257]],[[23734,92805],[169,-115],[118,-396],[132,35]],[[24616,94334],[51,-342],[-55,-354],[-599,-731],[-279,-102]],[[24921,93212],[47,264],[-205,266],[-147,592]],[[24153,92329],[64,327],[142,-17],[12,236],[119,26],[68,252],[100,-78],[263,137]],[[23532,91981],[-16,74]],[[23516,92055],[-12,-2]],[[22423,92553],[-8,-239],[164,159]],[[22433,92548],[-10,5]],[[22449,92540],[-16,8]],[[22579,92473],[-130,67]],[[23637,91485],[516,844]],[[23554,91868],[4,-22]],[[23554,91868],[-9,45]],[[23734,92805],[0,-234],[-170,-313],[-19,-345]],[[23241,91690],[190,394],[-211,-153],[244,407],[86,313],[-130,21],[50,231],[-98,300],[-103,-285],[44,-176],[-192,-377],[-96,-474]],[[23241,91690],[-52,68]],[[23186,91762],[3,-4]],[[23186,91762],[0,0]],[[22580,92466],[-228,-282],[229,-339],[137,93],[-49,198]],[[22595,92235],[-15,231]],[[22793,91973],[162,21],[57,295],[-89,103],[-328,-157]],[[22642,92232],[151,-259]],[[22669,92136],[-27,96]],[[23012,91768],[5,-54]],[[22649,91515],[-140,78]],[[22103,90716],[335,59],[116,243],[-54,251],[149,246]],[[21771,91354],[332,-638]],[[21627,91560],[144,-206]],[[22509,91593],[-180,-285],[-316,-138],[334,333],[113,268],[-183,253],[-235,-61],[-415,-403]],[[22297,89972],[77,-134],[221,218],[48,280]],[[22506,90395],[-209,-423]],[[22521,90404],[-15,-9]],[[22643,90336],[-122,68]],[[22643,90336],[257,169],[95,183]],[[22669,90843],[-148,-439]],[[22757,90802],[-3,1]],[[22103,90716],[-18,-464],[212,-280]],[[22506,90395],[96,552],[251,677],[-75,186],[-129,-295]],[[22753,93095],[158,172],[-86,255],[-72,-427]],[[23497,94345],[-293,-469],[7,-176]],[[23497,94345],[-19,-111]],[[23211,93700],[-132,-148],[-114,-335],[-150,-186],[81,-328],[287,206],[230,830],[65,495]],[[22595,92235],[329,255],[110,-133],[99,337],[-70,74],[-396,-240],[183,345],[-103,139],[-273,-427]],[[22579,92473],[1,-7]],[[22474,92585],[-25,-45]],[[11346,87025],[132,54],[-126,171],[-6,-225]],[[11359,86953],[96,-246],[109,50],[96,399],[-301,-203]],[[11486,86661],[205,-203],[168,235],[-156,259],[-217,-291]],[[11011,89449],[79,-119],[-300,-512],[71,-177],[-132,-57],[7,-191],[136,-17],[-94,-203],[185,4],[-15,-326],[291,-523],[232,-233],[116,119],[90,318],[-46,-587],[233,-242],[159,103],[182,-241]],[[12816,88473],[96,136],[-342,289],[-337,99],[-174,-144],[-448,193],[-118,-79],[-104,447],[-378,35]],[[12786,87032],[-59,144],[-77,921],[27,349],[139,27]],[[12205,86565],[181,390],[400,77]],[[10032,90098],[228,91],[167,-200],[293,227],[-17,523],[-215,134],[-357,-432],[-99,-343]],[[7993,88830],[271,400],[-136,-71],[-135,-329]],[[10854,89905],[310,-292],[167,254],[-236,454],[-241,-416]],[[12245,92702],[-156,204],[-50,-171],[45,-405],[109,-143]],[[12245,92702],[115,-96]],[[12376,92585],[-16,21]],[[15580,89368],[-175,1],[15,696]],[[15570,88202],[10,1166]],[[12816,88473],[463,72],[7,-115],[266,34],[4,-116],[534,37],[-3,133],[1216,45],[267,-361]],[[12193,92187],[-137,27],[-39,-219],[150,-339],[-152,-813],[-73,-172],[-54,271],[-261,129],[-229,11],[-150,-133],[45,-129],[-184,-437],[52,-249],[337,-327],[-22,232],[157,-151],[-236,-275],[-386,-164]],[[17651,86399],[168,-36],[29,411]],[[15565,87623],[396,-10],[-1,-97],[820,-789],[513,-68],[-8,-185],[366,-75]],[[15570,88202],[-5,-579]],[[16344,89643],[-138,-80],[-5,-222],[-621,27]],[[16978,89194],[-139,-6],[-126,359],[-232,-31],[-137,127]],[[17270,89224],[-292,-30]],[[17848,86774],[103,1230],[-200,36],[77,1030],[-92,83],[-466,71]],[[15565,87623],[194,-599],[-136,-238],[-18,-402],[212,-15],[58,-463],[159,-123],[97,95],[175,-489],[914,-78]],[[17577,85364],[74,1035]],[[17220,85311],[97,98],[260,-45]],[[17089,90037],[-407,-377],[128,-317],[168,-149]],[[17207,90166],[-118,-129]],[[17270,89224],[33,772],[-96,170]],[[17585,91388],[255,-679],[96,-95],[-193,539],[-158,235]],[[18001,90502],[35,-128],[187,36],[-167,291],[-55,-199]],[[17557,90755],[103,-241],[-36,368],[-67,-127]],[[17255,90531],[214,-211],[56,228],[-168,345],[17,313],[-87,43]],[[17287,91249],[10,-677],[-42,-41]],[[17245,90251],[88,-165],[93,216],[-170,174]],[[17256,90476],[-11,-225]],[[19134,90779],[-157,-214],[-282,-80],[20,-424],[-175,401],[-246,-106],[109,-299],[-148,87],[-29,-152],[-163,120],[-106,-382],[-149,-32],[-90,190],[-92,-340],[-47,436]],[[20180,89926],[-304,42],[-11,-114],[-522,158],[-209,767]],[[19949,87939],[231,1987]],[[17848,86774],[462,-163],[10,118],[706,-157],[87,451],[-43,169],[298,-133],[148,191],[44,457],[91,331],[298,-99]],[[17242,90170],[-35,-4]],[[17579,89984],[-128,-121],[103,-480],[-211,670],[-101,117]],[[17287,91249],[-234,41],[-53,-278],[-115,671],[-778,704],[-94,-121],[32,-232],[252,-202],[114,-315],[-220,228],[-148,-177],[162,-601],[51,-452],[-62,-225],[371,-457],[134,153],[107,-85],[283,136]],[[17256,90476],[-1,55]],[[17242,90170],[3,81]],[[16344,89643],[-181,253],[-308,696],[-91,385],[-145,-25],[143,259],[-171,292],[-11,192],[-167,68],[-86,241],[-162,161],[-30,296],[195,66],[156,292]],[[21627,91560],[-151,-261],[-526,-303]],[[20180,89926],[209,163],[9,-124],[201,101],[84,-242],[229,-111],[-1,364],[219,164],[56,168],[489,520],[96,425]],[[20806,90797],[67,-182],[-90,-232],[-231,364],[-220,22],[-318,-201],[-392,-50],[-488,261]],[[20950,90996],[-144,-199]],[[14824,80582],[681,3],[880,-54],[1181,-185],[-46,-642],[972,-245],[455,-155]],[[13395,83757],[28,-579],[200,29],[9,-221],[341,36],[16,-467],[263,20],[-6,236],[134,6],[6,-232],[134,8],[63,228],[132,8],[19,-346],[203,8],[3,-198],[204,3],[19,-592],[-183,-125],[22,-462],[-197,-235],[19,-300]],[[12786,87032],[83,-333],[14,-355],[211,-70],[151,-217],[7,-348],[-77,-10],[42,-930],[144,-214],[34,-798]],[[18523,84585],[4,-554],[-332,21],[-237,193],[-25,-198],[-297,-257],[-115,220],[-203,119],[-361,56],[45,831],[218,295]],[[19349,82764],[-222,620],[-230,128],[-44,363],[-192,296],[32,272],[-170,142]],[[18947,79304],[402,3460]],[[18523,84585],[-297,222],[-169,247],[-73,-42],[-194,293],[-213,59]],[[19349,82764],[600,5175]],[[11873,80066],[-289,-486],[114,-305],[48,-393],[245,104],[311,-11],[226,-223],[149,-289],[76,-506],[279,-436]],[[14824,80582],[-277,-48],[2,-135],[-267,-5],[2,-119],[-749,-94],[-662,-126],[-727,-179],[-22,266],[-251,-76]],[[13032,77521],[341,-179],[351,-540],[429,2],[140,-137],[239,-495],[270,245],[-114,258],[-7,282],[129,-139],[70,-273],[164,61],[10,268],[355,-135],[266,118],[-50,287],[192,63],[-42,163],[323,-52],[-13,175],[223,-270],[186,7],[554,361],[358,-87],[174,194],[534,-300],[562,470],[99,-50],[172,1486]],[[12117,82774],[318,32],[282,195],[114,-307],[175,51],[-210,-261],[-245,-667],[100,-100],[52,413],[134,305],[133,-106],[107,245],[178,-8],[-26,-287],[-239,-86],[-108,139],[-115,-284],[52,-436],[-204,48],[-358,-247],[-73,-697],[-311,-650]],[[11976,82043],[217,59],[-112,460],[36,212]],[[13395,83757],[-74,106],[-1277,-257],[-28,-476],[-88,-22],[48,-1065]],[[9061,85260],[101,-436],[51,278],[156,122],[198,-98],[247,566],[284,196],[-88,181],[-142,-110],[-193,237],[7,-218],[-293,-596],[-233,102],[-95,-224]],[[12205,86565],[121,-336],[45,155],[353,-23],[155,-346],[-36,-619],[-164,-253],[50,-168],[203,-67],[-44,-441]],[[12888,84467],[-135,191],[-162,-5],[-348,285],[-102,-244],[-40,231],[-104,-152],[-242,-58],[-241,104],[-374,-305],[-63,-123],[37,-337],[-102,-322],[175,-151],[143,310],[140,-32],[-212,-272],[-387,-285],[-166,-368],[308,-181],[337,-338],[139,140],[-15,-195],[159,-172],[343,-145]],[[24321,95205],[369,581],[-276,-221],[-93,-360]],[[25001,94768],[155,271],[-111,61],[-44,-332]],[[23902,94415],[33,-229],[138,-121],[32,164],[-203,186]],[[23880,93921],[197,-110],[115,347],[111,-34],[200,218],[56,279],[274,264],[128,716],[-123,47],[-188,-446],[-249,-80],[-111,-436],[-131,76],[-3,-375],[-89,-340],[-187,-126]],[[24921,93212],[468,106],[101,243],[-22,218],[207,557],[-115,772],[-157,85],[-171,-450],[60,-209],[-114,-489],[-208,-270],[-195,272],[8,531],[-167,-244]],[[23478,94234],[19,111]],[[22433,92548],[-10,5]],[[23189,91758],[52,-68]],[[23545,91913],[9,-45]],[[12360,92606],[-115,96]],[[13123,95337],[-1,12]],[[15486,92819],[23,-2]],[[70010,78819],[-6,-87]],[[93434,31253],[15,11]],[[85809,87686],[-22,7]],[[83624,81077],[-9,3]],[[83318,80218],[8,-2]],[[72413,79801],[0,22]],[[72189,79920],[-1,-14]],[[86437,89765],[-27,7]],[[86488,89751],[-45,12]],[[86090,88740],[-91,147]],[[84547,83281],[13,-3]],[[83314,80219],[-9,3]],[[80575,83510],[-3,6]],[[86324,96542],[3,15]],[[86435,96423],[-12,3]],[[82531,74093],[14,-8]],[[82256,74050],[58,13]],[[68141,33721],[1282,-207]],[[69268,36374],[-522,82],[10,203]],[[69423,33514],[-50,609],[-105,2251]],[[69268,36374],[630,-101]],[[67348,83427],[-8,-7]],[[67340,83420],[-37,-54]],[[65641,85118],[9,-66]],[[65644,85193],[-2,-54]],[[66319,85175],[-43,158]],[[67260,83365],[-23,-26]],[[95612,26282],[80,58]],[[95144,25996],[29,73]],[[87823,41567],[73,-34]],[[73174,19374],[-156,23]],[[64554,13054],[227,120],[944,-1142],[454,-295],[1191,988],[4416,3460],[215,932],[362,591],[126,4],[140,-245],[171,21],[199,-181],[5,427],[107,658],[183,314],[104,334],[181,-279],[395,-37],[245,358],[-201,726],[1818,1434],[1185,6465],[-318,2656],[33,628],[-41,613],[-174,246],[-247,763],[-365,302],[-81,326],[24,761],[91,316]],[[63942,15866],[612,-2812]],[[63337,18692],[605,-2826]],[[69423,33514],[-405,-3361],[-32,-720],[41,-1222],[106,-1437],[104,-1086],[154,-1101],[104,-480],[183,-540],[368,-707],[-845,-662],[-523,93],[-110,400],[-180,409],[-142,170],[-28,491],[-244,-33]],[[75403,35304],[-3,1]],[[75403,35304],[18,-6]],[[75430,35296],[-9,2]],[[75430,35296],[15,-5]],[[75943,34318],[-434,955],[-64,18]],[[65785,12448],[0,0]],[[67112,14764],[0,0]],[[74033,19417],[0,0]],[[73589,19357],[0,0]],[[76478,31797],[0,0]],[[64428,13121],[126,-67]],[[63942,15866],[-1073,67],[-1196,1509],[-811,923]],[[87784,62316],[-4,-16]],[[91128,56203],[-6,-19]],[[88023,60802],[8,11]],[[89700,40188],[-11,-6]],[[91849,34551],[-60,-76]],[[86383,24498],[-9,2]],[[81188,30757],[1207,-1591],[-47,-484],[-138,-71],[-25,-307],[-112,-12],[25,-265],[-92,-434],[-282,-647],[737,-933],[1093,-352],[1901,-642],[352,-1937],[52,-90]],[[81283,31684],[-95,-927]],[[76212,36184],[-29,7]],[[80045,31825],[117,1319]],[[75943,34318],[95,330],[696,561],[463,-113],[1702,-2503],[1146,-768]],[[80045,31825],[676,-462],[467,-606]],[[83084,69659],[-11,41]],[[83063,69473],[9,170]],[[84113,68901],[-162,177]],[[52256,91955],[51,21]],[[53076,90038],[21,-75]],[[52484,90739],[-11,31]],[[53451,87642],[-6,1]],[[15144,206],[396,196]],[[15144,206],[-78,-39]],[[12324,1196],[81,-399],[895,1249],[632,610],[459,-2],[279,-407],[-71,-531],[21,-563],[417,-78],[39,-232],[-342,-843],[332,167]],[[15330,2621],[0,0]],[[67429,25415],[-4,1]],[[60862,18366],[-128,-159]],[[60729,18208],[-101,128]],[[60623,18335],[-40,46]],[[60579,18389],[0,178]],[[89391,45937],[-19,6]],[[89344,45952],[-12,5]],[[15066,167],[78,39]],[[86684,62911],[-24,-29]],[[90757,43461],[-35,13]],[[89342,39434],[-16,-85]],[[89419,39840],[7,-4]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment