<!DOCTYPE html>
<html>

<head>
  <script src="d3.min.js"></script>
  <script src="topojson.min.js"></script>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
<script src="script.js"></script>
</body>

</html>
var width = 600,
  height = 300;

var projection = d3.geo.mercator()
  .center([0, 5])
  .scale(200)
  .rotate([-180, 0]);

var svg = d3.select("body").append("svg")
  .attr("width", width)
  .attr("height", height);

var path = d3.geo.path()
  .projection(projection);

var g = svg.append("g");

var r = d3.scale.linear()
  .domain([2000, 9000])
  .range([8, 30]);

// load and display the World
d3.json("world-110m2.json", function(error, topology) {

  d3.csv("Origin.csv", function(error, data) {
    d3.csv("ISO-3166.csv", function(error, newdata) {

      // MERGE DATASETS 
      data.forEach(function(exp) {
        var result = newdata.filter(function(newd) {
          return exp.Origin === newd.name
        })
        exp["country-code"] = (result[0] !== undefined) ? result[0]["country-code"] : null;
      })
      data.forEach(function(d) {
        d.Value = +d.Value;
        d["country-code"] = +d["country-code"];
      });

      var cd = data.filter(function(d) {
        return d.Value !== "*" && d.Value !== null && d.Value > 500
      }).sort(function(a, b) {
        return b.Value - a.Value
      });

      var paths = g.selectAll("path")
        .data(topojson.object(topology, topology.objects.countries)
          .geometries)
        .enter()
        .append("path")
        .attr("d", path);
        
        
        
        
        
        
        
      // CONVERT TO GEOJSON  
      var geojson = topojson.feature(topology, topology.objects.countries).features;  
      
      geojson.forEach(function(d) {
         d.centroid = projection(d3.geo.centroid(d));
     });
        
      g.selectAll("circle")
        .data(cd)
        .enter()
        .append("circle")
        .attr("class", "bubble")
        .attr("r", function(d){
          return r(+d.Value);
        })
        .attr('cx', function(d) { return d.centroid[0]})
        .attr('cy', function(d) { return d.centroid[1] })
        
        
        
        
        
        
        
    })
  })

  // zoom and pan
  var zoom = d3.behavior.zoom()
    .on("zoom", function() {
      g.attr("transform", "translate(" +
        d3.event.translate.join(",") + ")scale(" + d3.event.scale + ")");
      g.selectAll("path")
        .attr("d", path.projection(projection));
    });

  svg.call(zoom)

});
path {
  stroke: #c9cbbd;
  stroke-width: 0.25px;
  fill: #424244;
}

body {
  font-size: 12px;
    padding: 1em;
}

svg {
  fill: #c9cbbd;
  cursor: pointer;
}

.bubble {
  fill-opacity: .5;
  fill: #b0742e
}
topojson=function(){function t(t,e){function n(e){var n=t.arcs[e],r=n[0],o=[0,0];return n.forEach(function(t){o[0]+=t[0],o[1]+=t[1]}),[r,o]}var r={},o={},a={};e.forEach(function(t){var e=n(t);(r[e[0]]||(r[e[0]]=[])).push(t),(r[e[1]]||(r[e[1]]=[])).push(~t)}),e.forEach(function(t){var e,r,i=n(t),c=i[0],s=i[1];if(e=a[c])if(delete a[e.end],e.push(t),e.end=s,r=o[s]){delete o[r.start];var u=r===e?e:e.concat(r);o[u.start=e.start]=a[u.end=r.end]=u}else if(r=a[s]){delete o[r.start],delete a[r.end];var u=e.concat(r.map(function(t){return~t}).reverse());o[u.start=e.start]=a[u.end=r.start]=u}else o[e.start]=a[e.end]=e;else if(e=o[s])if(delete o[e.start],e.unshift(t),e.start=c,r=a[c]){delete a[r.end];var f=r===e?e:r.concat(e);o[f.start=r.start]=a[f.end=e.end]=f}else if(r=o[c]){delete o[r.start],delete a[r.end];var f=r.map(function(t){return~t}).reverse().concat(e);o[f.start=r.end]=a[f.end=e.end]=f}else o[e.start]=a[e.end]=e;else if(e=o[c])if(delete o[e.start],e.unshift(~t),e.start=s,r=a[s]){delete a[r.end];var f=r===e?e:r.concat(e);o[f.start=r.start]=a[f.end=e.end]=f}else if(r=o[s]){delete o[r.start],delete a[r.end];var f=r.map(function(t){return~t}).reverse().concat(e);o[f.start=r.end]=a[f.end=e.end]=f}else o[e.start]=a[e.end]=e;else if(e=a[s])if(delete a[e.end],e.push(~t),e.end=c,r=a[c]){delete o[r.start];var u=r===e?e:e.concat(r);o[u.start=e.start]=a[u.end=r.end]=u}else if(r=o[c]){delete o[r.start],delete a[r.end];var u=e.concat(r.map(function(t){return~t}).reverse());o[u.start=e.start]=a[u.end=r.start]=u}else o[e.start]=a[e.end]=e;else e=[t],o[e.start=c]=a[e.end=s]=e});var i=[];for(var c in a)i.push(a[c]);return i}function e(e,r,o){function a(t){0>t&&(t=~t),(l[t]||(l[t]=[])).push(f)}function i(t){t.forEach(a)}function c(t){t.forEach(i)}function s(t){"GeometryCollection"===t.type?t.geometries.forEach(s):t.type in d&&(f=t,d[t.type](t.arcs))}var u=[];if(arguments.length>1){var f,l=[],d={LineString:i,MultiLineString:c,Polygon:c,MultiPolygon:function(t){t.forEach(c)}};s(r),l.forEach(3>arguments.length?function(t,e){u.push([e])}:function(t,e){o(t[0],t[t.length-1])&&u.push([e])})}else for(var p=0,h=e.arcs.length;h>p;++p)u.push([p]);return n(e,{type:"MultiLineString",arcs:t(e,u)})}function n(t,e){function n(t,e){e.length&&e.pop();for(var n,o=h[0>t?~t:t],a=0,i=o.length,c=0,s=0;i>a;++a)e.push([(c+=(n=o[a])[0])*f+d,(s+=n[1])*l+p]);0>t&&r(e,i)}function o(t){return[t[0]*f+d,t[1]*l+p]}function a(t){for(var e=[],r=0,o=t.length;o>r;++r)n(t[r],e);return 2>e.length&&e.push(e[0]),e}function i(t){for(var e=a(t);4>e.length;)e.push(e[0]);return e}function c(t){return t.map(i)}function s(t){var e=t.type,n="GeometryCollection"===e?{type:e,geometries:t.geometries.map(s)}:e in v?{type:e,coordinates:v[e](t)}:{type:null};return"id"in t&&(n.id=t.id),"properties"in t&&(n.properties=t.properties),n}var u=t.transform,f=u.scale[0],l=u.scale[1],d=u.translate[0],p=u.translate[1],h=t.arcs,v={Point:function(t){return o(t.coordinates)},MultiPoint:function(t){return t.coordinates.map(o)},LineString:function(t){return a(t.arcs)},MultiLineString:function(t){return t.arcs.map(a)},Polygon:function(t){return c(t.arcs)},MultiPolygon:function(t){return t.arcs.map(c)}};return s(e)}function r(t,e){for(var n,r=t.length,o=r-e;--r>o;)n=t[o],t[o++]=t[r],t[r]=n}function o(t,e){for(var n=0,r=t.length;r>n;){var o=n+r>>>1;e>t[o]?n=o+1:r=o}return n}function a(t){function e(t,e){t.forEach(function(t){0>t&&(t=~t);var n=a[t]||(a[t]=[]);n[e]||(n.forEach(function(t){var n,r;r=o(n=i[e],t),n[r]!==t&&n.splice(r,0,t),r=o(n=i[t],e),n[r]!==e&&n.splice(r,0,e)}),n[e]=e)})}function n(t,n){t.forEach(function(t){e(t,n)})}function r(t,e){"GeometryCollection"===t.type?t.geometries.forEach(function(t){r(t,e)}):t.type in c&&c[t.type](t.arcs,e)}var a=[],i=t.map(function(){return[]}),c={LineString:e,MultiLineString:n,Polygon:n,MultiPolygon:function(t,e){t.forEach(function(t){n(t,e)})}};return t.forEach(r),i}return{version:"0.0.32",mesh:e,object:n,neighbors:a}}();
!function(){function n(n){return n&&(n.ownerDocument||n.document||n).documentElement}function t(n){return n&&(n.ownerDocument&&n.ownerDocument.defaultView||n.document&&n||n.defaultView)}function e(n,t){return t>n?-1:n>t?1:n>=t?0:NaN}function r(n){return null===n?NaN:+n}function u(n){return!isNaN(n)}function i(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n(t[i],e)<0?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n(t[i],e)>0?u=i:r=i+1}return r}}}function a(n){return n.length}function o(n){for(var t=1;n*t%1;)t*=10;return t}function l(n,t){for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}function c(){this._=Object.create(null)}function s(n){return(n+="")===xa||n[0]===ba?ba+n:n}function f(n){return(n+="")[0]===ba?n.slice(1):n}function h(n){return s(n)in this._}function g(n){return(n=s(n))in this._&&delete this._[n]}function p(){var n=[];for(var t in this._)n.push(f(t));return n}function v(){var n=0;for(var t in this._)++n;return n}function d(){for(var n in this._)return!1;return!0}function m(){this._=Object.create(null)}function y(n){return n}function M(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function x(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.slice(1);for(var e=0,r=_a.length;r>e;++e){var u=_a[e]+t;if(u in n)return u}}function b(){}function _(){}function w(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new c;return t.on=function(t,u){var i,a=r.get(t);return arguments.length<2?a&&a.on:(a&&(a.on=null,e=e.slice(0,i=e.indexOf(a)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function S(){oa.event.preventDefault()}function k(){for(var n,t=oa.event;n=t.sourceEvent;)t=n;return t}function N(n){for(var t=new _,e=0,r=arguments.length;++e<r;)t[arguments[e]]=w(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=oa.event;u.target=n,oa.event=u,t[u.type].apply(e,r)}finally{oa.event=i}}},t}function E(n){return Sa(n,Aa),n}function A(n){return"function"==typeof n?n:function(){return ka(n,this)}}function C(n){return"function"==typeof n?n:function(){return Na(n,this)}}function z(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=oa.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?o:a:n.local?i:u}function L(n){return n.trim().replace(/\s+/g," ")}function q(n){return new RegExp("(?:^|\\s+)"+oa.requote(n)+"(?:\\s+|$)","g")}function T(n){return(n+"").trim().split(/^|\s+/)}function R(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=T(n).map(D);var u=n.length;return"function"==typeof t?r:e}function D(n){var t=q(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",L(u+" "+n))):e.setAttribute("class",L(u.replace(t," ")))}}function P(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function U(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function j(n){function t(){var t=this.ownerDocument,e=this.namespaceURI;return e===Ca&&t.documentElement.namespaceURI===Ca?t.createElement(n):t.createElementNS(e,n)}function e(){return this.ownerDocument.createElementNS(n.space,n.local)}return"function"==typeof n?n:(n=oa.ns.qualify(n)).local?e:t}function F(){var n=this.parentNode;n&&n.removeChild(this)}function H(n){return{__data__:n}}function O(n){return function(){return Ea(this,n)}}function I(n){return arguments.length||(n=e),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function Y(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],a=0,o=i.length;o>a;a++)(u=i[a])&&t(u,a,e);return n}function Z(n){return Sa(n,La),n}function V(n){var t,e;return function(r,u,i){var a,o=n[i].update,l=o.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(a=o[t])&&++t<l;);return a}}function X(n,t,e){function r(){var t=this[a];t&&(this.removeEventListener(n,t,t.$),delete this[a])}function u(){var u=l(t,ca(arguments));r.call(this),this.addEventListener(n,this[a]=u,u.$=e),u._=t}function i(){var t,e=new RegExp("^__on([^.]+)"+oa.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var a="__on"+n,o=n.indexOf("."),l=$;o>0&&(n=n.slice(0,o));var c=qa.get(n);return c&&(n=c,l=B),o?t?u:r:t?b:i}function $(n,t){return function(e){var r=oa.event;oa.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{oa.event=r}}}function B(n,t){var e=$(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function W(e){var r=".dragsuppress-"+ ++Ra,u="click"+r,i=oa.select(t(e)).on("touchmove"+r,S).on("dragstart"+r,S).on("selectstart"+r,S);if(null==Ta&&(Ta="onselectstart"in e?!1:x(e.style,"userSelect")),Ta){var a=n(e).style,o=a[Ta];a[Ta]="none"}return function(n){if(i.on(r,null),Ta&&(a[Ta]=o),n){var t=function(){i.on(u,null)};i.on(u,function(){S(),t()},!0),setTimeout(t,0)}}}function J(n,e){e.changedTouches&&(e=e.changedTouches[0]);var r=n.ownerSVGElement||n;if(r.createSVGPoint){var u=r.createSVGPoint();if(0>Da){var i=t(n);if(i.scrollX||i.scrollY){r=oa.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var a=r[0][0].getScreenCTM();Da=!(a.f||a.e),r.remove()}}return Da?(u.x=e.pageX,u.y=e.pageY):(u.x=e.clientX,u.y=e.clientY),u=u.matrixTransform(n.getScreenCTM().inverse()),[u.x,u.y]}var o=n.getBoundingClientRect();return[e.clientX-o.left-n.clientLeft,e.clientY-o.top-n.clientTop]}function G(){return oa.event.changedTouches[0].identifier}function K(n){return n>0?1:0>n?-1:0}function Q(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function nn(n){return n>1?0:-1>n?ja:Math.acos(n)}function tn(n){return n>1?Oa:-1>n?-Oa:Math.asin(n)}function en(n){return((n=Math.exp(n))-1/n)/2}function rn(n){return((n=Math.exp(n))+1/n)/2}function un(n){return((n=Math.exp(2*n))-1)/(n+1)}function an(n){return(n=Math.sin(n/2))*n}function on(){}function ln(n,t,e){return this instanceof ln?(this.h=+n,this.s=+t,void(this.l=+e)):arguments.length<2?n instanceof ln?new ln(n.h,n.s,n.l):_n(""+n,wn,ln):new ln(n,t,e)}function cn(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(a-i)*n/60:180>n?a:240>n?i+(a-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,a;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,a=.5>=e?e*(1+t):e+t-e*t,i=2*e-a,new yn(u(n+120),u(n),u(n-120))}function sn(n,t,e){return this instanceof sn?(this.h=+n,this.c=+t,void(this.l=+e)):arguments.length<2?n instanceof sn?new sn(n.h,n.c,n.l):n instanceof hn?pn(n.l,n.a,n.b):pn((n=Sn((n=oa.rgb(n)).r,n.g,n.b)).l,n.a,n.b):new sn(n,t,e)}function fn(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),new hn(e,Math.cos(n*=Ia)*t,Math.sin(n)*t)}function hn(n,t,e){return this instanceof hn?(this.l=+n,this.a=+t,void(this.b=+e)):arguments.length<2?n instanceof hn?new hn(n.l,n.a,n.b):n instanceof sn?fn(n.h,n.c,n.l):Sn((n=yn(n)).r,n.g,n.b):new hn(n,t,e)}function gn(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=vn(u)*Qa,r=vn(r)*no,i=vn(i)*to,new yn(mn(3.2404542*u-1.5371385*r-.4985314*i),mn(-.969266*u+1.8760108*r+.041556*i),mn(.0556434*u-.2040259*r+1.0572252*i))}function pn(n,t,e){return n>0?new sn(Math.atan2(e,t)*Ya,Math.sqrt(t*t+e*e),n):new sn(NaN,NaN,n)}function vn(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function dn(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function mn(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function yn(n,t,e){return this instanceof yn?(this.r=~~n,this.g=~~t,void(this.b=~~e)):arguments.length<2?n instanceof yn?new yn(n.r,n.g,n.b):_n(""+n,yn,cn):new yn(n,t,e)}function Mn(n){return new yn(n>>16,n>>8&255,255&n)}function xn(n){return Mn(n)+""}function bn(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function _n(n,t,e){var r,u,i,a=0,o=0,l=0;if(r=/([a-z]+)\((.*)\)/.exec(n=n.toLowerCase()))switch(u=r[2].split(","),r[1]){case"hsl":return e(parseFloat(u[0]),parseFloat(u[1])/100,parseFloat(u[2])/100);case"rgb":return t(Nn(u[0]),Nn(u[1]),Nn(u[2]))}return(i=uo.get(n))?t(i.r,i.g,i.b):(null==n||"#"!==n.charAt(0)||isNaN(i=parseInt(n.slice(1),16))||(4===n.length?(a=(3840&i)>>4,a=a>>4|a,o=240&i,o=o>>4|o,l=15&i,l=l<<4|l):7===n.length&&(a=(16711680&i)>>16,o=(65280&i)>>8,l=255&i)),t(a,o,l))}function wn(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),a=Math.max(n,t,e),o=a-i,l=(a+i)/2;return o?(u=.5>l?o/(a+i):o/(2-a-i),r=n==a?(t-e)/o+(e>t?6:0):t==a?(e-n)/o+2:(n-t)/o+4,r*=60):(r=NaN,u=l>0&&1>l?0:r),new ln(r,u,l)}function Sn(n,t,e){n=kn(n),t=kn(t),e=kn(e);var r=dn((.4124564*n+.3575761*t+.1804375*e)/Qa),u=dn((.2126729*n+.7151522*t+.072175*e)/no),i=dn((.0193339*n+.119192*t+.9503041*e)/to);return hn(116*u-16,500*(r-u),200*(u-i))}function kn(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Nn(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function En(n){return"function"==typeof n?n:function(){return n}}function An(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),Cn(t,e,n,r)}}function Cn(n,t,e,r){function u(){var n,t=l.status;if(!t&&Ln(l)||t>=200&&300>t||304===t){try{n=e.call(i,l)}catch(r){return void a.error.call(i,r)}a.load.call(i,n)}else a.error.call(i,l)}var i={},a=oa.dispatch("beforesend","progress","load","error"),o={},l=new XMLHttpRequest,c=null;return!this.XDomainRequest||"withCredentials"in l||!/^(http(s)?:)?\/\//.test(n)||(l=new XDomainRequest),"onload"in l?l.onload=l.onerror=u:l.onreadystatechange=function(){l.readyState>3&&u()},l.onprogress=function(n){var t=oa.event;oa.event=n;try{a.progress.call(i,l)}finally{oa.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?o[n]:(null==t?delete o[n]:o[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(c=n,i):c},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(ca(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),l.open(e,n,!0),null==t||"accept"in o||(o.accept=t+",*/*"),l.setRequestHeader)for(var s in o)l.setRequestHeader(s,o[s]);return null!=t&&l.overrideMimeType&&l.overrideMimeType(t),null!=c&&(l.responseType=c),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),a.beforesend.call(i,l),l.send(null==r?null:r),i},i.abort=function(){return l.abort(),i},oa.rebind(i,a,"on"),null==r?i:i.get(zn(r))}function zn(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Ln(n){var t=n.responseType;return t&&"text"!==t?n.response:n.responseText}function qn(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={c:n,t:u,n:null};return ao?ao.n=i:io=i,ao=i,oo||(lo=clearTimeout(lo),oo=1,co(Tn)),i}function Tn(){var n=Rn(),t=Dn()-n;t>24?(isFinite(t)&&(clearTimeout(lo),lo=setTimeout(Tn,t)),oo=0):(oo=1,co(Tn))}function Rn(){for(var n=Date.now(),t=io;t;)n>=t.t&&t.c(n-t.t)&&(t.c=null),t=t.n;return n}function Dn(){for(var n,t=io,e=1/0;t;)t.c?(t.t<e&&(e=t.t),t=(n=t).n):t=n?n.n=t.n:io=t.n;return ao=n,e}function Pn(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Un(n,t){var e=Math.pow(10,3*Ma(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function jn(n){var t=n.decimal,e=n.thousands,r=n.grouping,u=n.currency,i=r&&e?function(n,t){for(var u=n.length,i=[],a=0,o=r[0],l=0;u>0&&o>0&&(l+o+1>t&&(o=Math.max(1,t-l)),i.push(n.substring(u-=o,u+o)),!((l+=o+1)>t));)o=r[a=(a+1)%r.length];return i.reverse().join(e)}:y;return function(n){var e=fo.exec(n),r=e[1]||" ",a=e[2]||">",o=e[3]||"-",l=e[4]||"",c=e[5],s=+e[6],f=e[7],h=e[8],g=e[9],p=1,v="",d="",m=!1,y=!0;switch(h&&(h=+h.substring(1)),(c||"0"===r&&"="===a)&&(c=r="0",a="="),g){case"n":f=!0,g="g";break;case"%":p=100,d="%",g="f";break;case"p":p=100,d="%",g="r";break;case"b":case"o":case"x":case"X":"#"===l&&(v="0"+g.toLowerCase());case"c":y=!1;case"d":m=!0,h=0;break;case"s":p=-1,g="r"}"$"===l&&(v=u[0],d=u[1]),"r"!=g||h||(g="g"),null!=h&&("g"==g?h=Math.max(1,Math.min(21,h)):("e"==g||"f"==g)&&(h=Math.max(0,Math.min(20,h)))),g=ho.get(g)||Fn;var M=c&&f;return function(n){var e=d;if(m&&n%1)return"";var u=0>n||0===n&&0>1/n?(n=-n,"-"):"-"===o?"":o;if(0>p){var l=oa.formatPrefix(n,h);n=l.scale(n),e=l.symbol+d}else n*=p;n=g(n,h);var x,b,_=n.lastIndexOf(".");if(0>_){var w=y?n.lastIndexOf("e"):-1;0>w?(x=n,b=""):(x=n.substring(0,w),b=n.substring(w))}else x=n.substring(0,_),b=t+n.substring(_+1);!c&&f&&(x=i(x,1/0));var S=v.length+x.length+b.length+(M?0:u.length),k=s>S?new Array(S=s-S+1).join(r):"";return M&&(x=i(k+x,k.length?s-b.length:1/0)),u+=v,n=x+b,("<"===a?u+n+k:">"===a?k+u+n:"^"===a?k.substring(0,S>>=1)+u+n+k.substring(S):u+(M?n:k+n))+e}}}function Fn(n){return n+""}function Hn(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function On(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new po(e-1)),1),e}function i(n,e){return t(n=new po(+n),e),n}function a(n,r,i){var a=u(n),o=[];if(i>1)for(;r>a;)e(a)%i||o.push(new Date(+a)),t(a,1);else for(;r>a;)o.push(new Date(+a)),t(a,1);return o}function o(n,t,e){try{po=Hn;var r=new Hn;return r._=n,a(r,t,e)}finally{po=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=a;var l=n.utc=In(n);return l.floor=l,l.round=In(r),l.ceil=In(u),l.offset=In(i),l.range=o,n}function In(n){return function(t,e){try{po=Hn;var r=new Hn;return r._=t,n(r,e)._}finally{po=Date}}}function Yn(n){function t(n){function t(t){for(var e,u,i,a=[],o=-1,l=0;++o<r;)37===n.charCodeAt(o)&&(a.push(n.slice(l,o)),null!=(u=mo[e=n.charAt(++o)])&&(e=n.charAt(++o)),(i=A[e])&&(e=i(t,null==u?"e"===e?" ":"0":u)),a.push(e),l=o+1);return a.push(n.slice(l,o)),a.join("")}var r=n.length;return t.parse=function(t){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},u=e(r,n,t,0);if(u!=t.length)return null;"p"in r&&(r.H=r.H%12+12*r.p);var i=null!=r.Z&&po!==Hn,a=new(i?Hn:po);return"j"in r?a.setFullYear(r.y,0,r.j):"W"in r||"U"in r?("w"in r||(r.w="W"in r?1:0),a.setFullYear(r.y,0,1),a.setFullYear(r.y,0,"W"in r?(r.w+6)%7+7*r.W-(a.getDay()+5)%7:r.w+7*r.U-(a.getDay()+6)%7)):a.setFullYear(r.y,r.m,r.d),a.setHours(r.H+(r.Z/100|0),r.M+r.Z%100,r.S,r.L),i?a._:a},t.toString=function(){return n},t}function e(n,t,e,r){for(var u,i,a,o=0,l=t.length,c=e.length;l>o;){if(r>=c)return-1;if(u=t.charCodeAt(o++),37===u){if(a=t.charAt(o++),i=C[a in mo?t.charAt(o++):a],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){_.lastIndex=0;var r=_.exec(t.slice(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){x.lastIndex=0;var r=x.exec(t.slice(e));return r?(n.w=b.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){N.lastIndex=0;var r=N.exec(t.slice(e));return r?(n.m=E.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,e){S.lastIndex=0;var r=S.exec(t.slice(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,r){return e(n,A.c.toString(),t,r)}function l(n,t,r){return e(n,A.x.toString(),t,r)}function c(n,t,r){return e(n,A.X.toString(),t,r)}function s(n,t,e){var r=M.get(t.slice(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var f=n.dateTime,h=n.date,g=n.time,p=n.periods,v=n.days,d=n.shortDays,m=n.months,y=n.shortMonths;t.utc=function(n){function e(n){try{po=Hn;var t=new po;return t._=n,r(t)}finally{po=Date}}var r=t(n);return e.parse=function(n){try{po=Hn;var t=r.parse(n);return t&&t._}finally{po=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ct;var M=oa.map(),x=Vn(v),b=Xn(v),_=Vn(d),w=Xn(d),S=Vn(m),k=Xn(m),N=Vn(y),E=Xn(y);p.forEach(function(n,t){M.set(n.toLowerCase(),t)});var A={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return y[n.getMonth()]},B:function(n){return m[n.getMonth()]},c:t(f),d:function(n,t){return Zn(n.getDate(),t,2)},e:function(n,t){return Zn(n.getDate(),t,2)},H:function(n,t){return Zn(n.getHours(),t,2)},I:function(n,t){return Zn(n.getHours()%12||12,t,2)},j:function(n,t){return Zn(1+go.dayOfYear(n),t,3)},L:function(n,t){return Zn(n.getMilliseconds(),t,3)},m:function(n,t){return Zn(n.getMonth()+1,t,2)},M:function(n,t){return Zn(n.getMinutes(),t,2)},p:function(n){return p[+(n.getHours()>=12)]},S:function(n,t){return Zn(n.getSeconds(),t,2)},U:function(n,t){return Zn(go.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Zn(go.mondayOfYear(n),t,2)},x:t(h),X:t(g),y:function(n,t){return Zn(n.getFullYear()%100,t,2)},Y:function(n,t){return Zn(n.getFullYear()%1e4,t,4)},Z:ot,"%":function(){return"%"}},C={a:r,A:u,b:i,B:a,c:o,d:tt,e:tt,H:rt,I:rt,j:et,L:at,m:nt,M:ut,p:s,S:it,U:Bn,w:$n,W:Wn,x:l,X:c,y:Gn,Y:Jn,Z:Kn,"%":lt};return t}function Zn(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function Vn(n){return new RegExp("^(?:"+n.map(oa.requote).join("|")+")","i")}function Xn(n){for(var t=new c,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function $n(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Bn(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e));return r?(n.U=+r[0],e+r[0].length):-1}function Wn(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e));return r?(n.W=+r[0],e+r[0].length):-1}function Jn(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Gn(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.y=Qn(+r[0]),e+r[0].length):-1}function Kn(n,t,e){return/^[+-]\d{4}$/.test(t=t.slice(e,e+5))?(n.Z=-t,e+5):-1}function Qn(n){return n+(n>68?1900:2e3)}function nt(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function tt(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function et(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function rt(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function ut(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function it(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function at(n,t,e){yo.lastIndex=0;var r=yo.exec(t.slice(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function ot(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=Ma(t)/60|0,u=Ma(t)%60;return e+Zn(r,"0",2)+Zn(u,"0",2)}function lt(n,t,e){Mo.lastIndex=0;var r=Mo.exec(t.slice(e,e+1));return r?e+r[0].length:-1}function ct(n){for(var t=n.length,e=-1;++e<t;)n[e][0]=this(n[e][0]);return function(t){for(var e=0,r=n[e];!r[1](t);)r=n[++e];return r[0](t)}}function st(){}function ft(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function ht(n,t){n&&wo.hasOwnProperty(n.type)&&wo[n.type](n,t)}function gt(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function pt(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)gt(n[e],t,1);t.polygonEnd()}function vt(){function n(n,t){n*=Ia,t=t*Ia/2+ja/4;var e=n-r,a=e>=0?1:-1,o=a*e,l=Math.cos(t),c=Math.sin(t),s=i*c,f=u*l+s*Math.cos(o),h=s*a*Math.sin(o);ko.add(Math.atan2(h,f)),r=n,u=l,i=c}var t,e,r,u,i;No.point=function(a,o){No.point=n,r=(t=a)*Ia,u=Math.cos(o=(e=o)*Ia/2+ja/4),i=Math.sin(o)},No.lineEnd=function(){n(t,e)}}function dt(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function mt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function yt(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function Mt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function xt(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function bt(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function _t(n){return[Math.atan2(n[1],n[0]),tn(n[2])]}function wt(n,t){return Ma(n[0]-t[0])<Pa&&Ma(n[1]-t[1])<Pa}function St(n,t){n*=Ia;var e=Math.cos(t*=Ia);kt(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function kt(n,t,e){++Eo,Co+=(n-Co)/Eo,zo+=(t-zo)/Eo,Lo+=(e-Lo)/Eo}function Nt(){function n(n,u){n*=Ia;var i=Math.cos(u*=Ia),a=i*Math.cos(n),o=i*Math.sin(n),l=Math.sin(u),c=Math.atan2(Math.sqrt((c=e*l-r*o)*c+(c=r*a-t*l)*c+(c=t*o-e*a)*c),t*a+e*o+r*l);Ao+=c,qo+=c*(t+(t=a)),To+=c*(e+(e=o)),Ro+=c*(r+(r=l)),kt(t,e,r)}var t,e,r;jo.point=function(u,i){u*=Ia;var a=Math.cos(i*=Ia);t=a*Math.cos(u),e=a*Math.sin(u),r=Math.sin(i),jo.point=n,kt(t,e,r)}}function Et(){jo.point=St}function At(){function n(n,t){n*=Ia;var e=Math.cos(t*=Ia),a=e*Math.cos(n),o=e*Math.sin(n),l=Math.sin(t),c=u*l-i*o,s=i*a-r*l,f=r*o-u*a,h=Math.sqrt(c*c+s*s+f*f),g=r*a+u*o+i*l,p=h&&-nn(g)/h,v=Math.atan2(h,g);Do+=p*c,Po+=p*s,Uo+=p*f,Ao+=v,qo+=v*(r+(r=a)),To+=v*(u+(u=o)),Ro+=v*(i+(i=l)),kt(r,u,i)}var t,e,r,u,i;jo.point=function(a,o){t=a,e=o,jo.point=n,a*=Ia;var l=Math.cos(o*=Ia);r=l*Math.cos(a),u=l*Math.sin(a),i=Math.sin(o),kt(r,u,i)},jo.lineEnd=function(){n(t,e),jo.lineEnd=Et,jo.point=St}}function Ct(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function zt(){return!0}function Lt(n,t,e,r,u){var i=[],a=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(wt(e,r)){u.lineStart();for(var o=0;t>o;++o)u.point((e=n[o])[0],e[1]);return void u.lineEnd()}var l=new Tt(e,n,null,!0),c=new Tt(e,null,l,!1);l.o=c,i.push(l),a.push(c),l=new Tt(r,n,null,!1),c=new Tt(r,null,l,!0),l.o=c,i.push(l),a.push(c)}}),a.sort(t),qt(i),qt(a),i.length){for(var o=0,l=e,c=a.length;c>o;++o)a[o].e=l=!l;for(var s,f,h=i[0];;){for(var g=h,p=!0;g.v;)if((g=g.n)===h)return;s=g.z,u.lineStart();do{if(g.v=g.o.v=!0,g.e){if(p)for(var o=0,c=s.length;c>o;++o)u.point((f=s[o])[0],f[1]);else r(g.x,g.n.x,1,u);g=g.n}else{if(p){s=g.p.z;for(var o=s.length-1;o>=0;--o)u.point((f=s[o])[0],f[1])}else r(g.x,g.p.x,-1,u);g=g.p}g=g.o,s=g.z,p=!p}while(!g.v);u.lineEnd()}}}function qt(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.n=e=n[r],e.p=u,u=e;u.n=e=n[0],e.p=u}}function Tt(n,t,e,r){this.x=n,this.z=t,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Rt(n,t,e,r){return function(u,i){function a(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function o(n,t){var e=u(n,t);d.point(e[0],e[1])}function l(){y.point=o,d.lineStart()}function c(){y.point=a,d.lineEnd()}function s(n,t){v.push([n,t]);var e=u(n,t);x.point(e[0],e[1])}function f(){x.lineStart(),v=[]}function h(){s(v[0][0],v[0][1]),x.lineEnd();var n,t=x.clean(),e=M.buffer(),r=e.length;if(v.pop(),p.push(v),v=null,r)if(1&t){n=e[0];var u,r=n.length-1,a=-1;if(r>0){for(b||(i.polygonStart(),b=!0),i.lineStart();++a<r;)i.point((u=n[a])[0],u[1]);i.lineEnd()}}else r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Dt))}var g,p,v,d=t(i),m=u.invert(r[0],r[1]),y={point:a,lineStart:l,lineEnd:c,polygonStart:function(){y.point=s,y.lineStart=f,y.lineEnd=h,g=[],p=[]},polygonEnd:function(){y.point=a,y.lineStart=l,y.lineEnd=c,g=oa.merge(g);var n=Ot(m,p);g.length?(b||(i.polygonStart(),b=!0),Lt(g,Ut,n,e,i)):n&&(b||(i.polygonStart(),b=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),b&&(i.polygonEnd(),b=!1),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},M=Pt(),x=t(M),b=!1;return y}}function Dt(n){return n.length>1}function Pt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:b,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ut(n,t){return((n=n.x)[0]<0?n[1]-Oa-Pa:Oa-n[1])-((t=t.x)[0]<0?t[1]-Oa-Pa:Oa-t[1])}function jt(n){var t,e=NaN,r=NaN,u=NaN;return{lineStart:function(){n.lineStart(),t=1},point:function(i,a){var o=i>0?ja:-ja,l=Ma(i-e);Ma(l-ja)<Pa?(n.point(e,r=(r+a)/2>0?Oa:-Oa),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(o,r),n.point(i,r),t=0):u!==o&&l>=ja&&(Ma(e-u)<Pa&&(e-=u*Pa),Ma(i-o)<Pa&&(i-=o*Pa),r=Ft(e,r,i,a),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(o,r),t=0),n.point(e=i,r=a),u=o},lineEnd:function(){n.lineEnd(),e=r=NaN},clean:function(){return 2-t}}}function Ft(n,t,e,r){var u,i,a=Math.sin(n-e);return Ma(a)>Pa?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*a)):(t+r)/2}function Ht(n,t,e,r){var u;if(null==n)u=e*Oa,r.point(-ja,u),r.point(0,u),r.point(ja,u),r.point(ja,0),r.point(ja,-u),r.point(0,-u),r.point(-ja,-u),r.point(-ja,0),r.point(-ja,u);else if(Ma(n[0]-t[0])>Pa){var i=n[0]<t[0]?ja:-ja;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function Ot(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,a=0;ko.reset();for(var o=0,l=t.length;l>o;++o){var c=t[o],s=c.length;if(s)for(var f=c[0],h=f[0],g=f[1]/2+ja/4,p=Math.sin(g),v=Math.cos(g),d=1;;){d===s&&(d=0),n=c[d];var m=n[0],y=n[1]/2+ja/4,M=Math.sin(y),x=Math.cos(y),b=m-h,_=b>=0?1:-1,w=_*b,S=w>ja,k=p*M;if(ko.add(Math.atan2(k*_*Math.sin(w),v*x+k*Math.cos(w))),i+=S?b+_*Fa:b,S^h>=e^m>=e){var N=yt(dt(f),dt(n));bt(N);var E=yt(u,N);bt(E);var A=(S^b>=0?-1:1)*tn(E[2]);(r>A||r===A&&(N[0]||N[1]))&&(a+=S^b>=0?1:-1)}if(!d++)break;h=m,p=M,v=x,f=n}}return(-Pa>i||Pa>i&&0>ko)^1&a}function It(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,l,c,s;return{lineStart:function(){c=l=!1,s=1},point:function(f,h){var g,p=[f,h],v=t(f,h),d=a?v?0:u(f,h):v?u(f+(0>f?ja:-ja),h):0;if(!e&&(c=l=v)&&n.lineStart(),v!==l&&(g=r(e,p),(wt(e,g)||wt(p,g))&&(p[0]+=Pa,p[1]+=Pa,v=t(p[0],p[1]))),v!==l)s=0,v?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(o&&e&&a^v){var m;d&i||!(m=r(p,e,!0))||(s=0,a?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!v||e&&wt(e,p)||n.point(p[0],p[1]),e=p,l=v,i=d},lineEnd:function(){l&&n.lineEnd(),e=null},clean:function(){return s|(c&&l)<<1}}}function r(n,t,e){var r=dt(n),u=dt(t),a=[1,0,0],o=yt(r,u),l=mt(o,o),c=o[0],s=l-c*c;if(!s)return!e&&n;var f=i*l/s,h=-i*c/s,g=yt(a,o),p=xt(a,f),v=xt(o,h);Mt(p,v);var d=g,m=mt(p,d),y=mt(d,d),M=m*m-y*(mt(p,p)-1);if(!(0>M)){var x=Math.sqrt(M),b=xt(d,(-m-x)/y);if(Mt(b,p),b=_t(b),!e)return b;var _,w=n[0],S=t[0],k=n[1],N=t[1];w>S&&(_=w,w=S,S=_);var E=S-w,A=Ma(E-ja)<Pa,C=A||Pa>E;if(!A&&k>N&&(_=k,k=N,N=_),C?A?k+N>0^b[1]<(Ma(b[0]-w)<Pa?k:N):k<=b[1]&&b[1]<=N:E>ja^(w<=b[0]&&b[0]<=S)){var z=xt(d,(-m+x)/y);return Mt(z,p),[b,_t(z)]}}}function u(t,e){var r=a?n:ja-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),a=i>0,o=Ma(i)>Pa,l=ve(n,6*Ia);return Rt(t,e,l,a?[0,-n]:[-ja,n-ja])}function Yt(n,t,e,r){return function(u){var i,a=u.a,o=u.b,l=a.x,c=a.y,s=o.x,f=o.y,h=0,g=1,p=s-l,v=f-c;if(i=n-l,p||!(i>0)){if(i/=p,0>p){if(h>i)return;g>i&&(g=i)}else if(p>0){if(i>g)return;i>h&&(h=i)}if(i=e-l,p||!(0>i)){if(i/=p,0>p){if(i>g)return;i>h&&(h=i)}else if(p>0){if(h>i)return;g>i&&(g=i)}if(i=t-c,v||!(i>0)){if(i/=v,0>v){if(h>i)return;g>i&&(g=i)}else if(v>0){if(i>g)return;i>h&&(h=i)}if(i=r-c,v||!(0>i)){if(i/=v,0>v){if(i>g)return;i>h&&(h=i)}else if(v>0){if(h>i)return;g>i&&(g=i)}return h>0&&(u.a={x:l+h*p,y:c+h*v}),1>g&&(u.b={x:l+g*p,y:c+g*v}),u}}}}}}function Zt(n,t,e,r){function u(r,u){return Ma(r[0]-n)<Pa?u>0?0:3:Ma(r[0]-e)<Pa?u>0?2:1:Ma(r[1]-t)<Pa?u>0?1:0:u>0?3:2}function i(n,t){return a(n.x,t.x)}function a(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(o){function l(n){for(var t=0,e=d.length,r=n[1],u=0;e>u;++u)for(var i,a=1,o=d[u],l=o.length,c=o[0];l>a;++a)i=o[a],c[1]<=r?i[1]>r&&Q(c,i,n)>0&&++t:i[1]<=r&&Q(c,i,n)<0&&--t,c=i;return 0!==t}function c(i,o,l,c){var s=0,f=0;if(null==i||(s=u(i,l))!==(f=u(o,l))||a(i,o)<0^l>0){do c.point(0===s||3===s?n:e,s>1?r:t);while((s=(s+l+4)%4)!==f)}else c.point(o[0],o[1])}function s(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function f(n,t){s(n,t)&&o.point(n,t)}function h(){C.point=p,d&&d.push(m=[]),S=!0,w=!1,b=_=NaN}function g(){v&&(p(y,M),x&&w&&E.rejoin(),v.push(E.buffer())),C.point=f,w&&o.lineEnd()}function p(n,t){n=Math.max(-Ho,Math.min(Ho,n)),t=Math.max(-Ho,Math.min(Ho,t));var e=s(n,t);if(d&&m.push([n,t]),S)y=n,M=t,x=e,S=!1,e&&(o.lineStart(),o.point(n,t));else if(e&&w)o.point(n,t);else{var r={a:{x:b,y:_},b:{x:n,y:t}};A(r)?(w||(o.lineStart(),o.point(r.a.x,r.a.y)),o.point(r.b.x,r.b.y),e||o.lineEnd(),k=!1):e&&(o.lineStart(),o.point(n,t),k=!1)}b=n,_=t,w=e}var v,d,m,y,M,x,b,_,w,S,k,N=o,E=Pt(),A=Yt(n,t,e,r),C={point:f,lineStart:h,lineEnd:g,polygonStart:function(){o=E,v=[],d=[],k=!0},polygonEnd:function(){o=N,v=oa.merge(v);var t=l([n,r]),e=k&&t,u=v.length;(e||u)&&(o.polygonStart(),e&&(o.lineStart(),c(null,null,1,o),o.lineEnd()),u&&Lt(v,i,t,c,o),o.polygonEnd()),v=d=m=null}};return C}}function Vt(n){var t=0,e=ja/3,r=oe(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*ja/180,e=n[1]*ja/180):[t/ja*180,e/ja*180]},u}function Xt(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),a-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),a=Math.sqrt(i)/u;return e.invert=function(n,t){var e=a-t;return[Math.atan2(n,e)/u,tn((i-(n*n+e*e)*u*u)/(2*u))]},e}function $t(){function n(n,t){Io+=u*n-r*t,r=n,u=t}var t,e,r,u;$o.point=function(i,a){$o.point=n,t=r=i,e=u=a},$o.lineEnd=function(){n(t,e)}}function Bt(n,t){Yo>n&&(Yo=n),n>Vo&&(Vo=n),Zo>t&&(Zo=t),t>Xo&&(Xo=t)}function Wt(){function n(n,t){a.push("M",n,",",t,i)}function t(n,t){a.push("M",n,",",t),o.point=e}function e(n,t){a.push("L",n,",",t)}function r(){o.point=n}function u(){a.push("Z")}var i=Jt(4.5),a=[],o={point:n,lineStart:function(){o.point=t},lineEnd:r,polygonStart:function(){o.lineEnd=u},polygonEnd:function(){o.lineEnd=r,o.point=n},pointRadius:function(n){return i=Jt(n),o},result:function(){if(a.length){var n=a.join("");return a=[],n}}};return o}function Jt(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Gt(n,t){Co+=n,zo+=t,++Lo}function Kt(){function n(n,r){var u=n-t,i=r-e,a=Math.sqrt(u*u+i*i);qo+=a*(t+n)/2,To+=a*(e+r)/2,Ro+=a,Gt(t=n,e=r)}var t,e;Wo.point=function(r,u){Wo.point=n,Gt(t=r,e=u)}}function Qt(){Wo.point=Gt}function ne(){function n(n,t){var e=n-r,i=t-u,a=Math.sqrt(e*e+i*i);qo+=a*(r+n)/2,To+=a*(u+t)/2,Ro+=a,a=u*n-r*t,Do+=a*(r+n),Po+=a*(u+t),Uo+=3*a,Gt(r=n,u=t)}var t,e,r,u;Wo.point=function(i,a){Wo.point=n,Gt(t=r=i,e=u=a)},Wo.lineEnd=function(){n(t,e)}}function te(n){function t(t,e){n.moveTo(t+a,e),n.arc(t,e,a,0,Fa)}function e(t,e){n.moveTo(t,e),o.point=r}function r(t,e){n.lineTo(t,e)}function u(){o.point=t}function i(){n.closePath()}var a=4.5,o={point:t,lineStart:function(){o.point=e},lineEnd:u,polygonStart:function(){o.lineEnd=i},polygonEnd:function(){o.lineEnd=u,o.point=t},pointRadius:function(n){return a=n,o},result:b};return o}function ee(n){function t(n){return(o?r:e)(n)}function e(t){return ie(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){M=NaN,S.point=i,t.lineStart()}function i(e,r){var i=dt([e,r]),a=n(e,r);u(M,x,y,b,_,w,M=a[0],x=a[1],y=e,b=i[0],_=i[1],w=i[2],o,t),t.point(M,x)}function a(){S.point=e,t.lineEnd()}function l(){
r(),S.point=c,S.lineEnd=s}function c(n,t){i(f=n,h=t),g=M,p=x,v=b,d=_,m=w,S.point=i}function s(){u(M,x,y,b,_,w,g,p,f,v,d,m,o,t),S.lineEnd=a,a()}var f,h,g,p,v,d,m,y,M,x,b,_,w,S={point:e,lineStart:r,lineEnd:a,polygonStart:function(){t.polygonStart(),S.lineStart=l},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function u(t,e,r,o,l,c,s,f,h,g,p,v,d,m){var y=s-t,M=f-e,x=y*y+M*M;if(x>4*i&&d--){var b=o+g,_=l+p,w=c+v,S=Math.sqrt(b*b+_*_+w*w),k=Math.asin(w/=S),N=Ma(Ma(w)-1)<Pa||Ma(r-h)<Pa?(r+h)/2:Math.atan2(_,b),E=n(N,k),A=E[0],C=E[1],z=A-t,L=C-e,q=M*z-y*L;(q*q/x>i||Ma((y*z+M*L)/x-.5)>.3||a>o*g+l*p+c*v)&&(u(t,e,r,o,l,c,A,C,N,b/=S,_/=S,w,d,m),m.point(A,C),u(A,C,N,b,_,w,s,f,h,g,p,v,d,m))}}var i=.5,a=Math.cos(30*Ia),o=16;return t.precision=function(n){return arguments.length?(o=(i=n*n)>0&&16,t):Math.sqrt(i)},t}function re(n){var t=ee(function(t,e){return n([t*Ya,e*Ya])});return function(n){return le(t(n))}}function ue(n){this.stream=n}function ie(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function ae(n){return oe(function(){return n})()}function oe(n){function t(n){return n=o(n[0]*Ia,n[1]*Ia),[n[0]*h+l,c-n[1]*h]}function e(n){return n=o.invert((n[0]-l)/h,(c-n[1])/h),n&&[n[0]*Ya,n[1]*Ya]}function r(){o=Ct(a=fe(m,M,x),i);var n=i(v,d);return l=g-n[0]*h,c=p+n[1]*h,u()}function u(){return s&&(s.valid=!1,s=null),t}var i,a,o,l,c,s,f=ee(function(n,t){return n=i(n,t),[n[0]*h+l,c-n[1]*h]}),h=150,g=480,p=250,v=0,d=0,m=0,M=0,x=0,b=Fo,_=y,w=null,S=null;return t.stream=function(n){return s&&(s.valid=!1),s=le(b(a,f(_(n)))),s.valid=!0,s},t.clipAngle=function(n){return arguments.length?(b=null==n?(w=n,Fo):It((w=+n)*Ia),u()):w},t.clipExtent=function(n){return arguments.length?(S=n,_=n?Zt(n[0][0],n[0][1],n[1][0],n[1][1]):y,u()):S},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(v=n[0]%360*Ia,d=n[1]%360*Ia,r()):[v*Ya,d*Ya]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Ia,M=n[1]%360*Ia,x=n.length>2?n[2]%360*Ia:0,r()):[m*Ya,M*Ya,x*Ya]},oa.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function le(n){return ie(n,function(t,e){n.point(t*Ia,e*Ia)})}function ce(n,t){return[n,t]}function se(n,t){return[n>ja?n-Fa:-ja>n?n+Fa:n,t]}function fe(n,t,e){return n?t||e?Ct(ge(n),pe(t,e)):ge(n):t||e?pe(t,e):se}function he(n){return function(t,e){return t+=n,[t>ja?t-Fa:-ja>t?t+Fa:t,e]}}function ge(n){var t=he(n);return t.invert=he(-n),t}function pe(n,t){function e(n,t){var e=Math.cos(t),o=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),s=c*r+o*u;return[Math.atan2(l*i-s*a,o*r-c*u),tn(s*i+l*a)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),a=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),o=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),s=c*i-l*a;return[Math.atan2(l*i+c*a,o*r+s*u),tn(s*r-o*u)]},e}function ve(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,a,o){var l=a*t;null!=u?(u=de(e,u),i=de(e,i),(a>0?i>u:u>i)&&(u+=a*Fa)):(u=n+a*Fa,i=n-.5*l);for(var c,s=u;a>0?s>i:i>s;s-=l)o.point((c=_t([e,-r*Math.cos(s),-r*Math.sin(s)]))[0],c[1])}}function de(n,t){var e=dt(t);e[0]-=n,bt(e);var r=nn(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Pa)%(2*Math.PI)}function me(n,t,e){var r=oa.range(n,t-Pa,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function ye(n,t,e){var r=oa.range(n,t-Pa,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function Me(n){return n.source}function xe(n){return n.target}function be(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),a=Math.cos(r),o=Math.sin(r),l=u*Math.cos(n),c=u*Math.sin(n),s=a*Math.cos(e),f=a*Math.sin(e),h=2*Math.asin(Math.sqrt(an(r-t)+u*a*an(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*l+t*s,u=e*c+t*f,a=e*i+t*o;return[Math.atan2(u,r)*Ya,Math.atan2(a,Math.sqrt(r*r+u*u))*Ya]}:function(){return[n*Ya,t*Ya]};return p.distance=h,p}function _e(){function n(n,u){var i=Math.sin(u*=Ia),a=Math.cos(u),o=Ma((n*=Ia)-t),l=Math.cos(o);Jo+=Math.atan2(Math.sqrt((o=a*Math.sin(o))*o+(o=r*i-e*a*l)*o),e*i+r*a*l),t=n,e=i,r=a}var t,e,r;Go.point=function(u,i){t=u*Ia,e=Math.sin(i*=Ia),r=Math.cos(i),Go.point=n},Go.lineEnd=function(){Go.point=Go.lineEnd=b}}function we(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),a=Math.cos(u);return[Math.atan2(n*i,r*a),Math.asin(r&&e*i/r)]},e}function Se(n,t){function e(n,t){a>0?-Oa+Pa>t&&(t=-Oa+Pa):t>Oa-Pa&&(t=Oa-Pa);var e=a/Math.pow(u(t),i);return[e*Math.sin(i*n),a-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(ja/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),a=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=a-t,r=K(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(a/r,1/i))-Oa]},e):Ne}function ke(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return Ma(u)<Pa?ce:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-K(u)*Math.sqrt(n*n+e*e)]},e)}function Ne(n,t){return[n,Math.log(Math.tan(ja/4+t/2))]}function Ee(n){var t,e=ae(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var a=i.apply(e,arguments);if(a===e){if(t=null==n){var o=ja*r(),l=u();i([[l[0]-o,l[1]-o],[l[0]+o,l[1]+o]])}}else t&&(a=null);return a},e.clipExtent(null)}function Ae(n,t){return[Math.log(Math.tan(ja/4+t/2)),-n]}function Ce(n){return n[0]}function ze(n){return n[1]}function Le(n){for(var t=n.length,e=[0,1],r=2,u=2;t>u;u++){for(;r>1&&Q(n[e[r-2]],n[e[r-1]],n[u])<=0;)--r;e[r++]=u}return e.slice(0,r)}function qe(n,t){return n[0]-t[0]||n[1]-t[1]}function Te(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Re(n,t,e,r){var u=n[0],i=e[0],a=t[0]-u,o=r[0]-i,l=n[1],c=e[1],s=t[1]-l,f=r[1]-c,h=(o*(l-c)-f*(u-i))/(f*a-o*s);return[u+h*a,l+h*s]}function De(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Pe(){rr(this),this.edge=this.site=this.circle=null}function Ue(n){var t=cl.pop()||new Pe;return t.site=n,t}function je(n){Be(n),al.remove(n),cl.push(n),rr(n)}function Fe(n){var t=n.circle,e=t.x,r=t.cy,u={x:e,y:r},i=n.P,a=n.N,o=[n];je(n);for(var l=i;l.circle&&Ma(e-l.circle.x)<Pa&&Ma(r-l.circle.cy)<Pa;)i=l.P,o.unshift(l),je(l),l=i;o.unshift(l),Be(l);for(var c=a;c.circle&&Ma(e-c.circle.x)<Pa&&Ma(r-c.circle.cy)<Pa;)a=c.N,o.push(c),je(c),c=a;o.push(c),Be(c);var s,f=o.length;for(s=1;f>s;++s)c=o[s],l=o[s-1],nr(c.edge,l.site,c.site,u);l=o[0],c=o[f-1],c.edge=Ke(l.site,c.site,null,u),$e(l),$e(c)}function He(n){for(var t,e,r,u,i=n.x,a=n.y,o=al._;o;)if(r=Oe(o,a)-i,r>Pa)o=o.L;else{if(u=i-Ie(o,a),!(u>Pa)){r>-Pa?(t=o.P,e=o):u>-Pa?(t=o,e=o.N):t=e=o;break}if(!o.R){t=o;break}o=o.R}var l=Ue(n);if(al.insert(t,l),t||e){if(t===e)return Be(t),e=Ue(t.site),al.insert(l,e),l.edge=e.edge=Ke(t.site,l.site),$e(t),void $e(e);if(!e)return void(l.edge=Ke(t.site,l.site));Be(t),Be(e);var c=t.site,s=c.x,f=c.y,h=n.x-s,g=n.y-f,p=e.site,v=p.x-s,d=p.y-f,m=2*(h*d-g*v),y=h*h+g*g,M=v*v+d*d,x={x:(d*y-g*M)/m+s,y:(h*M-v*y)/m+f};nr(e.edge,c,p,x),l.edge=Ke(c,n,null,x),e.edge=Ke(n,p,null,x),$e(t),$e(e)}}function Oe(n,t){var e=n.site,r=e.x,u=e.y,i=u-t;if(!i)return r;var a=n.P;if(!a)return-(1/0);e=a.site;var o=e.x,l=e.y,c=l-t;if(!c)return o;var s=o-r,f=1/i-1/c,h=s/c;return f?(-h+Math.sqrt(h*h-2*f*(s*s/(-2*c)-l+c/2+u-i/2)))/f+r:(r+o)/2}function Ie(n,t){var e=n.N;if(e)return Oe(e,t);var r=n.site;return r.y===t?r.x:1/0}function Ye(n){this.site=n,this.edges=[]}function Ze(n){for(var t,e,r,u,i,a,o,l,c,s,f=n[0][0],h=n[1][0],g=n[0][1],p=n[1][1],v=il,d=v.length;d--;)if(i=v[d],i&&i.prepare())for(o=i.edges,l=o.length,a=0;l>a;)s=o[a].end(),r=s.x,u=s.y,c=o[++a%l].start(),t=c.x,e=c.y,(Ma(r-t)>Pa||Ma(u-e)>Pa)&&(o.splice(a,0,new tr(Qe(i.site,s,Ma(r-f)<Pa&&p-u>Pa?{x:f,y:Ma(t-f)<Pa?e:p}:Ma(u-p)<Pa&&h-r>Pa?{x:Ma(e-p)<Pa?t:h,y:p}:Ma(r-h)<Pa&&u-g>Pa?{x:h,y:Ma(t-h)<Pa?e:g}:Ma(u-g)<Pa&&r-f>Pa?{x:Ma(e-g)<Pa?t:f,y:g}:null),i.site,null)),++l)}function Ve(n,t){return t.angle-n.angle}function Xe(){rr(this),this.x=this.y=this.arc=this.site=this.cy=null}function $e(n){var t=n.P,e=n.N;if(t&&e){var r=t.site,u=n.site,i=e.site;if(r!==i){var a=u.x,o=u.y,l=r.x-a,c=r.y-o,s=i.x-a,f=i.y-o,h=2*(l*f-c*s);if(!(h>=-Ua)){var g=l*l+c*c,p=s*s+f*f,v=(f*g-c*p)/h,d=(l*p-s*g)/h,f=d+o,m=sl.pop()||new Xe;m.arc=n,m.site=u,m.x=v+a,m.y=f+Math.sqrt(v*v+d*d),m.cy=f,n.circle=m;for(var y=null,M=ll._;M;)if(m.y<M.y||m.y===M.y&&m.x<=M.x){if(!M.L){y=M.P;break}M=M.L}else{if(!M.R){y=M;break}M=M.R}ll.insert(y,m),y||(ol=m)}}}}function Be(n){var t=n.circle;t&&(t.P||(ol=t.N),ll.remove(t),sl.push(t),rr(t),n.circle=null)}function We(n){for(var t,e=ul,r=Yt(n[0][0],n[0][1],n[1][0],n[1][1]),u=e.length;u--;)t=e[u],(!Je(t,n)||!r(t)||Ma(t.a.x-t.b.x)<Pa&&Ma(t.a.y-t.b.y)<Pa)&&(t.a=t.b=null,e.splice(u,1))}function Je(n,t){var e=n.b;if(e)return!0;var r,u,i=n.a,a=t[0][0],o=t[1][0],l=t[0][1],c=t[1][1],s=n.l,f=n.r,h=s.x,g=s.y,p=f.x,v=f.y,d=(h+p)/2,m=(g+v)/2;if(v===g){if(a>d||d>=o)return;if(h>p){if(i){if(i.y>=c)return}else i={x:d,y:l};e={x:d,y:c}}else{if(i){if(i.y<l)return}else i={x:d,y:c};e={x:d,y:l}}}else if(r=(h-p)/(v-g),u=m-r*d,-1>r||r>1)if(h>p){if(i){if(i.y>=c)return}else i={x:(l-u)/r,y:l};e={x:(c-u)/r,y:c}}else{if(i){if(i.y<l)return}else i={x:(c-u)/r,y:c};e={x:(l-u)/r,y:l}}else if(v>g){if(i){if(i.x>=o)return}else i={x:a,y:r*a+u};e={x:o,y:r*o+u}}else{if(i){if(i.x<a)return}else i={x:o,y:r*o+u};e={x:a,y:r*a+u}}return n.a=i,n.b=e,!0}function Ge(n,t){this.l=n,this.r=t,this.a=this.b=null}function Ke(n,t,e,r){var u=new Ge(n,t);return ul.push(u),e&&nr(u,n,t,e),r&&nr(u,t,n,r),il[n.i].edges.push(new tr(u,n,t)),il[t.i].edges.push(new tr(u,t,n)),u}function Qe(n,t,e){var r=new Ge(n,null);return r.a=t,r.b=e,ul.push(r),r}function nr(n,t,e,r){n.a||n.b?n.l===e?n.b=r:n.a=r:(n.a=r,n.l=t,n.r=e)}function tr(n,t,e){var r=n.a,u=n.b;this.edge=n,this.site=t,this.angle=e?Math.atan2(e.y-t.y,e.x-t.x):n.l===t?Math.atan2(u.x-r.x,r.y-u.y):Math.atan2(r.x-u.x,u.y-r.y)}function er(){this._=null}function rr(n){n.U=n.C=n.L=n.R=n.P=n.N=null}function ur(n,t){var e=t,r=t.R,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function ir(n,t){var e=t,r=t.L,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function ar(n){for(;n.L;)n=n.L;return n}function or(n,t){var e,r,u,i=n.sort(lr).pop();for(ul=[],il=new Array(n.length),al=new er,ll=new er;;)if(u=ol,i&&(!u||i.y<u.y||i.y===u.y&&i.x<u.x))(i.x!==e||i.y!==r)&&(il[i.i]=new Ye(i),He(i),e=i.x,r=i.y),i=n.pop();else{if(!u)break;Fe(u.arc)}t&&(We(t),Ze(t));var a={cells:il,edges:ul};return al=ll=ul=il=null,a}function lr(n,t){return t.y-n.y||t.x-n.x}function cr(n,t,e){return(n.x-e.x)*(t.y-n.y)-(n.x-t.x)*(e.y-n.y)}function sr(n){return n.x}function fr(n){return n.y}function hr(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function gr(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var a=.5*(e+u),o=.5*(r+i),l=t.nodes;l[0]&&gr(n,l[0],e,r,a,o),l[1]&&gr(n,l[1],a,r,u,o),l[2]&&gr(n,l[2],e,o,a,i),l[3]&&gr(n,l[3],a,o,u,i)}}function pr(n,t,e,r,u,i,a){var o,l=1/0;return function c(n,s,f,h,g){if(!(s>i||f>a||r>h||u>g)){if(p=n.point){var p,v=t-n.x,d=e-n.y,m=v*v+d*d;if(l>m){var y=Math.sqrt(l=m);r=t-y,u=e-y,i=t+y,a=e+y,o=p}}for(var M=n.nodes,x=.5*(s+h),b=.5*(f+g),_=t>=x,w=e>=b,S=w<<1|_,k=S+4;k>S;++S)if(n=M[3&S])switch(3&S){case 0:c(n,s,f,x,b);break;case 1:c(n,x,f,h,b);break;case 2:c(n,s,b,x,g);break;case 3:c(n,x,b,h,g)}}}(n,r,u,i,a),o}function vr(n,t){n=oa.rgb(n),t=oa.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,a=t.g-r,o=t.b-u;return function(n){return"#"+bn(Math.round(e+i*n))+bn(Math.round(r+a*n))+bn(Math.round(u+o*n))}}function dr(n,t){var e,r={},u={};for(e in n)e in t?r[e]=Mr(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function mr(n,t){return n=+n,t=+t,function(e){return n*(1-e)+t*e}}function yr(n,t){var e,r,u,i=hl.lastIndex=gl.lastIndex=0,a=-1,o=[],l=[];for(n+="",t+="";(e=hl.exec(n))&&(r=gl.exec(t));)(u=r.index)>i&&(u=t.slice(i,u),o[a]?o[a]+=u:o[++a]=u),(e=e[0])===(r=r[0])?o[a]?o[a]+=r:o[++a]=r:(o[++a]=null,l.push({i:a,x:mr(e,r)})),i=gl.lastIndex;return i<t.length&&(u=t.slice(i),o[a]?o[a]+=u:o[++a]=u),o.length<2?l[0]?(t=l[0].x,function(n){return t(n)+""}):function(){return t}:(t=l.length,function(n){for(var e,r=0;t>r;++r)o[(e=l[r]).i]=e.x(n);return o.join("")})}function Mr(n,t){for(var e,r=oa.interpolators.length;--r>=0&&!(e=oa.interpolators[r](n,t)););return e}function xr(n,t){var e,r=[],u=[],i=n.length,a=t.length,o=Math.min(n.length,t.length);for(e=0;o>e;++e)r.push(Mr(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;a>e;++e)u[e]=t[e];return function(n){for(e=0;o>e;++e)u[e]=r[e](n);return u}}function br(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function _r(n){return function(t){return 1-n(1-t)}}function wr(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function Sr(n){return n*n}function kr(n){return n*n*n}function Nr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function Er(n){return function(t){return Math.pow(t,n)}}function Ar(n){return 1-Math.cos(n*Oa)}function Cr(n){return Math.pow(2,10*(n-1))}function zr(n){return 1-Math.sqrt(1-n*n)}function Lr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/Fa*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*Fa/t)}}function qr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Tr(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Rr(n,t){n=oa.hcl(n),t=oa.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,a=t.c-r,o=t.l-u;return isNaN(a)&&(a=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return fn(e+i*n,r+a*n,u+o*n)+""}}function Dr(n,t){n=oa.hsl(n),t=oa.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,a=t.s-r,o=t.l-u;return isNaN(a)&&(a=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return cn(e+i*n,r+a*n,u+o*n)+""}}function Pr(n,t){n=oa.lab(n),t=oa.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,a=t.a-r,o=t.b-u;return function(n){return gn(e+i*n,r+a*n,u+o*n)+""}}function Ur(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function jr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Hr(t),u=Fr(t,e),i=Hr(Or(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*Ya,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*Ya:0}function Fr(n,t){return n[0]*t[0]+n[1]*t[1]}function Hr(n){var t=Math.sqrt(Fr(n,n));return t&&(n[0]/=t,n[1]/=t),t}function Or(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Ir(n){return n.length?n.pop()+",":""}function Yr(n,t,e,r){if(n[0]!==t[0]||n[1]!==t[1]){var u=e.push("translate(",null,",",null,")");r.push({i:u-4,x:mr(n[0],t[0])},{i:u-2,x:mr(n[1],t[1])})}else(t[0]||t[1])&&e.push("translate("+t+")")}function Zr(n,t,e,r){n!==t?(n-t>180?t+=360:t-n>180&&(n+=360),r.push({i:e.push(Ir(e)+"rotate(",null,")")-2,x:mr(n,t)})):t&&e.push(Ir(e)+"rotate("+t+")")}function Vr(n,t,e,r){n!==t?r.push({i:e.push(Ir(e)+"skewX(",null,")")-2,x:mr(n,t)}):t&&e.push(Ir(e)+"skewX("+t+")")}function Xr(n,t,e,r){if(n[0]!==t[0]||n[1]!==t[1]){var u=e.push(Ir(e)+"scale(",null,",",null,")");r.push({i:u-4,x:mr(n[0],t[0])},{i:u-2,x:mr(n[1],t[1])})}else(1!==t[0]||1!==t[1])&&e.push(Ir(e)+"scale("+t+")")}function $r(n,t){var e=[],r=[];return n=oa.transform(n),t=oa.transform(t),Yr(n.translate,t.translate,e,r),Zr(n.rotate,t.rotate,e,r),Vr(n.skew,t.skew,e,r),Xr(n.scale,t.scale,e,r),n=t=null,function(n){for(var t,u=-1,i=r.length;++u<i;)e[(t=r[u]).i]=t.x(n);return e.join("")}}function Br(n,t){return t=(t-=n=+n)||1/t,function(e){return(e-n)/t}}function Wr(n,t){return t=(t-=n=+n)||1/t,function(e){return Math.max(0,Math.min(1,(e-n)/t))}}function Jr(n){for(var t=n.source,e=n.target,r=Kr(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function Gr(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Kr(n,t){if(n===t)return n;for(var e=Gr(n),r=Gr(t),u=e.pop(),i=r.pop(),a=null;u===i;)a=u,u=e.pop(),i=r.pop();return a}function Qr(n){n.fixed|=2}function nu(n){n.fixed&=-7}function tu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function eu(n){n.fixed&=-5}function ru(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,a=n.nodes,o=a.length,l=-1;++l<o;)i=a[l],null!=i&&(ru(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var c=t*e[n.point.index];n.charge+=n.pointCharge=c,r+=c*n.point.x,u+=c*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function uu(n,t){return oa.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=su,n}function iu(n,t){for(var e=[n];null!=(n=e.pop());)if(t(n),(u=n.children)&&(r=u.length))for(var r,u;--r>=0;)e.push(u[r])}function au(n,t){for(var e=[n],r=[];null!=(n=e.pop());)if(r.push(n),(i=n.children)&&(u=i.length))for(var u,i,a=-1;++a<u;)e.push(i[a]);for(;null!=(n=r.pop());)t(n)}function ou(n){return n.children}function lu(n){return n.value}function cu(n,t){return t.value-n.value}function su(n){return oa.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function fu(n){return n.x}function hu(n){return n.y}function gu(n,t,e){n.y0=t,n.y=e}function pu(n){return oa.range(n.length)}function vu(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function du(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function mu(n){return n.reduce(yu,0)}function yu(n,t){return n+t[1]}function Mu(n,t){return xu(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function xu(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function bu(n){return[oa.min(n),oa.max(n)]}function _u(n,t){return n.value-t.value}function wu(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Su(n,t){n._pack_next=t,t._pack_prev=n}function ku(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function Nu(n){function t(n){s=Math.min(n.x-n.r,s),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(c=e.length)){var e,r,u,i,a,o,l,c,s=1/0,f=-(1/0),h=1/0,g=-(1/0);if(e.forEach(Eu),r=e[0],r.x=-r.r,r.y=0,t(r),c>1&&(u=e[1],u.x=u.r,u.y=0,t(u),c>2))for(i=e[2],zu(r,u,i),t(i),wu(r,i),r._pack_prev=i,wu(i,u),u=r._pack_next,a=3;c>a;a++){zu(r,u,i=e[a]);var p=0,v=1,d=1;for(o=u._pack_next;o!==u;o=o._pack_next,v++)if(ku(o,i)){p=1;break}if(1==p)for(l=r._pack_prev;l!==o._pack_prev&&!ku(l,i);l=l._pack_prev,d++);p?(d>v||v==d&&u.r<r.r?Su(r,u=o):Su(r=l,u),a--):(wu(r,i),u=i,t(i))}var m=(s+f)/2,y=(h+g)/2,M=0;for(a=0;c>a;a++)i=e[a],i.x-=m,i.y-=y,M=Math.max(M,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=M,e.forEach(Au)}}function Eu(n){n._pack_next=n._pack_prev=n}function Au(n){delete n._pack_next,delete n._pack_prev}function Cu(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,a=u.length;++i<a;)Cu(u[i],t,e,r)}function zu(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var a=t.r+e.r,o=u*u+i*i;a*=a,r*=r;var l=.5+(r-a)/(2*o),c=Math.sqrt(Math.max(0,2*a*(r+o)-(r-=o)*r-a*a))/(2*o);e.x=n.x+l*u+c*i,e.y=n.y+l*i-c*u}else e.x=n.x+r,e.y=n.y}function Lu(n,t){return n.parent==t.parent?1:2}function qu(n){var t=n.children;return t.length?t[0]:n.t}function Tu(n){var t,e=n.children;return(t=e.length)?e[t-1]:n.t}function Ru(n,t,e){var r=e/(t.i-n.i);t.c-=r,t.s+=e,n.c+=r,t.z+=e,t.m+=e}function Du(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i],t.z+=e,t.m+=e,e+=t.s+(r+=t.c)}function Pu(n,t,e){return n.a.parent===t.parent?n.a:e}function Uu(n){return 1+oa.max(n,function(n){return n.y})}function ju(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Fu(n){var t=n.children;return t&&t.length?Fu(t[0]):n}function Hu(n){var t,e=n.children;return e&&(t=e.length)?Hu(e[t-1]):n}function Ou(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Iu(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function Yu(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Zu(n){return n.rangeExtent?n.rangeExtent():Yu(n.range())}function Vu(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Xu(n,t){var e,r=0,u=n.length-1,i=n[r],a=n[u];return i>a&&(e=r,r=u,u=e,e=i,i=a,a=e),n[r]=t.floor(i),n[u]=t.ceil(a),n}function $u(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:Sl}function Bu(n,t,e,r){var u=[],i=[],a=0,o=Math.min(n.length,t.length)-1;for(n[o]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++a<=o;)u.push(e(n[a-1],n[a])),i.push(r(t[a-1],t[a]));return function(t){var e=oa.bisect(n,t,1,o)-1;return i[e](u[e](t))}}function Wu(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?Bu:Vu,l=r?Wr:Br;return a=u(n,t,l,e),o=u(t,n,l,Mr),i}function i(n){return a(n)}var a,o;return i.invert=function(n){return o(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Ur)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return Qu(n,t)},i.tickFormat=function(t,e){return ni(n,t,e)},i.nice=function(t){return Gu(n,t),u()},i.copy=function(){return Wu(n,t,e,r)},u()}function Ju(n,t){return oa.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Gu(n,t){return Xu(n,$u(Ku(n,t)[2])),Xu(n,$u(Ku(n,t)[2])),n}function Ku(n,t){null==t&&(t=10);var e=Yu(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function Qu(n,t){return oa.range.apply(oa,Ku(n,t))}function ni(n,t,e){var r=Ku(n,t);if(e){var u=fo.exec(e);if(u.shift(),"s"===u[8]){var i=oa.formatPrefix(Math.max(Ma(r[0]),Ma(r[1])));return u[7]||(u[7]="."+ti(i.scale(r[2]))),u[8]="f",e=oa.format(u.join("")),function(n){return e(i.scale(n))+i.symbol}}u[7]||(u[7]="."+ei(u[8],r)),e=u.join("")}else e=",."+ti(r[2])+"f";return oa.format(e)}function ti(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function ei(n,t){var e=ti(t[2]);return n in kl?Math.abs(e-ti(Math.max(Ma(t[0]),Ma(t[1]))))+ +("e"!==n):e-2*("%"===n)}function ri(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function a(t){return n(u(t))}return a.invert=function(t){return i(n.invert(t))},a.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),a):r},a.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),a):t},a.nice=function(){var t=Xu(r.map(u),e?Math:El);return n.domain(t),r=t.map(i),a},a.ticks=function(){var n=Yu(r),a=[],o=n[0],l=n[1],c=Math.floor(u(o)),s=Math.ceil(u(l)),f=t%1?2:t;if(isFinite(s-c)){if(e){for(;s>c;c++)for(var h=1;f>h;h++)a.push(i(c)*h);a.push(i(c))}else for(a.push(i(c));c++<s;)for(var h=f-1;h>0;h--)a.push(i(c)*h);for(c=0;a[c]<o;c++);for(s=a.length;a[s-1]>l;s--);a=a.slice(c,s)}return a},a.tickFormat=function(n,e){if(!arguments.length)return Nl;arguments.length<2?e=Nl:"function"!=typeof e&&(e=oa.format(e));var r=Math.max(1,t*n/a.ticks().length);return function(n){var a=n/i(Math.round(u(n)));return t-.5>a*t&&(a*=t),r>=a?e(n):""}},a.copy=function(){return ri(n.copy(),t,e,r)},Ju(a,n)}function ui(n,t,e){function r(t){return n(u(t))}var u=ii(t),i=ii(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return Qu(e,n)},r.tickFormat=function(n,t){return ni(e,n,t)},r.nice=function(n){return r.domain(Gu(e,n))},r.exponent=function(a){return arguments.length?(u=ii(t=a),i=ii(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return ui(n.copy(),t,e)},Ju(r,n)}function ii(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function ai(n,t){function e(e){return i[((u.get(e)||("range"===t.t?u.set(e,n.push(e)):NaN))-1)%i.length]}function r(t,e){return oa.range(n.length).map(function(n){return t+e*n})}var u,i,a;return e.domain=function(r){if(!arguments.length)return n;n=[],u=new c;for(var i,a=-1,o=r.length;++a<o;)u.has(i=r[a])||u.set(i,n.push(i));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(i=n,a=0,t={t:"range",a:arguments},e):i},e.rangePoints=function(u,o){arguments.length<2&&(o=0);var l=u[0],c=u[1],s=n.length<2?(l=(l+c)/2,0):(c-l)/(n.length-1+o);return i=r(l+s*o/2,s),a=0,t={t:"rangePoints",a:arguments},e},e.rangeRoundPoints=function(u,o){arguments.length<2&&(o=0);var l=u[0],c=u[1],s=n.length<2?(l=c=Math.round((l+c)/2),0):(c-l)/(n.length-1+o)|0;return i=r(l+Math.round(s*o/2+(c-l-(n.length-1+o)*s)/2),s),a=0,t={t:"rangeRoundPoints",a:arguments},e},e.rangeBands=function(u,o,l){arguments.length<2&&(o=0),arguments.length<3&&(l=o);var c=u[1]<u[0],s=u[c-0],f=u[1-c],h=(f-s)/(n.length-o+2*l);return i=r(s+h*l,h),c&&i.reverse(),a=h*(1-o),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,o,l){arguments.length<2&&(o=0),arguments.length<3&&(l=o);var c=u[1]<u[0],s=u[c-0],f=u[1-c],h=Math.floor((f-s)/(n.length-o+2*l));return i=r(s+Math.round((f-s-(n.length-o)*h)/2),h),c&&i.reverse(),a=Math.round(h*(1-o)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return Yu(t.a[0])},e.copy=function(){return ai(n,t)},e.domain(n)}function oi(n,t){function i(){var e=0,r=t.length;for(o=[];++e<r;)o[e-1]=oa.quantile(n,e/r);return a}function a(n){return isNaN(n=+n)?void 0:t[oa.bisect(o,n)]}var o;return a.domain=function(t){return arguments.length?(n=t.map(r).filter(u).sort(e),i()):n},a.range=function(n){return arguments.length?(t=n,i()):t},a.quantiles=function(){return o},a.invertExtent=function(e){return e=t.indexOf(e),0>e?[NaN,NaN]:[e>0?o[e-1]:n[0],e<o.length?o[e]:n[n.length-1]]},a.copy=function(){return oi(n,t)},i()}function li(n,t,e){function r(t){return e[Math.max(0,Math.min(a,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),a=e.length-1,r}var i,a;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?NaN:t/i+n,[t,t+1/i]},r.copy=function(){return li(n,t,e)},u()}function ci(n,t){function e(e){return e>=e?t[oa.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return ci(n,t)},e}function si(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Qu(n,t)},t.tickFormat=function(t,e){return ni(n,t,e)},t.copy=function(){return si(n)},t}function fi(){return 0}function hi(n){return n.innerRadius}function gi(n){return n.outerRadius}function pi(n){return n.startAngle}function vi(n){return n.endAngle}function di(n){return n&&n.padAngle}function mi(n,t,e,r){return(n-e)*t-(t-r)*n>0?0:1}function yi(n,t,e,r,u){var i=n[0]-t[0],a=n[1]-t[1],o=(u?r:-r)/Math.sqrt(i*i+a*a),l=o*a,c=-o*i,s=n[0]+l,f=n[1]+c,h=t[0]+l,g=t[1]+c,p=(s+h)/2,v=(f+g)/2,d=h-s,m=g-f,y=d*d+m*m,M=e-r,x=s*g-h*f,b=(0>m?-1:1)*Math.sqrt(Math.max(0,M*M*y-x*x)),_=(x*m-d*b)/y,w=(-x*d-m*b)/y,S=(x*m+d*b)/y,k=(-x*d+m*b)/y,N=_-p,E=w-v,A=S-p,C=k-v;return N*N+E*E>A*A+C*C&&(_=S,w=k),[[_-l,w-c],[_*e/M,w*e/M]]}function Mi(n){function t(t){function a(){c.push("M",i(n(s),o))}for(var l,c=[],s=[],f=-1,h=t.length,g=En(e),p=En(r);++f<h;)u.call(this,l=t[f],f)?s.push([+g.call(this,l,f),+p.call(this,l,f)]):s.length&&(a(),s=[]);return s.length&&a(),c.length?c.join(""):null}var e=Ce,r=ze,u=zt,i=xi,a=i.key,o=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(a="function"==typeof n?i=n:(i=Tl.get(n)||xi).key,t):a},t.tension=function(n){return arguments.length?(o=n,t):o},t}function xi(n){return n.length>1?n.join("L"):n+"Z"}function bi(n){return n.join("L")+"Z"}function _i(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function wi(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function Si(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function ki(n,t){return n.length<4?xi(n):n[1]+Ai(n.slice(1,-1),Ci(n,t))}function Ni(n,t){return n.length<3?bi(n):n[0]+Ai((n.push(n[0]),n),Ci([n[n.length-2]].concat(n,[n[1]]),t))}function Ei(n,t){return n.length<3?xi(n):n[0]+Ai(n,Ci(n,t))}function Ai(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return xi(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],a=t[0],o=a,l=1;if(e&&(r+="Q"+(i[0]-2*a[0]/3)+","+(i[1]-2*a[1]/3)+","+i[0]+","+i[1],u=n[1],l=2),t.length>1){o=t[1],i=n[l],l++,r+="C"+(u[0]+a[0])+","+(u[1]+a[1])+","+(i[0]-o[0])+","+(i[1]-o[1])+","+i[0]+","+i[1];for(var c=2;c<t.length;c++,l++)i=n[l],o=t[c],r+="S"+(i[0]-o[0])+","+(i[1]-o[1])+","+i[0]+","+i[1]}if(e){var s=n[l];r+="Q"+(i[0]+2*o[0]/3)+","+(i[1]+2*o[1]/3)+","+s[0]+","+s[1]}return r}function Ci(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],a=n[1],o=1,l=n.length;++o<l;)e=i,i=a,a=n[o],r.push([u*(a[0]-e[0]),u*(a[1]-e[1])]);return r}function zi(n){if(n.length<3)return xi(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],a=[u,u,u,(r=n[1])[0]],o=[i,i,i,r[1]],l=[u,",",i,"L",Ri(Pl,a),",",Ri(Pl,o)];for(n.push(n[e-1]);++t<=e;)r=n[t],a.shift(),a.push(r[0]),o.shift(),o.push(r[1]),Di(l,a,o);return n.pop(),l.push("L",r),l.join("")}function Li(n){if(n.length<4)return xi(n);for(var t,e=[],r=-1,u=n.length,i=[0],a=[0];++r<3;)t=n[r],i.push(t[0]),a.push(t[1]);for(e.push(Ri(Pl,i)+","+Ri(Pl,a)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),a.shift(),a.push(t[1]),Di(e,i,a);return e.join("")}function qi(n){for(var t,e,r=-1,u=n.length,i=u+4,a=[],o=[];++r<4;)e=n[r%u],a.push(e[0]),o.push(e[1]);for(t=[Ri(Pl,a),",",Ri(Pl,o)],--r;++r<i;)e=n[r%u],a.shift(),a.push(e[0]),o.shift(),o.push(e[1]),Di(t,a,o);return t.join("")}function Ti(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],a=n[0][1],o=n[e][0]-i,l=n[e][1]-a,c=-1;++c<=e;)r=n[c],u=c/e,r[0]=t*r[0]+(1-t)*(i+u*o),r[1]=t*r[1]+(1-t)*(a+u*l);return zi(n)}function Ri(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function Di(n,t,e){n.push("C",Ri(Rl,t),",",Ri(Rl,e),",",Ri(Dl,t),",",Ri(Dl,e),",",Ri(Pl,t),",",Ri(Pl,e))}function Pi(n,t){return(t[1]-n[1])/(t[0]-n[0])}function Ui(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],a=r[0]=Pi(u,i);++t<e;)r[t]=(a+(a=Pi(u=i,i=n[t+1])))/2;return r[t]=a,r}function ji(n){for(var t,e,r,u,i=[],a=Ui(n),o=-1,l=n.length-1;++o<l;)t=Pi(n[o],n[o+1]),Ma(t)<Pa?a[o]=a[o+1]=0:(e=a[o]/t,r=a[o+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),a[o]=u*e,a[o+1]=u*r));for(o=-1;++o<=l;)u=(n[Math.min(l,o+1)][0]-n[Math.max(0,o-1)][0])/(6*(1+a[o]*a[o])),i.push([u||0,a[o]*u||0]);return i}function Fi(n){return n.length<3?xi(n):n[0]+Ai(n,ji(n))}function Hi(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]-Oa,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function Oi(n){function t(t){function l(){v.push("M",o(n(m),f),s,c(n(d.reverse()),f),"Z")}for(var h,g,p,v=[],d=[],m=[],y=-1,M=t.length,x=En(e),b=En(u),_=e===r?function(){
return g}:En(r),w=u===i?function(){return p}:En(i);++y<M;)a.call(this,h=t[y],y)?(d.push([g=+x.call(this,h,y),p=+b.call(this,h,y)]),m.push([+_.call(this,h,y),+w.call(this,h,y)])):d.length&&(l(),d=[],m=[]);return d.length&&l(),v.length?v.join(""):null}var e=Ce,r=Ce,u=0,i=ze,a=zt,o=xi,l=o.key,c=o,s="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(a=n,t):a},t.interpolate=function(n){return arguments.length?(l="function"==typeof n?o=n:(o=Tl.get(n)||xi).key,c=o.reverse||o,s=o.closed?"M":"L",t):l},t.tension=function(n){return arguments.length?(f=n,t):f},t}function Ii(n){return n.radius}function Yi(n){return[n.x,n.y]}function Zi(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]-Oa;return[e*Math.cos(r),e*Math.sin(r)]}}function Vi(){return 64}function Xi(){return"circle"}function $i(n){var t=Math.sqrt(n/ja);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Bi(n){return function(){var t,e,r;(t=this[n])&&(r=t[e=t.active])&&(r.timer.c=null,r.timer.t=NaN,--t.count?delete t[e]:delete this[n],t.active+=.5,r.event&&r.event.interrupt.call(this,this.__data__,r.index))}}function Wi(n,t,e){return Sa(n,Yl),n.namespace=t,n.id=e,n}function Ji(n,t,e,r){var u=n.id,i=n.namespace;return Y(n,"function"==typeof e?function(n,a,o){n[i][u].tween.set(t,r(e.call(n,n.__data__,a,o)))}:(e=r(e),function(n){n[i][u].tween.set(t,e)}))}function Gi(n){return null==n&&(n=""),function(){this.textContent=n}}function Ki(n){return null==n?"__transition__":"__transition_"+n+"__"}function Qi(n,t,e,r,u){function i(n){var t=v.delay;return s.t=t+l,n>=t?a(n-t):void(s.c=a)}function a(e){var u=p.active,i=p[u];i&&(i.timer.c=null,i.timer.t=NaN,--p.count,delete p[u],i.event&&i.event.interrupt.call(n,n.__data__,i.index));for(var a in p)if(r>+a){var c=p[a];c.timer.c=null,c.timer.t=NaN,--p.count,delete p[a]}s.c=o,qn(function(){return s.c&&o(e||1)&&(s.c=null,s.t=NaN),1},0,l),p.active=r,v.event&&v.event.start.call(n,n.__data__,t),g=[],v.tween.forEach(function(e,r){(r=r.call(n,n.__data__,t))&&g.push(r)}),h=v.ease,f=v.duration}function o(u){for(var i=u/f,a=h(i),o=g.length;o>0;)g[--o].call(n,a);return i>=1?(v.event&&v.event.end.call(n,n.__data__,t),--p.count?delete p[r]:delete n[e],1):void 0}var l,s,f,h,g,p=n[e]||(n[e]={active:0,count:0}),v=p[r];v||(l=u.time,s=qn(i,0,l),v=p[r]={tween:new c,time:l,timer:s,delay:u.delay,duration:u.duration,ease:u.ease,index:t},u=null,++p.count)}function na(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate("+(isFinite(r)?r:e(n))+",0)"})}function ta(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate(0,"+(isFinite(r)?r:e(n))+")"})}function ea(n){return n.toISOString()}function ra(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=oa.bisect(Kl,u);return i==Kl.length?[t.year,Ku(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/Kl[i-1]<Kl[i]/u?i-1:i]:[tc,Ku(n,e)[2]]}return r.invert=function(t){return ua(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(ua)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,ua(+e+1),t).length}var i=r.domain(),a=Yu(i),o=null==n?u(a,10):"number"==typeof n&&u(a,n);return o&&(n=o[0],t=o[1]),r.domain(Xu(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=ua(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=ua(+t+1);return t}}:n))},r.ticks=function(n,t){var e=Yu(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],ua(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return ra(n.copy(),t,e)},Ju(r,n)}function ua(n){return new Date(n)}function ia(n){return JSON.parse(n.responseText)}function aa(n){var t=sa.createRange();return t.selectNode(sa.body),t.createContextualFragment(n.responseText)}var oa={version:"3.5.16"},la=[].slice,ca=function(n){return la.call(n)},sa=this.document;if(sa)try{ca(sa.documentElement.childNodes)[0].nodeType}catch(fa){ca=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}if(Date.now||(Date.now=function(){return+new Date}),sa)try{sa.createElement("DIV").style.setProperty("opacity",0,"")}catch(ha){var ga=this.Element.prototype,pa=ga.setAttribute,va=ga.setAttributeNS,da=this.CSSStyleDeclaration.prototype,ma=da.setProperty;ga.setAttribute=function(n,t){pa.call(this,n,t+"")},ga.setAttributeNS=function(n,t,e){va.call(this,n,t,e+"")},da.setProperty=function(n,t,e){ma.call(this,n,t+"",e)}}oa.ascending=e,oa.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:NaN},oa.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i;)if(null!=(r=n[u])&&r>=r){e=r;break}for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i;)if(null!=(r=t.call(n,n[u],u))&&r>=r){e=r;break}for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},oa.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i;)if(null!=(r=n[u])&&r>=r){e=r;break}for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i;)if(null!=(r=t.call(n,n[u],u))&&r>=r){e=r;break}for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},oa.extent=function(n,t){var e,r,u,i=-1,a=n.length;if(1===arguments.length){for(;++i<a;)if(null!=(r=n[i])&&r>=r){e=u=r;break}for(;++i<a;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<a;)if(null!=(r=t.call(n,n[i],i))&&r>=r){e=u=r;break}for(;++i<a;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},oa.sum=function(n,t){var e,r=0,i=n.length,a=-1;if(1===arguments.length)for(;++a<i;)u(e=+n[a])&&(r+=e);else for(;++a<i;)u(e=+t.call(n,n[a],a))&&(r+=e);return r},oa.mean=function(n,t){var e,i=0,a=n.length,o=-1,l=a;if(1===arguments.length)for(;++o<a;)u(e=r(n[o]))?i+=e:--l;else for(;++o<a;)u(e=r(t.call(n,n[o],o)))?i+=e:--l;return l?i/l:void 0},oa.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},oa.median=function(n,t){var i,a=[],o=n.length,l=-1;if(1===arguments.length)for(;++l<o;)u(i=r(n[l]))&&a.push(i);else for(;++l<o;)u(i=r(t.call(n,n[l],l)))&&a.push(i);return a.length?oa.quantile(a.sort(e),.5):void 0},oa.variance=function(n,t){var e,i,a=n.length,o=0,l=0,c=-1,s=0;if(1===arguments.length)for(;++c<a;)u(e=r(n[c]))&&(i=e-o,o+=i/++s,l+=i*(e-o));else for(;++c<a;)u(e=r(t.call(n,n[c],c)))&&(i=e-o,o+=i/++s,l+=i*(e-o));return s>1?l/(s-1):void 0},oa.deviation=function(){var n=oa.variance.apply(this,arguments);return n?Math.sqrt(n):n};var ya=i(e);oa.bisectLeft=ya.left,oa.bisect=oa.bisectRight=ya.right,oa.bisector=function(n){return i(1===n.length?function(t,r){return e(n(t),r)}:n)},oa.shuffle=function(n,t,e){(i=arguments.length)<3&&(e=n.length,2>i&&(t=0));for(var r,u,i=e-t;i;)u=Math.random()*i--|0,r=n[i+t],n[i+t]=n[u+t],n[u+t]=r;return n},oa.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},oa.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},oa.transpose=function(n){if(!(u=n.length))return[];for(var t=-1,e=oa.min(n,a),r=new Array(e);++t<e;)for(var u,i=-1,o=r[t]=new Array(u);++i<u;)o[i]=n[i][t];return r},oa.zip=function(){return oa.transpose(arguments)},oa.keys=function(n){var t=[];for(var e in n)t.push(e);return t},oa.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},oa.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},oa.merge=function(n){for(var t,e,r,u=n.length,i=-1,a=0;++i<u;)a+=n[i].length;for(e=new Array(a);--u>=0;)for(r=n[u],t=r.length;--t>=0;)e[--a]=r[t];return e};var Ma=Math.abs;oa.range=function(n,t,e){if(arguments.length<3&&(e=1,arguments.length<2&&(t=n,n=0)),(t-n)/e===1/0)throw new Error("infinite range");var r,u=[],i=o(Ma(e)),a=-1;if(n*=i,t*=i,e*=i,0>e)for(;(r=n+e*++a)>t;)u.push(r/i);else for(;(r=n+e*++a)<t;)u.push(r/i);return u},oa.map=function(n,t){var e=new c;if(n instanceof c)n.forEach(function(n,t){e.set(n,t)});else if(Array.isArray(n)){var r,u=-1,i=n.length;if(1===arguments.length)for(;++u<i;)e.set(u,n[u]);else for(;++u<i;)e.set(t.call(n,r=n[u],u),r)}else for(var a in n)e.set(a,n[a]);return e};var xa="__proto__",ba="\x00";l(c,{has:h,get:function(n){return this._[s(n)]},set:function(n,t){return this._[s(n)]=t},remove:g,keys:p,values:function(){var n=[];for(var t in this._)n.push(this._[t]);return n},entries:function(){var n=[];for(var t in this._)n.push({key:f(t),value:this._[t]});return n},size:v,empty:d,forEach:function(n){for(var t in this._)n.call(this,f(t),this._[t])}}),oa.nest=function(){function n(t,a,o){if(o>=i.length)return r?r.call(u,a):e?a.sort(e):a;for(var l,s,f,h,g=-1,p=a.length,v=i[o++],d=new c;++g<p;)(h=d.get(l=v(s=a[g])))?h.push(s):d.set(l,[s]);return t?(s=t(),f=function(e,r){s.set(e,n(t,r,o))}):(s={},f=function(e,r){s[e]=n(t,r,o)}),d.forEach(f),s}function t(n,e){if(e>=i.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,u={},i=[],a=[];return u.map=function(t,e){return n(e,t,0)},u.entries=function(e){return t(n(oa.map,e,0),0)},u.key=function(n){return i.push(n),u},u.sortKeys=function(n){return a[i.length-1]=n,u},u.sortValues=function(n){return e=n,u},u.rollup=function(n){return r=n,u},u},oa.set=function(n){var t=new m;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},l(m,{has:h,add:function(n){return this._[s(n+="")]=!0,n},remove:g,values:p,size:v,empty:d,forEach:function(n){for(var t in this._)n.call(this,f(t))}}),oa.behavior={},oa.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=M(n,t,t[e]);return n};var _a=["webkit","ms","moz","Moz","o","O"];oa.dispatch=function(){for(var n=new _,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=w(n);return n},_.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.slice(e+1),n=n.slice(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},oa.event=null,oa.requote=function(n){return n.replace(wa,"\\$&")};var wa=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,Sa={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},ka=function(n,t){return t.querySelector(n)},Na=function(n,t){return t.querySelectorAll(n)},Ea=function(n,t){var e=n.matches||n[x(n,"matchesSelector")];return(Ea=function(n,t){return e.call(n,t)})(n,t)};"function"==typeof Sizzle&&(ka=function(n,t){return Sizzle(n,t)[0]||null},Na=Sizzle,Ea=Sizzle.matchesSelector),oa.selection=function(){return oa.select(sa.documentElement)};var Aa=oa.selection.prototype=[];Aa.select=function(n){var t,e,r,u,i=[];n=A(n);for(var a=-1,o=this.length;++a<o;){i.push(t=[]),t.parentNode=(r=this[a]).parentNode;for(var l=-1,c=r.length;++l<c;)(u=r[l])?(t.push(e=n.call(u,u.__data__,l,a)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return E(i)},Aa.selectAll=function(n){var t,e,r=[];n=C(n);for(var u=-1,i=this.length;++u<i;)for(var a=this[u],o=-1,l=a.length;++o<l;)(e=a[o])&&(r.push(t=ca(n.call(e,e.__data__,o,u))),t.parentNode=e);return E(r)};var Ca="http://www.w3.org/1999/xhtml",za={svg:"http://www.w3.org/2000/svg",xhtml:Ca,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};oa.ns={prefix:za,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&"xmlns"!==(e=n.slice(0,t))&&(n=n.slice(t+1)),za.hasOwnProperty(e)?{space:za[e],local:n}:n}},Aa.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=oa.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(z(t,n[t]));return this}return this.each(z(n,t))},Aa.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=T(n)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");++u<r;)if(!q(n[u]).test(t))return!1;return!0}for(t in n)this.each(R(t,n[t]));return this}return this.each(R(n,t))},Aa.style=function(n,e,r){var u=arguments.length;if(3>u){if("string"!=typeof n){2>u&&(e="");for(r in n)this.each(P(r,n[r],e));return this}if(2>u){var i=this.node();return t(i).getComputedStyle(i,null).getPropertyValue(n)}r=""}return this.each(P(n,e,r))},Aa.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(U(t,n[t]));return this}return this.each(U(n,t))},Aa.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},Aa.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},Aa.append=function(n){return n=j(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Aa.insert=function(n,t){return n=j(n),t=A(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},Aa.remove=function(){return this.each(F)},Aa.data=function(n,t){function e(n,e){var r,u,i,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),v=new Array(a);if(t){var d,m=new c,y=new Array(a);for(r=-1;++r<a;)(u=n[r])&&(m.has(d=t.call(u,u.__data__,r))?v[r]=u:m.set(d,u),y[r]=d);for(r=-1;++r<f;)(u=m.get(d=t.call(e,i=e[r],r)))?u!==!0&&(g[r]=u,u.__data__=i):p[r]=H(i),m.set(d,!0);for(r=-1;++r<a;)r in y&&m.get(y[r])!==!0&&(v[r]=n[r])}else{for(r=-1;++r<h;)u=n[r],i=e[r],u?(u.__data__=i,g[r]=u):p[r]=H(i);for(;f>r;++r)p[r]=H(e[r]);for(;a>r;++r)v[r]=n[r]}p.update=g,p.parentNode=g.parentNode=v.parentNode=n.parentNode,o.push(p),l.push(g),s.push(v)}var r,u,i=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++i<a;)(u=r[i])&&(n[i]=u.__data__);return n}var o=Z([]),l=E([]),s=E([]);if("function"==typeof n)for(;++i<a;)e(r=this[i],n.call(r,r.parentNode.__data__,i));else for(;++i<a;)e(r=this[i],n);return l.enter=function(){return o},l.exit=function(){return s},l},Aa.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},Aa.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=O(n));for(var i=0,a=this.length;a>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var o=0,l=e.length;l>o;o++)(r=e[o])&&n.call(r,r.__data__,o,i)&&t.push(r)}return E(u)},Aa.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},Aa.sort=function(n){n=I.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},Aa.each=function(n){return Y(this,function(t,e,r){n.call(t,t.__data__,e,r)})},Aa.call=function(n){var t=ca(arguments);return n.apply(t[0]=this,t),this},Aa.empty=function(){return!this.node()},Aa.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},Aa.size=function(){var n=0;return Y(this,function(){++n}),n};var La=[];oa.selection.enter=Z,oa.selection.enter.prototype=La,La.append=Aa.append,La.empty=Aa.empty,La.node=Aa.node,La.call=Aa.call,La.size=Aa.size,La.select=function(n){for(var t,e,r,u,i,a=[],o=-1,l=this.length;++o<l;){r=(u=this[o]).update,a.push(t=[]),t.parentNode=u.parentNode;for(var c=-1,s=u.length;++c<s;)(i=u[c])?(t.push(r[c]=e=n.call(u.parentNode,i.__data__,c,o)),e.__data__=i.__data__):t.push(null)}return E(a)},La.insert=function(n,t){return arguments.length<2&&(t=V(this)),Aa.insert.call(this,n,t)},oa.select=function(t){var e;return"string"==typeof t?(e=[ka(t,sa)],e.parentNode=sa.documentElement):(e=[t],e.parentNode=n(t)),E([e])},oa.selectAll=function(n){var t;return"string"==typeof n?(t=ca(Na(n,sa)),t.parentNode=sa.documentElement):(t=ca(n),t.parentNode=null),E([t])},Aa.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(X(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(X(n,t,e))};var qa=oa.map({mouseenter:"mouseover",mouseleave:"mouseout"});sa&&qa.forEach(function(n){"on"+n in sa&&qa.remove(n)});var Ta,Ra=0;oa.mouse=function(n){return J(n,k())};var Da=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;oa.touch=function(n,t,e){if(arguments.length<3&&(e=t,t=k().changedTouches),t)for(var r,u=0,i=t.length;i>u;++u)if((r=t[u]).identifier===e)return J(n,r)},oa.behavior.drag=function(){function n(){this.on("mousedown.drag",i).on("touchstart.drag",a)}function e(n,t,e,i,a){return function(){function o(){var n,e,r=t(h,v);r&&(n=r[0]-M[0],e=r[1]-M[1],p|=n|e,M=r,g({type:"drag",x:r[0]+c[0],y:r[1]+c[1],dx:n,dy:e}))}function l(){t(h,v)&&(m.on(i+d,null).on(a+d,null),y(p),g({type:"dragend"}))}var c,s=this,f=oa.event.target.correspondingElement||oa.event.target,h=s.parentNode,g=r.of(s,arguments),p=0,v=n(),d=".drag"+(null==v?"":"-"+v),m=oa.select(e(f)).on(i+d,o).on(a+d,l),y=W(f),M=t(h,v);u?(c=u.apply(s,arguments),c=[c.x-M[0],c.y-M[1]]):c=[0,0],g({type:"dragstart"})}}var r=N(n,"drag","dragstart","dragend"),u=null,i=e(b,oa.mouse,t,"mousemove","mouseup"),a=e(G,oa.touch,y,"touchmove","touchend");return n.origin=function(t){return arguments.length?(u=t,n):u},oa.rebind(n,r,"on")},oa.touches=function(n,t){return arguments.length<2&&(t=k().touches),t?ca(t).map(function(t){var e=J(n,t);return e.identifier=t.identifier,e}):[]};var Pa=1e-6,Ua=Pa*Pa,ja=Math.PI,Fa=2*ja,Ha=Fa-Pa,Oa=ja/2,Ia=ja/180,Ya=180/ja,Za=Math.SQRT2,Va=2,Xa=4;oa.interpolateZoom=function(n,t){var e,r,u=n[0],i=n[1],a=n[2],o=t[0],l=t[1],c=t[2],s=o-u,f=l-i,h=s*s+f*f;if(Ua>h)r=Math.log(c/a)/Za,e=function(n){return[u+n*s,i+n*f,a*Math.exp(Za*n*r)]};else{var g=Math.sqrt(h),p=(c*c-a*a+Xa*h)/(2*a*Va*g),v=(c*c-a*a-Xa*h)/(2*c*Va*g),d=Math.log(Math.sqrt(p*p+1)-p),m=Math.log(Math.sqrt(v*v+1)-v);r=(m-d)/Za,e=function(n){var t=n*r,e=rn(d),o=a/(Va*g)*(e*un(Za*t+d)-en(d));return[u+o*s,i+o*f,a*e/rn(Za*t+d)]}}return e.duration=1e3*r,e},oa.behavior.zoom=function(){function n(n){n.on(L,f).on(Ba+".zoom",g).on("dblclick.zoom",p).on(R,h)}function e(n){return[(n[0]-k.x)/k.k,(n[1]-k.y)/k.k]}function r(n){return[n[0]*k.k+k.x,n[1]*k.k+k.y]}function u(n){k.k=Math.max(A[0],Math.min(A[1],n))}function i(n,t){t=r(t),k.x+=n[0]-t[0],k.y+=n[1]-t[1]}function a(t,e,r,a){t.__chart__={x:k.x,y:k.y,k:k.k},u(Math.pow(2,a)),i(d=e,r),t=oa.select(t),C>0&&(t=t.transition().duration(C)),t.call(n.event)}function o(){b&&b.domain(x.range().map(function(n){return(n-k.x)/k.k}).map(x.invert)),w&&w.domain(_.range().map(function(n){return(n-k.y)/k.k}).map(_.invert))}function l(n){z++||n({type:"zoomstart"})}function c(n){o(),n({type:"zoom",scale:k.k,translate:[k.x,k.y]})}function s(n){--z||(n({type:"zoomend"}),d=null)}function f(){function n(){o=1,i(oa.mouse(u),h),c(a)}function r(){f.on(q,null).on(T,null),g(o),s(a)}var u=this,a=D.of(u,arguments),o=0,f=oa.select(t(u)).on(q,n).on(T,r),h=e(oa.mouse(u)),g=W(u);Il.call(u),l(a)}function h(){function n(){var n=oa.touches(p);return g=k.k,n.forEach(function(n){n.identifier in d&&(d[n.identifier]=e(n))}),n}function t(){var t=oa.event.target;oa.select(t).on(x,r).on(b,o),_.push(t);for(var e=oa.event.changedTouches,u=0,i=e.length;i>u;++u)d[e[u].identifier]=null;var l=n(),c=Date.now();if(1===l.length){if(500>c-M){var s=l[0];a(p,s,d[s.identifier],Math.floor(Math.log(k.k)/Math.LN2)+1),S()}M=c}else if(l.length>1){var s=l[0],f=l[1],h=s[0]-f[0],g=s[1]-f[1];m=h*h+g*g}}function r(){var n,t,e,r,a=oa.touches(p);Il.call(p);for(var o=0,l=a.length;l>o;++o,r=null)if(e=a[o],r=d[e.identifier]){if(t)break;n=e,t=r}if(r){var s=(s=e[0]-n[0])*s+(s=e[1]-n[1])*s,f=m&&Math.sqrt(s/m);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+r[0])/2,(t[1]+r[1])/2],u(f*g)}M=null,i(n,t),c(v)}function o(){if(oa.event.touches.length){for(var t=oa.event.changedTouches,e=0,r=t.length;r>e;++e)delete d[t[e].identifier];for(var u in d)return void n()}oa.selectAll(_).on(y,null),w.on(L,f).on(R,h),N(),s(v)}var g,p=this,v=D.of(p,arguments),d={},m=0,y=".zoom-"+oa.event.changedTouches[0].identifier,x="touchmove"+y,b="touchend"+y,_=[],w=oa.select(p),N=W(p);t(),l(v),w.on(L,null).on(R,t)}function g(){var n=D.of(this,arguments);y?clearTimeout(y):(Il.call(this),v=e(d=m||oa.mouse(this)),l(n)),y=setTimeout(function(){y=null,s(n)},50),S(),u(Math.pow(2,.002*$a())*k.k),i(d,v),c(n)}function p(){var n=oa.mouse(this),t=Math.log(k.k)/Math.LN2;a(this,n,e(n),oa.event.shiftKey?Math.ceil(t)-1:Math.floor(t)+1)}var v,d,m,y,M,x,b,_,w,k={x:0,y:0,k:1},E=[960,500],A=Wa,C=250,z=0,L="mousedown.zoom",q="mousemove.zoom",T="mouseup.zoom",R="touchstart.zoom",D=N(n,"zoomstart","zoom","zoomend");return Ba||(Ba="onwheel"in sa?($a=function(){return-oa.event.deltaY*(oa.event.deltaMode?120:1)},"wheel"):"onmousewheel"in sa?($a=function(){return oa.event.wheelDelta},"mousewheel"):($a=function(){return-oa.event.detail},"MozMousePixelScroll")),n.event=function(n){n.each(function(){var n=D.of(this,arguments),t=k;Hl?oa.select(this).transition().each("start.zoom",function(){k=this.__chart__||{x:0,y:0,k:1},l(n)}).tween("zoom:zoom",function(){var e=E[0],r=E[1],u=d?d[0]:e/2,i=d?d[1]:r/2,a=oa.interpolateZoom([(u-k.x)/k.k,(i-k.y)/k.k,e/k.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=a(t),o=e/r[2];this.__chart__=k={x:u-r[0]*o,y:i-r[1]*o,k:o},c(n)}}).each("interrupt.zoom",function(){s(n)}).each("end.zoom",function(){s(n)}):(this.__chart__=k,l(n),c(n),s(n))})},n.translate=function(t){return arguments.length?(k={x:+t[0],y:+t[1],k:k.k},o(),n):[k.x,k.y]},n.scale=function(t){return arguments.length?(k={x:k.x,y:k.y,k:null},u(+t),o(),n):k.k},n.scaleExtent=function(t){return arguments.length?(A=null==t?Wa:[+t[0],+t[1]],n):A},n.center=function(t){return arguments.length?(m=t&&[+t[0],+t[1]],n):m},n.size=function(t){return arguments.length?(E=t&&[+t[0],+t[1]],n):E},n.duration=function(t){return arguments.length?(C=+t,n):C},n.x=function(t){return arguments.length?(b=t,x=t.copy(),k={x:0,y:0,k:1},n):b},n.y=function(t){return arguments.length?(w=t,_=t.copy(),k={x:0,y:0,k:1},n):w},oa.rebind(n,D,"on")};var $a,Ba,Wa=[0,1/0];oa.color=on,on.prototype.toString=function(){return this.rgb()+""},oa.hsl=ln;var Ja=ln.prototype=new on;Ja.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,this.l/n)},Ja.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,n*this.l)},Ja.rgb=function(){return cn(this.h,this.s,this.l)},oa.hcl=sn;var Ga=sn.prototype=new on;Ga.brighter=function(n){return new sn(this.h,this.c,Math.min(100,this.l+Ka*(arguments.length?n:1)))},Ga.darker=function(n){return new sn(this.h,this.c,Math.max(0,this.l-Ka*(arguments.length?n:1)))},Ga.rgb=function(){return fn(this.h,this.c,this.l).rgb()},oa.lab=hn;var Ka=18,Qa=.95047,no=1,to=1.08883,eo=hn.prototype=new on;eo.brighter=function(n){return new hn(Math.min(100,this.l+Ka*(arguments.length?n:1)),this.a,this.b)},eo.darker=function(n){return new hn(Math.max(0,this.l-Ka*(arguments.length?n:1)),this.a,this.b)},eo.rgb=function(){return gn(this.l,this.a,this.b)},oa.rgb=yn;var ro=yn.prototype=new on;ro.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),new yn(Math.min(255,t/n),Math.min(255,e/n),Math.min(255,r/n))):new yn(u,u,u)},ro.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new yn(n*this.r,n*this.g,n*this.b)},ro.hsl=function(){return wn(this.r,this.g,this.b)},ro.toString=function(){return"#"+bn(this.r)+bn(this.g)+bn(this.b)};var uo=oa.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});uo.forEach(function(n,t){uo.set(n,Mn(t))}),oa.functor=En,oa.xhr=An(y),oa.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var a=Cn(n,t,null==e?r:u(e),i);return a.row=function(n){return arguments.length?a.response(null==(e=n)?r:u(n)):e},a}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function i(t){return t.map(a).join(n)}function a(n){return o.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var o=new RegExp('["'+n+"\n]"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(s>=c)return a;if(u)return u=!1,i;var t=s;if(34===n.charCodeAt(t)){for(var e=t;e++<c;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}s=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++s):10===r&&(u=!0),n.slice(t+1,e).replace(/""/g,'"')}for(;c>s;){var r=n.charCodeAt(s++),o=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(s)&&(++s,++o);else if(r!==l)continue;return n.slice(t,s-o)}return n.slice(t)}for(var r,u,i={},a={},o=[],c=n.length,s=0,f=0;(r=e())!==a;){for(var h=[];r!==i&&r!==a;)h.push(r),r=e();t&&null==(h=t(h,f++))||o.push(h)}return o},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new m,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(a).join(n)].concat(t.map(function(t){return u.map(function(n){return a(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(i).join("\n")},e},oa.csv=oa.dsv(",","text/csv"),oa.tsv=oa.dsv("	","text/tab-separated-values");var io,ao,oo,lo,co=this[x(this,"requestAnimationFrame")]||function(n){setTimeout(n,17)};oa.timer=function(){qn.apply(this,arguments)},oa.timer.flush=function(){Rn(),Dn()},oa.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var so=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Un);oa.formatPrefix=function(n,t){var e=0;return(n=+n)&&(0>n&&(n*=-1),t&&(n=oa.round(n,Pn(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((e-1)/3)))),so[8+e/3]};var fo=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,ho=oa.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=oa.round(n,Pn(n,t))).toFixed(Math.max(0,Math.min(20,Pn(n*(1+1e-15),t))))}}),go=oa.time={},po=Date;Hn.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){vo.setUTCDate.apply(this._,arguments)},setDay:function(){vo.setUTCDay.apply(this._,arguments)},setFullYear:function(){vo.setUTCFullYear.apply(this._,arguments)},setHours:function(){vo.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){vo.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){vo.setUTCMinutes.apply(this._,arguments)},setMonth:function(){vo.setUTCMonth.apply(this._,arguments)},setSeconds:function(){vo.setUTCSeconds.apply(this._,arguments)},setTime:function(){vo.setTime.apply(this._,arguments)}};var vo=Date.prototype;go.year=On(function(n){return n=go.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),go.years=go.year.range,go.years.utc=go.year.utc.range,go.day=On(function(n){var t=new po(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),go.days=go.day.range,go.days.utc=go.day.utc.range,go.dayOfYear=function(n){var t=go.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=go[n]=On(function(n){return(n=go.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=go.year(n).getDay();return Math.floor((go.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});go[n+"s"]=e.range,go[n+"s"].utc=e.utc.range,go[n+"OfYear"]=function(n){var e=go.year(n).getDay();return Math.floor((go.dayOfYear(n)+(e+t)%7)/7)}}),go.week=go.sunday,go.weeks=go.sunday.range,go.weeks.utc=go.sunday.utc.range,go.weekOfYear=go.sundayOfYear;var mo={"-":"",_:" ",0:"0"},yo=/^\s*\d+/,Mo=/^%/;oa.locale=function(n){return{numberFormat:jn(n),timeFormat:Yn(n)}};var xo=oa.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],
shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});oa.format=xo.numberFormat,oa.geo={},st.prototype={s:0,t:0,add:function(n){ft(n,this.t,bo),ft(bo.s,this.s,this),this.s?this.t+=bo.t:this.s=bo.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var bo=new st;oa.geo.stream=function(n,t){n&&_o.hasOwnProperty(n.type)?_o[n.type](n,t):ht(n,t)};var _o={Feature:function(n,t){ht(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)ht(e[r].geometry,t)}},wo={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){gt(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)gt(e[r],t,0)},Polygon:function(n,t){pt(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)pt(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)ht(e[r],t)}};oa.geo.area=function(n){return So=0,oa.geo.stream(n,No),So};var So,ko=new st,No={sphere:function(){So+=4*ja},point:b,lineStart:b,lineEnd:b,polygonStart:function(){ko.reset(),No.lineStart=vt},polygonEnd:function(){var n=2*ko;So+=0>n?4*ja+n:n,No.lineStart=No.lineEnd=No.point=b}};oa.geo.bounds=function(){function n(n,t){M.push(x=[s=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=dt([t*Ia,e*Ia]);if(m){var u=yt(m,r),i=[u[1],-u[0],0],a=yt(i,u);bt(a),a=_t(a);var l=t-p,c=l>0?1:-1,v=a[0]*Ya*c,d=Ma(l)>180;if(d^(v>c*p&&c*t>v)){var y=a[1]*Ya;y>g&&(g=y)}else if(v=(v+360)%360-180,d^(v>c*p&&c*t>v)){var y=-a[1]*Ya;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);d?p>t?o(s,t)>o(s,h)&&(h=t):o(t,h)>o(s,h)&&(s=t):h>=s?(s>t&&(s=t),t>h&&(h=t)):t>p?o(s,t)>o(s,h)&&(h=t):o(t,h)>o(s,h)&&(s=t)}else n(t,e);m=r,p=t}function e(){b.point=t}function r(){x[0]=s,x[1]=h,b.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=Ma(r)>180?r+(r>0?360:-360):r}else v=n,d=e;No.point(n,e),t(n,e)}function i(){No.lineStart()}function a(){u(v,d),No.lineEnd(),Ma(y)>Pa&&(s=-(h=180)),x[0]=s,x[1]=h,m=null}function o(n,t){return(t-=n)<0?t+360:t}function l(n,t){return n[0]-t[0]}function c(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var s,f,h,g,p,v,d,m,y,M,x,b={point:n,lineStart:e,lineEnd:r,polygonStart:function(){b.point=u,b.lineStart=i,b.lineEnd=a,y=0,No.polygonStart()},polygonEnd:function(){No.polygonEnd(),b.point=n,b.lineStart=e,b.lineEnd=r,0>ko?(s=-(h=180),f=-(g=90)):y>Pa?g=90:-Pa>y&&(f=-90),x[0]=s,x[1]=h}};return function(n){g=h=-(s=f=1/0),M=[],oa.geo.stream(n,b);var t=M.length;if(t){M.sort(l);for(var e,r=1,u=M[0],i=[u];t>r;++r)e=M[r],c(e[0],u)||c(e[1],u)?(o(u[0],e[1])>o(u[0],u[1])&&(u[1]=e[1]),o(e[0],u[1])>o(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var a,e,p=-(1/0),t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(a=o(u[1],e[0]))>p&&(p=a,s=e[0],h=u[1])}return M=x=null,s===1/0||f===1/0?[[NaN,NaN],[NaN,NaN]]:[[s,f],[h,g]]}}(),oa.geo.centroid=function(n){Eo=Ao=Co=zo=Lo=qo=To=Ro=Do=Po=Uo=0,oa.geo.stream(n,jo);var t=Do,e=Po,r=Uo,u=t*t+e*e+r*r;return Ua>u&&(t=qo,e=To,r=Ro,Pa>Ao&&(t=Co,e=zo,r=Lo),u=t*t+e*e+r*r,Ua>u)?[NaN,NaN]:[Math.atan2(e,t)*Ya,tn(r/Math.sqrt(u))*Ya]};var Eo,Ao,Co,zo,Lo,qo,To,Ro,Do,Po,Uo,jo={sphere:b,point:St,lineStart:Nt,lineEnd:Et,polygonStart:function(){jo.lineStart=At},polygonEnd:function(){jo.lineStart=Nt}},Fo=Rt(zt,jt,Ht,[-ja,-ja/2]),Ho=1e9;oa.geo.clipExtent=function(){var n,t,e,r,u,i,a={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(o){return arguments.length?(i=Zt(n=+o[0][0],t=+o[0][1],e=+o[1][0],r=+o[1][1]),u&&(u.valid=!1,u=null),a):[[n,t],[e,r]]}};return a.extent([[0,0],[960,500]])},(oa.geo.conicEqualArea=function(){return Vt(Xt)}).raw=Xt,oa.geo.albers=function(){return oa.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},oa.geo.albersUsa=function(){function n(n){var i=n[0],a=n[1];return t=null,e(i,a),t||(r(i,a),t)||u(i,a),t}var t,e,r,u,i=oa.geo.albers(),a=oa.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),o=oa.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?a:u>=.166&&.234>u&&r>=-.214&&-.115>r?o:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=a.stream(n),r=o.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),a.precision(t),o.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),a.scale(.35*t),o.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var c=i.scale(),s=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[s-.455*c,f-.238*c],[s+.455*c,f+.238*c]]).stream(l).point,r=a.translate([s-.307*c,f+.201*c]).clipExtent([[s-.425*c+Pa,f+.12*c+Pa],[s-.214*c-Pa,f+.234*c-Pa]]).stream(l).point,u=o.translate([s-.205*c,f+.212*c]).clipExtent([[s-.214*c+Pa,f+.166*c+Pa],[s-.115*c-Pa,f+.234*c-Pa]]).stream(l).point,n},n.scale(1070)};var Oo,Io,Yo,Zo,Vo,Xo,$o={point:b,lineStart:b,lineEnd:b,polygonStart:function(){Io=0,$o.lineStart=$t},polygonEnd:function(){$o.lineStart=$o.lineEnd=$o.point=b,Oo+=Ma(Io/2)}},Bo={point:Bt,lineStart:b,lineEnd:b,polygonStart:b,polygonEnd:b},Wo={point:Gt,lineStart:Kt,lineEnd:Qt,polygonStart:function(){Wo.lineStart=ne},polygonEnd:function(){Wo.point=Gt,Wo.lineStart=Kt,Wo.lineEnd=Qt}};oa.geo.path=function(){function n(n){return n&&("function"==typeof o&&i.pointRadius(+o.apply(this,arguments)),a&&a.valid||(a=u(i)),oa.geo.stream(n,a)),i.result()}function t(){return a=null,n}var e,r,u,i,a,o=4.5;return n.area=function(n){return Oo=0,oa.geo.stream(n,u($o)),Oo},n.centroid=function(n){return Co=zo=Lo=qo=To=Ro=Do=Po=Uo=0,oa.geo.stream(n,u(Wo)),Uo?[Do/Uo,Po/Uo]:Ro?[qo/Ro,To/Ro]:Lo?[Co/Lo,zo/Lo]:[NaN,NaN]},n.bounds=function(n){return Vo=Xo=-(Yo=Zo=1/0),oa.geo.stream(n,u(Bo)),[[Yo,Zo],[Vo,Xo]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||re(n):y,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new Wt:new te(n),"function"!=typeof o&&i.pointRadius(o),t()):r},n.pointRadius=function(t){return arguments.length?(o="function"==typeof t?t:(i.pointRadius(+t),+t),n):o},n.projection(oa.geo.albersUsa()).context(null)},oa.geo.transform=function(n){return{stream:function(t){var e=new ue(t);for(var r in n)e[r]=n[r];return e}}},ue.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},oa.geo.projection=ae,oa.geo.projectionMutator=oe,(oa.geo.equirectangular=function(){return ae(ce)}).raw=ce.invert=ce,oa.geo.rotation=function(n){function t(t){return t=n(t[0]*Ia,t[1]*Ia),t[0]*=Ya,t[1]*=Ya,t}return n=fe(n[0]%360*Ia,n[1]*Ia,n.length>2?n[2]*Ia:0),t.invert=function(t){return t=n.invert(t[0]*Ia,t[1]*Ia),t[0]*=Ya,t[1]*=Ya,t},t},se.invert=ce,oa.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=fe(-n[0]*Ia,-n[1]*Ia,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=Ya,n[1]*=Ya}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=ve((t=+r)*Ia,u*Ia),n):t},n.precision=function(r){return arguments.length?(e=ve(t*Ia,(u=+r)*Ia),n):u},n.angle(90)},oa.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Ia,u=n[1]*Ia,i=t[1]*Ia,a=Math.sin(r),o=Math.cos(r),l=Math.sin(u),c=Math.cos(u),s=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*a)*e+(e=c*s-l*f*o)*e),l*s+c*f*o)},oa.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return oa.range(Math.ceil(i/d)*d,u,d).map(h).concat(oa.range(Math.ceil(c/m)*m,l,m).map(g)).concat(oa.range(Math.ceil(r/p)*p,e,p).filter(function(n){return Ma(n%d)>Pa}).map(s)).concat(oa.range(Math.ceil(o/v)*v,a,v).filter(function(n){return Ma(n%m)>Pa}).map(f))}var e,r,u,i,a,o,l,c,s,f,h,g,p=10,v=p,d=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(l).slice(1),h(u).reverse().slice(1),g(c).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],c=+t[0][1],l=+t[1][1],i>u&&(t=i,i=u,u=t),c>l&&(t=c,c=l,l=t),n.precision(y)):[[i,c],[u,l]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],o=+t[0][1],a=+t[1][1],r>e&&(t=r,r=e,e=t),o>a&&(t=o,o=a,a=t),n.precision(y)):[[r,o],[e,a]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],m=+t[1],n):[d,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],v=+t[1],n):[p,v]},n.precision=function(t){return arguments.length?(y=+t,s=me(o,a,90),f=ye(r,e,y),h=me(c,l,90),g=ye(i,u,y),n):y},n.majorExtent([[-180,-90+Pa],[180,90-Pa]]).minorExtent([[-180,-80-Pa],[180,80+Pa]])},oa.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=Me,u=xe;return n.distance=function(){return oa.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},oa.geo.interpolate=function(n,t){return be(n[0]*Ia,n[1]*Ia,t[0]*Ia,t[1]*Ia)},oa.geo.length=function(n){return Jo=0,oa.geo.stream(n,Go),Jo};var Jo,Go={sphere:b,point:b,lineStart:_e,lineEnd:b,polygonStart:b,polygonEnd:b},Ko=we(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(oa.geo.azimuthalEqualArea=function(){return ae(Ko)}).raw=Ko;var Qo=we(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},y);(oa.geo.azimuthalEquidistant=function(){return ae(Qo)}).raw=Qo,(oa.geo.conicConformal=function(){return Vt(Se)}).raw=Se,(oa.geo.conicEquidistant=function(){return Vt(ke)}).raw=ke;var nl=we(function(n){return 1/n},Math.atan);(oa.geo.gnomonic=function(){return ae(nl)}).raw=nl,Ne.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Oa]},(oa.geo.mercator=function(){return Ee(Ne)}).raw=Ne;var tl=we(function(){return 1},Math.asin);(oa.geo.orthographic=function(){return ae(tl)}).raw=tl;var el=we(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(oa.geo.stereographic=function(){return ae(el)}).raw=el,Ae.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Oa]},(oa.geo.transverseMercator=function(){var n=Ee(Ae),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[n[1],-n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},e([0,0,90])}).raw=Ae,oa.geom={},oa.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u=En(e),i=En(r),a=n.length,o=[],l=[];for(t=0;a>t;t++)o.push([+u.call(this,n[t],t),+i.call(this,n[t],t),t]);for(o.sort(qe),t=0;a>t;t++)l.push([o[t][0],-o[t][1]]);var c=Le(o),s=Le(l),f=s[0]===c[0],h=s[s.length-1]===c[c.length-1],g=[];for(t=c.length-1;t>=0;--t)g.push(n[o[c[t]][2]]);for(t=+f;t<s.length-h;++t)g.push(n[o[s[t]][2]]);return g}var e=Ce,r=ze;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},oa.geom.polygon=function(n){return Sa(n,rl),n};var rl=oa.geom.polygon.prototype=[];rl.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},rl.centroid=function(n){var t,e,r=-1,u=this.length,i=0,a=0,o=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=o,o=this[r],e=t[0]*o[1]-o[0]*t[1],i+=(t[0]+o[0])*e,a+=(t[1]+o[1])*e;return[i*n,a*n]},rl.clip=function(n){for(var t,e,r,u,i,a,o=De(n),l=-1,c=this.length-De(this),s=this[c-1];++l<c;){for(t=n.slice(),n.length=0,u=this[l],i=t[(r=t.length-o)-1],e=-1;++e<r;)a=t[e],Te(a,s,u)?(Te(i,s,u)||n.push(Re(i,a,s,u)),n.push(a)):Te(i,s,u)&&n.push(Re(i,a,s,u)),i=a;o&&n.push(n[0]),s=u}return n};var ul,il,al,ol,ll,cl=[],sl=[];Ye.prototype.prepare=function(){for(var n,t=this.edges,e=t.length;e--;)n=t[e].edge,n.b&&n.a||t.splice(e,1);return t.sort(Ve),t.length},tr.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},er.prototype={insert:function(n,t){var e,r,u;if(n){if(t.P=n,t.N=n.N,n.N&&(n.N.P=t),n.N=t,n.R){for(n=n.R;n.L;)n=n.L;n.L=t}else n.R=t;e=n}else this._?(n=ar(this._),t.P=null,t.N=n,n.P=n.L=t,e=n):(t.P=t.N=null,this._=t,e=null);for(t.L=t.R=null,t.U=e,t.C=!0,n=t;e&&e.C;)r=e.U,e===r.L?(u=r.R,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.R&&(ur(this,e),n=e,e=n.U),e.C=!1,r.C=!0,ir(this,r))):(u=r.L,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.L&&(ir(this,e),n=e,e=n.U),e.C=!1,r.C=!0,ur(this,r))),e=n.U;this._.C=!1},remove:function(n){n.N&&(n.N.P=n.P),n.P&&(n.P.N=n.N),n.N=n.P=null;var t,e,r,u=n.U,i=n.L,a=n.R;if(e=i?a?ar(a):i:a,u?u.L===n?u.L=e:u.R=e:this._=e,i&&a?(r=e.C,e.C=n.C,e.L=i,i.U=e,e!==a?(u=e.U,e.U=n.U,n=e.R,u.L=n,e.R=a,a.U=e):(e.U=u,u=e,n=e.R)):(r=n.C,n=e),n&&(n.U=u),!r){if(n&&n.C)return void(n.C=!1);do{if(n===this._)break;if(n===u.L){if(t=u.R,t.C&&(t.C=!1,u.C=!0,ur(this,u),t=u.R),t.L&&t.L.C||t.R&&t.R.C){t.R&&t.R.C||(t.L.C=!1,t.C=!0,ir(this,t),t=u.R),t.C=u.C,u.C=t.R.C=!1,ur(this,u),n=this._;break}}else if(t=u.L,t.C&&(t.C=!1,u.C=!0,ir(this,u),t=u.L),t.L&&t.L.C||t.R&&t.R.C){t.L&&t.L.C||(t.R.C=!1,t.C=!0,ur(this,t),t=u.L),t.C=u.C,u.C=t.L.C=!1,ir(this,u),n=this._;break}t.C=!0,n=u,u=u.U}while(!n.C);n&&(n.C=!1)}}},oa.geom.voronoi=function(n){function t(n){var t=new Array(n.length),r=o[0][0],u=o[0][1],i=o[1][0],a=o[1][1];return or(e(n),o).cells.forEach(function(e,o){var l=e.edges,c=e.site,s=t[o]=l.length?l.map(function(n){var t=n.start();return[t.x,t.y]}):c.x>=r&&c.x<=i&&c.y>=u&&c.y<=a?[[r,a],[i,a],[i,u],[r,u]]:[];s.point=n[o]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(i(n,t)/Pa)*Pa,y:Math.round(a(n,t)/Pa)*Pa,i:t}})}var r=Ce,u=ze,i=r,a=u,o=fl;return n?t(n):(t.links=function(n){return or(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return or(e(n)).cells.forEach(function(e,r){for(var u,i,a=e.site,o=e.edges.sort(Ve),l=-1,c=o.length,s=o[c-1].edge,f=s.l===a?s.r:s.l;++l<c;)u=s,i=f,s=o[l].edge,f=s.l===a?s.r:s.l,r<i.i&&r<f.i&&cr(a,i,f)<0&&t.push([n[r],n[i.i],n[f.i]])}),t},t.x=function(n){return arguments.length?(i=En(r=n),t):r},t.y=function(n){return arguments.length?(a=En(u=n),t):u},t.clipExtent=function(n){return arguments.length?(o=null==n?fl:n,t):o===fl?null:o},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):o===fl?null:o&&o[1]},t)};var fl=[[-1e6,-1e6],[1e6,1e6]];oa.geom.delaunay=function(n){return oa.geom.voronoi().triangles(n)},oa.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,a,o){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var l=n.x,s=n.y;if(null!=l)if(Ma(l-e)+Ma(s-r)<.01)c(n,t,e,r,u,i,a,o);else{var f=n.point;n.x=n.y=n.point=null,c(n,f,l,s,u,i,a,o),c(n,t,e,r,u,i,a,o)}else n.x=e,n.y=r,n.point=t}else c(n,t,e,r,u,i,a,o)}function c(n,t,e,r,u,a,o,l){var c=.5*(u+o),s=.5*(a+l),f=e>=c,h=r>=s,g=h<<1|f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=hr()),f?u=c:o=c,h?a=s:l=s,i(n,t,e,r,u,a,o,l)}var s,f,h,g,p,v,d,m,y,M=En(o),x=En(l);if(null!=t)v=t,d=e,m=r,y=u;else if(m=y=-(v=d=1/0),f=[],h=[],p=n.length,a)for(g=0;p>g;++g)s=n[g],s.x<v&&(v=s.x),s.y<d&&(d=s.y),s.x>m&&(m=s.x),s.y>y&&(y=s.y),f.push(s.x),h.push(s.y);else for(g=0;p>g;++g){var b=+M(s=n[g],g),_=+x(s,g);v>b&&(v=b),d>_&&(d=_),b>m&&(m=b),_>y&&(y=_),f.push(b),h.push(_)}var w=m-v,S=y-d;w>S?y=d+w:m=v+S;var k=hr();if(k.add=function(n){i(k,n,+M(n,++g),+x(n,g),v,d,m,y)},k.visit=function(n){gr(n,k,v,d,m,y)},k.find=function(n){return pr(k,n[0],n[1],v,d,m,y)},g=-1,null==t){for(;++g<p;)i(k,n[g],f[g],h[g],v,d,m,y);--g}else n.forEach(k.add);return f=h=n=s=null,k}var a,o=Ce,l=ze;return(a=arguments.length)?(o=sr,l=fr,3===a&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(o=n,i):o},i.y=function(n){return arguments.length?(l=n,i):l},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},oa.interpolateRgb=vr,oa.interpolateObject=dr,oa.interpolateNumber=mr,oa.interpolateString=yr;var hl=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,gl=new RegExp(hl.source,"g");oa.interpolate=Mr,oa.interpolators=[function(n,t){var e=typeof t;return("string"===e?uo.has(t.toLowerCase())||/^(#|rgb\(|hsl\()/i.test(t)?vr:yr:t instanceof on?vr:Array.isArray(t)?xr:"object"===e&&isNaN(t)?dr:mr)(n,t)}],oa.interpolateArray=xr;var pl=function(){return y},vl=oa.map({linear:pl,poly:Er,quad:function(){return Sr},cubic:function(){return kr},sin:function(){return Ar},exp:function(){return Cr},circle:function(){return zr},elastic:Lr,back:qr,bounce:function(){return Tr}}),dl=oa.map({"in":y,out:_r,"in-out":wr,"out-in":function(n){return wr(_r(n))}});oa.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.slice(0,t):n,r=t>=0?n.slice(t+1):"in";return e=vl.get(e)||pl,r=dl.get(r)||y,br(r(e.apply(null,la.call(arguments,1))))},oa.interpolateHcl=Rr,oa.interpolateHsl=Dr,oa.interpolateLab=Pr,oa.interpolateRound=Ur,oa.transform=function(n){var t=sa.createElementNS(oa.ns.prefix.svg,"g");return(oa.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new jr(e?e.matrix:ml)})(n)},jr.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var ml={a:1,b:0,c:0,d:1,e:0,f:0};oa.interpolateTransform=$r,oa.layout={},oa.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Jr(n[e]));return t}},oa.layout.chord=function(){function n(){var n,c,f,h,g,p={},v=[],d=oa.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(c=0,g=-1;++g<i;)c+=u[h][g];v.push(c),m.push(oa.range(i)),n+=c}for(a&&d.sort(function(n,t){return a(v[n],v[t])}),o&&m.forEach(function(n,t){n.sort(function(n,e){return o(u[t][n],u[t][e])})}),n=(Fa-s*i)/n,c=0,h=-1;++h<i;){for(f=c,g=-1;++g<i;){var y=d[h],M=m[y][g],x=u[y][M],b=c,_=c+=x*n;p[y+"-"+M]={index:y,subindex:M,startAngle:b,endAngle:_,value:x}}r[y]={index:y,startAngle:f,endAngle:c,value:v[y]},c+=s}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}l&&t()}function t(){e.sort(function(n,t){return l((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,a,o,l,c={},s=0;return c.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,c):u},c.padding=function(n){return arguments.length?(s=n,e=r=null,c):s},c.sortGroups=function(n){return arguments.length?(a=n,e=r=null,c):a},c.sortSubgroups=function(n){return arguments.length?(o=n,e=null,c):o},c.sortChords=function(n){return arguments.length?(l=n,e&&t(),c):l},c.chords=function(){return e||n(),e},c.groups=function(){return r||n(),r},c},oa.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,a=t.cy-n.y,o=u-e,l=i*i+a*a;if(l>o*o/m){if(v>l){var c=t.charge/l;n.px-=i*c,n.py-=a*c}return!0}if(t.point&&l&&v>l){var c=t.pointCharge/l;n.px-=i*c,n.py-=a*c}}return!t.charge}}function t(n){n.px=oa.event.x,n.py=oa.event.y,l.resume()}var e,r,u,i,a,o,l={},c=oa.dispatch("start","tick","end"),s=[1,1],f=.9,h=yl,g=Ml,p=-30,v=xl,d=.1,m=.64,M=[],x=[];return l.tick=function(){if((u*=.99)<.005)return e=null,c.end({type:"end",alpha:u=0}),!0;var t,r,l,h,g,v,m,y,b,_=M.length,w=x.length;for(r=0;w>r;++r)l=x[r],h=l.source,g=l.target,y=g.x-h.x,b=g.y-h.y,(v=y*y+b*b)&&(v=u*a[r]*((v=Math.sqrt(v))-i[r])/v,y*=v,b*=v,g.x-=y*(m=h.weight+g.weight?h.weight/(h.weight+g.weight):.5),g.y-=b*m,h.x+=y*(m=1-m),h.y+=b*m);if((m=u*d)&&(y=s[0]/2,b=s[1]/2,r=-1,m))for(;++r<_;)l=M[r],l.x+=(y-l.x)*m,l.y+=(b-l.y)*m;if(p)for(ru(t=oa.geom.quadtree(M),u,o),r=-1;++r<_;)(l=M[r]).fixed||t.visit(n(l));for(r=-1;++r<_;)l=M[r],l.fixed?(l.x=l.px,l.y=l.py):(l.x-=(l.px-(l.px=l.x))*f,l.y-=(l.py-(l.py=l.y))*f);c.tick({type:"tick",alpha:u})},l.nodes=function(n){return arguments.length?(M=n,l):M},l.links=function(n){return arguments.length?(x=n,l):x},l.size=function(n){return arguments.length?(s=n,l):s},l.linkDistance=function(n){return arguments.length?(h="function"==typeof n?n:+n,l):h},l.distance=l.linkDistance,l.linkStrength=function(n){return arguments.length?(g="function"==typeof n?n:+n,l):g},l.friction=function(n){return arguments.length?(f=+n,l):f},l.charge=function(n){return arguments.length?(p="function"==typeof n?n:+n,l):p},l.chargeDistance=function(n){return arguments.length?(v=n*n,l):Math.sqrt(v)},l.gravity=function(n){return arguments.length?(d=+n,l):d},l.theta=function(n){return arguments.length?(m=n*n,l):Math.sqrt(m)},l.alpha=function(n){return arguments.length?(n=+n,u?n>0?u=n:(e.c=null,e.t=NaN,e=null,c.end({type:"end",alpha:u=0})):n>0&&(c.start({type:"start",alpha:u=n}),e=qn(l.tick)),l):u},l.start=function(){function n(n,r){if(!e){for(e=new Array(u),l=0;u>l;++l)e[l]=[];for(l=0;c>l;++l){var i=x[l];e[i.source.index].push(i.target),e[i.target.index].push(i.source)}}for(var a,o=e[t],l=-1,s=o.length;++l<s;)if(!isNaN(a=o[l][n]))return a;return Math.random()*r}var t,e,r,u=M.length,c=x.length,f=s[0],v=s[1];for(t=0;u>t;++t)(r=M[t]).index=t,r.weight=0;for(t=0;c>t;++t)r=x[t],"number"==typeof r.source&&(r.source=M[r.source]),"number"==typeof r.target&&(r.target=M[r.target]),++r.source.weight,++r.target.weight;for(t=0;u>t;++t)r=M[t],isNaN(r.x)&&(r.x=n("x",f)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(i=[],"function"==typeof h)for(t=0;c>t;++t)i[t]=+h.call(this,x[t],t);else for(t=0;c>t;++t)i[t]=h;if(a=[],"function"==typeof g)for(t=0;c>t;++t)a[t]=+g.call(this,x[t],t);else for(t=0;c>t;++t)a[t]=g;if(o=[],"function"==typeof p)for(t=0;u>t;++t)o[t]=+p.call(this,M[t],t);else for(t=0;u>t;++t)o[t]=p;return l.resume()},l.resume=function(){return l.alpha(.1)},l.stop=function(){return l.alpha(0)},l.drag=function(){return r||(r=oa.behavior.drag().origin(y).on("dragstart.force",Qr).on("drag.force",t).on("dragend.force",nu)),arguments.length?void this.on("mouseover.force",tu).on("mouseout.force",eu).call(r):r},oa.rebind(l,c,"on")};var yl=20,Ml=1,xl=1/0;oa.layout.hierarchy=function(){function n(u){var i,a=[u],o=[];for(u.depth=0;null!=(i=a.pop());)if(o.push(i),(c=e.call(n,i,i.depth))&&(l=c.length)){for(var l,c,s;--l>=0;)a.push(s=c[l]),s.parent=i,s.depth=i.depth+1;r&&(i.value=0),i.children=c}else r&&(i.value=+r.call(n,i,i.depth)||0),delete i.children;return au(u,function(n){var e,u;t&&(e=n.children)&&e.sort(t),r&&(u=n.parent)&&(u.value+=n.value)}),o}var t=cu,e=ou,r=lu;return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(iu(t,function(n){n.children&&(n.value=0)}),au(t,function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)})),t},n},oa.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(a=i.length)){var a,o,l,c=-1;for(r=t.value?r/t.value:0;++c<a;)n(o=i[c],e,l=o.value*r,u),e+=l}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var a=r.call(this,e,i);return n(a[0],0,u[0],u[1]/t(a[0])),a}var r=oa.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},uu(e,r)},oa.layout.pie=function(){function n(a){var o,l=a.length,c=a.map(function(e,r){return+t.call(n,e,r)}),s=+("function"==typeof r?r.apply(this,arguments):r),f=("function"==typeof u?u.apply(this,arguments):u)-s,h=Math.min(Math.abs(f)/l,+("function"==typeof i?i.apply(this,arguments):i)),g=h*(0>f?-1:1),p=oa.sum(c),v=p?(f-l*g)/p:0,d=oa.range(l),m=[];return null!=e&&d.sort(e===bl?function(n,t){return c[t]-c[n]}:function(n,t){return e(a[n],a[t])}),d.forEach(function(n){m[n]={data:a[n],value:o=c[n],startAngle:s,endAngle:s+=o*v+g,padAngle:h}}),m}var t=Number,e=bl,r=0,u=Fa,i=0;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n.padAngle=function(t){return arguments.length?(i=t,n):i},n};var bl={};oa.layout.stack=function(){function n(o,l){if(!(h=o.length))return o;var c=o.map(function(e,r){return t.call(n,e,r)}),s=c.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),a.call(n,t,e)]})}),f=e.call(n,s,l);c=oa.permute(c,f),s=oa.permute(s,f);var h,g,p,v,d=r.call(n,s,l),m=c[0].length;for(p=0;m>p;++p)for(u.call(n,c[0][p],v=d[p],s[0][p][1]),g=1;h>g;++g)u.call(n,c[g][p],v+=s[g-1][p][1],s[g][p][1]);return o}var t=y,e=pu,r=vu,u=gu,i=fu,a=hu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:_l.get(t)||pu,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:wl.get(t)||vu,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(a=t,n):a},n.out=function(t){return arguments.length?(u=t,n):u},n};var _l=oa.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(du),i=n.map(mu),a=oa.range(r).sort(function(n,t){return u[n]-u[t]}),o=0,l=0,c=[],s=[];for(t=0;r>t;++t)e=a[t],l>o?(o+=i[e],c.push(e)):(l+=i[e],s.push(e));return s.reverse().concat(c)},reverse:function(n){return oa.range(n.length).reverse()},"default":pu}),wl=oa.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,a=[],o=0,l=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>o&&(o=r),a.push(r)}for(e=0;i>e;++e)l[e]=(o-a[e])/2;return l},wiggle:function(n){var t,e,r,u,i,a,o,l,c,s=n.length,f=n[0],h=f.length,g=[];for(g[0]=l=c=0,e=1;h>e;++e){for(t=0,u=0;s>t;++t)u+=n[t][e][1];for(t=0,i=0,o=f[e][0]-f[e-1][0];s>t;++t){for(r=0,a=(n[t][e][1]-n[t][e-1][1])/(2*o);t>r;++r)a+=(n[r][e][1]-n[r][e-1][1])/o;i+=a*n[t][e][1]}g[e]=l-=u?i/u*o:0,c>l&&(c=l)}for(e=0;h>e;++e)g[e]-=c;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,a=1/u,o=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=a}for(e=0;i>e;++e)o[e]=0;return o},zero:vu});oa.layout.histogram=function(){function n(n,i){for(var a,o,l=[],c=n.map(e,this),s=r.call(this,c,i),f=u.call(this,s,c,i),i=-1,h=c.length,g=f.length-1,p=t?1:1/h;++i<g;)a=l[i]=[],a.dx=f[i+1]-(a.x=f[i]),a.y=0;if(g>0)for(i=-1;++i<h;)o=c[i],o>=s[0]&&o<=s[1]&&(a=l[oa.bisect(f,o,1,g)-1],a.y+=p,a.push(n[i]));return l}var t=!0,e=Number,r=bu,u=Mu;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=En(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return xu(n,t)}:En(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},oa.layout.pack=function(){function n(n,i){var a=e.call(this,n,i),o=a[0],l=u[0],c=u[1],s=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(o.x=o.y=0,au(o,function(n){n.r=+s(n.value)}),au(o,Nu),r){var f=r*(t?1:Math.max(2*o.r/l,2*o.r/c))/2;au(o,function(n){n.r+=f}),au(o,Nu),au(o,function(n){n.r-=f})}return Cu(o,l/2,c/2,t?1:1/Math.max(2*o.r/l,2*o.r/c)),a}var t,e=oa.layout.hierarchy().sort(_u),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},uu(n,e)},oa.layout.tree=function(){function n(n,u){var s=a.call(this,n,u),f=s[0],h=t(f);if(au(h,e),h.parent.m=-h.z,iu(h,r),c)iu(f,i);else{var g=f,p=f,v=f;iu(f,function(n){n.x<g.x&&(g=n),n.x>p.x&&(p=n),n.depth>v.depth&&(v=n)});var d=o(g,p)/2-g.x,m=l[0]/(p.x+o(p,g)/2+d),y=l[1]/(v.depth||1);iu(f,function(n){n.x=(n.x+d)*m,n.y=n.depth*y})}return s}function t(n){for(var t,e={A:null,children:[n]},r=[e];null!=(t=r.pop());)for(var u,i=t.children,a=0,o=i.length;o>a;++a)r.push((i[a]=u={_:i[a],parent:t,children:(u=i[a].children)&&u.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:a}).a=u);return e.children[0]}function e(n){var t=n.children,e=n.parent.children,r=n.i?e[n.i-1]:null;if(t.length){Du(n);var i=(t[0].z+t[t.length-1].z)/2;r?(n.z=r.z+o(n._,r._),n.m=n.z-i):n.z=i}else r&&(n.z=r.z+o(n._,r._));n.parent.A=u(n,r,n.parent.A||e[0])}function r(n){n._.x=n.z+n.parent.m,n.m+=n.parent.m}function u(n,t,e){if(t){for(var r,u=n,i=n,a=t,l=u.parent.children[0],c=u.m,s=i.m,f=a.m,h=l.m;a=Tu(a),u=qu(u),a&&u;)l=qu(l),i=Tu(i),i.a=n,r=a.z+f-u.z-c+o(a._,u._),r>0&&(Ru(Pu(a,n,e),n,r),c+=r,s+=r),f+=a.m,c+=u.m,h+=l.m,s+=i.m;a&&!Tu(i)&&(i.t=a,i.m+=f-s),u&&!qu(l)&&(l.t=u,l.m+=c-h,e=n)}return e}function i(n){n.x*=l[0],n.y=n.depth*l[1]}var a=oa.layout.hierarchy().sort(null).value(null),o=Lu,l=[1,1],c=null;return n.separation=function(t){return arguments.length?(o=t,n):o},n.size=function(t){return arguments.length?(c=null==(l=t)?i:null,n):c?null:l},n.nodeSize=function(t){return arguments.length?(c=null==(l=t)?null:i,n):c?l:null},uu(n,a)},oa.layout.cluster=function(){function n(n,i){var a,o=t.call(this,n,i),l=o[0],c=0;au(l,function(n){var t=n.children;t&&t.length?(n.x=ju(t),n.y=Uu(t)):(n.x=a?c+=e(n,a):0,n.y=0,a=n)});var s=Fu(l),f=Hu(l),h=s.x-e(s,f)/2,g=f.x+e(f,s)/2;return au(l,u?function(n){n.x=(n.x-l.x)*r[0],n.y=(l.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(l.y?n.y/l.y:1))*r[1]}),o}var t=oa.layout.hierarchy().sort(null).value(null),e=Lu,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},uu(n,t)},oa.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var a,o,l,c=f(e),s=[],h=i.slice(),p=1/0,v="slice"===g?c.dx:"dice"===g?c.dy:"slice-dice"===g?1&e.depth?c.dy:c.dx:Math.min(c.dx,c.dy);for(n(h,c.dx*c.dy/e.value),s.area=0;(l=h.length)>0;)s.push(a=h[l-1]),s.area+=a.area,"squarify"!==g||(o=r(s,v))<=p?(h.pop(),p=o):(s.area-=s.pop().area,u(s,v,c,!1),v=Math.min(c.dx,c.dy),s.length=s.area=0,p=1/0);s.length&&(u(s,v,c,!0),s.length=s.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,a=f(t),o=r.slice(),l=[];for(n(o,a.dx*a.dy/t.value),l.area=0;i=o.pop();)l.push(i),l.area+=i.area,null!=i.z&&(u(l,i.z?a.dx:a.dy,a,!o.length),l.length=l.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,a=-1,o=n.length;++a<o;)(e=n[a].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,a=n.length,o=e.x,c=e.y,s=t?l(n.area/t):0;
if(t==e.dx){for((r||s>e.dy)&&(s=e.dy);++i<a;)u=n[i],u.x=o,u.y=c,u.dy=s,o+=u.dx=Math.min(e.x+e.dx-o,s?l(u.area/s):0);u.z=!0,u.dx+=e.x+e.dx-o,e.y+=s,e.dy-=s}else{for((r||s>e.dx)&&(s=e.dx);++i<a;)u=n[i],u.x=o,u.y=c,u.dx=s,c+=u.dy=Math.min(e.y+e.dy-c,s?l(u.area/s):0);u.z=!1,u.dy+=e.y+e.dy-c,e.x+=s,e.dx-=s}}function i(r){var u=a||o(r),i=u[0];return i.x=i.y=0,i.value?(i.dx=c[0],i.dy=c[1]):i.dx=i.dy=0,a&&o.revalue(i),n([i],i.dx*i.dy/i.value),(a?e:t)(i),h&&(a=u),u}var a,o=oa.layout.hierarchy(),l=Math.round,c=[1,1],s=null,f=Ou,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(c=n,i):c},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Ou(t):Iu(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return Iu(t,n)}if(!arguments.length)return s;var r;return f=null==(s=n)?Ou:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(l=n?Math.round:Number,i):l!=Number},i.sticky=function(n){return arguments.length?(h=n,a=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},uu(i,o)},oa.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=oa.random.normal.apply(oa,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=oa.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},oa.scale={};var Sl={floor:y,ceil:y};oa.scale.linear=function(){return Wu([0,1],[0,1],Mr,!1)};var kl={s:1,g:1,p:1,r:1,e:1};oa.scale.log=function(){return ri(oa.scale.linear().domain([0,1]),10,!0,[1,10])};var Nl=oa.format(".0e"),El={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};oa.scale.pow=function(){return ui(oa.scale.linear(),1,[0,1])},oa.scale.sqrt=function(){return oa.scale.pow().exponent(.5)},oa.scale.ordinal=function(){return ai([],{t:"range",a:[[]]})},oa.scale.category10=function(){return oa.scale.ordinal().range(Al)},oa.scale.category20=function(){return oa.scale.ordinal().range(Cl)},oa.scale.category20b=function(){return oa.scale.ordinal().range(zl)},oa.scale.category20c=function(){return oa.scale.ordinal().range(Ll)};var Al=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(xn),Cl=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(xn),zl=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(xn),Ll=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(xn);oa.scale.quantile=function(){return oi([],[])},oa.scale.quantize=function(){return li(0,1,[0,1])},oa.scale.threshold=function(){return ci([.5],[0,1])},oa.scale.identity=function(){return si([0,1])},oa.svg={},oa.svg.arc=function(){function n(){var n=Math.max(0,+e.apply(this,arguments)),c=Math.max(0,+r.apply(this,arguments)),s=a.apply(this,arguments)-Oa,f=o.apply(this,arguments)-Oa,h=Math.abs(f-s),g=s>f?0:1;if(n>c&&(p=c,c=n,n=p),h>=Ha)return t(c,g)+(n?t(n,1-g):"")+"Z";var p,v,d,m,y,M,x,b,_,w,S,k,N=0,E=0,A=[];if((m=(+l.apply(this,arguments)||0)/2)&&(d=i===ql?Math.sqrt(n*n+c*c):+i.apply(this,arguments),g||(E*=-1),c&&(E=tn(d/c*Math.sin(m))),n&&(N=tn(d/n*Math.sin(m)))),c){y=c*Math.cos(s+E),M=c*Math.sin(s+E),x=c*Math.cos(f-E),b=c*Math.sin(f-E);var C=Math.abs(f-s-2*E)<=ja?0:1;if(E&&mi(y,M,x,b)===g^C){var z=(s+f)/2;y=c*Math.cos(z),M=c*Math.sin(z),x=b=null}}else y=M=0;if(n){_=n*Math.cos(f-N),w=n*Math.sin(f-N),S=n*Math.cos(s+N),k=n*Math.sin(s+N);var L=Math.abs(s-f+2*N)<=ja?0:1;if(N&&mi(_,w,S,k)===1-g^L){var q=(s+f)/2;_=n*Math.cos(q),w=n*Math.sin(q),S=k=null}}else _=w=0;if(h>Pa&&(p=Math.min(Math.abs(c-n)/2,+u.apply(this,arguments)))>.001){v=c>n^g?0:1;var T=p,R=p;if(ja>h){var D=null==S?[_,w]:null==x?[y,M]:Re([y,M],[S,k],[x,b],[_,w]),P=y-D[0],U=M-D[1],j=x-D[0],F=b-D[1],H=1/Math.sin(Math.acos((P*j+U*F)/(Math.sqrt(P*P+U*U)*Math.sqrt(j*j+F*F)))/2),O=Math.sqrt(D[0]*D[0]+D[1]*D[1]);R=Math.min(p,(n-O)/(H-1)),T=Math.min(p,(c-O)/(H+1))}if(null!=x){var I=yi(null==S?[_,w]:[S,k],[y,M],c,T,g),Y=yi([x,b],[_,w],c,T,g);p===T?A.push("M",I[0],"A",T,",",T," 0 0,",v," ",I[1],"A",c,",",c," 0 ",1-g^mi(I[1][0],I[1][1],Y[1][0],Y[1][1]),",",g," ",Y[1],"A",T,",",T," 0 0,",v," ",Y[0]):A.push("M",I[0],"A",T,",",T," 0 1,",v," ",Y[0])}else A.push("M",y,",",M);if(null!=S){var Z=yi([y,M],[S,k],n,-R,g),V=yi([_,w],null==x?[y,M]:[x,b],n,-R,g);p===R?A.push("L",V[0],"A",R,",",R," 0 0,",v," ",V[1],"A",n,",",n," 0 ",g^mi(V[1][0],V[1][1],Z[1][0],Z[1][1]),",",1-g," ",Z[1],"A",R,",",R," 0 0,",v," ",Z[0]):A.push("L",V[0],"A",R,",",R," 0 0,",v," ",Z[0])}else A.push("L",_,",",w)}else A.push("M",y,",",M),null!=x&&A.push("A",c,",",c," 0 ",C,",",g," ",x,",",b),A.push("L",_,",",w),null!=S&&A.push("A",n,",",n," 0 ",L,",",1-g," ",S,",",k);return A.push("Z"),A.join("")}function t(n,t){return"M0,"+n+"A"+n+","+n+" 0 1,"+t+" 0,"+-n+"A"+n+","+n+" 0 1,"+t+" 0,"+n}var e=hi,r=gi,u=fi,i=ql,a=pi,o=vi,l=di;return n.innerRadius=function(t){return arguments.length?(e=En(t),n):e},n.outerRadius=function(t){return arguments.length?(r=En(t),n):r},n.cornerRadius=function(t){return arguments.length?(u=En(t),n):u},n.padRadius=function(t){return arguments.length?(i=t==ql?ql:En(t),n):i},n.startAngle=function(t){return arguments.length?(a=En(t),n):a},n.endAngle=function(t){return arguments.length?(o=En(t),n):o},n.padAngle=function(t){return arguments.length?(l=En(t),n):l},n.centroid=function(){var n=(+e.apply(this,arguments)+ +r.apply(this,arguments))/2,t=(+a.apply(this,arguments)+ +o.apply(this,arguments))/2-Oa;return[Math.cos(t)*n,Math.sin(t)*n]},n};var ql="auto";oa.svg.line=function(){return Mi(y)};var Tl=oa.map({linear:xi,"linear-closed":bi,step:_i,"step-before":wi,"step-after":Si,basis:zi,"basis-open":Li,"basis-closed":qi,bundle:Ti,cardinal:Ei,"cardinal-open":ki,"cardinal-closed":Ni,monotone:Fi});Tl.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var Rl=[0,2/3,1/3,0],Dl=[0,1/3,2/3,0],Pl=[0,1/6,2/3,1/6];oa.svg.line.radial=function(){var n=Mi(Hi);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},wi.reverse=Si,Si.reverse=wi,oa.svg.area=function(){return Oi(y)},oa.svg.area.radial=function(){var n=Oi(Hi);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},oa.svg.chord=function(){function n(n,o){var l=t(this,i,n,o),c=t(this,a,n,o);return"M"+l.p0+r(l.r,l.p1,l.a1-l.a0)+(e(l,c)?u(l.r,l.p1,l.r,l.p0):u(l.r,l.p1,c.r,c.p0)+r(c.r,c.p1,c.a1-c.a0)+u(c.r,c.p1,l.r,l.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=o.call(n,u,r),a=l.call(n,u,r)-Oa,s=c.call(n,u,r)-Oa;return{r:i,a0:a,a1:s,p0:[i*Math.cos(a),i*Math.sin(a)],p1:[i*Math.cos(s),i*Math.sin(s)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>ja)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=Me,a=xe,o=Ii,l=pi,c=vi;return n.radius=function(t){return arguments.length?(o=En(t),n):o},n.source=function(t){return arguments.length?(i=En(t),n):i},n.target=function(t){return arguments.length?(a=En(t),n):a},n.startAngle=function(t){return arguments.length?(l=En(t),n):l},n.endAngle=function(t){return arguments.length?(c=En(t),n):c},n},oa.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),a=e.call(this,n,u),o=(i.y+a.y)/2,l=[i,{x:i.x,y:o},{x:a.x,y:o},a];return l=l.map(r),"M"+l[0]+"C"+l[1]+" "+l[2]+" "+l[3]}var t=Me,e=xe,r=Yi;return n.source=function(e){return arguments.length?(t=En(e),n):t},n.target=function(t){return arguments.length?(e=En(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},oa.svg.diagonal.radial=function(){var n=oa.svg.diagonal(),t=Yi,e=n.projection;return n.projection=function(n){return arguments.length?e(Zi(t=n)):t},n},oa.svg.symbol=function(){function n(n,r){return(Ul.get(t.call(this,n,r))||$i)(e.call(this,n,r))}var t=Xi,e=Vi;return n.type=function(e){return arguments.length?(t=En(e),n):t},n.size=function(t){return arguments.length?(e=En(t),n):e},n};var Ul=oa.map({circle:$i,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Fl)),e=t*Fl;return"M0,"+-t+"L"+e+",0 0,"+t+" "+-e+",0Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});oa.svg.symbolTypes=Ul.keys();var jl=Math.sqrt(3),Fl=Math.tan(30*Ia);Aa.transition=function(n){for(var t,e,r=Hl||++Zl,u=Ki(n),i=[],a=Ol||{time:Date.now(),ease:Nr,delay:0,duration:250},o=-1,l=this.length;++o<l;){i.push(t=[]);for(var c=this[o],s=-1,f=c.length;++s<f;)(e=c[s])&&Qi(e,s,u,r,a),t.push(e)}return Wi(i,u,r)},Aa.interrupt=function(n){return this.each(null==n?Il:Bi(Ki(n)))};var Hl,Ol,Il=Bi(Ki()),Yl=[],Zl=0;Yl.call=Aa.call,Yl.empty=Aa.empty,Yl.node=Aa.node,Yl.size=Aa.size,oa.transition=function(n,t){return n&&n.transition?Hl?n.transition(t):n:oa.selection().transition(n)},oa.transition.prototype=Yl,Yl.select=function(n){var t,e,r,u=this.id,i=this.namespace,a=[];n=A(n);for(var o=-1,l=this.length;++o<l;){a.push(t=[]);for(var c=this[o],s=-1,f=c.length;++s<f;)(r=c[s])&&(e=n.call(r,r.__data__,s,o))?("__data__"in r&&(e.__data__=r.__data__),Qi(e,s,i,u,r[i][u]),t.push(e)):t.push(null)}return Wi(a,i,u)},Yl.selectAll=function(n){var t,e,r,u,i,a=this.id,o=this.namespace,l=[];n=C(n);for(var c=-1,s=this.length;++c<s;)for(var f=this[c],h=-1,g=f.length;++h<g;)if(r=f[h]){i=r[o][a],e=n.call(r,r.__data__,h,c),l.push(t=[]);for(var p=-1,v=e.length;++p<v;)(u=e[p])&&Qi(u,p,o,a,i),t.push(u)}return Wi(l,o,a)},Yl.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=O(n));for(var i=0,a=this.length;a>i;i++){u.push(t=[]);for(var e=this[i],o=0,l=e.length;l>o;o++)(r=e[o])&&n.call(r,r.__data__,o,i)&&t.push(r)}return Wi(u,this.namespace,this.id)},Yl.tween=function(n,t){var e=this.id,r=this.namespace;return arguments.length<2?this.node()[r][e].tween.get(n):Y(this,null==t?function(t){t[r][e].tween.remove(n)}:function(u){u[r][e].tween.set(n,t)})},Yl.attr=function(n,t){function e(){this.removeAttribute(o)}function r(){this.removeAttributeNS(o.space,o.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(o);return e!==n&&(t=a(e,n),function(n){this.setAttribute(o,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(o.space,o.local);return e!==n&&(t=a(e,n),function(n){this.setAttributeNS(o.space,o.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var a="transform"==n?$r:Mr,o=oa.ns.qualify(n);return Ji(this,"attr."+n,t,o.local?i:u)},Yl.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=oa.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Yl.style=function(n,e,r){function u(){this.style.removeProperty(n)}function i(e){return null==e?u:(e+="",function(){var u,i=t(this).getComputedStyle(this,null).getPropertyValue(n);return i!==e&&(u=Mr(i,e),function(t){this.style.setProperty(n,u(t),r)})})}var a=arguments.length;if(3>a){if("string"!=typeof n){2>a&&(e="");for(r in n)this.style(r,n[r],e);return this}r=""}return Ji(this,"style."+n,e,i)},Yl.styleTween=function(n,e,r){function u(u,i){var a=e.call(this,u,i,t(this).getComputedStyle(this,null).getPropertyValue(n));return a&&function(t){this.style.setProperty(n,a(t),r)}}return arguments.length<3&&(r=""),this.tween("style."+n,u)},Yl.text=function(n){return Ji(this,"text",n,Gi)},Yl.remove=function(){var n=this.namespace;return this.each("end.transition",function(){var t;this[n].count<2&&(t=this.parentNode)&&t.removeChild(this)})},Yl.ease=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].ease:("function"!=typeof n&&(n=oa.ease.apply(oa,arguments)),Y(this,function(r){r[e][t].ease=n}))},Yl.delay=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].delay:Y(this,"function"==typeof n?function(r,u,i){r[e][t].delay=+n.call(r,r.__data__,u,i)}:(n=+n,function(r){r[e][t].delay=n}))},Yl.duration=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].duration:Y(this,"function"==typeof n?function(r,u,i){r[e][t].duration=Math.max(1,n.call(r,r.__data__,u,i))}:(n=Math.max(1,n),function(r){r[e][t].duration=n}))},Yl.each=function(n,t){var e=this.id,r=this.namespace;if(arguments.length<2){var u=Ol,i=Hl;try{Hl=e,Y(this,function(t,u,i){Ol=t[r][e],n.call(t,t.__data__,u,i)})}finally{Ol=u,Hl=i}}else Y(this,function(u){var i=u[r][e];(i.event||(i.event=oa.dispatch("start","end","interrupt"))).on(n,t)});return this},Yl.transition=function(){for(var n,t,e,r,u=this.id,i=++Zl,a=this.namespace,o=[],l=0,c=this.length;c>l;l++){o.push(n=[]);for(var t=this[l],s=0,f=t.length;f>s;s++)(e=t[s])&&(r=e[a][u],Qi(e,s,a,i,{time:r.time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration})),n.push(e)}return Wi(o,a,i)},oa.svg.axis=function(){function n(n){n.each(function(){var n,c=oa.select(this),s=this.__chart__||e,f=this.__chart__=e.copy(),h=null==l?f.ticks?f.ticks.apply(f,o):f.domain():l,g=null==t?f.tickFormat?f.tickFormat.apply(f,o):y:t,p=c.selectAll(".tick").data(h,f),v=p.enter().insert("g",".domain").attr("class","tick").style("opacity",Pa),d=oa.transition(p.exit()).style("opacity",Pa).remove(),m=oa.transition(p.order()).style("opacity",1),M=Math.max(u,0)+a,x=Zu(f),b=c.selectAll(".domain").data([0]),_=(b.enter().append("path").attr("class","domain"),oa.transition(b));v.append("line"),v.append("text");var w,S,k,N,E=v.select("line"),A=m.select("line"),C=p.select("text").text(g),z=v.select("text"),L=m.select("text"),q="top"===r||"left"===r?-1:1;if("bottom"===r||"top"===r?(n=na,w="x",k="y",S="x2",N="y2",C.attr("dy",0>q?"0em":".71em").style("text-anchor","middle"),_.attr("d","M"+x[0]+","+q*i+"V0H"+x[1]+"V"+q*i)):(n=ta,w="y",k="x",S="y2",N="x2",C.attr("dy",".32em").style("text-anchor",0>q?"end":"start"),_.attr("d","M"+q*i+","+x[0]+"H0V"+x[1]+"H"+q*i)),E.attr(N,q*u),z.attr(k,q*M),A.attr(S,0).attr(N,q*u),L.attr(w,0).attr(k,q*M),f.rangeBand){var T=f,R=T.rangeBand()/2;s=f=function(n){return T(n)+R}}else s.rangeBand?s=f:d.call(n,f,s);v.call(n,s,f),m.call(n,f,f)})}var t,e=oa.scale.linear(),r=Vl,u=6,i=6,a=3,o=[10],l=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Xl?t+"":Vl,n):r},n.ticks=function(){return arguments.length?(o=ca(arguments),n):o},n.tickValues=function(t){return arguments.length?(l=t,n):l},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(a=+t,n):a},n.tickSubdivide=function(){return arguments.length&&n},n};var Vl="bottom",Xl={top:1,right:1,bottom:1,left:1};oa.svg.brush=function(){function n(t){t.each(function(){var t=oa.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",i).on("touchstart.brush",i),a=t.selectAll(".background").data([0]);a.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),t.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var o=t.selectAll(".resize").data(v,y);o.exit().remove(),o.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return $l[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),o.style("display",n.empty()?"none":null);var l,f=oa.transition(t),h=oa.transition(a);c&&(l=Zu(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),r(f)),s&&(l=Zu(s),h.attr("y",l[0]).attr("height",l[1]-l[0]),u(f)),e(f)})}function e(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+f[+/e$/.test(n)]+","+h[+/^s/.test(n)]+")"})}function r(n){n.select(".extent").attr("x",f[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",f[1]-f[0])}function u(n){n.select(".extent").attr("y",h[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",h[1]-h[0])}function i(){function i(){32==oa.event.keyCode&&(C||(M=null,L[0]-=f[1],L[1]-=h[1],C=2),S())}function v(){32==oa.event.keyCode&&2==C&&(L[0]+=f[1],L[1]+=h[1],C=0,S())}function d(){var n=oa.mouse(b),t=!1;x&&(n[0]+=x[0],n[1]+=x[1]),C||(oa.event.altKey?(M||(M=[(f[0]+f[1])/2,(h[0]+h[1])/2]),L[0]=f[+(n[0]<M[0])],L[1]=h[+(n[1]<M[1])]):M=null),E&&m(n,c,0)&&(r(k),t=!0),A&&m(n,s,1)&&(u(k),t=!0),t&&(e(k),w({type:"brush",mode:C?"move":"resize"}))}function m(n,t,e){var r,u,i=Zu(t),l=i[0],c=i[1],s=L[e],v=e?h:f,d=v[1]-v[0];return C&&(l-=s,c-=d+s),r=(e?p:g)?Math.max(l,Math.min(c,n[e])):n[e],C?u=(r+=s)+d:(M&&(s=Math.max(l,Math.min(c,2*M[e]-r))),r>s?(u=r,r=s):u=s),v[0]!=r||v[1]!=u?(e?o=null:a=null,v[0]=r,v[1]=u,!0):void 0}function y(){d(),k.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),oa.select("body").style("cursor",null),q.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),z(),w({type:"brushend"})}var M,x,b=this,_=oa.select(oa.event.target),w=l.of(b,arguments),k=oa.select(b),N=_.datum(),E=!/^(n|s)$/.test(N)&&c,A=!/^(e|w)$/.test(N)&&s,C=_.classed("extent"),z=W(b),L=oa.mouse(b),q=oa.select(t(b)).on("keydown.brush",i).on("keyup.brush",v);if(oa.event.changedTouches?q.on("touchmove.brush",d).on("touchend.brush",y):q.on("mousemove.brush",d).on("mouseup.brush",y),k.interrupt().selectAll("*").interrupt(),C)L[0]=f[0]-L[0],L[1]=h[0]-L[1];else if(N){var T=+/w$/.test(N),R=+/^n/.test(N);x=[f[1-T]-L[0],h[1-R]-L[1]],L[0]=f[T],L[1]=h[R]}else oa.event.altKey&&(M=L.slice());k.style("pointer-events","none").selectAll(".resize").style("display",null),oa.select("body").style("cursor",_.style("cursor")),w({type:"brushstart"}),d()}var a,o,l=N(n,"brushstart","brush","brushend"),c=null,s=null,f=[0,0],h=[0,0],g=!0,p=!0,v=Bl[0];return n.event=function(n){n.each(function(){var n=l.of(this,arguments),t={x:f,y:h,i:a,j:o},e=this.__chart__||t;this.__chart__=t,Hl?oa.select(this).transition().each("start.brush",function(){a=e.i,o=e.j,f=e.x,h=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=xr(f,t.x),r=xr(h,t.y);return a=o=null,function(u){f=t.x=e(u),h=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){a=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,v=Bl[!c<<1|!s],n):c},n.y=function(t){return arguments.length?(s=t,v=Bl[!c<<1|!s],n):s},n.clamp=function(t){return arguments.length?(c&&s?(g=!!t[0],p=!!t[1]):c?g=!!t:s&&(p=!!t),n):c&&s?[g,p]:c?g:s?p:null},n.extent=function(t){var e,r,u,i,l;return arguments.length?(c&&(e=t[0],r=t[1],s&&(e=e[0],r=r[0]),a=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(l=e,e=r,r=l),(e!=f[0]||r!=f[1])&&(f=[e,r])),s&&(u=t[0],i=t[1],c&&(u=u[1],i=i[1]),o=[u,i],s.invert&&(u=s(u),i=s(i)),u>i&&(l=u,u=i,i=l),(u!=h[0]||i!=h[1])&&(h=[u,i])),n):(c&&(a?(e=a[0],r=a[1]):(e=f[0],r=f[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(l=e,e=r,r=l))),s&&(o?(u=o[0],i=o[1]):(u=h[0],i=h[1],s.invert&&(u=s.invert(u),i=s.invert(i)),u>i&&(l=u,u=i,i=l))),c&&s?[[e,u],[r,i]]:c?[e,r]:s&&[u,i])},n.clear=function(){return n.empty()||(f=[0,0],h=[0,0],a=o=null),n},n.empty=function(){return!!c&&f[0]==f[1]||!!s&&h[0]==h[1]},oa.rebind(n,l,"on")};var $l={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Bl=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Wl=go.format=xo.timeFormat,Jl=Wl.utc,Gl=Jl("%Y-%m-%dT%H:%M:%S.%LZ");Wl.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?ea:Gl,ea.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},ea.toString=Gl.toString,go.second=On(function(n){return new po(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),go.seconds=go.second.range,go.seconds.utc=go.second.utc.range,go.minute=On(function(n){return new po(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),go.minutes=go.minute.range,go.minutes.utc=go.minute.utc.range,go.hour=On(function(n){var t=n.getTimezoneOffset()/60;return new po(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),go.hours=go.hour.range,go.hours.utc=go.hour.utc.range,go.month=On(function(n){return n=go.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),go.months=go.month.range,go.months.utc=go.month.utc.range;var Kl=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Ql=[[go.second,1],[go.second,5],[go.second,15],[go.second,30],[go.minute,1],[go.minute,5],[go.minute,15],[go.minute,30],[go.hour,1],[go.hour,3],[go.hour,6],[go.hour,12],[go.day,1],[go.day,2],[go.week,1],[go.month,1],[go.month,3],[go.year,1]],nc=Wl.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",zt]]),tc={range:function(n,t,e){return oa.range(Math.ceil(n/e)*e,+t,e).map(ua)},floor:y,ceil:y};Ql.year=go.year,go.scale=function(){return ra(oa.scale.linear(),Ql,nc)};var ec=Ql.map(function(n){return[n[0].utc,n[1]]}),rc=Jl.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",zt]]);ec.year=go.year.utc,go.scale.utc=function(){return ra(oa.scale.linear(),ec,rc)},oa.text=An(function(n){return n.responseText}),oa.json=function(n,t){return Cn(n,"application/json",ia,t)},oa.html=function(n,t){return Cn(n,"text/html",aa,t)},oa.xml=An(function(n){return n.responseXML}),"function"==typeof define&&define.amd?(this.d3=oa,define(oa)):"object"==typeof module&&module.exports?module.exports=oa:this.d3=oa}();
{"type":"Topology","transform":{"scale":[0.03600360036003601,0.017366249624962495],"translate":[-180,-90]},"objects":{"land":{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7,8]],[[9,10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28,29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41,42]],[[43]],[[44]],[[45]],[[46,47,48,49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61,62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75,76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89,90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152]],[[153,154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161,162,163,164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[278,279,280,281,282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]]]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":4,"arcs":[[297,298,299,300,301,302]]},{"type":"MultiPolygon","id":24,"arcs":[[[303,304,211,305]],[[213,306,307]]]},{"type":"Polygon","id":8,"arcs":[[308,248,309,310,311]]},{"type":"Polygon","id":784,"arcs":[[312,195,313,314,193]]},{"type":"MultiPolygon","id":32,"arcs":[[[315,10]],[[316,317,318,131,319,320]]]},{"type":"Polygon","id":51,"arcs":[[321,322,323,324,325]]},{"type":"MultiPolygon","id":10,"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[326]]]},{"type":"Polygon","id":260,"arcs":[[327]]},{"type":"MultiPolygon","id":36,"arcs":[[[13]],[[23]]]},{"type":"Polygon","id":40,"arcs":[[328,329,330,331,332,333,334]]},{"type":"MultiPolygon","id":31,"arcs":[[[335,-323]],[[282,336,-326,337,338]]]},{"type":"Polygon","id":108,"arcs":[[339,340,341]]},{"type":"Polygon","id":56,"arcs":[[342,343,344,258,345]]},{"type":"Polygon","id":204,"arcs":[[346,347,348,219,349]]},{"type":"Polygon","id":854,"arcs":[[350,351,-347,352,353,354]]},{"type":"Polygon","id":50,"arcs":[[184,355,356]]},{"type":"Polygon","id":100,"arcs":[[245,357,358,359,360,361]]},{"type":"MultiPolygon","id":44,"arcs":[[[70]],[[72]],[[73]]]},{"type":"Polygon","id":70,"arcs":[[362,363,364]]},{"type":"Polygon","id":112,"arcs":[[365,366,367,368,369]]},{"type":"Polygon","id":84,"arcs":[[118,370,371]]},{"type":"Polygon","id":68,"arcs":[[372,373,374,375,-321]]},{"type":"Polygon","id":76,"arcs":[[376,-375,377,378,379,380,381,382,129,383,-318]]},{"type":"Polygon","id":96,"arcs":[[384,47]]},{"type":"Polygon","id":64,"arcs":[[385,386]]},{"type":"Polygon","id":72,"arcs":[[387,388,389,390]]},{"type":"Polygon","id":140,"arcs":[[391,392,393,394,395,396,397]]},{"type":"MultiPolygon","id":124,"arcs":[[[83]],[[84]],[[85]],[[86]],[[398]],[[95]],[[96]],[[98]],[[100]],[[102]],[[399,146,400,148,401,150,402,152]],[[153,403]],[[155]],[[156]],[[157]],[[158]],[[160]],[[161,404,163,405]],[[166]],[[168]],[[169]],[[171]],[[172]],[[283]],[[284]],[[286]],[[287]],[[288]],[[294]],[[295]]]},{"type":"Polygon","id":756,"arcs":[[406,407,408,-331]]},{"type":"MultiPolygon","id":152,"arcs":[[[409,410,411,-316]],[[-320,132,412,-373]]]},{"type":"MultiPolygon","id":156,"arcs":[[[63]],[[413,177,414,415,416,417,-386,418,419,420,421,-300,422,423,424,425,426,427]]]},{"type":"Polygon","id":384,"arcs":[[428,429,430,-355,431,222]]},{"type":"Polygon","id":120,"arcs":[[432,217,433,434,435,-397,436,437]]},{"type":"Polygon","id":180,"arcs":[[438,-342,439,440,-306,212,-308,441,-395,442,443]]},{"type":"Polygon","id":178,"arcs":[[214,444,-437,-396,-442,-307]]},{"type":"Polygon","id":170,"arcs":[[135,445,124,446,-379,447,448]]},{"type":"Polygon","id":188,"arcs":[[449,122,450,137]]},{"type":"Polygon","id":192,"arcs":[[451]]},{"type":"Polygon","id":-1,"arcs":[[452,76]]},{"type":"Polygon","id":196,"arcs":[[-453,75]]},{"type":"Polygon","id":203,"arcs":[[453,454,455,-333]]},{"type":"Polygon","id":276,"arcs":[[456,-454,-332,-409,457,458,-343,459,260,460,262]]},{"type":"Polygon","id":262,"arcs":[[461,462,463,203]]},{"type":"MultiPolygon","id":208,"arcs":[[[91]],[[-461,261]]]},{"type":"Polygon","id":214,"arcs":[[464,61]]},{"type":"Polygon","id":12,"arcs":[[465,466,467,468,233,469,470,471]]},{"type":"Polygon","id":218,"arcs":[[-449,472,134]]},{"type":"Polygon","id":818,"arcs":[[473,474,236,475,200]]},{"type":"Polygon","id":232,"arcs":[[476,202,-464,477]]},{"type":"Polygon","id":724,"arcs":[[478,254,479,256]]},{"type":"Polygon","id":233,"arcs":[[480,481,267]]},{"type":"Polygon","id":231,"arcs":[[-463,482,483,484,485,486,487,-478]]},{"type":"Polygon","id":246,"arcs":[[269,488,489,490]]},{"type":"MultiPolygon","id":242,"arcs":[[[17]],[[18]],[[19]]]},{"type":"Polygon","id":238,"arcs":[[491]]},{"type":"MultiPolygon","id":250,"arcs":[[[492,493,494,128,-383]],[[81]],[[495,-458,-408,496,253,-479,257,-345]]]},{"type":"Polygon","id":266,"arcs":[[497,-438,-445,215]]},{"type":"MultiPolygon","id":826,"arcs":[[[498,89]],[[499,500,501,502]]]},{"type":"Polygon","id":268,"arcs":[[503,-338,-325,504,241]]},{"type":"Polygon","id":288,"arcs":[[-432,-354,505,221]]},{"type":"Polygon","id":324,"arcs":[[506,225,507,508,509,-430,510]]},{"type":"Polygon","id":270,"arcs":[[228,511]]},{"type":"Polygon","id":624,"arcs":[[512,-508,226]]},{"type":"Polygon","id":226,"arcs":[[-433,-498,216]]},{"type":"MultiPolygon","id":300,"arcs":[[[77]],[[247,-309,513,-359,514]]]},{"type":"Polygon","id":304,"arcs":[[515]]},{"type":"Polygon","id":320,"arcs":[[516,-371,119,517,518,143]]},{"type":"Polygon","id":328,"arcs":[[519,-381,520,126]]},{"type":"Polygon","id":340,"arcs":[[521,-518,120,522,139]]},{"type":"Polygon","id":191,"arcs":[[-364,523,250,524,525,526]]},{"type":"Polygon","id":332,"arcs":[[-465,62]]},{"type":"Polygon","id":348,"arcs":[[527,528,529,530,-526,531,-335]]},{"type":"MultiPolygon","id":360,"arcs":[[[25]],[[532,29]],[[30]],[[31]],[[34]],[[35]],[[38]],[[39]],[[533,42]],[[43]],[[44]],[[534,49]],[[45]]]},{"type":"Polygon","id":356,"arcs":[[535,-419,-387,-418,536,-356,185,537,-421]]},{"type":"Polygon","id":372,"arcs":[[-499,90]]},{"type":"Polygon","id":364,"arcs":[[-302,538,187,539,540,-336,-322,-337,278,541]]},{"type":"Polygon","id":368,"arcs":[[188,542,543,544,545,546,-540]]},{"type":"Polygon","id":352,"arcs":[[99]]},{"type":"Polygon","id":376,"arcs":[[547,-476,237,548,549,550,551]]},{"type":"MultiPolygon","id":380,"arcs":[[[78]],[[79]],[[552,252,-497,-407,-330]]]},{"type":"Polygon","id":388,"arcs":[[553]]},{"type":"Polygon","id":400,"arcs":[[-545,554,199,-548,555,-551,556]]},{"type":"MultiPolygon","id":392,"arcs":[[[74]],[[80]],[[82]]]},{"type":"Polygon","id":398,"arcs":[[557,280,558,-425,559,560]]},{"type":"Polygon","id":404,"arcs":[[206,561,562,563,-485,564]]},{"type":"Polygon","id":417,"arcs":[[-424,565,566,-560]]},{"type":"Polygon","id":116,"arcs":[[567,568,569,179]]},{"type":"Polygon","id":410,"arcs":[[570,175]]},{"type":"Polygon","id":-2,"arcs":[[-311,571,572,573]]},{"type":"Polygon","id":414,"arcs":[[574,-543,189]]},{"type":"Polygon","id":418,"arcs":[[575,-416,576,-569,577]]},{"type":"Polygon","id":422,"arcs":[[238,578,-549]]},{"type":"Polygon","id":430,"arcs":[[579,-511,-429,223]]},{"type":"Polygon","id":434,"arcs":[[-471,580,235,-475,581,582,583]]},{"type":"Polygon","id":144,"arcs":[[584]]},{"type":"Polygon","id":426,"arcs":[[585]]},{"type":"Polygon","id":440,"arcs":[[265,586,-370,587,588]]},{"type":"Polygon","id":442,"arcs":[[-496,-344,-459]]},{"type":"Polygon","id":428,"arcs":[[-482,589,-366,-587,266]]},{"type":"Polygon","id":504,"arcs":[[-469,590,591,592,593]]},{"type":"Polygon","id":498,"arcs":[[594,595]]},{"type":"Polygon","id":450,"arcs":[[596]]},{"type":"Polygon","id":484,"arcs":[[-372,-517,144,597,598]]},{"type":"Polygon","id":807,"arcs":[[599,-360,-514,-312,-574]]},{"type":"Polygon","id":466,"arcs":[[-466,600,-351,-431,-510,601,602]]},{"type":"Polygon","id":104,"arcs":[[183,-357,-537,-417,-576,603]]},{"type":"Polygon","id":499,"arcs":[[249,-524,-363,604,-572,-310]]},{"type":"Polygon","id":496,"arcs":[[-427,605]]},{"type":"Polygon","id":508,"arcs":[[208,606,607,608,609,610,611,612]]},{"type":"Polygon","id":478,"arcs":[[230,613,-467,-603,614]]},{"type":"Polygon","id":454,"arcs":[[615,616,-612]]},{"type":"MultiPolygon","id":458,"arcs":[[[181,617]],[[-535,46,-385,48]]]},{"type":"Polygon","id":516,"arcs":[[-305,618,-389,619,210]]},{"type":"Polygon","id":540,"arcs":[[620]]},{"type":"Polygon","id":562,"arcs":[[-601,-472,-584,621,-435,622,-348,-352]]},{"type":"Polygon","id":566,"arcs":[[-349,-623,-434,218]]},{"type":"Polygon","id":558,"arcs":[[-523,121,-450,138]]},{"type":"Polygon","id":528,"arcs":[[-460,-346,259]]},{"type":"MultiPolygon","id":578,"arcs":[[[623,-490,624,271]],[[285]],[[290]],[[291]]]},{"type":"Polygon","id":524,"arcs":[[-420,-536]]},{"type":"MultiPolygon","id":554,"arcs":[[[14]],[[15]]]},{"type":"MultiPolygon","id":512,"arcs":[[[625,626,-314,196]],[[-313,194]]]},{"type":"Polygon","id":586,"arcs":[[-538,186,-539,-301,-422]]},{"type":"Polygon","id":591,"arcs":[[-451,123,-446,136]]},{"type":"Polygon","id":604,"arcs":[[133,-473,-448,-378,-374,-413]]},{"type":"MultiPolygon","id":608,"arcs":[[[50]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]]]},{"type":"MultiPolygon","id":598,"arcs":[[[36]],[[37]],[[-534,41]],[[40]]]},{"type":"Polygon","id":616,"arcs":[[263,627,-588,-369,628,629,-455,-457]]},{"type":"Polygon","id":630,"arcs":[[630]]},{"type":"Polygon","id":408,"arcs":[[-571,176,-414,631,174]]},{"type":"Polygon","id":620,"arcs":[[255,-480]]},{"type":"Polygon","id":600,"arcs":[[-377,-317,-376]]},{"type":"Polygon","id":275,"arcs":[[-552,-556]]},{"type":"Polygon","id":634,"arcs":[[632,191]]},{"type":"Polygon","id":642,"arcs":[[-595,633,244,-362,634,-530,635]]},{"type":"MultiPolygon","id":643,"arcs":[[[88]],[[264,-589,-628]],[[101]],[[103]],[[104]],[[159]],[[165]],[[167]],[[170]],[[173,-632,-428,-606,-426,-559,281,-339,-504,242,636,-367,-590,-481,268,-491,-624,637,638,639,640,274,641,276,642]],[[289]],[[292]],[[293]]]},{"type":"Polygon","id":646,"arcs":[[-340,-439,643,644]]},{"type":"Polygon","id":732,"arcs":[[-468,-614,231,-591]]},{"type":"Polygon","id":682,"arcs":[[-555,-544,-575,190,-633,192,-315,-627,645,198]]},{"type":"Polygon","id":729,"arcs":[[646,-582,-474,201,-477,-488,647,648,649,-392]]},{"type":"Polygon","id":728,"arcs":[[-564,650,-443,-394,651,-649,652,-486]]},{"type":"Polygon","id":686,"arcs":[[-615,-602,-509,-513,227,-512,229]]},{"type":"MultiPolygon","id":90,"arcs":[[[24]],[[26]],[[27]],[[32]],[[33]]]},{"type":"Polygon","id":694,"arcs":[[-507,-580,224]]},{"type":"Polygon","id":222,"arcs":[[142,-519,-522,140,653]]},{"type":"Polygon","id":-3,"arcs":[[-483,-462,204,654]]},{"type":"Polygon","id":706,"arcs":[[-565,-484,-655,205]]},{"type":"Polygon","id":688,"arcs":[[-361,-600,-573,-605,-365,-527,-531,-635]]},{"type":"Polygon","id":740,"arcs":[[-495,655,656,-382,-520,127]]},{"type":"Polygon","id":703,"arcs":[[657,-528,-334,-456,-630]]},{"type":"Polygon","id":705,"arcs":[[-532,-525,251,-553,-329]]},{"type":"Polygon","id":752,"arcs":[[-625,-489,270]]},{"type":"Polygon","id":748,"arcs":[[-608,658]]},{"type":"Polygon","id":760,"arcs":[[-550,-579,239,659,-546,-557]]},{"type":"Polygon","id":148,"arcs":[[-583,-647,-398,-436,-622]]},{"type":"Polygon","id":768,"arcs":[[-353,-350,220,-506]]},{"type":"Polygon","id":764,"arcs":[[-618,182,-604,-578,-568,180]]},{"type":"Polygon","id":762,"arcs":[[-423,-299,660,-566]]},{"type":"Polygon","id":795,"arcs":[[279,-558,661,-303,-542]]},{"type":"Polygon","id":626,"arcs":[[-533,28]]},{"type":"Polygon","id":780,"arcs":[[662]]},{"type":"Polygon","id":788,"arcs":[[234,-581,-470]]},{"type":"MultiPolygon","id":792,"arcs":[[[-505,-324,-541,-547,-660,240]],[[-515,-358,246]]]},{"type":"Polygon","id":158,"arcs":[[663]]},{"type":"Polygon","id":834,"arcs":[[207,-613,-617,664,-440,-341,-645,665,-562]]},{"type":"Polygon","id":800,"arcs":[[-644,-444,-651,-563,-666]]},{"type":"Polygon","id":804,"arcs":[[243,-634,-596,-636,-529,-658,-629,-368,-637]]},{"type":"Polygon","id":858,"arcs":[[130,-319,-384]]},{"type":"MultiPolygon","id":840,"arcs":[[[64]],[[65]],[[66]],[[67]],[[68]],[[105,666,107,667,109,668,111,669,113,670,115,-598,671,672,673,-400]],[[92]],[[94]],[[97]],[[-401,147]]]},{"type":"Polygon","id":860,"arcs":[[-561,-567,-661,-298,-662]]},{"type":"Polygon","id":862,"arcs":[[-521,-380,-447,125]]},{"type":"Polygon","id":704,"arcs":[[-570,-577,-415,178]]},{"type":"MultiPolygon","id":548,"arcs":[[[20]],[[21]]]},{"type":"Polygon","id":887,"arcs":[[-646,-626,197]]},{"type":"Polygon","id":710,"arcs":[[-620,-388,674,-609,-659,-607,209],[-586]]},{"type":"Polygon","id":894,"arcs":[[-611,675,-390,-619,-304,-441,-665,-616]]},{"type":"Polygon","id":716,"arcs":[[-391,-676,-610,-675]]}]}},"arcs":[[[3344,573],[-8,-29],[-8,-26],[-58,8],[-62,-4],[-35,19],[0,3],[-15,17],[62,-3],[60,-5],[21,23],[15,21],[28,-24]],[[577,604],[-53,-8],[-37,21],[-16,20],[-1,3],[-18,16],[17,22],[51,-9],[28,-18],[21,-21],[8,-26]],[[3745,688],[34,-25],[12,-35],[3,-25],[1,-29],[-43,-18],[-45,-15],[-52,-13],[-58,-12],[-66,4],[-36,19],[4,24],[60,15],[24,20],[17,24],[13,22],[16,20],[18,24],[15,0],[41,12],[42,-12]],[[1632,950],[36,-9],[33,10],[-15,-21],[-26,-14],[-39,4],[-28,21],[6,19],[33,-10]],[[1512,951],[42,-23],[-16,2],[-36,6],[-38,16],[20,12],[28,-13]],[[2250,1040],[30,-8],[31,7],[16,-33],[-22,4],[-33,-2],[-35,2],[-37,-3],[-29,11],[-14,24],[17,10],[36,-8],[40,-4]],[[3098,1096],[3,-26],[-5,-22],[-7,-22],[-33,-8],[-31,-11],[-37,1],[14,23],[-33,-8],[-31,-8],[-21,17],[-1,23],[30,23],[19,7],[32,-2],[8,29],[2,21],[-1,47],[16,27],[26,9],[14,-22],[7,-21],[12,-26],[9,-25],[8,-26]],[[108,339],[4,0],[3,-1],[41,-24],[35,24],[6,3],[82,11],[26,-14],[13,-7],[42,-19],[79,-15],[62,-18],[108,-13],[80,16],[118,-12],[66,-18],[74,17],[77,16],[6,27],[-109,2],[-90,14],[-23,23],[-75,12],[5,26],[10,24],[11,21],[-6,24],[-46,16],[-21,20],[-43,18],[67,-4],[64,10],[41,-20],[49,17],[46,22],[22,19],[-10,24],[-35,15],[-41,17],[-57,4],[-50,8],[-54,5],[-18,22],[-36,18],[-22,20],[-9,65],[14,-5],[25,-18],[46,5],[44,8],[23,-25],[44,6],[37,13],[35,15],[31,20],[42,5],[-1,22],[-10,21],[8,20],[36,10],[16,-19],[43,12],[32,14],[40,1],[37,6],[38,14],[30,12],[33,12],[22,-3],[19,-5],[42,8],[37,-10],[38,1],[36,8],[38,-5],[41,-6],[39,2],[40,-1],[41,-1],[38,2],[29,17],[33,9],[35,-12],[33,10],[30,20],[18,-18],[10,-20],[18,-19],[29,17],[33,-22],[37,-7],[33,-15],[39,3],[35,10],[42,-2],[37,-8],[39,-10],[14,25],[-18,19],[-13,20],[-36,5],[-16,21],[-6,22],[-10,42],[21,-7],[37,-4],[36,4],[32,-9],[29,-17],[12,-21],[37,-3],[36,8],[38,11],[35,7],[28,-14],[37,5],[24,44],[22,-26],[32,-10],[35,5],[23,-22],[36,-2],[34,-7],[33,-13],[22,22],[11,20],[28,-22],[38,5],[28,-12],[19,-19],[37,5],[29,13],[28,14],[34,8],[39,7],[35,8],[28,12],[16,18],[6,25],[-3,24],[-9,22],[-9,23],[-9,23],[-7,20],[-2,22],[3,23],[13,21],[11,24],[4,23],[-5,25],[-4,22],[14,26],[15,17],[18,21],[19,18],[23,17],[10,25],[16,16],[17,15],[27,3],[17,18],[20,11],[23,7],[20,15],[16,18],[21,7],[17,-15],[-11,-19],[-28,-17],[-12,-13],[-21,9],[-22,-5],[-20,-14],[-20,-14],[-13,-17],[-4,-23],[2,-21],[13,-19],[-19,-14],[-27,-5],[-15,-19],[-16,-18],[-17,-25],[-5,-21],[10,-24],[15,-18],[22,-13],[22,-18],[11,-23],[6,-21],[8,-23],[13,-19],[8,-22],[4,-53],[8,-21],[3,-23],[8,-22],[-3,-31],[-16,-23],[-16,-20],[-37,-7],[-13,-21],[-16,-19],[-42,-21],[-37,-9],[-35,-13],[-38,-12],[-22,-24],[-45,-2],[-49,2],[-44,-4],[-46,0],[8,-23],[43,-10],[31,-16],[17,-20],[-31,-18],[-48,5],[-39,-14],[-2,-24],[-1,-23],[33,-19],[6,-21],[35,-22],[59,-9],[50,-15],[39,-18],[51,-19],[69,-9],[68,-15],[47,-17],[52,-19],[27,-28],[14,-21],[34,20],[45,17],[49,18],[57,15],[50,16],[69,1],[68,-8],[56,-14],[18,25],[39,17],[70,1],[55,13],[52,12],[58,8],[61,10],[43,15],[-20,20],[-12,20],[0,22],[-53,-2],[-57,-9],[-55,0],[-8,21],[4,43],[13,12],[40,14],[46,13],[34,17],[34,17],[25,23],[38,10],[37,8],[19,4],[43,3],[41,8],[34,11],[34,13],[31,14],[38,18],[25,19],[26,17],[8,23],[-29,13],[9,24],[19,18],[29,11],[30,14],[29,18],[21,22],[14,27],[20,16],[33,-3],[14,-19],[33,-3],[1,22],[14,22],[30,-5],[7,-22],[33,-3],[36,10],[35,7],[32,-3],[12,-24],[30,19],[28,10],[32,8],[31,8],[28,14],[31,9],[24,12],[17,20],[21,-14],[29,8],[20,-28],[15,-20],[32,11],[13,23],[28,16],[36,-4],[11,-21],[23,21],[30,7],[33,2],[29,-1],[31,-6],[30,-4],[13,-19],[18,-17],[30,10],[33,2],[32,0],[31,2],[27,7],[30,7],[24,16],[26,10],[29,6],[21,16],[15,31],[16,19],[29,-9],[10,-20],[24,-13],[29,4],[20,-20],[20,-15],[29,14],[10,24],[25,11],[28,19],[28,8],[32,11],[22,12],[23,14],[22,12],[26,-6],[25,20],[18,16],[26,-2],[23,14],[5,20],[24,16],[22,11],[28,9],[26,5],[24,-3],[26,-6],[23,-16],[2,-25],[25,-19],[17,-16],[33,-6],[18,-16],[23,-16],[27,-3],[22,11],[24,24],[26,-13],[27,-7],[26,-6],[28,-5],[27,0],[23,-60],[-1,-14],[-3,-26],[-27,-15],[-22,-21],[4,-23],[31,1],[-3,-22],[-15,-22],[-13,-24],[22,-18],[32,-5],[32,10],[15,22],[9,22],[15,18],[18,17],[7,20],[15,28],[17,6],[32,2],[27,7],[29,9],[13,23],[8,21],[19,22],[28,14],[23,11],[15,20],[16,10],[20,9],[28,-6],[25,6],[27,7],[31,-4],[20,16],[14,38],[10,-15],[13,-27],[24,-12],[26,-4],[27,6],[28,-4],[26,-1],[18,5],[23,-3],[21,-12],[25,8],[30,0],[26,7],[29,-7],[18,19],[14,19],[19,16],[35,43],[18,-8],[21,-16],[19,-20],[35,-35],[27,-1],[26,0],[30,6],[30,8],[23,16],[19,17],[31,2],[20,13],[22,-12],[14,-18],[20,-18],[30,2],[19,-14],[34,-15],[34,-6],[29,5],[22,18],[18,18],[25,5],[25,-8],[29,-6],[26,9],[25,0],[25,-6],[26,-5],[25,10],[29,9],[29,2],[31,0],[26,6],[25,4],[8,29],[1,23],[17,-15],[5,-26],[9,-24],[12,-19],[23,-10],[32,3],[36,1],[25,3],[36,0],[27,2],[36,-3],[31,-4],[20,-18],[-6,-22],[18,-17],[30,-13],[31,-15],[36,-10],[37,-9],[29,-9],[31,-1],[18,19],[25,-16],[21,-18],[24,-13],[34,-6],[32,-7],[14,-22],[31,-14],[22,-20],[31,-9],[32,1],[30,-3],[33,1],[33,-5],[31,-8],[29,-13],[29,-12],[19,-17],[-3,-22],[-15,-20],[-12,-26],[-10,-21],[-13,-23],[-36,-9],[-17,-21],[-36,-12],[-12,-23],[-19,-21],[-20,-18],[-12,-24],[-7,-21],[-3,-26],[1,-22],[16,-22],[6,-22],[13,-20],[51,-8],[11,-25],[-50,-9],[-42,-12],[-53,-2],[-23,-33],[-5,-27],[-12,-22],[-15,-21],[37,-19],[14,-24],[24,-21],[34,-20],[39,-18],[41,-18],[64,-18],[14,-28],[80,-12],[6,-5],[20,-17],[77,15],[64,-18],[48,-14],[-9998,-1],[25,34],[50,-18],[3,2]],[[79,321],[8,5],[9,6],[8,5],[4,2]],[[3139,2021],[-9,-23],[-24,-18],[-30,6],[-20,17],[-29,9],[-35,32],[-28,31],[-39,64],[23,-12],[39,-38],[37,-21],[14,27],[9,39],[26,24],[20,-7]],[[3093,2151],[10,-27],[14,-43],[36,-34],[39,-15],[-12,-29],[-27,-2],[-14,20]],[[3373,2239],[22,-25],[-8,-21],[-38,-17],[-12,20],[-24,-26],[-14,26],[33,35],[24,-15],[17,23]],[[6951,2320],[-43,-4],[0,30],[4,24],[2,12],[18,-18],[26,-7],[1,-11],[-8,-26]],[[9037,2833],[27,-20],[15,8],[22,11],[17,-4],[2,-68],[-10,-20],[-3,-46],[-9,15],[-20,-40],[-5,3],[-18,2],[-17,50],[-3,38],[-16,50],[0,26],[18,-5]],[[9805,2826],[6,-24],[20,23],[8,-24],[0,-24],[-11,-27],[-18,-42],[-14,-24],[10,-27],[-21,-1],[-24,-22],[-7,-37],[-16,-59],[-22,-25],[-14,-17],[-25,1],[-18,19],[-31,4],[-4,22],[15,42],[35,57],[18,11],[20,22],[23,30],[17,30],[12,43],[11,14],[4,33],[19,26],[7,-24]],[[9849,3100],[20,-61],[1,40],[12,-16],[4,-44],[23,-18],[18,-5],[16,22],[14,-7],[-6,-51],[-9,-33],[-21,1],[-7,-18],[2,-24],[-4,-11],[-10,-31],[-14,-40],[-22,-23],[-4,16],[-12,8],[16,47],[-9,32],[-30,23],[1,21],[20,20],[4,44],[-1,37],[-11,39],[1,10],[-14,24],[-21,51],[-12,41],[10,4],[15,-32],[22,-15],[8,-51]],[[9641,3906],[-11,-14],[-15,16],[-20,26],[-18,30],[-18,41],[-4,19],[12,-1],[15,-19],[13,-20],[9,-16],[22,-36],[15,-26]],[[9953,4183],[10,-16],[-5,-30],[-17,-8],[-15,7],[-3,25],[11,20],[12,-7],[7,9]],[[9981,4214],[-18,-12],[-3,22],[13,12],[9,3],[17,18],[0,-28],[-18,-15]],[[2,4232],[-2,-3],[0,28],[5,2],[-3,-27]],[[9661,4234],[-9,-8],[-10,25],[1,16],[18,-33]],[[9640,4322],[5,-46],[-8,7],[-5,-3],[-4,16],[-1,44],[13,-18]],[[6389,4401],[5,-69],[7,-27],[-3,-27],[-5,-17],[-9,33],[-5,-17],[5,-42],[-3,-25],[-7,-13],[-2,-49],[-11,-67],[-14,-79],[-17,-109],[-10,-80],[-13,-67],[-23,-14],[-24,-24],[-16,14],[-22,21],[-7,30],[-2,51],[-10,46],[-3,42],[5,41],[13,10],[0,19],[13,44],[3,37],[-6,27],[-6,36],[-2,53],[10,33],[4,36],[13,2],[16,12],[10,11],[12,0],[16,33],[23,36],[8,29],[-3,24],[11,-7],[16,40],[0,35],[9,26],[10,-25],[7,-25],[7,-38]],[[8986,4389],[10,-45],[18,22],[9,-24],[14,-23],[-3,-25],[6,-50],[4,-29],[7,-7],[8,-49],[-3,-30],[9,-39],[30,-30],[20,-27],[18,-25],[-3,-14],[16,-36],[10,-63],[11,13],[12,-25],[6,9],[5,-61],[20,-35],[13,-22],[22,-47],[7,-46],[1,-33],[-2,-36],[13,-49],[-1,-51],[-5,-26],[-8,-52],[1,-33],[-5,-41],[-13,-52],[-20,-29],[-10,-44],[-10,-29],[-8,-49],[-11,-29],[-7,-43],[-3,-40],[1,-18],[-16,-20],[-31,-2],[-25,-24],[-13,-22],[-17,-25],[-23,26],[-17,10],[4,30],[-15,-11],[-24,-42],[-24,16],[-16,9],[-16,4],[-27,17],[-18,35],[-5,44],[-6,29],[-14,23],[-27,7],[9,28],[-6,43],[-14,-40],[-25,-10],[15,31],[4,34],[11,28],[-2,42],[-23,-49],[-17,-19],[-11,-46],[-22,24],[1,30],[-17,42],[-15,21],[5,14],[-35,35],[-20,1],[-26,28],[-50,-5],[-36,-21],[-32,-19],[-26,4],[-30,-30],[-24,-13],[-5,-30],[-10,-24],[-24,-1],[-17,-5],[-25,10],[-20,-6],[-19,-2],[-16,-31],[-9,2],[-14,-16],[-13,-18],[-20,2],[-19,0],[-29,37],[-15,11],[0,33],[14,8],[5,13],[-1,20],[3,41],[-3,34],[-14,58],[-5,33],[1,33],[-11,37],[-1,17],[-12,23],[-3,45],[-16,46],[-4,24],[12,-25],[-9,54],[14,-17],[8,-22],[-1,29],[-13,45],[-3,19],[-6,17],[3,33],[5,14],[4,29],[-3,34],[12,41],[2,-44],[11,40],[23,19],[13,25],[22,21],[12,4],[8,-7],[22,22],[17,6],[4,13],[7,5],[16,-1],[29,17],[15,25],[7,31],[16,29],[2,23],[0,31],[20,49],[11,-49],[12,11],[-10,27],[9,28],[12,-12],[4,44],[15,28],[7,23],[13,9],[1,17],[12,-7],[1,14],[12,9],[13,7],[21,-26],[15,-34],[18,-1],[17,-5],[-6,32],[14,46],[12,15],[-4,14],[12,33],[17,20],[14,-6],[23,10],[0,30],[-21,19],[15,8],[19,-14],[14,-24],[24,-14],[8,5],[17,-17],[16,16],[11,-5],[6,11],[13,-28],[-8,-31],[-10,-23],[-10,-2],[4,-23],[-9,-29],[-9,-28],[2,-17],[22,-31],[21,-19],[14,-20],[20,-34],[8,0],[15,-15],[4,-17],[26,-20],[19,20],[5,31],[6,25],[3,32],[9,46],[-4,27],[2,17],[-3,33],[3,44],[6,11],[-5,19],[7,31],[5,32],[1,16],[10,22],[8,-29],[2,-36],[7,-7],[1,-24],[10,-29],[2,-33],[-1,-21]],[[9502,4578],[8,-19],[-20,0],[-10,35],[16,-14],[6,-2]],[[8352,4592],[-12,-1],[-37,41],[26,11],[15,-18],[10,-17],[-2,-16]],[[9467,4613],[-11,-1],[-17,6],[-6,9],[2,23],[18,-9],[9,-12],[5,-16]],[[9490,4629],[-5,-10],[-20,49],[-6,35],[10,0],[10,-46],[11,-28]],[[8470,4670],[3,13],[24,13],[20,2],[8,8],[11,-8],[-10,-15],[-29,-25],[-24,-17]],[[8473,4641],[-18,-43],[-24,-13],[-3,7],[3,20],[12,35],[27,23]],[[8274,4716],[10,-16],[17,5],[7,-24],[-32,-12],[-20,-8],[-15,1],[10,33],[15,0],[8,21]],[[8413,4716],[-4,-32],[-42,-16],[-37,7],[0,21],[22,12],[17,-18],[19,5],[25,21]],[[9440,4702],[1,-12],[-22,25],[-15,20],[-11,20],[4,5],[13,-13],[23,-27],[7,-18]],[[9375,4759],[-6,-3],[-12,13],[-11,23],[1,10],[17,-24],[11,-19]],[[8016,4792],[53,-6],[6,24],[52,-28],[10,-37],[42,-11],[34,-34],[-32,-22],[-31,23],[-25,-1],[-28,4],[-26,10],[-33,22],[-20,6],[-12,-7],[-50,23],[-5,25],[-25,4],[19,55],[33,-3],[23,-22],[11,-5],[4,-20]],[[8741,4824],[-14,-39],[-3,43],[5,21],[6,19],[6,-16],[0,-28]],[[9329,4789],[-8,-6],[-12,23],[-12,36],[-6,44],[3,6],[3,-18],[9,-13],[13,-36],[13,-20],[-3,-16]],[[9220,4867],[-14,-5],[-5,-16],[-15,-14],[-14,-14],[-15,0],[-23,17],[-15,16],[2,18],[25,-9],[15,5],[4,28],[4,1],[3,-31],[16,5],[8,20],[15,20],[-3,34],[17,1],[5,-9],[0,-32],[-10,-35]],[[8533,4983],[-10,-19],[-19,10],[-6,25],[28,3],[7,-19]],[[8623,5004],[10,-44],[-24,24],[-23,4],[-15,-3],[-20,2],[7,31],[34,3],[31,-17]],[[9252,4923],[-8,-15],[-5,33],[-7,23],[-12,19],[-16,24],[-20,17],[7,14],[15,-16],[10,-13],[11,-14],[12,-24],[10,-18],[3,-30]],[[8915,5032],[48,-39],[52,-33],[19,-30],[15,-29],[5,-34],[46,-35],[7,-31],[-26,-6],[6,-38],[25,-38],[18,-61],[16,2],[-1,-26],[21,-10],[-8,-11],[30,-24],[-4,-16],[-18,-4],[-7,14],[-24,7],[-28,9],[-21,36],[-16,32],[-15,50],[-36,26],[-23,-17],[-17,-19],[3,-42],[-21,-20],[-16,10],[-29,2]],[[8916,4657],[-25,47],[-28,12],[-7,-17],[-35,-1],[12,46],[18,16],[-8,63],[-13,48],[-54,49],[-23,5],[-42,53],[-8,-28],[-10,-5],[-7,21],[0,25],[-21,29],[30,20],[20,-1],[-3,15],[-40,1],[-11,34],[-25,10],[-12,29],[38,14],[14,19],[44,-24],[5,-21],[8,-93],[28,-35],[24,61],[31,35],[25,0],[24,-20],[20,-21],[30,-11]],[[8478,5264],[-23,-57],[-21,-11],[-26,11],[-47,-3],[-24,-8],[-4,-44],[25,-51],[15,26],[52,20],[-2,-27],[-13,8],[-12,-33],[-24,-23],[26,-73],[-5,-20],[25,-67],[0,-38],[-15,-16],[-11,20],[14,47],[-28,-22],[-7,16],[4,22],[-20,34],[2,56],[-19,-18],[3,-67],[1,-82],[-18,-9],[-12,17],[8,53],[-4,56],[-12,0],[-8,40],[11,37],[4,46],[14,87],[6,24],[24,42],[21,-17],[35,-8],[32,3],[28,42],[5,-13]],[[8573,5247],[-1,-50],[-14,5],[-5,-35],[12,-30],[-8,-7],[-11,37],[-8,73],[5,46],[9,21],[2,-31],[17,-5],[2,-24]],[[7938,4845],[-31,-1],[-23,48],[-36,47],[-12,35],[-21,47],[-13,43],[-22,81],[-24,48],[-8,49],[-10,45],[-25,36],[-15,49],[-21,33],[-29,63],[-2,30],[18,-3],[43,-11],[24,-56],[22,-39],[15,-24],[26,-62],[29,-1],[23,-39],[16,-49],[21,-26],[-11,-47],[16,-20],[10,-2],[5,-40],[9,-32],[21,-5],[13,-36],[-7,-72],[-1,-89]],[[8045,5298],[20,-20],[22,11],[5,48],[12,11],[33,13],[20,45],[14,37]],[[8171,5443],[11,21],[24,32]],[[8206,5496],[21,40],[14,45],[11,0],[15,-29],[1,-25],[18,-16],[23,-18],[-2,-22],[-18,-3],[5,-28],[-21,-20]],[[8273,5420],[-16,-52],[21,-54],[-5,-27],[31,-53],[-33,-7],[-9,-39],[1,-52],[-27,-40],[0,-57],[-11,-88],[-4,20],[-32,-26],[-11,36],[-19,3],[-14,18],[-33,-20],[-10,28],[-19,-4],[-23,7],[-4,77],[-14,16],[-13,50],[-4,50],[3,53],[17,39]],[[8509,5667],[3,-39],[2,-32],[-10,-53],[-10,59],[-13,-29],[9,-43],[-8,-27],[-33,34],[-8,41],[9,28],[-18,27],[-8,-24],[-14,2],[-20,-32],[-5,17],[11,49],[18,16],[15,22],[10,-27],[21,16],[4,26],[20,1],[-2,45],[23,-27],[2,-29],[2,-21]],[[7255,5539],[-24,-13],[-14,45],[-4,83],[12,94],[19,-32],[13,-41],[14,-60],[-5,-60],[-11,-16]],[[3307,5764],[-24,-6],[-5,5],[8,16],[0,23],[16,7],[6,-2],[-1,-43]],[[8443,5774],[-10,-19],[-9,-36],[-9,-18],[-17,40],[6,16],[7,16],[3,36],[15,3],[-4,-39],[20,56],[-2,-55]],[[8290,5718],[-36,-54],[13,40],[20,36],[17,39],[14,58],[5,-47],[-18,-32],[-15,-40]],[[8384,5867],[17,-18],[18,0],[-1,-24],[-13,-25],[-17,-17],[-1,27],[2,29],[-5,28]],[[8485,5882],[8,-64],[-22,15],[1,-19],[7,-36],[-14,-12],[-1,40],[-8,3],[-4,35],[16,-5],[-1,22],[-16,44],[26,-1],[8,-22]],[[8374,5935],[-7,-50],[-12,29],[-14,43],[24,-2],[9,-20]],[[8369,6247],[17,-16],[8,15],[3,-15],[-5,-23],[10,-42],[-7,-48],[-17,-19],[-4,-46],[6,-46],[15,-6],[12,7],[35,-32],[-3,-32],[9,-14],[-3,-26],[-21,28],[-11,30],[-7,-21],[-17,35],[-26,-9],[-14,13],[2,24],[9,14],[-9,14],[-3,-21],[-14,33],[-4,25],[-1,55],[11,-19],[3,90],[9,53],[17,-1]],[[3177,6232],[-7,-15],[-21,0],[-16,-2],[-2,25],[4,8],[23,0],[14,-5],[5,-11]],[[2863,6211],[-8,-10],[-16,9],[-16,21],[4,14],[11,4],[7,-2],[18,-5],[15,-14],[5,-16],[-20,-1]],[[3007,6317],[4,10],[21,0],[17,-15],[7,1],[5,-20],[15,1],[-1,-17],[13,-2],[13,-21],[-10,-24],[-13,13],[-13,-3],[-9,3],[-5,-10],[-11,-4],[-4,14],[-9,-8],[-11,-40],[-7,9],[-2,17]],[[3007,6221],[-18,10],[-13,-4],[-17,4],[-13,-11],[-15,18],[2,19],[26,-8],[21,-5],[10,13],[-13,25],[0,22],[-17,9],[6,16],[17,-3],[24,-9]],[[8064,6258],[-24,-28],[-23,18],[-1,49],[14,26],[30,16],[16,-1],[6,-22],[-12,-25],[-6,-33]],[[679,6281],[-4,-10],[-7,8],[1,17],[-5,21],[1,6],[5,9],[-2,12],[2,5],[2,-1],[11,-10],[5,-5],[4,-7],[7,-21],[0,-3],[-11,-12],[-9,-9]],[[664,6371],[-9,-4],[-5,12],[-3,4],[-1,4],[3,5],[10,-6],[7,-8],[-2,-7]],[[645,6401],[-1,-6],[-15,2],[2,7],[14,-3]],[[620,6410],[-1,-4],[-2,1],[-10,2],[-3,13],[-2,3],[8,7],[2,-3],[8,-19]],[[573,6448],[-3,-6],[-9,11],[1,4],[4,5],[7,-1],[0,-13]],[[2786,6493],[11,-21],[26,6],[10,-13],[23,-36],[18,-26],[9,1],[16,-12],[-2,-16],[21,-2],[21,-24],[-4,-13],[-18,-8],[-19,-3],[-19,5],[-40,-6],[19,32],[-11,15],[-18,4],[-10,17],[-6,33],[-16,-3],[-26,16],[-8,12],[-37,9],[-9,11],[10,14],[-27,3],[-20,-30],[-12,0],[-4,-14],[-13,-7],[-12,6],[14,18],[7,20],[12,13],[14,11],[21,6],[7,6],[24,-4],[22,-1],[26,-19]],[[2845,6550],[-6,-3],[-7,33],[-11,17],[6,37],[9,-3],[9,-47],[0,-34]],[[8365,6494],[-12,-47],[-15,49],[-3,42],[16,57],[23,44],[12,-18],[-5,-34],[-16,-93]],[[2838,6713],[-31,-10],[-2,22],[13,4],[19,-2],[1,-14]],[[2860,6713],[-4,-41],[-6,8],[1,30],[-13,22],[0,7],[22,-26]],[[8739,7148],[3,-19],[-16,-35],[-11,18],[-14,-13],[-8,-34],[-18,17],[1,27],[15,34],[16,-6],[11,24],[21,-13]],[[5943,7201],[0,-5],[-28,-23],[-14,7],[-6,23],[13,2]],[[5908,7205],[2,1],[4,14],[20,-1],[25,17],[-18,-24],[2,-11]],[[5657,7238],[15,-19],[22,3],[21,-4],[-1,-10],[15,7],[-3,-17],[-40,-5],[0,9],[-34,11],[5,25]],[[5430,7383],[-10,-45],[4,-18],[-6,-29],[-21,21],[-14,7],[-39,29],[4,29],[33,-5],[28,6],[21,5]],[[5255,7555],[16,-41],[-3,-76],[-13,4],[-11,-20],[-11,16],[-1,69],[-6,33],[15,-3],[14,18]],[[8915,7321],[-11,-46],[5,-29],[-14,-41],[-36,-27],[-49,-3],[-39,-66],[-19,22],[-1,43],[-48,-13],[-33,-27],[-33,-1],[28,-42],[-18,-98],[-18,-24],[-14,22],[7,52],[-17,17],[-12,39],[27,18],[14,36],[28,30],[20,39],[56,17],[29,-11],[30,102],[18,-27],[41,57],[16,23],[17,70],[-5,65],[12,36],[30,11],[15,-80],[-1,-47],[-26,-58],[1,-59]],[[5265,7609],[-10,-44],[-12,11],[-7,39],[6,22],[18,22],[5,-50]],[[8996,7726],[20,-13],[19,25],[6,-65],[-41,-16],[-24,-57],[-44,40],[-15,-63],[-31,-1],[-4,57],[14,44],[30,3],[8,80],[8,45],[33,-60],[21,-19]],[[3231,7862],[20,-7],[26,1],[-14,-23],[-10,-4],[-36,24],[-7,20],[11,17],[10,-28]],[[3282,8010],[-13,-1],[-36,18],[-26,27],[10,5],[36,-15],[29,-24],[0,-10]],[[1569,7975],[-14,-8],[-46,26],[-8,21],[-25,20],[-5,16],[-29,11],[-11,31],[3,13],[29,-12],[17,-9],[26,-6],[10,-20],[13,-27],[28,-24],[12,-32]],[[3440,8101],[-19,-51],[19,20],[18,-13],[-9,-20],[24,-15],[13,14],[28,-18],[-9,-42],[20,10],[3,-31],[9,-36],[-12,-50],[-13,-3],[-18,11],[6,47],[-8,8],[-32,-50],[-16,2],[19,27],[-26,14],[-30,-4],[-54,2],[-4,17],[17,20],[-12,16],[23,35],[29,91],[17,33],[24,20],[13,-2],[-5,-16],[-15,-36]],[[1313,8294],[27,4],[-9,-65],[25,-46],[-12,0],[-16,26],[-11,27],[-14,18],[-5,25],[2,18],[13,-7]],[[8989,8104],[28,-102],[-41,19],[-17,-83],[27,-59],[-1,-40],[-21,34],[-18,-44],[-6,48],[4,56],[-4,62],[7,44],[1,77],[-16,57],[2,78],[26,27],[-11,26],[12,9],[7,-39],[10,-55],[-1,-57],[12,-58]],[[4789,8357],[23,2],[30,-36],[-15,-39]],[[4827,8284],[4,-41],[-21,-52],[-49,-34],[-39,9],[22,60],[-14,59],[38,45],[21,27]],[[5351,8384],[-16,-46],[-29,32],[-4,24],[41,19],[8,-29]],[[749,8471],[-27,-22],[-15,15],[-4,27],[25,20],[15,9],[19,-4],[11,-18],[-24,-27]],[[4916,8558],[-30,-62],[28,8],[31,0],[-8,-47],[-25,-52],[29,-4],[27,-74],[19,-9],[17,-65],[8,-23],[34,-11],[-4,-37],[-14,-17],[11,-30],[-25,-30],[-37,1],[-47,-16],[-13,11],[-18,-27],[-26,7],[-20,-22],[-14,11],[40,61],[25,12],[-43,10],[-8,23],[29,18],[-15,31],[5,37],[41,-5],[4,34],[-19,36],[-34,10],[-6,16],[10,25],[-9,16],[-15,-27],[-2,55],[-14,30],[10,59],[22,47],[22,-5],[34,5]],[[400,8632],[-17,-9],[-18,11],[-17,15],[27,10],[22,-5],[3,-22]],[[2797,8761],[-10,-30],[-13,5],[-7,17],[1,4],[11,17],[11,-1],[7,-12]],[[2724,8793],[-32,-32],[-20,2],[-6,15],[21,27],[38,-1],[-1,-11]],[[229,8855],[17,-11],[18,6],[22,-15],[28,-8],[-3,-6],[-21,-13],[-21,13],[-10,10],[-25,-3],[-6,5],[1,22]],[[2634,8963],[5,-26],[14,9],[16,-15],[31,-20],[31,-18],[3,-27],[20,5],[20,-20],[-25,-18],[-43,14],[-15,26],[-28,-31],[-39,-29],[-10,33],[-38,-5],[25,28],[3,46],[10,52],[20,-4]],[[4596,9009],[-6,-38],[31,-39],[-36,-44],[-80,-39],[-24,-11],[-37,9],[-77,18],[27,25],[-60,29],[49,11],[-1,17],[-59,13],[19,38],[42,8],[43,-39],[43,31],[35,-16],[45,31],[46,-4]],[[2892,9049],[-31,-3],[-7,28],[12,32],[25,8],[22,-16],[0,-24],[-3,-8],[-18,-17]],[[138,9016],[19,-14],[-7,42],[76,-9],[54,-54],[-27,-25],[-46,-6],[-1,-56],[-11,-12],[-26,2],[-21,20],[-37,16],[-6,25],[-28,10],[-32,-8],[-15,20],[6,22],[-33,-14],[12,-27],[-15,-24],[0,229],[68,-44],[72,-57],[-2,-36]],[[2342,9161],[-17,-20],[-37,18],[-23,-7],[-38,26],[25,18],[19,25],[29,-16],[17,-11],[8,-11],[17,-22]],[[9999,9261],[-31,-3],[-5,18],[36,24],[0,-39]],[[36,9264],[-36,-3],[0,39],[3,2],[24,0],[40,-16],[-3,-8],[-28,-14]],[[3134,7781],[5,-19],[-30,-28],[-28,-20],[-29,-17]],[[3052,7697],[-16,-37],[-4,-10]],[[3032,7650],[0,-30],[9,-31],[12,-1],[-3,21],[8,-13],[-2,-16],[-19,-10],[-13,1],[-21,-10],[-12,-3],[-16,-2],[-23,-17]],[[2952,7539],[41,11],[8,-11]],[[3001,7539],[-39,-17],[-18,-1],[1,8],[-8,-16],[8,-3],[-6,-41],[-21,-45],[-2,15],[-6,3],[-9,14],[6,-31],[7,-10],[0,-22],[-9,-22],[-15,-46],[-3,2],[9,39]],[[2896,7366],[-14,23],[-4,47]],[[2878,7436],[-5,-25],[6,-36],[-18,9],[19,-19],[1,-54],[8,-4],[3,-20],[4,-58],[-18,-43],[-29,-17],[-18,-34],[-14,-3],[-14,-21],[-4,-20],[-30,-37],[-16,-27],[-13,-35],[-4,-41],[5,-39],[9,-50],[12,-41],[0,-24],[13,-67],[0,-39],[-2,-22],[-7,-36],[-8,-7],[-14,7],[-4,25],[-10,14],[-15,49],[-13,44],[-4,23],[5,38],[-7,32],[-22,48],[-11,9],[-28,-26],[-5,2],[-13,27],[-18,14],[-31,-7],[-25,7],[-21,-4]],[[2522,6928],[-12,-8],[6,-17]],[[2516,6903],[-1,-23],[6,-11],[-5,-8],[-11,9],[-10,-11],[-20,1],[-21,31],[-24,-7],[-20,13],[-18,-4],[-23,-13],[-25,-43],[-28,-25]],[[2316,6812],[-15,-27],[-6,-26]],[[2295,6759],[-1,-40],[2,-28],[5,-19]],[[2301,6672],[0,-1],[-11,-50]],[[2290,6621],[-5,-41],[-2,-78],[-2,-28],[4,-31],[9,-28],[6,-45],[18,-43],[6,-33],[11,-28],[30,-15],[11,-24],[25,16],[21,6],[21,10],[17,10],[18,23],[6,34],[3,48],[5,17],[18,15],[30,14],[24,-2],[17,5],[7,-13],[-1,-27],[-15,-35],[-7,-35],[5,-10],[-4,-25],[-7,-45],[-7,15],[-6,-1]],[[2546,6247],[1,-8],[5,0],[-1,-16],[-4,-25],[2,-9],[-3,-21],[2,-5],[-3,-29],[-6,-15],[-5,-2],[-5,-20]],[[2529,6097],[9,-11],[2,9],[9,-7]],[[2549,6088],[2,-3],[7,10],[7,1],[3,-4],[4,2],[13,-5],[13,2],[9,6],[3,7],[9,-3],[7,-4],[7,1],[6,5],[12,-8],[5,-1],[8,-11],[8,-13],[10,-9],[8,-16]],[[2690,6045],[-3,-5],[-1,-13],[3,-21],[-7,-20],[-3,-23],[-1,-25],[2,-15],[1,-26],[-5,-6],[-2,-24],[2,-15],[-6,-15],[1,-16],[4,-9]],[[2675,5812],[8,-31],[10,-24],[13,-24]],[[2706,5733],[10,-21],[0,-12],[11,-3],[2,5],[8,-14],[14,4],[12,15],[16,11],[10,17],[15,-3],[-1,-6],[16,-2],[12,-10],[9,-17],[11,-16]],[[2851,5681],[14,-2],[21,41],[11,6],[0,19],[6,48],[15,27],[18,1],[2,12],[22,-5],[22,30],[11,12],[13,28],[10,-3],[7,-16],[-5,-19]],[[3018,5860],[-1,-14],[-16,-6],[9,-26],[-1,-30],[-12,-34],[11,-46],[12,4],[6,42],[-9,20],[-1,44],[34,23],[-3,27],[9,18],[10,-40],[20,-1],[18,-32],[1,-19],[25,-1],[30,6],[15,-26],[22,-7],[15,18],[1,15],[34,3],[33,1],[-23,-17],[9,-27],[22,-5],[21,-28],[5,-46],[14,1],[11,-13]],[[3339,5664],[18,-21],[18,-38],[0,-30],[11,-1],[15,-28],[11,-20]],[[3412,5526],[33,-12],[3,11],[22,4],[30,-16]],[[3500,5513],[10,-6],[20,-14],[30,-48],[4,-24]],[[3564,5421],[10,3],[7,-32],[15,-101],[15,-9],[1,-40],[-21,-47],[8,-18],[50,-9],[1,-57],[21,37],[35,-20],[46,-35],[13,-34],[-4,-32],[32,18],[54,-31],[42,3],[41,-48],[35,-65],[22,-16],[23,-3],[10,-18],[10,-73],[4,-35],[-11,-95],[-14,-38],[-39,-80],[-18,-65],[-20,-50],[-7,-1],[-8,-42],[2,-108],[-8,-89],[-3,-38],[-8,-23],[-5,-77],[-29,-75],[-4,-59],[-23,-25],[-6,-35],[-30,0],[-44,-22],[-20,-25],[-31,-17],[-32,-46],[-24,-57],[-4,-43],[5,-32],[-6,-58],[-6,-28],[-19,-32],[-31,-101],[-25,-46],[-18,-27],[-13,-55],[-18,-33]],[[3517,3237],[-12,-36],[-32,-32],[-20,12],[-15,-6],[-26,24],[-19,-1],[-17,31]],[[3376,3229],[-2,-30],[36,-49],[-4,-40],[17,-25],[-1,-28],[-27,-74],[-41,-31],[-56,-12],[-30,6],[5,-34],[-5,-43],[5,-29],[-17,-21],[-28,-8],[-27,21],[-11,-15],[4,-57],[19,-17],[15,18],[8,-30],[-25,-18],[-22,-36],[-5,-58],[-6,-30],[-26,-1],[-22,-29],[-8,-43],[27,-42],[27,-12],[-10,-52],[-33,-32],[-18,-68],[-25,-22],[-11,-27],[9,-60],[18,-34],[-12,3]],[[3094,2170],[-24,1],[-14,-14],[-25,-21],[-4,-54],[-12,-1],[-31,18],[-32,41],[-35,33],[-8,36],[8,34],[-14,38],[-4,98],[12,56],[29,44],[-42,17],[26,51],[10,95],[31,-20],[14,119],[-18,16],[-9,-72],[-18,8],[9,82],[10,107],[12,39],[-8,57],[-2,64],[12,2],[17,93],[19,92],[12,86],[-7,86],[9,48],[-4,71],[17,70],[5,112],[9,119],[8,129],[-2,94],[-6,81]],[[3044,4125],[-27,33],[-3,24],[-55,58],[-50,63],[-21,35],[-12,48],[5,17],[-24,75],[-27,106],[-26,115],[-12,26],[-8,43],[-22,37],[-20,24],[9,25],[-13,55],[8,41],[23,36]],[[2769,4986],[14,43],[-6,25],[-10,-27],[-17,26],[6,16],[-5,52],[10,9],[5,36],[10,37],[-2,23],[16,13],[19,22]],[[2809,5261],[-4,18],[10,5],[-1,29],[7,20],[13,4],[12,36],[11,31],[-10,13],[5,34],[-6,52],[5,16],[-4,48],[-11,31]],[[2836,5598],[-9,17],[-6,31],[6,15],[-7,4],[-5,19],[-14,16],[-12,-4],[-5,-20],[-12,-14],[-6,-2],[-2,-12],[13,-31],[-8,-8],[-4,-8],[-13,-3],[-4,34],[-4,-10],[-9,4],[-6,23],[-11,4],[-7,6],[-12,0],[-1,-12],[-3,9]],[[2695,5656],[-15,12],[-6,12],[3,10],[-1,13],[-8,14],[-11,11],[-9,8],[-2,17],[-7,10],[2,-17],[-6,-14],[-6,16],[-9,6],[-4,12],[0,17],[4,18],[-8,8],[6,11]],[[2618,5820],[-9,19],[-13,23],[-6,19],[-12,18],[-14,26],[3,9],[5,-8],[2,4]],[[2574,5930],[-5,18],[-8,5]],[[2561,5953],[-4,-14],[-16,1]],[[2541,5940],[-10,5],[-11,12]],[[2520,5957],[-16,4],[-7,12]],[[2497,5973],[-15,10],[-17,1],[-13,11],[-15,24]],[[2437,6019],[-31,62],[-14,19],[-23,15],[-16,-4],[-22,-22],[-14,-6],[-19,16],[-21,10],[-26,27],[-21,8],[-32,27],[-23,27],[-7,16],[-15,3],[-29,18],[-11,27],[-30,32],[-14,37],[-7,28],[10,5],[-3,17],[6,15],[0,20],[-9,25],[-3,23],[-9,29],[-24,58],[-28,45],[-14,35],[-24,24],[-5,14],[4,36],[-14,13],[-16,28],[-7,40],[-15,5],[-16,30],[-13,28],[-1,18],[-15,44],[-10,44],[0,22],[-20,23],[-9,-3],[-16,16],[-4,-23],[4,-28],[3,-43],[9,-24],[21,-40],[5,-13],[4,-4],[4,-20],[4,1],[6,-37],[8,-15],[6,-20],[18,-30],[9,-53],[8,-25],[8,-27],[2,-31],[13,-2],[11,-26],[10,-26],[-1,-10],[-11,-21],[-5,0],[-7,35],[-19,33],[-20,28],[-14,14],[1,43],[-4,31],[-13,18],[-19,25],[-4,-7],[-7,15],[-17,14],[-17,33],[2,5],[12,-4],[10,22],[1,26],[-21,41],[-17,16],[-10,36],[-10,38],[-13,46],[-11,51]],[[1746,7055],[-5,30],[-18,33],[-13,7],[-3,16],[-15,3],[-10,16],[-26,6],[-7,9],[-4,31],[-27,58],[-23,80],[1,14],[-12,19],[-22,48],[-3,47],[-15,31],[6,48],[-1,49],[-9,45],[11,54],[7,104],[-5,78],[-9,49],[-8,27],[3,11],[40,-20],[15,-54],[7,15],[-4,47],[-10,48]],[[1587,8004],[-4,0],[-53,56],[-20,25],[-51,24],[-15,51],[4,35],[-36,25],[-4,46],[-34,42],[-1,30]],[[1373,8338],[-15,21],[-24,19],[-8,50],[-36,46],[-15,55],[-27,4],[-44,1],[-32,17],[-58,59],[-26,11],[-49,21],[-38,-5],[-55,26],[-33,25],[-31,-12],[6,-40],[-16,-4],[-32,-12],[-24,-19],[-31,-13],[-4,34],[13,57],[29,17],[-8,15],[-35,-32],[-19,-39],[-40,-40],[20,-28],[-26,-42],[-30,-24],[-27,-17],[-7,-26],[-44,-30],[-8,-27],[-33,-24],[-19,4],[-26,-16],[-28,-20],[-23,-19],[-48,-16],[-4,9],[30,27],[27,18],[30,32],[34,6],[14,24],[39,34],[6,12],[20,20],[5,44],[14,34],[-32,-18],[-9,10],[-15,-21],[-18,29],[-7,-20],[-11,28],[-28,-23],[-17,0],[-2,35],[5,21],[-18,20],[-36,-11],[-23,27],[-19,14],[-1,33],[-21,24],[11,33],[22,33],[10,29],[23,4],[19,-9],[22,28],[20,-5],[22,18],[-6,26],[-15,10],[20,23],[-17,-1],[-29,-13],[-9,-12],[-22,12],[-39,-6],[-40,14],[-12,23],[-35,33],[39,25],[62,28],[23,0],[-4,-29],[58,2],[-22,36],[-34,22],[-20,29],[-27,24],[-38,18],[16,30],[49,2],[35,27],[7,28],[28,27],[27,7],[53,25],[25,-4],[43,31],[42,-12],[20,-26],[12,11],[47,-3],[-1,-14],[42,-9],[29,5],[58,-18],[53,-5],[22,-8],[37,10],[42,-18],[30,-8]],[[1083,9196],[52,-14],[44,-27],[29,-6],[24,24],[34,18],[41,-7],[41,26],[46,14],[19,-24],[21,14],[6,27]],[[1440,9241],[19,-6],[47,-52]],[[1506,9183],[37,39],[4,-44],[34,10],[10,16],[34,-3],[43,-24],[65,-21],[38,-10],[27,4],[37,-29],[-39,-29],[51,-12],[75,6],[23,11],[30,-35],[30,29],[-28,25],[18,19],[33,3],[23,6],[22,-14],[28,-31],[31,4],[49,-26],[43,9],[41,-1],[-3,36],[24,10],[43,-20],[0,-54],[18,46],[22,-2],[13,58],[-30,36],[-32,23],[2,64],[33,41],[36,-9],[28,-25],[38,-65]],[[2457,9224],[-25,-28],[52,-12]],[[2484,9184],[0,-59],[37,45],[33,-37],[-8,-43],[27,-39],[29,42],[20,50],[2,63],[39,-4],[41,-9],[37,-28],[2,-29],[-21,-31],[20,-31],[-4,-28],[-54,-40],[-39,-9],[-28,18],[-9,-29],[-26,-49],[-8,-25],[-33,-39],[-39,-4],[-22,-24],[-2,-38],[-32,-7],[-34,-46],[-31,-65],[-10,-46],[-2,-67],[41,-9],[12,-54],[13,-44],[39,12],[52,-25],[28,-22],[20,-27],[34,-16],[30,-25],[46,-3],[30,-5],[-5,-50],[9,-58],[20,-65],[41,-54],[22,18],[15,60],[-15,91],[-19,30],[44,27],[32,40],[15,40],[-2,39],[-19,49],[-34,43],[33,60],[-12,53],[-9,90],[19,13],[48,-16],[28,-5],[23,15],[26,-20],[34,-33],[9,-23],[49,-4],[-1,-48],[10,-73],[25,-9],[20,-34],[40,32],[27,63],[18,27],[22,-51],[36,-74],[31,-69],[-11,-36],[36,-32],[25,-33],[45,-15],[18,-18],[11,-49],[21,-8],[11,-22],[2,-64],[-20,-22],[-20,-20],[-45,-21],[-35,-47],[-47,-9],[-60,12],[-41,0],[-29,-4],[-23,-41],[-36,-26],[-40,-76],[-32,-53],[24,10],[44,75],[59,48],[41,6],[25,-28],[-27,-39],[9,-62],[9,-43],[36,-29],[46,8],[28,65],[2,-42],[18,-21],[-34,-38],[-62,-34],[-27,-23],[-31,-42],[-22,5],[-1,48],[49,48],[-45,-2],[-31,-7]],[[1852,9128],[-15,28],[-38,15],[-25,-6],[-34,45],[18,7],[43,9],[39,-2],[37,10],[-54,13],[-59,-4],[-40,1],[-14,21],[64,23],[-43,-1],[-48,16],[23,43],[19,23],[75,35],[28,-11],[-14,-27],[62,17],[39,-29],[31,29],[25,-19],[23,-56],[14,24],[-20,59],[25,8],[27,-9],[31,-23],[18,-56],[8,-41],[47,-29],[50,-27],[-3,-25],[-45,-5],[17,-22],[-9,-21],[-50,9],[-48,16],[-32,-4],[-52,-19]],[[1972,9143],[-83,-11],[-37,-4]],[[2097,9410],[-25,-38],[-43,40],[9,8],[37,2],[22,-12]],[[2879,9391],[2,-15],[-29,1],[-30,1],[-31,-7],[-8,3],[-30,31],[1,20],[13,4],[64,-6],[48,-32]],[[2595,9395],[22,-36],[25,46],[71,24],[47,-60],[-4,-37],[55,16],[26,23],[62,-29],[38,-27],[4,-26],[51,13],[29,-36],[67,-23],[25,-23],[26,-54],[-51,-27],[65,-38],[44,-12],[40,-53],[44,-4],[-9,-40],[-48,-67],[-35,24],[-43,56],[-36,-7],[-4,-33],[30,-34],[37,-26],[12,-16],[18,-57],[-10,-41],[-35,16],[-69,46],[39,-50],[29,-35],[4,-20],[-75,23],[-60,34],[-33,28],[9,16],[-41,29],[-41,28],[1,-16],[-80,-10],[-24,20],[18,43],[53,1],[57,7],[-10,21],[10,28],[36,56],[-8,26],[-10,20],[-43,28],[-56,19],[18,15],[-30,36],[-24,3],[-22,19],[-15,-17],[-50,-7],[-101,13],[-59,17],[-45,8],[-23,21],[29,26],[-40,0],[-8,58],[21,52],[28,23],[72,16],[-20,-37]],[[2212,9434],[33,-12],[49,7],[7,-16],[-25,-28],[42,-25],[-5,-52],[-46,-22],[-27,5],[-19,22],[-69,44],[1,19],[56,-7],[-30,37],[33,28]],[[8988,9398],[-43,-1],[-56,7],[-5,3],[26,23],[35,5],[39,-22],[4,-15]],[[2410,9372],[-29,-43],[-32,3],[-17,50],[0,29],[15,24],[27,16],[58,-2],[53,-14],[-41,-51],[-34,-12]],[[1580,9265],[-15,25],[-64,30]],[[1501,9320],[10,19],[21,48]],[[1532,9387],[25,38],[-28,35],[94,9],[40,-12],[71,-3],[27,-17],[30,-24],[-35,-15],[-68,-40],[-35,-40]],[[1653,9318],[0,-25],[-73,-28]],[[9186,9506],[-33,-23],[-44,5],[-52,23],[7,18],[52,-8],[70,-15]],[[2399,9500],[-15,-23],[-41,5],[-33,15],[15,25],[40,16],[24,-20],[10,-18]],[[9029,9533],[-22,-43],[-102,2],[-47,-14],[-55,38],[15,39],[37,11],[73,-2],[101,-31]],[[2263,9600],[21,-27],[1,-30],[-12,-42],[-46,-6],[-30,9],[1,34],[-46,-5],[-2,45],[30,-2],[42,19],[39,-3],[2,8]],[[1993,9570],[11,-21],[25,10],[29,-2],[5,-29],[-17,-27],[-94,-9],[-70,-25],[-42,-1],[-4,19],[58,25],[-126,-7],[-38,10],[37,57],[27,16],[78,-20],[49,-34],[49,-4],[-40,55],[25,21],[29,-7],[9,-27]],[[6597,9254],[-16,-5],[-91,8],[-7,25],[-51,16],[-4,31],[29,12],[-1,32],[55,49],[-26,7],[67,50],[-8,26],[62,31],[92,37],[92,11],[48,21],[54,7],[19,-22],[-18,-18],[-99,-29],[-85,-27],[-86,-55],[-41,-56],[-44,-56],[6,-48],[53,-47]],[[2369,9621],[31,-18],[55,0],[24,-19],[-7,-21],[32,-13],[18,-14],[37,-3],[41,-5],[44,13],[57,5],[45,-4],[29,-22],[7,-24],[-18,-15],[-41,-12],[-36,7],[-79,-9],[-57,-1],[-45,7],[-74,18],[-10,32],[-3,29],[-28,25],[-57,7],[-33,18],[11,23],[57,-4]],[[1772,9653],[-4,-44],[-22,-20],[-26,-3],[-51,-25],[-45,-8],[-37,12],[47,43],[57,37],[42,0],[39,8]],[[8162,9520],[-31,-17],[-73,-32],[-20,-18],[34,-8],[41,-14],[25,11],[14,-37],[12,15],[45,9],[89,-10],[7,-27],[116,-8],[1,44],[59,-10],[45,0],[45,-30],[12,-37],[-16,-24],[35,-46],[44,-23],[26,61],[45,-26],[47,15],[54,-18],[20,17],[46,-9],[-20,54],[37,25],[250,-38],[24,-34],[73,-44],[112,11],[55,-9],[23,-24],[-3,-42],[34,-17],[37,12],[50,2],[52,-12],[53,7],[48,-51],[34,18],[-22,37],[12,25],[89,-16],[58,4],[80,-28],[39,-25],[0,-229],[-1,-1],[-35,-25],[-36,4],[25,-30],[16,-48],[13,-15],[3,-24],[-7,-15],[-52,12],[-77,-43],[-25,-7],[-43,-40],[-40,-36],[-10,-26],[-40,40],[-72,-45],[-13,21],[-27,-25],[-37,8],[-9,-37],[-33,-56],[1,-23],[32,-13],[-4,-84],[-26,-2],[-12,-49],[12,-24],[-49,-30],[-9,-65],[-42,-15],[-8,-58],[-40,-54],[-10,40],[-12,84],[-16,128],[14,80],[23,34],[1,27],[44,13],[49,72],[48,60],[50,46],[22,81],[-33,-5],[-17,-47],[-71,-64],[-22,71],[-72,-19],[-70,-97],[23,-35],[-62,-15],[-43,-6],[2,41],[-43,9],[-34,-28],[-85,10],[-91,-17],[-90,-113],[-107,-136],[44,-7],[14,-36],[27,-13],[17,29],[31,-4],[40,-63],[1,-49],[-22,-58],[-2,-68],[-13,-92],[-42,-84],[-9,-39],[-38,-68],[-37,-66],[-18,-34],[-37,-34],[-18,-1],[-17,28],[-37,-42],[-5,-19]],[[8631,7613],[-10,4],[-12,-20],[-8,-20],[1,-41],[-15,-13],[-5,-10],[-10,-17],[-19,-9],[-12,-16],[-1,-25],[-3,-6],[11,-9],[16,-26]],[[8564,7405],[24,-68],[7,-37],[0,-66],[-10,-32],[-26,-11],[-22,-24],[-25,-5],[-3,32],[5,43],[-12,60],[21,9],[-19,50]],[[8504,7356],[-14,11],[-3,-11],[-8,-5],[-1,11],[-8,5],[-7,9],[7,26],[7,6],[-2,11],[7,31],[-2,9],[-16,7],[-14,15]],[[8450,7481],[-38,-17],[-21,-26],[-30,-16],[15,26],[-6,23],[22,39],[-14,30],[-25,-21],[-31,-40],[-17,-37],[-27,-3],[-15,-26],[15,-39],[23,-10],[1,-26],[22,-16],[31,41],[25,-23],[17,-1],[5,-30],[-39,-17],[-13,-31],[-27,-29],[-15,-40],[30,-31],[11,-57],[17,-53],[19,-44],[0,-43],[-18,-16],[7,-30],[16,-18],[-4,-47],[-7,-46],[-16,-5],[-20,-62],[-23,-76],[-25,-69],[-39,-53],[-38,-48],[-31,-7],[-17,-25],[-10,18],[-16,-28],[-39,-29],[-29,-9],[-9,-61],[-16,-3],[-7,42],[6,22],[-37,18],[-13,-9]],[[8000,6423],[-37,-49],[-23,-55],[-6,-40],[21,-60],[26,-76],[25,-35],[17,-46],[13,-107],[-4,-101],[-23,-38],[-32,-37],[-23,-48],[-34,-54],[-10,37],[7,39],[-20,33]],[[7897,5786],[-23,8],[-12,30],[-14,60]],[[7848,5884],[-25,26],[-23,-1],[4,45],[-25,0],[-2,-63],[-15,-84],[-9,-51],[2,-42],[18,-2],[11,-52],[5,-50],[16,-33],[17,-7],[14,-30]],[[7836,5540],[6,-5],[17,-35],[11,-38],[2,-39],[-3,-26],[3,-20],[2,-34],[10,-16],[10,-51],[0,-20],[-20,-3],[-26,42],[-33,46],[-3,29],[-16,39],[-4,47],[-10,32],[3,42],[-6,24]],[[7779,5554],[-11,22],[-5,29],[-15,32],[-13,28],[-5,-34],[-5,32],[3,36],[8,55]],[[7736,5754],[-2,43],[8,44],[-9,34],[2,63],[-11,29],[-9,69],[-5,73],[-12,48],[-19,-29],[-31,-41],[-16,5],[-17,13],[10,72],[-6,54],[-22,66],[3,21],[-16,7],[-19,47]],[[7565,6372],[-8,30],[-2,30],[-5,27],[-12,34],[-25,2],[2,-24],[-9,-32],[-11,12],[-5,-10],[-7,6],[-11,5]],[[7472,6452],[-4,-21],[-19,1],[-34,-12],[1,-44],[-14,-34],[-40,-38],[-32,-68],[-20,-36],[-28,-38],[0,-27],[-14,-14],[-25,-20],[-13,-4],[-8,-43],[5,-75],[2,-48],[-12,-55],[0,-98],[-14,-2],[-13,-44],[8,-19],[-25,-17],[-9,-39],[-11,-16],[-27,53],[-12,81],[-11,58],[-10,27],[-15,56],[-7,72],[-4,36],[-26,79],[-11,111],[-8,74],[0,70],[-6,54],[-40,-35],[-20,7],[-36,70],[13,21],[-8,22],[-32,49]],[[6893,6546],[-21,15],[-8,41],[-21,44],[-52,-11],[-45,-1],[-39,-8]],[[6707,6626],[-52,17],[-30,14],[-32,7],[-12,71],[-13,10],[-21,-10],[-28,-28],[-34,19],[-28,44],[-27,17],[-19,54],[-20,77],[-15,-9],[-18,19],[-10,-23]],[[6348,6905],[-17,3]],[[6331,6908],[6,-25],[-2,-13],[9,-44]],[[6344,6826],[11,-50],[13,-13],[5,-20],[19,-24],[2,-24],[-3,-19],[3,-19],[8,-17],[4,-18],[4,-15]],[[6410,6607],[-2,42],[8,31],[7,6],[9,-18],[0,-34],[-6,-34]],[[6426,6600],[6,-22]],[[6432,6578],[5,3],[1,-16],[21,9],[23,-1],[17,-2],[19,39],[21,37],[17,35]],[[6556,6682],[8,20],[4,-5],[-3,-24],[-3,-10]],[[6562,6663],[3,-46]],[[6565,6617],[13,-39],[15,-21],[21,-8],[16,-10],[13,-33],[7,-19],[10,-7],[0,-13],[-10,-35],[-4,-16],[-12,-18],[-10,-40],[-13,3],[-6,-13],[-4,-30],[3,-38],[-3,-7],[-12,0],[-18,-21],[-2,-29],[-7,-12],[-17,1],[-11,-15],[0,-23],[-13,-16],[-16,5],[-18,-19],[-13,-3]],[[6474,6141],[-20,-16],[-5,-25],[-1,-20],[-28,-24],[-44,-27],[-25,-41],[-12,-3],[-8,4],[-17,-24],[-17,-11],[-24,-3],[-7,-4],[-6,-15],[-7,-4],[-4,-15],[-14,2],[-9,-8],[-19,3],[-7,33],[0,32],[-4,17],[-6,42],[-8,24],[6,3],[-3,26],[3,11],[-1,25]],[[6187,6123],[-3,25],[-9,17],[-2,23],[-14,21],[-15,48],[-8,47],[-19,40],[-13,9],[-18,55],[-3,40],[1,34],[-16,64],[-13,22],[-15,12],[-9,33],[1,13],[-7,30],[-8,13],[-11,43],[-17,46],[-14,40],[-14,0],[4,31],[1,20],[4,23]],[[5970,6872],[-1,9]],[[5969,6881],[-8,-23],[-6,-44],[-7,-30],[-7,-10],[-9,19],[-13,25],[-19,83],[-3,-5],[11,-61],[17,-58],[21,-90],[11,-31],[8,-33],[25,-63],[-5,-10],[1,-38],[32,-51],[5,-12]],[[6023,6449],[9,-57],[-6,-10],[4,-59],[10,-69],[11,-14],[15,-22]],[[6066,6218],[16,-66],[8,-53],[15,-28],[38,-55],[15,-32],[15,-34],[9,-19],[14,-18]],[[6196,5913],[6,-18],[-1,-23],[-16,-14],[12,-16]],[[6197,5842],[9,-11],[6,-23],[12,-25],[14,0],[26,15],[31,7],[24,18],[14,3],[10,11],[16,2]],[[6359,5839],[8,1],[13,9],[15,6],[13,19],[11,0],[0,-16],[-2,-33],[0,-30],[-6,-21],[-8,-62],[-13,-65],[-17,-73],[-24,-85],[-24,-64],[-33,-79],[-27,-46],[-42,-57],[-26,-44],[-30,-70],[-7,-30],[-6,-14]],[[6154,5085],[-19,-23],[-7,-24],[-11,-4],[-4,-41],[-9,-23],[-5,-38],[-11,-19]],[[6088,4913],[-13,-71],[2,-33],[17,-21],[1,-15],[-7,-35],[1,-17],[-2,-28],[10,-36],[12,-57],[10,-12]],[[6119,4588],[4,-26],[-1,-57],[4,-51],[1,-90],[5,-28],[-9,-41],[-11,-40],[-17,-36],[-26,-22],[-31,-28],[-31,-62],[-11,-10],[-19,-41],[-12,-13],[-2,-41],[13,-44],[5,-34],[1,-17],[5,3],[-1,-57],[-5,-26],[7,-10],[-4,-24],[-12,-21],[-23,-19],[-33,-31],[-12,-21],[2,-25],[7,-4],[-2,-30]],[[5911,3642],[-7,-42],[-3,-48],[-8,-26],[-19,-29],[-5,-8],[-12,-29],[-7,-30],[-16,-41],[-32,-60],[-19,-34],[-21,-26],[-29,-23],[-14,-3],[-4,-16],[-17,9],[-14,-11],[-30,11],[-17,-7],[-11,3],[-29,-23],[-23,-9],[-18,-22],[-12,-1],[-12,21],[-9,1],[-12,25],[-2,-8],[-3,16],[0,34],[-9,38],[9,11],[-1,44],[-18,54],[-14,48],[0,1],[-20,74]],[[5453,3536],[-21,44],[-11,42],[-6,56],[-7,42],[-9,88],[0,69],[-4,32],[-11,23],[-14,48],[-15,69],[-6,36],[-22,56],[-2,45]],[[5325,4186],[-3,36],[4,51],[10,52],[1,25],[9,52],[7,23],[16,38],[9,26],[3,42],[-2,33],[-8,21],[-8,35],[-6,34],[1,12],[9,23],[-9,56],[-5,38],[-14,37],[2,11]],[[5341,4831],[-4,18]],[[5337,4849],[-7,43]],[[5330,4892],[-23,61]],[[5307,4953],[-28,58],[-19,47],[-17,60],[1,19],[6,19],[7,41],[6,43]],[[5263,5240],[-6,9],[10,64]],[[5267,5313],[4,46],[-11,38],[-12,10],[-6,26],[-7,8],[0,16]],[[5235,5457],[-29,-21],[-10,3],[-11,-13],[-22,1],[-15,36],[-9,42],[-20,38],[-21,-1],[-24,0]],[[5074,5542],[-23,-6]],[[5051,5536],[-23,-13]],[[5028,5523],[-43,-33],[-16,-20],[-25,-17],[-24,17]],[[4920,5470],[-13,-1],[-19,11],[-18,0],[-33,-10],[-19,-17],[-28,-21],[-5,1]],[[4785,5433],[-7,0],[-29,27],[-25,44],[-24,32],[-19,37]],[[4681,5573],[-7,4],[-20,23],[-15,31],[-5,21],[-3,43]],[[4631,5695],[-12,34],[-11,22],[-7,8],[-7,11],[-3,26],[-4,12],[-8,10]],[[4579,5818],[-15,24],[-12,4],[-6,16],[0,9],[-8,12],[-2,12]],[[4536,5895],[-5,44]],[[4531,5939],[4,26]],[[4535,5965],[-12,45],[-14,20],[13,11],[13,40],[7,30]],[[4542,6111],[-3,31],[8,28],[4,55],[-4,57],[-3,28],[3,29],[-7,27],[-15,25]],[[4525,6391],[1,25]],[[4526,6416],[2,26],[10,16],[9,30],[-1,19],[9,41],[16,37],[9,9],[7,34],[1,30],[10,36],[18,21],[18,59],[15,22],[25,7],[22,39],[14,16],[23,48],[-7,71],[11,50],[4,30],[18,39],[27,26],[21,24],[19,60],[8,35],[21,0],[16,-25],[27,4],[29,-12],[12,-1]],[[4939,7207],[26,32],[30,10],[18,23],[27,18],[47,10],[46,5],[14,-9],[26,23],[30,0],[11,-13],[19,3]],[[5233,7309],[30,24],[20,-7],[-1,-29],[23,21],[2,-11],[-14,-28],[0,-27],[10,-14],[-4,-50],[-18,-29],[5,-32],[15,-1],[7,-27],[10,-9]],[[5318,7090],[33,-20],[11,5],[24,-9],[36,-26],[13,-51],[25,-11],[40,-25],[29,-28],[14,15],[13,26],[-6,44],[8,28],[20,27],[19,8],[38,-12],[9,-25],[11,-1],[9,-9],[27,-7],[7,-19]],[[5698,7000],[37,1],[27,-15],[27,-17],[13,-9],[21,18],[12,16],[24,5],[20,-7],[8,-29],[6,19],[22,-14],[22,-3],[14,15]],[[5951,6980],[8,19],[-2,3],[7,27],[6,43],[4,15],[1,0]],[[5975,7087],[10,47],[13,41],[1,2]],[[5999,7177],[-3,44],[7,24]],[[6003,7245],[-10,26],[10,21],[-17,-4],[-23,13],[-19,-33],[-42,-7],[-23,31],[-29,2],[-7,-24],[-19,-7],[-27,31],[-30,-1],[-17,57],[-20,32],[14,45],[-18,27],[31,55],[42,3],[12,44],[53,-8],[33,37],[33,17],[46,1],[48,-41],[40,-22],[32,9],[24,-5],[33,30]],[[6153,7574],[4,24],[-7,40],[-16,21],[-15,6],[-10,18]],[[6109,7683],[-36,49],[-31,21],[-24,34],[20,9],[23,49],[-16,22],[41,24],[0,13],[-25,-10]],[[6061,7894],[-23,-4],[-18,-19],[-26,-3],[-24,-21],[2,-36],[13,-14],[29,3],[-6,-20],[-30,-10],[-38,-34],[-15,12],[6,27],[-31,17],[5,11],[27,19],[-8,13],[-43,15],[-2,21],[-26,-7],[-10,-31],[-22,-43]],[[5821,7790],[1,-15],[-14,-12],[-8,5],[-8,-69]],[[5792,7699],[-14,-24],[-10,-41],[9,-33]],[[5777,7601],[3,-22],[24,-19],[-5,-14],[-33,-3],[-12,-18],[-23,-31],[-9,27],[1,12]],[[5723,7533],[-17,1],[-15,6],[-33,-15],[19,-33],[-14,-9],[-16,0],[-14,30],[-6,-13],[7,-34],[14,-27],[-11,-13],[16,-27],[13,-16],[1,-33],[-26,16],[8,-30],[-17,-6],[10,-51],[-18,0],[-23,25],[-11,46],[-4,38],[-11,26],[-14,33],[-2,17]],[[5559,7464],[-5,4],[-1,12],[-15,20],[-2,27],[2,39],[4,18],[-5,9]],[[5537,7593],[-6,5],[-8,19],[-12,11]],[[5511,7628],[-26,21],[-16,21],[-25,17],[-24,43],[6,4],[-13,24],[0,20],[-18,9],[-8,-25],[-9,19],[1,20],[1,1]],[[5380,7802],[6,5]],[[5386,7807],[-22,9],[-23,-21],[2,-28],[-3,-17],[9,-29],[26,-29],[14,-48],[31,-46],[21,0],[7,-13],[-8,-11],[25,-21],[21,-17],[23,-30],[3,-11],[-5,-21],[-15,27],[-24,10],[-12,-37],[20,-22],[-3,-30],[-12,-3],[-15,-50],[-11,-4],[0,17],[5,31],[6,13],[-10,33],[-9,29],[-11,7],[-9,25],[-17,11],[-12,23],[-21,3],[-22,26],[-25,38],[-19,33],[-9,57],[-14,7],[-22,19],[-13,-8],[-16,-27],[-11,-4]],[[5206,7698],[-26,-33],[-54,16],[-41,-19],[-3,-34]],[[5082,7628],[1,-34],[-26,-38],[-35,-12],[-3,-20],[-17,-32],[-11,-46],[11,-33],[-16,-26],[-6,-37],[-21,-12],[-20,-44],[-35,-1],[-26,1],[-18,-20],[-10,-22],[-14,5],[-10,19],[-8,33],[-26,9]],[[4792,7318],[-11,-15],[-15,8],[-14,-6],[4,45],[-3,35],[-12,6],[-7,22],[3,37],[11,21],[2,23],[5,35],[0,24],[-6,21],[-1,20]],[[4748,7594],[1,41],[-11,25],[39,41],[34,-10],[38,0],[29,-10],[23,3],[45,-2]],[[4946,7682],[15,35],[5,115],[-29,60],[-20,29],[-43,22],[-3,42],[36,13],[47,-15],[-9,65],[27,-24],[64,44],[9,48],[24,11]],[[5069,8127],[22,12]],[[5091,8139],[14,15],[25,85],[38,24],[23,-1]],[[5191,8262],[5,12],[23,3],[6,-13],[18,29],[-6,21],[-1,33]],[[5236,8347],[-11,32],[-1,59],[4,15],[8,18],[25,3],[10,16],[22,16],[-1,-29],[-8,-19],[3,-16],[15,-9],[-7,-22],[-8,7],[-20,-42],[8,-28]],[[5275,8348],[0,-22],[28,-14],[0,-20],[28,11],[16,16],[31,-23],[13,-19]],[[5391,8277],[19,17],[43,27],[35,19],[28,-9],[2,-14],[27,-1]],[[5545,8316],[6,25],[39,19]],[[5590,8360],[-6,48]],[[5584,8408],[1,44],[13,36],[27,20],[22,-43],[22,1],[5,44]],[[5674,8510],[4,34],[-11,-7],[-17,20],[-3,33],[35,16],[35,9],[31,-10],[28,2]],[[5776,8607],[32,32],[-29,27]],[[5779,8666],[-51,-5],[-49,-21],[-45,-12],[-16,32],[-27,18],[6,57],[-13,52],[13,34],[25,36],[64,62],[18,12],[-2,25],[-39,27]],[[5663,8983],[-48,-16],[-27,-41],[5,-35],[-45,-46],[-53,-50],[-21,-81],[20,-40],[27,-32],[-26,-65],[-29,-14],[-10,-96],[-16,-54],[-34,5],[-15,-45],[-33,-3],[-8,54],[-24,66],[-21,81]],[[5305,8571],[-18,35],[-55,-66],[-37,-14],[-39,30],[-10,62],[-8,132],[25,37],[74,49],[54,59],[51,81],[67,111],[47,43],[76,72],[61,25],[45,-3],[43,48],[50,-2],[50,11],[87,-42],[-36,-16],[31,-36]],[[5863,9187],[28,20],[46,-34],[76,-14],[105,-65],[21,-28],[2,-38],[-31,-30],[-45,-16],[-124,44],[-20,-7],[45,-42],[4,-86],[35,-17],[22,-15],[4,28]],[[6031,8887],[-18,25],[19,21]],[[6032,8933],[67,-36],[23,14],[-19,42],[65,57],[26,-3],[26,-21],[16,40],[-23,34],[13,35],[-20,35],[78,-18],[15,-32],[-35,-7],[0,-32],[22,-20],[43,12],[7,37],[58,28],[97,49],[21,-3],[-27,-35],[34,-6],[20,20],[52,1],[41,24],[32,-34],[31,38],[-29,33],[15,19],[82,-17],[38,-18],[101,-66],[18,30]],[[6920,9133],[-28,30],[-1,13]],[[6891,9176],[-33,5],[9,28],[-15,45],[-1,18],[52,52],[18,53],[21,11],[73,-15],[6,-32],[-26,-47],[17,-18],[9,-41],[-7,-79],[31,-35],[-12,-38],[-54,-82],[32,-9],[11,21],[30,15],[8,28],[24,28],[-17,33],[13,38],[-30,4],[-7,32],[22,58],[-36,47],[50,39],[-6,41],[14,1],[14,-32],[-11,-55],[30,-11],[-13,42],[47,22],[57,3],[52,-32],[-25,48],[-3,61],[48,11],[67,-2],[60,7],[-22,31],[32,37],[32,2],[54,29],[73,7],[10,16],[73,5],[22,-13],[63,31],[51,-1],[7,25],[27,24],[65,24],[48,-19],[-38,-14],[63,-9],[8,-28],[25,14],[81,-1],[63,-28]],[[8147,9571],[22,-21],[-7,-30]],[[6357,7389],[9,-43],[26,-12],[19,-29],[40,-10],[43,16],[3,13]],[[6497,7324],[-5,41],[4,60],[-22,19],[7,40],[-18,3],[6,49],[26,-14],[24,18],[-20,35],[-8,33],[-22,-15],[-3,-42],[-9,37]],[[6457,7588],[-1,14],[7,24],[-6,20],[-32,20],[-12,51],[-16,15],[-1,19],[27,-6],[1,42],[24,10],[24,-9],[5,56],[-5,36],[-28,-3],[-23,14],[-32,-25],[-26,-12]],[[6363,7854],[-13,-34],[-27,-10],[-27,-59],[25,-55],[-3,-39],[30,-68]],[[6348,7589],[15,-30],[14,-41],[13,-2],[9,-16],[-23,-5],[-5,-44],[-5,-20],[-10,-14],[1,-28]],[[2393,9646],[-13,-2],[-52,4],[-8,16],[56,-1],[20,-11],[-3,-6]],[[1939,9656],[-52,-17],[-41,19],[22,18],[41,6],[39,-9],[-9,-17]],[[5686,9665],[-62,-24],[-49,14],[19,15],[-17,18],[58,12],[11,-22],[40,-13]],[[1953,9708],[-34,-11],[-46,0],[1,8],[28,17],[15,-2],[36,-12]],[[2337,9677],[-41,-12],[-22,13],[-12,22],[-3,24],[36,-3],[17,-3],[33,-20],[-8,-21]],[[2220,9692],[11,-24],[-46,7],[-45,18],[-62,2],[27,17],[-34,14],[-2,22],[54,-7],[76,-21],[21,-28]],[[7917,9691],[-156,-22],[51,75],[22,7],[21,-4],[71,-32],[-9,-24]],[[5506,9771],[91,-43],[-70,-22],[-15,-43],[-24,-10],[-14,-48],[-33,-2],[-60,35],[25,20],[-41,17],[-54,48],[-22,46],[76,20],[15,-20],[40,1],[10,20],[41,2],[35,-21]],[[5706,9812],[54,-20],[-41,-31],[-80,-7],[-82,10],[-5,16],[-40,1],[-31,26],[86,16],[40,-14],[29,17],[70,-14]],[[6419,9820],[-37,-7],[-25,-5],[-4,-9],[-32,-10],[-30,14],[15,18],[-61,2],[54,10],[42,1],[6,-16],[16,14],[26,10],[41,-13],[-11,-9]],[[7775,9724],[-61,-7],[-77,17],[-46,22],[-22,41],[-37,11],[72,40],[60,13],[54,-29],[64,-56],[-7,-52]],[[2582,9769],[34,-19],[-39,-17],[-51,-43],[-49,-4],[-58,7],[-29,24],[0,21],[22,15],[-51,-1],[-31,20],[-17,26],[19,25],[19,18],[29,4],[-12,13],[64,3],[36,-31],[47,-12],[45,-11],[22,-38]],[[3096,9967],[75,-4],[59,-7],[51,-16],[-1,-15],[-68,-25],[-67,-12],[-25,-13],[60,0],[-65,-35],[-46,-16],[-47,-47],[-57,-9],[-18,-12],[-84,-6],[38,-8],[-19,-10],[23,-28],[-26,-20],[-43,-16],[-14,-23],[-38,-17],[4,-13],[47,2],[1,-14],[-75,-34],[-72,15],[-82,-9],[-41,7],[-53,3],[-3,28],[51,13],[-13,42],[17,4],[74,-25],[-38,37],[-45,11],[22,22],[50,14],[7,20],[-39,22],[-12,30],[76,-2],[22,-7],[44,21],[-63,7],[-97,-4],[-49,20],[-23,23],[-33,17],[-6,20],[41,11],[33,2],[54,9],[41,21],[35,-3],[30,-16],[21,31],[36,10],[50,6],[85,2],[15,-6],[80,10],[60,-4],[60,-4]],[[4246,9991],[174,-45],[-51,-23],[-107,-2],[-149,-6],[14,-10],[98,6],[84,-19],[54,17],[23,-21],[-31,-33],[71,21],[135,23],[83,-11],[16,-25],[-113,-41],[-16,-13],[-89,-10],[65,-3],[-33,-42],[-22,-37],[1,-64],[33,-38],[-43,-2],[-46,-19],[51,-30],[7,-49],[-30,-5],[36,-50],[-62,-4],[32,-23],[-9,-21],[-39,-9],[-39,0],[35,-39],[1,-25],[-55,23],[-15,-15],[38,-14],[36,-36],[11,-46],[-50,-11],[-21,22],[-34,33],[9,-39],[-32,-30],[73,-3],[38,-3],[-74,-50],[-76,-45],[-81,-20],[-31,0],[-28,-23],[-39,-60],[-60,-41],[-19,-2],[-37,-14],[-40,-14],[-24,-35],[0,-41],[-14,-38],[-45,-46],[11,-45],[-13,-47],[-14,-56],[-39,-4],[-41,47],[-56,0],[-26,32],[-19,56],[-48,72],[-14,37],[-4,52],[-38,53],[10,43],[-19,20],[27,67],[42,22],[11,24],[6,45],[-32,-21],[-15,-8],[-25,-8],[-34,18],[-2,39],[11,31],[26,1],[57,-15],[-48,36],[-25,20],[-28,-8],[-23,14],[31,54],[-17,21],[-22,40],[-33,61],[-36,22],[1,24],[-75,34],[-59,4],[-74,-2],[-68,-4],[-32,18],[-48,36],[73,18],[56,4],[-119,14],[-63,24],[4,22],[105,28],[102,28],[11,21],[-75,20],[24,23],[96,41],[40,6],[-11,26],[66,15],[85,9],[85,0],[31,-18],[73,32],[67,-21],[39,-5],[57,-19],[-66,31],[4,25],[93,34],[98,-2],[35,21],[98,6],[222,-8]],[[6847,7333],[15,0],[21,-12]],[[6883,7321],[8,-7],[21,18],[9,-11],[9,27],[16,-2],[5,9],[3,23],[12,20],[15,-13],[-3,-18],[8,-2],[-3,-49],[11,-19],[10,13],[12,5],[18,26],[19,-4],[29,0]],[[7082,7337],[5,-17]],[[7087,7320],[-17,-6],[-14,-11],[-32,-7],[-29,-12],[-17,-25],[7,-24],[3,-29],[-14,-24],[1,-22],[-7,-21],[-27,2],[11,-38],[-17,-15],[-12,-34],[1,-35],[-11,-16],[-10,5],[-21,-7],[-3,-17],[-21,1],[-15,-33],[-1,-49],[-36,-24],[-20,5],[-5,-13],[-17,8],[-28,-9],[-46,30]],[[6690,6900],[25,52],[-2,37],[-21,10],[-3,36],[-9,46],[12,32],[-12,8],[8,42],[11,72]],[[6699,7235],[28,-22],[21,8],[6,26],[22,8],[16,18],[5,46],[24,11],[4,21],[13,-16],[9,-2]],[[5663,4553],[3,-18],[-3,-28],[5,-27],[-4,-22],[2,-19],[-58,0],[-1,-183],[19,-47],[18,-36]],[[5644,4173],[-51,-24],[-67,9],[-20,27],[-112,-2],[-5,-4],[-16,26],[-18,1],[-17,-9],[-13,-11]],[[5341,4831],[12,7],[8,-1],[10,7],[81,0],[7,-43],[8,-35],[7,-19],[10,-30],[19,5],[9,8],[15,-8],[4,14],[7,34],[18,2],[1,10],[14,0],[-2,-20],[33,0],[1,-36],[6,-22],[-4,-35],[2,-35],[9,-22],[-2,-68],[7,5],[12,-1],[18,8],[12,-3]],[[5330,4892],[11,25],[9,9],[10,-19]],[[5360,4907],[-10,-12],[-5,-15],[-1,-25],[-7,-6]],[[5583,7534],[-1,-15],[-9,-9],[-1,-18],[-13,-28]],[[5537,7593],[-2,19],[12,28],[2,-11],[7,5]],[[5556,7634],[6,-15],[7,-6],[2,-21]],[[5571,7592],[-4,-19],[4,-25],[12,-14]],[[6556,6682],[6,-19]],[[6565,6617],[-14,0],[-2,-38],[5,-8],[-13,-11],[0,-23],[-8,-24],[-1,-23]],[[6532,6490],[-5,-13],[-84,29],[-10,59],[-1,13]],[[3139,2021],[-17,1],[-29,0],[0,129]],[[3258,3901],[51,-94],[23,-9],[34,-42],[28,-23],[4,-25],[-27,-88],[28,-16],[31,-8],[22,9],[25,44],[5,51]],[[3482,3700],[14,11],[13,-33],[0,-46],[-23,-32],[-19,-24],[-31,-55],[-38,-79]],[[3398,3442],[-6,-46],[-8,-59],[0,-58],[-6,-12],[-2,-38]],[[3094,2170],[-25,9],[-67,8],[-12,34],[1,43],[-19,-4],[-10,21],[-2,61],[21,25],[9,37],[-3,29],[14,49],[11,76],[-3,34],[12,11],[-3,22],[-13,11],[9,25],[-12,21],[-7,67],[11,12],[-4,70],[6,59],[7,51],[17,21],[-8,56],[0,53],[21,38],[-1,48],[16,56],[0,53],[-7,10],[-13,100],[17,59],[-3,56],[10,52],[18,54],[20,36],[-8,23],[6,18],[-1,96],[30,29],[9,59],[-3,15]],[[3135,3873],[23,52],[37,-14],[16,-42],[11,47],[31,-3],[5,-12]],[[6291,7414],[-10,-1]],[[6281,7413],[-12,33],[0,9],[-12,0],[-8,15],[-6,-1]],[[6243,7469],[-11,17],[-20,14],[2,28],[-4,20]],[[6210,7548],[38,9]],[[6248,7557],[6,-15],[10,-10],[-5,-14],[15,-20],[-8,-18],[12,-16],[12,-10],[1,-40]],[[3371,1488],[-12,-13],[-21,9],[-22,-5],[-20,-14],[-20,-14],[-13,-17],[-4,-23],[2,-21],[13,-19],[-19,-14],[-27,-5],[-15,-19],[-16,-18],[-17,-25],[-5,-21],[10,-24],[15,-18],[22,-13],[22,-18],[11,-23],[6,-21],[8,-23],[13,-19],[8,-22],[4,-53],[8,-21],[3,-23],[8,-22],[-3,-31],[-16,-23],[-16,-20],[-37,-7],[-13,-21],[-16,-19],[-42,-21],[-37,-9],[-35,-13],[-38,-12],[-22,-24],[-45,-2],[-49,2],[-44,-4],[-46,0],[8,-23],[43,-10],[31,-16],[17,-20],[-31,-18],[-48,5],[-39,-14],[-2,-24],[-1,-23],[33,-19],[6,-21],[35,-22],[59,-9],[50,-15],[39,-18],[51,-19],[69,-9],[68,-15],[47,-17],[52,-19],[27,-28],[14,-21],[34,20],[45,17],[49,18],[57,15],[50,16],[69,1],[68,-8],[56,-14],[18,25],[39,17],[70,1],[55,13],[52,12],[58,8],[61,10],[43,15],[-20,20],[-12,20],[0,22],[-53,-2],[-57,-9],[-55,0],[-8,21],[4,43],[13,12],[40,14],[46,13],[34,17],[34,17],[25,23],[38,10],[37,8],[19,4],[43,3],[41,8],[34,11],[34,13],[31,14],[38,18],[25,19],[26,17],[8,23],[-29,13],[9,24],[19,18],[29,11],[30,14],[29,18],[21,22],[14,27],[20,16],[33,-3],[14,-19],[33,-3],[1,22],[14,22],[30,-5],[7,-22],[33,-3],[36,10],[35,7],[32,-3],[12,-24],[30,19],[28,10],[32,8],[31,8],[28,14],[31,9],[24,12],[17,20],[21,-14],[29,8],[20,-28],[15,-20],[32,11],[13,23],[28,16],[36,-4],[11,-21],[23,21],[30,7],[33,2],[29,-1],[31,-6],[30,-4],[13,-19],[18,-17],[30,10],[33,2],[32,0],[31,2],[27,7],[30,7],[24,16],[26,10],[29,6],[21,16],[15,31],[16,19],[29,-9],[10,-20],[24,-13],[29,4],[20,-20],[20,-15],[29,14],[10,24],[25,11],[28,19],[28,8],[32,11],[22,12],[23,14],[22,12],[26,-6],[25,20],[18,16],[26,-2],[23,14],[5,20],[24,16],[22,11],[28,9],[26,5],[24,-3],[26,-6],[23,-16],[2,-25],[25,-19],[17,-16],[33,-6],[18,-16],[23,-16],[27,-3],[22,11],[24,24],[26,-13],[27,-7],[26,-6],[28,-5],[27,0],[23,-60],[-1,-14],[-3,-26],[-27,-15],[-22,-21],[4,-23],[31,1],[-3,-22],[-15,-22],[-13,-24],[22,-18],[32,-5],[32,10],[15,22],[9,22],[15,18],[18,17],[7,20],[15,28],[17,6],[32,2],[27,7],[29,9],[13,23],[8,21],[19,22],[28,14],[23,11],[15,20],[16,10],[20,9],[28,-6],[25,6],[27,7],[31,-4],[20,16],[14,38],[10,-15],[13,-27],[24,-12],[26,-4],[27,6],[28,-4],[26,-1],[18,5],[23,-3],[21,-12],[25,8],[30,0],[26,7],[29,-7],[18,19],[14,19],[19,16],[35,43],[18,-8],[21,-16],[19,-20],[35,-35],[27,-1],[26,0],[30,6],[30,8],[23,16],[19,17],[31,2],[20,13],[22,-12],[14,-18],[20,-18],[30,2],[19,-14],[34,-15],[34,-6],[29,5],[22,18],[18,18],[25,5],[25,-8],[29,-6],[26,9],[25,0],[25,-6],[26,-5],[25,10],[29,9],[29,2],[31,0],[26,6],[25,4],[8,29],[1,23],[17,-15],[5,-26],[9,-24],[12,-19],[23,-10],[32,3],[36,1],[25,3],[36,0],[27,2],[36,-3],[31,-4],[20,-18],[-6,-22],[18,-17],[30,-13],[31,-15],[36,-10],[37,-9],[29,-9],[31,-1],[18,19],[25,-16],[21,-18],[24,-13],[34,-6],[32,-7],[14,-22],[31,-14],[22,-20],[31,-9],[32,1],[30,-3],[33,1],[33,-5],[31,-8],[29,-13],[29,-12],[19,-17],[-3,-22],[-15,-20],[-12,-26],[-10,-21],[-13,-23],[-36,-9],[-17,-21],[-36,-12],[-12,-23],[-19,-21],[-20,-18],[-12,-24],[-7,-21],[-3,-26],[1,-22],[16,-22],[6,-22],[13,-20],[51,-8],[11,-25],[-50,-9],[-42,-12],[-53,-2],[-23,-33],[-5,-27],[-12,-22],[-15,-21],[37,-19],[14,-24],[24,-21],[34,-20],[39,-18],[41,-18],[64,-18],[14,-28],[80,-12],[6,-5],[20,-17],[77,15],[64,-18],[48,-14],[-9998,-1],[25,34],[50,-18],[3,2],[29,18],[4,0],[3,-1],[41,-24],[35,24],[6,3],[82,11],[26,-14],[13,-7],[42,-19],[79,-15],[62,-18],[108,-13],[80,16],[118,-12],[66,-18],[74,17],[77,16],[6,27],[-109,2],[-90,14],[-23,23],[-75,12],[5,26],[10,24],[11,21],[-6,24],[-46,16],[-21,20],[-43,18],[67,-4],[64,10],[41,-20],[49,17],[46,22],[22,19],[-10,24],[-35,15],[-41,17],[-57,4],[-50,8],[-54,5],[-18,22],[-36,18],[-22,20],[-9,65],[14,-5],[25,-18],[46,5],[44,8],[23,-25],[44,6],[37,13],[35,15],[31,20],[42,5],[-1,22],[-10,21],[8,20],[36,10],[16,-19],[43,12],[32,14],[40,1],[37,6],[38,14],[30,12],[33,12],[22,-3],[19,-5],[42,8],[37,-10],[38,1],[36,8],[38,-5],[41,-6],[39,2],[40,-1],[41,-1],[38,2],[29,17],[33,9],[35,-12],[33,10],[30,20],[18,-18],[10,-20],[18,-19],[29,17],[33,-22],[37,-7],[33,-15],[39,3],[35,10],[42,-2],[37,-8],[39,-10],[14,25],[-18,19],[-13,20],[-36,5],[-16,21],[-6,22],[-10,42],[21,-7],[37,-4],[36,4],[32,-9],[29,-17],[12,-21],[37,-3],[36,8],[38,11],[35,7],[28,-14],[37,5],[24,44],[22,-26],[32,-10],[35,5],[23,-22],[36,-2],[34,-7],[33,-13],[22,22],[11,20],[28,-22],[38,5],[28,-12],[19,-19],[37,5],[29,13],[28,14],[34,8],[39,7],[35,8],[28,12],[16,18],[6,25],[-3,24],[-9,22],[-9,23],[-9,23],[-7,20],[-2,22],[3,23],[13,21],[11,24],[4,23],[-5,25],[-4,22],[14,26],[15,17],[18,21],[19,18],[23,17],[10,25],[16,16],[17,15],[27,3],[17,18],[20,11],[23,7],[20,15],[16,18],[21,7],[17,-15],[-11,-19],[-28,-17]],[[6914,2382],[18,-18],[26,-7],[1,-11],[-8,-26],[-43,-4],[0,30],[4,24],[2,12]],[[5449,7880],[-5,-10],[-25,-1],[-14,-13],[-23,4]],[[5382,7860],[-39,15],[-6,20],[-28,-10],[-3,-11],[-17,8]],[[5289,7882],[-14,2],[-13,10],[5,14],[-2,11]],[[5265,7919],[9,3],[14,-16],[4,15],[24,-2],[20,10],[14,-2],[8,-12],[3,10],[-4,38],[10,7],[10,26]],[[5377,7996],[20,-18],[16,23],[10,5],[21,-18],[13,3],[13,-11]],[[5470,7980],[-2,-7],[3,-20]],[[5471,7953],[-2,-23],[-16,-1],[5,-12],[-9,-37]],[[6281,7413],[-19,7],[-14,27],[-5,22]],[[6357,7389],[-7,-3],[-18,30],[10,28],[-8,17],[-11,-4],[-32,-43]],[[6248,7557],[7,10],[21,-17],[15,-3],[3,6],[-13,31],[7,8]],[[6288,7592],[8,-2],[19,-34],[12,-4],[5,14],[16,23]],[[5805,5018],[17,-4],[9,33],[14,-4]],[[5845,5043],[2,-23],[6,-13],[0,-18],[-7,-13],[-11,-30],[-10,-20],[-11,-3]],[[5814,4923],[-2,69],[-7,26]],[[5170,8107],[-3,-39]],[[5167,8068],[-7,-2],[-3,-32]],[[5157,8034],[-25,26],[-14,-4],[-19,27],[-13,23],[-13,1],[-4,20]],[[5091,8139],[20,-5],[26,12],[18,-25],[15,-14]],[[5024,5815],[10,7],[5,25],[14,5],[6,18]],[[5059,5870],[9,16],[10,1],[21,-34]],[[5099,5853],[-1,-19],[6,-34],[-5,-23],[3,-16],[-14,-35],[-8,-18],[-5,-36],[0,-37],[-1,-93]],[[5051,5536],[-7,39],[1,133],[-5,11],[-1,29],[-10,20],[-9,17],[4,30]],[[4849,5779],[-2,34],[8,24],[-1,19],[22,48],[4,40],[8,14],[13,-8],[12,12],[4,15],[21,25],[5,18],[26,24],[16,8],[7,-11],[17,1]],[[5009,6042],[-2,-28],[4,-27],[16,-37],[0,-28],[32,-13],[0,-39]],[[5024,5815],[-24,1]],[[5000,5816],[-13,5],[-9,-9],[-12,4],[-49,-3],[0,-32],[3,-44]],[[4920,5737],[-19,15],[-13,-2],[-9,-15],[-13,13],[-5,19],[-12,12]],[[7472,6452],[-4,47],[-10,44],[5,34],[-17,16],[6,21],[17,21],[-20,31],[10,39],[22,-25],[13,-3],[3,-40],[26,-8],[26,1],[16,-10],[-13,-49],[-12,-3],[-9,-33],[15,-29],[5,36],[7,1],[15,-92]],[[7573,6451],[-1,-41],[-9,9],[2,-47]],[[5777,7601],[-24,8],[-29,-19]],[[5724,7590],[0,-28],[-25,-6],[-20,20],[-22,-15],[-20,1]],[[5637,7562],[-2,38],[-14,19]],[[5621,7619],[4,8],[-3,7],[5,18],[10,18],[-13,25],[-3,21],[7,13]],[[5628,7729],[8,-24],[11,5],[21,-9],[41,-3],[14,14],[33,14],[20,-21],[16,-6]],[[5533,7688],[-5,-5],[-9,-13],[-4,-32]],[[5515,7638],[-25,22],[-11,24],[-10,12],[-13,22],[-6,18],[-14,27],[6,24],[10,-14],[6,12],[13,2],[24,-10],[19,1],[13,-13]],[[5527,7765],[10,0],[-7,-25],[13,-22],[-4,-27],[-6,-3]],[[5735,8384],[17,10],[30,22]],[[5782,8416],[29,-14],[4,-14],[14,6],[28,-13],[2,-27],[-6,-16],[18,-38],[11,-10],[-2,-10],[19,-11],[8,-15],[-11,-12],[-22,2],[-5,-6],[6,-19],[7,-37]],[[5882,8182],[-24,-3],[-9,-13],[-1,-29],[-11,6],[-25,-3],[-8,13],[-10,-10],[-11,9],[-21,1],[-31,14],[-29,4],[-21,-1],[-15,-16],[-14,-2]],[[5652,8152],[0,26],[-9,26],[17,12],[0,23],[-8,22],[-1,25]],[[5651,8286],[27,0],[30,22],[7,32],[22,19],[-2,25]],[[2529,6097],[-8,0],[2,65],[0,45]],[[2523,6207],[0,9],[3,3],[5,-7],[10,34],[5,1]],[[3135,3873],[-20,-8],[-11,79],[-15,65],[9,56],[-15,24],[-3,41],[-14,40]],[[3066,4170],[18,62],[-12,48],[6,20],[-5,21],[11,29],[0,49],[2,40],[6,20],[-24,92]],[[3068,4551],[20,-5],[15,2],[6,17],[24,23],[15,22],[36,10],[-3,-43],[4,-22],[-3,-39],[31,-52],[31,-9],[11,-22],[18,-11],[12,-17],[17,1],[17,-17],[1,-34],[5,-16],[1,-25],[-9,-1],[11,-67],[53,-3],[-4,-33],[3,-23],[15,-16],[7,-36],[-5,-45],[-8,-25],[3,-33],[-9,-12]],[[3383,4020],[0,18],[-26,29],[-26,1],[-48,-17],[-13,-50],[-1,-31],[-11,-69]],[[3482,3700],[5,33],[4,34],[0,32],[-10,10],[-10,-9],[-11,2],[-3,23],[-3,52],[-5,18],[-19,15],[-11,-11],[-29,11],[2,78],[-9,32]],[[3068,4551],[-16,-10],[-12,7],[1,87],[-22,-33],[-25,1],[-10,31],[-19,3],[6,25],[-15,35],[-12,52],[7,10],[0,25],[17,16],[-3,31],[7,20],[2,27],[32,39],[23,12],[4,8],[25,-3]],[[3058,4934],[12,158],[1,25],[-5,33],[-12,21],[0,42],[16,10],[6,-6],[0,22],[-16,6],[0,36],[54,-2],[9,20],[8,-18],[5,-34],[6,7]],[[3142,5254],[15,-30],[21,3],[6,18],[20,13],[12,10],[3,24],[20,17],[-2,12],[-23,5],[-4,36],[1,39],[-12,15],[5,5],[21,-8],[22,-14],[8,14],[20,9],[31,21],[10,22],[-4,16]],[[3312,5481],[15,3],[6,-13],[-4,-26],[10,-8],[6,-27],[-7,-20],[-5,-49],[7,-29],[2,-27],[17,-27],[14,-3],[3,11],[9,3],[12,10],[9,15],[16,-5],[7,2]],[[3429,5291],[15,-4],[2,11],[-4,12],[2,17],[12,-6],[13,6],[16,-12]],[[3485,5315],[12,-12],[8,16],[7,-3],[3,-16],[14,4],[10,22],[9,43],[16,52]],[[3517,3237],[-8,33],[12,27],[-16,40],[-22,31],[-28,37],[-11,-1],[-28,44],[-18,-6]],[[8206,5496],[-2,-29],[-1,-36],[-13,1],[-6,-19],[-13,30]],[[7466,6754],[18,43],[15,14],[20,-13],[15,-1],[12,-16]],[[7546,6781],[11,-18],[-2,-36],[-22,-1],[-24,4],[-17,-9],[-26,21],[0,12]],[[5816,3910],[-39,-43],[-25,-43],[-9,-38],[-8,-22],[-15,-4],[-5,-28],[-3,-18],[-18,-13],[-23,3],[-13,16],[-12,7],[-13,-13],[-7,-28],[-13,-17],[-14,-26],[-20,-6],[-6,20],[3,35],[-17,55],[-7,9]],[[5552,3756],[0,168],[27,2],[1,205],[20,2],[43,20],[11,-24],[18,23],[8,0],[16,13]],[[5696,4165],[5,-4]],[[5701,4161],[10,-46],[6,-11],[9,-33],[31,-63],[12,-6],[0,-21],[8,-36],[22,-9],[17,-26]],[[5634,5824],[3,-25],[16,-36],[0,-24],[-4,-24],[2,-17],[9,-17]],[[5660,5681],[21,-25]],[[5681,5656],[16,-23],[0,-19],[19,-30],[11,-25],[7,-35],[21,-22],[4,-19]],[[5759,5483],[-9,-6],[-18,2],[-21,6],[-10,-5],[-4,-14],[-9,-2],[-11,12],[-31,-29],[-13,6],[-3,-4],[-9,-35],[-20,11],[-21,6],[-17,21],[-23,20],[-15,-19],[-11,-29],[-2,-40]],[[5512,5384],[-18,3],[-19,10],[-17,-31],[-14,-53]],[[5444,5313],[-3,16],[-1,26],[-13,19],[-10,30],[-3,20],[-13,30],[2,18],[-2,24],[2,45],[6,10],[14,58]],[[5423,5609],[23,5],[5,14],[5,-1],[7,-13],[35,22],[12,23],[14,20],[-2,20],[7,6],[27,-4],[26,27],[20,62],[14,24],[18,10]],[[1300,8301],[13,-7],[27,4],[-9,-65],[25,-46],[-12,0],[-16,26],[-11,27],[-14,18],[-5,25],[2,18]],[[3134,7781],[-18,33],[0,78],[-12,17],[-19,-10],[-9,15],[-21,-43],[-9,-45],[-10,-26],[-11,-9],[-9,-3],[-3,-14],[-51,0],[-42,-1],[-13,-10],[-29,-42],[-4,-4],[-9,-23],[-25,0],[-27,0],[-13,-9],[4,-11],[3,-18],[-1,-6],[-36,-28],[-28,-10],[-33,-30],[-7,0],[-9,9],[-3,8],[0,6],[6,20],[14,32],[8,34],[-6,50],[-6,52],[-29,27],[4,10],[-4,8],[-8,0],[-6,9],[-1,13],[-5,-6],[-8,2],[2,6],[-7,5],[-2,16],[-22,18],[-22,19],[-28,22],[-26,21],[-25,-16],[-9,0],[-34,14],[-22,-7],[-27,18],[-29,9],[-19,4],[-9,9],[-5,32],[-9,0],[0,-22],[-58,0],[-95,0],[-94,0],[-83,0],[-84,0],[-82,0],[-84,0],[-28,0],[-82,0],[-79,0]],[[1373,8338],[16,27],[-1,37],[-47,36],[-29,66],[-17,41],[-25,26],[-19,24],[-15,30],[-28,-19],[-27,-32],[-24,38],[-20,25],[-27,16],[-27,2],[0,327],[0,214]],[[1440,9241],[19,-7],[47,-51]],[[2457,9224],[-25,-29],[52,-11]],[[1972,9143],[-71,-9],[-49,-6]],[[1501,9320],[12,25],[19,42]],[[1653,9318],[0,-26],[-73,-27]],[[5289,7882],[-2,-23],[-12,-10],[-21,7],[-6,-23],[-13,-2],[-5,9],[-16,-19],[-13,-3],[-12,12]],[[5189,7830],[-9,26],[-14,-9],[1,26],[20,32],[-1,15],[13,-6],[7,10]],[[5206,7924],[24,0],[6,12],[29,-17]],[[3139,2021],[-9,-23],[-24,-18]],[[3106,1980],[-13,2],[-17,4]],[[3076,1986],[-20,17],[-29,9],[-35,32],[-28,31],[-39,64],[23,-12],[39,-38],[37,-21],[14,27],[9,39],[26,24],[20,-7]],[[3044,4125],[15,15],[7,30]],[[8628,7623],[-18,34],[-11,-32],[-43,-25],[4,-30],[-24,2],[-13,18],[-19,-41],[-31,-31],[-23,-37]],[[8000,6423],[-28,15],[-13,23],[4,34],[-25,10],[-13,22],[-24,-31],[-27,-7],[-22,1],[-15,-14]],[[7837,6476],[-15,-9],[5,-66],[-15,2],[-3,13]],[[7809,6416],[-1,24],[-20,-17],[-12,11],[-21,22],[9,47],[-18,12],[-7,53],[-29,-10],[3,68],[27,48],[1,48],[-1,44],[-12,14],[-9,34],[-17,-5]],[[7702,6809],[-30,9],[10,24],[-13,36],[-20,-24],[-23,14],[-32,-37],[-26,-43],[-22,-7]],[[7466,6754],[-3,45],[-16,-12]],[[7447,6787],[-33,6],[-31,13],[-23,25],[-21,12],[-10,27],[-15,9],[-28,37],[-23,18],[-11,-14]],[[7252,6920],[-39,40],[-27,37],[-8,63],[20,-8],[1,30],[-11,29],[3,47],[-30,68]],[[7161,7226],[-46,23],[-8,44],[-20,27]],[[7082,7337],[-5,33],[1,22],[-16,13],[-10,-6],[-7,54]],[[7045,7453],[8,13],[-4,13],[27,27],[19,12],[30,-8],[10,37],[36,7],[10,22],[43,32],[4,13]],[[7228,7621],[-2,32],[19,15],[-25,100],[55,23],[14,13],[20,103],[55,-19],[16,26],[1,58],[23,6],[21,38]],[[7425,8016],[11,5]],[[7436,8021],[8,-41],[23,-30],[40,-22],[19,-46],[-11,-67],[10,-25],[33,-10],[37,-8],[34,-36],[17,-6],[13,-54],[16,-34],[31,2],[57,-13],[37,8],[27,-9],[41,-35],[34,0],[12,-18],[33,31],[45,20],[41,2],[33,21],[20,30],[19,20],[-4,19],[-9,22],[14,37],[16,-5],[28,-12],[28,31],[42,22],[21,38],[19,17],[41,7],[22,-6],[3,20],[-25,40],[-23,19],[-21,-21],[-28,9],[-15,-8],[-7,24],[19,57],[14,44]],[[8240,8055],[33,-22],[39,36],[0,26],[25,61],[16,18],[-1,32],[-15,14],[23,28],[34,11],[37,1],[42,-17],[24,-21],[17,-58],[11,-25],[9,-35],[11,-57],[48,-18],[33,-41],[11,-54],[42,0],[24,23],[46,16],[-14,-51],[-11,-21],[-10,-63],[-18,-57],[-34,11],[-24,-21],[8,-49],[-4,-68],[-15,-2],[1,-29]],[[4785,5433],[2,48],[3,7],[-1,23],[-12,24],[-9,4],[-8,15],[6,26],[-3,28],[2,17]],[[4765,5625],[4,0],[2,25],[-3,11],[3,8],[10,7],[-6,46],[-7,24],[2,19],[6,5]],[[4776,5770],[4,5],[7,-9],[22,0],[5,17],[5,-2],[8,7],[4,-25],[6,8],[12,8]],[[4920,5737],[8,-82],[-12,-48],[-7,-65],[12,-50],[-1,-22]],[[5312,5312],[-45,1]],[[5235,5457],[7,41],[13,55],[8,1],[17,33],[11,1],[15,-23],[19,19],[3,24],[6,23],[4,29],[15,24],[6,40],[6,13],[4,30],[7,37],[23,44],[2,19],[3,11],[-11,23]],[[5393,5901],[1,18],[8,3]],[[5402,5922],[11,-36],[2,-39],[-1,-38],[15,-52],[-16,0],[-8,-4],[-12,6],[-6,-27],[16,-34],[12,-10],[4,-23],[9,-40],[-5,-16]],[[5444,5313],[-2,-32],[-22,14],[-23,15],[-35,3]],[[5362,5313],[-3,3],[-17,-8],[-17,8],[-13,-4]],[[5821,5105],[-8,-16],[-1,-35],[-4,-4],[-3,-32]],[[5814,4923],[5,-53],[-3,-30],[6,-33],[16,-33],[15,-72]],[[5853,4702],[-11,6],[-37,-10],[-8,-7],[-8,-37],[6,-25],[-5,-68],[-3,-58],[8,-10],[19,-23],[8,11],[2,-62],[-21,0],[-12,32],[-10,24],[-21,8],[-7,31],[-16,-19],[-23,8],[-9,26],[-18,6],[-13,-2],[-1,18],[-10,2]],[[5360,4907],[7,-6],[10,22],[15,-1],[2,-16],[10,-10],[16,36],[17,28],[7,18],[-1,48],[12,56],[12,29],[19,28],[3,19],[1,21],[4,20],[-1,32],[3,51],[6,36],[8,31],[2,35]],[[5759,5483],[17,-47],[13,-7],[7,10],[13,-4],[15,12],[7,-25],[24,-38]],[[5855,5384],[-1,-67],[11,-8],[-9,-21],[-11,-15],[-10,-30],[-6,-27],[-2,-46],[-6,-22],[0,-43]],[[5307,4953],[21,32],[-10,38],[9,14],[19,7],[2,26],[15,-28],[25,-2],[8,27],[4,38],[-3,45],[-14,34],[13,67],[-7,11],[-21,-4],[-8,29],[2,26]],[[2836,5598],[3,28],[9,-4],[6,17],[-7,34],[4,8]],[[3018,5860],[-18,-10],[-7,-28],[-11,-17],[-8,-21],[-3,-41],[-8,-34],[14,-4],[4,-26],[6,-13],[2,-23],[-3,-22],[1,-12],[7,-4],[6,-20],[36,5],[16,-7],[20,-50],[11,6],[20,-3],[16,7],[10,-10],[-5,-31],[-7,-19],[-2,-42],[6,-38],[8,-17],[1,-13],[-14,-29],[10,-12],[7,-20],[9,-58]],[[3058,4934],[-14,31],[-8,1],[17,59],[-21,27],[-17,-5],[-10,10],[-15,-15],[-21,7],[-16,60],[-13,15],[-9,27],[-18,28],[-7,-6]],[[2906,5173],[-12,14],[-14,19],[-8,-9],[-23,8],[-7,25],[-5,-1],[-28,32]],[[2618,5820],[5,8],[18,-15],[6,7],[9,-5],[5,-12],[8,-3],[6,12]],[[2706,5733],[-10,-5],[0,-24],[5,-8],[-4,-7],[1,-10],[-2,-12],[-1,-11]],[[2714,6517],[24,-4],[22,-1],[26,-19],[11,-21],[26,6],[10,-13],[23,-36],[18,-26],[9,1],[16,-12],[-2,-16],[21,-2],[21,-24],[-4,-13],[-18,-8],[-19,-3],[-19,5],[-40,-6],[19,32],[-11,15],[-18,4],[-10,17],[-6,33],[-16,-3],[-26,16],[-8,12],[-37,9],[-9,11],[10,14],[-27,3],[-20,-30],[-12,0],[-4,-14],[-13,-7],[-12,6],[14,18],[7,20],[12,13],[14,11],[21,6],[7,6]],[[5943,7201],[-3,2],[-6,-5],[-4,2],[-1,-3],[-1,6],[-2,4],[-5,0],[-8,-5],[-5,3]],[[5377,7996],[-16,25],[-14,14],[-3,24],[-5,17],[20,13],[10,14],[20,11],[7,11],[8,-6],[12,6]],[[5416,8125],[13,-19],[21,-5],[-2,-16],[15,-11],[5,14],[19,-6],[2,-18],[21,-4],[13,-28]],[[5523,8032],[-9,0],[-4,-10],[-6,-3],[-2,-13],[-5,-3],[-1,-5],[-10,-6],[-12,1],[-4,-13]],[[5391,8277],[7,-29],[-8,-15],[10,-21],[7,-31],[-2,-19],[11,-37]],[[5206,7924],[4,41],[14,40],[-40,10],[-13,15]],[[5171,8030],[1,25],[-5,13]],[[5170,8107],[-5,61],[17,0],[7,21],[7,53],[-5,20]],[[5236,8347],[21,-8],[18,9]],[[6197,5842],[-10,-31]],[[6187,5811],[-6,10],[-7,-4],[-15,1],[-1,18],[-2,16],[10,27],[9,25]],[[6175,5904],[12,-5],[9,14]],[[3007,6221],[1,16],[-7,17],[6,10],[3,22],[-3,31]],[[5118,6285],[-31,-6],[-1,37],[-12,9],[-18,17],[-6,27],[-94,125],[-94,126]],[[4862,6620],[-104,139]],[[4758,6759],[0,12],[0,4]],[[4758,6775],[0,68],[45,42],[28,9],[22,15],[11,29],[32,23],[2,43],[16,5],[12,21],[37,10],[5,22],[-8,12],[-9,61],[-2,35],[-10,37]],[[5233,7309],[-6,-29],[5,-55],[-7,-47],[-17,-33],[2,-43],[23,-34],[0,-14],[18,-23],[11,-104]],[[5262,6927],[9,-51],[2,-26],[-5,-47],[2,-27],[-4,-31],[3,-36],[-11,-24],[16,-42],[1,-25],[10,-32],[13,10],[22,-26],[12,-36]],[[5332,6534],[-95,-110],[-80,-113],[-39,-26]],[[2906,5173],[3,-44],[-8,-37],[-31,-60],[-33,-23],[-17,-50],[-5,-39],[-16,-24],[-12,29],[-11,7],[-11,-5],[-1,21],[8,14],[-3,24]],[[6023,6449],[-110,0],[-108,0],[-112,0]],[[5693,6449],[0,212],[0,205],[-8,46],[7,36],[-4,24],[10,28]],[[5951,6980],[18,-99]],[[6011,6012],[-3,23],[12,85],[3,38],[8,18],[21,9],[14,33]],[[6175,5904],[-9,19],[-12,34],[-12,18],[-7,20],[-24,23],[-19,1],[-7,12],[-16,-14],[-17,26],[-9,-43],[-32,12]],[[4946,7682],[11,-22],[51,-26],[10,12],[32,-26],[32,8]],[[4792,7318],[-2,19],[10,22],[4,15],[-10,18],[8,37],[-11,35],[12,5],[1,27],[4,8],[1,45],[13,16],[-8,29],[-16,2],[-5,-8],[-17,0],[-7,29],[-11,-9],[-10,-14]],[[5776,8607],[4,-10],[-19,-33],[8,-54],[-12,-18]],[[5757,8492],[-23,0],[-24,21],[-12,7],[-24,-10]],[[6187,5811],[-6,-20],[10,-32],[11,-28],[10,-20],[91,-69],[23,1]],[[6326,5643],[-78,-173],[-36,-3],[-25,-40],[-18,-1],[-7,-18]],[[6162,5408],[-19,0],[-12,19],[-25,-24],[-8,-24],[-19,5],[-6,6],[-6,-1],[-9,0],[-35,49],[-20,0],[-9,19],[0,32],[-15,10]],[[5979,5499],[-16,63],[-13,13],[-5,23],[-14,28],[-17,4],[10,33],[15,1],[4,18]],[[5943,5682],[-1,52]],[[5942,5734],[9,60],[13,16],[2,24],[12,44],[17,28],[11,57],[5,49]],[[5663,8983],[-9,22],[-1,89],[-44,39],[-37,28]],[[5572,9161],[17,16],[31,-31],[36,3],[30,-14],[27,25],[13,43],[43,19],[36,-23],[-12,-40]],[[5793,9159],[-4,-40],[43,-39],[-26,-43],[32,-66],[-18,-49],[25,-43],[-12,-37],[41,-40],[-10,-29],[-26,-34],[-59,-73]],[[3299,2196],[33,35],[24,-15],[17,23],[22,-25],[-8,-21],[-38,-17],[-12,20],[-24,-26],[-14,26]],[[3485,5315],[7,25],[2,26]],[[3494,5366],[5,25],[-11,34]],[[3488,5425],[-2,39],[14,49]],[[5157,8034],[6,-5],[8,1]],[[5189,7830],[-1,-16],[8,-22],[-10,-17],[8,-45],[15,-7],[-3,-25]],[[5263,5240],[9,3],[40,0],[0,69]],[[4827,8284],[-21,12],[-17,-1],[5,31],[-5,31]],[[4968,8327],[19,-9],[17,-65],[8,-23],[34,-11],[-4,-37],[-14,-17],[11,-30],[-25,-30],[-37,1],[-47,-16],[-13,11],[-18,-27],[-26,7],[-20,-22],[-14,11],[40,61],[25,12],[-43,10],[-8,23],[29,18],[-15,31],[5,37],[41,-5],[4,34]],[[4917,8291],[-18,35],[-1,1]],[[4898,8327],[-34,10],[-6,16],[10,25],[-9,16],[-15,-27],[-2,55],[-14,30],[10,59],[22,47],[22,-5],[34,5],[-30,-62],[28,8],[31,0],[-8,-47],[-25,-52],[29,-4]],[[4941,8401],[2,-6],[25,-68]],[[6109,7683],[3,7],[24,-10],[41,-9],[37,-28],[5,-11],[17,9],[26,-12],[8,-23],[18,-14]],[[6210,7548],[-27,28],[-30,-2]],[[5000,5816],[-2,-17],[11,-30],[0,-42],[3,-45],[7,-21],[-6,-52],[2,-29],[7,-36],[6,-21]],[[4715,5666],[-8,-3],[1,21],[-5,15],[1,17],[-6,24],[-8,20],[-22,1],[-6,-11],[-8,-2],[-5,-12],[-3,-16],[-15,-25]],[[4579,5818],[12,28],[9,-1],[7,9],[6,0],[4,8],[-2,19],[3,6],[0,20]],[[4618,5907],[14,-1],[20,-14],[6,1],[2,7],[15,-5],[4,3]],[[4679,5898],[2,-21],[4,0],[7,8],[5,-2],[8,-14],[12,-5],[7,12],[9,8],[7,8],[5,-1],[7,-13],[3,-16],[11,-24],[-5,-15],[-1,-19],[5,6],[4,-7],[-2,-17],[9,-16]],[[4765,5625],[-8,1],[-6,-23],[-8,0],[-5,12],[2,24],[-12,35],[-7,-7],[-6,-1]],[[4535,5965],[30,1],[6,14],[9,1],[11,-14],[9,0],[9,9],[5,-16],[-12,-13],[-12,1],[-12,12],[-10,-13],[-5,-1],[-6,-8],[-26,1]],[[4536,5895],[14,10],[10,-2],[7,6],[51,-2]],[[5583,7534],[18,5],[11,12],[15,-1],[4,10],[6,2]],[[5724,7590],[14,-15],[-9,-36],[-6,-6]],[[3700,9940],[93,34],[98,-2],[35,21],[98,6],[222,-8],[174,-45],[-51,-23],[-107,-2],[-149,-6],[14,-10],[98,6],[84,-19],[54,17],[23,-21],[-31,-33],[71,21],[135,23],[83,-11],[16,-25],[-113,-41],[-16,-13],[-89,-10],[65,-3],[-33,-42],[-22,-37],[1,-64],[33,-38],[-43,-2],[-46,-19],[51,-30],[7,-49],[-30,-5],[36,-50],[-62,-4],[32,-23],[-9,-21],[-39,-9],[-39,0],[35,-39],[1,-25],[-55,23],[-15,-15],[38,-14],[36,-36],[11,-46],[-50,-11],[-21,22],[-34,33],[9,-39],[-32,-30],[73,-3],[38,-3],[-74,-50],[-76,-45],[-81,-20],[-31,0],[-28,-23],[-39,-60],[-60,-41],[-19,-2],[-37,-14],[-40,-14],[-24,-35],[0,-41],[-14,-38],[-45,-46],[11,-45],[-13,-47],[-14,-56],[-39,-4],[-41,47],[-56,0],[-26,32],[-19,56],[-48,72],[-14,37],[-4,52],[-38,53],[10,43],[-19,20],[27,67],[42,22],[11,24],[6,45],[-32,-21],[-15,-8],[-25,-8],[-34,18],[-2,39],[11,31],[26,1],[57,-15],[-48,36],[-25,20],[-28,-8],[-23,14],[31,54],[-17,21],[-22,40],[-33,61],[-36,22],[1,24],[-75,34],[-59,4],[-74,-2],[-68,-4],[-32,18],[-48,36],[73,18],[56,4],[-119,14],[-63,24],[4,22],[105,28],[102,28],[11,21],[-75,20],[24,23],[96,41],[40,6],[-11,26],[66,15],[85,9],[85,0],[31,-18],[73,32],[67,-21],[39,-5],[57,-19],[-66,31],[4,25]],[[2437,6019],[1,17],[3,13],[-4,11],[14,47],[35,0],[1,20],[-4,3],[-4,13],[-10,13],[-10,19],[12,1],[0,32],[26,0],[26,-1]],[[2549,6088],[-13,-22],[-13,-16],[-2,-12],[2,-11],[-6,-14]],[[2517,6013],[-6,-4],[1,-7],[-5,-6],[-10,-15],[0,-8]],[[3412,5526],[-5,-52],[-17,-15],[2,-13],[-5,-30],[12,-42],[9,0],[4,-33],[17,-50]],[[3312,5481],[-19,44],[8,16],[-1,27],[17,9],[7,11],[-9,21],[2,21],[22,34]],[[2561,5953],[1,23],[-3,6],[-6,4],[-12,-7],[-1,8],[-9,9],[-6,12],[-8,5]],[[2690,6045],[-10,2],[-4,-8],[-9,-8],[-7,0],[-7,-7],[-5,3],[-5,8],[-3,-1],[-3,-14],[-3,0],[0,-11],[-10,-16],[-5,-7],[-3,-7],[-8,11],[-6,-15],[-6,0],[-7,-1],[1,-28],[-4,-1],[-4,-13],[-8,-2]],[[5515,7638],[-4,-10]],[[5380,7802],[19,-2],[5,10],[10,-10],[11,-1],[0,16],[9,6],[3,23],[22,16]],[[5459,7860],[9,-7],[21,-25],[23,-11],[10,9]],[[5522,7826],[7,-23],[9,-16],[-11,-22]],[[5471,7953],[14,-15],[10,-6],[23,7],[3,12],[11,1],[13,9],[3,-3],[13,7],[7,13],[9,4],[30,-18],[5,6]],[[5612,7970],[16,-15],[2,-16]],[[5630,7939],[-17,-12],[-13,-39],[-17,-39],[-22,-11]],[[5561,7838],[-18,3],[-21,-15]],[[5459,7860],[-5,19],[-5,1]],[[8470,4670],[3,-11],[0,-18]],[[8915,5032],[1,-187],[0,-188]],[[8045,5298],[5,-39],[19,-33],[17,12],[18,-4],[16,29],[14,5],[26,-16],[23,12],[14,80],[11,20],[9,66],[32,0],[24,-10]],[[7252,6920],[-18,-26],[-11,-54],[27,-22],[27,-28],[36,-32],[38,-8],[16,-29],[21,-6],[34,-13],[23,1],[3,23],[-4,36],[3,25]],[[7702,6809],[2,-21],[-9,-11],[2,-35],[-20,10],[-36,-40],[1,-33],[-15,-48],[-2,-28],[-12,-48],[-22,13],[-1,-59],[-6,-20],[3,-24],[-14,-14]],[[6893,6546],[18,39],[61,-1],[-5,50],[-16,29],[-3,44],[-18,26],[30,61],[33,-5],[29,61],[17,58],[27,58],[0,41],[23,33],[-22,29],[-10,39],[-10,50],[14,25],[42,-14],[31,8],[27,49]],[[6690,6900],[14,-31],[11,-34],[26,-26],[1,-50],[13,-10],[3,-26],[-40,-30],[-11,-67]],[[6348,6905],[-15,31],[-1,30],[-9,0],[5,42],[-14,44],[-34,31],[-20,55],[7,45],[14,20],[-2,33],[-18,18],[-18,68]],[[6243,7322],[-16,46],[6,18],[-9,66],[19,17]],[[6497,7324],[24,11],[20,33],[18,-2],[13,11],[19,-5],[31,-29],[22,-7],[32,-51],[21,-2],[2,-48]],[[6331,6908],[-18,5],[-21,-55]],[[6292,6858],[-51,4],[-79,116],[-41,40],[-33,16]],[[6088,7034],[-12,70]],[[6076,7104],[62,60],[10,70],[-2,42],[15,14],[14,36]],[[6175,7326],[12,9],[32,-8],[10,-14],[14,9]],[[5982,6995],[1,-22],[-14,-92]],[[5975,7087],[9,0],[2,10],[8,1]],[[5994,7098],[0,-23],[-3,-9],[0,-1]],[[5991,7065],[-5,-18]],[[5986,7047],[-10,8],[-6,-38],[7,-7],[-7,-7],[-1,-16],[13,8]],[[5382,7860],[-3,-28],[7,-25]],[[2845,6247],[18,-5],[15,-14],[5,-16],[-20,-1],[-8,-10],[-16,9],[-16,21],[4,14],[11,4],[7,-2]],[[6088,7034],[-6,-9],[-55,-29],[27,-57],[-9,-10],[-4,-19],[-22,-8],[-6,-21],[-12,-18],[-31,9]],[[5982,6995],[4,17],[0,35]],[[5991,7065],[31,-22],[54,61]],[[6554,7561],[-15,-3],[-19,45],[-19,16],[-31,-12],[-13,-19]],[[6363,7854],[-14,9],[2,30],[-17,38],[-21,-1],[-23,39],[16,43],[-8,12],[22,63],[28,-33],[4,42],[57,63],[43,1],[62,-40],[33,-23],[29,24],[44,1],[36,-29],[8,17],[39,-3],[7,27],[-45,40],[26,28],[-5,16],[27,15],[-20,39],[12,20],[104,20],[14,14],[69,21],[25,24],[50,-12],[9,-60],[29,14],[36,-20],[-3,-31],[27,3],[70,55],[-11,-18],[36,-45],[62,-146],[15,30],[38,-33],[40,15],[15,-11],[14,-33],[19,-11],[12,-25],[36,8],[14,-35]],[[7228,7621],[-17,8],[-14,21],[-41,6],[-46,1],[-10,-6],[-40,24],[-16,-12],[-4,-34],[-46,20],[-18,-8],[-6,-25]],[[6970,7616],[-16,-11],[-37,-40],[-12,-41],[-10,-1],[-8,28],[-35,2],[-6,47],[-13,0],[2,58],[-33,42],[-48,-5],[-33,-8],[-26,52],[-23,22],[-43,41],[-5,5],[-72,-34],[2,-212]],[[6088,4913],[-40,57],[-2,34],[-101,117],[-4,6]],[[5941,5127],[-1,61],[8,24],[14,38],[10,42],[-12,66],[-3,29],[-14,40]],[[5943,5427],[18,34],[18,38]],[[6162,5408],[-25,-66],[1,-209],[16,-48]],[[7045,7453],[-52,-9],[-34,18],[-31,-4],[3,33],[30,-9],[10,17]],[[6971,7499],[22,-5],[35,41],[-33,30],[-20,-14],[-20,22],[23,37],[-8,6]],[[7848,5884],[-6,69],[18,48],[35,11],[26,-8]],[[7921,6004],[23,-23],[13,40],[25,-21]],[[7982,6000],[6,-39],[-3,-69],[-47,-44],[12,-35],[-29,-4],[-24,-23]],[[8504,7356],[1,5],[13,-2],[10,26],[20,3],[12,3],[4,14]],[[5556,7634],[6,13]],[[5562,7647],[6,4],[4,20],[5,3],[4,-8],[5,-4],[4,-9],[4,-3],[6,-11],[4,1],[-3,-14],[-4,-7],[1,-4]],[[5598,7615],[-6,-3],[-16,-9],[-2,-11],[-3,0]],[[6344,6826],[-20,-1],[-7,27],[-25,6]],[[7780,6358],[6,21],[23,37]],[[7837,6476],[16,-46],[12,-52],[35,-1],[10,-50],[-17,-15],[-8,-21],[33,-34],[23,-68],[18,-51],[21,-40],[7,-41],[-5,-57]],[[7921,6004],[9,26],[2,49],[-23,50],[-1,57],[-22,46],[-21,4],[-5,-20],[-16,-1],[-9,10],[-29,-35],[-1,52],[7,61],[-19,2],[-1,35],[-12,18]],[[5999,7177],[12,-3],[5,-23],[-15,-21],[-7,-32]],[[4681,5573],[7,18],[1,17],[13,31],[13,27]],[[5262,6927],[14,14],[2,24],[-3,24],[19,22],[9,18],[14,17],[1,44]],[[5693,6449],[0,-115],[-32,0],[0,-25]],[[5661,6309],[-111,111],[-110,110],[-29,-32]],[[5411,6498],[-19,-21],[-16,32],[-44,25]],[[7271,5615],[-5,-60],[-11,-16],[-24,-13],[-14,45],[-4,83],[12,94],[19,-32],[13,-41],[14,-60]],[[5804,3515],[10,-18],[-9,-28],[-5,-19],[-15,-9],[-5,-18],[-10,-6],[-21,45],[15,36],[15,23],[13,11],[12,-17]],[[5584,8408],[32,18],[46,-4],[28,6],[3,-12],[15,-4],[27,-28]],[[5651,8286],[-6,18],[-15,6]],[[5630,8310],[-2,15],[3,16],[-12,9],[-29,10]],[[5757,8492],[13,-14],[3,-28],[9,-34]],[[4758,6775],[-4,0],[1,-31],[-17,-2],[-9,-13],[-13,0],[-10,7],[-23,-6],[-9,-45],[-9,-4],[-13,-73],[-39,-62],[-9,-79],[-11,-26],[-4,-21],[-62,-5],[-1,1]],[[4526,6416],[2,26],[10,16],[9,30],[-1,19],[9,41],[16,37],[9,9],[7,34],[1,30],[10,36],[18,21],[18,59]],[[4634,6774],[1,0],[14,22]],[[4649,6796],[25,7],[22,39],[14,16],[23,48],[-7,71],[11,50],[4,30],[18,39],[27,26],[21,24],[19,60],[8,35],[21,0],[16,-25],[27,4],[29,-12],[12,-1]],[[5783,7801],[-5,27],[3,24],[-1,25],[-16,35],[-9,24],[-8,17],[-9,6]],[[5738,7959],[7,8],[18,6],[21,-18],[11,-2],[13,-16],[-2,-19],[10,-10],[4,-24],[10,-14],[-2,-9],[5,-6],[-7,-4],[-17,2],[-3,8],[-5,-5],[2,-10],[-8,-19],[-5,-19],[-7,-7]],[[6375,4464],[7,-25],[7,-38],[5,-69],[7,-27],[-3,-27],[-5,-17],[-9,33],[-5,-17],[5,-42],[-3,-25],[-7,-13],[-2,-49],[-11,-67],[-14,-79],[-17,-109],[-10,-80],[-13,-67],[-23,-14],[-24,-24],[-16,14],[-22,21],[-7,30],[-2,51],[-10,46],[-3,42],[5,41],[13,10],[0,19],[13,44],[3,37],[-6,27],[-6,36],[-2,53],[10,33],[4,36],[13,2],[16,12],[10,11],[12,0],[16,33],[23,36],[8,29],[-3,24],[11,-7],[16,40],[0,35],[9,26],[10,-25]],[[1746,7055],[31,5],[36,6],[-3,-11],[42,-28],[63,-41],[56,1],[22,0],[0,24],[48,-1],[10,-20],[14,-18],[17,-25],[9,-31],[7,-31],[14,-18],[23,-17],[18,46],[22,1],[20,-23],[14,-40],[9,-33],[17,-33],[6,-41],[8,-27],[21,-17],[20,-13],[11,2]],[[2301,6672],[-11,-51],[-5,-41],[-2,-78],[-2,-28],[4,-31],[9,-28],[6,-45],[18,-43],[6,-33],[11,-28],[30,-15],[11,-24],[25,16],[21,6],[21,10],[17,10],[18,23],[6,34],[3,48],[5,17],[18,15],[30,14],[24,-2],[17,5],[7,-13],[-1,-27],[-15,-35],[-7,-35],[5,-10],[-4,-25],[-7,-45],[-7,15],[-6,-1]],[[5598,7615],[10,3],[13,1]],[[5118,6285],[0,-133],[-16,-38],[-2,-36],[-25,-9],[-38,-5],[-10,-20],[-18,-2]],[[4679,5898],[1,18],[-2,23],[-10,16],[-6,33],[-1,36]],[[4661,6024],[9,10],[5,34],[9,1],[19,-16],[16,12],[11,-4],[4,13],[111,1],[6,40],[-4,7],[-14,249],[-13,248],[42,1]],[[7780,6358],[-16,-14],[-16,-25],[-20,-2],[-13,-62],[-11,-11],[13,-50],[18,-42],[11,-38],[-10,-51],[-10,-10],[7,-29],[18,-46],[4,-32],[-1,-27],[11,-52],[-15,-54],[-14,-59]],[[5533,7688],[7,-10],[4,-8],[9,-6],[11,-12],[-2,-5]],[[7436,8021],[30,10],[53,49],[42,27],[24,-17],[29,-1],[19,-27],[27,-2],[40,-15],[27,40],[-11,34],[29,60],[31,-24],[25,-7],[33,-14],[5,-43],[40,-25],[26,11],[35,7],[28,-7],[27,-28],[17,-29],[26,0],[35,-9],[25,14],[37,10],[40,40],[17,-6],[15,-19],[33,5]],[[5911,3642],[-21,1]],[[5890,3643],[-3,25],[-4,26]],[[5883,3694],[-2,21],[5,64],[-7,41],[-14,81]],[[5865,3901],[30,65],[7,42],[4,5],[3,34],[-4,17],[1,43],[5,40],[0,73],[-14,18],[-13,4],[-6,14],[-13,13],[-23,-1],[-2,21]],[[5840,4289],[-3,41],[85,47]],[[5922,4377],[16,-27],[7,5],[11,-14],[2,-24],[-6,-26],[2,-41],[18,-36],[9,40],[12,13],[-3,74],[-11,41],[-10,19],[-10,-1],[-8,75],[8,44]],[[5959,4519],[21,4],[33,-16],[7,7],[20,2],[10,17],[16,-1],[31,22],[22,34]],[[4525,6391],[6,19],[109,0],[-5,83],[6,30],[26,5],[0,147],[91,-3],[0,87]],[[4661,6024],[-18,39],[-17,43],[-19,15],[-13,17],[-15,-1],[-14,-12],[-14,5],[-9,-19]],[[5922,4377],[-15,15],[8,54],[9,20],[-5,48],[5,46],[5,16],[-7,49],[-13,25]],[[5909,4650],[27,-10],[6,-16],[9,-27],[8,-78]],[[7779,5554],[5,10],[22,-25],[3,-29],[18,7],[9,23]],[[5644,4173],[23,13],[18,-3],[11,-13],[0,-5]],[[5552,3756],[0,-213],[-25,-29],[-15,-5],[-18,11],[-12,5],[-5,24],[-11,16],[-13,-29]],[[9604,3968],[22,-36],[15,-26],[-11,-14],[-15,16],[-20,26],[-18,30],[-18,41],[-4,19],[12,-1],[15,-19],[13,-20],[9,-16]],[[5411,6498],[7,-89],[11,-15],[0,-18],[12,-20],[-6,-25],[-11,-117],[-1,-75],[-36,-54],[-12,-76],[12,-21],[0,-37],[17,-1],[-2,-28]],[[5393,5901],[-5,-1],[-19,63],[-7,2],[-21,-32],[-22,16],[-15,4],[-8,-8],[-16,2],[-16,-25],[-15,-1],[-33,29],[-13,-14],[-15,1],[-10,22],[-28,21],[-30,-6],[-7,-13],[-4,-33],[-8,-23],[-2,-52]],[[5863,9187],[-47,-23],[-23,-5]],[[5572,9161],[-17,-2],[-4,-38],[-52,9],[-8,-32],[-26,0],[-19,-41],[-27,-63],[-43,-81],[10,-20],[-10,-23],[-28,1],[-18,-54],[2,-76],[18,-30],[-9,-67],[-23,-40],[-13,-33]],[[6474,6141],[-9,40],[-22,95]],[[6443,6276],[84,58],[18,115],[-13,41]],[[5545,8316],[34,-7],[51,1]],[[5652,8152],[14,-50],[-3,-16],[-13,-7],[-26,-48],[8,-26],[-6,3]],[[5626,8008],[-27,23],[-20,-9],[-13,6],[-16,-12],[-14,20],[-12,-7],[-1,3]],[[3158,6248],[14,-5],[5,-11],[-7,-15],[-21,0],[-16,-2],[-2,25],[4,8],[23,0]],[[8628,7623],[3,-10]],[[6426,6600],[-7,-4],[-9,11]],[[5783,7801],[13,-10],[13,9],[12,-10]],[[5628,7729],[-5,10],[7,10],[-7,7],[-9,-13],[-16,17],[-2,24],[-17,13],[-3,18],[-15,23]],[[5630,7939],[12,12],[17,-6],[18,0],[13,-14],[9,9],[21,5],[7,14],[11,0]],[[6061,7894],[1,26],[14,16],[27,4],[4,19],[-6,32],[11,30],[0,17],[-41,19],[-16,-1],[-17,27],[-22,-9],[-35,20],[1,12],[-10,25],[-22,2],[-3,18],[7,12],[-18,33],[-28,-6],[-9,3],[-7,-13],[-10,2]],[[5863,9187],[28,20],[46,-34],[76,-14],[105,-65],[21,-28],[2,-38],[-31,-30],[-45,-16],[-124,44],[-20,-7],[45,-42]],[[5966,8977],[2,-27],[2,-59]],[[5970,8891],[35,-17],[22,-15],[4,28]],[[6031,8887],[-17,24],[18,22]],[[6920,9133],[-28,31],[-1,12]],[[8147,9571],[22,-22],[-7,-29]],[[5821,5105],[6,-6],[17,18]],[[5844,5117],[11,-33],[-2,-34],[-8,-7]],[[6443,6276],[-80,-22],[-26,-26],[-20,-60],[-13,-10],[-7,19],[-10,-3],[-27,6],[-5,6],[-32,-1],[-8,-6],[-11,15],[-7,-28],[2,-24],[-12,-19]],[[5634,5824],[0,14],[-10,16],[0,34],[-6,22],[-10,-3],[3,21],[7,24],[-3,24],[9,17],[-6,14],[8,36],[13,42],[23,-4],[-1,228]],[[5942,5734],[0,-7]],[[5942,5727],[-4,1],[1,29],[-3,20],[-15,22],[-3,42],[3,42],[-13,4],[-1,-13],[-17,-3],[7,-16],[2,-35],[-15,-32],[-14,-41],[-14,-6],[-24,34],[-10,-12],[-3,-17],[-14,-11],[-1,-12],[-28,0],[-4,12],[-20,2],[-10,-10],[-8,5],[-14,34],[-5,15],[-20,-7],[-7,-27],[-7,-52],[-10,-10],[-9,-7]],[[5662,5678],[-2,3]],[[5943,5427],[-17,-27],[-19,0],[-22,-13],[-18,13],[-12,-16]],[[5681,5656],[-19,22]],[[5942,5727],[1,-45]],[[2541,5940],[-10,6],[-11,11]],[[6359,5839],[-1,-1],[0,-24],[0,-58],[0,-30],[-12,-35],[-20,-48]],[[3488,5425],[11,-35],[-5,-24]],[[3494,5366],[-2,-27],[-7,-24]],[[5626,8008],[-8,-15],[-6,-23]],[[5890,3643],[-6,-26],[-16,-6],[-17,31],[0,20],[8,22],[2,16],[8,4],[14,-10]],[[6003,7245],[7,12],[8,13],[1,32],[10,-11],[30,16],[15,-11],[23,0],[32,22],[15,-1],[31,9]],[[6883,7321],[16,58],[-6,43],[-21,14],[7,25],[24,-3],[13,32],[9,37],[37,14],[-6,-27],[4,-16],[11,1]],[[6554,7561],[31,0],[-5,29],[24,20],[23,34],[38,-31],[3,-46],[10,-11],[30,2],[10,-10],[13,-60],[32,-39],[18,-27],[29,-29],[37,-24],[0,-36]],[[3286,5802],[16,7],[6,-2],[-1,-43],[-24,-6],[-5,5],[8,16],[0,23]],[[8381,6587],[-16,-93],[-12,-47],[-15,49],[-3,42],[16,57],[23,44],[12,-18],[-5,-34]],[[5909,4650],[-16,18],[-18,9],[-11,10],[-11,15]],[[5844,5117],[10,7],[30,-1],[57,4]],[[3052,7697],[-15,-34],[-5,-13]],[[2952,7539],[40,11],[9,-11]],[[2896,7366],[-14,22],[-4,48]],[[2522,6928],[-11,-9],[5,-16]],[[2316,6812],[-15,-28],[-6,-25]],[[1746,7055],[-5,30],[-18,33],[-13,7],[-3,16],[-15,3],[-10,16],[-26,6],[-7,9],[-4,31],[-27,58],[-23,80],[1,14],[-12,19],[-22,48],[-3,47],[-15,31],[6,48],[-1,49],[-9,45],[11,54]],[[1551,7699],[3,52],[4,52]],[[1558,7803],[-5,78],[-9,49],[-8,27],[3,11],[40,-20],[15,-54],[7,15],[-4,47],[-10,48]],[[5816,3910],[12,-1],[13,-9],[10,6],[14,-5]],[[5840,4289],[-21,-8],[-16,-23],[-3,-20],[-10,-4],[-24,-48],[-16,-37],[-9,-1],[-9,6],[-31,7]]]}
name,alpha-2,alpha-3,country-code,iso_3166-2,region,sub-region,region-code,sub-region-code
Afghanistan,AF,AFG,004,ISO 3166-2:AF,Asia,Southern Asia,142,034
Åland Islands,AX,ALA,248,ISO 3166-2:AX,Europe,Northern Europe,150,154
Albania,AL,ALB,008,ISO 3166-2:AL,Europe,Southern Europe,150,039
Algeria,DZ,DZA,012,ISO 3166-2:DZ,Africa,Northern Africa,002,015
American Samoa,AS,ASM,016,ISO 3166-2:AS,Oceania,Polynesia,009,061
Andorra,AD,AND,020,ISO 3166-2:AD,Europe,Southern Europe,150,039
Angola,AO,AGO,024,ISO 3166-2:AO,Africa,Middle Africa,002,017
Anguilla,AI,AIA,660,ISO 3166-2:AI,Americas,Caribbean,019,029
Antarctica,AQ,ATA,010,ISO 3166-2:AQ,,,,
Antigua and Barbuda,AG,ATG,028,ISO 3166-2:AG,Americas,Caribbean,019,029
Argentina,AR,ARG,032,ISO 3166-2:AR,Americas,South America,019,005
Armenia,AM,ARM,051,ISO 3166-2:AM,Asia,Western Asia,142,145
Aruba,AW,ABW,533,ISO 3166-2:AW,Americas,Caribbean,019,029
Australia,AU,AUS,036,ISO 3166-2:AU,Oceania,Australia and New Zealand,009,053
Austria,AT,AUT,040,ISO 3166-2:AT,Europe,Western Europe,150,155
Azerbaijan,AZ,AZE,031,ISO 3166-2:AZ,Asia,Western Asia,142,145
Bahamas,BS,BHS,044,ISO 3166-2:BS,Americas,Caribbean,019,029
Bahrain,BH,BHR,048,ISO 3166-2:BH,Asia,Western Asia,142,145
Bangladesh,BD,BGD,050,ISO 3166-2:BD,Asia,Southern Asia,142,034
Barbados,BB,BRB,052,ISO 3166-2:BB,Americas,Caribbean,019,029
Belarus,BY,BLR,112,ISO 3166-2:BY,Europe,Eastern Europe,150,151
Belgium,BE,BEL,056,ISO 3166-2:BE,Europe,Western Europe,150,155
Belize,BZ,BLZ,084,ISO 3166-2:BZ,Americas,Central America,019,013
Benin,BJ,BEN,204,ISO 3166-2:BJ,Africa,Western Africa,002,011
Bermuda,BM,BMU,060,ISO 3166-2:BM,Americas,Northern America,019,021
Bhutan,BT,BTN,064,ISO 3166-2:BT,Asia,Southern Asia,142,034
Bolivia (Plurinational State of),BO,BOL,068,ISO 3166-2:BO,Americas,South America,019,005
"Bonaire, Sint Eustatius and Saba",BQ,BES,535,ISO 3166-2:BQ,Americas,Caribbean,019,029
Bosnia and Herzegovina,BA,BIH,070,ISO 3166-2:BA,Europe,Southern Europe,150,039
Botswana,BW,BWA,072,ISO 3166-2:BW,Africa,Southern Africa,002,018
Bouvet Island,BV,BVT,074,ISO 3166-2:BV,,,,
Brazil,BR,BRA,076,ISO 3166-2:BR,Americas,South America,019,005
British Indian Ocean Territory,IO,IOT,086,ISO 3166-2:IO,,,,
Brunei Darussalam,BN,BRN,096,ISO 3166-2:BN,Asia,South-Eastern Asia,142,035
Bulgaria,BG,BGR,100,ISO 3166-2:BG,Europe,Eastern Europe,150,151
Burkina Faso,BF,BFA,854,ISO 3166-2:BF,Africa,Western Africa,002,011
Burundi,BI,BDI,108,ISO 3166-2:BI,Africa,Eastern Africa,002,014
Cambodia,KH,KHM,116,ISO 3166-2:KH,Asia,South-Eastern Asia,142,035
Cameroon,CM,CMR,120,ISO 3166-2:CM,Africa,Middle Africa,002,017
Canada,CA,CAN,124,ISO 3166-2:CA,Americas,Northern America,019,021
Cabo Verde,CV,CPV,132,ISO 3166-2:CV,Africa,Western Africa,002,011
Cayman Islands,KY,CYM,136,ISO 3166-2:KY,Americas,Caribbean,019,029
Central African Republic,CF,CAF,140,ISO 3166-2:CF,Africa,Middle Africa,002,017
Chad,TD,TCD,148,ISO 3166-2:TD,Africa,Middle Africa,002,017
Chile,CL,CHL,152,ISO 3166-2:CL,Americas,South America,019,005
China,CN,CHN,156,ISO 3166-2:CN,Asia,Eastern Asia,142,030
Christmas Island,CX,CXR,162,ISO 3166-2:CX,,,,
Cocos (Keeling) Islands,CC,CCK,166,ISO 3166-2:CC,,,,
Colombia,CO,COL,170,ISO 3166-2:CO,Americas,South America,019,005
Comoros,KM,COM,174,ISO 3166-2:KM,Africa,Eastern Africa,002,014
Congo,CG,COG,178,ISO 3166-2:CG,Africa,Middle Africa,002,017
Congo (Democratic Republic of the),CD,COD,180,ISO 3166-2:CD,Africa,Middle Africa,002,017
Cook Islands,CK,COK,184,ISO 3166-2:CK,Oceania,Polynesia,009,061
Costa Rica,CR,CRI,188,ISO 3166-2:CR,Americas,Central America,019,013
Côte d'Ivoire,CI,CIV,384,ISO 3166-2:CI,Africa,Western Africa,002,011
Croatia,HR,HRV,191,ISO 3166-2:HR,Europe,Southern Europe,150,039
Cuba,CU,CUB,192,ISO 3166-2:CU,Americas,Caribbean,019,029
Curaçao,CW,CUW,531,ISO 3166-2:CW,Americas,Caribbean,019,029
Cyprus,CY,CYP,196,ISO 3166-2:CY,Asia,Western Asia,142,145
Czech Republic,CZ,CZE,203,ISO 3166-2:CZ,Europe,Eastern Europe,150,151
Denmark,DK,DNK,208,ISO 3166-2:DK,Europe,Northern Europe,150,154
Djibouti,DJ,DJI,262,ISO 3166-2:DJ,Africa,Eastern Africa,002,014
Dominica,DM,DMA,212,ISO 3166-2:DM,Americas,Caribbean,019,029
Dominican Republic,DO,DOM,214,ISO 3166-2:DO,Americas,Caribbean,019,029
Ecuador,EC,ECU,218,ISO 3166-2:EC,Americas,South America,019,005
Egypt,EG,EGY,818,ISO 3166-2:EG,Africa,Northern Africa,002,015
El Salvador,SV,SLV,222,ISO 3166-2:SV,Americas,Central America,019,013
Equatorial Guinea,GQ,GNQ,226,ISO 3166-2:GQ,Africa,Middle Africa,002,017
Eritrea,ER,ERI,232,ISO 3166-2:ER,Africa,Eastern Africa,002,014
Estonia,EE,EST,233,ISO 3166-2:EE,Europe,Northern Europe,150,154
Ethiopia,ET,ETH,231,ISO 3166-2:ET,Africa,Eastern Africa,002,014
Falkland Islands (Malvinas),FK,FLK,238,ISO 3166-2:FK,Americas,South America,019,005
Faroe Islands,FO,FRO,234,ISO 3166-2:FO,Europe,Northern Europe,150,154
Fiji,FJ,FJI,242,ISO 3166-2:FJ,Oceania,Melanesia,009,054
Finland,FI,FIN,246,ISO 3166-2:FI,Europe,Northern Europe,150,154
France,FR,FRA,250,ISO 3166-2:FR,Europe,Western Europe,150,155
French Guiana,GF,GUF,254,ISO 3166-2:GF,Americas,South America,019,005
French Polynesia,PF,PYF,258,ISO 3166-2:PF,Oceania,Polynesia,009,061
French Southern Territories,TF,ATF,260,ISO 3166-2:TF,,,,
Gabon,GA,GAB,266,ISO 3166-2:GA,Africa,Middle Africa,002,017
Gambia,GM,GMB,270,ISO 3166-2:GM,Africa,Western Africa,002,011
Georgia,GE,GEO,268,ISO 3166-2:GE,Asia,Western Asia,142,145
Germany,DE,DEU,276,ISO 3166-2:DE,Europe,Western Europe,150,155
Ghana,GH,GHA,288,ISO 3166-2:GH,Africa,Western Africa,002,011
Gibraltar,GI,GIB,292,ISO 3166-2:GI,Europe,Southern Europe,150,039
Greece,GR,GRC,300,ISO 3166-2:GR,Europe,Southern Europe,150,039
Greenland,GL,GRL,304,ISO 3166-2:GL,Americas,Northern America,019,021
Grenada,GD,GRD,308,ISO 3166-2:GD,Americas,Caribbean,019,029
Guadeloupe,GP,GLP,312,ISO 3166-2:GP,Americas,Caribbean,019,029
Guam,GU,GUM,316,ISO 3166-2:GU,Oceania,Micronesia,009,057
Guatemala,GT,GTM,320,ISO 3166-2:GT,Americas,Central America,019,013
Guernsey,GG,GGY,831,ISO 3166-2:GG,Europe,Northern Europe,150,154
Guinea,GN,GIN,324,ISO 3166-2:GN,Africa,Western Africa,002,011
Guinea-Bissau,GW,GNB,624,ISO 3166-2:GW,Africa,Western Africa,002,011
Guyana,GY,GUY,328,ISO 3166-2:GY,Americas,South America,019,005
Haiti,HT,HTI,332,ISO 3166-2:HT,Americas,Caribbean,019,029
Heard Island and McDonald Islands,HM,HMD,334,ISO 3166-2:HM,,,,
Holy See,VA,VAT,336,ISO 3166-2:VA,Europe,Southern Europe,150,039
Honduras,HN,HND,340,ISO 3166-2:HN,Americas,Central America,019,013
Hong Kong,HK,HKG,344,ISO 3166-2:HK,Asia,Eastern Asia,142,030
Hungary,HU,HUN,348,ISO 3166-2:HU,Europe,Eastern Europe,150,151
Iceland,IS,ISL,352,ISO 3166-2:IS,Europe,Northern Europe,150,154
India,IN,IND,356,ISO 3166-2:IN,Asia,Southern Asia,142,034
Indonesia,ID,IDN,360,ISO 3166-2:ID,Asia,South-Eastern Asia,142,035
Iran (Islamic Republic of),IR,IRN,364,ISO 3166-2:IR,Asia,Southern Asia,142,034
Iraq,IQ,IRQ,368,ISO 3166-2:IQ,Asia,Western Asia,142,145
Ireland,IE,IRL,372,ISO 3166-2:IE,Europe,Northern Europe,150,154
Isle of Man,IM,IMN,833,ISO 3166-2:IM,Europe,Northern Europe,150,154
Israel,IL,ISR,376,ISO 3166-2:IL,Asia,Western Asia,142,145
Italy,IT,ITA,380,ISO 3166-2:IT,Europe,Southern Europe,150,039
Jamaica,JM,JAM,388,ISO 3166-2:JM,Americas,Caribbean,019,029
Japan,JP,JPN,392,ISO 3166-2:JP,Asia,Eastern Asia,142,030
Jersey,JE,JEY,832,ISO 3166-2:JE,Europe,Northern Europe,150,154
Jordan,JO,JOR,400,ISO 3166-2:JO,Asia,Western Asia,142,145
Kazakhstan,KZ,KAZ,398,ISO 3166-2:KZ,Asia,Central Asia,142,143
Kenya,KE,KEN,404,ISO 3166-2:KE,Africa,Eastern Africa,002,014
Kiribati,KI,KIR,296,ISO 3166-2:KI,Oceania,Micronesia,009,057
Korea (Democratic People's Republic of),KP,PRK,408,ISO 3166-2:KP,Asia,Eastern Asia,142,030
Korea (Republic of),KR,KOR,410,ISO 3166-2:KR,Asia,Eastern Asia,142,030
Kuwait,KW,KWT,414,ISO 3166-2:KW,Asia,Western Asia,142,145
Kyrgyzstan,KG,KGZ,417,ISO 3166-2:KG,Asia,Central Asia,142,143
Lao People's Democratic Republic,LA,LAO,418,ISO 3166-2:LA,Asia,South-Eastern Asia,142,035
Latvia,LV,LVA,428,ISO 3166-2:LV,Europe,Northern Europe,150,154
Lebanon,LB,LBN,422,ISO 3166-2:LB,Asia,Western Asia,142,145
Lesotho,LS,LSO,426,ISO 3166-2:LS,Africa,Southern Africa,002,018
Liberia,LR,LBR,430,ISO 3166-2:LR,Africa,Western Africa,002,011
Libya,LY,LBY,434,ISO 3166-2:LY,Africa,Northern Africa,002,015
Liechtenstein,LI,LIE,438,ISO 3166-2:LI,Europe,Western Europe,150,155
Lithuania,LT,LTU,440,ISO 3166-2:LT,Europe,Northern Europe,150,154
Luxembourg,LU,LUX,442,ISO 3166-2:LU,Europe,Western Europe,150,155
Macao,MO,MAC,446,ISO 3166-2:MO,Asia,Eastern Asia,142,030
Macedonia (the former Yugoslav Republic of),MK,MKD,807,ISO 3166-2:MK,Europe,Southern Europe,150,039
Madagascar,MG,MDG,450,ISO 3166-2:MG,Africa,Eastern Africa,002,014
Malawi,MW,MWI,454,ISO 3166-2:MW,Africa,Eastern Africa,002,014
Malaysia,MY,MYS,458,ISO 3166-2:MY,Asia,South-Eastern Asia,142,035
Maldives,MV,MDV,462,ISO 3166-2:MV,Asia,Southern Asia,142,034
Mali,ML,MLI,466,ISO 3166-2:ML,Africa,Western Africa,002,011
Malta,MT,MLT,470,ISO 3166-2:MT,Europe,Southern Europe,150,039
Marshall Islands,MH,MHL,584,ISO 3166-2:MH,Oceania,Micronesia,009,057
Martinique,MQ,MTQ,474,ISO 3166-2:MQ,Americas,Caribbean,019,029
Mauritania,MR,MRT,478,ISO 3166-2:MR,Africa,Western Africa,002,011
Mauritius,MU,MUS,480,ISO 3166-2:MU,Africa,Eastern Africa,002,014
Mayotte,YT,MYT,175,ISO 3166-2:YT,Africa,Eastern Africa,002,014
Mexico,MX,MEX,484,ISO 3166-2:MX,Americas,Central America,019,013
Micronesia (Federated States of),FM,FSM,583,ISO 3166-2:FM,Oceania,Micronesia,009,057
Moldova (Republic of),MD,MDA,498,ISO 3166-2:MD,Europe,Eastern Europe,150,151
Monaco,MC,MCO,492,ISO 3166-2:MC,Europe,Western Europe,150,155
Mongolia,MN,MNG,496,ISO 3166-2:MN,Asia,Eastern Asia,142,030
Montenegro,ME,MNE,499,ISO 3166-2:ME,Europe,Southern Europe,150,039
Montserrat,MS,MSR,500,ISO 3166-2:MS,Americas,Caribbean,019,029
Morocco,MA,MAR,504,ISO 3166-2:MA,Africa,Northern Africa,002,015
Mozambique,MZ,MOZ,508,ISO 3166-2:MZ,Africa,Eastern Africa,002,014
Myanmar,MM,MMR,104,ISO 3166-2:MM,Asia,South-Eastern Asia,142,035
Namibia,NA,NAM,516,ISO 3166-2:NA,Africa,Southern Africa,002,018
Nauru,NR,NRU,520,ISO 3166-2:NR,Oceania,Micronesia,009,057
Nepal,NP,NPL,524,ISO 3166-2:NP,Asia,Southern Asia,142,034
Netherlands,NL,NLD,528,ISO 3166-2:NL,Europe,Western Europe,150,155
New Caledonia,NC,NCL,540,ISO 3166-2:NC,Oceania,Melanesia,009,054
New Zealand,NZ,NZL,554,ISO 3166-2:NZ,Oceania,Australia and New Zealand,009,053
Nicaragua,NI,NIC,558,ISO 3166-2:NI,Americas,Central America,019,013
Niger,NE,NER,562,ISO 3166-2:NE,Africa,Western Africa,002,011
Nigeria,NG,NGA,566,ISO 3166-2:NG,Africa,Western Africa,002,011
Niue,NU,NIU,570,ISO 3166-2:NU,Oceania,Polynesia,009,061
Norfolk Island,NF,NFK,574,ISO 3166-2:NF,Oceania,Australia and New Zealand,009,053
Northern Mariana Islands,MP,MNP,580,ISO 3166-2:MP,Oceania,Micronesia,009,057
Norway,NO,NOR,578,ISO 3166-2:NO,Europe,Northern Europe,150,154
Oman,OM,OMN,512,ISO 3166-2:OM,Asia,Western Asia,142,145
Pakistan,PK,PAK,586,ISO 3166-2:PK,Asia,Southern Asia,142,034
Palau,PW,PLW,585,ISO 3166-2:PW,Oceania,Micronesia,009,057
"Palestine, State of",PS,PSE,275,ISO 3166-2:PS,Asia,Western Asia,142,145
Panama,PA,PAN,591,ISO 3166-2:PA,Americas,Central America,019,013
Papua New Guinea,PG,PNG,598,ISO 3166-2:PG,Oceania,Melanesia,009,054
Paraguay,PY,PRY,600,ISO 3166-2:PY,Americas,South America,019,005
Peru,PE,PER,604,ISO 3166-2:PE,Americas,South America,019,005
Philippines,PH,PHL,608,ISO 3166-2:PH,Asia,South-Eastern Asia,142,035
Pitcairn,PN,PCN,612,ISO 3166-2:PN,Oceania,Polynesia,009,061
Poland,PL,POL,616,ISO 3166-2:PL,Europe,Eastern Europe,150,151
Portugal,PT,PRT,620,ISO 3166-2:PT,Europe,Southern Europe,150,039
Puerto Rico,PR,PRI,630,ISO 3166-2:PR,Americas,Caribbean,019,029
Qatar,QA,QAT,634,ISO 3166-2:QA,Asia,Western Asia,142,145
Réunion,RE,REU,638,ISO 3166-2:RE,Africa,Eastern Africa,002,014
Romania,RO,ROU,642,ISO 3166-2:RO,Europe,Eastern Europe,150,151
Russian Federation,RU,RUS,643,ISO 3166-2:RU,Europe,Eastern Europe,150,151
Rwanda,RW,RWA,646,ISO 3166-2:RW,Africa,Eastern Africa,002,014
Saint Barthélemy,BL,BLM,652,ISO 3166-2:BL,Americas,Caribbean,019,029
"Saint Helena, Ascension and Tristan da Cunha",SH,SHN,654,ISO 3166-2:SH,Africa,Western Africa,002,011
Saint Kitts and Nevis,KN,KNA,659,ISO 3166-2:KN,Americas,Caribbean,019,029
Saint Lucia,LC,LCA,662,ISO 3166-2:LC,Americas,Caribbean,019,029
Saint Martin (French part),MF,MAF,663,ISO 3166-2:MF,Americas,Caribbean,019,029
Saint Pierre and Miquelon,PM,SPM,666,ISO 3166-2:PM,Americas,Northern America,019,021
Saint Vincent and the Grenadines,VC,VCT,670,ISO 3166-2:VC,Americas,Caribbean,019,029
Samoa,WS,WSM,882,ISO 3166-2:WS,Oceania,Polynesia,009,061
San Marino,SM,SMR,674,ISO 3166-2:SM,Europe,Southern Europe,150,039
Sao Tome and Principe,ST,STP,678,ISO 3166-2:ST,Africa,Middle Africa,002,017
Saudi Arabia,SA,SAU,682,ISO 3166-2:SA,Asia,Western Asia,142,145
Senegal,SN,SEN,686,ISO 3166-2:SN,Africa,Western Africa,002,011
Serbia,RS,SRB,688,ISO 3166-2:RS,Europe,Southern Europe,150,039
Seychelles,SC,SYC,690,ISO 3166-2:SC,Africa,Eastern Africa,002,014
Sierra Leone,SL,SLE,694,ISO 3166-2:SL,Africa,Western Africa,002,011
Singapore,SG,SGP,702,ISO 3166-2:SG,Asia,South-Eastern Asia,142,035
Sint Maarten (Dutch part),SX,SXM,534,ISO 3166-2:SX,Americas,Caribbean,019,029
Slovakia,SK,SVK,703,ISO 3166-2:SK,Europe,Eastern Europe,150,151
Slovenia,SI,SVN,705,ISO 3166-2:SI,Europe,Southern Europe,150,039
Solomon Islands,SB,SLB,090,ISO 3166-2:SB,Oceania,Melanesia,009,054
Somalia,SO,SOM,706,ISO 3166-2:SO,Africa,Eastern Africa,002,014
South Africa,ZA,ZAF,710,ISO 3166-2:ZA,Africa,Southern Africa,002,018
South Georgia and the South Sandwich Islands,GS,SGS,239,ISO 3166-2:GS,,,,
South Sudan,SS,SSD,728,ISO 3166-2:SS,Africa,Eastern Africa,002,014
Spain,ES,ESP,724,ISO 3166-2:ES,Europe,Southern Europe,150,039
Sri Lanka,LK,LKA,144,ISO 3166-2:LK,Asia,Southern Asia,142,034
Sudan,SD,SDN,729,ISO 3166-2:SD,Africa,Northern Africa,002,015
Suriname,SR,SUR,740,ISO 3166-2:SR,Americas,South America,019,005
Svalbard and Jan Mayen,SJ,SJM,744,ISO 3166-2:SJ,Europe,Northern Europe,150,154
Swaziland,SZ,SWZ,748,ISO 3166-2:SZ,Africa,Southern Africa,002,018
Sweden,SE,SWE,752,ISO 3166-2:SE,Europe,Northern Europe,150,154
Switzerland,CH,CHE,756,ISO 3166-2:CH,Europe,Western Europe,150,155
Syrian Arab Republic,SY,SYR,760,ISO 3166-2:SY,Asia,Western Asia,142,145
"Taiwan, Province of China",TW,TWN,158,ISO 3166-2:TW,Asia,Eastern Asia,142,030
Tajikistan,TJ,TJK,762,ISO 3166-2:TJ,Asia,Central Asia,142,143
"Tanzania, United Republic of",TZ,TZA,834,ISO 3166-2:TZ,Africa,Eastern Africa,002,014
Thailand,TH,THA,764,ISO 3166-2:TH,Asia,South-Eastern Asia,142,035
Timor-Leste,TL,TLS,626,ISO 3166-2:TL,Asia,South-Eastern Asia,142,035
Togo,TG,TGO,768,ISO 3166-2:TG,Africa,Western Africa,002,011
Tokelau,TK,TKL,772,ISO 3166-2:TK,Oceania,Polynesia,009,061
Tonga,TO,TON,776,ISO 3166-2:TO,Oceania,Polynesia,009,061
Trinidad and Tobago,TT,TTO,780,ISO 3166-2:TT,Americas,Caribbean,019,029
Tunisia,TN,TUN,788,ISO 3166-2:TN,Africa,Northern Africa,002,015
Turkey,TR,TUR,792,ISO 3166-2:TR,Asia,Western Asia,142,145
Turkmenistan,TM,TKM,795,ISO 3166-2:TM,Asia,Central Asia,142,143
Turks and Caicos Islands,TC,TCA,796,ISO 3166-2:TC,Americas,Caribbean,019,029
Tuvalu,TV,TUV,798,ISO 3166-2:TV,Oceania,Polynesia,009,061
Uganda,UG,UGA,800,ISO 3166-2:UG,Africa,Eastern Africa,002,014
Ukraine,UA,UKR,804,ISO 3166-2:UA,Europe,Eastern Europe,150,151
United Arab Emirates,AE,ARE,784,ISO 3166-2:AE,Asia,Western Asia,142,145
United Kingdom of Great Britain and Northern Ireland,GB,GBR,826,ISO 3166-2:GB,Europe,Northern Europe,150,154
United States of America,US,USA,840,ISO 3166-2:US,Americas,Northern America,019,021
United States Minor Outlying Islands,UM,UMI,581,ISO 3166-2:UM,,,,
Uruguay,UY,URY,858,ISO 3166-2:UY,Americas,South America,019,005
Uzbekistan,UZ,UZB,860,ISO 3166-2:UZ,Asia,Central Asia,142,143
Vanuatu,VU,VUT,548,ISO 3166-2:VU,Oceania,Melanesia,009,054
Venezuela (Bolivarian Republic of),VE,VEN,862,ISO 3166-2:VE,Americas,South America,019,005
Viet Nam,VN,VNM,704,ISO 3166-2:VN,Asia,South-Eastern Asia,142,035
Virgin Islands (British),VG,VGB,092,ISO 3166-2:VG,Americas,Caribbean,019,029
Virgin Islands (U.S.),VI,VIR,850,ISO 3166-2:VI,Americas,Caribbean,019,029
Wallis and Futuna,WF,WLF,876,ISO 3166-2:WF,Oceania,Polynesia,009,061
Western Sahara,EH,ESH,732,ISO 3166-2:EH,Africa,Northern Africa,002,015
Yemen,YE,YEM,887,ISO 3166-2:YE,Asia,Western Asia,142,145
Zambia,ZM,ZMB,894,ISO 3166-2:ZM,Africa,Eastern Africa,002,014
Zimbabwe,ZW,ZWE,716,ISO 3166-2:ZW,Africa,Eastern Africa,002,014
Origin,Value
Afghanistan,8991
Angola,36
Albania,256
Armenia,225
Azerbaijan,69
Burundi,12
Benin,70
Burkina Faso,599
Bangladesh,1357
Bahrain,*
Bosnia and Herzegovina,375
Belarus,31
Bolivia (Plurinational State of),9
Brazil,31
Bhutan,*
Central African Rep.,32
Canada,*
Chile,5
China,98
Côte d'Ivoire,4603
Cameroon,628
Dem. Rep. of the Congo,427
Congo,486
Colombia,475
Cabo Verde,17
Cuba,142
Djibouti,*
Dominican Rep.,*
Algeria,113
Ecuador,14
Egypt,1145
Eritrea,13357
Western Sahara,*
Ethiopia,2354
Gabon,14
Georgia,130
Ghana,1733
Guinea,1026
Gambia,1923
Guinea-Bissau,166
Equatorial Guinea,8
Guatemala,*
Honduras,7
Croatia,18
Haiti,8
India,113
Iran (Islamic Rep. of),1412
Iraq,2913
Israel,*
Jamaica,*
Jordan,12
Kazakhstan,5
Kenya,102
Kyrgyzstan,*
Cambodia,*
Kuwait,*
Lebanon,310
Liberia,765
Libya,227
Sri Lanka,673
Lesotho,*
Morocco,253
Rep. of Moldova,111
Madagascar,10
Mexico,*
The former Yugoslav Republic of Macedonia,200
Mali,5552
Myanmar,23
Montenegro,51
Mongolia,6
Mozambique,*
Mauritania,230
Mauritius,*
Malawi,*
Namibia,*
Niger,263
Nigeria,6293
Nicaragua,*
Nepal,28
Pakistan,5764
Peru,35
Philippines,5
Palau,*
Paraguay,*
Palestinian,611
Romania,22
Russian Federation,174
Rwanda,11
Saudi Arabia,6
Sudan,2530
Senegal,1477
Sierra Leone,327
El Salvador,120
Somalia,12213
Serbia and Kosovo (S/RES/1244 (1999)),2686
South Sudan,57
Swaziland,*
Syria,1144
Chad,335
Togo,1535
Turkmenistan,*
Timor-Leste,*
Tunisia,400
Turkey,2281
United Rep. of Tanzania,10
Uganda,34
Ukraine,236
Uruguay,*
Uzbekistan,7
Venezuela (Bolivarian Republic of),17
Viet Nam,8
Stateless,21
Various/Unknown,982
Yemen,45
South Africa,*
Zimbabwe,27