-
Notifications
You must be signed in to change notification settings - Fork 0
/
worldMap.js
322 lines (284 loc) · 263 KB
/
worldMap.js
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/**
* @description World map widget for DeepSeeWeb
* @data Column with name "Key" represents Country, Column "Value" should have the value to display
* @example SELECT NON EMPTY {%LABEL([Outlet].[H1].[Country].CurrentMember.Properties("Key"),"Key",""),%LABEL([Measures].[Amount Sold],"Value","")} ON 0,NON EMPTY [Outlet].[H1].[Country].Members ON 1 FROM [HOLEFOODS]
*/
(function() {
'use strict';
var MAP_KEY = "custom/world-eckert3";
angular.module('app')
// You can inject other DSW services here if needed. Look at /src/services
.directive('worldMap', ['$parse', '$compile', 'Lang', 'Connector', function($parse, $compile, Lang, Connector) {
return {
link: function(scope, element, attrs) {
// Remove attr to avoid infinite creation loop
element.removeAttr('world-map');
// Create element
element[0].innerHTML = "<div style='height:100%'></div>";
$compile(element)(scope);
// Get created div element
var div = element[0].children[0];
var mapGeoJSON = Highcharts.maps[MAP_KEY];
// Generate non-random data for the map
var data = [];
// $.each(mapGeoJSON.features, function (index, feature) {
// data.push({
// key: feature.properties['hc-key'],
// value: index
// });
// });
var options = {
title: {
text: null
},
mapNavigation: {
enabled: true
},
colorAxis: {
min: 0,
stops: [
[0, '#EFEFFF'],
[0.5, Highcharts.getOptions().colors[0]],
[1, Highcharts.Color(Highcharts.getOptions().colors[0]).brighten(-0.5).get()]
]
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'bottom'
},
series: [],
chart: {
events: {
drilldown: scope.onDrillDown
}
},
drilldown: {
drillUpButton: {
position: {x: -1000, y: -1000}
}
}
};
// Define render function
scope.drawWidget = function() {
scope.chart.reflow();
scope.chart.render();
};
//// Define resize function
scope.resizeWidget = function() {
scope.drawWidget();
};
scope.updateData = function(data, seriesName) {
data.forEach(function(d) { d.drilldown = d.key });
options.series = [{
data: data,
mapData: mapGeoJSON,
joinBy: ['name', 'key'],
name: seriesName,
states: {
hover: {
color: Highcharts.getOptions().colors[2]
}
},
dataLabels: {
enabled: false
}
}];
if (!scope.chart) {
$(element[0].children[0]).highcharts('Map', options);
scope.chart = $(element[0].children[0]).highcharts();
} else {
scope.chart.series[0].setData(data);
}
//setTimeout(function() { scope.resizeWidget(); }, 100);
}
}
};
}]);
function CustomChartWidgetFact(BarChart, Utils) {
CustomChartWidget.directive = "world-map";
function CustomChartWidget($scope) {
var _this = this;
$scope.onDrillDown = onDrilldown;
$scope.item.drillUp = doDrillUp;
// After data was retrieved - redraw widget
this._retrieveData = function(inData) {
var i;
var d = [];
var keyIdx = -1;
var valIdx = -1;
var colCount = inData.Cols[0].tuples.length;
// Find key column index
for (i = 0; i < colCount; i++) {
if (inData.Cols[0].tuples[i].caption.toLowerCase() === 'key') {
keyIdx = i;
break;
}
}
if (keyIdx === -1) console.error("Can't find column 'Key'");
// Find value column index
for (i = 0; i < colCount; i++) {
if (inData.Cols[0].tuples[i].caption.toLowerCase() === 'value') {
valIdx = i;
break;
}
}
if (valIdx === -1) console.error("Can't find column Value'");
for (var i = 0; i < inData.Cols[1].tuples.length; i++) {
var idx = i * colCount;
d.push({
key: inData.Data[idx + keyIdx],
value: inData.Data[idx + valIdx],
target: inData.Cols[1].tuples[i].path
});
}
if (_this.drillData) {
var fileName = _this.drillData.fileName;
function addDrillSeries() {
var mapGeoJSON = Highcharts.maps[fileName];
// for (var i = 0; i < d.length; i++) {
// var di = data.find(function(el) { return el.name === d[i].key});
// if (di) di.value = d[i].value;
// }
$scope.chart.addSeriesAsDrilldown(_this.drillData.point, {
name: _this.drillData.point.name,
mapData: mapGeoJSON,
data: d,
joinBy: ['name', 'key'],
name: inData.Cols[0].tuples[valIdx].dimension
});
_this.drillData = null;
}
if (!Highcharts.maps[fileName]) {
// Show the spinner
$scope.chart.showLoading('<i class="icon-spinner icon-spin icon-3x"></i>'); // Font Awesome spinner
// Load the drilldown map
$.getScript('https://code.highcharts.com/mapdata/' + fileName + '.js', function () {
// Hide loading and add series
$scope.chart.hideLoading();
addDrillSeries()
}).error(function (err) {
console.error(err);
$scope.chart.hideLoading();
});
} else {
addDrillSeries();
}
} else {
$scope.updateData(d, inData.Cols[0].tuples[valIdx].dimension);
}
};
// Resize map after widget has been resized
this.onResize = function() {
$scope.resizeWidget();
};
// Request widget data (execute MDX)
this.requestData();
function doDrillUp() {
var c = $scope.chart;
c.drillUp();
//$scope.item.backButton = !!c.drilldownLevels.length;
_this.doDrill();
}
function onDrilldown(e) {
var key = e.point.properties['hc-key'];
var fileName = 'countries/' + key + '/' + key + '-all';
var chart = this;
_this.drillData = {
point: e.point,
fileName: fileName
};
_this.doDrill(e.point.target, e.point.name);
}
}
return CustomChartWidget;
}
angular.module('widgets')
.factory('DSW.Addons.worldMap', ['BarChart', 'Utils', CustomChartWidgetFact]);
})();
/*
Highmaps JS v5.0.6 (2016-12-07)
Highmaps as a plugin for Highcharts 4.1.x or Highstock 2.1.x (x being the patch version of this file)
(c) 2011-2016 Torstein Honsi
License: www.highcharts.com/license
*/
(function(q){"object"===typeof module&&module.exports?module.exports=q:q(Highcharts)})(function(q){(function(a){var f=a.Axis,p=a.each,g=a.pick;a=a.wrap;a(f.prototype,"getSeriesExtremes",function(a){var d=this.isXAxis,u,f,t=[],c;d&&p(this.series,function(b,a){b.useMapGeometry&&(t[a]=b.xData,b.xData=[])});a.call(this);d&&(u=g(this.dataMin,Number.MAX_VALUE),f=g(this.dataMax,-Number.MAX_VALUE),p(this.series,function(b,a){b.useMapGeometry&&(u=Math.min(u,g(b.minX,u)),f=Math.max(f,g(b.maxX,u)),b.xData=t[a],
c=!0)}),c&&(this.dataMin=u,this.dataMax=f))});a(f.prototype,"setAxisTranslation",function(a){var m=this.chart,d=m.plotWidth/m.plotHeight,m=m.xAxis[0],g;a.call(this);"yAxis"===this.coll&&void 0!==m.transA&&p(this.series,function(a){a.preserveAspectRatio&&(g=!0)});if(g&&(this.transA=m.transA=Math.min(this.transA,m.transA),a=d/((m.max-m.min)/(this.max-this.min)),a=1>a?this:m,d=(a.max-a.min)*a.transA,a.pixelPadding=a.len-d,a.minPixelPadding=a.pixelPadding/2,d=a.fixTo)){d=d[1]-a.toValue(d[0],!0);d*=a.transA;
if(Math.abs(d)>a.minPixelPadding||a.min===a.dataMin&&a.max===a.dataMax)d=0;a.minPixelPadding-=d}});a(f.prototype,"render",function(a){a.call(this);this.fixTo=null})})(q);(function(a){var f=a.Axis,p=a.Chart,g=a.color,d,m=a.each,u=a.extend,x=a.isNumber,t=a.Legend,c=a.LegendSymbolMixin,b=a.noop,k=a.merge,l=a.pick,r=a.wrap;d=a.ColorAxis=function(){this.init.apply(this,arguments)};u(d.prototype,f.prototype);u(d.prototype,{defaultColorAxisOptions:{lineWidth:0,minPadding:0,maxPadding:0,gridLineWidth:1,tickPixelInterval:72,
startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},width:.01,color:"#999999"},labels:{overflow:"justify"},minColor:"#e6ebf5",maxColor:"#003399",tickLength:5,showInLegend:!0},keepProps:["legendGroup","legendItem","legendSymbol"].concat(f.prototype.keepProps),init:function(a,e){var b="vertical"!==a.options.legend.layout,n;this.coll="colorAxis";n=k(this.defaultColorAxisOptions,{side:b?2:1,reversed:!b},e,{opposite:!b,showEmpty:!1,title:null});f.prototype.init.call(this,a,n);e.dataClasses&&
this.initDataClasses(e);this.initStops(e);this.horiz=b;this.zoomEnabled=!1;this.defaultLegendLength=200},tweenColors:function(a,b,c){var e;b.rgba.length&&a.rgba.length?(a=a.rgba,b=b.rgba,e=1!==b[3]||1!==a[3],a=(e?"rgba(":"rgb(")+Math.round(b[0]+(a[0]-b[0])*(1-c))+","+Math.round(b[1]+(a[1]-b[1])*(1-c))+","+Math.round(b[2]+(a[2]-b[2])*(1-c))+(e?","+(b[3]+(a[3]-b[3])*(1-c)):"")+")"):a=b.input||"none";return a},initDataClasses:function(a){var b=this,n=this.chart,c,h=0,l=n.options.chart.colorCount,d=this.options,
r=a.dataClasses.length;this.dataClasses=c=[];this.legendItems=[];m(a.dataClasses,function(a,e){a=k(a);c.push(a);a.color||("category"===d.dataClassColor?(e=n.options.colors,l=e.length,a.color=e[h],a.colorIndex=h,h++,h===l&&(h=0)):a.color=b.tweenColors(g(d.minColor),g(d.maxColor),2>r?.5:e/(r-1)))})},initStops:function(a){this.stops=a.stops||[[0,this.options.minColor],[1,this.options.maxColor]];m(this.stops,function(a){a.color=g(a[1])})},setOptions:function(a){f.prototype.setOptions.call(this,a);this.options.crosshair=
this.options.marker},setAxisSize:function(){var a=this.legendSymbol,b=this.chart,c=b.options.legend||{},k,h;a?(this.left=c=a.attr("x"),this.top=k=a.attr("y"),this.width=h=a.attr("width"),this.height=a=a.attr("height"),this.right=b.chartWidth-c-h,this.bottom=b.chartHeight-k-a,this.len=this.horiz?h:a,this.pos=this.horiz?c:k):this.len=(this.horiz?c.symbolWidth:c.symbolHeight)||this.defaultLegendLength},toColor:function(a,b){var e=this.stops,c,h,k=this.dataClasses,n,l;if(k)for(l=k.length;l--;){if(n=k[l],
c=n.from,e=n.to,(void 0===c||a>=c)&&(void 0===e||a<=e)){h=n.color;b&&(b.dataClass=l,b.colorIndex=n.colorIndex);break}}else{this.isLog&&(a=this.val2lin(a));a=1-(this.max-a)/(this.max-this.min||1);for(l=e.length;l--&&!(a>e[l][0]););c=e[l]||e[l+1];e=e[l+1]||c;a=1-(e[0]-a)/(e[0]-c[0]||1);h=this.tweenColors(c.color,e.color,a)}return h},getOffset:function(){var a=this.legendGroup,b=this.chart.axisOffset[this.side];a&&(this.axisParent=a,f.prototype.getOffset.call(this),this.added||(this.added=!0,this.labelLeft=
0,this.labelRight=this.width),this.chart.axisOffset[this.side]=b)},setLegendColor:function(){var a,b=this.options,c=this.reversed;a=c?1:0;c=c?0:1;a=this.horiz?[a,0,c,0]:[0,c,0,a];this.legendColor={linearGradient:{x1:a[0],y1:a[1],x2:a[2],y2:a[3]},stops:b.stops||[[0,b.minColor],[1,b.maxColor]]}},drawLegendSymbol:function(a,b){var c=a.padding,e=a.options,h=this.horiz,k=l(e.symbolWidth,h?this.defaultLegendLength:12),n=l(e.symbolHeight,h?12:this.defaultLegendLength),d=l(e.labelPadding,h?16:30),e=l(e.itemDistance,
10);this.setLegendColor();b.legendSymbol=this.chart.renderer.rect(0,a.baseline-11,k,n).attr({zIndex:1}).add(b.legendGroup);this.legendItemWidth=k+c+(h?e:d);this.legendItemHeight=n+c+(h?d:0)},setState:b,visible:!0,setVisible:b,getSeriesExtremes:function(){var a;this.series.length&&(a=this.series[0],this.dataMin=a.valueMin,this.dataMax=a.valueMax)},drawCrosshair:function(a,b){var c=b&&b.plotX,e=b&&b.plotY,h,k=this.pos,l=this.len;b&&(h=this.toPixels(b[b.series.colorKey]),h<k?h=k-2:h>k+l&&(h=k+l+2),b.plotX=
h,b.plotY=this.len-h,f.prototype.drawCrosshair.call(this,a,b),b.plotX=c,b.plotY=e,this.cross&&(this.cross.addClass("highcharts-coloraxis-marker").add(this.legendGroup),this.cross.attr({fill:this.crosshair.color})))},getPlotLinePath:function(a,b,c,k,h){return x(h)?this.horiz?["M",h-4,this.top-6,"L",h+4,this.top-6,h,this.top,"Z"]:["M",this.left,h,"L",this.left-6,h+6,this.left-6,h-6,"Z"]:f.prototype.getPlotLinePath.call(this,a,b,c,k)},update:function(a,b){var c=this.chart,e=c.legend;m(this.series,function(a){a.isDirtyData=
!0});a.dataClasses&&e.allItems&&(m(e.allItems,function(a){a.isDataClass&&a.legendGroup.destroy()}),c.isDirtyLegend=!0);c.options[this.coll]=k(this.userOptions,a);f.prototype.update.call(this,a,b);this.legendItem&&(this.setLegendColor(),e.colorizeItem(this,!0))},getDataClassLegendSymbols:function(){var k=this,e=this.chart,l=this.legendItems,d=e.options.legend,h=d.valueDecimals,r=d.valueSuffix||"",g;l.length||m(this.dataClasses,function(d,n){var v=!0,w=d.from,f=d.to;g="";void 0===w?g="\x3c ":void 0===
f&&(g="\x3e ");void 0!==w&&(g+=a.numberFormat(w,h)+r);void 0!==w&&void 0!==f&&(g+=" - ");void 0!==f&&(g+=a.numberFormat(f,h)+r);l.push(u({chart:e,name:g,options:{},drawLegendSymbol:c.drawRectangle,visible:!0,setState:b,isDataClass:!0,setVisible:function(){v=this.visible=!v;m(k.series,function(a){m(a.points,function(a){a.dataClass===n&&a.setVisible(v)})});e.legend.colorizeItem(this,v)}},d))});return l},name:""});m(["fill","stroke"],function(b){a.Fx.prototype[b+"Setter"]=function(){this.elem.attr(b,
d.prototype.tweenColors(g(this.start),g(this.end),this.pos),null,!0)}});r(p.prototype,"getAxes",function(a){var b=this.options.colorAxis;a.call(this);this.colorAxis=[];b&&new d(this,b)});r(t.prototype,"getAllItems",function(a){var b=[],c=this.chart.colorAxis[0];c&&c.options&&(c.options.showInLegend&&(c.options.dataClasses?b=b.concat(c.getDataClassLegendSymbols()):b.push(c)),m(c.series,function(a){a.options.showInLegend=!1}));return b.concat(a.call(this))});r(t.prototype,"colorizeItem",function(a,
b,c){a.call(this,b,c);c&&b.legendColor&&b.legendSymbol.attr({fill:b.legendColor})})})(q);(function(a){var f=a.defined,p=a.each,g=a.noop,d=a.seriesTypes;a.colorPointMixin={isValid:function(){return null!==this.value},setVisible:function(a){var d=this,m=a?"show":"hide";p(["graphic","dataLabel"],function(a){if(d[a])d[a][m]()})},setState:function(d){a.Point.prototype.setState.call(this,d);this.graphic&&this.graphic.attr({zIndex:"hover"===d?1:0})}};a.colorSeriesMixin={pointArrayMap:["value"],axisTypes:["xAxis",
"yAxis","colorAxis"],optionalAxis:"colorAxis",trackerGroups:["group","markerGroup","dataLabelsGroup"],getSymbol:g,parallelArrays:["x","y","value"],colorKey:"value",pointAttribs:d.column.prototype.pointAttribs,translateColors:function(){var a=this,d=this.options.nullColor,g=this.colorAxis,f=this.colorKey;p(this.data,function(c){var b=c[f];if(b=c.options.color||(c.isNull?d:g&&void 0!==b?g.toColor(b,c):c.color||a.color))c.color=b})},colorAttribs:function(a){var d={};f(a.color)&&(d[this.colorProp||"fill"]=
a.color);return d}}})(q);(function(a){function f(a){a&&(a.preventDefault&&a.preventDefault(),a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)}var p=a.addEvent,g=a.Chart,d=a.doc,m=a.each,u=a.extend,x=a.merge,t=a.pick;a=a.wrap;u(g.prototype,{renderMapNavigation:function(){var a=this,b=this.options.mapNavigation,k=b.buttons,l,d,n,e,m,g=function(b){this.handler.call(a,b);f(b)};if(t(b.enableButtons,b.enabled)&&!a.renderer.forExport)for(l in a.mapNavButtons=[],k)k.hasOwnProperty(l)&&(n=x(b.buttonOptions,
k[l]),d=n.theme,d.style=x(n.theme.style,n.style),m=(e=d.states)&&e.hover,e=e&&e.select,d=a.renderer.button(n.text,0,0,g,d,m,e,0,"zoomIn"===l?"topbutton":"bottombutton").addClass("highcharts-map-navigation").attr({width:n.width,height:n.height,title:a.options.lang[l],padding:n.padding,zIndex:5}).add(),d.handler=n.onclick,d.align(u(n,{width:d.width,height:2*d.height}),null,n.alignTo),p(d.element,"dblclick",f),a.mapNavButtons.push(d))},fitToBox:function(a,b){m([["x","width"],["y","height"]],function(c){var d=
c[0];c=c[1];a[d]+a[c]>b[d]+b[c]&&(a[c]>b[c]?(a[c]=b[c],a[d]=b[d]):a[d]=b[d]+b[c]-a[c]);a[c]>b[c]&&(a[c]=b[c]);a[d]<b[d]&&(a[d]=b[d])});return a},mapZoom:function(a,b,d,l,m){var c=this.xAxis[0],e=c.max-c.min,k=t(b,c.min+e/2),g=e*a,e=this.yAxis[0],h=e.max-e.min,w=t(d,e.min+h/2),h=h*a,k=this.fitToBox({x:k-g*(l?(l-c.pos)/c.len:.5),y:w-h*(m?(m-e.pos)/e.len:.5),width:g,height:h},{x:c.dataMin,y:e.dataMin,width:c.dataMax-c.dataMin,height:e.dataMax-e.dataMin}),g=k.x<=c.dataMin&&k.width>=c.dataMax-c.dataMin&&
k.y<=e.dataMin&&k.height>=e.dataMax-e.dataMin;l&&(c.fixTo=[l-c.pos,b]);m&&(e.fixTo=[m-e.pos,d]);void 0===a||g?(c.setExtremes(void 0,void 0,!1),e.setExtremes(void 0,void 0,!1)):(c.setExtremes(k.x,k.x+k.width,!1),e.setExtremes(k.y,k.y+k.height,!1));this.redraw()}});a(g.prototype,"render",function(a){var b=this,c=b.options.mapNavigation;b.renderMapNavigation();a.call(b);(t(c.enableDoubleClickZoom,c.enabled)||c.enableDoubleClickZoomTo)&&p(b.container,"dblclick",function(a){b.pointer.onContainerDblClick(a)});
t(c.enableMouseWheelZoom,c.enabled)&&p(b.container,void 0===d.onmousewheel?"DOMMouseScroll":"mousewheel",function(a){b.pointer.onContainerMouseWheel(a);f(a);return!1})})})(q);(function(a){var f=a.extend,p=a.pick,g=a.Pointer;a=a.wrap;f(g.prototype,{onContainerDblClick:function(a){var d=this.chart;a=this.normalize(a);d.options.mapNavigation.enableDoubleClickZoomTo?d.pointer.inClass(a.target,"highcharts-tracker")&&d.hoverPoint&&d.hoverPoint.zoomTo():d.isInsidePlot(a.chartX-d.plotLeft,a.chartY-d.plotTop)&&
d.mapZoom(.5,d.xAxis[0].toValue(a.chartX),d.yAxis[0].toValue(a.chartY),a.chartX,a.chartY)},onContainerMouseWheel:function(a){var d=this.chart,g;a=this.normalize(a);g=a.detail||-(a.wheelDelta/120);d.isInsidePlot(a.chartX-d.plotLeft,a.chartY-d.plotTop)&&d.mapZoom(Math.pow(d.options.mapNavigation.mouseWheelSensitivity,g),d.xAxis[0].toValue(a.chartX),d.yAxis[0].toValue(a.chartY),a.chartX,a.chartY)}});a(g.prototype,"zoomOption",function(a){var d=this.chart.options.mapNavigation;p(d.enableTouchZoom,d.enabled)&&
(this.chart.options.chart.pinchType="xy");a.apply(this,[].slice.call(arguments,1))});a(g.prototype,"pinchTranslate",function(a,g,f,p,t,c,b){a.call(this,g,f,p,t,c,b);"map"===this.chart.options.chart.type&&this.hasZoom&&(a=p.scaleX>p.scaleY,this.pinchTranslateDirection(!a,g,f,p,t,c,b,a?p.scaleX:p.scaleY))})})(q);(function(a){var f=a.color,p=a.ColorAxis,g=a.colorPointMixin,d=a.each,m=a.extend,u=a.isNumber,x=a.map,t=a.merge,c=a.noop,b=a.pick,k=a.isArray,l=a.Point,r=a.Series,n=a.seriesType,e=a.seriesTypes,
v=a.splat,A=void 0!==a.doc.documentElement.style.vectorEffect;n("map","scatter",{allAreas:!0,animation:!1,nullColor:"#f7f7f7",borderColor:"#cccccc",borderWidth:1,marker:null,stickyTracking:!1,joinBy:"hc-key",dataLabels:{formatter:function(){return this.point.value},inside:!0,verticalAlign:"middle",crop:!1,overflow:!1,padding:0},turboThreshold:0,tooltip:{followPointer:!0,pointFormat:"{point.name}: {point.value}\x3cbr/\x3e"},states:{normal:{animation:!0},hover:{brightness:.2,halo:null},select:{color:"#cccccc"}}},
t(a.colorSeriesMixin,{type:"map",supportsDrilldown:!0,getExtremesFromAll:!0,useMapGeometry:!0,forceDL:!0,searchPoint:c,directTouch:!0,preserveAspectRatio:!0,pointArrayMap:["value"],getBox:function(c){var h=Number.MAX_VALUE,k=-h,e=h,l=-h,g=h,n=h,r=this.xAxis,f=this.yAxis,m;d(c||[],function(c){if(c.path){"string"===typeof c.path&&(c.path=a.splitPath(c.path));var d=c.path||[],r=d.length,f=!1,w=-h,p=h,v=-h,y=h,B=c.properties;if(!c._foundBox){for(;r--;)u(d[r])&&(f?(w=Math.max(w,d[r]),p=Math.min(p,d[r])):
(v=Math.max(v,d[r]),y=Math.min(y,d[r])),f=!f);c._midX=p+(w-p)*(c.middleX||B&&B["hc-middle-x"]||.5);c._midY=y+(v-y)*(c.middleY||B&&B["hc-middle-y"]||.5);c._maxX=w;c._minX=p;c._maxY=v;c._minY=y;c.labelrank=b(c.labelrank,(w-p)*(v-y));c._foundBox=!0}k=Math.max(k,c._maxX);e=Math.min(e,c._minX);l=Math.max(l,c._maxY);g=Math.min(g,c._minY);n=Math.min(c._maxX-c._minX,c._maxY-c._minY,n);m=!0}});m&&(this.minY=Math.min(g,b(this.minY,h)),this.maxY=Math.max(l,b(this.maxY,-h)),this.minX=Math.min(e,b(this.minX,h)),
this.maxX=Math.max(k,b(this.maxX,-h)),r&&void 0===r.options.minRange&&(r.minRange=Math.min(5*n,(this.maxX-this.minX)/5,r.minRange||h)),f&&void 0===f.options.minRange&&(f.minRange=Math.min(5*n,(this.maxY-this.minY)/5,f.minRange||h)))},getExtremes:function(){r.prototype.getExtremes.call(this,this.valueData);this.chart.hasRendered&&this.isDirtyData&&this.getBox(this.options.data);this.valueMin=this.dataMin;this.valueMax=this.dataMax;this.dataMin=this.minY;this.dataMax=this.maxY},translatePath:function(a){var b=
!1,c=this.xAxis,h=this.yAxis,d=c.min,k=c.transA,c=c.minPixelPadding,e=h.min,l=h.transA,h=h.minPixelPadding,g,n=[];if(a)for(g=a.length;g--;)u(a[g])?(n[g]=b?(a[g]-d)*k+c:(a[g]-e)*l+h,b=!b):n[g]=a[g];return n},setData:function(b,c,e,l){var h=this.options,g=this.chart.options.chart,n=g&&g.map,f=h.mapData,m=h.joinBy,p=null===m,w=h.keys||this.pointArrayMap,y=[],A={},z,q=this.chart.mapTransforms;!f&&n&&(f="string"===typeof n?a.maps[n]:n);p&&(m="_i");m=this.joinBy=v(m);m[1]||(m[1]=m[0]);b&&d(b,function(a,
c){var d=0;if(u(a))b[c]={value:a};else if(k(a)){b[c]={};!h.keys&&a.length>w.length&&"string"===typeof a[0]&&(b[c]["hc-key"]=a[0],++d);for(var e=0;e<w.length;++e,++d)w[e]&&(b[c][w[e]]=a[d])}p&&(b[c]._i=c)});this.getBox(b);if(this.chart.mapTransforms=q=g&&g.mapTransforms||f&&f["hc-transform"]||q)for(z in q)q.hasOwnProperty(z)&&z.rotation&&(z.cosAngle=Math.cos(z.rotation),z.sinAngle=Math.sin(z.rotation));if(f){"FeatureCollection"===f.type&&(this.mapTitle=f.title,f=a.geojson(f,this.type,this));this.mapData=
f;this.mapMap={};for(z=0;z<f.length;z++)g=f[z],n=g.properties,g._i=z,m[0]&&n&&n[m[0]]&&(g[m[0]]=n[m[0]]),A[g[m[0]]]=g;this.mapMap=A;b&&m[1]&&d(b,function(a){A[a[m[1]]]&&y.push(A[a[m[1]]])});h.allAreas?(this.getBox(f),b=b||[],m[1]&&d(b,function(a){y.push(a[m[1]])}),y="|"+x(y,function(a){return a&&a[m[0]]}).join("|")+"|",d(f,function(a){m[0]&&-1!==y.indexOf("|"+a[m[0]]+"|")||(b.push(t(a,{value:null})),l=!1)})):this.getBox(y)}r.prototype.setData.call(this,b,c,e,l)},drawGraph:c,drawDataLabels:c,doFullTranslate:function(){return this.isDirtyData||
this.chart.isResizing||this.chart.renderer.isVML||!this.baseTrans},translate:function(){var a=this,b=a.xAxis,c=a.yAxis,e=a.doFullTranslate();a.generatePoints();d(a.data,function(h){h.plotX=b.toPixels(h._midX,!0);h.plotY=c.toPixels(h._midY,!0);e&&(h.shapeType="path",h.shapeArgs={d:a.translatePath(h.path)})});a.translateColors()},pointAttribs:function(a,b){b=e.column.prototype.pointAttribs.call(this,a,b);a.isFading&&delete b.fill;A?b["vector-effect"]="non-scaling-stroke":b["stroke-width"]="inherit";
return b},drawPoints:function(){var a=this,b=a.xAxis,c=a.yAxis,k=a.group,l=a.chart,g=l.renderer,n,f,m,r,p=this.baseTrans,v,u,t,q,x;a.transformGroup||(a.transformGroup=g.g().attr({scaleX:1,scaleY:1}).add(k),a.transformGroup.survive=!0);a.doFullTranslate()?(l.hasRendered&&d(a.points,function(b){b.shapeArgs&&(b.shapeArgs.fill=a.pointAttribs(b,b.state).fill)}),a.group=a.transformGroup,e.column.prototype.drawPoints.apply(a),a.group=k,d(a.points,function(a){a.graphic&&(a.name&&a.graphic.addClass("highcharts-name-"+
a.name.replace(/ /g,"-").toLowerCase()),a.properties&&a.properties["hc-key"]&&a.graphic.addClass("highcharts-key-"+a.properties["hc-key"].toLowerCase()))}),this.baseTrans={originX:b.min-b.minPixelPadding/b.transA,originY:c.min-c.minPixelPadding/c.transA+(c.reversed?0:c.len/c.transA),transAX:b.transA,transAY:c.transA},this.transformGroup.animate({translateX:0,translateY:0,scaleX:1,scaleY:1})):(n=b.transA/p.transAX,f=c.transA/p.transAY,m=b.toPixels(p.originX,!0),r=c.toPixels(p.originY,!0),.99<n&&1.01>
n&&.99<f&&1.01>f&&(f=n=1,m=Math.round(m),r=Math.round(r)),v=this.transformGroup,l.renderer.globalAnimation?(u=v.attr("translateX"),t=v.attr("translateY"),q=v.attr("scaleX"),x=v.attr("scaleY"),v.attr({animator:0}).animate({animator:1},{step:function(a,b){v.attr({translateX:u+(m-u)*b.pos,translateY:t+(r-t)*b.pos,scaleX:q+(n-q)*b.pos,scaleY:x+(f-x)*b.pos})}})):v.attr({translateX:m,translateY:r,scaleX:n,scaleY:f}));A||a.group.element.setAttribute("stroke-width",a.options[a.pointAttrToOptions&&a.pointAttrToOptions["stroke-width"]||
"borderWidth"]/(n||1));this.drawMapDataLabels()},drawMapDataLabels:function(){r.prototype.drawDataLabels.call(this);this.dataLabelsGroup&&this.dataLabelsGroup.clip(this.chart.clipRect)},render:function(){var a=this,b=r.prototype.render;a.chart.renderer.isVML&&3E3<a.data.length?setTimeout(function(){b.call(a)}):b.call(a)},animate:function(a){var b=this.options.animation,c=this.group,d=this.xAxis,h=this.yAxis,e=d.pos,k=h.pos;this.chart.renderer.isSVG&&(!0===b&&(b={duration:1E3}),a?c.attr({translateX:e+
d.len/2,translateY:k+h.len/2,scaleX:.001,scaleY:.001}):(c.animate({translateX:e,translateY:k,scaleX:1,scaleY:1},b),this.animate=null))},animateDrilldown:function(a){var b=this.chart.plotBox,c=this.chart.drilldownLevels[this.chart.drilldownLevels.length-1],e=c.bBox,k=this.chart.options.drilldown.animation;a||(a=Math.min(e.width/b.width,e.height/b.height),c.shapeArgs={scaleX:a,scaleY:a,translateX:e.x,translateY:e.y},d(this.points,function(a){a.graphic&&a.graphic.attr(c.shapeArgs).animate({scaleX:1,
scaleY:1,translateX:0,translateY:0},k)}),this.animate=null)},drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,animateDrillupFrom:function(a){e.column.prototype.animateDrillupFrom.call(this,a)},animateDrillupTo:function(a){e.column.prototype.animateDrillupTo.call(this,a)}}),m({applyOptions:function(a,b){a=l.prototype.applyOptions.call(this,a,b);b=this.series;var c=b.joinBy;b.mapData&&((c=void 0!==a[c[1]]&&b.mapMap[a[c[1]]])?(b.xyFromShape&&(a.x=c._midX,a.y=c._midY),m(a,c)):a.value=a.value||null);
return a},onMouseOver:function(a){clearTimeout(this.colorInterval);if(null!==this.value)l.prototype.onMouseOver.call(this,a);else this.series.onMouseOut(a)},onMouseOut:function(){var a=this,b=+new Date,c=f(this.series.pointAttribs(a).fill),d=f(this.series.pointAttribs(a,"hover").fill),e=a.series.options.states.normal.animation,k=e&&(e.duration||500);k&&4===c.rgba.length&&4===d.rgba.length&&"select"!==a.state&&(clearTimeout(a.colorInterval),a.colorInterval=setInterval(function(){var e=(new Date-b)/
k,l=a.graphic;1<e&&(e=1);l&&l.attr("fill",p.prototype.tweenColors.call(0,d,c,e));1<=e&&clearTimeout(a.colorInterval)},13),a.isFading=!0);l.prototype.onMouseOut.call(a);a.isFading=null},zoomTo:function(){var a=this.series;a.xAxis.setExtremes(this._minX,this._maxX,!1);a.yAxis.setExtremes(this._minY,this._maxY,!1);a.chart.redraw()}},g))})(q);(function(a){var f=a.seriesType,p=a.seriesTypes;f("mapline","map",{lineWidth:1,fillColor:"none"},{type:"mapline",colorProp:"stroke",pointAttrToOptions:{stroke:"color",
"stroke-width":"lineWidth"},pointAttribs:function(a,d){a=p.map.prototype.pointAttribs.call(this,a,d);a.fill=this.options.fillColor;return a},drawLegendSymbol:p.line.prototype.drawLegendSymbol})})(q);(function(a){var f=a.merge,p=a.Point;a=a.seriesType;a("mappoint","scatter",{dataLabels:{enabled:!0,formatter:function(){return this.point.name},crop:!1,defer:!1,overflow:!1,style:{color:"#000000"}}},{type:"mappoint",forceDL:!0},{applyOptions:function(a,d){a=void 0!==a.lat&&void 0!==a.lon?f(a,this.series.chart.fromLatLonToPoint(a)):
a;return p.prototype.applyOptions.call(this,a,d)}})})(q);(function(a){var f=a.merge,p=a.Point,g=a.seriesType,d=a.seriesTypes;d.bubble&&g("mapbubble","bubble",{animationLimit:500,tooltip:{pointFormat:"{point.name}: {point.z}"}},{xyFromShape:!0,type:"mapbubble",pointArrayMap:["z"],getMapData:d.map.prototype.getMapData,getBox:d.map.prototype.getBox,setData:d.map.prototype.setData},{applyOptions:function(a,g){return a&&void 0!==a.lat&&void 0!==a.lon?p.prototype.applyOptions.call(this,f(a,this.series.chart.fromLatLonToPoint(a)),
g):d.map.prototype.pointClass.prototype.applyOptions.call(this,a,g)},ttBelow:!1})})(q);(function(a){var f=a.colorPointMixin,p=a.each,g=a.merge,d=a.noop,m=a.pick,u=a.Series,q=a.seriesType,t=a.seriesTypes;q("heatmap","scatter",{animation:!1,borderWidth:0,nullColor:"#f7f7f7",dataLabels:{formatter:function(){return this.point.value},inside:!0,verticalAlign:"middle",crop:!1,overflow:!1,padding:0},marker:null,pointRange:null,tooltip:{pointFormat:"{point.x}, {point.y}: {point.value}\x3cbr/\x3e"},states:{normal:{animation:!0},
hover:{halo:!1,brightness:.2}}},g(a.colorSeriesMixin,{pointArrayMap:["y","value"],hasPointSpecificOptions:!0,supportsDrilldown:!0,getExtremesFromAll:!0,directTouch:!0,init:function(){var a;t.scatter.prototype.init.apply(this,arguments);a=this.options;a.pointRange=m(a.pointRange,a.colsize||1);this.yAxis.axisPointRange=a.rowsize||1},translate:function(){var a=this.options,b=this.xAxis,d=this.yAxis,l=function(a,b,c){return Math.min(Math.max(b,a),c)};this.generatePoints();p(this.points,function(c){var k=
(a.colsize||1)/2,e=(a.rowsize||1)/2,g=l(Math.round(b.len-b.translate(c.x-k,0,1,0,1)),-b.len,2*b.len),k=l(Math.round(b.len-b.translate(c.x+k,0,1,0,1)),-b.len,2*b.len),f=l(Math.round(d.translate(c.y-e,0,1,0,1)),-d.len,2*d.len),e=l(Math.round(d.translate(c.y+e,0,1,0,1)),-d.len,2*d.len);c.plotX=c.clientX=(g+k)/2;c.plotY=(f+e)/2;c.shapeType="rect";c.shapeArgs={x:Math.min(g,k),y:Math.min(f,e),width:Math.abs(k-g),height:Math.abs(e-f)}});this.translateColors()},drawPoints:function(){t.column.prototype.drawPoints.call(this);
p(this.points,function(a){a.graphic.attr(this.colorAttribs(a))},this)},animate:d,getBox:d,drawLegendSymbol:a.LegendSymbolMixin.drawRectangle,alignDataLabel:t.column.prototype.alignDataLabel,getExtremes:function(){u.prototype.getExtremes.call(this,this.valueData);this.valueMin=this.dataMin;this.valueMax=this.dataMax;u.prototype.getExtremes.call(this)}}),f)})(q);(function(a){function f(a,b){var c,d,g,f=!1,e=a.x,m=a.y;a=0;for(c=b.length-1;a<b.length;c=a++)d=b[a][1]>m,g=b[c][1]>m,d!==g&&e<(b[c][0]-b[a][0])*
(m-b[a][1])/(b[c][1]-b[a][1])+b[a][0]&&(f=!f);return f}var p=a.Chart,g=a.each,d=a.extend,m=a.format,u=a.merge,q=a.win,t=a.wrap;p.prototype.transformFromLatLon=function(c,b){if(void 0===q.proj4)return a.error(21),{x:0,y:null};c=q.proj4(b.crs,[c.lon,c.lat]);var d=b.cosAngle||b.rotation&&Math.cos(b.rotation),l=b.sinAngle||b.rotation&&Math.sin(b.rotation);c=b.rotation?[c[0]*d+c[1]*l,-c[0]*l+c[1]*d]:c;return{x:((c[0]-(b.xoffset||0))*(b.scale||1)+(b.xpan||0))*(b.jsonres||1)+(b.jsonmarginX||0),y:(((b.yoffset||
0)-c[1])*(b.scale||1)+(b.ypan||0))*(b.jsonres||1)-(b.jsonmarginY||0)}};p.prototype.transformToLatLon=function(c,b){if(void 0===q.proj4)a.error(21);else{c={x:((c.x-(b.jsonmarginX||0))/(b.jsonres||1)-(b.xpan||0))/(b.scale||1)+(b.xoffset||0),y:((-c.y-(b.jsonmarginY||0))/(b.jsonres||1)+(b.ypan||0))/(b.scale||1)+(b.yoffset||0)};var d=b.cosAngle||b.rotation&&Math.cos(b.rotation),l=b.sinAngle||b.rotation&&Math.sin(b.rotation);b=q.proj4(b.crs,"WGS84",b.rotation?{x:c.x*d+c.y*-l,y:c.x*l+c.y*d}:c);return{lat:b.y,
lon:b.x}}};p.prototype.fromPointToLatLon=function(c){var b=this.mapTransforms,d;if(b){for(d in b)if(b.hasOwnProperty(d)&&b[d].hitZone&&f({x:c.x,y:-c.y},b[d].hitZone.coordinates[0]))return this.transformToLatLon(c,b[d]);return this.transformToLatLon(c,b["default"])}a.error(22)};p.prototype.fromLatLonToPoint=function(c){var b=this.mapTransforms,d,l;if(!b)return a.error(22),{x:0,y:null};for(d in b)if(b.hasOwnProperty(d)&&b[d].hitZone&&(l=this.transformFromLatLon(c,b[d]),f({x:l.x,y:-l.y},b[d].hitZone.coordinates[0])))return l;
return this.transformFromLatLon(c,b["default"])};a.geojson=function(a,b,k){var c=[],f=[],n=function(a){var b,c=a.length;f.push("M");for(b=0;b<c;b++)1===b&&f.push("L"),f.push(a[b][0],-a[b][1])};b=b||"map";g(a.features,function(a){var e=a.geometry,k=e.type,e=e.coordinates;a=a.properties;var l;f=[];"map"===b||"mapbubble"===b?("Polygon"===k?(g(e,n),f.push("Z")):"MultiPolygon"===k&&(g(e,function(a){g(a,n)}),f.push("Z")),f.length&&(l={path:f})):"mapline"===b?("LineString"===k?n(e):"MultiLineString"===k&&
g(e,n),f.length&&(l={path:f})):"mappoint"===b&&"Point"===k&&(l={x:e[0],y:-e[1]});l&&c.push(d(l,{name:a.name||a.NAME,properties:a}))});k&&a.copyrightShort&&(k.chart.mapCredits=m(k.chart.options.credits.mapText,{geojson:a}),k.chart.mapCreditsFull=m(k.chart.options.credits.mapTextFull,{geojson:a}));return c};t(p.prototype,"addCredits",function(a,b){b=u(!0,this.options.credits,b);this.mapCredits&&(b.href=null);a.call(this,b);this.credits&&this.mapCreditsFull&&this.credits.attr({title:this.mapCreditsFull})})})(q);
(function(a){function f(a,b,c,d,e,f,g,h){return["M",a+e,b,"L",a+c-f,b,"C",a+c-f/2,b,a+c,b+f/2,a+c,b+f,"L",a+c,b+d-g,"C",a+c,b+d-g/2,a+c-g/2,b+d,a+c-g,b+d,"L",a+h,b+d,"C",a+h/2,b+d,a,b+d-h/2,a,b+d-h,"L",a,b+e,"C",a,b+e/2,a+e/2,b,a+e,b,"Z"]}var p=a.Chart,g=a.defaultOptions,d=a.each,m=a.extend,q=a.merge,x=a.pick,t=a.Renderer,c=a.SVGRenderer,b=a.VMLRenderer;m(g.lang,{zoomIn:"Zoom in",zoomOut:"Zoom out"});g.mapNavigation={buttonOptions:{alignTo:"plotBox",align:"left",verticalAlign:"top",x:0,width:18,height:18,
padding:5,style:{fontSize:"15px",fontWeight:"bold"},theme:{"stroke-width":1,"text-align":"center"}},buttons:{zoomIn:{onclick:function(){this.mapZoom(.5)},text:"+",y:0},zoomOut:{onclick:function(){this.mapZoom(2)},text:"-",y:28}},mouseWheelSensitivity:1.1};a.splitPath=function(a){var b;a=a.replace(/([A-Za-z])/g," $1 ");a=a.replace(/^\s*/,"").replace(/\s*$/,"");a=a.split(/[ ,]+/);for(b=0;b<a.length;b++)/[a-zA-Z]/.test(a[b])||(a[b]=parseFloat(a[b]));return a};a.maps={};c.prototype.symbols.topbutton=
function(a,b,c,d,e){return f(a-1,b-1,c,d,e.r,e.r,0,0)};c.prototype.symbols.bottombutton=function(a,b,c,d,e){return f(a-1,b-1,c,d,0,0,e.r,e.r)};t===b&&d(["topbutton","bottombutton"],function(a){b.prototype.symbols[a]=c.prototype.symbols[a]});a.Map=a.mapChart=function(b,c,d){var f="string"===typeof b||b.nodeName,e=arguments[f?1:0],g={endOnTick:!1,visible:!1,minPadding:0,maxPadding:0,startOnTick:!1},k,h=a.getOptions().credits;k=e.series;e.series=null;e=q({chart:{panning:"xy",type:"map"},credits:{mapText:x(h.mapText,
' \u00a9 \x3ca href\x3d"{geojson.copyrightUrl}"\x3e{geojson.copyrightShort}\x3c/a\x3e'),mapTextFull:x(h.mapTextFull,"{geojson.copyright}")},tooltip:{followTouchMove:!1},xAxis:g,yAxis:q(g,{reversed:!0})},e,{chart:{inverted:!1,alignTicks:!1}});e.series=k;return f?new p(b,e,d):new p(e,c)}})(q)});
/*
Highcharts JS v5.0.7 (2017-01-17)
Highcharts Drilldown module
Author: Torstein Honsi
License: www.highcharts.com/license
*/
(function(n){"object"===typeof module&&module.exports?module.exports=n:n(Highcharts)})(function(n){(function(f){function n(b,a,d){var c;a.rgba.length&&b.rgba.length?(b=b.rgba,a=a.rgba,c=1!==a[3]||1!==b[3],b=(c?"rgba(":"rgb(")+Math.round(a[0]+(b[0]-a[0])*(1-d))+","+Math.round(a[1]+(b[1]-a[1])*(1-d))+","+Math.round(a[2]+(b[2]-a[2])*(1-d))+(c?","+(a[3]+(b[3]-a[3])*(1-d)):"")+")"):b=a.input||"none";return b}var B=f.noop,v=f.color,w=f.defaultOptions,l=f.each,p=f.extend,H=f.format,C=f.pick,x=f.wrap,q=f.Chart,
t=f.seriesTypes,D=t.pie,r=t.column,E=f.Tick,y=f.fireEvent,F=f.inArray,G=1;l(["fill","stroke"],function(b){f.Fx.prototype[b+"Setter"]=function(){this.elem.attr(b,n(v(this.start),v(this.end),this.pos),null,!0)}});p(w.lang,{drillUpText:"\u25c1 Back to {series.name}"});w.drilldown={activeAxisLabelStyle:{cursor:"pointer",color:"#003399",fontWeight:"bold",textDecoration:"underline"},activeDataLabelStyle:{cursor:"pointer",color:"#003399",fontWeight:"bold",textDecoration:"underline"},animation:{duration:500},
drillUpButton:{position:{align:"right",x:-10,y:10}}};f.SVGRenderer.prototype.Element.prototype.fadeIn=function(b){this.attr({opacity:.1,visibility:"inherit"}).animate({opacity:C(this.newOpacity,1)},b||{duration:250})};q.prototype.addSeriesAsDrilldown=function(b,a){this.addSingleSeriesAsDrilldown(b,a);this.applyDrilldown()};q.prototype.addSingleSeriesAsDrilldown=function(b,a){var d=b.series,c=d.xAxis,e=d.yAxis,h,g=[],k=[],u,m,z;z={color:b.color||d.color};this.drilldownLevels||(this.drilldownLevels=
[]);u=d.options._levelNumber||0;(m=this.drilldownLevels[this.drilldownLevels.length-1])&&m.levelNumber!==u&&(m=void 0);a=p(p({_ddSeriesId:G++},z),a);h=F(b,d.points);l(d.chart.series,function(a){a.xAxis!==c||a.isDrilling||(a.options._ddSeriesId=a.options._ddSeriesId||G++,a.options._colorIndex=a.userOptions._colorIndex,a.options._levelNumber=a.options._levelNumber||u,m?(g=m.levelSeries,k=m.levelSeriesOptions):(g.push(a),k.push(a.options)))});b=p({levelNumber:u,seriesOptions:d.options,levelSeriesOptions:k,
levelSeries:g,shapeArgs:b.shapeArgs,bBox:b.graphic?b.graphic.getBBox():{},color:b.isNull?(new f.Color(v)).setOpacity(0).get():v,lowerSeriesOptions:a,pointOptions:d.options.data[h],pointIndex:h,oldExtremes:{xMin:c&&c.userMin,xMax:c&&c.userMax,yMin:e&&e.userMin,yMax:e&&e.userMax}},z);this.drilldownLevels.push(b);a=b.lowerSeries=this.addSeries(a,!1);a.options._levelNumber=u+1;c&&(c.oldPos=c.pos,c.userMin=c.userMax=null,e.userMin=e.userMax=null);d.type===a.type&&(a.animate=a.animateDrilldown||B,a.options.animation=
!0)};q.prototype.applyDrilldown=function(){var b=this.drilldownLevels,a;b&&0<b.length&&(a=b[b.length-1].levelNumber,l(this.drilldownLevels,function(b){b.levelNumber===a&&l(b.levelSeries,function(c){c.options&&c.options._levelNumber===a&&c.remove(!1)})}));this.redraw();this.showDrillUpButton()};q.prototype.getDrilldownBackText=function(){var b=this.drilldownLevels;if(b&&0<b.length)return b=b[b.length-1],b.series=b.seriesOptions,H(this.options.lang.drillUpText,b)};q.prototype.showDrillUpButton=function(){var b=
this,a=this.getDrilldownBackText(),d=b.options.drilldown.drillUpButton,c,e;this.drillUpButton?this.drillUpButton.attr({text:a}).align():(e=(c=d.theme)&&c.states,this.drillUpButton=this.renderer.button(a,null,null,function(){b.drillUp()},c,e&&e.hover,e&&e.select).addClass("highcharts-drillup-button").attr({align:d.position.align,zIndex:7}).add().align(d.position,!1,d.relativeTo||"plotBox"))};q.prototype.drillUp=function(){for(var b=this,a=b.drilldownLevels,d=a[a.length-1].levelNumber,c=a.length,e=
b.series,h,g,k,f,m=function(a){var c;l(e,function(b){b.options._ddSeriesId===a._ddSeriesId&&(c=b)});c=c||b.addSeries(a,!1);c.type===k.type&&c.animateDrillupTo&&(c.animate=c.animateDrillupTo);a===g.seriesOptions&&(f=c)};c--;)if(g=a[c],g.levelNumber===d){a.pop();k=g.lowerSeries;if(!k.chart)for(h=e.length;h--;)if(e[h].options.id===g.lowerSeriesOptions.id&&e[h].options._levelNumber===d+1){k=e[h];break}k.xData=[];l(g.levelSeriesOptions,m);y(b,"drillup",{seriesOptions:g.seriesOptions});f.type===k.type&&
(f.drilldownLevel=g,f.options.animation=b.options.drilldown.animation,k.animateDrillupFrom&&k.chart&&k.animateDrillupFrom(g));f.options._levelNumber=d;k.remove(!1);f.xAxis&&(h=g.oldExtremes,f.xAxis.setExtremes(h.xMin,h.xMax,!1),f.yAxis.setExtremes(h.yMin,h.yMax,!1))}y(b,"drillupall");this.redraw();0===this.drilldownLevels.length?this.drillUpButton=this.drillUpButton.destroy():this.drillUpButton.attr({text:this.getDrilldownBackText()}).align();this.ddDupes.length=[]};r.prototype.supportsDrilldown=
!0;r.prototype.animateDrillupTo=function(b){if(!b){var a=this,d=a.drilldownLevel;l(this.points,function(a){var c=a.dataLabel;a.graphic&&a.graphic.hide();c&&(c.hidden="hidden"===c.attr("visibility"),c.hidden||(c.hide(),a.connector&&a.connector.hide()))});setTimeout(function(){a.points&&l(a.points,function(a,b){b=b===(d&&d.pointIndex)?"show":"fadeIn";var c="show"===b?!0:void 0,e=a.dataLabel;if(a.graphic)a.graphic[b](c);if(e&&!e.hidden&&(e[b](c),a.connector))a.connector[b](c)})},Math.max(this.chart.options.drilldown.animation.duration-
50,0));this.animate=B}};r.prototype.animateDrilldown=function(b){var a=this,d=this.chart.drilldownLevels,c,e=this.chart.options.drilldown.animation,h=this.xAxis;b||(l(d,function(b){a.options._ddSeriesId===b.lowerSeriesOptions._ddSeriesId&&(c=b.shapeArgs,c.fill=b.color)}),c.x+=C(h.oldPos,h.pos)-h.pos,l(this.points,function(b){b.shapeArgs.fill=b.color;b.graphic&&b.graphic.attr(c).animate(p(b.shapeArgs,{fill:b.color||a.color}),e);b.dataLabel&&b.dataLabel.fadeIn(e)}),this.animate=null)};r.prototype.animateDrillupFrom=
function(b){var a=this.chart.options.drilldown.animation,d=this.group,c=this;l(c.trackerGroups,function(a){if(c[a])c[a].on("mouseover")});delete this.group;l(this.points,function(c){var e=c.graphic,g=b.shapeArgs,k=function(){e.destroy();d&&(d=d.destroy())};e&&(delete c.graphic,g.fill=b.color,a?e.animate(g,f.merge(a,{complete:k})):(e.attr(g),k()))})};D&&p(D.prototype,{supportsDrilldown:!0,animateDrillupTo:r.prototype.animateDrillupTo,animateDrillupFrom:r.prototype.animateDrillupFrom,animateDrilldown:function(b){var a=
this.chart.drilldownLevels[this.chart.drilldownLevels.length-1],d=this.chart.options.drilldown.animation,c=a.shapeArgs,e=c.start,h=(c.end-e)/this.points.length;b||(l(this.points,function(b,k){var g=b.shapeArgs;c.fill=a.color;g.fill=b.color;if(b.graphic)b.graphic.attr(f.merge(c,{start:e+k*h,end:e+(k+1)*h}))[d?"animate":"attr"](g,d)}),this.animate=null)}});f.Point.prototype.doDrilldown=function(b,a,d){var c=this.series.chart,e=c.options.drilldown,f=(e.series||[]).length,g;c.ddDupes||(c.ddDupes=[]);
for(;f--&&!g;)e.series[f].id===this.drilldown&&-1===F(this.drilldown,c.ddDupes)&&(g=e.series[f],c.ddDupes.push(this.drilldown));y(c,"drilldown",{point:this,seriesOptions:g,category:a,originalEvent:d,points:void 0!==a&&this.series.xAxis.getDDPoints(a).slice(0)},function(a){var c=a.point.series&&a.point.series.chart,d=a.seriesOptions;c&&d&&(b?c.addSingleSeriesAsDrilldown(a.point,d):c.addSeriesAsDrilldown(a.point,d))})};f.Axis.prototype.drilldownCategory=function(b,a){var d,c,e=this.getDDPoints(b);for(d in e)(c=
e[d])&&c.series&&c.series.visible&&c.doDrilldown&&c.doDrilldown(!0,b,a);this.chart.applyDrilldown()};f.Axis.prototype.getDDPoints=function(b){var a=[];l(this.series,function(d){var c,e=d.xData,f=d.points;for(c=0;c<e.length;c++)if(e[c]===b&&d.options.data[c]&&d.options.data[c].drilldown){a.push(f?f[c]:!0);break}});return a};E.prototype.drillable=function(){var b=this.pos,a=this.label,d=this.axis,c="xAxis"===d.coll&&d.getDDPoints,e=c&&d.getDDPoints(b);c&&(a&&e.length?(a.drillable=!0,a.basicStyles||
(a.basicStyles=f.merge(a.styles)),a.addClass("highcharts-drilldown-axis-label").css(d.chart.options.drilldown.activeAxisLabelStyle).on("click",function(a){d.drilldownCategory(b,a)})):a&&a.drillable&&(a.styles={},a.css(a.basicStyles),a.on("click",null),a.removeClass("highcharts-drilldown-axis-label")))};x(E.prototype,"addLabel",function(b){b.call(this);this.drillable()});x(f.Point.prototype,"init",function(b,a,d,c){var e=b.call(this,a,d,c);c=(b=a.xAxis)&&b.ticks[c];e.drilldown&&f.addEvent(e,"click",
function(b){a.xAxis&&!1===a.chart.options.drilldown.allowPointDrilldown?a.xAxis.drilldownCategory(e.x,b):e.doDrilldown(void 0,void 0,b)});c&&c.drillable();return e});x(f.Series.prototype,"drawDataLabels",function(b){var a=this.chart.options.drilldown.activeDataLabelStyle,d=this.chart.renderer;b.call(this);l(this.points,function(b){var c={};b.drilldown&&b.dataLabel&&("contrast"===a.color&&(c.color=d.getContrast(b.color||this.color)),b.dataLabel.addClass("highcharts-drilldown-data-label"),b.dataLabel.css(a).css(c))},
this)});var A,w=function(b){b.call(this);l(this.points,function(a){a.drilldown&&a.graphic&&(a.graphic.addClass("highcharts-drilldown-point"),a.graphic.css({cursor:"pointer"}))})};for(A in t)t[A].prototype.supportsDrilldown&&x(t[A].prototype,"drawTracker",w)})(n)});
Highcharts.maps["custom/world-eckert3"] = {"title":"World, Eckert III projection, medium resolution","version":"1.1.2","type":"FeatureCollection","copyright":"Copyright (c) 2015 Highsoft AS, Based on data from Natural Earth","copyrightShort":"Natural Earth","copyrightUrl":"http://www.naturalearthdata.com","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG:54013"}},
"features":[{"type":"Feature","id":"FO","properties":{"hc-group":"admin0","hc-middle-x":0.76,"hc-middle-y":0.37,"hc-key":"fo","hc-a2":"FO","name":"Faroe Islands","labelrank":"6","country-abbrev":"Faeroe Is.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"FRO","iso-a2":"FO","woe-id":"23424816","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[3815,9147],[3822,9149],[3818,9140],[3804,9148],[3815,9147]]]}},{"type":"Feature","id":"US","properties":{"hc-group":"admin0","hc-middle-x":0.67,"hc-middle-y":0.70,"hc-key":"us","hc-a2":"US","name":"United States of America","labelrank":"2","country-abbrev":"U.S.A.","subregion":"Northern America","region-wb":"North America","iso-a3":"USA","iso-a2":"US","woe-id":"23424977","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[151,8923],[146,8925],[176,8944],[178,8934],[152,8908],[151,8923]]],[[[116,8966],[84,8940],[100,8973],[120,8981],[141,8979],[150,8965],[114,8961],[116,8966]]],[[[-729,9090],[-720,9087],[-728,9074],[-749,9069],[-770,9078],[-729,9090]]],[[[74,8986],[86,8997],[96,8987],[92,8970],[77,8953],[74,8986]]],[[[133,9012],[124,9006],[126,8990],[97,8979],[108,8989],[115,9015],[133,9012]]],[[[-739,9181],[-756,9180],[-800,9192],[-752,9198],[-752,9191],[-719,9185],[-739,9181]]],[[[105,8943],[114,8957],[136,8938],[140,8920],[129,8903],[122,8917],[105,8922],[109,8902],[91,8923],[105,8943]]],[[[-420,9013],[-381,9032],[-385,9016],[-416,9009],[-396,9009],[-398,8999],[-456,8979],[-477,8975],[-482,8990],[-420,9013]]],[[[61,9006],[66,9015],[90,9020],[109,9012],[101,8994],[79,9003],[79,8993],[61,9006]]],[[[1462,8505],[1457,8509],[1448,8497],[1447,8497],[1446,8497],[1430,8478],[1457,8467],[1484,8472],[1570,8506],[1580,8518],[1577,8520],[1576,8523],[1578,8526],[1578,8529],[1608,8533],[1625,8528],[1651,8531],[1669,8539],[1674,8561],[1685,8565],[1688,8569],[1707,8581],[1725,8585],[1725,8585],[1823,8586],[1867,8615],[1881,8641],[1911,8666],[1919,8657],[1937,8663],[1951,8654],[1941,8610],[1945,8605],[1951,8605],[1948,8594],[1956,8591],[1960,8579],[1931,8570],[1905,8556],[1897,8564],[1881,8552],[1839,8530],[1829,8517],[1834,8508],[1818,8498],[1826,8495],[1833,8475],[1817,8463],[1816,8472],[1780,8463],[1753,8462],[1733,8453],[1773,8455],[1750,8446],[1705,8438],[1713,8435],[1706,8414],[1674,8387],[1659,8405],[1669,8382],[1668,8370],[1655,8352],[1635,8335],[1646,8355],[1628,8372],[1638,8375],[1631,8397],[1622,8368],[1627,8353],[1621,8327],[1628,8321],[1629,8279],[1610,8269],[1615,8260],[1598,8245],[1580,8246],[1554,8232],[1548,8220],[1529,8221],[1506,8198],[1466,8176],[1435,8151],[1420,8118],[1422,8087],[1438,8044],[1435,8031],[1446,7990],[1438,7956],[1429,7938],[1404,7934],[1400,7957],[1389,7961],[1386,7978],[1376,7978],[1363,8013],[1375,8022],[1362,8025],[1373,8058],[1345,8092],[1335,8098],[1302,8081],[1268,8111],[1257,8107],[1196,8101],[1184,8108],[1158,8099],[1139,8106],[1139,8095],[1157,8099],[1156,8091],[1176,8103],[1181,8088],[1167,8077],[1166,8061],[1142,8076],[1116,8063],[1091,8086],[1068,8079],[1041,8087],[1012,8083],[959,8054],[903,8031],[911,8029],[893,8003],[894,7962],[860,7966],[832,7982],[833,7994],[826,7998],[827,8015],[807,8038],[799,8065],[790,8076],[787,8078],[782,8082],[752,8091],[739,8085],[719,8061],[693,8072],[680,8084],[674,8112],[631,8152],[578,8152],[574,8138],[484,8138],[374,8176],[379,8183],[301,8177],[300,8196],[280,8217],[274,8215],[265,8186],[259,8194],[272,8220],[241,8239],[213,8240],[213,8262],[198,8280],[185,8310],[193,8317],[178,8330],[180,8349],[190,8338],[184,8360],[180,8350],[155,8386],[161,8416],[150,8436],[172,8469],[174,8515],[193,8538],[229,8604],[233,8627],[245,8643],[240,8648],[247,8696],[260,8690],[300,8687],[305,8696],[292,8701],[315,8704],[311,8716],[1142,8716],[1155,8727],[1154,8710],[1213,8701],[1244,8685],[1300,8684],[1318,8682],[1328,8663],[1348,8664],[1330,8649],[1347,8645],[1353,8635],[1375,8633],[1391,8641],[1428,8644],[1423,8636],[1439,8633],[1451,8635],[1450,8630],[1444,8625],[1452,8621],[1453,8621],[1463,8616],[1430,8620],[1426,8614],[1404,8621],[1403,8596],[1430,8612],[1459,8597],[1463,8588],[1455,8563],[1436,8552],[1439,8540],[1455,8552],[1472,8550],[1473,8521],[1467,8508],[1462,8505]]],[[[303,8716],[301,8716],[301,8716],[303,8716]]],[[[-786,8908],[-780,8897],[-791,8905],[-841,8894],[-822,8909],[-790,8915],[-787,8909],[-782,8917],[-719,8942],[-681,8945],[-668,8955],[-613,8973],[-562,8997],[-533,9026],[-510,9040],[-548,9031],[-566,9037],[-578,9025],[-582,9041],[-594,9036],[-600,9046],[-628,9030],[-647,9036],[-643,9053],[-628,9060],[-629,9081],[-674,9070],[-706,9095],[-677,9104],[-658,9096],[-643,9101],[-673,9105],[-699,9126],[-674,9138],[-674,9143],[-630,9163],[-609,9179],[-592,9184],[-569,9177],[-539,9189],[-502,9192],[-484,9200],[-474,9216],[-478,9225],[-458,9229],[-460,9238],[-530,9221],[-543,9227],[-582,9223],[-609,9227],[-613,9246],[-586,9250],[-617,9254],[-629,9263],[-553,9282],[-506,9292],[-477,9293],[-493,9276],[-439,9276],[-414,9281],[-430,9289],[-437,9303],[-427,9305],[-424,9288],[-404,9286],[-383,9291],[-397,9295],[-418,9291],[-410,9308],[-429,9306],[-460,9310],[-455,9326],[-474,9341],[-497,9350],[-467,9368],[-414,9369],[-364,9385],[-346,9399],[-298,9416],[-270,9416],[-221,9431],[-177,9432],[-127,9447],[-100,9443],[-121,9436],[-111,9432],[-91,9441],[-86,9431],[-47,9435],[-25,9432],[-30,9419],[39,9422],[90,9410],[123,9410],[133,9404],[190,9408],[236,9393],[170,9321],[137,9283],[74,9207],[41,9164],[-15,9087],[10,9083],[40,9088],[31,9079],[58,9052],[56,9041],[84,9049],[101,9063],[131,9070],[135,9053],[161,9025],[178,8965],[211,8949],[210,8943],[199,8922],[181,8910],[163,8907],[166,8920],[181,8936],[177,8945],[159,8942],[145,8929],[157,8967],[148,8979],[132,8984],[142,8992],[135,9014],[123,9019],[122,9054],[109,9019],[72,9025],[62,9019],[43,9031],[35,9047],[-0,9062],[14,9073],[-10,9067],[-71,9080],[-106,9077],[-128,9087],[-157,9093],[-148,9104],[-178,9109],[-207,9103],[-214,9077],[-262,9077],[-303,9058],[-332,9051],[-353,9055],[-323,9064],[-339,9070],[-315,9084],[-303,9100],[-265,9111],[-233,9106],[-263,9120],[-300,9109],[-325,9097],[-321,9093],[-349,9084],[-360,9074],[-414,9057],[-423,9045],[-401,9042],[-425,9032],[-451,9014],[-472,9012],[-504,8997],[-511,8997],[-540,8978],[-604,8961],[-605,8955],[-639,8943],[-696,8928],[-681,8928],[-688,8915],[-702,8930],[-786,8908]]],[[[-943,8861],[-937,8862],[-937,8862],[-938,8861],[-943,8861],[-943,8861]]],[[[-943,8861],[-954,8860],[-999,8844],[-968,8863],[-943,8861],[-943,8861]]],[[[-937,8862],[-923,8876],[-887,8884],[-892,8875],[-914,8865],[-937,8862],[-937,8862]]]]}},{"type":"Feature","id":"JP","properties":{"hc-group":"admin0","hc-middle-x":0.75,"hc-middle-y":0.52,"hc-key":"jp","hc-a2":"JP","name":"Japan","labelrank":"2","country-abbrev":"Japan","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"JPN","iso-a2":"JP","woe-id":"23424856","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8253,8235],[8248,8200],[8231,8210],[8219,8205],[8209,8184],[8197,8190],[8187,8208],[8200,8230],[8208,8223],[8236,8238],[8253,8235]]],[[[8135,8157],[8143,8181],[8126,8166],[8126,8186],[8098,8198],[8087,8181],[8078,8180],[8100,8205],[8103,8215],[8082,8229],[8103,8219],[8115,8207],[8126,8220],[8147,8213],[8165,8214],[8183,8191],[8176,8177],[8176,8139],[8165,8139],[8173,8120],[8159,8138],[8141,8135],[8135,8157]]],[[[8394,8440],[8416,8422],[8426,8403],[8418,8378],[8424,8365],[8410,8368],[8408,8358],[8420,8336],[8417,8300],[8432,8282],[8424,8264],[8413,8255],[8402,8276],[8384,8266],[8379,8246],[8375,8262],[8361,8248],[8324,8244],[8310,8259],[8309,8245],[8322,8235],[8304,8228],[8301,8212],[8285,8210],[8270,8221],[8273,8247],[8243,8251],[8242,8239],[8221,8242],[8195,8235],[8182,8218],[8163,8227],[8147,8223],[8135,8238],[8149,8239],[8183,8274],[8181,8293],[8190,8278],[8202,8273],[8235,8280],[8274,8274],[8276,8290],[8290,8312],[8286,8335],[8301,8341],[8299,8319],[8334,8329],[8345,8343],[8331,8351],[8358,8358],[8363,8405],[8350,8420],[8343,8441],[8353,8448],[8350,8463],[8366,8450],[8379,8450],[8376,8463],[8364,8459],[8364,8472],[8383,8460],[8394,8440]]],[[[8431,8507],[8430,8485],[8377,8507],[8355,8498],[8344,8506],[8335,8496],[8369,8481],[8335,8473],[8334,8487],[8319,8495],[8316,8509],[8332,8520],[8325,8532],[8350,8525],[8355,8532],[8347,8574],[8333,8591],[8325,8591],[8315,8596],[8338,8602],[8401,8563],[8448,8550],[8462,8560],[8460,8545],[8476,8526],[8463,8517],[8445,8519],[8431,8507]]]]}},{"type":"Feature","id":"IN","properties":{"hc-group":"admin0","hc-middle-x":0.35,"hc-middle-y":0.47,"hc-key":"in","hc-a2":"IN","name":"India","labelrank":"2","country-abbrev":"India","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"IND","iso-a2":"IN","woe-id":"23424848","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7028,7468],[7027,7499],[7033,7549],[7038,7560],[7040,7521],[7028,7468]]],[[[6882,7830],[6882,7830],[6882,7830],[6884,7820],[6857,7817],[6847,7827],[6823,7817],[6813,7802],[6820,7788],[6802,7765],[6779,7758],[6772,7763],[6734,7710],[6719,7702],[6709,7688],[6680,7669],[6681,7654],[6663,7646],[6648,7646],[6635,7626],[6618,7626],[6612,7603],[6626,7549],[6622,7522],[6613,7505],[6616,7449],[6601,7450],[6588,7428],[6589,7415],[6565,7405],[6560,7385],[6542,7376],[6525,7386],[6509,7403],[6483,7475],[6460,7505],[6447,7532],[6438,7565],[6427,7588],[6412,7605],[6395,7638],[6387,7668],[6372,7713],[6359,7762],[6364,7784],[6351,7812],[6368,7823],[6349,7822],[6341,7843],[6337,7806],[6302,7790],[6281,7797],[6241,7831],[6240,7841],[6270,7850],[6276,7863],[6255,7857],[6219,7870],[6202,7892],[6219,7896],[6222,7905],[6258,7903],[6276,7911],[6283,7905],[6291,7920],[6275,7952],[6255,7962],[6255,7980],[6232,7990],[6234,8002],[6259,8030],[6268,8020],[6304,8027],[6316,8054],[6333,8062],[6343,8092],[6375,8131],[6370,8150],[6393,8164],[6374,8175],[6370,8187],[6360,8185],[6347,8198],[6333,8237],[6349,8250],[6396,8242],[6422,8250],[6432,8262],[6453,8274],[6474,8246],[6496,8237],[6491,8228],[6497,8209],[6517,8198],[6523,8184],[6507,8171],[6489,8177],[6504,8158],[6507,8138],[6521,8138],[6536,8125],[6585,8101],[6567,8086],[6561,8056],[6578,8051],[6625,8024],[6654,8012],[6690,8007],[6698,8013],[6713,8007],[6717,7997],[6757,7982],[6806,7975],[6831,7987],[6823,7999],[6824,8024],[6845,8028],[6851,8006],[6860,7990],[6884,7986],[6944,7989],[6956,7994],[6949,8011],[6937,8021],[6968,8026],[6968,8033],[6990,8051],[7016,8062],[7024,8072],[7046,8063],[7071,8073],[7104,8039],[7116,8036],[7118,8025],[7101,8008],[7084,8004],[7053,7979],[7055,7954],[7044,7943],[7049,7931],[7036,7892],[7009,7897],[7016,7869],[7009,7865],[7012,7845],[7005,7831],[6995,7831],[6982,7874],[6973,7889],[6959,7863],[6941,7885],[6946,7901],[6969,7911],[6978,7928],[6963,7936],[6909,7935],[6890,7943],[6889,7961],[6842,7978],[6832,7960],[6863,7936],[6847,7937],[6836,7919],[6861,7907],[6858,7886],[6870,7864],[6876,7846],[6882,7830]]]]}},{"type":"Feature","id":"FR","properties":{"hc-group":"admin0","hc-middle-x":0.28,"hc-middle-y":0.04,"hc-key":"fr","hc-a2":"FR","name":"France","labelrank":"2","country-abbrev":"Fr.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"FRA","iso-a2":"FR","woe-id":"-90","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4300,8508],[4303,8491],[4293,8466],[4280,8473],[4272,8495],[4280,8507],[4300,8508]]],[[[9320,6431],[9318,6454],[9357,6415],[9378,6402],[9395,6383],[9387,6377],[9344,6405],[9320,6431]]],[[[1962,7703],[1965,7705],[1965,7702],[1962,7703]]],[[[4238,8546],[4238,8545],[4237,8544],[4236,8545],[4234,8544],[4203,8523],[4173,8527],[4130,8538],[4102,8518],[4106,8501],[4086,8498],[4069,8502],[4069,8502],[4069,8502],[4061,8504],[4061,8507],[4052,8507],[4028,8515],[4007,8510],[3967,8523],[3953,8533],[3963,8539],[3972,8575],[3976,8619],[3954,8634],[3948,8652],[3923,8667],[3888,8680],[3876,8677],[3867,8686],[3878,8690],[3866,8702],[3913,8712],[3927,8700],[3961,8708],[3950,8740],[3970,8739],[3973,8730],[4002,8726],[4013,8739],[4045,8749],[4054,8758],[4055,8778],[4084,8785],[4118,8760],[4134,8757],[4132,8748],[4152,8748],[4172,8733],[4182,8734],[4187,8731],[4199,8731],[4214,8723],[4255,8715],[4237,8688],[4238,8670],[4222,8662],[4194,8637],[4198,8628],[4200,8630],[4202,8631],[4215,8632],[4214,8623],[4222,8616],[4216,8608],[4227,8599],[4210,8589],[4222,8580],[4222,8561],[4243,8558],[4238,8546]]],[[[2235,7287],[2243,7300],[2275,7290],[2316,7255],[2316,7244],[2294,7215],[2286,7193],[2273,7183],[2261,7188],[2235,7181],[2220,7188],[2234,7205],[2240,7225],[2229,7244],[2225,7272],[2235,7287]]]]}},{"type":"Feature","id":"CN","properties":{"hc-group":"admin0","hc-middle-x":0.44,"hc-middle-y":0.52,"hc-key":"cn","hc-a2":"CN","name":"China","labelrank":"2","country-abbrev":"China","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"CHN","iso-a2":"CN","woe-id":"23424781","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7570,7715],[7560,7707],[7530,7718],[7525,7743],[7557,7767],[7588,7772],[7600,7757],[7592,7747],[7586,7724],[7570,7715]]],[[[6824,8024],[6793,8023],[6773,8032],[6755,8025],[6744,8040],[6725,8039],[6726,8048],[6710,8048],[6688,8070],[6670,8067],[6657,8082],[6622,8096],[6619,8105],[6596,8106],[6585,8101],[6536,8125],[6521,8138],[6507,8138],[6504,8158],[6489,8177],[6507,8171],[6523,8184],[6517,8198],[6497,8209],[6491,8228],[6496,8237],[6474,8246],[6453,8274],[6441,8273],[6420,8279],[6391,8292],[6390,8306],[6360,8323],[6342,8324],[6336,8328],[6352,8331],[6339,8373],[6310,8375],[6298,8404],[6305,8423],[6328,8438],[6350,8442],[6356,8431],[6383,8442],[6385,8453],[6425,8456],[6431,8467],[6457,8480],[6483,8488],[6482,8493],[6477,8508],[6493,8525],[6474,8554],[6467,8574],[6456,8587],[6501,8597],[6528,8589],[6519,8603],[6526,8658],[6582,8645],[6602,8653],[6604,8664],[6594,8681],[6598,8697],[6620,8701],[6623,8720],[6637,8719],[6642,8720],[6651,8722],[6663,8702],[6700,8684],[6716,8684],[6743,8673],[6776,8637],[6780,8619],[6774,8602],[6784,8592],[6827,8586],[6867,8584],[6882,8575],[6920,8561],[6931,8562],[6956,8528],[6975,8511],[7001,8513],[7073,8506],[7089,8509],[7140,8504],[7156,8493],[7189,8487],[7211,8479],[7235,8483],[7237,8476],[7258,8479],[7301,8497],[7342,8502],[7383,8502],[7408,8512],[7419,8530],[7444,8543],[7420,8567],[7431,8588],[7483,8577],[7504,8598],[7538,8600],[7550,8609],[7556,8628],[7577,8630],[7601,8642],[7646,8638],[7648,8648],[7636,8658],[7593,8683],[7568,8683],[7567,8682],[7564,8676],[7543,8680],[7515,8674],[7499,8688],[7511,8743],[7548,8733],[7568,8748],[7584,8750],[7578,8761],[7586,8804],[7599,8819],[7591,8833],[7567,8840],[7583,8856],[7649,8866],[7682,8860],[7705,8851],[7732,8847],[7770,8820],[7769,8815],[7797,8792],[7799,8784],[7832,8756],[7837,8742],[7857,8734],[7898,8730],[7933,8712],[7959,8693],[7958,8686],[7975,8673],[8019,8674],[8030,8687],[8065,8696],[8077,8692],[8087,8675],[8075,8659],[8083,8627],[8078,8604],[8067,8587],[8056,8596],[8039,8593],[8012,8580],[8033,8554],[8041,8535],[8040,8515],[8024,8511],[8030,8505],[8004,8519],[8006,8502],[7995,8502],[7986,8488],[7960,8487],[7971,8467],[7942,8471],[7928,8481],[7920,8476],[7910,8451],[7881,8438],[7869,8425],[7864,8416],[7842,8415],[7818,8403],[7821,8398],[7784,8380],[7796,8401],[7777,8406],[7793,8421],[7800,8438],[7783,8449],[7761,8452],[7746,8428],[7721,8418],[7712,8395],[7674,8393],[7672,8377],[7694,8361],[7718,8361],[7730,8333],[7747,8327],[7780,8351],[7811,8337],[7826,8342],[7845,8337],[7840,8318],[7829,8323],[7794,8306],[7796,8295],[7768,8277],[7759,8259],[7777,8243],[7799,8235],[7830,8193],[7832,8182],[7869,8158],[7874,8141],[7843,8154],[7871,8136],[7882,8124],[7854,8112],[7848,8102],[7868,8105],[7880,8094],[7898,8110],[7890,8082],[7896,8063],[7883,8071],[7892,8040],[7869,8027],[7864,8002],[7846,7984],[7844,7953],[7854,7949],[7843,7939],[7824,7934],[7821,7916],[7774,7883],[7759,7878],[7761,7863],[7741,7857],[7707,7859],[7692,7851],[7695,7834],[7680,7845],[7668,7866],[7670,7839],[7648,7825],[7628,7826],[7612,7817],[7583,7811],[7571,7798],[7578,7776],[7563,7775],[7551,7797],[7551,7815],[7508,7828],[7495,7815],[7473,7819],[7451,7832],[7439,7862],[7419,7862],[7399,7877],[7360,7849],[7337,7858],[7329,7846],[7310,7857],[7301,7845],[7282,7840],[7292,7826],[7293,7804],[7279,7805],[7274,7817],[7271,7824],[7243,7813],[7232,7834],[7206,7837],[7213,7867],[7192,7871],[7179,7900],[7149,7893],[7142,7912],[7145,7932],[7173,7960],[7163,8014],[7151,8013],[7142,8033],[7121,8046],[7116,8036],[7104,8039],[7071,8073],[7046,8063],[7024,8072],[7016,8062],[6990,8051],[6968,8033],[6968,8026],[6937,8021],[6889,8040],[6869,8033],[6851,8006],[6845,8028],[6824,8024]]]]}},{"type":"Feature","id":"SW","properties":{"hc-group":"admin0","hc-middle-x":0.74,"hc-middle-y":0.42,"hc-key":"sw","hc-a2":"SW","name":"Serranilla Bank","labelrank":"5","country-abbrev":"S.B.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"-99","iso-a2":"SW","woe-id":"-99","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1453,7631],[1452,7631],[1452,7631],[1453,7631]]]}},{"type":"Feature","id":"SH","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.51,"hc-key":"sh","hc-a2":"SH","name":"Scarborough Reef","labelrank":"6","country-abbrev":"S.R.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"-99","iso-a2":"SH","woe-id":"-99","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7838,7608],[7838,7608],[7838,7608],[7838,7608],[7838,7608]]]}},{"type":"Feature","id":"EC","properties":{"hc-group":"admin0","hc-middle-x":0.72,"hc-middle-y":0.44,"hc-key":"ec","hc-a2":"EC","name":"Ecuador","labelrank":"3","country-abbrev":"Ecu.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"ECU","iso-a2":"EC","woe-id":"23424801","continent":"South America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1031,7103],[1084,7086],[1075,7080],[1042,7089],[1041,7099],[1029,7098],[1030,7080],[1014,7078],[1024,7093],[1015,7102],[1031,7103]]],[[[1426,7158],[1435,7151],[1471,7133],[1473,7124],[1505,7120],[1509,7127],[1542,7108],[1531,7108],[1543,7094],[1533,7061],[1516,7042],[1497,7027],[1458,7013],[1442,7000],[1433,6962],[1420,6947],[1405,6963],[1385,6971],[1377,6965],[1372,6978],[1383,6984],[1377,7000],[1390,7007],[1396,7024],[1380,7013],[1380,7022],[1358,7035],[1364,7048],[1358,7076],[1370,7082],[1371,7099],[1386,7113],[1384,7136],[1415,7147],[1426,7158]]]]}},{"type":"Feature","id":"AU","properties":{"hc-group":"admin0","hc-middle-x":0.58,"hc-middle-y":0.45,"hc-key":"au","hc-a2":"AU","name":"Australia","labelrank":"2","country-abbrev":"Auz.","subregion":"Australia and New Zealand","region-wb":"East Asia & Pacific","iso-a3":"AUS","iso-a2":"AU","woe-id":"-90","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8333,5946],[8345,5940],[8322,5929],[8299,5930],[8298,5940],[8333,5946]]],[[[8264,6732],[8269,6725],[8249,6724],[8262,6744],[8273,6738],[8290,6744],[8297,6731],[8279,6720],[8264,6732]]],[[[8578,5732],[8557,5696],[8549,5708],[8517,5682],[8493,5685],[8483,5716],[8487,5729],[8486,5766],[8495,5785],[8481,5799],[8479,5811],[8501,5786],[8499,5777],[8543,5763],[8590,5773],[8600,5783],[8606,5811],[8613,5787],[8605,5785],[8586,5732],[8578,5732]]],[[[8732,6576],[8749,6534],[8742,6514],[8752,6508],[8751,6487],[8781,6475],[8783,6466],[8825,6446],[8813,6438],[8829,6421],[8833,6383],[8844,6370],[8842,6385],[8869,6368],[8864,6353],[8881,6326],[8890,6324],[8908,6286],[8919,6282],[8933,6292],[8917,6266],[8911,6224],[8919,6213],[8909,6192],[8907,6166],[8869,6105],[8860,6080],[8839,6058],[8837,6049],[8809,6034],[8775,5994],[8723,5935],[8702,5902],[8698,5883],[8679,5874],[8641,5872],[8616,5864],[8587,5846],[8573,5842],[8566,5829],[8551,5846],[8528,5850],[8537,5870],[8480,5839],[8450,5855],[8426,5853],[8401,5864],[8381,5893],[8391,5911],[8390,5931],[8376,5947],[8348,5945],[8361,5954],[8370,5973],[8362,5993],[8339,5959],[8312,5955],[8321,5968],[8334,5968],[8335,5981],[8371,6026],[8353,6026],[8340,6009],[8318,6001],[8277,5966],[8274,6001],[8264,6023],[8252,6025],[8255,6048],[8243,6057],[8225,6057],[8217,6065],[8198,6062],[8168,6080],[8098,6073],[8039,6054],[8005,6056],[7930,6025],[7905,6000],[7858,6004],[7794,6000],[7773,5984],[7753,5983],[7735,5968],[7694,5963],[7659,5970],[7634,5995],[7639,6013],[7648,6009],[7663,6021],[7671,6042],[7677,6075],[7667,6102],[7665,6122],[7671,6146],[7663,6177],[7654,6191],[7655,6217],[7638,6246],[7631,6275],[7653,6240],[7646,6269],[7650,6276],[7663,6245],[7669,6267],[7654,6308],[7656,6324],[7669,6341],[7671,6372],[7687,6395],[7689,6374],[7708,6396],[7742,6413],[7740,6432],[7753,6422],[7763,6429],[7795,6437],[7813,6435],[7828,6445],[7850,6447],[7861,6457],[7876,6454],[7923,6468],[7936,6477],[7959,6507],[7974,6517],[7973,6546],[8004,6575],[8002,6568],[8017,6538],[8022,6555],[8028,6548],[8024,6582],[8049,6576],[8055,6612],[8070,6609],[8079,6633],[8110,6636],[8117,6651],[8129,6645],[8143,6662],[8157,6655],[8179,6630],[8172,6610],[8190,6628],[8225,6618],[8230,6625],[8218,6639],[8232,6652],[8239,6671],[8251,6675],[8249,6687],[8267,6706],[8335,6714],[8331,6735],[8310,6742],[8335,6750],[8336,6734],[8345,6740],[8352,6728],[8373,6728],[8392,6716],[8403,6720],[8412,6710],[8441,6723],[8431,6713],[8445,6711],[8458,6720],[8473,6709],[8456,6693],[8434,6661],[8467,6659],[8456,6644],[8444,6658],[8434,6654],[8414,6623],[8446,6596],[8483,6579],[8499,6563],[8521,6558],[8532,6572],[8527,6544],[8549,6531],[8578,6540],[8604,6585],[8616,6620],[8615,6654],[8624,6677],[8622,6686],[8635,6699],[8624,6701],[8647,6746],[8649,6778],[8652,6760],[8663,6759],[8670,6739],[8668,6724],[8678,6719],[8673,6708],[8684,6698],[8682,6661],[8693,6636],[8712,6647],[8716,6635],[8736,6622],[8731,6606],[8732,6576]]]]}},{"type":"Feature","id":"PH","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.07,"hc-key":"ph","hc-a2":"PH","name":"Philippines","labelrank":"2","country-abbrev":"Phil.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"PHL","iso-a2":"PH","woe-id":"23424934","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8047,7416],[8028,7407],[8006,7434],[8020,7442],[8018,7456],[8029,7472],[8041,7466],[8030,7435],[8037,7417],[8047,7416]]],[[[8052,7431],[8063,7443],[8074,7443],[8068,7426],[8036,7423],[8053,7471],[8057,7451],[8046,7441],[8052,7431]]],[[[8069,7487],[8088,7480],[8089,7464],[8097,7443],[8083,7444],[8081,7466],[8065,7459],[8069,7487]]],[[[8032,7521],[8038,7526],[8053,7498],[8033,7511],[8032,7521]]],[[[7925,7559],[7956,7552],[7968,7542],[7970,7524],[7962,7511],[7925,7559]]],[[[8081,7489],[8082,7497],[8059,7522],[8088,7523],[8100,7513],[8101,7492],[8110,7476],[8095,7475],[8081,7489]]],[[[7988,7501],[8010,7489],[8027,7487],[8025,7477],[8010,7462],[7990,7453],[7991,7493],[7988,7501],[7988,7501],[7988,7501]]],[[[8067,7322],[8065,7344],[8071,7354],[8044,7367],[8045,7353],[8029,7352],[8020,7367],[8009,7356],[8001,7332],[7993,7327],[8000,7365],[8005,7373],[8027,7379],[8041,7397],[8053,7393],[8058,7379],[8068,7380],[8074,7393],[8086,7390],[8085,7409],[8096,7401],[8109,7407],[8104,7429],[8107,7441],[8111,7427],[8123,7431],[8137,7401],[8141,7368],[8149,7350],[8138,7332],[8122,7352],[8110,7330],[8121,7312],[8112,7294],[8101,7303],[8073,7314],[8067,7322]]],[[[7863,7414],[7904,7463],[7899,7470],[7907,7486],[7921,7493],[7917,7515],[7932,7507],[7910,7478],[7917,7456],[7886,7435],[7879,7416],[7844,7389],[7853,7408],[7863,7414]]],[[[8016,7570],[8050,7563],[8031,7557],[8051,7538],[8053,7523],[8031,7538],[8020,7552],[7998,7569],[8002,7543],[7985,7562],[7971,7569],[7963,7559],[7933,7576],[7945,7588],[7930,7597],[7933,7587],[7915,7596],[7901,7633],[7900,7647],[7920,7641],[7912,7686],[7915,7717],[7932,7722],[7960,7710],[7967,7718],[7943,7743],[7958,7734],[7973,7713],[7970,7692],[7985,7671],[7978,7643],[7959,7633],[7955,7614],[7969,7594],[7971,7576],[7990,7573],[7995,7581],[8016,7570]]],[[[7988,7501],[7986,7502],[7985,7510],[7988,7501],[7988,7501],[7988,7501]]]]}},{"type":"Feature","id":"ES","properties":{"hc-group":"admin0","hc-middle-x":0.75,"hc-middle-y":0.26,"hc-key":"es","hc-a2":"ES","name":"Spain","labelrank":"2","country-abbrev":"Sp.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"ESP","iso-a2":"ES","woe-id":"23424950","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[3439,8044],[3443,8053],[3462,8032],[3468,8040],[3494,8047],[3516,8033],[3510,8020],[3484,8033],[3459,8029],[3439,8044]]],[[[4127,8423],[4101,8393],[4100,8401],[4082,8409],[4107,8421],[4108,8413],[4127,8423]]],[[[3839,8288],[3842,8287],[3841,8286],[3839,8287],[3839,8288]]],[[[3840,8295],[3832,8291],[3815,8301],[3805,8322],[3776,8330],[3773,8342],[3789,8357],[3779,8371],[3791,8389],[3773,8411],[3790,8412],[3798,8433],[3793,8455],[3816,8473],[3805,8485],[3756,8481],[3755,8492],[3738,8486],[3736,8510],[3725,8525],[3752,8533],[3766,8545],[3785,8538],[3843,8538],[3880,8533],[3898,8537],[3953,8533],[3967,8523],[4007,8510],[4028,8515],[4052,8507],[4055,8501],[4061,8504],[4069,8502],[4068,8502],[4069,8503],[4070,8502],[4069,8502],[4086,8498],[4106,8501],[4108,8486],[4072,8463],[4039,8456],[3998,8406],[4004,8387],[4016,8380],[3992,8367],[3986,8344],[3956,8335],[3943,8316],[3869,8314],[3846,8304],[3841,8295],[3840,8295]]],[[[3916,8267],[3915,8268],[3916,8269],[3916,8269],[3916,8269],[3917,8267],[3916,8267]]]]}},{"type":"Feature","id":"BU","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.73,"hc-key":"bu","hc-a2":"BU","name":"Bajo Nuevo Bank (Petrel Is.)","labelrank":"8","country-abbrev":null,"subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"-99","iso-a2":"BU","woe-id":"-99","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1408,7629],[1408,7629],[1408,7629],[1408,7629],[1408,7629]]]}},{"type":"Feature","id":"MV","properties":{"hc-group":"admin0","hc-middle-x":0.57,"hc-middle-y":0.64,"hc-key":"mv","hc-a2":"MV","name":"Maldives","labelrank":"5","country-abbrev":"Mald.","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"MDV","iso-a2":"MV","woe-id":"23424899","continent":"Seven seas (open ocean)"},"geometry":{"type":"Polygon","coordinates":[[[6417,7284],[6408,7287],[6412,7293],[6418,7289],[6417,7284]]]}},{"type":"Feature","id":"SP","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"sp","hc-a2":"SP","name":"Spratly Islands","labelrank":"6","country-abbrev":"Spratly Is.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"-99","iso-a2":"SP","woe-id":"23424921","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7789,7466],[7789,7466],[7789,7466],[7789,7466],[7789,7466]]]}},{"type":"Feature","id":"GB","properties":{"hc-group":"admin0","hc-middle-x":0.61,"hc-middle-y":0.06,"hc-key":"gb","hc-a2":"GB","name":"United Kingdom","labelrank":"2","country-abbrev":"U.K.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"GBR","iso-a2":"GB","woe-id":"-90","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[3803,9005],[3803,9017],[3828,9028],[3825,9013],[3803,9005]]],[[[2200,5430],[2233,5432],[2242,5427],[2227,5410],[2208,5400],[2187,5413],[2208,5408],[2216,5418],[2200,5430]]],[[[2235,5398],[2233,5408],[2245,5418],[2249,5433],[2281,5428],[2289,5418],[2235,5398]]],[[[5075,8257],[5074,8256],[5072,8257],[5071,8258],[5071,8258],[5071,8257],[5069,8257],[5069,8257],[5069,8258],[5068,8259],[5071,8259],[5075,8260],[5075,8260],[5072,8259],[5075,8257]],[[5070,8258],[5070,8258],[5070,8258],[5070,8258],[5070,8258]]],[[[3841,8295],[3841,8294],[3840,8295],[3841,8295]]],[[[5048,8246],[5045,8247],[5040,8247],[5042,8248],[5048,8246]]],[[[3796,8915],[3827,8923],[3846,8902],[3830,8881],[3823,8883],[3813,8882],[3802,8894],[3793,8884],[3768,8895],[3782,8900],[3796,8915]]],[[[3844,8996],[3841,9007],[3858,9010],[3853,9020],[3865,9032],[3910,9033],[3913,9048],[3930,9043],[3915,9021],[3890,9009],[3885,8995],[3907,9002],[3952,9001],[3957,8994],[3945,8976],[3916,8948],[3946,8943],[3961,8932],[3973,8901],[3993,8895],[4006,8884],[4018,8850],[4057,8840],[4055,8817],[4036,8801],[4022,8799],[4051,8795],[4049,8786],[4016,8774],[4003,8776],[3970,8768],[3953,8773],[3934,8768],[3906,8770],[3895,8756],[3866,8760],[3853,8748],[3844,8754],[3884,8789],[3917,8789],[3878,8808],[3861,8802],[3850,8810],[3884,8824],[3885,8855],[3914,8860],[3924,8887],[3913,8884],[3901,8897],[3909,8909],[3879,8910],[3880,8894],[3876,8903],[3857,8909],[3873,8929],[3849,8944],[3846,8925],[3843,8959],[3825,8954],[3817,8968],[3835,8971],[3844,8985],[3820,8980],[3826,9002],[3832,8989],[3844,8996]]]]}},{"type":"Feature","id":"GR","properties":{"hc-group":"admin0","hc-middle-x":0.45,"hc-middle-y":0.61,"hc-key":"gr","hc-a2":"GR","name":"Greece","labelrank":"3","country-abbrev":"Greece","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"GRC","iso-a2":"GR","woe-id":"23424833","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4855,8272],[4831,8258],[4787,8256],[4786,8261],[4748,8268],[4769,8276],[4815,8269],[4818,8262],[4855,8272]]],[[[4660,8444],[4663,8447],[4659,8444],[4657,8447],[4658,8448],[4660,8449],[4662,8450],[4686,8458],[4712,8460],[4717,8465],[4766,8473],[4789,8462],[4816,8466],[4822,8478],[4832,8468],[4815,8446],[4791,8422],[4799,8450],[4783,8455],[4776,8442],[4769,8453],[4743,8444],[4765,8428],[4744,8433],[4732,8429],[4708,8437],[4709,8423],[4735,8395],[4726,8390],[4761,8378],[4771,8388],[4777,8382],[4764,8373],[4803,8337],[4756,8366],[4761,8346],[4734,8355],[4732,8344],[4746,8336],[4719,8342],[4736,8305],[4716,8316],[4714,8306],[4702,8324],[4694,8314],[4684,8326],[4682,8342],[4668,8351],[4675,8363],[4693,8367],[4722,8357],[4733,8360],[4693,8370],[4668,8366],[4658,8382],[4651,8377],[4651,8377],[4651,8377],[4650,8382],[4667,8389],[4635,8397],[4618,8413],[4630,8412],[4642,8416],[4660,8444]]],[[[4651,8376],[4650,8377],[4651,8377],[4651,8377],[4651,8377],[4651,8376],[4651,8376]]],[[[4651,8376],[4657,8360],[4652,8350],[4651,8376],[4651,8376]]],[[[4803,8312],[4777,8313],[4784,8322],[4809,8329],[4823,8344],[4819,8362],[4823,8390],[4813,8397],[4828,8401],[4831,8388],[4823,8363],[4827,8344],[4847,8350],[4856,8318],[4852,8314],[4843,8347],[4823,8340],[4823,8320],[4808,8322],[4803,8312]]]]}},{"type":"Feature","id":"DK","properties":{"hc-group":"admin0","hc-middle-x":0.30,"hc-middle-y":0.56,"hc-key":"dk","hc-a2":"DK","name":"Denmark","labelrank":"4","country-abbrev":"Den.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"DNK","iso-a2":"DK","woe-id":"23424796","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4316,8939],[4326,8923],[4324,8905],[4308,8911],[4292,8929],[4316,8939]]],[[[4364,8910],[4338,8920],[4333,8935],[4349,8943],[4353,8936],[4366,8950],[4379,8933],[4366,8927],[4364,8910]]],[[[4285,8907],[4267,8910],[4263,8910],[4261,8927],[4245,8931],[4253,8943],[4245,8964],[4258,8965],[4293,8982],[4267,8978],[4256,8966],[4248,8972],[4258,8983],[4281,8984],[4297,8998],[4313,9003],[4309,8966],[4328,8960],[4286,8929],[4286,8918],[4304,8909],[4285,8907]]]]}},{"type":"Feature","id":"GL","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.39,"hc-key":"gl","hc-a2":"GL","name":"Greenland","labelrank":"3","country-abbrev":"Grlnd.","subregion":"Northern America","region-wb":"Europe & Central Asia","iso-a3":"GRL","iso-a2":"GL","woe-id":"23424828","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[3297,9420],[3265,9407],[3280,9404],[3294,9413],[3307,9411],[3336,9418],[3380,9408],[3412,9408],[3387,9393],[3363,9389],[3300,9362],[3252,9357],[3213,9345],[3168,9340],[3150,9342],[3134,9359],[3141,9341],[3101,9325],[3101,9316],[3082,9299],[3057,9286],[3006,9268],[3003,9276],[2986,9259],[2983,9266],[2963,9260],[2969,9275],[2987,9285],[2965,9281],[2963,9272],[2946,9263],[2900,9256],[2916,9252],[2893,9241],[2871,9244],[2885,9235],[2876,9218],[2876,9199],[2857,9192],[2856,9182],[2821,9161],[2804,9134],[2800,9116],[2783,9117],[2796,9106],[2788,9097],[2770,9093],[2772,9075],[2746,9071],[2712,9084],[2699,9100],[2669,9105],[2636,9104],[2639,9116],[2619,9118],[2612,9135],[2617,9147],[2591,9158],[2600,9173],[2578,9180],[2570,9190],[2582,9221],[2557,9212],[2567,9240],[2533,9277],[2538,9290],[2552,9298],[2579,9304],[2542,9303],[2535,9309],[2588,9318],[2539,9314],[2551,9333],[2566,9335],[2570,9345],[2601,9340],[2616,9346],[2589,9345],[2595,9361],[2628,9357],[2636,9376],[2659,9373],[2654,9382],[2642,9377],[2648,9392],[2636,9389],[2636,9403],[2613,9406],[2593,9416],[2577,9417],[2561,9428],[2579,9432],[2618,9427],[2638,9419],[2646,9434],[2629,9433],[2628,9442],[2644,9449],[2609,9442],[2624,9459],[2609,9455],[2587,9461],[2598,9443],[2589,9438],[2580,9450],[2551,9450],[2539,9459],[2560,9472],[2566,9482],[2552,9495],[2589,9497],[2563,9503],[2580,9515],[2560,9521],[2558,9528],[2571,9548],[2551,9560],[2555,9566],[2530,9570],[2523,9581],[2534,9592],[2480,9606],[2419,9613],[2400,9605],[2348,9610],[2335,9599],[2289,9604],[2264,9613],[2261,9627],[2235,9633],[2256,9649],[2295,9656],[2252,9659],[2222,9671],[2238,9684],[2323,9693],[2362,9702],[2412,9703],[2448,9716],[2455,9733],[2408,9734],[2406,9743],[2471,9757],[2484,9764],[2533,9772],[2562,9767],[2579,9771],[2590,9781],[2581,9789],[2655,9801],[2757,9810],[2772,9801],[2755,9783],[2781,9793],[2788,9808],[2824,9798],[2803,9797],[2840,9788],[2827,9796],[2863,9796],[2842,9803],[2837,9814],[2884,9812],[2888,9809],[2945,9799],[2960,9791],[2982,9792],[2970,9799],[2975,9801],[2931,9809],[2924,9823],[2987,9811],[2976,9801],[3004,9811],[2965,9823],[3074,9823],[2969,9826],[2944,9829],[2965,9833],[2983,9830],[2998,9836],[3056,9838],[3107,9837],[3129,9832],[3172,9835],[3133,9837],[3137,9844],[3183,9848],[3280,9851],[3320,9850],[3429,9840],[3418,9837],[3312,9835],[3213,9827],[3285,9830],[3326,9834],[3387,9832],[3437,9836],[3451,9827],[3492,9824],[3520,9818],[3492,9809],[3319,9802],[3248,9792],[3273,9792],[3367,9800],[3439,9797],[3435,9790],[3396,9785],[3392,9779],[3456,9789],[3472,9798],[3514,9800],[3513,9782],[3464,9762],[3492,9765],[3546,9782],[3566,9792],[3595,9789],[3606,9780],[3642,9792],[3685,9791],[3728,9786],[3742,9780],[3694,9765],[3666,9764],[3671,9758],[3644,9753],[3605,9754],[3633,9745],[3617,9739],[3562,9736],[3521,9728],[3529,9721],[3548,9722],[3537,9712],[3551,9708],[3537,9690],[3499,9692],[3482,9663],[3490,9666],[3532,9663],[3532,9677],[3560,9687],[3543,9676],[3545,9668],[3530,9651],[3495,9655],[3502,9646],[3554,9641],[3540,9618],[3539,9600],[3530,9616],[3536,9626],[3498,9632],[3466,9622],[3454,9629],[3441,9624],[3466,9618],[3464,9609],[3508,9609],[3506,9599],[3519,9581],[3544,9578],[3567,9569],[3539,9568],[3540,9556],[3512,9544],[3462,9538],[3438,9539],[3476,9532],[3477,9517],[3452,9519],[3430,9511],[3389,9522],[3355,9518],[3331,9511],[3358,9505],[3341,9499],[3365,9492],[3368,9484],[3418,9467],[3402,9460],[3433,9461],[3418,9456],[3419,9446],[3433,9446],[3438,9422],[3388,9419],[3373,9424],[3367,9440],[3328,9456],[3305,9455],[3331,9453],[3330,9442],[3298,9435],[3269,9433],[3258,9417],[3293,9420],[3262,9418],[3275,9429],[3274,9433],[3312,9435],[3329,9440],[3338,9426],[3307,9420],[3297,9420]],[[3305,9455],[3303,9455],[3303,9455],[3303,9455],[3303,9455],[3277,9469],[3262,9468],[3290,9461],[3281,9457],[3303,9455],[3303,9455],[3303,9455],[3303,9455],[3303,9455],[3305,9455]]],[[[3405,9505],[3439,9500],[3438,9492],[3406,9499],[3371,9499],[3405,9505]]],[[[3595,9731],[3565,9722],[3544,9727],[3585,9735],[3595,9731]]],[[[3377,9488],[3372,9497],[3407,9497],[3436,9486],[3417,9485],[3426,9474],[3377,9488]]],[[[3406,9510],[3362,9513],[3412,9506],[3373,9504],[3342,9509],[3356,9516],[3376,9517],[3406,9510]]],[[[2548,9417],[2590,9411],[2619,9398],[2615,9389],[2571,9379],[2543,9391],[2548,9417]]]]}},{"type":"Feature","id":"PR","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.44,"hc-key":"pr","hc-a2":"PR","name":"Puerto Rico","labelrank":"5","country-abbrev":"P.R.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"PRI","iso-a2":"PR","woe-id":"23424935","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1888,7707],[1874,7702],[1832,7699],[1831,7717],[1870,7716],[1888,7707]]]}},{"type":"Feature","id":"UM","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.47,"hc-key":"um","hc-a2":"UM","name":"United States Minor Outlying Islands","labelrank":"5","country-abbrev":"U.S. MOI","subregion":"Seven seas (open ocean)","region-wb":"East Asia & Pacific","iso-a3":"UMI","iso-a2":"UM","woe-id":"28289407","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1577,7715],[1577,7715],[1577,7714],[1577,7714],[1577,7715]]]}},{"type":"Feature","id":"VI","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.16,"hc-key":"vi","hc-a2":"VI","name":"United States Virgin Islands","labelrank":"6","country-abbrev":"V.I. (U.S.)","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"VIR","iso-a2":"VI","woe-id":"23424985","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1909,7693],[1914,7693],[1903,7691],[1904,7694],[1909,7693]]]}},{"type":"Feature","id":"CA","properties":{"hc-group":"admin0","hc-middle-x":0.29,"hc-middle-y":0.58,"hc-key":"ca","hc-a2":"CA","name":"Canada","labelrank":"2","country-abbrev":"Can.","subregion":"Northern America","region-wb":"North America","iso-a3":"CAN","iso-a2":"CA","woe-id":"23424775","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1725,8585],[1707,8581],[1688,8569],[1671,8562],[1674,8561],[1660,8560],[1642,8548],[1629,8554],[1581,8547],[1556,8531],[1578,8529],[1578,8526],[1576,8523],[1576,8520],[1580,8518],[1539,8513],[1528,8506],[1502,8508],[1484,8496],[1458,8488],[1446,8497],[1447,8497],[1448,8497],[1467,8498],[1462,8505],[1467,8508],[1473,8521],[1497,8532],[1502,8555],[1521,8573],[1516,8594],[1556,8568],[1570,8579],[1548,8616],[1520,8619],[1512,8603],[1465,8615],[1486,8618],[1505,8613],[1520,8622],[1475,8625],[1453,8621],[1452,8621],[1452,8621],[1450,8630],[1451,8635],[1439,8633],[1435,8651],[1444,8661],[1434,8671],[1442,8681],[1418,8676],[1407,8689],[1403,8709],[1345,8706],[1342,8712],[1317,8699],[1300,8684],[1244,8685],[1213,8701],[1154,8710],[1155,8727],[1142,8716],[311,8716],[308,8719],[303,8716],[301,8716],[300,8725],[281,8737],[290,8744],[265,8741],[262,8751],[252,8747],[262,8729],[285,8722],[279,8716],[288,8699],[277,8694],[247,8703],[211,8726],[169,8769],[188,8780],[202,8770],[238,8763],[257,8764],[259,8760],[256,8767],[218,8767],[194,8787],[208,8822],[190,8798],[203,8852],[202,8852],[190,8839],[179,8830],[185,8851],[201,8853],[185,8861],[168,8892],[201,8923],[210,8943],[211,8949],[178,8965],[161,9025],[135,9053],[131,9070],[101,9063],[84,9049],[56,9041],[58,9052],[31,9079],[40,9088],[10,9083],[-15,9087],[41,9164],[74,9207],[137,9283],[170,9321],[236,9393],[291,9391],[288,9380],[327,9368],[351,9369],[374,9384],[401,9387],[417,9395],[437,9385],[454,9393],[477,9395],[557,9413],[554,9405],[502,9393],[473,9389],[436,9374],[496,9391],[494,9381],[523,9394],[560,9400],[561,9394],[587,9408],[612,9413],[600,9417],[609,9426],[624,9413],[623,9396],[643,9382],[680,9405],[691,9395],[672,9384],[709,9388],[724,9399],[763,9397],[784,9385],[823,9379],[834,9372],[884,9365],[890,9372],[911,9368],[927,9357],[923,9347],[899,9348],[883,9332],[936,9328],[999,9333],[1042,9347],[1046,9328],[1064,9320],[1086,9342],[1117,9342],[1159,9360],[1131,9356],[1095,9344],[1065,9348],[1087,9359],[1147,9368],[1160,9368],[1165,9348],[1188,9355],[1177,9340],[1207,9339],[1249,9328],[1275,9334],[1338,9332],[1355,9326],[1371,9332],[1360,9340],[1348,9336],[1340,9351],[1381,9354],[1386,9341],[1415,9349],[1383,9322],[1384,9314],[1405,9317],[1421,9341],[1439,9340],[1483,9357],[1479,9376],[1504,9384],[1481,9386],[1439,9400],[1441,9416],[1460,9425],[1449,9431],[1465,9447],[1485,9447],[1484,9455],[1512,9468],[1528,9470],[1514,9469],[1526,9485],[1520,9496],[1539,9524],[1576,9539],[1615,9541],[1637,9535],[1688,9532],[1620,9498],[1603,9493],[1559,9495],[1570,9485],[1542,9471],[1531,9470],[1557,9449],[1545,9433],[1569,9409],[1552,9411],[1562,9390],[1591,9384],[1561,9381],[1574,9368],[1561,9353],[1566,9347],[1584,9357],[1597,9373],[1621,9379],[1638,9363],[1635,9350],[1617,9348],[1613,9328],[1625,9318],[1620,9310],[1652,9319],[1650,9336],[1664,9349],[1665,9334],[1681,9341],[1699,9363],[1730,9373],[1717,9377],[1723,9397],[1756,9400],[1798,9393],[1824,9375],[1806,9369],[1816,9360],[1782,9351],[1781,9336],[1797,9321],[1782,9306],[1769,9305],[1728,9280],[1715,9286],[1703,9305],[1711,9277],[1708,9261],[1689,9266],[1684,9280],[1667,9283],[1666,9292],[1630,9290],[1648,9280],[1625,9265],[1593,9251],[1578,9252],[1540,9272],[1496,9273],[1530,9267],[1551,9251],[1600,9248],[1602,9245],[1567,9225],[1557,9214],[1523,9206],[1501,9213],[1495,9201],[1470,9194],[1443,9198],[1468,9187],[1465,9177],[1439,9168],[1410,9169],[1418,9160],[1397,9158],[1386,9140],[1344,9125],[1297,9075],[1284,9046],[1289,9035],[1327,9036],[1328,8993],[1315,8977],[1367,8987],[1424,8974],[1445,8960],[1451,8947],[1501,8933],[1528,8921],[1549,8924],[1594,8915],[1581,8888],[1585,8874],[1570,8846],[1587,8830],[1578,8823],[1599,8815],[1610,8793],[1628,8788],[1645,8804],[1653,8790],[1661,8802],[1646,8822],[1661,8813],[1677,8826],[1669,8848],[1677,8866],[1677,8885],[1664,8902],[1729,8922],[1770,8947],[1779,8960],[1785,8993],[1780,9010],[1768,9020],[1742,9032],[1743,9037],[1775,9054],[1780,9066],[1800,9077],[1791,9091],[1799,9102],[1781,9102],[1811,9125],[1801,9143],[1810,9162],[1828,9162],[1898,9147],[1927,9158],[1963,9144],[1979,9131],[1970,9124],[1997,9111],[2034,9103],[2018,9094],[2009,9061],[2023,9044],[2040,9038],[2061,9021],[2106,9037],[2132,9053],[2132,9068],[2148,9076],[2160,9093],[2174,9076],[2171,9066],[2194,9046],[2195,9031],[2217,8994],[2209,8987],[2226,8982],[2207,8969],[2226,8961],[2202,8953],[2226,8952],[2243,8927],[2234,8920],[2257,8924],[2254,8917],[2278,8918],[2278,8908],[2320,8902],[2323,8897],[2296,8892],[2280,8882],[2236,8872],[2233,8859],[2299,8888],[2318,8885],[2322,8872],[2360,8863],[2355,8822],[2344,8813],[2310,8796],[2288,8798],[2247,8782],[2216,8760],[2171,8756],[2097,8760],[2017,8758],[1993,8744],[1982,8728],[1961,8726],[1927,8709],[1892,8676],[1846,8646],[1868,8651],[1922,8691],[1951,8705],[2016,8723],[2053,8724],[2073,8713],[2066,8697],[2035,8684],[1998,8687],[2022,8673],[2048,8674],[2033,8658],[2045,8629],[2056,8619],[2102,8605],[2122,8615],[2146,8596],[2067,8572],[2040,8571],[2037,8563],[1992,8534],[1978,8556],[1988,8572],[2027,8590],[2074,8597],[2037,8599],[2042,8615],[1996,8592],[1964,8587],[1956,8591],[1948,8594],[1951,8605],[1944,8607],[1941,8610],[1951,8654],[1937,8663],[1919,8657],[1911,8666],[1881,8641],[1867,8615],[1823,8586],[1725,8585],[1765,8599],[1776,8614],[1762,8600],[1725,8585]],[[1783,8621],[1825,8640],[1830,8641],[1824,8641],[1787,8625],[1783,8621]]],[[[2084,8748],[2106,8744],[2147,8728],[2151,8720],[2134,8719],[2096,8729],[2076,8743],[2084,8748]]],[[[1599,8855],[1608,8854],[1615,8838],[1578,8848],[1599,8855]]],[[[1769,9155],[1767,9142],[1750,9129],[1740,9135],[1744,9147],[1769,9155]]],[[[1703,9174],[1703,9165],[1662,9148],[1646,9147],[1645,9158],[1669,9173],[1703,9174]]],[[[1839,9206],[1852,9197],[1821,9178],[1809,9188],[1833,9189],[1846,9198],[1839,9206]]],[[[1964,9349],[1975,9347],[1966,9324],[1939,9315],[1909,9314],[1913,9335],[1934,9347],[1964,9349]]],[[[1896,9386],[1906,9393],[1910,9381],[1886,9369],[1889,9357],[1869,9345],[1880,9360],[1871,9369],[1896,9380],[1896,9386]]],[[[1302,9513],[1271,9498],[1255,9516],[1261,9526],[1299,9527],[1311,9521],[1302,9513]]],[[[1053,9605],[1022,9588],[991,9588],[1022,9598],[1053,9605]]],[[[1393,9612],[1394,9621],[1412,9623],[1430,9616],[1404,9609],[1434,9611],[1434,9601],[1386,9603],[1393,9612]]],[[[1781,9654],[1789,9645],[1757,9644],[1759,9654],[1781,9654]]],[[[1411,9647],[1407,9637],[1394,9646],[1395,9658],[1409,9657],[1411,9647]]],[[[1660,9659],[1704,9659],[1697,9649],[1636,9649],[1637,9657],[1660,9659]]],[[[2085,8625],[2058,8632],[2062,8644],[2085,8632],[2111,8630],[2103,8617],[2085,8625]]],[[[104,8838],[104,8821],[85,8852],[109,8856],[104,8838]]],[[[1685,8970],[1716,8960],[1686,8942],[1673,8940],[1692,8967],[1685,8970]]],[[[1618,9595],[1637,9577],[1619,9557],[1590,9556],[1579,9562],[1570,9552],[1560,9575],[1618,9595]]],[[[1283,9676],[1244,9680],[1325,9692],[1341,9686],[1333,9677],[1293,9679],[1283,9676]]],[[[155,8895],[184,8859],[172,8849],[155,8861],[155,8895]]],[[[2157,8611],[2168,8626],[2190,8618],[2147,8601],[2135,8608],[2134,8620],[2169,8652],[2174,8638],[2146,8608],[2157,8611]]],[[[87,8884],[130,8886],[103,8856],[82,8863],[87,8884]]],[[[2029,9498],[1977,9499],[1948,9495],[1930,9498],[1930,9511],[1917,9512],[1925,9527],[1959,9523],[1993,9525],[2014,9519],[2031,9506],[2029,9498]]],[[[1689,9677],[1673,9674],[1672,9665],[1629,9662],[1609,9668],[1634,9671],[1614,9674],[1608,9681],[1625,9693],[1667,9687],[1689,9677]]],[[[2214,9376],[2158,9383],[2188,9372],[2163,9359],[2201,9353],[2216,9347],[2218,9333],[2253,9339],[2276,9317],[2291,9316],[2277,9303],[2306,9312],[2330,9296],[2322,9286],[2290,9281],[2295,9263],[2265,9261],[2250,9256],[2257,9247],[2244,9238],[2227,9250],[2221,9244],[2203,9265],[2209,9273],[2162,9291],[2147,9289],[2159,9271],[2138,9270],[2128,9279],[2133,9259],[2151,9265],[2154,9244],[2197,9229],[2187,9218],[2212,9203],[2217,9194],[2201,9185],[2187,9193],[2193,9172],[2177,9173],[2196,9159],[2179,9156],[2174,9168],[2143,9176],[2132,9173],[2112,9196],[2113,9188],[2081,9200],[2095,9185],[2130,9165],[2148,9149],[2140,9143],[2156,9131],[2177,9129],[2168,9120],[2143,9139],[2108,9147],[2075,9151],[2050,9164],[2026,9167],[1997,9181],[2014,9194],[2001,9200],[1982,9198],[1984,9209],[1966,9213],[1962,9230],[1949,9219],[1953,9232],[1930,9220],[1902,9228],[1902,9220],[1872,9214],[1842,9220],[1842,9239],[1869,9247],[1870,9256],[1929,9249],[1960,9258],[1979,9256],[1961,9278],[2012,9297],[2032,9309],[2037,9332],[2033,9347],[2005,9350],[1996,9341],[2018,9338],[2015,9332],[1988,9332],[2004,9356],[1986,9350],[1972,9356],[1980,9363],[1998,9361],[1978,9372],[1942,9361],[1944,9377],[1936,9385],[1953,9384],[1933,9399],[1939,9410],[1908,9415],[1908,9402],[1880,9399],[1866,9392],[1844,9395],[1832,9403],[1794,9398],[1775,9403],[1722,9408],[1652,9420],[1642,9440],[1672,9436],[1700,9437],[1683,9444],[1640,9448],[1645,9468],[1658,9481],[1706,9512],[1746,9526],[1780,9531],[1817,9529],[1818,9525],[1782,9513],[1755,9498],[1757,9486],[1744,9470],[1758,9454],[1770,9451],[1743,9442],[1767,9442],[1782,9459],[1767,9459],[1755,9469],[1774,9479],[1796,9474],[1776,9491],[1815,9515],[1874,9527],[1907,9526],[1906,9512],[1919,9508],[1920,9494],[1890,9477],[1892,9469],[1923,9484],[1946,9477],[1959,9487],[1989,9495],[2047,9486],[2038,9474],[2064,9473],[2059,9464],[2023,9454],[2067,9463],[2062,9455],[2077,9449],[2088,9455],[2101,9459],[2125,9454],[2142,9434],[2125,9425],[2157,9433],[2194,9424],[2214,9395],[2191,9397],[2217,9383],[2214,9376]]],[[[2382,8702],[2410,8704],[2391,8691],[2378,8675],[2386,8669],[2398,8684],[2409,8687],[2397,8665],[2411,8677],[2415,8668],[2400,8644],[2381,8638],[2380,8650],[2363,8649],[2378,8665],[2374,8678],[2367,8663],[2343,8661],[2330,8648],[2309,8649],[2320,8670],[2286,8668],[2251,8674],[2217,8669],[2212,8680],[2246,8700],[2237,8702],[2292,8769],[2316,8792],[2345,8802],[2357,8801],[2345,8788],[2347,8778],[2339,8779],[2307,8751],[2300,8734],[2325,8754],[2336,8747],[2326,8733],[2351,8734],[2347,8725],[2384,8741],[2384,8732],[2400,8724],[2382,8711],[2382,8702]]],[[[1151,9644],[1125,9640],[1117,9624],[1081,9618],[1065,9609],[1053,9614],[1074,9626],[1033,9617],[1038,9612],[1016,9604],[1015,9613],[989,9596],[966,9599],[945,9602],[927,9599],[924,9606],[945,9614],[966,9615],[986,9623],[1068,9646],[1135,9652],[1151,9644]]],[[[1651,9196],[1626,9181],[1610,9179],[1610,9198],[1573,9193],[1583,9206],[1605,9211],[1607,9227],[1640,9266],[1663,9266],[1687,9246],[1723,9233],[1735,9225],[1734,9212],[1754,9212],[1768,9202],[1741,9190],[1714,9198],[1709,9205],[1679,9211],[1672,9200],[1651,9196]]],[[[1370,9391],[1394,9401],[1413,9388],[1436,9387],[1427,9384],[1428,9368],[1445,9367],[1401,9354],[1360,9364],[1317,9370],[1302,9362],[1305,9373],[1331,9373],[1369,9383],[1370,9391]]],[[[1281,9401],[1251,9384],[1282,9377],[1259,9370],[1260,9358],[1248,9367],[1222,9365],[1188,9373],[1151,9378],[1154,9388],[1122,9372],[1088,9370],[1070,9363],[955,9355],[947,9366],[955,9378],[897,9381],[875,9397],[892,9409],[962,9415],[1011,9411],[1029,9421],[986,9428],[916,9421],[889,9424],[878,9438],[944,9449],[960,9455],[894,9450],[904,9459],[878,9458],[884,9467],[919,9477],[915,9486],[959,9500],[1045,9515],[1054,9507],[1044,9496],[1022,9490],[1053,9493],[1075,9503],[1113,9494],[1086,9482],[1108,9483],[1140,9494],[1135,9503],[1151,9503],[1177,9488],[1165,9463],[1176,9458],[1195,9467],[1188,9475],[1196,9495],[1220,9521],[1227,9512],[1250,9510],[1268,9496],[1259,9474],[1263,9456],[1244,9440],[1252,9429],[1303,9408],[1318,9410],[1298,9387],[1281,9401]]],[[[1474,9465],[1428,9455],[1404,9446],[1372,9477],[1347,9482],[1336,9492],[1349,9504],[1361,9505],[1371,9494],[1399,9496],[1400,9508],[1383,9517],[1411,9530],[1442,9533],[1452,9527],[1483,9531],[1452,9533],[1500,9539],[1494,9532],[1506,9523],[1451,9503],[1490,9500],[1495,9484],[1474,9465]]],[[[1029,9518],[904,9491],[891,9481],[866,9478],[832,9453],[755,9440],[748,9460],[725,9468],[708,9469],[751,9489],[756,9498],[820,9528],[813,9547],[872,9551],[902,9554],[929,9545],[953,9542],[983,9545],[1007,9538],[1029,9518]]],[[[1459,9583],[1496,9591],[1412,9584],[1421,9592],[1402,9593],[1437,9601],[1453,9594],[1447,9608],[1468,9620],[1490,9625],[1566,9617],[1544,9584],[1522,9578],[1524,9555],[1516,9569],[1457,9569],[1459,9583]]],[[[1277,9625],[1300,9629],[1292,9615],[1299,9610],[1281,9602],[1295,9597],[1329,9603],[1348,9601],[1355,9579],[1378,9580],[1358,9569],[1336,9583],[1314,9570],[1249,9565],[1247,9570],[1153,9552],[1115,9548],[1087,9557],[1146,9568],[1171,9568],[1195,9576],[1064,9567],[1024,9577],[1061,9594],[1116,9597],[1069,9598],[1083,9606],[1118,9616],[1146,9617],[1145,9626],[1155,9625],[1148,9607],[1175,9610],[1200,9596],[1195,9585],[1251,9585],[1256,9593],[1237,9598],[1262,9605],[1242,9611],[1277,9625]]],[[[1710,9553],[1662,9561],[1661,9575],[1684,9588],[1688,9597],[1676,9613],[1616,9609],[1601,9633],[1630,9636],[1677,9631],[1684,9621],[1727,9624],[1765,9607],[1718,9606],[1742,9603],[1778,9585],[1807,9588],[1829,9585],[1872,9589],[1898,9595],[1963,9594],[1993,9584],[1987,9574],[1963,9569],[1988,9564],[1958,9554],[1916,9550],[1875,9554],[1854,9552],[1766,9550],[1741,9557],[1710,9553]]],[[[1285,9650],[1233,9644],[1217,9649],[1213,9660],[1195,9657],[1181,9665],[1204,9669],[1219,9660],[1253,9667],[1319,9670],[1283,9662],[1297,9659],[1285,9650]]],[[[1467,9710],[1508,9711],[1528,9700],[1543,9702],[1584,9686],[1570,9681],[1573,9663],[1534,9662],[1534,9673],[1492,9673],[1489,9663],[1522,9658],[1485,9658],[1480,9673],[1498,9679],[1453,9675],[1446,9683],[1483,9683],[1490,9696],[1452,9700],[1467,9710]]],[[[1888,9738],[1909,9746],[1927,9745],[1929,9729],[1914,9718],[1952,9718],[1958,9708],[1915,9701],[1827,9672],[1816,9687],[1817,9673],[1765,9673],[1745,9677],[1724,9699],[1753,9705],[1784,9706],[1777,9712],[1741,9708],[1711,9708],[1707,9717],[1748,9724],[1707,9721],[1700,9735],[1745,9733],[1712,9741],[1741,9745],[1735,9754],[1776,9756],[1755,9758],[1779,9767],[1786,9764],[1821,9768],[1798,9773],[1828,9777],[1855,9770],[1860,9751],[1892,9750],[1888,9738]]],[[[2008,9645],[2047,9637],[2033,9631],[2071,9633],[2067,9623],[2040,9620],[2019,9611],[1983,9606],[1987,9615],[1889,9616],[1872,9610],[1822,9616],[1795,9614],[1800,9625],[1783,9614],[1754,9618],[1749,9625],[1817,9638],[1855,9642],[1838,9645],[1838,9660],[1865,9663],[1890,9657],[1887,9648],[1912,9660],[1913,9670],[1863,9671],[1873,9681],[1905,9693],[1941,9696],[1975,9694],[2017,9696],[1965,9698],[1966,9719],[1936,9724],[1952,9742],[2015,9740],[2042,9728],[2047,9719],[2062,9730],[2031,9742],[2162,9752],[2116,9752],[2164,9758],[2153,9765],[2087,9753],[1991,9748],[1955,9752],[1989,9763],[2077,9771],[1983,9764],[1944,9753],[1902,9761],[1929,9765],[1969,9765],[2025,9774],[1978,9769],[1896,9765],[1905,9776],[1888,9780],[1923,9785],[1868,9785],[1897,9792],[1975,9801],[2048,9797],[2007,9802],[2044,9807],[2041,9813],[2099,9807],[2156,9796],[2108,9810],[2133,9820],[2163,9816],[2148,9823],[2186,9823],[2186,9828],[2252,9826],[2281,9832],[2323,9830],[2327,9826],[2363,9834],[2429,9834],[2427,9830],[2498,9827],[2439,9818],[2467,9819],[2536,9827],[2567,9814],[2596,9813],[2595,9804],[2512,9788],[2490,9790],[2453,9781],[2365,9770],[2475,9781],[2503,9780],[2462,9772],[2396,9757],[2325,9737],[2295,9723],[2275,9721],[2250,9725],[2249,9717],[2202,9715],[2200,9711],[2126,9711],[2142,9708],[2210,9707],[2205,9700],[2170,9706],[2150,9700],[2195,9692],[2186,9686],[2144,9684],[2173,9679],[2155,9670],[2119,9663],[2095,9665],[2091,9654],[2048,9643],[2008,9645]]]]}},{"type":"Feature","id":"CV","properties":{"hc-group":"admin0","hc-middle-x":0.57,"hc-middle-y":0.50,"hc-key":"cv","hc-a2":"CV","name":"Cape Verde","labelrank":"4","country-abbrev":"C.Vd.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"CPV","iso-a2":"CV","woe-id":"23424794","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3236,7613],[3244,7607],[3244,7600],[3235,7604],[3236,7613]]]}},{"type":"Feature","id":"DM","properties":{"hc-group":"admin0","hc-middle-x":0.54,"hc-middle-y":0.47,"hc-key":"dm","hc-a2":"DM","name":"Dominica","labelrank":"6","country-abbrev":"D'inca","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"DMA","iso-a2":"DM","woe-id":"23424798","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2012,7622],[2017,7616],[2012,7609],[2010,7619],[2012,7622]]]}},{"type":"Feature","id":"SC","properties":{"hc-group":"admin0","hc-middle-x":0.58,"hc-middle-y":0.81,"hc-key":"sc","hc-a2":"SC","name":"Seychelles","labelrank":"6","country-abbrev":"Syc.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SYC","iso-a2":"SC","woe-id":"23424941","continent":"Seven seas (open ocean)"},"geometry":{"type":"Polygon","coordinates":[[[5526,6806],[5526,6803],[5519,6802],[5525,6804],[5526,6806]]]}},{"type":"Feature","id":"JM","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.52,"hc-key":"jm","hc-a2":"JM","name":"Jamaica","labelrank":"4","country-abbrev":"Jam.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"JAM","iso-a2":"JM","woe-id":"23424858","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1499,7716],[1516,7714],[1538,7698],[1516,7701],[1504,7692],[1487,7696],[1474,7716],[1499,7716]]]}},{"type":"Feature","id":"OM","properties":{"hc-group":"admin0","hc-middle-x":0.81,"hc-middle-y":0.47,"hc-key":"om","hc-a2":"OM","name":"Oman","labelrank":"4","country-abbrev":"Oman","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"OMN","iso-a2":"OM","woe-id":"23424898","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5815,7938],[5812,7939],[5814,7941],[5817,7940],[5815,7938]]],[[[5806,7965],[5814,7976],[5814,7951],[5809,7952],[5806,7965]]],[[[5692,7734],[5787,7766],[5803,7831],[5787,7855],[5801,7905],[5800,7927],[5819,7930],[5828,7914],[5847,7896],[5900,7883],[5937,7840],[5924,7814],[5904,7794],[5914,7783],[5904,7779],[5886,7785],[5875,7758],[5881,7735],[5861,7731],[5844,7721],[5836,7699],[5806,7696],[5795,7669],[5764,7669],[5732,7657],[5719,7678],[5692,7734]]]]}},{"type":"Feature","id":"VC","properties":{"hc-group":"admin0","hc-middle-x":0.54,"hc-middle-y":0.46,"hc-key":"vc","hc-a2":"VC","name":"Saint Vincent and the Grenadines","labelrank":"6","country-abbrev":"St.V.G.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"VCT","iso-a2":"VC","woe-id":"23424981","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2014,7538],[2012,7544],[2016,7549],[2016,7543],[2014,7538]]]}},{"type":"Feature","id":"SB","properties":{"hc-group":"admin0","hc-middle-x":0.78,"hc-middle-y":0.57,"hc-key":"sb","hc-a2":"SB","name":"Solomon Islands","labelrank":"3","country-abbrev":"S. Is.","subregion":"Melanesia","region-wb":"East Asia & Pacific","iso-a3":"SLB","iso-a2":"SB","woe-id":"23424766","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9280,6796],[9265,6811],[9257,6838],[9270,6829],[9285,6796],[9278,6777],[9300,6769],[9305,6757],[9289,6760],[9274,6773],[9280,6796]]],[[[9206,6813],[9223,6807],[9239,6816],[9260,6793],[9254,6786],[9228,6791],[9222,6805],[9206,6813]]],[[[9135,6846],[9126,6861],[9157,6851],[9169,6834],[9146,6831],[9152,6840],[9135,6846]]],[[[9183,6867],[9196,6864],[9233,6839],[9234,6831],[9201,6850],[9194,6860],[9146,6871],[9126,6891],[9145,6885],[9149,6876],[9168,6867],[9183,6867]]]]}},{"type":"Feature","id":"LC","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.47,"hc-key":"lc","hc-a2":"LC","name":"Saint Lucia","labelrank":"6","country-abbrev":"S.L.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"LCA","iso-a2":"LC","woe-id":"23424951","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2023,7561],[2019,7566],[2025,7574],[2026,7568],[2023,7561]]]}},{"type":"Feature","id":"NO","properties":{"hc-group":"admin0","hc-middle-x":0.14,"hc-middle-y":0.89,"hc-key":"no","hc-a2":"NO","name":"Norway","labelrank":"3","country-abbrev":"Nor.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"NOR","iso-a2":"NO","woe-id":"-90","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4531,9686],[4546,9686],[4553,9675],[4524,9673],[4501,9683],[4531,9686]]],[[[4536,9649],[4526,9648],[4539,9665],[4520,9669],[4570,9675],[4576,9666],[4609,9661],[4584,9642],[4564,9642],[4562,9653],[4536,9649]]],[[[4832,9398],[4834,9389],[4817,9393],[4811,9384],[4787,9373],[4794,9387],[4788,9393],[4753,9406],[4716,9402],[4704,9394],[4698,9368],[4680,9357],[4653,9366],[4634,9359],[4612,9362],[4589,9381],[4563,9373],[4548,9350],[4499,9356],[4494,9338],[4477,9342],[4447,9320],[4456,9307],[4431,9289],[4433,9282],[4408,9277],[4410,9251],[4387,9227],[4400,9223],[4398,9208],[4377,9211],[4362,9206],[4344,9185],[4351,9175],[4356,9152],[4352,9133],[4373,9122],[4369,9111],[4357,9110],[4368,9093],[4366,9081],[4347,9073],[4347,9053],[4337,9044],[4330,9045],[4321,9046],[4312,9058],[4254,9020],[4228,9012],[4197,9015],[4166,9036],[4168,9048],[4158,9049],[4158,9077],[4145,9096],[4150,9113],[4140,9112],[4162,9129],[4144,9137],[4168,9154],[4194,9161],[4207,9175],[4235,9179],[4256,9191],[4239,9198],[4254,9201],[4265,9192],[4279,9196],[4291,9186],[4311,9189],[4309,9196],[4286,9192],[4275,9200],[4316,9229],[4337,9234],[4308,9236],[4336,9240],[4345,9256],[4353,9255],[4346,9274],[4380,9281],[4365,9285],[4386,9300],[4380,9304],[4408,9313],[4400,9321],[4427,9343],[4452,9340],[4447,9350],[4450,9353],[4375,9343],[4355,9333],[4362,9342],[4407,9353],[4396,9361],[4425,9368],[4454,9370],[4452,9354],[4476,9374],[4462,9378],[4486,9391],[4516,9390],[4519,9396],[4546,9402],[4556,9412],[4574,9400],[4590,9406],[4573,9411],[4605,9414],[4602,9428],[4630,9431],[4643,9421],[4650,9436],[4680,9431],[4690,9442],[4695,9433],[4674,9421],[4679,9407],[4714,9436],[4713,9416],[4735,9433],[4729,9438],[4763,9436],[4748,9420],[4759,9418],[4771,9433],[4803,9428],[4835,9414],[4812,9407],[4771,9408],[4832,9398]]],[[[4352,9651],[4421,9662],[4352,9657],[4342,9668],[4377,9670],[4394,9678],[4368,9690],[4368,9679],[4347,9673],[4324,9675],[4301,9687],[4306,9673],[4280,9681],[4264,9696],[4280,9690],[4283,9698],[4266,9718],[4291,9727],[4300,9721],[4338,9728],[4327,9715],[4357,9726],[4376,9719],[4382,9710],[4408,9696],[4393,9709],[4384,9728],[4397,9734],[4428,9729],[4458,9717],[4466,9704],[4494,9701],[4531,9694],[4472,9682],[4459,9663],[4458,9650],[4447,9649],[4428,9619],[4367,9640],[4352,9651]]],[[[4589,9705],[4562,9707],[4560,9713],[4483,9710],[4480,9719],[4532,9722],[4532,9726],[4458,9723],[4444,9728],[4458,9733],[4432,9736],[4443,9744],[4469,9735],[4481,9750],[4493,9754],[4505,9739],[4528,9741],[4542,9732],[4548,9749],[4556,9737],[4587,9741],[4647,9738],[4658,9727],[4628,9720],[4633,9716],[4589,9705]]]]}},{"type":"Feature","id":"KN","properties":{"hc-group":"admin0","hc-middle-x":0.57,"hc-middle-y":0.49,"hc-key":"kn","hc-a2":"KN","name":"Saint Kitts and Nevis","labelrank":"6","country-abbrev":"St.K.N.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"KNA","iso-a2":"KN","woe-id":"23424940","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1977,7675],[1968,7680],[1970,7682],[1974,7679],[1977,7675]]]}},{"type":"Feature","id":"BH","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"bh","hc-a2":"BH","name":"Bahrain","labelrank":"4","country-abbrev":"Bahr.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"BHR","iso-a2":"BH","woe-id":"23424753","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5626,7971],[5631,7969],[5630,7956],[5626,7963],[5626,7971]]]}},{"type":"Feature","id":"ID","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.39,"hc-key":"id","hc-a2":"ID","name":"Indonesia","labelrank":"2","country-abbrev":"Indo.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"IDN","iso-a2":"ID","woe-id":"23424846","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7929,6805],[7954,6784],[7942,6774],[7915,6791],[7896,6794],[7905,6805],[7929,6805]]],[[[7824,6836],[7805,6819],[7801,6835],[7813,6843],[7824,6836]]],[[[7785,6827],[7774,6822],[7750,6846],[7774,6848],[7790,6836],[7785,6827]]],[[[8545,6844],[8548,6836],[8507,6837],[8521,6861],[8547,6870],[8556,6863],[8545,6844]]],[[[8317,6878],[8312,6862],[8296,6844],[8293,6868],[8300,6866],[8317,6878]]],[[[7748,6880],[7722,6874],[7695,6877],[7700,6885],[7735,6887],[7748,6880]]],[[[8019,6934],[8000,6932],[8001,6945],[8010,6937],[8014,6956],[8032,6965],[8054,6939],[8041,6939],[8027,6925],[8019,6934]]],[[[8174,6986],[8158,6985],[8140,6993],[8135,7008],[8162,7011],[8175,7001],[8174,6986]]],[[[7528,7016],[7535,7027],[7547,7026],[7552,7009],[7533,7005],[7528,7016]]],[[[8114,7052],[8147,7052],[8131,7043],[8123,7049],[8082,7046],[8082,7057],[8114,7052]]],[[[7270,7045],[7298,7013],[7284,7019],[7283,7030],[7247,7056],[7238,7072],[7247,7081],[7259,7053],[7270,7045]]],[[[8282,7094],[8276,7108],[8294,7111],[8307,7099],[8288,7094],[8302,7076],[8275,7044],[8257,7050],[8278,7056],[8291,7071],[8281,7082],[8282,7094]]],[[[8179,7086],[8186,7102],[8196,7088],[8191,7072],[8206,7057],[8180,7058],[8190,7070],[8190,7084],[8179,7086]]],[[[7424,7139],[7440,7105],[7427,7090],[7423,7096],[7435,7114],[7416,7150],[7441,7145],[7424,7139]]],[[[7166,7188],[7142,7202],[7145,7208],[7168,7189],[7196,7183],[7198,7161],[7216,7144],[7209,7130],[7194,7153],[7190,7180],[7166,7188]]],[[[7503,7014],[7479,7019],[7473,7041],[7452,7047],[7467,7061],[7482,7060],[7489,7034],[7507,7027],[7503,7014]]],[[[8406,6900],[8393,6890],[8398,6915],[8410,6933],[8418,6926],[8415,6904],[8406,6900]]],[[[7365,7143],[7351,7165],[7365,7160],[7364,7147],[7383,7146],[7385,7137],[7365,7143]]],[[[7851,6837],[7849,6843],[7871,6845],[7898,6839],[7899,6829],[7879,6821],[7831,6813],[7823,6816],[7827,6833],[7851,6837]]],[[[8193,7005],[8199,7016],[8251,7020],[8285,7009],[8287,7000],[8310,6979],[8249,7003],[8229,7006],[8218,6996],[8197,6988],[8193,7005]]],[[[8074,6811],[8079,6811],[8090,6818],[8091,6810],[8094,6801],[8072,6779],[8038,6773],[8037,6762],[8017,6754],[8060,6805],[8067,6800],[8074,6811]]],[[[7862,7248],[7868,7248],[7859,7245],[7866,7229],[7842,7231],[7876,7186],[7868,7174],[7906,7145],[7900,7138],[7865,7136],[7858,7121],[7855,7094],[7841,7072],[7826,7064],[7821,7039],[7827,7040],[7819,7018],[7810,7013],[7816,6984],[7806,6994],[7761,6975],[7761,6991],[7749,7001],[7729,6998],[7729,7007],[7709,7008],[7694,6999],[7669,6996],[7667,7021],[7632,7010],[7619,7013],[7609,7075],[7594,7069],[7598,7082],[7583,7094],[7584,7115],[7574,7138],[7581,7162],[7599,7180],[7600,7164],[7630,7139],[7651,7147],[7661,7143],[7680,7149],[7682,7158],[7709,7163],[7730,7152],[7739,7159],[7759,7158],[7769,7174],[7767,7185],[7781,7193],[7777,7204],[7789,7211],[7794,7248],[7801,7255],[7844,7253],[7857,7248],[7859,7245],[7862,7248]]],[[[8625,7026],[8621,6904],[8614,6813],[8586,6841],[8587,6847],[8549,6840],[8556,6864],[8543,6876],[8546,6894],[8519,6939],[8459,6964],[8434,6966],[8407,6985],[8395,6985],[8384,6997],[8371,6978],[8360,6977],[8357,7004],[8337,7023],[8355,7019],[8365,7030],[8397,7033],[8395,7042],[8354,7036],[8334,7042],[8325,7059],[8298,7064],[8307,7085],[8355,7100],[8378,7088],[8397,7088],[8407,7067],[8401,7041],[8412,7018],[8415,7031],[8428,7002],[8445,7002],[8471,7028],[8475,7038],[8501,7042],[8491,7052],[8471,7049],[8459,7057],[8455,7084],[8469,7076],[8469,7057],[8500,7053],[8523,7063],[8589,7034],[8599,7035],[8625,7026]]],[[[7467,7033],[7482,7005],[7477,6986],[7471,6926],[7464,6921],[7455,6932],[7435,6917],[7409,6943],[7358,6981],[7355,6992],[7336,7006],[7311,7041],[7312,7049],[7294,7085],[7262,7119],[7245,7117],[7253,7132],[7236,7175],[7207,7190],[7205,7205],[7176,7234],[7167,7235],[7132,7270],[7124,7285],[7131,7297],[7164,7282],[7199,7283],[7213,7272],[7225,7248],[7275,7216],[7282,7200],[7315,7173],[7310,7184],[7329,7174],[7338,7181],[7341,7166],[7353,7157],[7368,7136],[7394,7129],[7408,7111],[7396,7104],[7407,7100],[7394,7088],[7408,7078],[7427,7078],[7432,7051],[7442,7045],[7438,7034],[7467,7033]]],[[[7963,6838],[7979,6830],[7986,6838],[8005,6829],[8027,6842],[8063,6839],[8097,6844],[8097,6838],[8063,6831],[8055,6840],[8041,6830],[7999,6825],[7988,6820],[7959,6819],[7919,6828],[7938,6840],[7963,6838]]],[[[7663,6841],[7627,6843],[7584,6859],[7550,6855],[7521,6866],[7492,6869],[7493,6880],[7459,6888],[7479,6919],[7502,6911],[7511,6918],[7531,6907],[7553,6906],[7561,6890],[7622,6884],[7631,6900],[7674,6885],[7686,6886],[7696,6865],[7713,6856],[7737,6862],[7751,6855],[7746,6836],[7753,6824],[7710,6840],[7691,6835],[7663,6841]]],[[[8011,7001],[8024,6977],[8036,6981],[8032,6968],[8006,6963],[8004,6953],[7985,6959],[7990,6978],[7967,6995],[7974,7021],[7964,7026],[7945,7015],[7952,7005],[7951,6959],[7946,6931],[7921,6926],[7915,6935],[7925,6970],[7915,6999],[7902,6995],[7899,7025],[7910,7031],[7917,7047],[7916,7071],[7930,7091],[7932,7119],[7941,7135],[7958,7137],[7969,7156],[7992,7146],[8068,7139],[8089,7151],[8107,7170],[8111,7158],[8081,7124],[8045,7122],[8040,7128],[7998,7125],[7951,7127],[7939,7104],[7942,7090],[7961,7066],[7975,7065],[7994,7096],[8008,7103],[8011,7086],[8051,7090],[8044,7074],[8055,7069],[8039,7049],[8043,7068],[8033,7059],[8028,7075],[8016,7062],[7990,7048],[8004,7023],[8019,7008],[8011,7001]]],[[[8202,7088],[8183,7116],[8181,7132],[8189,7139],[8181,7151],[8187,7169],[8206,7186],[8219,7198],[8217,7179],[8201,7168],[8201,7154],[8189,7144],[8195,7138],[8208,7157],[8224,7163],[8224,7146],[8211,7141],[8229,7120],[8200,7127],[8198,7110],[8215,7082],[8202,7088]]]]}},{"type":"Feature","id":"MU","properties":{"hc-group":"admin0","hc-middle-x":0.61,"hc-middle-y":0.60,"hc-key":"mu","hc-a2":"MU","name":"Mauritius","labelrank":"5","country-abbrev":"Mus.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MUS","iso-a2":"MU","woe-id":"23424894","continent":"Seven seas (open ocean)"},"geometry":{"type":"Polygon","coordinates":[[[5875,6453],[5873,6441],[5863,6440],[5869,6455],[5875,6453]]]}},{"type":"Feature","id":"SE","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.39,"hc-key":"se","hc-a2":"SE","name":"Sweden","labelrank":"3","country-abbrev":"Swe.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"SWE","iso-a2":"SE","woe-id":"23424954","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4559,9008],[4557,8991],[4540,8977],[4533,8997],[4559,9008]]],[[[4563,9373],[4604,9354],[4625,9352],[4650,9337],[4646,9322],[4665,9300],[4657,9288],[4674,9268],[4646,9264],[4623,9267],[4626,9255],[4608,9250],[4595,9230],[4609,9223],[4588,9204],[4559,9189],[4552,9193],[4543,9181],[4511,9158],[4496,9158],[4503,9149],[4495,9128],[4496,9110],[4511,9094],[4519,9096],[4551,9070],[4547,9051],[4533,9054],[4525,9042],[4491,9031],[4496,9022],[4484,9008],[4492,8994],[4491,8974],[4504,8986],[4487,8953],[4481,8967],[4471,8949],[4437,8951],[4424,8940],[4424,8926],[4388,8926],[4373,8955],[4383,8967],[4367,8976],[4347,9002],[4349,9015],[4332,9023],[4330,9045],[4330,9047],[4337,9044],[4347,9053],[4347,9073],[4366,9081],[4368,9093],[4357,9110],[4369,9111],[4373,9122],[4352,9133],[4356,9152],[4351,9175],[4344,9185],[4362,9206],[4377,9211],[4398,9208],[4400,9223],[4387,9227],[4410,9251],[4408,9277],[4433,9282],[4431,9289],[4456,9307],[4447,9320],[4477,9342],[4494,9338],[4499,9356],[4548,9350],[4563,9373]]]]}},{"type":"Feature","id":"RU","properties":{"hc-group":"admin0","hc-middle-x":0.85,"hc-middle-y":0.51,"hc-key":"ru","hc-a2":"RU","name":"Russia","labelrank":"2","country-abbrev":"Rus.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"RUS","iso-a2":"RU","woe-id":"23424936","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8662,8776],[8685,8778],[8677,8755],[8662,8737],[8665,8728],[8652,8708],[8669,8762],[8662,8776]]],[[[5356,9370],[5318,9363],[5304,9379],[5328,9388],[5355,9380],[5356,9370]]],[[[8536,9397],[8529,9390],[8491,9398],[8495,9405],[8536,9397]]],[[[5587,9416],[5621,9403],[5625,9395],[5601,9395],[5569,9407],[5564,9415],[5587,9416]]],[[[8768,9437],[8744,9431],[8729,9445],[8745,9455],[8768,9437]]],[[[-694,9456],[-674,9445],[-695,9439],[-738,9434],[-752,9437],[-729,9455],[-694,9456]]],[[[5849,9514],[5865,9510],[5821,9504],[5817,9516],[5841,9520],[5849,9514]]],[[[6911,9547],[6904,9538],[6863,9547],[6871,9553],[6906,9551],[6911,9547]]],[[[5368,9737],[5337,9735],[5339,9743],[5358,9748],[5394,9747],[5417,9743],[5400,9737],[5368,9737]]],[[[5300,9745],[5282,9738],[5249,9741],[5264,9745],[5300,9745]]],[[[5326,9768],[5387,9766],[5354,9754],[5329,9753],[5281,9759],[5326,9768]]],[[[5525,9771],[5550,9762],[5533,9757],[5500,9754],[5482,9759],[5515,9764],[5525,9771]]],[[[5357,9787],[5381,9793],[5359,9777],[5362,9769],[5317,9771],[5334,9773],[5337,9782],[5357,9787]]],[[[6189,9730],[6198,9734],[6249,9730],[6231,9721],[6189,9730]]],[[[5444,9785],[5464,9788],[5456,9766],[5477,9752],[5457,9745],[5412,9749],[5427,9760],[5444,9785]]],[[[7633,9536],[7623,9533],[7604,9543],[7619,9544],[7640,9532],[7662,9533],[7711,9520],[7718,9508],[7671,9512],[7638,9519],[7633,9536]]],[[[5140,9755],[5102,9746],[5075,9753],[5147,9759],[5140,9755]]],[[[7779,9575],[7790,9577],[7840,9572],[7843,9565],[7813,9560],[7785,9562],[7713,9576],[7710,9588],[7737,9579],[7765,9582],[7779,9575]]],[[[8030,8505],[8024,8511],[8040,8515],[8041,8535],[8033,8554],[8012,8580],[8039,8593],[8060,8570],[8067,8587],[8078,8604],[8083,8627],[8075,8659],[8087,8675],[8077,8692],[8065,8696],[8030,8687],[8019,8674],[7975,8673],[7958,8686],[7959,8693],[7933,8712],[7898,8730],[7857,8734],[7837,8742],[7832,8756],[7799,8784],[7797,8792],[7769,8815],[7770,8820],[7732,8847],[7705,8851],[7682,8860],[7649,8866],[7583,8856],[7567,8840],[7591,8833],[7599,8819],[7586,8804],[7578,8761],[7584,8750],[7568,8748],[7548,8733],[7511,8743],[7494,8750],[7471,8746],[7433,8758],[7406,8743],[7405,8736],[7357,8728],[7341,8721],[7291,8728],[7273,8727],[7250,8738],[7247,8747],[7225,8749],[7203,8760],[7162,8765],[7116,8754],[7068,8770],[7057,8792],[7002,8806],[6987,8806],[6948,8819],[6931,8797],[6930,8782],[6951,8766],[6950,8751],[6931,8741],[6884,8750],[6874,8746],[6846,8750],[6829,8768],[6780,8771],[6769,8778],[6745,8764],[6698,8746],[6702,8740],[6680,8731],[6660,8731],[6651,8722],[6642,8720],[6637,8719],[6610,8736],[6599,8732],[6570,8736],[6557,8751],[6533,8758],[6514,8778],[6501,8782],[6464,8772],[6445,8773],[6431,8788],[6415,8792],[6399,8776],[6377,8798],[6312,8856],[6265,8879],[6264,8895],[6222,8874],[6201,8867],[6171,8869],[6175,8878],[6144,8885],[6105,8884],[6100,8904],[6083,8923],[6067,8917],[6049,8924],[6009,8919],[6009,8912],[5948,8900],[5932,8901],[5928,8892],[5892,8891],[5867,8883],[5807,8876],[5819,8857],[5845,8852],[5808,8837],[5821,8826],[5798,8811],[5811,8802],[5841,8796],[5843,8775],[5825,8771],[5801,8776],[5797,8767],[5771,8771],[5759,8783],[5733,8786],[5726,8777],[5715,8785],[5696,8784],[5674,8767],[5642,8783],[5637,8777],[5599,8798],[5573,8799],[5567,8807],[5552,8798],[5515,8803],[5510,8793],[5484,8786],[5484,8776],[5465,8768],[5475,8750],[5462,8743],[5432,8764],[5416,8743],[5423,8723],[5411,8697],[5431,8692],[5434,8677],[5462,8676],[5497,8643],[5481,8640],[5506,8629],[5479,8609],[5460,8609],[5451,8584],[5438,8574],[5469,8545],[5468,8521],[5508,8482],[5485,8461],[5470,8464],[5452,8482],[5442,8484],[5415,8495],[5418,8503],[5389,8511],[5362,8505],[5325,8525],[5287,8527],[5257,8538],[5237,8533],[5203,8558],[5179,8565],[5164,8577],[5125,8592],[5153,8598],[5164,8619],[5183,8622],[5158,8634],[5175,8646],[5200,8651],[5199,8660],[5168,8654],[5170,8671],[5183,8679],[5211,8678],[5216,8691],[5205,8708],[5214,8713],[5212,8732],[5184,8745],[5153,8751],[5149,8746],[5129,8763],[5106,8756],[5078,8761],[5055,8789],[5028,8790],[5033,8806],[5012,8826],[4969,8825],[4953,8818],[4934,8848],[4959,8850],[4975,8862],[4945,8874],[4924,8901],[4912,8933],[4830,8950],[4827,8964],[4812,8973],[4816,8988],[4801,8996],[4805,9005],[4807,9011],[4809,9027],[4805,9044],[4808,9049],[4810,9053],[4813,9054],[4814,9055],[4812,9055],[4812,9055],[4814,9055],[4817,9056],[4814,9058],[4812,9060],[4812,9070],[4842,9077],[4871,9073],[4861,9082],[4827,9085],[4825,9101],[4801,9095],[4837,9118],[4888,9159],[4895,9172],[4883,9182],[4846,9199],[4860,9209],[4844,9221],[4847,9229],[4828,9240],[4828,9261],[4838,9262],[4830,9277],[4804,9301],[4824,9329],[4803,9341],[4784,9346],[4776,9356],[4787,9373],[4811,9384],[4817,9393],[4834,9389],[4832,9398],[4859,9394],[4864,9403],[4894,9395],[4865,9390],[4925,9385],[4939,9380],[4974,9377],[5024,9362],[5047,9351],[5083,9344],[5124,9328],[5136,9313],[5135,9300],[5118,9287],[5069,9275],[4979,9287],[4962,9293],[4926,9297],[4899,9310],[4895,9302],[4917,9296],[4930,9284],[4958,9276],[4971,9264],[4961,9253],[4977,9236],[4992,9245],[5012,9246],[5018,9238],[5032,9246],[5063,9236],[5108,9226],[5130,9234],[5107,9252],[5107,9260],[5145,9275],[5175,9298],[5178,9288],[5195,9288],[5225,9269],[5219,9282],[5226,9296],[5217,9309],[5203,9312],[5205,9347],[5177,9359],[5249,9353],[5276,9334],[5240,9330],[5233,9317],[5261,9303],[5282,9300],[5312,9306],[5309,9324],[5333,9330],[5383,9353],[5417,9357],[5446,9369],[5470,9372],[5457,9360],[5468,9350],[5448,9348],[5489,9345],[5497,9355],[5518,9361],[5555,9357],[5592,9372],[5610,9364],[5605,9353],[5622,9350],[5623,9362],[5638,9363],[5645,9376],[5618,9391],[5635,9400],[5725,9390],[5774,9374],[5812,9368],[5854,9350],[5870,9370],[5850,9371],[5831,9388],[5796,9391],[5793,9429],[5775,9430],[5773,9447],[5789,9451],[5805,9464],[5804,9493],[5817,9499],[5867,9500],[5904,9493],[5913,9479],[5907,9457],[5899,9455],[5927,9441],[5942,9418],[5936,9414],[5961,9370],[5996,9356],[5986,9346],[5995,9330],[5982,9326],[5979,9311],[5963,9302],[5968,9295],[5926,9287],[5988,9281],[5994,9293],[6018,9300],[6022,9316],[6039,9329],[6016,9362],[6062,9371],[6096,9356],[6101,9332],[6122,9324],[6146,9326],[6113,9331],[6111,9346],[6121,9347],[6098,9369],[6035,9380],[5996,9374],[5973,9396],[5972,9410],[5982,9421],[5949,9446],[5932,9451],[5938,9464],[5970,9473],[5970,9481],[5949,9499],[5956,9519],[5991,9518],[5974,9494],[5988,9480],[5986,9461],[5995,9448],[6064,9441],[6084,9434],[6073,9446],[6015,9456],[6001,9467],[6022,9472],[6045,9464],[6051,9473],[6017,9482],[6030,9491],[6053,9486],[6061,9506],[6074,9500],[6072,9482],[6081,9483],[6156,9460],[6195,9461],[6196,9451],[6178,9446],[6196,9424],[6196,9436],[6209,9433],[6215,9415],[6234,9420],[6202,9445],[6207,9458],[6177,9466],[6157,9479],[6112,9488],[6108,9500],[6089,9509],[6087,9522],[6122,9524],[6123,9538],[6143,9540],[6179,9534],[6183,9526],[6249,9531],[6234,9548],[6209,9556],[6215,9567],[6239,9569],[6282,9587],[6365,9596],[6344,9603],[6401,9605],[6403,9621],[6376,9622],[6379,9636],[6397,9639],[6389,9624],[6415,9624],[6410,9611],[6426,9610],[6423,9599],[6486,9610],[6516,9603],[6480,9618],[6534,9618],[6521,9637],[6553,9655],[6590,9657],[6609,9651],[6609,9673],[6622,9652],[6648,9646],[6646,9636],[6662,9634],[6666,9645],[6683,9631],[6672,9619],[6704,9618],[6700,9625],[6760,9626],[6812,9621],[6840,9609],[6841,9615],[6881,9588],[6844,9596],[6858,9587],[6882,9585],[6889,9578],[6824,9546],[6796,9523],[6773,9523],[6764,9509],[6800,9508],[6868,9525],[6830,9528],[6835,9536],[6905,9526],[6919,9532],[6939,9519],[6983,9526],[7065,9522],[7072,9512],[7130,9502],[7207,9500],[7208,9510],[7190,9521],[7210,9529],[7252,9518],[7269,9521],[7317,9519],[7319,9514],[7367,9504],[7377,9486],[7395,9478],[7385,9472],[7345,9484],[7451,9436],[7486,9429],[7490,9433],[7485,9466],[7529,9451],[7553,9449],[7584,9458],[7640,9454],[7656,9458],[7675,9451],[7696,9453],[7650,9475],[7648,9486],[7686,9489],[7665,9499],[7691,9495],[7799,9488],[7844,9482],[7832,9468],[7845,9464],[7854,9481],[7886,9480],[7927,9474],[7944,9467],[7924,9460],[7973,9454],[7981,9446],[8002,9448],[8038,9433],[8077,9433],[8128,9440],[8173,9440],[8225,9432],[8251,9423],[8267,9431],[8261,9418],[8272,9401],[8297,9393],[8341,9389],[8352,9394],[8392,9397],[8421,9390],[8480,9388],[8493,9397],[8528,9379],[8558,9375],[8578,9364],[8605,9373],[8574,9391],[8554,9408],[8619,9403],[8696,9400],[8726,9396],[8819,9381],[8850,9371],[8993,9243],[8972,9230],[8900,9236],[8920,9227],[8937,9226],[8966,9215],[8970,9219],[8993,9206],[9017,9187],[9041,9180],[9060,9165],[9052,9154],[8999,9161],[8985,9159],[8943,9136],[8919,9134],[8922,9128],[8901,9105],[8872,9091],[8880,9076],[8848,9090],[8802,9096],[8772,9087],[8761,9071],[8752,9093],[8726,9080],[8733,9052],[8744,9040],[8732,9038],[8711,9010],[8736,9002],[8730,8990],[8743,8971],[8757,8970],[8774,8952],[8740,8950],[8741,8933],[8769,8909],[8765,8897],[8735,8898],[8723,8886],[8730,8856],[8709,8844],[8718,8825],[8710,8800],[8692,8781],[8679,8791],[8657,8822],[8633,8845],[8566,8922],[8555,8943],[8547,8971],[8560,8992],[8546,9004],[8564,9005],[8594,9025],[8600,9049],[8631,9083],[8626,9090],[8655,9110],[8661,9121],[8638,9150],[8639,9164],[8606,9159],[8618,9136],[8571,9096],[8567,9111],[8552,9107],[8543,9118],[8549,9128],[8540,9141],[8526,9131],[8513,9139],[8463,9135],[8447,9126],[8455,9116],[8428,9089],[8420,9073],[8425,9061],[8451,9060],[8465,9050],[8435,9046],[8411,9052],[8406,9041],[8387,9046],[8363,9039],[8349,9048],[8334,9044],[8336,9059],[8291,9069],[8273,9060],[8280,9052],[8251,9057],[8244,9052],[8205,9057],[8135,9058],[8102,9051],[8087,9032],[8072,9024],[8072,9006],[8037,8978],[8023,8950],[7978,8910],[8000,8899],[8033,8900],[8045,8873],[8056,8893],[8041,8919],[8061,8913],[8056,8882],[8071,8878],[8066,8865],[8082,8867],[8092,8891],[8124,8890],[8194,8852],[8202,8826],[8215,8822],[8207,8802],[8212,8767],[8232,8735],[8239,8699],[8222,8677],[8213,8653],[8211,8626],[8170,8566],[8165,8545],[8130,8516],[8109,8510],[8080,8516],[8075,8530],[8065,8519],[8059,8531],[8050,8507],[8038,8497],[8035,8500],[8030,8505]]],[[[4590,8894],[4608,8903],[4585,8895],[4585,8895],[4595,8912],[4621,8922],[4623,8922],[4611,8912],[4631,8911],[4632,8921],[4678,8909],[4678,8892],[4676,8892],[4590,8894]]],[[[8489,8567],[8543,8602],[8566,8605],[8576,8621],[8590,8626],[8572,8605],[8537,8593],[8509,8566],[8514,8548],[8507,8546],[8505,8569],[8486,8561],[8476,8543],[8470,8547],[8482,8569],[8489,8567]]],[[[5394,9499],[5386,9508],[5411,9512],[5390,9527],[5446,9552],[5426,9557],[5453,9581],[5487,9592],[5497,9601],[5543,9604],[5539,9610],[5574,9607],[5614,9611],[5647,9620],[5673,9632],[5711,9633],[5731,9620],[5695,9604],[5578,9583],[5552,9573],[5545,9560],[5522,9556],[5521,9550],[5495,9554],[5514,9543],[5502,9542],[5494,9523],[5470,9510],[5455,9480],[5488,9446],[5536,9428],[5528,9422],[5477,9429],[5473,9423],[5419,9433],[5429,9442],[5412,9447],[5410,9438],[5364,9456],[5357,9468],[5381,9473],[5376,9498],[5394,9499]]],[[[8318,8653],[8307,8670],[8308,8682],[8286,8712],[8278,8739],[8259,8767],[8255,8787],[8228,8806],[8215,8827],[8211,8848],[8200,8860],[8220,8860],[8224,8871],[8197,8890],[8208,8894],[8249,8852],[8269,8811],[8291,8791],[8316,8759],[8343,8733],[8361,8715],[8342,8725],[8316,8729],[8317,8684],[8333,8666],[8367,8636],[8337,8639],[8337,8615],[8318,8638],[8318,8653]]],[[[-937,9261],[-977,9243],[-833,9371],[-811,9364],[-809,9347],[-786,9344],[-783,9329],[-765,9333],[-756,9320],[-782,9283],[-763,9289],[-747,9305],[-757,9309],[-684,9305],[-684,9295],[-661,9274],[-687,9269],[-697,9261],[-745,9258],[-758,9242],[-774,9235],[-783,9221],[-819,9217],[-840,9232],[-864,9241],[-852,9254],[-875,9261],[-892,9255],[-921,9257],[-914,9275],[-934,9277],[-937,9261]]],[[[7636,9596],[7685,9585],[7669,9569],[7636,9573],[7617,9580],[7617,9591],[7601,9586],[7633,9571],[7665,9566],[7635,9562],[7616,9568],[7577,9563],[7558,9566],[7564,9558],[7527,9561],[7475,9580],[7489,9580],[7466,9592],[7451,9583],[7439,9580],[7426,9597],[7448,9588],[7493,9608],[7529,9597],[7562,9592],[7555,9607],[7599,9596],[7636,9596]]],[[[6518,9704],[6544,9695],[6563,9693],[6578,9683],[6570,9677],[6487,9673],[6465,9665],[6444,9668],[6453,9678],[6448,9688],[6462,9711],[6495,9710],[6500,9701],[6518,9704]]],[[[6273,9735],[6333,9738],[6362,9728],[6376,9734],[6406,9722],[6409,9707],[6431,9697],[6422,9693],[6383,9693],[6354,9699],[6310,9700],[6278,9715],[6245,9717],[6273,9735]]],[[[5132,9747],[5182,9753],[5165,9757],[5194,9765],[5230,9754],[5187,9748],[5216,9732],[5204,9731],[5184,9744],[5168,9745],[5162,9735],[5144,9734],[5117,9742],[5153,9743],[5132,9747]]],[[[6253,9731],[6181,9743],[6207,9749],[6201,9757],[6197,9765],[6250,9774],[6323,9755],[6307,9753],[6321,9740],[6261,9736],[6253,9731]]]]}},{"type":"Feature","id":"TT","properties":{"hc-group":"admin0","hc-middle-x":0.65,"hc-middle-y":0.58,"hc-key":"tt","hc-a2":"TT","name":"Trinidad and Tobago","labelrank":"5","country-abbrev":"Tr.T.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"TTO","iso-a2":"TT","woe-id":"23424958","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2023,7477],[2016,7460],[2017,7443],[1990,7442],[2002,7448],[2003,7464],[2023,7477]]]}},{"type":"Feature","id":"BR","properties":{"hc-group":"admin0","hc-middle-x":0.54,"hc-middle-y":0.37,"hc-key":"br","hc-a2":"BR","name":"Brazil","labelrank":"2","country-abbrev":"Brazil","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"BRA","iso-a2":"BR","woe-id":"23424768","continent":"South America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[2360,7128],[2358,7118],[2382,7124],[2376,7112],[2339,7111],[2360,7128]]],[[[2340,7087],[2359,7108],[2424,7102],[2409,7064],[2377,7052],[2363,7058],[2351,7053],[2340,7087]]],[[[2318,6012],[2328,6037],[2344,6044],[2340,6057],[2326,6042],[2310,6052],[2276,6081],[2255,6088],[2242,6101],[2230,6093],[2222,6110],[2200,6125],[2176,6123],[2209,6159],[2227,6187],[2253,6207],[2286,6222],[2289,6251],[2279,6272],[2257,6274],[2257,6275],[2256,6278],[2265,6303],[2263,6323],[2250,6332],[2226,6327],[2215,6370],[2189,6388],[2181,6383],[2138,6388],[2140,6425],[2127,6451],[2142,6516],[2133,6537],[2114,6546],[2109,6576],[2054,6579],[2039,6659],[2020,6670],[1994,6668],[1983,6682],[1963,6685],[1952,6697],[1909,6703],[1889,6718],[1874,6746],[1872,6768],[1877,6777],[1870,6794],[1832,6787],[1798,6761],[1780,6752],[1738,6753],[1703,6751],[1701,6789],[1704,6802],[1683,6786],[1651,6784],[1646,6799],[1617,6803],[1624,6814],[1604,6838],[1598,6856],[1588,6864],[1598,6872],[1596,6886],[1616,6902],[1612,6912],[1622,6943],[1654,6963],[1685,6968],[1691,6975],[1718,6973],[1734,7065],[1728,7094],[1713,7106],[1714,7131],[1744,7133],[1736,7146],[1720,7146],[1720,7167],[1776,7168],[1803,7180],[1811,7150],[1818,7151],[1842,7135],[1855,7143],[1861,7133],[1875,7148],[1908,7163],[1910,7173],[1931,7182],[1933,7190],[1911,7192],[1906,7229],[1892,7242],[1932,7241],[1952,7229],[1954,7244],[1993,7251],[2012,7260],[2025,7274],[2020,7282],[2045,7278],[2040,7259],[2054,7255],[2059,7240],[2049,7230],[2043,7200],[2051,7172],[2082,7150],[2098,7164],[2123,7167],[2138,7178],[2158,7175],[2173,7171],[2175,7194],[2183,7190],[2208,7195],[2220,7188],[2235,7181],[2261,7188],[2273,7183],[2286,7193],[2294,7215],[2316,7244],[2322,7257],[2336,7239],[2338,7211],[2349,7181],[2355,7183],[2373,7166],[2367,7136],[2356,7133],[2324,7093],[2329,7078],[2312,7064],[2297,7067],[2297,7056],[2339,7074],[2349,7052],[2380,7048],[2392,7055],[2382,7024],[2396,7048],[2437,7091],[2454,7092],[2467,7085],[2496,7081],[2524,7054],[2534,7067],[2550,7049],[2552,7013],[2555,7028],[2562,7019],[2578,7037],[2618,7021],[2645,7017],[2699,7018],[2748,6990],[2761,6975],[2791,6951],[2810,6944],[2844,6944],[2854,6932],[2870,6876],[2870,6852],[2855,6810],[2820,6767],[2804,6758],[2780,6717],[2760,6688],[2746,6698],[2739,6677],[2737,6631],[2745,6592],[2736,6549],[2739,6532],[2724,6515],[2723,6477],[2713,6464],[2702,6436],[2691,6428],[2682,6406],[2687,6392],[2655,6373],[2653,6359],[2580,6360],[2547,6338],[2499,6316],[2472,6294],[2450,6258],[2450,6236],[2461,6208],[2452,6177],[2421,6147],[2409,6114],[2386,6080],[2384,6094],[2397,6103],[2395,6117],[2379,6122],[2375,6093],[2361,6086],[2353,6072],[2354,6054],[2345,6027],[2323,6006],[2318,6009],[2318,6012]]]]}},{"type":"Feature","id":"BS","properties":{"hc-group":"admin0","hc-middle-x":0.11,"hc-middle-y":0.53,"hc-key":"bs","hc-a2":"BS","name":"The Bahamas","labelrank":"4","country-abbrev":"Bhs.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"BHS","iso-a2":"BS","woe-id":"23424758","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1518,7931],[1505,7911],[1514,7902],[1508,7891],[1493,7919],[1505,7935],[1518,7931]]],[[[1553,7943],[1544,7944],[1527,7963],[1534,7978],[1526,7991],[1485,7980],[1494,7987],[1526,7992],[1540,7980],[1533,7960],[1553,7943]]],[[[1594,7868],[1628,7856],[1652,7843],[1613,7859],[1597,7860],[1594,7868],[1594,7868],[1594,7868]]],[[[1590,7879],[1594,7868],[1594,7868],[1594,7868],[1591,7869],[1590,7879],[1590,7879]]],[[[1590,7879],[1581,7902],[1587,7902],[1587,7901],[1587,7901],[1590,7879],[1590,7879]]],[[[1587,7902],[1587,7902],[1611,7901],[1587,7902],[1587,7902],[1587,7902]]]]}},{"type":"Feature","id":"PW","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.51,"hc-key":"pw","hc-a2":"PW","name":"Palau","labelrank":"6","country-abbrev":"Palau","subregion":"Micronesia","region-wb":"East Asia & Pacific","iso-a3":"PLW","iso-a2":"PW","woe-id":"23424927","continent":"Oceania"},"geometry":{"type":"Polygon","coordinates":[[[8303,7210],[8303,7211],[8303,7212],[8304,7211],[8303,7210]]]}},{"type":"Feature","id":"CL","properties":{"hc-group":"admin0","hc-middle-x":0.06,"hc-middle-y":0.74,"hc-key":"cl","hc-a2":"CL","name":"Chile","labelrank":"2","country-abbrev":"Chile","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"CHL","iso-a2":"CL","woe-id":"23424782","continent":"South America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1727,6511],[1740,6514],[1742,6530],[1753,6538],[1766,6517],[1774,6491],[1793,6475],[1785,6465],[1785,6442],[1806,6414],[1821,6364],[1843,6364],[1850,6358],[1842,6325],[1815,6313],[1805,6300],[1813,6289],[1807,6278],[1816,6255],[1812,6242],[1822,6230],[1806,6223],[1798,6196],[1785,6181],[1783,6158],[1777,6150],[1785,6118],[1778,6117],[1769,6077],[1794,6034],[1807,5990],[1800,5988],[1794,5959],[1799,5930],[1781,5916],[1779,5900],[1784,5876],[1799,5844],[1784,5837],[1785,5814],[1779,5778],[1786,5748],[1795,5733],[1784,5726],[1788,5703],[1802,5697],[1798,5688],[1810,5672],[1809,5657],[1828,5656],[1828,5644],[1804,5645],[1831,5628],[1819,5614],[1827,5606],[1828,5564],[1818,5558],[1814,5542],[1825,5528],[1820,5513],[1799,5496],[1804,5469],[1820,5449],[1845,5452],[1849,5423],[1869,5408],[1927,5408],[1975,5397],[1954,5401],[1912,5384],[1912,5349],[1879,5353],[1869,5360],[1896,5371],[1890,5381],[1863,5366],[1865,5358],[1839,5370],[1840,5373],[1796,5406],[1818,5400],[1804,5415],[1779,5406],[1776,5420],[1788,5413],[1802,5421],[1803,5442],[1781,5458],[1785,5429],[1765,5420],[1764,5431],[1782,5436],[1763,5448],[1769,5458],[1781,5459],[1770,5467],[1779,5471],[1781,5490],[1770,5494],[1764,5519],[1752,5539],[1778,5538],[1783,5545],[1746,5548],[1759,5572],[1708,5583],[1727,5601],[1721,5609],[1736,5623],[1757,5616],[1773,5627],[1760,5649],[1774,5660],[1762,5664],[1769,5684],[1762,5688],[1770,5703],[1763,5728],[1771,5733],[1753,5753],[1747,5743],[1730,5744],[1719,5769],[1719,5802],[1731,5818],[1706,5876],[1706,5894],[1717,5894],[1725,5946],[1736,5961],[1737,5992],[1746,6014],[1747,6051],[1729,6109],[1739,6132],[1728,6163],[1741,6207],[1744,6261],[1747,6280],[1741,6301],[1740,6332],[1735,6354],[1742,6357],[1746,6409],[1739,6430],[1740,6456],[1727,6511]],[[1840,5373],[1841,5372],[1852,5382],[1852,5382],[1852,5382],[1852,5382],[1884,5390],[1862,5391],[1852,5382],[1852,5382],[1852,5382],[1852,5382],[1845,5381],[1840,5373]]],[[[2055,5303],[2044,5299],[2012,5302],[2006,5313],[2033,5312],[2055,5303]]],[[[1748,5669],[1744,5654],[1755,5650],[1756,5626],[1740,5632],[1741,5642],[1721,5648],[1739,5657],[1748,5669]]],[[[1832,5365],[1808,5372],[1794,5384],[1820,5375],[1880,5349],[1862,5338],[1845,5352],[1836,5350],[1832,5365]]],[[[1738,5723],[1745,5710],[1743,5690],[1730,5691],[1713,5681],[1725,5702],[1722,5738],[1736,5742],[1745,5725],[1738,5723]]],[[[1957,5308],[1960,5314],[1988,5310],[2015,5292],[2045,5284],[2027,5280],[2011,5293],[1989,5296],[1991,5304],[1964,5296],[1957,5308]]],[[[1733,5544],[1744,5545],[1765,5508],[1774,5475],[1763,5473],[1763,5459],[1752,5449],[1748,5468],[1757,5477],[1737,5485],[1740,5497],[1754,5497],[1738,5518],[1728,5518],[1724,5536],[1733,5544]]],[[[1973,5387],[1992,5317],[1990,5317],[1992,5316],[1993,5313],[1961,5317],[1940,5309],[1910,5326],[1910,5334],[1893,5331],[1882,5339],[1886,5347],[1918,5339],[1927,5356],[1938,5332],[1978,5328],[1944,5340],[1938,5351],[1958,5364],[1934,5360],[1923,5375],[1941,5383],[1947,5393],[1958,5386],[1973,5387]]]]}},{"type":"Feature","id":"GD","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"gd","hc-a2":"GD","name":"Grenada","labelrank":"6","country-abbrev":"Gren.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"GRD","iso-a2":"GD","woe-id":"23424826","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1998,7506],[1995,7506],[1995,7510],[2000,7512],[1998,7506]]]}},{"type":"Feature","id":"EE","properties":{"hc-group":"admin0","hc-middle-x":0.38,"hc-middle-y":0.43,"hc-key":"ee","hc-a2":"EE","name":"Estonia","labelrank":"6","country-abbrev":"Est.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"EST","iso-a2":"EE","woe-id":"23424805","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4658,9034],[4642,9042],[4658,9047],[4671,9038],[4661,9031],[4681,9026],[4649,9016],[4638,9028],[4658,9034]]],[[[4812,9060],[4814,9058],[4817,9056],[4815,9055],[4812,9055],[4814,9055],[4814,9055],[4814,9055],[4813,9054],[4811,9054],[4808,9049],[4805,9044],[4784,9037],[4807,9011],[4805,9005],[4801,8996],[4776,8995],[4739,9014],[4711,9007],[4717,9022],[4700,9022],[4686,9029],[4682,9051],[4712,9059],[4737,9060],[4744,9066],[4777,9060],[4812,9060]]]]}},{"type":"Feature","id":"AG","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.51,"hc-key":"ag","hc-a2":"AG","name":"Antigua and Barbuda","labelrank":"6","country-abbrev":"Ant.B.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"ATG","iso-a2":"AG","woe-id":"23424737","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2003,7672],[2006,7669],[2001,7668],[1999,7672],[2003,7672]]]}},{"type":"Feature","id":"TW","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.46,"hc-key":"tw","hc-a2":"TW","name":"Taiwan","labelrank":"3","country-abbrev":"Taiwan","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"TWN","iso-a2":"TW","woe-id":"23424971","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7859,7883],[7875,7890],[7895,7932],[7911,7939],[7922,7934],[7918,7870],[7906,7843],[7907,7829],[7875,7867],[7874,7881],[7859,7883]]]}},{"type":"Feature","id":"FJ","properties":{"hc-group":"admin0","hc-middle-x":0.30,"hc-middle-y":0.66,"hc-key":"fj","hc-a2":"FJ","name":"Fiji","labelrank":"6","country-abbrev":"Fiji","subregion":"Melanesia","region-wb":"East Asia & Pacific","iso-a3":"FJI","iso-a2":"FJ","woe-id":"23424813","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9835,6576],[9851,6578],[9836,6564],[9811,6554],[9807,6562],[9835,6576]]],[[[9809,6531],[9782,6508],[9792,6494],[9780,6490],[9775,6513],[9758,6518],[9757,6526],[9772,6540],[9793,6543],[9805,6531],[9809,6531],[9809,6531]]],[[[9809,6531],[9809,6531],[9828,6527],[9809,6531],[9809,6531]]]]}},{"type":"Feature","id":"BB","properties":{"hc-group":"admin0","hc-middle-x":0.26,"hc-middle-y":0.57,"hc-key":"bb","hc-a2":"BB","name":"Barbados","labelrank":"5","country-abbrev":"Barb.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"BRB","iso-a2":"BB","woe-id":"23424754","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[2069,7539],[2065,7541],[2066,7549],[2072,7541],[2069,7539]]]}},{"type":"Feature","id":"IT","properties":{"hc-group":"admin0","hc-middle-x":0.68,"hc-middle-y":0.54,"hc-key":"it","hc-a2":"IT","name":"Italy","labelrank":"2","country-abbrev":"Italy","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"ITA","iso-a2":"IT","woe-id":"23424853","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4437,8329],[4397,8350],[4407,8362],[4439,8355],[4497,8365],[4484,8348],[4481,8334],[4488,8324],[4481,8312],[4437,8329]]],[[[4266,8450],[4287,8458],[4304,8459],[4313,8439],[4306,8394],[4291,8396],[4284,8385],[4270,8388],[4272,8425],[4266,8450]]],[[[4238,8546],[4243,8558],[4222,8561],[4222,8580],[4210,8589],[4227,8599],[4216,8608],[4222,8616],[4247,8616],[4254,8627],[4277,8620],[4279,8613],[4290,8634],[4311,8630],[4326,8636],[4326,8647],[4378,8654],[4385,8641],[4425,8635],[4415,8628],[4426,8605],[4411,8611],[4379,8596],[4391,8584],[4383,8576],[4388,8560],[4426,8537],[4442,8507],[4476,8485],[4503,8485],[4504,8468],[4566,8443],[4583,8426],[4578,8415],[4562,8431],[4537,8439],[4524,8424],[4522,8412],[4542,8402],[4541,8386],[4525,8382],[4525,8370],[4510,8354],[4496,8356],[4502,8377],[4513,8382],[4493,8424],[4471,8430],[4466,8444],[4444,8449],[4433,8463],[4412,8462],[4399,8469],[4368,8496],[4353,8504],[4333,8525],[4318,8553],[4277,8567],[4259,8551],[4238,8546]],[[4393,8484],[4393,8484],[4393,8484],[4393,8484],[4393,8484]],[[4391,8549],[4391,8552],[4389,8552],[4388,8550],[4391,8549]]]]}},{"type":"Feature","id":"MT","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.53,"hc-key":"mt","hc-a2":"MT","name":"Malta","labelrank":"5","country-abbrev":"Malta","subregion":"Southern Europe","region-wb":"Middle East & North Africa","iso-a3":"MLT","iso-a2":"MT","woe-id":"23424897","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4456,8291],[4464,8288],[4464,8284],[4460,8286],[4456,8291]]]}},{"type":"Feature","id":"PG","properties":{"hc-group":"admin0","hc-middle-x":0.26,"hc-middle-y":0.50,"hc-key":"pg","hc-a2":"PG","name":"Papua New Guinea","labelrank":"2","country-abbrev":"P.N.G.","subregion":"Melanesia","region-wb":"East Asia & Pacific","iso-a3":"PNG","iso-a2":"PG","woe-id":"23424926","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9069,6933],[9083,6930],[9087,6919],[9109,6898],[9108,6888],[9090,6890],[9087,6903],[9072,6917],[9069,6933]]],[[[8936,7024],[8928,7033],[8976,7011],[8985,7025],[8992,6999],[9022,6972],[9013,6953],[9007,6974],[8995,6994],[8955,7019],[8936,7024]]],[[[8614,6813],[8621,6904],[8625,7026],[8660,7011],[8708,6999],[8724,6987],[8740,6986],[8781,6952],[8778,6932],[8816,6920],[8824,6941],[8830,6917],[8845,6904],[8845,6892],[8816,6890],[8821,6867],[8838,6852],[8851,6848],[8853,6831],[8864,6814],[8887,6815],[8883,6801],[8908,6796],[8920,6805],[8933,6803],[8935,6791],[8946,6777],[8917,6772],[8934,6766],[8911,6761],[8908,6769],[8840,6778],[8812,6801],[8784,6846],[8709,6863],[8715,6850],[8693,6837],[8694,6818],[8669,6806],[8655,6811],[8619,6809],[8614,6813]]],[[[8988,6935],[8951,6914],[8931,6906],[8904,6905],[8885,6910],[8876,6919],[8854,6927],[8857,6934],[8892,6928],[8913,6930],[8919,6946],[8922,6930],[8951,6934],[8963,6951],[8973,6951],[8970,6975],[8998,6970],[8993,6950],[8983,6948],[8988,6935]]]]}},{"type":"Feature","id":"VU","properties":{"hc-group":"admin0","hc-middle-x":0.27,"hc-middle-y":0.32,"hc-key":"vu","hc-a2":"VU","name":"Vanuatu","labelrank":"4","country-abbrev":"Van.","subregion":"Melanesia","region-wb":"East Asia & Pacific","iso-a3":"VUT","iso-a2":"VU","woe-id":"23424907","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9445,6599],[9448,6584],[9460,6572],[9448,6568],[9444,6596],[9429,6599],[9426,6626],[9433,6615],[9443,6622],[9445,6599]]],[[[9472,6564],[9472,6565],[9472,6566],[9472,6566],[9472,6564],[9472,6564],[9472,6564]]],[[[9472,6564],[9480,6558],[9470,6539],[9472,6564],[9472,6564],[9472,6564]]],[[[9472,6566],[9474,6588],[9466,6604],[9476,6615],[9476,6578],[9472,6566],[9472,6566]]]]}},{"type":"Feature","id":"SG","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.58,"hc-key":"sg","hc-a2":"SG","name":"Singapore","labelrank":"6","country-abbrev":"Sing.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"SGP","iso-a2":"SG","woe-id":"23424948","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7410,7159],[7415,7156],[7410,7153],[7403,7154],[7410,7159]]]}},{"type":"Feature","id":"CY","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.51,"hc-key":"cy","hc-a2":"CY","name":"Cyprus","labelrank":"5","country-abbrev":"Cyp.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"CYP","iso-a2":"CY","woe-id":"-90","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5070,8258],[5070,8258],[5070,8258],[5070,8258],[5070,8258]]],[[[5079,8260],[5081,8257],[5075,8257],[5072,8259],[5075,8260],[5078,8259],[5079,8260]]],[[[5071,8258],[5071,8258],[5072,8257],[5071,8257],[5071,8258]]],[[[5069,8257],[5066,8252],[5048,8246],[5042,8248],[5040,8247],[5024,8259],[5033,8264],[5035,8263],[5036,8264],[5037,8264],[5037,8264],[5038,8264],[5038,8264],[5038,8264],[5038,8264],[5059,8263],[5069,8257],[5069,8257]]]]}},{"type":"Feature","id":"KM","properties":{"hc-group":"admin0","hc-middle-x":0.43,"hc-middle-y":0.51,"hc-key":"km","hc-a2":"KM","name":"Comoros","labelrank":"6","country-abbrev":"Com.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"COM","iso-a2":"KM","woe-id":"23424786","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5426,6721],[5418,6726],[5420,6739],[5424,6737],[5426,6721]]]}},{"type":"Feature","id":"VA","properties":{"hc-group":"admin0","hc-middle-x":0.59,"hc-middle-y":0.44,"hc-key":"va","hc-a2":"VA","name":"Vatican","labelrank":"6","country-abbrev":"Vat.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"VAT","iso-a2":"VA","woe-id":"23424986","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4393,8484],[4393,8484],[4393,8484],[4393,8484],[4393,8484]]]}},{"type":"Feature","id":"SM","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.42,"hc-key":"sm","hc-a2":"SM","name":"San Marino","labelrank":"6","country-abbrev":"S.M.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"SMR","iso-a2":"SM","woe-id":"23424947","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4391,8549],[4388,8550],[4389,8552],[4391,8552],[4391,8549]]]}},{"type":"Feature","id":"AZ","properties":{"hc-group":"admin0","hc-middle-x":0.73,"hc-middle-y":0.51,"hc-key":"az","hc-a2":"AZ","name":"Azerbaijan","labelrank":"5","country-abbrev":"Aze.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"AZE","iso-a2":"AZ","woe-id":"23424741","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5402,8456],[5401,8455],[5400,8457],[5402,8457],[5402,8456]]],[[[5408,8454],[5407,8453],[5407,8454],[5408,8454]]],[[[5401,8410],[5400,8412],[5432,8407],[5445,8384],[5423,8389],[5401,8410]]],[[[5442,8484],[5452,8482],[5470,8464],[5485,8461],[5508,8482],[5525,8468],[5545,8442],[5560,8441],[5543,8424],[5540,8389],[5533,8395],[5533,8370],[5524,8369],[5504,8383],[5512,8401],[5499,8412],[5457,8385],[5451,8401],[5425,8423],[5435,8429],[5414,8444],[5421,8450],[5400,8464],[5407,8469],[5448,8456],[5452,8464],[5435,8476],[5442,8484]],[[5418,8442],[5419,8441],[5420,8443],[5418,8443],[5418,8442]]]]}},{"type":"Feature","id":"AM","properties":{"hc-group":"admin0","hc-middle-x":0.54,"hc-middle-y":0.42,"hc-key":"am","hc-a2":"AM","name":"Armenia","labelrank":"6","country-abbrev":"Arm.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"ARM","iso-a2":"AM","woe-id":"23424743","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5418,8442],[5418,8443],[5420,8443],[5419,8441],[5418,8442]]],[[[5457,8385],[5453,8386],[5445,8384],[5432,8407],[5400,8412],[5384,8423],[5364,8425],[5363,8444],[5353,8458],[5375,8462],[5400,8464],[5421,8450],[5414,8444],[5435,8429],[5425,8423],[5451,8401],[5457,8385]],[[5402,8456],[5402,8457],[5400,8457],[5401,8455],[5402,8456]],[[5408,8454],[5407,8454],[5407,8453],[5408,8454]]]]}},{"type":"Feature","id":"SD","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"sd","hc-a2":"SD","name":"Sudan","labelrank":"3","country-abbrev":"Sudan","subregion":"Northern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SDN","iso-a2":"SD","woe-id":"-90","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4784,7750],[4784,7766],[4816,7767],[4814,7832],[5016,7832],[5198,7832],[5199,7821],[5213,7794],[5211,7767],[5225,7724],[5260,7701],[5248,7685],[5209,7671],[5209,7645],[5193,7607],[5197,7579],[5185,7527],[5171,7526],[5157,7501],[5145,7463],[5137,7468],[5121,7421],[5116,7421],[5116,7445],[5091,7467],[5087,7491],[5091,7511],[5076,7505],[5054,7504],[5063,7495],[5066,7473],[5051,7460],[5028,7432],[5013,7430],[4988,7448],[4951,7417],[4924,7417],[4919,7426],[4876,7423],[4852,7453],[4827,7448],[4818,7433],[4811,7402],[4798,7396],[4776,7399],[4780,7434],[4754,7469],[4755,7485],[4743,7494],[4746,7507],[4732,7529],[4719,7530],[4734,7548],[4727,7563],[4742,7575],[4736,7588],[4746,7593],[4759,7626],[4788,7626],[4784,7750]]]}},{"type":"Feature","id":"LY","properties":{"hc-group":"admin0","hc-middle-x":0.44,"hc-middle-y":0.47,"hc-key":"ly","hc-a2":"LY","name":"Libya","labelrank":"3","country-abbrev":"Libya","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"LBY","iso-a2":"LY","woe-id":"23424882","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4814,7832],[4816,7767],[4784,7766],[4784,7750],[4523,7879],[4491,7865],[4466,7852],[4442,7871],[4394,7882],[4379,7907],[4352,7916],[4343,7913],[4330,7926],[4328,7943],[4310,7967],[4323,7980],[4319,8005],[4326,8024],[4320,8037],[4321,8066],[4304,8098],[4311,8102],[4322,8106],[4334,8124],[4329,8141],[4353,8164],[4371,8172],[4372,8198],[4399,8187],[4430,8189],[4489,8173],[4499,8149],[4517,8136],[4560,8130],[4587,8119],[4614,8103],[4636,8111],[4648,8134],[4640,8152],[4644,8165],[4659,8178],[4692,8190],[4709,8191],[4739,8181],[4739,8171],[4772,8160],[4800,8159],[4806,8148],[4797,8139],[4802,8120],[4794,8100],[4804,8067],[4814,7832]]]}},{"type":"Feature","id":"TJ","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.51,"hc-key":"tj","hc-a2":"TJ","name":"Tajikistan","labelrank":"4","country-abbrev":"Tjk.","subregion":"Central Asia","region-wb":"Europe & Central Asia","iso-a3":"TJK","iso-a2":"TJ","woe-id":"23424961","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6196,8453],[6195,8452],[6192,8455],[6194,8455],[6196,8453]]],[[[6202,8417],[6205,8416],[6201,8414],[6198,8418],[6202,8417]]],[[[6298,8404],[6310,8375],[6339,8373],[6352,8331],[6330,8337],[6315,8331],[6300,8339],[6283,8324],[6252,8314],[6244,8326],[6245,8353],[6234,8365],[6211,8368],[6200,8354],[6201,8341],[6181,8342],[6176,8327],[6157,8333],[6138,8321],[6129,8330],[6141,8364],[6130,8374],[6129,8388],[6104,8396],[6113,8409],[6136,8406],[6148,8418],[6159,8448],[6167,8443],[6189,8455],[6201,8444],[6190,8437],[6210,8429],[6198,8423],[6180,8429],[6159,8414],[6163,8406],[6199,8409],[6210,8401],[6230,8409],[6257,8395],[6268,8402],[6298,8404]]]]}},{"type":"Feature","id":"MX","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.50,"hc-key":"mx","hc-a2":"MX","name":"Mexico","labelrank":"2","country-abbrev":"Mex.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"MEX","iso-a2":"MX","woe-id":"23424900","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1117,7695],[1058,7695],[1055,7677],[1041,7677],[1072,7648],[1068,7638],[1027,7637],[1010,7612],[1006,7588],[957,7638],[931,7643],[927,7650],[907,7635],[869,7624],[831,7635],[800,7654],[774,7658],[729,7677],[706,7697],[694,7698],[653,7712],[630,7736],[609,7745],[591,7780],[607,7787],[599,7792],[612,7814],[600,7831],[598,7853],[581,7871],[569,7893],[534,7926],[531,7939],[498,7956],[509,7974],[504,7986],[473,8008],[477,8023],[465,8023],[443,8044],[431,8062],[414,8121],[420,8132],[395,8147],[376,8152],[365,8144],[361,8101],[367,8087],[387,8071],[402,8071],[388,8062],[399,8045],[410,8048],[405,8024],[416,8014],[425,7986],[436,7986],[439,7956],[447,7953],[448,7935],[458,7926],[450,7916],[457,7901],[461,7913],[478,7903],[484,7873],[468,7861],[458,7883],[437,7901],[417,7907],[411,7924],[401,7924],[411,7939],[410,7964],[382,7986],[346,8004],[324,8032],[338,8023],[356,8024],[361,8016],[368,8044],[345,8074],[325,8086],[321,8120],[308,8145],[301,8177],[379,8183],[374,8176],[484,8138],[574,8138],[578,8152],[631,8152],[674,8112],[680,8084],[693,8072],[719,8061],[739,8085],[752,8091],[782,8082],[783,8077],[790,8076],[799,8065],[807,8038],[827,8015],[826,7998],[831,7989],[832,7982],[860,7966],[894,7962],[870,7914],[854,7850],[856,7820],[868,7788],[888,7762],[891,7745],[904,7726],[924,7724],[946,7706],[1005,7721],[1032,7721],[1064,7739],[1081,7764],[1090,7800],[1109,7809],[1164,7819],[1191,7814],[1200,7818],[1208,7806],[1188,7783],[1160,7709],[1153,7713],[1146,7717],[1126,7697],[1117,7695]]]}},{"type":"Feature","id":"GT","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.47,"hc-key":"gt","hc-a2":"GT","name":"Guatemala","labelrank":"3","country-abbrev":"Guat.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"GTM","iso-a2":"GT","woe-id":"23424834","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1006,7588],[1010,7612],[1027,7637],[1068,7638],[1072,7648],[1041,7677],[1055,7677],[1058,7695],[1117,7695],[1108,7632],[1119,7632],[1128,7627],[1141,7627],[1108,7605],[1100,7584],[1074,7564],[1074,7561],[1035,7569],[1006,7588]]]}},{"type":"Feature","id":"LS","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.51,"hc-key":"ls","hc-a2":"LS","name":"Lesotho","labelrank":"6","country-abbrev":"Les.","subregion":"Southern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"LSO","iso-a2":"LS","woe-id":"23424880","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4877,6144],[4893,6164],[4922,6175],[4946,6150],[4936,6131],[4911,6124],[4901,6107],[4879,6118],[4869,6141],[4877,6144]]]}},{"type":"Feature","id":"NP","properties":{"hc-group":"admin0","hc-middle-x":0.66,"hc-middle-y":0.66,"hc-key":"np","hc-a2":"NP","name":"Nepal","labelrank":"3","country-abbrev":"Nepal","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"NPL","iso-a2":"NP","woe-id":"23424911","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6585,8101],[6596,8106],[6619,8105],[6622,8096],[6657,8082],[6670,8067],[6688,8070],[6710,8048],[6726,8048],[6725,8039],[6744,8040],[6755,8025],[6773,8032],[6793,8023],[6824,8024],[6823,7999],[6831,7987],[6806,7975],[6757,7982],[6717,7997],[6713,8007],[6698,8013],[6690,8007],[6654,8012],[6625,8024],[6578,8051],[6561,8056],[6567,8086],[6585,8101]]]}},{"type":"Feature","id":"UZ","properties":{"hc-group":"admin0","hc-middle-x":0.53,"hc-middle-y":0.53,"hc-key":"uz","hc-a2":"UZ","name":"Uzbekistan","labelrank":"3","country-abbrev":"Uzb.","subregion":"Central Asia","region-wb":"Europe & Central Asia","iso-a3":"UZB","iso-a2":"UZ","woe-id":"23424980","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[6237,8418],[6235,8419],[6234,8420],[6237,8421],[6237,8418]]],[[[6218,8423],[6220,8418],[6214,8418],[6211,8425],[6218,8423]]],[[[5801,8601],[5824,8590],[5819,8577],[5844,8560],[5845,8580],[5878,8565],[5914,8536],[5949,8540],[5987,8538],[6001,8544],[6022,8530],[6033,8516],[6042,8520],[6046,8487],[6061,8487],[6072,8461],[6110,8461],[6114,8448],[6134,8441],[6132,8452],[6143,8467],[6196,8495],[6206,8494],[6177,8473],[6198,8462],[6218,8459],[6226,8469],[6259,8450],[6273,8447],[6233,8427],[6210,8429],[6190,8437],[6201,8444],[6189,8455],[6167,8443],[6159,8448],[6148,8418],[6136,8406],[6113,8409],[6104,8396],[6129,8388],[6130,8374],[6141,8364],[6129,8330],[6113,8329],[6089,8335],[6086,8357],[6055,8364],[6012,8388],[6005,8388],[5947,8422],[5927,8454],[5867,8467],[5854,8497],[5841,8497],[5812,8513],[5802,8510],[5812,8497],[5796,8504],[5787,8492],[5778,8498],[5770,8485],[5772,8463],[5740,8465],[5719,8585],[5796,8603],[5789,8583],[5794,8567],[5806,8577],[5801,8601]],[[6196,8453],[6194,8455],[6192,8455],[6195,8452],[6196,8453]]]]}},{"type":"Feature","id":"BD","properties":{"hc-group":"admin0","hc-middle-x":0.41,"hc-middle-y":0.77,"hc-key":"bd","hc-a2":"BD","name":"Bangladesh","labelrank":"3","country-abbrev":"Bang.","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"BGD","iso-a2":"BD","woe-id":"23424759","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6882,7830],[6882,7832],[6881,7836],[6876,7846],[6858,7886],[6861,7907],[6836,7919],[6847,7937],[6863,7936],[6832,7960],[6842,7978],[6889,7961],[6890,7943],[6909,7935],[6963,7936],[6978,7928],[6969,7911],[6946,7901],[6941,7885],[6959,7863],[6973,7889],[6982,7874],[6995,7831],[7000,7809],[6990,7814],[6989,7801],[6974,7816],[6974,7828],[6959,7855],[6946,7847],[6934,7856],[6923,7876],[6938,7837],[6918,7826],[6896,7831],[6888,7821],[6882,7830],[6882,7830]]]}},{"type":"Feature","id":"MN","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.52,"hc-key":"mn","hc-a2":"MN","name":"Mongolia","labelrank":"3","country-abbrev":"Mong.","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"MNG","iso-a2":"MN","woe-id":"23424887","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7511,8743],[7499,8688],[7515,8674],[7543,8680],[7564,8676],[7574,8679],[7568,8683],[7593,8683],[7636,8658],[7648,8648],[7646,8638],[7601,8642],[7577,8630],[7556,8628],[7550,8609],[7538,8600],[7504,8598],[7483,8577],[7431,8588],[7420,8567],[7444,8543],[7419,8530],[7408,8512],[7383,8502],[7342,8502],[7301,8497],[7258,8479],[7237,8476],[7235,8483],[7211,8479],[7189,8487],[7156,8493],[7140,8504],[7089,8509],[7073,8506],[7001,8513],[6975,8511],[6956,8528],[6931,8562],[6920,8561],[6882,8575],[6867,8584],[6827,8586],[6784,8592],[6774,8602],[6780,8619],[6776,8637],[6743,8673],[6716,8684],[6700,8684],[6663,8702],[6651,8722],[6660,8731],[6680,8731],[6702,8740],[6698,8746],[6745,8764],[6769,8778],[6780,8771],[6829,8768],[6846,8750],[6874,8746],[6884,8750],[6931,8741],[6950,8751],[6951,8766],[6930,8782],[6931,8797],[6948,8819],[6987,8806],[7002,8806],[7057,8792],[7068,8770],[7116,8754],[7162,8765],[7203,8760],[7225,8749],[7247,8747],[7250,8738],[7273,8727],[7291,8728],[7341,8721],[7357,8728],[7405,8736],[7406,8743],[7433,8758],[7471,8746],[7494,8750],[7511,8743]]]}},{"type":"Feature","id":"PT","properties":{"hc-group":"admin0","hc-middle-x":0.46,"hc-middle-y":0.51,"hc-key":"pt","hc-a2":"PT","name":"Portugal","labelrank":"2","country-abbrev":"Port.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"PRT","iso-a2":"PT","woe-id":"23424925","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[3776,8330],[3759,8323],[3740,8327],[3727,8324],[3733,8337],[3734,8370],[3712,8379],[3739,8448],[3734,8482],[3738,8486],[3755,8492],[3756,8481],[3805,8485],[3816,8473],[3793,8455],[3798,8433],[3790,8412],[3773,8411],[3791,8389],[3779,8371],[3789,8357],[3773,8342],[3776,8330]]]}},{"type":"Feature","id":"MA","properties":{"hc-group":"admin0","hc-middle-x":0.72,"hc-middle-y":0.12,"hc-key":"ma","hc-a2":"MA","name":"Morocco","labelrank":"3","country-abbrev":"Mor.","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"MAR","iso-a2":"MA","woe-id":"23424893","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3916,8267],[3917,8267],[3918,8262],[3938,8261],[3953,8249],[3955,8200],[3963,8184],[3975,8177],[3969,8162],[3929,8164],[3919,8153],[3892,8148],[3887,8138],[3892,8117],[3869,8111],[3825,8081],[3781,8078],[3764,8074],[3731,8050],[3731,8017],[3727,8000],[3707,7999],[3697,7991],[3659,7996],[3644,7992],[3645,7984],[3633,7966],[3623,7964],[3609,7925],[3588,7911],[3580,7897],[3565,7891],[3557,7878],[3550,7842],[3529,7814],[3459,7813],[3469,7841],[3481,7851],[3486,7867],[3506,7898],[3530,7921],[3534,7945],[3544,7967],[3572,7986],[3594,8026],[3642,8039],[3671,8061],[3696,8089],[3703,8106],[3694,8117],[3696,8140],[3714,8166],[3715,8179],[3739,8201],[3786,8221],[3810,8254],[3822,8283],[3839,8288],[3839,8287],[3841,8286],[3843,8277],[3871,8263],[3916,8269],[3916,8269],[3916,8269],[3916,8267]]]}},{"type":"Feature","id":"TZ","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.49,"hc-key":"tz","hc-a2":"TZ","name":"United Republic of Tanzania","labelrank":"3","country-abbrev":"Tanz.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"TZA","iso-a2":"TZ","woe-id":"23424973","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5149,6732],[5149,6735],[5147,6737],[5147,6738],[5143,6740],[5142,6742],[5142,6742],[5141,6743],[5134,6786],[5128,6793],[5125,6797],[5125,6797],[5122,6799],[5121,6800],[5121,6800],[5117,6799],[5116,6793],[5099,6797],[5084,6803],[5053,6814],[5027,6830],[5008,6865],[5008,6884],[4981,6913],[4988,6918],[4982,6933],[4979,6966],[4991,6971],[5005,6995],[5017,7005],[5004,7018],[5009,7033],[5018,7035],[5018,7059],[5006,7076],[5018,7079],[5049,7079],[5049,7077],[5051,7079],[5051,7079],[5044,7034],[5051,7042],[5074,7028],[5096,7029],[5117,7039],[5084,7044],[5105,7045],[5107,7057],[5124,7077],[5241,7012],[5245,6992],[5291,6958],[5311,6949],[5313,6939],[5295,6924],[5303,6901],[5285,6899],[5299,6887],[5293,6856],[5313,6857],[5298,6849],[5294,6826],[5308,6790],[5328,6768],[5314,6757],[5264,6738],[5252,6743],[5230,6727],[5216,6733],[5189,6728],[5177,6738],[5169,6731],[5149,6732]]]}},{"type":"Feature","id":"AR","properties":{"hc-group":"admin0","hc-middle-x":0.36,"hc-middle-y":0.34,"hc-key":"ar","hc-a2":"AR","name":"Argentina","labelrank":"2","country-abbrev":"Arg.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"ARG","iso-a2":"AR","woe-id":"23424747","continent":"South America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1992,5316],[1995,5314],[1993,5313],[1992,5316]]],[[[2257,6274],[2279,6272],[2289,6251],[2286,6222],[2253,6207],[2227,6187],[2209,6159],[2176,6123],[2164,6067],[2166,6049],[2170,6029],[2163,6028],[2162,5988],[2177,5973],[2198,5964],[2213,5950],[2206,5937],[2234,5903],[2212,5872],[2211,5862],[2167,5844],[2113,5835],[2075,5836],[2079,5806],[2070,5791],[2085,5785],[2078,5773],[2057,5764],[2033,5763],[1998,5778],[1990,5769],[1999,5737],[2017,5722],[2041,5733],[2049,5711],[2035,5707],[2023,5719],[2007,5710],[2026,5704],[2003,5681],[2011,5658],[2000,5648],[2001,5635],[1985,5638],[1966,5630],[1955,5617],[1950,5599],[1959,5586],[1982,5572],[2007,5570],[2017,5555],[2014,5538],[1974,5506],[1972,5474],[1945,5463],[1942,5441],[1955,5420],[1975,5397],[1927,5408],[1869,5408],[1849,5423],[1845,5452],[1820,5449],[1804,5469],[1799,5496],[1820,5513],[1825,5528],[1814,5542],[1818,5558],[1828,5564],[1827,5606],[1819,5614],[1831,5628],[1804,5645],[1828,5644],[1828,5656],[1809,5657],[1810,5672],[1798,5688],[1802,5697],[1788,5703],[1784,5726],[1795,5733],[1786,5748],[1779,5778],[1785,5814],[1784,5837],[1799,5844],[1784,5876],[1779,5900],[1781,5916],[1799,5930],[1794,5959],[1800,5988],[1807,5990],[1794,6034],[1769,6077],[1778,6117],[1785,6118],[1777,6150],[1783,6158],[1785,6181],[1798,6196],[1806,6223],[1822,6230],[1812,6242],[1816,6255],[1807,6278],[1813,6289],[1805,6300],[1815,6313],[1842,6325],[1850,6358],[1843,6364],[1871,6398],[1888,6387],[1925,6384],[1936,6362],[1946,6391],[1982,6391],[1988,6383],[2013,6357],[2045,6332],[2077,6325],[2119,6300],[2154,6287],[2161,6278],[2146,6256],[2134,6217],[2152,6218],[2180,6211],[2213,6217],[2225,6212],[2235,6228],[2254,6239],[2257,6274]]],[[[1992,5317],[1973,5387],[2015,5346],[2073,5321],[2094,5321],[2111,5313],[2079,5313],[2056,5308],[2040,5313],[1992,5317]]]]}},{"type":"Feature","id":"SA","properties":{"hc-group":"admin0","hc-middle-x":0.41,"hc-middle-y":0.48,"hc-key":"sa","hc-a2":"SA","name":"Saudi Arabia","labelrank":"2","country-abbrev":"Saud.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"SAU","iso-a2":"SA","woe-id":"23424938","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5554,8046],[5571,8015],[5614,7985],[5617,7954],[5628,7945],[5640,7922],[5646,7916],[5654,7918],[5657,7917],[5658,7916],[5659,7917],[5660,7918],[5660,7918],[5657,7908],[5666,7906],[5668,7900],[5701,7863],[5784,7852],[5787,7855],[5803,7831],[5787,7766],[5692,7734],[5600,7721],[5570,7706],[5548,7671],[5533,7667],[5524,7677],[5483,7678],[5474,7682],[5409,7679],[5411,7662],[5398,7648],[5383,7669],[5381,7683],[5363,7696],[5343,7724],[5334,7750],[5304,7776],[5290,7782],[5270,7810],[5268,7850],[5245,7890],[5215,7906],[5201,7925],[5204,7936],[5179,7952],[5185,7964],[5128,8033],[5112,8032],[5119,8046],[5122,8073],[5157,8068],[5177,8089],[5201,8094],[5216,8110],[5181,8143],[5243,8159],[5248,8163],[5289,8157],[5344,8129],[5433,8068],[5492,8064],[5521,8061],[5529,8046],[5554,8046]]]}},{"type":"Feature","id":"NL","properties":{"hc-group":"admin0","hc-middle-x":0.99,"hc-middle-y":0.00,"hc-key":"nl","hc-a2":"NL","name":"Netherlands","labelrank":"5","country-abbrev":"Neth.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"NLD","iso-a2":"NL","woe-id":"-90","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1965,7702],[1962,7702],[1962,7703],[1965,7702]]],[[[4108,8794],[4120,8793],[4134,8794],[4122,8789],[4108,8794]]],[[[4221,8856],[4217,8822],[4198,8809],[4185,8809],[4193,8799],[4188,8774],[4182,8787],[4158,8798],[4135,8794],[4123,8802],[4153,8844],[4167,8851],[4175,8863],[4211,8862],[4221,8856]]]]}},{"type":"Feature","id":"YE","properties":{"hc-group":"admin0","hc-middle-x":0.37,"hc-middle-y":0.49,"hc-key":"ye","hc-a2":"YE","name":"Yemen","labelrank":"3","country-abbrev":"Yem.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"YEM","iso-a2":"YE","woe-id":"23425002","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5692,7734],[5719,7678],[5732,7657],[5715,7650],[5703,7635],[5706,7623],[5679,7610],[5621,7594],[5606,7587],[5594,7571],[5571,7572],[5552,7559],[5529,7551],[5501,7550],[5478,7536],[5441,7524],[5417,7544],[5397,7621],[5398,7648],[5411,7662],[5409,7679],[5474,7682],[5483,7678],[5524,7677],[5533,7667],[5548,7671],[5570,7706],[5600,7721],[5692,7734]]]}},{"type":"Feature","id":"AE","properties":{"hc-group":"admin0","hc-middle-x":0.84,"hc-middle-y":0.50,"hc-key":"ae","hc-a2":"AE","name":"United Arab Emirates","labelrank":"4","country-abbrev":"U.A.E.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"ARE","iso-a2":"AE","woe-id":"23424738","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5814,7951],[5817,7948],[5819,7930],[5800,7927],[5801,7905],[5787,7855],[5784,7852],[5701,7863],[5668,7900],[5666,7906],[5675,7898],[5699,7903],[5732,7899],[5749,7902],[5764,7922],[5777,7931],[5806,7965],[5809,7952],[5814,7951]],[[5815,7938],[5817,7940],[5814,7941],[5812,7939],[5815,7938]]]}},{"type":"Feature","id":"KE","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.50,"hc-key":"ke","hc-a2":"KE","name":"Kenya","labelrank":"2","country-abbrev":"Ken.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"KEN","iso-a2":"KE","woe-id":"23424863","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5291,6958],[5245,6992],[5241,7012],[5124,7077],[5127,7099],[5149,7101],[5146,7109],[5130,7103],[5122,7119],[5154,7166],[5152,7193],[5136,7215],[5136,7232],[5121,7250],[5134,7263],[5167,7276],[5174,7263],[5184,7263],[5188,7257],[5214,7257],[5256,7230],[5303,7223],[5313,7238],[5343,7252],[5356,7241],[5380,7242],[5350,7204],[5351,7083],[5369,7056],[5338,7028],[5324,7021],[5322,7004],[5298,6960],[5291,6958]]]}},{"type":"Feature","id":"TR","properties":{"hc-group":"admin0","hc-middle-x":0.36,"hc-middle-y":0.48,"hc-key":"tr","hc-a2":"TR","name":"Turkey","labelrank":"2","country-abbrev":"Tur.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"TUR","iso-a2":"TR","woe-id":"23424969","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[4815,8446],[4832,8468],[4822,8478],[4843,8490],[4873,8486],[4876,8475],[4909,8462],[4901,8453],[4880,8457],[4860,8454],[4851,8442],[4838,8435],[4912,8436],[4918,8446],[4907,8454],[4913,8462],[4975,8457],[5005,8478],[5037,8488],[5079,8485],[5087,8490],[5099,8478],[5119,8479],[5136,8462],[5141,8467],[5170,8456],[5195,8452],[5229,8458],[5251,8452],[5292,8471],[5321,8469],[5331,8473],[5353,8458],[5363,8444],[5364,8425],[5384,8423],[5400,8412],[5401,8410],[5377,8401],[5388,8384],[5389,8356],[5402,8347],[5409,8328],[5393,8323],[5392,8331],[5344,8335],[5334,8327],[5329,8334],[5307,8326],[5288,8327],[5254,8315],[5220,8314],[5205,8320],[5182,8311],[5156,8318],[5144,8285],[5136,8288],[5131,8301],[5142,8310],[5135,8321],[5115,8309],[5091,8316],[5061,8295],[5038,8292],[5012,8309],[4969,8320],[4962,8299],[4939,8295],[4922,8302],[4920,8312],[4903,8317],[4877,8315],[4894,8325],[4875,8324],[4859,8335],[4859,8356],[4827,8365],[4849,8371],[4841,8380],[4851,8385],[4836,8398],[4844,8408],[4820,8404],[4822,8422],[4835,8433],[4820,8424],[4808,8428],[4840,8441],[4815,8446]]]}},{"type":"Feature","id":"FI","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.42,"hc-key":"fi","hc-a2":"FI","name":"Finland","labelrank":"3","country-abbrev":"Fin.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"FIN","iso-a2":"FI","woe-id":"23424812","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4674,9268],[4657,9288],[4665,9300],[4646,9322],[4650,9337],[4625,9352],[4604,9354],[4563,9373],[4589,9381],[4612,9362],[4634,9359],[4653,9366],[4680,9357],[4698,9368],[4704,9394],[4716,9402],[4753,9406],[4788,9393],[4794,9387],[4787,9373],[4776,9356],[4784,9346],[4803,9341],[4824,9329],[4804,9301],[4830,9277],[4838,9262],[4828,9261],[4828,9240],[4847,9229],[4844,9221],[4860,9209],[4846,9199],[4883,9182],[4895,9172],[4888,9159],[4837,9118],[4801,9095],[4783,9095],[4748,9085],[4728,9085],[4683,9075],[4635,9087],[4620,9096],[4589,9075],[4567,9085],[4581,9088],[4588,9076],[4618,9102],[4620,9116],[4610,9154],[4601,9165],[4604,9180],[4635,9186],[4644,9201],[4661,9205],[4695,9236],[4709,9235],[4708,9256],[4674,9268]]]}},{"type":"Feature","id":"MY","properties":{"hc-group":"admin0","hc-middle-x":0.92,"hc-middle-y":0.23,"hc-key":"my","hc-a2":"MY","name":"Malaysia","labelrank":"3","country-abbrev":"Malay.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"MYS","iso-a2":"MY","woe-id":"23424901","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7868,7248],[7862,7248],[7863,7249],[7857,7248],[7844,7253],[7801,7255],[7794,7248],[7789,7211],[7777,7204],[7781,7193],[7767,7185],[7769,7174],[7759,7158],[7739,7159],[7730,7152],[7709,7163],[7682,7158],[7680,7149],[7661,7143],[7651,7147],[7630,7139],[7600,7164],[7599,7180],[7609,7167],[7644,7162],[7654,7203],[7709,7215],[7739,7251],[7740,7262],[7760,7243],[7772,7272],[7773,7272],[7774,7269],[7784,7253],[7777,7272],[7792,7282],[7779,7284],[7799,7294],[7807,7312],[7824,7331],[7831,7348],[7845,7329],[7860,7321],[7862,7305],[7870,7310],[7912,7282],[7875,7271],[7890,7254],[7866,7249],[7868,7248]]],[[[7284,7322],[7285,7331],[7307,7316],[7315,7316],[7317,7296],[7331,7305],[7340,7299],[7348,7316],[7383,7288],[7394,7269],[7392,7234],[7396,7208],[7407,7198],[7424,7156],[7394,7162],[7344,7190],[7325,7205],[7325,7219],[7306,7239],[7300,7270],[7287,7284],[7292,7308],[7284,7322]]]]}},{"type":"Feature","id":"PA","properties":{"hc-group":"admin0","hc-middle-x":0.28,"hc-middle-y":0.50,"hc-key":"pa","hc-a2":"PA","name":"Panama","labelrank":"4","country-abbrev":"Pan.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"PAN","iso-a2":"PA","woe-id":"23424924","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1311,7425],[1326,7415],[1326,7404],[1359,7400],[1399,7417],[1407,7426],[1446,7419],[1480,7395],[1486,7371],[1461,7348],[1448,7363],[1442,7392],[1421,7381],[1435,7398],[1424,7406],[1408,7405],[1404,7395],[1381,7384],[1377,7376],[1392,7356],[1363,7348],[1360,7360],[1343,7364],[1336,7380],[1306,7384],[1298,7375],[1294,7384],[1294,7385],[1294,7385],[1294,7385],[1294,7385],[1305,7404],[1298,7408],[1302,7426],[1311,7425]]]}},{"type":"Feature","id":"IR","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.57,"hc-key":"ir","hc-a2":"IR","name":"Iran","labelrank":"2","country-abbrev":"Iran","subregion":"Southern Asia","region-wb":"Middle East & North Africa","iso-a3":"IRN","iso-a2":"IR","woe-id":"23424851","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5409,8328],[5402,8347],[5389,8356],[5388,8384],[5377,8401],[5401,8410],[5423,8389],[5445,8384],[5453,8386],[5457,8385],[5499,8412],[5512,8401],[5504,8383],[5524,8369],[5533,8370],[5540,8348],[5554,8340],[5578,8336],[5589,8325],[5609,8315],[5635,8310],[5682,8320],[5700,8318],[5695,8335],[5721,8341],[5739,8359],[5766,8359],[5769,8365],[5794,8365],[5799,8355],[5846,8346],[5887,8324],[5899,8312],[5926,8309],[5933,8278],[5927,8236],[5916,8228],[5919,8213],[5930,8211],[5923,8194],[5935,8168],[5938,8143],[5966,8139],[5971,8122],[5945,8089],[5983,8046],[6012,8037],[6015,8005],[6034,8000],[6029,7984],[6004,7979],[5990,7970],[5985,7937],[5980,7932],[5951,7945],[5931,7941],[5895,7949],[5875,7948],[5847,7956],[5834,7991],[5811,8002],[5797,7987],[5790,7996],[5763,7979],[5747,7986],[5728,7986],[5719,7995],[5691,8007],[5685,8017],[5650,8026],[5622,8076],[5601,8101],[5586,8095],[5565,8107],[5563,8095],[5553,8093],[5535,8109],[5533,8127],[5522,8127],[5525,8152],[5509,8173],[5471,8191],[5457,8213],[5440,8224],[5439,8240],[5453,8261],[5453,8274],[5463,8284],[5431,8290],[5409,8328]]]}},{"type":"Feature","id":"HT","properties":{"hc-group":"admin0","hc-middle-x":0.96,"hc-middle-y":0.50,"hc-key":"ht","hc-a2":"HT","name":"Haiti","labelrank":"5","country-abbrev":"Haiti","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"HTI","iso-a2":"HT","woe-id":"23424839","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1678,7717],[1677,7718],[1677,7718],[1677,7718],[1678,7717]]],[[[1675,7721],[1676,7717],[1678,7717],[1684,7711],[1681,7702],[1672,7709],[1645,7706],[1632,7709],[1612,7702],[1594,7715],[1602,7723],[1652,7715],[1637,7728],[1648,7728],[1654,7748],[1632,7760],[1654,7765],[1686,7757],[1685,7726],[1675,7721]]]]}},{"type":"Feature","id":"DO","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.43,"hc-key":"do","hc-a2":"DO","name":"Dominican Republic","labelrank":"5","country-abbrev":"Dom. Rep.","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"DOM","iso-a2":"DO","woe-id":"23424800","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1677,7718],[1675,7721],[1685,7726],[1686,7757],[1711,7764],[1745,7756],[1754,7737],[1782,7733],[1793,7723],[1781,7705],[1774,7715],[1743,7716],[1721,7708],[1717,7715],[1691,7688],[1681,7702],[1684,7711],[1678,7717],[1678,7717],[1677,7718],[1677,7718]]]}},{"type":"Feature","id":"HR","properties":{"hc-group":"admin0","hc-middle-x":0.38,"hc-middle-y":0.56,"hc-key":"hr","hc-a2":"HR","name":"Croatia","labelrank":"6","country-abbrev":"Cro.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"HRV","iso-a2":"HR","woe-id":"23424843","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4578,8501],[4559,8513],[4552,8516],[4558,8514],[4576,8506],[4576,8503],[4578,8501]]],[[[4423,8601],[4476,8600],[4484,8625],[4510,8635],[4537,8617],[4569,8610],[4584,8616],[4590,8590],[4590,8581],[4579,8588],[4553,8588],[4525,8595],[4508,8586],[4490,8591],[4492,8576],[4505,8560],[4549,8523],[4549,8518],[4541,8524],[4512,8526],[4497,8542],[4471,8552],[4476,8564],[4451,8584],[4452,8595],[4431,8582],[4423,8601]]]]}},{"type":"Feature","id":"TH","properties":{"hc-group":"admin0","hc-middle-x":0.45,"hc-middle-y":0.29,"hc-key":"th","hc-a2":"TH","name":"Thailand","labelrank":"3","country-abbrev":"Thai.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"THA","iso-a2":"TH","woe-id":"23424960","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7348,7316],[7340,7299],[7331,7305],[7317,7296],[7315,7316],[7307,7316],[7285,7331],[7284,7322],[7259,7347],[7255,7361],[7226,7384],[7223,7366],[7218,7392],[7222,7432],[7232,7450],[7232,7462],[7246,7475],[7258,7498],[7237,7538],[7237,7561],[7204,7596],[7201,7610],[7212,7613],[7211,7637],[7220,7640],[7203,7669],[7176,7695],[7166,7717],[7176,7720],[7171,7731],[7180,7760],[7197,7756],[7211,7768],[7239,7781],[7245,7777],[7260,7769],[7260,7751],[7285,7752],[7290,7735],[7283,7715],[7288,7703],[7281,7688],[7290,7683],[7317,7708],[7347,7701],[7359,7715],[7379,7711],[7410,7680],[7411,7653],[7441,7626],[7443,7602],[7432,7581],[7381,7585],[7358,7576],[7350,7557],[7341,7556],[7349,7526],[7365,7493],[7352,7510],[7327,7527],[7300,7524],[7297,7553],[7267,7551],[7270,7511],[7250,7460],[7246,7431],[7258,7413],[7272,7414],[7275,7393],[7286,7384],[7293,7346],[7312,7336],[7330,7336],[7348,7316]]]}},{"type":"Feature","id":"CD","properties":{"hc-group":"admin0","hc-middle-x":0.61,"hc-middle-y":0.40,"hc-key":"cd","hc-a2":"CD","name":"Democratic Republic of the Congo","labelrank":"2","country-abbrev":"D.R.C.","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"COD","iso-a2":"CD","woe-id":"23424780","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4965,7002],[4959,6970],[4961,6945],[4969,6928],[4963,6918],[4973,6892],[4994,6874],[4998,6855],[5008,6842],[4953,6834],[4934,6813],[4940,6804],[4946,6791],[4943,6767],[4933,6736],[4938,6722],[4955,6706],[4970,6703],[4980,6713],[4979,6672],[4970,6678],[4959,6671],[4932,6704],[4909,6709],[4895,6732],[4879,6718],[4835,6730],[4834,6745],[4801,6739],[4804,6748],[4790,6755],[4759,6748],[4744,6750],[4734,6743],[4737,6759],[4732,6786],[4720,6803],[4725,6834],[4720,6849],[4721,6873],[4679,6873],[4682,6885],[4647,6882],[4641,6849],[4603,6849],[4584,6846],[4564,6872],[4551,6917],[4542,6920],[4440,6920],[4415,6913],[4408,6923],[4418,6924],[4416,6946],[4436,6960],[4447,6951],[4479,6971],[4480,6951],[4494,6954],[4517,6978],[4529,6983],[4540,7003],[4540,7042],[4560,7070],[4575,7078],[4590,7094],[4596,7124],[4593,7145],[4600,7162],[4600,7182],[4618,7214],[4618,7225],[4615,7253],[4633,7272],[4654,7280],[4674,7268],[4682,7256],[4745,7249],[4758,7269],[4772,7262],[4811,7278],[4837,7276],[4845,7287],[4876,7277],[4896,7282],[4906,7277],[4917,7262],[4937,7252],[4950,7261],[4964,7253],[4973,7264],[4984,7261],[4997,7241],[5018,7226],[5014,7191],[5032,7182],[5007,7161],[5007,7152],[4989,7138],[4981,7108],[4968,7095],[4979,7096],[4976,7081],[4977,7066],[4969,7062],[4965,7056],[4956,7048],[4954,7030],[4954,7024],[4958,7022],[4966,7012],[4965,7002]]]}},{"type":"Feature","id":"KW","properties":{"hc-group":"admin0","hc-middle-x":0.62,"hc-middle-y":0.48,"hc-key":"kw","hc-a2":"KW","name":"Kuwait","labelrank":"6","country-abbrev":"Kwt.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"KWT","iso-a2":"KW","woe-id":"23424870","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5534,8094],[5547,8087],[5541,8073],[5554,8046],[5529,8046],[5521,8061],[5492,8064],[5507,8093],[5534,8094]]]}},{"type":"Feature","id":"DE","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.33,"hc-key":"de","hc-a2":"DE","name":"Germany","labelrank":"2","country-abbrev":"Ger.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"DEU","iso-a2":"DE","woe-id":"23424829","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4263,8910],[4267,8910],[4285,8907],[4300,8906],[4307,8896],[4326,8891],[4325,8882],[4346,8877],[4376,8896],[4394,8891],[4403,8903],[4413,8892],[4400,8888],[4427,8878],[4426,8877],[4427,8876],[4416,8875],[4429,8870],[4434,8857],[4427,8843],[4443,8834],[4442,8808],[4456,8791],[4451,8777],[4437,8778],[4383,8762],[4380,8741],[4425,8709],[4422,8701],[4393,8687],[4395,8673],[4360,8670],[4341,8664],[4324,8670],[4316,8660],[4303,8669],[4287,8676],[4286,8673],[4269,8677],[4264,8670],[4238,8670],[4237,8688],[4255,8715],[4214,8723],[4199,8731],[4203,8743],[4192,8753],[4199,8759],[4188,8774],[4193,8799],[4185,8809],[4198,8809],[4217,8822],[4221,8856],[4218,8867],[4242,8873],[4261,8865],[4273,8877],[4262,8898],[4273,8897],[4263,8910]]],[[[4286,8673],[4287,8672],[4287,8672],[4286,8673]]]]}},{"type":"Feature","id":"BE","properties":{"hc-group":"admin0","hc-middle-x":0.17,"hc-middle-y":0.10,"hc-key":"be","hc-a2":"BE","name":"Belgium","labelrank":"2","country-abbrev":"Belg.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"BEL","iso-a2":"BE","woe-id":"23424757","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4188,8774],[4199,8759],[4192,8753],[4180,8745],[4182,8734],[4172,8733],[4152,8748],[4132,8748],[4134,8757],[4118,8760],[4084,8785],[4101,8793],[4108,8794],[4122,8789],[4134,8794],[4136,8792],[4135,8794],[4158,8798],[4182,8787],[4188,8774]]]}},{"type":"Feature","id":"IE","properties":{"hc-group":"admin0","hc-middle-x":0.45,"hc-middle-y":0.51,"hc-key":"ie","hc-a2":"IE","name":"Ireland","labelrank":"3","country-abbrev":"Ire.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"IRL","iso-a2":"IE","woe-id":"23424803","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[3796,8915],[3782,8900],[3768,8895],[3793,8884],[3802,8894],[3813,8882],[3823,8883],[3831,8846],[3819,8821],[3787,8819],[3749,8801],[3715,8798],[3698,8812],[3713,8817],[3725,8836],[3713,8833],[3741,8857],[3707,8861],[3717,8868],[3714,8890],[3754,8889],[3770,8901],[3750,8902],[3766,8918],[3797,8924],[3796,8915]]]}},{"type":"Feature","id":"MM","properties":{"hc-group":"admin0","hc-middle-x":0.25,"hc-middle-y":0.48,"hc-key":"mm","hc-a2":"MM","name":"Myanmar","labelrank":"3","country-abbrev":"Myan.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"MMR","iso-a2":"MM","woe-id":"23424763","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6989,7801],[6990,7814],[7000,7809],[6995,7831],[7005,7831],[7012,7845],[7009,7865],[7016,7869],[7009,7897],[7036,7892],[7049,7931],[7044,7943],[7055,7954],[7053,7979],[7084,8004],[7101,8008],[7118,8025],[7116,8036],[7121,8046],[7142,8033],[7151,8013],[7163,8014],[7173,7960],[7145,7932],[7142,7912],[7149,7893],[7179,7900],[7192,7871],[7213,7867],[7206,7837],[7232,7834],[7243,7813],[7271,7824],[7274,7817],[7261,7809],[7257,7793],[7245,7777],[7239,7781],[7211,7768],[7197,7756],[7180,7760],[7171,7731],[7176,7720],[7166,7717],[7176,7695],[7203,7669],[7220,7640],[7211,7637],[7212,7613],[7201,7610],[7204,7596],[7237,7561],[7237,7538],[7258,7498],[7246,7475],[7232,7462],[7232,7450],[7213,7434],[7225,7451],[7211,7469],[7230,7469],[7229,7489],[7212,7488],[7218,7508],[7228,7503],[7220,7543],[7208,7561],[7197,7565],[7202,7575],[7190,7599],[7181,7644],[7174,7645],[7163,7669],[7154,7670],[7146,7652],[7124,7643],[7110,7626],[7070,7637],[7078,7686],[7058,7728],[7042,7724],[7035,7745],[7050,7747],[7029,7769],[7021,7762],[6994,7789],[6989,7801]]]}},{"type":"Feature","id":"GQ","properties":{"hc-group":"admin0","hc-middle-x":0.53,"hc-middle-y":0.55,"hc-key":"gq","hc-a2":"GQ","name":"Equatorial Guinea","labelrank":"4","country-abbrev":"Eq. G.","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GNQ","iso-a2":"GQ","woe-id":"23424804","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4329,7144],[4314,7150],[4330,7175],[4329,7188],[4335,7182],[4379,7182],[4380,7144],[4329,7144]]]}},{"type":"Feature","id":"UG","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.70,"hc-key":"ug","hc-a2":"UG","name":"Uganda","labelrank":"3","country-abbrev":"Uga.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"UGA","iso-a2":"UG","woe-id":"23424974","continent":"Africa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5051,7079],[5051,7079],[5051,7079],[5051,7079]]],[[[5049,7079],[5018,7079],[5006,7076],[4989,7063],[4977,7066],[4976,7081],[4979,7096],[4988,7107],[4981,7108],[4989,7138],[5007,7152],[5011,7146],[5037,7174],[5032,7182],[5014,7191],[5018,7226],[5029,7236],[5049,7236],[5062,7227],[5089,7239],[5105,7234],[5121,7250],[5136,7232],[5136,7215],[5152,7193],[5154,7166],[5122,7119],[5097,7121],[5054,7107],[5049,7079]]]]}},{"type":"Feature","id":"KZ","properties":{"hc-group":"admin0","hc-middle-x":0.55,"hc-middle-y":0.44,"hc-key":"kz","hc-a2":"KZ","name":"Kazakhstan","labelrank":"3","country-abbrev":"Kaz.","subregion":"Central Asia","region-wb":"Europe & Central Asia","iso-a3":"KAZ","iso-a2":"KZ","woe-id":"-90","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5801,8601],[5809,8612],[5824,8590],[5801,8601]]],[[[5796,8603],[5719,8585],[5740,8465],[5732,8464],[5725,8463],[5703,8485],[5679,8498],[5643,8491],[5628,8479],[5625,8490],[5631,8511],[5607,8515],[5585,8535],[5567,8559],[5551,8563],[5536,8584],[5547,8588],[5548,8574],[5579,8572],[5567,8581],[5577,8596],[5611,8599],[5625,8618],[5619,8647],[5600,8651],[5591,8645],[5562,8655],[5539,8648],[5506,8629],[5481,8640],[5497,8643],[5462,8676],[5434,8677],[5431,8692],[5411,8697],[5423,8723],[5416,8743],[5432,8764],[5462,8743],[5475,8750],[5465,8768],[5484,8776],[5484,8786],[5510,8793],[5515,8803],[5552,8798],[5567,8807],[5573,8799],[5599,8798],[5637,8777],[5642,8783],[5674,8767],[5696,8784],[5715,8785],[5726,8777],[5733,8786],[5759,8783],[5771,8771],[5797,8767],[5801,8776],[5825,8771],[5843,8775],[5841,8796],[5811,8802],[5798,8811],[5821,8826],[5808,8837],[5845,8852],[5819,8857],[5807,8876],[5867,8883],[5892,8891],[5928,8892],[5932,8901],[5948,8900],[6009,8912],[6009,8919],[6049,8924],[6067,8917],[6083,8923],[6100,8904],[6105,8884],[6144,8885],[6175,8878],[6171,8869],[6201,8867],[6222,8874],[6264,8895],[6265,8879],[6312,8856],[6377,8798],[6399,8776],[6415,8792],[6431,8788],[6445,8773],[6464,8772],[6501,8782],[6514,8778],[6533,8758],[6557,8751],[6570,8736],[6599,8732],[6610,8736],[6637,8719],[6623,8720],[6620,8701],[6598,8697],[6594,8681],[6604,8664],[6602,8653],[6582,8645],[6526,8658],[6519,8603],[6528,8589],[6501,8597],[6456,8587],[6467,8574],[6474,8554],[6493,8525],[6477,8508],[6482,8493],[6442,8512],[6422,8516],[6340,8518],[6322,8515],[6289,8529],[6272,8521],[6274,8500],[6220,8515],[6196,8506],[6196,8495],[6143,8467],[6132,8452],[6134,8441],[6114,8448],[6110,8461],[6072,8461],[6061,8487],[6046,8487],[6042,8520],[6033,8516],[6022,8530],[6001,8544],[5987,8538],[5949,8540],[5914,8536],[5878,8565],[5845,8580],[5842,8597],[5831,8615],[5850,8613],[5846,8622],[5798,8614],[5796,8603]]]]}},{"type":"Feature","id":"ER","properties":{"hc-group":"admin0","hc-middle-x":0.31,"hc-middle-y":0.18,"hc-key":"er","hc-a2":"ER","name":"Eritrea","labelrank":"4","country-abbrev":"Erit.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"ERI","iso-a2":"ER","woe-id":"23424806","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5197,7579],[5193,7607],[5209,7645],[5209,7671],[5248,7685],[5260,7701],[5271,7681],[5286,7632],[5299,7607],[5305,7619],[5315,7602],[5329,7601],[5348,7591],[5365,7568],[5386,7556],[5402,7532],[5414,7528],[5400,7516],[5390,7520],[5370,7543],[5350,7557],[5338,7573],[5313,7585],[5278,7591],[5259,7584],[5241,7599],[5231,7573],[5222,7585],[5197,7579]]]}},{"type":"Feature","id":"TN","properties":{"hc-group":"admin0","hc-middle-x":0.78,"hc-middle-y":0.30,"hc-key":"tn","hc-a2":"TN","name":"Tunisia","labelrank":"3","country-abbrev":"Tun.","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"TUN","iso-a2":"TN","woe-id":"23424967","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4372,8198],[4371,8172],[4353,8164],[4329,8141],[4334,8124],[4322,8106],[4311,8102],[4295,8162],[4272,8177],[4264,8195],[4253,8199],[4244,8222],[4255,8239],[4268,8246],[4270,8305],[4278,8321],[4313,8335],[4330,8329],[4332,8315],[4354,8326],[4357,8319],[4338,8302],[4342,8285],[4359,8266],[4342,8243],[4327,8236],[4334,8215],[4357,8219],[4362,8199],[4372,8198]]]}},{"type":"Feature","id":"TL","properties":{"hc-group":"admin0","hc-middle-x":0.62,"hc-middle-y":0.32,"hc-key":"tl","hc-a2":"TL","name":"East Timor","labelrank":"5","country-abbrev":"T.L.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"TLS","iso-a2":"TL","woe-id":"23424968","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[8060,6805],[8067,6809],[8074,6811],[8067,6800],[8060,6805]]],[[[8090,6818],[8098,6829],[8158,6839],[8170,6836],[8141,6818],[8112,6810],[8094,6801],[8091,6810],[8090,6818]]]]}},{"type":"Feature","id":"MR","properties":{"hc-group":"admin0","hc-middle-x":0.59,"hc-middle-y":0.61,"hc-key":"mr","hc-a2":"MR","name":"Mauritania","labelrank":"3","country-abbrev":"Mrt.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MRT","iso-a2":"MR","woe-id":"23424896","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3731,8005],[3831,7944],[3853,7930],[3797,7930],[3826,7653],[3834,7646],[3829,7619],[3704,7619],[3680,7615],[3660,7617],[3653,7606],[3637,7622],[3627,7620],[3624,7599],[3609,7595],[3578,7623],[3570,7641],[3559,7639],[3543,7656],[3523,7657],[3478,7650],[3471,7629],[3474,7657],[3489,7700],[3483,7733],[3473,7747],[3484,7774],[3462,7805],[3457,7792],[3461,7810],[3588,7810],[3586,7848],[3589,7865],[3621,7880],[3623,7963],[3730,7963],[3731,8005]]]}},{"type":"Feature","id":"DZ","properties":{"hc-group":"admin0","hc-middle-x":0.58,"hc-middle-y":0.53,"hc-key":"dz","hc-a2":"DZ","name":"Algeria","labelrank":"3","country-abbrev":"Alg.","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"DZA","iso-a2":"DZ","woe-id":"23424740","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3853,7930],[3831,7944],[3731,8005],[3731,8017],[3731,8050],[3764,8074],[3781,8078],[3825,8081],[3869,8111],[3892,8117],[3887,8138],[3892,8148],[3919,8153],[3929,8164],[3969,8162],[3975,8177],[3963,8184],[3955,8200],[3953,8249],[3938,8261],[3953,8262],[3971,8277],[4012,8292],[4041,8307],[4090,8310],[4100,8317],[4158,8320],[4172,8312],[4239,8326],[4256,8318],[4278,8321],[4270,8305],[4268,8246],[4255,8239],[4244,8222],[4253,8199],[4264,8195],[4272,8177],[4295,8162],[4311,8102],[4304,8098],[4321,8066],[4320,8037],[4326,8024],[4319,8005],[4323,7980],[4310,7967],[4328,7943],[4330,7926],[4343,7913],[4352,7916],[4379,7907],[4394,7882],[4250,7795],[4196,7749],[4145,7738],[4117,7733],[4109,7738],[4112,7760],[4069,7774],[4046,7791],[4045,7803],[3853,7930]]]}},{"type":"Feature","id":"PE","properties":{"hc-group":"admin0","hc-middle-x":0.44,"hc-middle-y":0.56,"hc-key":"pe","hc-a2":"PE","name":"Peru","labelrank":"2","country-abbrev":"Peru","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"PER","iso-a2":"PE","woe-id":"23424919","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[1753,6603],[1734,6607],[1733,6592],[1763,6580],[1765,6580],[1768,6580],[1764,6571],[1766,6569],[1747,6545],[1753,6538],[1742,6530],[1740,6514],[1727,6511],[1693,6532],[1688,6545],[1658,6563],[1614,6580],[1563,6608],[1538,6632],[1525,6650],[1525,6674],[1493,6718],[1490,6730],[1475,6741],[1473,6753],[1460,6772],[1444,6810],[1426,6842],[1410,6859],[1393,6889],[1355,6912],[1362,6926],[1351,6941],[1348,6973],[1377,7000],[1383,6984],[1372,6978],[1377,6965],[1385,6971],[1405,6963],[1420,6947],[1433,6962],[1442,7000],[1458,7013],[1497,7027],[1516,7042],[1533,7061],[1543,7094],[1531,7108],[1542,7108],[1557,7106],[1576,7080],[1596,7070],[1600,7057],[1611,7053],[1611,7039],[1638,7031],[1658,7042],[1669,7034],[1686,7039],[1714,7022],[1692,6987],[1706,6986],[1718,6973],[1691,6975],[1685,6968],[1654,6963],[1622,6943],[1612,6912],[1616,6902],[1596,6886],[1598,6872],[1588,6864],[1598,6856],[1604,6838],[1624,6814],[1617,6803],[1646,6799],[1651,6784],[1683,6786],[1704,6802],[1701,6789],[1703,6751],[1738,6753],[1769,6702],[1760,6689],[1758,6664],[1767,6647],[1751,6621],[1760,6612],[1753,6603]]]}},{"type":"Feature","id":"AO","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.65,"hc-key":"ao","hc-a2":"AO","name":"Angola","labelrank":"3","country-abbrev":"Ang.","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"AGO","iso-a2":"AO","woe-id":"23424745","continent":"Africa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4408,6923],[4408,6932],[4401,6947],[4426,6968],[4436,6960],[4416,6946],[4418,6924],[4408,6923]]],[[[4390,6546],[4390,6594],[4398,6600],[4408,6628],[4416,6672],[4438,6699],[4453,6710],[4458,6725],[4458,6762],[4439,6794],[4433,6814],[4446,6825],[4446,6838],[4428,6873],[4428,6885],[4410,6911],[4440,6920],[4542,6920],[4551,6917],[4564,6872],[4584,6846],[4603,6849],[4641,6849],[4647,6882],[4682,6885],[4679,6873],[4721,6873],[4720,6849],[4725,6834],[4720,6803],[4732,6786],[4737,6759],[4734,6743],[4744,6750],[4759,6748],[4790,6755],[4790,6685],[4724,6685],[4723,6582],[4726,6570],[4767,6534],[4702,6521],[4683,6521],[4617,6530],[4607,6542],[4461,6541],[4436,6556],[4416,6547],[4390,6546]]]]}},{"type":"Feature","id":"MZ","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.43,"hc-key":"mz","hc-a2":"MZ","name":"Mozambique","labelrank":"3","country-abbrev":"Moz.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MOZ","iso-a2":"MZ","woe-id":"23424902","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5144,6669],[5140,6712],[5149,6732],[5169,6731],[5177,6738],[5189,6728],[5216,6733],[5230,6727],[5252,6743],[5264,6738],[5314,6757],[5328,6768],[5334,6756],[5326,6741],[5333,6693],[5329,6665],[5337,6627],[5328,6604],[5304,6574],[5279,6559],[5238,6543],[5211,6526],[5182,6493],[5179,6496],[5137,6461],[5129,6442],[5153,6387],[5153,6361],[5146,6330],[5150,6322],[5136,6306],[5091,6289],[5062,6274],[5051,6261],[5061,6250],[5061,6232],[5044,6232],[5036,6232],[5035,6250],[5033,6261],[5036,6311],[5023,6343],[5017,6378],[5055,6414],[5059,6438],[5076,6455],[5069,6474],[5079,6510],[5079,6565],[5045,6573],[5024,6587],[4996,6587],[4996,6599],[4991,6621],[5089,6652],[5103,6633],[5126,6640],[5132,6610],[5121,6591],[5125,6581],[5154,6550],[5149,6570],[5158,6583],[5171,6586],[5175,6631],[5144,6669]]]}},{"type":"Feature","id":"CR","properties":{"hc-group":"admin0","hc-middle-x":0.18,"hc-middle-y":0.10,"hc-key":"cr","hc-a2":"CR","name":"Costa Rica","labelrank":"5","country-abbrev":"C.R.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"CRI","iso-a2":"CR","woe-id":"23424791","continent":"North America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1278,7469],[1283,7455],[1311,7425],[1302,7426],[1298,7408],[1305,7404],[1294,7385],[1294,7385],[1290,7394],[1276,7408],[1242,7428],[1241,7438],[1228,7424],[1212,7436],[1205,7451],[1212,7474],[1237,7470],[1255,7472],[1269,7462],[1278,7469]]],[[[1298,7375],[1294,7384],[1294,7385],[1294,7385],[1298,7375]]]]}},{"type":"Feature","id":"SV","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.51,"hc-key":"sv","hc-a2":"SV","name":"El Salvador","labelrank":"6","country-abbrev":"El. S.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"SLV","iso-a2":"SV","woe-id":"23424807","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1148,7551],[1143,7542],[1116,7545],[1074,7561],[1074,7564],[1100,7584],[1127,7569],[1152,7564],[1148,7551]]]}},{"type":"Feature","id":"KH","properties":{"hc-group":"admin0","hc-middle-x":0.26,"hc-middle-y":0.54,"hc-key":"kh","hc-a2":"KH","name":"Cambodia","labelrank":"3","country-abbrev":"Camb.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"KHM","iso-a2":"KH","woe-id":"23424776","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7418,7453],[7391,7455],[7387,7477],[7378,7465],[7365,7493],[7349,7526],[7341,7556],[7350,7557],[7358,7576],[7381,7585],[7432,7581],[7456,7567],[7457,7582],[7474,7589],[7485,7580],[7507,7593],[7502,7574],[7513,7554],[7510,7538],[7513,7516],[7488,7504],[7480,7494],[7466,7497],[7462,7481],[7474,7464],[7459,7472],[7436,7469],[7431,7456],[7418,7453]]]}},{"type":"Feature","id":"BZ","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.50,"hc-key":"bz","hc-a2":"BZ","name":"Belize","labelrank":"6","country-abbrev":"Belize","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"BLZ","iso-a2":"BZ","woe-id":"23424760","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1117,7695],[1126,7697],[1146,7717],[1153,7713],[1153,7713],[1144,7688],[1144,7667],[1132,7644],[1119,7632],[1108,7632],[1117,7695]]]}},{"type":"Feature","id":"KP","properties":{"hc-group":"admin0","hc-middle-x":0.60,"hc-middle-y":0.54,"hc-key":"kp","hc-a2":"KP","name":"North Korea","labelrank":"3","country-abbrev":"N.K.","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"PRK","iso-a2":"KP","woe-id":"23424865","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[8030,8505],[8035,8500],[8038,8497],[8022,8490],[8015,8472],[8026,8449],[8012,8444],[7993,8423],[7971,8413],[7975,8394],[8010,8377],[8007,8368],[7975,8366],[7965,8351],[7930,8357],[7925,8346],[7906,8360],[7902,8373],[7911,8402],[7871,8417],[7869,8425],[7881,8438],[7910,8451],[7920,8476],[7928,8481],[7942,8471],[7971,8467],[7960,8487],[7986,8488],[7995,8502],[8006,8502],[8004,8519],[8030,8505]]]}},{"type":"Feature","id":"KR","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.47,"hc-key":"kr","hc-a2":"KR","name":"South Korea","labelrank":"2","country-abbrev":"S.K.","subregion":"Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"KOR","iso-a2":"KR","woe-id":"23424868","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7965,8351],[7975,8366],[8007,8368],[8010,8377],[8054,8333],[8074,8293],[8077,8275],[8058,8249],[8037,8259],[8026,8239],[7999,8238],[8013,8211],[8008,8200],[7995,8201],[8007,8211],[7993,8241],[7972,8250],[7988,8249],[7982,8263],[7985,8291],[7970,8314],[7976,8325],[7952,8350],[7965,8351]]]}},{"type":"Feature","id":"VE","properties":{"hc-group":"admin0","hc-middle-x":0.58,"hc-middle-y":0.38,"hc-key":"ve","hc-a2":"VE","name":"Venezuela","labelrank":"3","country-abbrev":"Ven.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"VEN","iso-a2":"VE","woe-id":"23424982","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[2047,7392],[2053,7383],[2029,7367],[2025,7347],[2036,7345],[2022,7333],[2009,7331],[2008,7314],[2000,7305],[2020,7282],[2025,7274],[2012,7260],[1993,7251],[1954,7244],[1952,7229],[1932,7241],[1892,7242],[1906,7229],[1911,7192],[1933,7190],[1931,7182],[1910,7173],[1908,7163],[1875,7148],[1861,7133],[1855,7143],[1842,7135],[1818,7151],[1808,7190],[1787,7206],[1804,7224],[1794,7235],[1786,7260],[1788,7285],[1802,7307],[1800,7315],[1736,7312],[1714,7340],[1700,7343],[1680,7339],[1650,7344],[1638,7357],[1642,7385],[1623,7416],[1610,7412],[1625,7433],[1628,7453],[1642,7476],[1661,7493],[1682,7500],[1663,7492],[1672,7463],[1653,7433],[1672,7408],[1687,7418],[1688,7430],[1672,7465],[1720,7487],[1715,7500],[1725,7511],[1737,7487],[1762,7487],[1777,7476],[1779,7461],[1790,7454],[1845,7460],[1857,7448],[1893,7442],[1918,7460],[1962,7464],[1986,7460],[1959,7455],[1973,7429],[1976,7439],[1995,7436],[2022,7416],[2012,7399],[2047,7392]]]}},{"type":"Feature","id":"GY","properties":{"hc-group":"admin0","hc-middle-x":0.67,"hc-middle-y":0.25,"hc-key":"gy","hc-a2":"GY","name":"Guyana","labelrank":"4","country-abbrev":"Guy.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"GUY","iso-a2":"GY","woe-id":"23424836","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[2020,7282],[2000,7305],[2008,7314],[2009,7331],[2022,7333],[2036,7345],[2025,7347],[2029,7367],[2053,7383],[2047,7392],[2076,7374],[2096,7351],[2097,7340],[2111,7334],[2138,7311],[2135,7291],[2133,7276],[2119,7275],[2107,7248],[2120,7222],[2132,7223],[2136,7204],[2151,7178],[2158,7175],[2138,7178],[2123,7167],[2098,7164],[2082,7150],[2051,7172],[2043,7200],[2049,7230],[2059,7240],[2054,7255],[2040,7259],[2045,7278],[2020,7282]]]}},{"type":"Feature","id":"HN","properties":{"hc-group":"admin0","hc-middle-x":0.95,"hc-middle-y":0.36,"hc-key":"hn","hc-a2":"HN","name":"Honduras","labelrank":"5","country-abbrev":"Hond.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"HND","iso-a2":"HN","woe-id":"23424841","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1100,7584],[1108,7605],[1141,7627],[1157,7633],[1201,7628],[1216,7636],[1246,7635],[1268,7629],[1284,7609],[1304,7603],[1259,7590],[1242,7594],[1236,7581],[1217,7569],[1204,7571],[1183,7562],[1183,7547],[1163,7537],[1157,7547],[1148,7551],[1152,7564],[1127,7569],[1100,7584]]]}},{"type":"Feature","id":"GA","properties":{"hc-group":"admin0","hc-middle-x":0.26,"hc-middle-y":0.45,"hc-key":"ga","hc-a2":"GA","name":"Gabon","labelrank":"4","country-abbrev":"Gabon","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GAB","iso-a2":"GA","woe-id":"23424822","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4329,7144],[4380,7144],[4379,7182],[4380,7187],[4442,7186],[4444,7182],[4438,7164],[4442,7151],[4460,7158],[4475,7155],[4482,7141],[4463,7118],[4461,7105],[4483,7092],[4480,7049],[4470,7030],[4458,7043],[4449,7031],[4435,7035],[4428,7049],[4415,7050],[4416,7035],[4387,7035],[4391,7008],[4399,7003],[4396,6990],[4384,6996],[4372,6982],[4357,7003],[4333,7023],[4311,7051],[4315,7067],[4304,7069],[4293,7092],[4304,7087],[4312,7098],[4313,7129],[4323,7128],[4329,7144]]]}},{"type":"Feature","id":"IL","properties":{"hc-group":"admin0","hc-middle-x":0.65,"hc-middle-y":0.15,"hc-key":"il","hc-a2":"IL","name":"Israel","labelrank":"4","country-abbrev":"Isr.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"ISR","iso-a2":"IL","woe-id":"23424852","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5094,8137],[5111,8169],[5118,8195],[5130,8195],[5140,8206],[5143,8191],[5139,8184],[5133,8181],[5136,8152],[5131,8144],[5132,8138],[5132,8135],[5132,8134],[5131,8133],[5133,8130],[5125,8108],[5122,8080],[5120,8077],[5119,8077],[5117,8086],[5094,8137]]]}},{"type":"Feature","id":"NI","properties":{"hc-group":"admin0","hc-middle-x":0.70,"hc-middle-y":0.77,"hc-key":"ni","hc-a2":"NI","name":"Nicaragua","labelrank":"5","country-abbrev":"Nic.","subregion":"Central America","region-wb":"Latin America & Caribbean","iso-a3":"NIC","iso-a2":"NI","woe-id":"23424915","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1212,7474],[1187,7497],[1179,7511],[1152,7533],[1163,7537],[1183,7547],[1183,7562],[1204,7571],[1217,7569],[1236,7581],[1242,7594],[1259,7590],[1304,7603],[1301,7581],[1286,7551],[1272,7485],[1278,7469],[1269,7462],[1255,7472],[1237,7470],[1212,7474]]]}},{"type":"Feature","id":"MW","properties":{"hc-group":"admin0","hc-middle-x":0.24,"hc-middle-y":0.35,"hc-key":"mw","hc-a2":"MW","name":"Malawi","labelrank":"6","country-abbrev":"Mal.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MWI","iso-a2":"MW","woe-id":"23424889","continent":"Africa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5147,6737],[5147,6738],[5147,6738],[5147,6737]]],[[[5142,6742],[5141,6743],[5141,6743],[5142,6742],[5142,6742]]],[[[5128,6793],[5125,6797],[5125,6797],[5128,6793]]],[[[5122,6799],[5121,6800],[5121,6800],[5122,6799]]],[[[5116,6793],[5124,6765],[5128,6729],[5119,6707],[5126,6690],[5126,6674],[5155,6640],[5144,6669],[5175,6631],[5171,6586],[5158,6583],[5149,6570],[5154,6550],[5125,6581],[5121,6591],[5132,6610],[5126,6640],[5103,6633],[5089,6652],[5077,6662],[5085,6698],[5095,6701],[5093,6755],[5107,6765],[5098,6787],[5084,6803],[5099,6797],[5116,6793]]]]}},{"type":"Feature","id":"TM","properties":{"hc-group":"admin0","hc-middle-x":0.31,"hc-middle-y":0.38,"hc-key":"tm","hc-a2":"TM","name":"Turkmenistan","labelrank":"4","country-abbrev":"Turkm.","subregion":"Central Asia","region-wb":"Europe & Central Asia","iso-a3":"TKM","iso-a2":"TM","woe-id":"23424972","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5740,8465],[5772,8463],[5770,8485],[5781,8472],[5796,8477],[5787,8492],[5796,8504],[5812,8497],[5802,8510],[5812,8513],[5841,8497],[5854,8497],[5867,8467],[5927,8454],[5947,8422],[6005,8388],[6012,8388],[6055,8364],[6086,8357],[6089,8335],[6064,8342],[6058,8331],[6044,8331],[6031,8300],[5997,8286],[5991,8272],[5968,8262],[5957,8272],[5933,8278],[5926,8309],[5899,8312],[5887,8324],[5846,8346],[5799,8355],[5794,8365],[5769,8365],[5766,8359],[5739,8359],[5721,8341],[5695,8335],[5687,8373],[5690,8386],[5675,8400],[5672,8420],[5646,8423],[5647,8454],[5673,8442],[5692,8445],[5702,8458],[5680,8470],[5671,8490],[5649,8491],[5640,8479],[5641,8467],[5628,8479],[5643,8491],[5679,8498],[5703,8485],[5725,8463],[5729,8463],[5732,8464],[5736,8465],[5740,8465]]]}},{"type":"Feature","id":"ZM","properties":{"hc-group":"admin0","hc-middle-x":0.35,"hc-middle-y":0.65,"hc-key":"zm","hc-a2":"ZM","name":"Zambia","labelrank":"3","country-abbrev":"Zambia","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"ZMB","iso-a2":"ZM","woe-id":"23425003","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4940,6804],[4961,6827],[4953,6834],[5008,6842],[5003,6835],[5022,6823],[5027,6830],[5053,6814],[5084,6803],[5098,6787],[5107,6765],[5093,6755],[5095,6701],[5085,6698],[5077,6662],[5089,6652],[4991,6621],[4996,6599],[4978,6600],[4946,6586],[4942,6570],[4932,6569],[4902,6550],[4885,6523],[4874,6519],[4828,6529],[4818,6536],[4794,6539],[4767,6534],[4726,6570],[4723,6582],[4724,6685],[4790,6685],[4790,6755],[4804,6748],[4801,6739],[4834,6745],[4835,6730],[4879,6718],[4895,6732],[4909,6709],[4932,6704],[4959,6671],[4970,6678],[4979,6672],[4980,6713],[4970,6703],[4955,6706],[4938,6722],[4933,6736],[4943,6767],[4946,6791],[4940,6804]]]}},{"type":"Feature","id":"NC","properties":{"hc-group":"admin0","hc-middle-x":0.54,"hc-middle-y":0.64,"hc-key":"nc","hc-a2":"NC","name":"Northern Cyprus","labelrank":"6","country-abbrev":"N. Cy.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"-99","iso-a2":"NC","woe-id":"-90","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5075,8260],[5071,8259],[5068,8259],[5059,8264],[5038,8264],[5038,8264],[5038,8264],[5038,8264],[5037,8264],[5037,8264],[5043,8271],[5059,8269],[5095,8281],[5076,8268],[5078,8260],[5075,8260]]],[[[5034,8264],[5035,8264],[5035,8263],[5034,8264]]]]}},{"type":"Feature","id":"ZA","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.64,"hc-key":"za","hc-a2":"ZA","name":"South Africa","labelrank":"2","country-abbrev":"S.Af.","subregion":"Southern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"ZAF","iso-a2":"ZA","woe-id":"23424942","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5036,6232],[5044,6232],[5061,6232],[5042,6176],[5021,6163],[5002,6143],[4974,6101],[4941,6074],[4922,6054],[4864,6013],[4845,6006],[4825,6007],[4819,5997],[4797,5999],[4792,5992],[4754,5998],[4746,5994],[4721,5998],[4698,5987],[4655,5983],[4638,5971],[4627,5972],[4592,6003],[4573,6036],[4586,6042],[4585,6073],[4558,6117],[4545,6158],[4534,6175],[4554,6193],[4563,6171],[4588,6165],[4618,6163],[4633,6177],[4646,6180],[4650,6301],[4662,6291],[4676,6255],[4669,6246],[4671,6230],[4702,6231],[4737,6260],[4747,6283],[4761,6283],[4776,6272],[4804,6265],[4829,6272],[4839,6301],[4857,6304],[4871,6317],[4878,6337],[4902,6351],[4917,6369],[4955,6385],[4986,6379],[5017,6378],[5023,6343],[5036,6311],[5033,6261],[5016,6268],[4995,6247],[4994,6234],[5005,6221],[5031,6217],[5036,6232]],[[4877,6144],[4869,6141],[4879,6118],[4901,6107],[4911,6124],[4936,6131],[4946,6150],[4922,6175],[4893,6164],[4877,6144]]]}},{"type":"Feature","id":"LT","properties":{"hc-group":"admin0","hc-middle-x":0.23,"hc-middle-y":0.47,"hc-key":"lt","hc-a2":"LT","name":"Lithuania","labelrank":"5","country-abbrev":"Lith.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"LTU","iso-a2":"LT","woe-id":"23424875","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4632,8921],[4627,8935],[4623,8948],[4652,8959],[4724,8955],[4757,8950],[4786,8935],[4778,8918],[4768,8911],[4758,8890],[4727,8877],[4701,8878],[4699,8885],[4678,8892],[4678,8909],[4632,8921]]],[[[4621,8922],[4625,8929],[4623,8922],[4621,8922]]]]}},{"type":"Feature","id":"ET","properties":{"hc-group":"admin0","hc-middle-x":0.44,"hc-middle-y":0.58,"hc-key":"et","hc-a2":"ET","name":"Ethiopia","labelrank":"2","country-abbrev":"Eth.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"ETH","iso-a2":"ET","woe-id":"23424808","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5372,7481],[5368,7478],[5372,7475],[5377,7469],[5409,7472],[5400,7460],[5427,7420],[5447,7406],[5544,7373],[5577,7373],[5527,7324],[5479,7272],[5447,7274],[5420,7264],[5409,7252],[5387,7249],[5380,7242],[5356,7241],[5343,7252],[5313,7238],[5303,7223],[5256,7230],[5214,7257],[5188,7257],[5184,7263],[5180,7286],[5165,7287],[5153,7303],[5144,7329],[5111,7362],[5089,7367],[5095,7388],[5118,7388],[5123,7394],[5121,7421],[5137,7468],[5145,7463],[5157,7501],[5171,7526],[5185,7527],[5197,7579],[5222,7585],[5231,7573],[5241,7599],[5259,7584],[5278,7591],[5313,7585],[5338,7573],[5350,7557],[5370,7543],[5390,7520],[5370,7489],[5372,7481]]]}},{"type":"Feature","id":"GH","properties":{"hc-group":"admin0","hc-middle-x":0.22,"hc-middle-y":0.92,"hc-key":"gh","hc-a2":"GH","name":"Ghana","labelrank":"3","country-abbrev":"Ghana","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GHA","iso-a2":"GH","woe-id":"23424824","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4047,7311],[4039,7301],[4016,7300],[3982,7282],[3955,7276],[3940,7267],[3906,7278],[3906,7279],[3911,7278],[3915,7280],[3904,7317],[3903,7336],[3912,7360],[3926,7380],[3920,7422],[3913,7460],[3918,7471],[3981,7472],[4003,7476],[4005,7460],[4020,7446],[4016,7425],[4026,7419],[4020,7399],[4027,7380],[4029,7351],[4025,7336],[4047,7311]]]}},{"type":"Feature","id":"SI","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.57,"hc-key":"si","hc-a2":"SI","name":"Slovenia","labelrank":"6","country-abbrev":"Slo.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"SVN","iso-a2":"SI","woe-id":"23424945","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4423,8601],[4422,8603],[4426,8605],[4415,8628],[4425,8635],[4450,8631],[4460,8638],[4495,8641],[4497,8646],[4502,8647],[4510,8635],[4484,8625],[4476,8600],[4423,8601]]]}},{"type":"Feature","id":"BA","properties":{"hc-group":"admin0","hc-middle-x":0.77,"hc-middle-y":0.57,"hc-key":"ba","hc-a2":"BA","name":"Bosnia and Herzegovina","labelrank":"5","country-abbrev":"B.H.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"BIH","iso-a2":"BA","woe-id":"23424761","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4552,8516],[4549,8518],[4549,8518],[4549,8523],[4505,8560],[4492,8576],[4490,8591],[4508,8586],[4525,8595],[4553,8588],[4579,8588],[4590,8581],[4601,8582],[4595,8562],[4610,8554],[4598,8551],[4598,8537],[4576,8520],[4576,8506],[4558,8514],[4552,8516]]]}},{"type":"Feature","id":"JO","properties":{"hc-group":"admin0","hc-middle-x":0.15,"hc-middle-y":0.59,"hc-key":"jo","hc-a2":"JO","name":"Jordan","labelrank":"4","country-abbrev":"Jord.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"JOR","iso-a2":"JO","woe-id":"23424860","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5133,8130],[5136,8133],[5132,8134],[5132,8135],[5132,8138],[5136,8138],[5136,8152],[5133,8181],[5139,8184],[5174,8170],[5233,8205],[5244,8176],[5248,8163],[5243,8159],[5181,8143],[5216,8110],[5201,8094],[5177,8089],[5157,8068],[5122,8073],[5123,8079],[5122,8080],[5125,8108],[5133,8130]]]}},{"type":"Feature","id":"SY","properties":{"hc-group":"admin0","hc-middle-x":0.30,"hc-middle-y":0.53,"hc-key":"sy","hc-a2":"SY","name":"Syria","labelrank":"3","country-abbrev":"Syria","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"SYR","iso-a2":"SY","woe-id":"23424956","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5233,8205],[5174,8170],[5139,8184],[5143,8191],[5140,8206],[5146,8219],[5162,8232],[5154,8245],[5141,8246],[5137,8272],[5136,8288],[5144,8285],[5156,8318],[5182,8311],[5205,8320],[5220,8314],[5254,8315],[5288,8327],[5307,8326],[5329,8334],[5334,8327],[5320,8311],[5306,8308],[5306,8251],[5291,8236],[5233,8205]]]}},{"type":"Feature","id":"MC","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.67,"hc-key":"mc","hc-a2":"MC","name":"Monaco","labelrank":"6","country-abbrev":"Mco.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"MCO","iso-a2":"MC","woe-id":"23424892","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4237,8544],[4236,8543],[4234,8544],[4236,8545],[4237,8544]]]}},{"type":"Feature","id":"AL","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.48,"hc-key":"al","hc-a2":"AL","name":"Albania","labelrank":"6","country-abbrev":"Alb.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"ALB","iso-a2":"AL","woe-id":"23424742","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4657,8451],[4657,8451],[4657,8451],[4657,8451]]],[[[4606,8490],[4606,8495],[4606,8498],[4615,8509],[4626,8505],[4641,8494],[4643,8483],[4642,8466],[4647,8457],[4648,8452],[4650,8451],[4654,8452],[4657,8451],[4656,8451],[4658,8450],[4658,8450],[4656,8447],[4658,8448],[4657,8447],[4659,8444],[4659,8444],[4660,8444],[4642,8416],[4630,8412],[4613,8429],[4607,8443],[4613,8481],[4606,8482],[4605,8486],[4606,8490]]],[[[4606,8497],[4605,8496],[4605,8496],[4606,8497]]]]}},{"type":"Feature","id":"UY","properties":{"hc-group":"admin0","hc-middle-x":0.74,"hc-middle-y":0.61,"hc-key":"uy","hc-a2":"UY","name":"Uruguay","labelrank":"4","country-abbrev":"Ury.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"URY","iso-a2":"UY","woe-id":"23424979","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[2326,6042],[2313,6027],[2318,6012],[2318,6009],[2323,6006],[2314,5985],[2280,5967],[2265,5971],[2241,5967],[2207,5983],[2185,5982],[2166,6000],[2164,6025],[2172,6029],[2166,6049],[2164,6067],[2176,6123],[2200,6125],[2222,6110],[2230,6093],[2242,6101],[2255,6088],[2276,6081],[2310,6052],[2326,6042]]]}},{"type":"Feature","id":"CNM","properties":{"hc-group":"admin0","hc-middle-x":0.69,"hc-middle-y":0.51,"hc-key":"cnm","hc-a2":"CN","name":"Cyprus No Mans Area","labelrank":"9","country-abbrev":null,"subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"-99","iso-a2":null,"woe-id":"-99","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[5078,8260],[5079,8260],[5078,8259],[5075,8260],[5075,8260],[5078,8260]]],[[[5033,8264],[5034,8264],[5035,8263],[5035,8264],[5036,8264],[5035,8263],[5033,8264]]],[[[5037,8264],[5037,8264],[5037,8264],[5038,8264],[5038,8264],[5037,8264]]],[[[5068,8259],[5069,8258],[5069,8257],[5059,8263],[5038,8264],[5038,8264],[5059,8264],[5068,8259]]]]}},{"type":"Feature","id":"RW","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.56,"hc-key":"rw","hc-a2":"RW","name":"Rwanda","labelrank":"3","country-abbrev":"Rwa.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"RWA","iso-a2":"RW","woe-id":"23424937","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4958,7022],[4954,7024],[4954,7030],[4970,7045],[4965,7056],[4969,7062],[4977,7066],[4989,7063],[5006,7076],[5018,7059],[5018,7035],[5009,7033],[4989,7035],[4987,7024],[4958,7022]]]}},{"type":"Feature","id":"SX","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"sx","hc-a2":"SX","name":"Somaliland","labelrank":"5","country-abbrev":"Solnd.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"-99","iso-a2":"SX","woe-id":"-99","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5577,7373],[5544,7373],[5447,7406],[5427,7420],[5400,7460],[5409,7472],[5419,7488],[5454,7454],[5476,7453],[5502,7468],[5524,7462],[5555,7478],[5579,7476],[5605,7480],[5607,7421],[5577,7373]]]}},{"type":"Feature","id":"BO","properties":{"hc-group":"admin0","hc-middle-x":0.48,"hc-middle-y":0.56,"hc-key":"bo","hc-a2":"BO","name":"Bolivia","labelrank":"3","country-abbrev":"Bolivia","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"BOL","iso-a2":"BO","woe-id":"23424762","continent":"South America"},"geometry":{"type":"MultiPolygon","coordinates":[[[[1763,6580],[1762,6586],[1768,6580],[1765,6580],[1763,6580]]],[[[1753,6538],[1747,6545],[1766,6569],[1780,6577],[1773,6589],[1753,6603],[1760,6612],[1751,6621],[1767,6647],[1758,6664],[1760,6689],[1769,6702],[1738,6753],[1780,6752],[1798,6761],[1832,6787],[1870,6794],[1877,6777],[1872,6768],[1874,6746],[1889,6718],[1909,6703],[1952,6697],[1963,6685],[1983,6682],[1994,6668],[2020,6670],[2039,6659],[2054,6579],[2109,6576],[2114,6546],[2133,6537],[2142,6516],[2127,6451],[2126,6462],[2095,6480],[2065,6479],[2010,6468],[1995,6438],[1997,6421],[1988,6383],[1982,6391],[1946,6391],[1936,6362],[1925,6384],[1888,6387],[1871,6398],[1843,6364],[1821,6364],[1806,6414],[1785,6442],[1785,6465],[1793,6475],[1774,6491],[1766,6517],[1753,6538]]]]}},{"type":"Feature","id":"CM","properties":{"hc-group":"admin0","hc-middle-x":0.32,"hc-middle-y":0.76,"hc-key":"cm","hc-a2":"CM","name":"Cameroon","labelrank":"3","country-abbrev":"Cam.","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"CMR","iso-a2":"CM","woe-id":"23424785","continent":"Africa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4444,7182],[4442,7186],[4380,7187],[4379,7182],[4335,7182],[4329,7188],[4334,7212],[4323,7238],[4302,7245],[4300,7262],[4290,7269],[4296,7280],[4298,7302],[4340,7341],[4354,7345],[4379,7322],[4396,7345],[4408,7385],[4426,7399],[4428,7419],[4439,7424],[4441,7442],[4464,7481],[4484,7488],[4487,7510],[4471,7517],[4467,7540],[4475,7540],[4473,7534],[4481,7536],[4491,7525],[4502,7489],[4500,7465],[4520,7439],[4471,7438],[4464,7427],[4505,7389],[4514,7358],[4490,7316],[4479,7309],[4487,7299],[4484,7284],[4490,7263],[4499,7256],[4505,7235],[4535,7204],[4539,7185],[4538,7168],[4485,7184],[4444,7182]]],[[[4477,7540],[4477,7539],[4476,7540],[4477,7540]]]]}},{"type":"Feature","id":"CG","properties":{"hc-group":"admin0","hc-middle-x":0.16,"hc-middle-y":0.86,"hc-key":"cg","hc-a2":"CG","name":"Republic of Congo","labelrank":"4","country-abbrev":"Rep. Congo","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"COG","iso-a2":"CG","woe-id":"23424779","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4436,6960],[4426,6968],[4401,6947],[4395,6961],[4372,6982],[4384,6996],[4396,6990],[4399,7003],[4391,7008],[4387,7035],[4416,7035],[4415,7050],[4428,7049],[4435,7035],[4449,7031],[4458,7043],[4470,7030],[4480,7049],[4483,7092],[4461,7105],[4463,7118],[4482,7141],[4475,7155],[4460,7158],[4442,7151],[4438,7164],[4444,7182],[4485,7184],[4538,7168],[4539,7185],[4548,7204],[4551,7225],[4580,7233],[4618,7225],[4618,7214],[4600,7182],[4600,7162],[4593,7145],[4596,7124],[4590,7094],[4575,7078],[4560,7070],[4540,7042],[4540,7003],[4529,6983],[4517,6978],[4494,6954],[4480,6951],[4479,6971],[4447,6951],[4436,6960]]]}},{"type":"Feature","id":"EH","properties":{"hc-group":"admin0","hc-middle-x":1.00,"hc-middle-y":0.03,"hc-key":"eh","hc-a2":"EH","name":"Western Sahara","labelrank":"7","country-abbrev":"W. Sah.","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"ESH","iso-a2":"EH","woe-id":"23424990","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3457,7792],[3456,7795],[3459,7813],[3529,7814],[3550,7842],[3557,7878],[3565,7891],[3580,7897],[3588,7911],[3609,7925],[3623,7964],[3633,7966],[3645,7984],[3644,7992],[3659,7996],[3697,7991],[3707,7999],[3727,8000],[3731,8017],[3731,8005],[3730,7963],[3623,7963],[3621,7880],[3589,7865],[3586,7848],[3588,7810],[3461,7810],[3457,7792]]]}},{"type":"Feature","id":"ME","properties":{"hc-group":"admin0","hc-middle-x":0.43,"hc-middle-y":0.48,"hc-key":"me","hc-a2":"ME","name":"Montenegro","labelrank":"6","country-abbrev":"Mont.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"MNE","iso-a2":"ME","woe-id":"20069817","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4626,8505],[4615,8509],[4606,8498],[4606,8497],[4605,8496],[4599,8496],[4606,8490],[4605,8486],[4606,8482],[4587,8496],[4578,8501],[4576,8503],[4576,8506],[4576,8520],[4598,8537],[4611,8526],[4635,8514],[4625,8511],[4626,8505]]]}},{"type":"Feature","id":"RS","properties":{"hc-group":"admin0","hc-middle-x":0.26,"hc-middle-y":0.79,"hc-key":"rs","hc-a2":"RS","name":"Republic of Serbia","labelrank":"5","country-abbrev":"Serb.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"SRB","iso-a2":"RS","woe-id":"-90","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4635,8514],[4611,8526],[4598,8537],[4598,8551],[4610,8554],[4595,8562],[4601,8582],[4590,8581],[4590,8590],[4584,8616],[4603,8624],[4625,8622],[4642,8610],[4642,8602],[4665,8590],[4661,8581],[4686,8569],[4694,8577],[4704,8560],[4694,8546],[4715,8526],[4699,8514],[4697,8497],[4684,8498],[4673,8495],[4679,8509],[4667,8512],[4647,8528],[4635,8514]]]}},{"type":"Feature","id":"BJ","properties":{"hc-group":"admin0","hc-middle-x":0.32,"hc-middle-y":0.95,"hc-key":"bj","hc-a2":"BJ","name":"Benin","labelrank":"5","country-abbrev":"Benin","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"BEN","iso-a2":"BJ","woe-id":"23424764","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4097,7320],[4070,7317],[4061,7315],[4061,7408],[4052,7423],[4052,7439],[4033,7451],[4038,7471],[4055,7487],[4074,7486],[4086,7501],[4086,7512],[4101,7518],[4126,7495],[4121,7485],[4134,7459],[4123,7434],[4099,7408],[4096,7370],[4099,7342],[4097,7320]]]}},{"type":"Feature","id":"TG","properties":{"hc-group":"admin0","hc-middle-x":0.62,"hc-middle-y":0.49,"hc-key":"tg","hc-a2":"TG","name":"Togo","labelrank":"6","country-abbrev":"Togo","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"TGO","iso-a2":"TG","woe-id":"23424965","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4061,7315],[4055,7314],[4047,7311],[4025,7336],[4029,7351],[4027,7380],[4020,7399],[4026,7419],[4016,7425],[4020,7446],[4005,7460],[4003,7476],[4024,7472],[4038,7471],[4033,7451],[4052,7439],[4052,7423],[4061,7408],[4061,7315]]]}},{"type":"Feature","id":"AF","properties":{"hc-group":"admin0","hc-middle-x":0.43,"hc-middle-y":0.51,"hc-key":"af","hc-a2":"AF","name":"Afghanistan","labelrank":"3","country-abbrev":"Afg.","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"AFG","iso-a2":"AF","woe-id":"23424739","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6352,8331],[6336,8328],[6342,8324],[6321,8320],[6281,8318],[6242,8292],[6258,8276],[6261,8264],[6244,8241],[6250,8227],[6216,8227],[6229,8203],[6207,8195],[6200,8173],[6204,8158],[6190,8147],[6168,8154],[6146,8134],[6133,8137],[6116,8124],[6115,8089],[6050,8074],[6033,8078],[5999,8075],[5945,8089],[5971,8122],[5966,8139],[5938,8143],[5935,8168],[5923,8194],[5930,8211],[5919,8213],[5916,8228],[5927,8236],[5933,8278],[5957,8272],[5968,8262],[5991,8272],[5997,8286],[6031,8300],[6044,8331],[6058,8331],[6064,8342],[6089,8335],[6113,8329],[6129,8330],[6138,8321],[6157,8333],[6176,8327],[6181,8342],[6201,8341],[6200,8354],[6211,8368],[6234,8365],[6245,8353],[6244,8326],[6252,8314],[6283,8324],[6300,8339],[6315,8331],[6330,8337],[6352,8331]]]}},{"type":"Feature","id":"UA","properties":{"hc-group":"admin0","hc-middle-x":0.58,"hc-middle-y":0.50,"hc-key":"ua","hc-a2":"UA","name":"Ukraine","labelrank":"3","country-abbrev":"Ukr.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"UKR","iso-a2":"UA","woe-id":"23424976","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4676,8697],[4681,8706],[4687,8719],[4697,8716],[4689,8734],[4701,8748],[4730,8767],[4730,8777],[4712,8799],[4734,8811],[4775,8812],[4821,8801],[4850,8803],[4883,8794],[4918,8800],[4928,8817],[4953,8818],[4969,8825],[5012,8826],[5033,8806],[5028,8790],[5055,8789],[5078,8761],[5106,8756],[5129,8763],[5149,8746],[5153,8751],[5184,8745],[5212,8732],[5214,8713],[5205,8708],[5216,8691],[5211,8678],[5183,8679],[5170,8671],[5168,8654],[5148,8654],[5126,8642],[5099,8640],[5068,8624],[5092,8595],[5125,8599],[5115,8586],[5096,8589],[5081,8579],[5063,8577],[5048,8565],[5034,8573],[5034,8589],[5013,8597],[5011,8606],[5037,8616],[4974,8625],[4991,8633],[4978,8639],[4955,8639],[4912,8601],[4914,8593],[4903,8600],[4888,8593],[4869,8601],[4890,8618],[4888,8633],[4923,8630],[4917,8645],[4905,8649],[4904,8662],[4890,8668],[4893,8679],[4847,8698],[4812,8692],[4800,8684],[4772,8680],[4700,8682],[4691,8687],[4676,8697]]]}},{"type":"Feature","id":"SK","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.43,"hc-key":"sk","hc-a2":"SK","name":"Slovakia","labelrank":"6","country-abbrev":"Svk.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"SVK","iso-a2":"SK","woe-id":"23424877","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4687,8719],[4681,8706],[4676,8697],[4655,8702],[4626,8701],[4610,8688],[4578,8685],[4577,8678],[4548,8676],[4527,8684],[4517,8696],[4519,8704],[4553,8720],[4574,8733],[4592,8736],[4612,8722],[4619,8729],[4638,8726],[4664,8729],[4687,8719]]]}},{"type":"Feature","id":"JK","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.58,"hc-key":"jk","hc-a2":"JK","name":"Siachen Glacier","labelrank":"5","country-abbrev":"Siachen","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"-99","iso-a2":"JK","woe-id":"23424928","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6453,8274],[6432,8262],[6420,8279],[6441,8273],[6453,8274]]]}},{"type":"Feature","id":"PK","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.58,"hc-key":"pk","hc-a2":"PK","name":"Pakistan","labelrank":"2","country-abbrev":"Pak.","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"PAK","iso-a2":"PK","woe-id":"23424922","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6420,8279],[6432,8262],[6422,8250],[6396,8242],[6349,8250],[6333,8237],[6347,8198],[6360,8185],[6370,8187],[6374,8175],[6393,8164],[6370,8150],[6375,8131],[6343,8092],[6333,8062],[6316,8054],[6304,8027],[6268,8020],[6259,8030],[6234,8002],[6232,7990],[6255,7980],[6255,7962],[6275,7952],[6291,7920],[6283,7905],[6276,7911],[6258,7903],[6222,7905],[6219,7896],[6202,7892],[6187,7891],[6174,7900],[6167,7920],[6150,7925],[6150,7938],[6138,7946],[6079,7939],[6054,7943],[6047,7937],[6014,7939],[5990,7932],[5985,7937],[5990,7970],[6004,7979],[6029,7984],[6034,8000],[6015,8005],[6012,8037],[5983,8046],[5945,8089],[5999,8075],[6033,8078],[6050,8074],[6115,8089],[6116,8124],[6133,8137],[6146,8134],[6168,8154],[6190,8147],[6204,8158],[6200,8173],[6207,8195],[6229,8203],[6216,8227],[6250,8227],[6244,8241],[6261,8264],[6258,8276],[6242,8292],[6281,8318],[6321,8320],[6342,8324],[6360,8323],[6390,8306],[6391,8292],[6420,8279]]]}},{"type":"Feature","id":"BG","properties":{"hc-group":"admin0","hc-middle-x":0.72,"hc-middle-y":0.51,"hc-key":"bg","hc-a2":"BG","name":"Bulgaria","labelrank":"4","country-abbrev":"Bulg.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"BGR","iso-a2":"BG","woe-id":"23424771","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4885,8544],[4883,8532],[4872,8533],[4862,8501],[4873,8486],[4843,8490],[4822,8478],[4816,8466],[4789,8462],[4766,8473],[4717,8465],[4719,8479],[4697,8497],[4699,8514],[4715,8526],[4694,8546],[4704,8560],[4724,8549],[4787,8541],[4810,8553],[4837,8559],[4885,8544]]]}},{"type":"Feature","id":"RO","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.51,"hc-key":"ro","hc-a2":"RO","name":"Romania","labelrank":"3","country-abbrev":"Rom.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"ROU","iso-a2":"RO","woe-id":"23424933","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4914,8593],[4912,8580],[4898,8578],[4885,8563],[4885,8544],[4837,8559],[4810,8553],[4787,8541],[4724,8549],[4704,8560],[4694,8577],[4686,8569],[4661,8581],[4665,8590],[4642,8602],[4642,8610],[4625,8622],[4652,8628],[4674,8667],[4700,8682],[4772,8680],[4800,8684],[4812,8692],[4824,8689],[4835,8673],[4859,8652],[4867,8639],[4863,8619],[4869,8601],[4888,8593],[4903,8600],[4914,8593]]]}},{"type":"Feature","id":"QA","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.51,"hc-key":"qa","hc-a2":"QA","name":"Qatar","labelrank":"5","country-abbrev":"Qatar","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"QAT","iso-a2":"QA","woe-id":"23424930","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5640,7922],[5637,7947],[5651,7968],[5662,7959],[5665,7929],[5660,7918],[5659,7917],[5658,7916],[5658,7919],[5654,7918],[5646,7916],[5640,7922]]]}},{"type":"Feature","id":"LI","properties":{"hc-group":"admin0","hc-middle-x":0.59,"hc-middle-y":0.53,"hc-key":"li","hc-a2":"LI","name":"Liechtenstein","labelrank":"6","country-abbrev":"Liech.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"LIE","iso-a2":"LI","woe-id":"23424879","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4297,8660],[4300,8654],[4299,8653],[4296,8653],[4297,8660]]]}},{"type":"Feature","id":"AT","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.60,"hc-key":"at","hc-a2":"AT","name":"Austria","labelrank":"4","country-abbrev":"Aust.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"AUT","iso-a2":"AT","woe-id":"23424750","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4299,8653],[4300,8654],[4297,8660],[4301,8664],[4298,8668],[4301,8667],[4303,8669],[4316,8660],[4324,8670],[4341,8664],[4360,8670],[4395,8673],[4393,8687],[4422,8701],[4425,8709],[4451,8703],[4459,8716],[4519,8704],[4517,8696],[4527,8684],[4525,8674],[4510,8676],[4507,8652],[4497,8646],[4495,8641],[4460,8638],[4450,8631],[4425,8635],[4385,8641],[4378,8654],[4326,8647],[4315,8646],[4299,8653]]]}},{"type":"Feature","id":"SZ","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.48,"hc-key":"sz","hc-a2":"SZ","name":"Swaziland","labelrank":"4","country-abbrev":"Swz.","subregion":"Southern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SWZ","iso-a2":"SZ","woe-id":"23424993","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5033,6261],[5035,6250],[5036,6232],[5031,6217],[5005,6221],[4994,6234],[4995,6247],[5016,6268],[5033,6261]]]}},{"type":"Feature","id":"HU","properties":{"hc-group":"admin0","hc-middle-x":0.30,"hc-middle-y":0.58,"hc-key":"hu","hc-a2":"HU","name":"Hungary","labelrank":"5","country-abbrev":"Hun.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"HUN","iso-a2":"HU","woe-id":"23424844","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4625,8622],[4603,8624],[4584,8616],[4569,8610],[4537,8617],[4510,8635],[4502,8647],[4497,8646],[4507,8652],[4510,8676],[4525,8674],[4527,8684],[4548,8676],[4577,8678],[4578,8685],[4610,8688],[4626,8701],[4655,8702],[4676,8697],[4691,8687],[4700,8682],[4674,8667],[4652,8628],[4625,8622]]]}},{"type":"Feature","id":"NE","properties":{"hc-group":"admin0","hc-middle-x":0.63,"hc-middle-y":0.55,"hc-key":"ne","hc-a2":"NE","name":"Niger","labelrank":"3","country-abbrev":"Niger","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"NER","iso-a2":"NE","woe-id":"23424906","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4394,7882],[4442,7871],[4466,7852],[4491,7865],[4498,7815],[4525,7778],[4517,7763],[4511,7666],[4475,7627],[4446,7582],[4451,7560],[4428,7553],[4415,7539],[4381,7549],[4338,7545],[4322,7531],[4291,7535],[4263,7549],[4234,7537],[4216,7558],[4188,7566],[4165,7562],[4143,7553],[4141,7537],[4127,7521],[4126,7495],[4101,7518],[4086,7512],[4086,7501],[4075,7516],[4080,7524],[4059,7525],[4040,7538],[4037,7557],[4028,7560],[4013,7588],[4015,7600],[4039,7602],[4052,7612],[4122,7614],[4133,7625],[4144,7649],[4145,7738],[4196,7749],[4250,7795],[4394,7882]]]}},{"type":"Feature","id":"LU","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.59,"hc-key":"lu","hc-a2":"LU","name":"Luxembourg","labelrank":"6","country-abbrev":"Lux.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"LUX","iso-a2":"LU","woe-id":"23424881","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4199,8731],[4187,8731],[4182,8734],[4180,8745],[4192,8753],[4203,8743],[4199,8731]]]}},{"type":"Feature","id":"AD","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.51,"hc-key":"ad","hc-a2":"AD","name":"Andorra","labelrank":"6","country-abbrev":"And.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"AND","iso-a2":"AD","woe-id":"23424744","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4052,8507],[4061,8507],[4061,8504],[4055,8501],[4052,8507]]]}},{"type":"Feature","id":"CI","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.52,"hc-key":"ci","hc-a2":"CI","name":"Ivory Coast","labelrank":"3","country-abbrev":"I.C.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"CIV","iso-a2":"CI","woe-id":"23424854","continent":"Africa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[3906,7278],[3901,7279],[3906,7279],[3906,7278]]],[[[3761,7254],[3760,7278],[3765,7303],[3752,7314],[3726,7324],[3737,7345],[3731,7359],[3739,7359],[3744,7379],[3740,7390],[3758,7386],[3748,7399],[3751,7420],[3744,7420],[3747,7444],[3758,7453],[3781,7444],[3804,7463],[3805,7447],[3828,7453],[3841,7449],[3855,7429],[3889,7437],[3903,7436],[3920,7422],[3926,7380],[3912,7360],[3903,7336],[3904,7317],[3915,7280],[3877,7283],[3817,7276],[3761,7254]]]]}},{"type":"Feature","id":"LR","properties":{"hc-group":"admin0","hc-middle-x":0.89,"hc-middle-y":0.69,"hc-key":"lr","hc-a2":"LR","name":"Liberia","labelrank":"4","country-abbrev":"Liberia","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"LBR","iso-a2":"LR","woe-id":"23424876","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3731,7359],[3737,7345],[3726,7324],[3752,7314],[3765,7303],[3760,7278],[3761,7254],[3738,7261],[3705,7280],[3670,7312],[3637,7331],[3633,7338],[3661,7366],[3672,7389],[3698,7385],[3710,7347],[3724,7363],[3731,7359]]]}},{"type":"Feature","id":"SL","properties":{"hc-group":"admin0","hc-middle-x":0.17,"hc-middle-y":0.78,"hc-key":"sl","hc-a2":"SL","name":"Sierra Leone","labelrank":"4","country-abbrev":"S.L.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SLE","iso-a2":"SL","woe-id":"23424946","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3672,7389],[3661,7366],[3633,7338],[3585,7359],[3598,7362],[3585,7371],[3574,7408],[3593,7420],[3600,7434],[3641,7439],[3660,7416],[3666,7395],[3657,7383],[3672,7389]]]}},{"type":"Feature","id":"BN","properties":{"hc-group":"admin0","hc-middle-x":0.32,"hc-middle-y":0.34,"hc-key":"bn","hc-a2":"BN","name":"Brunei","labelrank":"6","country-abbrev":"Brunei","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"BRN","iso-a2":"BN","woe-id":"23424773","continent":"Asia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[7774,7269],[7777,7270],[7777,7272],[7784,7253],[7774,7269]]],[[[7740,7262],[7757,7265],[7772,7272],[7760,7243],[7740,7262]]]]}},{"type":"Feature","id":"IQ","properties":{"hc-group":"admin0","hc-middle-x":0.46,"hc-middle-y":0.43,"hc-key":"iq","hc-a2":"IQ","name":"Iraq","labelrank":"3","country-abbrev":"Iraq","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"IRQ","iso-a2":"IQ","woe-id":"23424855","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5553,8093],[5539,8096],[5534,8094],[5507,8093],[5492,8064],[5433,8068],[5344,8129],[5289,8157],[5248,8163],[5244,8176],[5233,8205],[5291,8236],[5306,8251],[5306,8308],[5320,8311],[5334,8327],[5344,8335],[5392,8331],[5393,8323],[5409,8328],[5431,8290],[5463,8284],[5453,8274],[5453,8261],[5439,8240],[5440,8224],[5457,8213],[5471,8191],[5509,8173],[5525,8152],[5522,8127],[5533,8127],[5535,8109],[5553,8093]]]}},{"type":"Feature","id":"GE","properties":{"hc-group":"admin0","hc-middle-x":0.30,"hc-middle-y":0.46,"hc-key":"ge","hc-a2":"GE","name":"Georgia","labelrank":"5","country-abbrev":"Geo.","subregion":"Western Asia","region-wb":"Europe & Central Asia","iso-a3":"GEO","iso-a2":"GE","woe-id":"23424823","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5400,8464],[5375,8462],[5353,8458],[5331,8473],[5321,8469],[5292,8471],[5298,8481],[5287,8508],[5270,8520],[5237,8533],[5257,8538],[5287,8527],[5325,8525],[5362,8505],[5389,8511],[5418,8503],[5415,8495],[5442,8484],[5435,8476],[5452,8464],[5448,8456],[5407,8469],[5400,8464]]]}},{"type":"Feature","id":"GM","properties":{"hc-group":"admin0","hc-middle-x":0.06,"hc-middle-y":0.58,"hc-key":"gm","hc-a2":"GM","name":"Gambia","labelrank":"6","country-abbrev":"Gambia","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GMB","iso-a2":"GM","woe-id":"23424821","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3462,7539],[3460,7548],[3469,7556],[3503,7556],[3524,7563],[3557,7548],[3540,7545],[3515,7557],[3492,7542],[3462,7539]]]}},{"type":"Feature","id":"CH","properties":{"hc-group":"admin0","hc-middle-x":0.18,"hc-middle-y":0.45,"hc-key":"ch","hc-a2":"CH","name":"Switzerland","labelrank":"4","country-abbrev":"Switz.","subregion":"Western Europe","region-wb":"Europe & Central Asia","iso-a3":"CHE","iso-a2":"CH","woe-id":"23424957","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4286,8673],[4286,8673],[4287,8672],[4287,8672],[4296,8667],[4298,8668],[4301,8664],[4297,8660],[4296,8653],[4299,8653],[4315,8646],[4326,8647],[4326,8636],[4311,8630],[4290,8634],[4279,8613],[4277,8620],[4254,8627],[4247,8616],[4222,8616],[4214,8623],[4215,8632],[4210,8635],[4202,8631],[4198,8628],[4194,8637],[4222,8662],[4238,8670],[4264,8670],[4269,8677],[4286,8673]]]}},{"type":"Feature","id":"TD","properties":{"hc-group":"admin0","hc-middle-x":0.46,"hc-middle-y":0.69,"hc-key":"td","hc-a2":"TD","name":"Chad","labelrank":"3","country-abbrev":"Chad","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"TCD","iso-a2":"TD","woe-id":"23424777","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4481,7536],[4489,7540],[4477,7540],[4476,7540],[4473,7542],[4475,7540],[4467,7540],[4451,7560],[4446,7582],[4475,7627],[4511,7666],[4517,7763],[4525,7778],[4498,7815],[4491,7865],[4523,7879],[4784,7750],[4788,7626],[4759,7626],[4746,7593],[4736,7588],[4742,7575],[4727,7563],[4734,7548],[4719,7530],[4732,7529],[4746,7507],[4743,7494],[4755,7485],[4754,7469],[4741,7472],[4717,7460],[4718,7452],[4676,7411],[4632,7407],[4633,7396],[4616,7375],[4585,7373],[4557,7359],[4549,7369],[4524,7356],[4514,7358],[4505,7389],[4464,7427],[4471,7438],[4520,7439],[4500,7465],[4502,7489],[4491,7525],[4481,7536]]]}},{"type":"Feature","id":"NG","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.50,"hc-key":"ng","hc-a2":"NG","name":"Nigeria","labelrank":"2","country-abbrev":"Nigeria","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"NGA","iso-a2":"NG","woe-id":"23424908","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4451,7560],[4467,7540],[4471,7517],[4487,7510],[4484,7488],[4464,7481],[4441,7442],[4439,7424],[4428,7419],[4426,7399],[4408,7385],[4396,7345],[4379,7322],[4354,7345],[4340,7341],[4298,7302],[4296,7280],[4290,7269],[4278,7274],[4280,7261],[4247,7262],[4211,7252],[4191,7263],[4168,7308],[4152,7320],[4135,7322],[4097,7320],[4099,7342],[4096,7370],[4099,7408],[4123,7434],[4134,7459],[4121,7485],[4126,7495],[4127,7521],[4141,7537],[4143,7553],[4165,7562],[4188,7566],[4216,7558],[4234,7537],[4263,7549],[4291,7535],[4322,7531],[4338,7545],[4381,7549],[4415,7539],[4428,7553],[4451,7560]]]}},{"type":"Feature","id":"KV","properties":{"hc-group":"admin0","hc-middle-x":0.52,"hc-middle-y":0.49,"hc-key":"kv","hc-a2":"KV","name":"Kosovo","labelrank":"6","country-abbrev":"Kos.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"-99","iso-a2":"KV","woe-id":"-90","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4643,8483],[4641,8494],[4626,8505],[4625,8511],[4635,8514],[4647,8528],[4667,8512],[4679,8509],[4673,8495],[4659,8494],[4643,8483]]]}},{"type":"Feature","id":"LB","properties":{"hc-group":"admin0","hc-middle-x":0.53,"hc-middle-y":0.57,"hc-key":"lb","hc-a2":"LB","name":"Lebanon","labelrank":"5","country-abbrev":"Leb.","subregion":"Western Asia","region-wb":"Middle East & North Africa","iso-a3":"LBN","iso-a2":"LB","woe-id":"23424873","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[5118,8195],[5131,8222],[5141,8246],[5154,8245],[5162,8232],[5146,8219],[5140,8206],[5130,8195],[5118,8195]]]}},{"type":"Feature","id":"DJ","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.54,"hc-key":"dj","hc-a2":"DJ","name":"Djibouti","labelrank":"5","country-abbrev":"Dji.","subregion":"Eastern Africa","region-wb":"Middle East & North Africa","iso-a3":"DJI","iso-a2":"DJ","woe-id":"23424797","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5409,7472],[5377,7469],[5372,7475],[5375,7478],[5372,7481],[5370,7489],[5390,7520],[5400,7516],[5414,7528],[5422,7504],[5396,7488],[5419,7488],[5409,7472]]]}},{"type":"Feature","id":"BI","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.47,"hc-key":"bi","hc-a2":"BI","name":"Burundi","labelrank":"6","country-abbrev":"Bur.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"BDI","iso-a2":"BI","woe-id":"23424774","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4979,6966],[4970,6984],[4965,7002],[4966,7012],[4958,7022],[4987,7024],[4989,7035],[5009,7033],[5004,7018],[5017,7005],[5005,6995],[4991,6971],[4979,6966]]]}},{"type":"Feature","id":"SR","properties":{"hc-group":"admin0","hc-middle-x":0.82,"hc-middle-y":0.19,"hc-key":"sr","hc-a2":"SR","name":"Suriname","labelrank":"4","country-abbrev":"Sur.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"SUR","iso-a2":"SR","woe-id":"23424913","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[2158,7175],[2151,7178],[2136,7204],[2132,7223],[2120,7222],[2107,7248],[2119,7275],[2133,7276],[2135,7291],[2145,7308],[2178,7302],[2180,7307],[2226,7306],[2241,7302],[2235,7287],[2225,7272],[2229,7244],[2240,7225],[2234,7205],[2220,7188],[2208,7195],[2183,7190],[2175,7194],[2173,7171],[2158,7175]]]}},{"type":"Feature","id":"GW","properties":{"hc-group":"admin0","hc-middle-x":0.55,"hc-middle-y":0.49,"hc-key":"gw","hc-a2":"GW","name":"Guinea Bissau","labelrank":"6","country-abbrev":"GnB.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GNB","iso-a2":"GW","woe-id":"23424929","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3463,7515],[3497,7519],[3513,7527],[3561,7527],[3553,7509],[3560,7495],[3528,7488],[3518,7471],[3505,7483],[3480,7473],[3488,7492],[3476,7510],[3463,7515]]]}},{"type":"Feature","id":"SN","properties":{"hc-group":"admin0","hc-middle-x":0.27,"hc-middle-y":0.50,"hc-key":"sn","hc-a2":"SN","name":"Senegal","labelrank":"3","country-abbrev":"Sen.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SEN","iso-a2":"SN","woe-id":"23424943","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3561,7527],[3513,7527],[3497,7519],[3463,7515],[3461,7531],[3462,7539],[3492,7542],[3515,7557],[3540,7545],[3557,7548],[3524,7563],[3503,7556],[3469,7556],[3448,7593],[3471,7629],[3478,7650],[3523,7657],[3543,7656],[3559,7639],[3570,7641],[3578,7623],[3609,7595],[3618,7575],[3614,7560],[3637,7535],[3637,7518],[3605,7514],[3561,7527]]]}},{"type":"Feature","id":"GN","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.38,"hc-key":"gn","hc-a2":"GN","name":"Guinea","labelrank":"3","country-abbrev":"Gin.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"GIN","iso-a2":"GN","woe-id":"23424835","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3561,7527],[3605,7514],[3637,7518],[3659,7501],[3673,7512],[3691,7505],[3709,7520],[3721,7502],[3720,7493],[3735,7484],[3724,7472],[3737,7471],[3747,7444],[3744,7420],[3751,7420],[3748,7399],[3758,7386],[3740,7390],[3744,7379],[3739,7359],[3731,7359],[3724,7363],[3710,7347],[3698,7385],[3672,7389],[3657,7383],[3666,7395],[3660,7416],[3641,7439],[3600,7434],[3593,7420],[3574,7408],[3556,7434],[3530,7455],[3518,7471],[3528,7488],[3560,7495],[3553,7509],[3561,7527]]]}},{"type":"Feature","id":"ZW","properties":{"hc-group":"admin0","hc-middle-x":0.62,"hc-middle-y":0.53,"hc-key":"zw","hc-a2":"ZW","name":"Zimbabwe","labelrank":"3","country-abbrev":"Zimb.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"ZWE","iso-a2":"ZW","woe-id":"23425004","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4828,6529],[4874,6519],[4885,6523],[4921,6560],[4945,6562],[4942,6570],[4946,6586],[4978,6600],[4996,6599],[4996,6587],[5024,6587],[5045,6573],[5079,6565],[5079,6510],[5069,6474],[5076,6455],[5059,6438],[5055,6414],[5017,6378],[4986,6379],[4955,6385],[4946,6396],[4913,6405],[4902,6421],[4904,6440],[4890,6440],[4888,6453],[4854,6473],[4848,6492],[4835,6509],[4828,6529]]]}},{"type":"Feature","id":"PL","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.48,"hc-key":"pl","hc-a2":"PL","name":"Poland","labelrank":"3","country-abbrev":"Pol.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"POL","iso-a2":"PL","woe-id":"23424923","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4585,8895],[4579,8889],[4590,8894],[4676,8892],[4678,8892],[4699,8885],[4701,8878],[4715,8852],[4716,8837],[4696,8824],[4711,8818],[4712,8799],[4730,8777],[4730,8767],[4701,8748],[4689,8734],[4697,8716],[4687,8719],[4664,8729],[4638,8726],[4619,8729],[4612,8722],[4592,8736],[4574,8733],[4565,8746],[4543,8748],[4523,8762],[4509,8752],[4493,8763],[4500,8768],[4451,8777],[4456,8791],[4442,8808],[4443,8834],[4427,8843],[4434,8857],[4429,8870],[4440,8875],[4427,8876],[4426,8877],[4427,8878],[4483,8890],[4495,8899],[4546,8908],[4555,8894],[4585,8895],[4585,8895]]]}},{"type":"Feature","id":"MK","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.47,"hc-key":"mk","hc-a2":"MK","name":"Macedonia","labelrank":"6","country-abbrev":"Mkd.","subregion":"Southern Europe","region-wb":"Europe & Central Asia","iso-a3":"MKD","iso-a2":"MK","woe-id":"23424890","continent":"Europe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[4658,8450],[4658,8450],[4658,8450],[4658,8450]]],[[[4697,8497],[4719,8479],[4717,8465],[4712,8460],[4686,8458],[4662,8450],[4657,8455],[4657,8451],[4657,8451],[4657,8451],[4654,8452],[4650,8451],[4653,8458],[4647,8457],[4642,8466],[4643,8483],[4659,8494],[4673,8495],[4684,8498],[4697,8497]]]]}},{"type":"Feature","id":"PY","properties":{"hc-group":"admin0","hc-middle-x":0.39,"hc-middle-y":0.38,"hc-key":"py","hc-a2":"PY","name":"Paraguay","labelrank":"4","country-abbrev":"Para.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"PRY","iso-a2":"PY","woe-id":"23424917","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[2263,6323],[2260,6311],[2256,6278],[2257,6275],[2257,6274],[2254,6239],[2235,6228],[2225,6212],[2213,6217],[2180,6211],[2152,6218],[2134,6217],[2146,6256],[2161,6278],[2154,6287],[2119,6300],[2077,6325],[2045,6332],[2013,6357],[1988,6383],[1997,6421],[1995,6438],[2010,6468],[2065,6479],[2095,6480],[2126,6462],[2127,6451],[2140,6425],[2138,6388],[2181,6383],[2189,6388],[2215,6370],[2226,6327],[2250,6332],[2263,6323]]]}},{"type":"Feature","id":"BY","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.50,"hc-key":"by","hc-a2":"BY","name":"Belarus","labelrank":"4","country-abbrev":"Bela.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"BLR","iso-a2":"BY","woe-id":"23424765","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4712,8799],[4711,8818],[4696,8824],[4716,8837],[4715,8852],[4701,8878],[4727,8877],[4758,8890],[4768,8911],[4778,8918],[4786,8935],[4815,8939],[4830,8950],[4912,8933],[4924,8901],[4945,8874],[4975,8862],[4959,8850],[4934,8848],[4953,8818],[4928,8817],[4918,8800],[4883,8794],[4850,8803],[4821,8801],[4775,8812],[4734,8811],[4712,8799]]]}},{"type":"Feature","id":"LV","properties":{"hc-group":"admin0","hc-middle-x":0.10,"hc-middle-y":0.39,"hc-key":"lv","hc-a2":"LV","name":"Latvia","labelrank":"5","country-abbrev":"Lat.","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"LVA","iso-a2":"LV","woe-id":"23424874","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4830,8950],[4815,8939],[4786,8935],[4757,8950],[4724,8955],[4652,8959],[4623,8948],[4621,8974],[4638,8997],[4663,9003],[4684,8982],[4697,8977],[4716,8986],[4711,9007],[4739,9014],[4776,8995],[4801,8996],[4816,8988],[4812,8973],[4827,8964],[4830,8950]]]}},{"type":"Feature","id":"BF","properties":{"hc-group":"admin0","hc-middle-x":0.61,"hc-middle-y":0.43,"hc-key":"bf","hc-a2":"BF","name":"Burkina Faso","labelrank":"3","country-abbrev":"B.F.","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"BFA","iso-a2":"BF","woe-id":"23424978","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4038,7471],[4024,7472],[4003,7476],[3981,7472],[3918,7471],[3913,7460],[3920,7422],[3903,7436],[3889,7437],[3855,7429],[3841,7449],[3828,7453],[3840,7503],[3860,7509],[3870,7529],[3866,7541],[3875,7550],[3902,7547],[3902,7561],[3914,7559],[3916,7571],[3928,7579],[3939,7575],[3985,7605],[4015,7600],[4013,7588],[4028,7560],[4037,7557],[4040,7538],[4059,7525],[4080,7524],[4075,7516],[4086,7501],[4074,7486],[4055,7487],[4038,7471]]]}},{"type":"Feature","id":"SS","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.58,"hc-key":"ss","hc-a2":"SS","name":"South Sudan","labelrank":"3","country-abbrev":"S. Sud.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SSD","iso-a2":"SS","woe-id":"-99","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5121,7250],[5105,7234],[5089,7239],[5062,7227],[5049,7236],[5029,7236],[5018,7226],[4997,7241],[4984,7261],[4973,7264],[4964,7253],[4950,7261],[4937,7252],[4917,7262],[4906,7277],[4896,7300],[4873,7310],[4871,7329],[4837,7352],[4820,7379],[4800,7383],[4798,7396],[4811,7402],[4818,7433],[4827,7448],[4852,7453],[4876,7423],[4919,7426],[4924,7417],[4951,7417],[4988,7448],[5013,7430],[5028,7432],[5051,7460],[5066,7473],[5063,7495],[5054,7504],[5076,7505],[5091,7511],[5087,7491],[5091,7467],[5116,7445],[5116,7421],[5121,7421],[5123,7394],[5118,7388],[5095,7388],[5089,7367],[5111,7362],[5144,7329],[5153,7303],[5165,7287],[5180,7286],[5184,7263],[5174,7263],[5167,7276],[5134,7263],[5121,7250]]]}},{"type":"Feature","id":"NA","properties":{"hc-group":"admin0","hc-middle-x":0.42,"hc-middle-y":0.40,"hc-key":"na","hc-a2":"NA","name":"Namibia","labelrank":"3","country-abbrev":"Nam.","subregion":"Southern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"NAM","iso-a2":"NA","woe-id":"23424987","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4767,6534],[4794,6539],[4818,6536],[4828,6529],[4794,6521],[4772,6506],[4764,6522],[4688,6511],[4685,6392],[4653,6391],[4650,6301],[4646,6180],[4633,6177],[4618,6163],[4588,6165],[4563,6171],[4554,6193],[4534,6175],[4509,6196],[4497,6216],[4484,6268],[4483,6299],[4477,6307],[4472,6382],[4458,6398],[4441,6428],[4434,6451],[4406,6499],[4392,6517],[4390,6546],[4416,6547],[4436,6556],[4461,6541],[4607,6542],[4617,6530],[4683,6521],[4702,6521],[4767,6534]]]}},{"type":"Feature","id":"LA","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.30,"hc-key":"la","hc-a2":"LA","name":"Laos","labelrank":"4","country-abbrev":"Laos","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"LAO","iso-a2":"LA","woe-id":"23424872","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7245,7777],[7257,7793],[7261,7809],[7274,7817],[7279,7805],[7293,7804],[7292,7826],[7282,7840],[7301,7845],[7332,7818],[7341,7795],[7359,7788],[7370,7798],[7389,7788],[7382,7781],[7403,7769],[7394,7754],[7374,7756],[7370,7744],[7400,7727],[7438,7690],[7466,7668],[7498,7633],[7491,7628],[7509,7612],[7507,7593],[7485,7580],[7474,7589],[7457,7582],[7456,7567],[7432,7581],[7443,7602],[7441,7626],[7411,7653],[7410,7680],[7379,7711],[7359,7715],[7347,7701],[7317,7708],[7290,7683],[7281,7688],[7288,7703],[7283,7715],[7290,7735],[7285,7752],[7260,7751],[7260,7769],[7245,7777]]]}},{"type":"Feature","id":"CO","properties":{"hc-group":"admin0","hc-middle-x":0.47,"hc-middle-y":0.58,"hc-key":"co","hc-a2":"CO","name":"Colombia","labelrank":"2","country-abbrev":"Col.","subregion":"South America","region-wb":"Latin America & Caribbean","iso-a3":"COL","iso-a2":"CO","woe-id":"23424787","continent":"South America"},"geometry":{"type":"Polygon","coordinates":[[[1461,7348],[1486,7371],[1480,7395],[1499,7371],[1493,7391],[1538,7421],[1543,7458],[1566,7475],[1581,7464],[1590,7483],[1617,7481],[1651,7501],[1657,7512],[1677,7519],[1690,7507],[1682,7500],[1661,7493],[1642,7476],[1628,7453],[1625,7433],[1610,7412],[1623,7416],[1642,7385],[1638,7357],[1650,7344],[1680,7339],[1700,7343],[1714,7340],[1736,7312],[1800,7315],[1802,7307],[1788,7285],[1786,7260],[1794,7235],[1804,7224],[1787,7206],[1808,7190],[1818,7151],[1811,7150],[1803,7180],[1776,7168],[1720,7167],[1720,7146],[1736,7146],[1744,7133],[1714,7131],[1713,7106],[1728,7094],[1734,7065],[1718,6973],[1706,6986],[1692,6987],[1714,7022],[1686,7039],[1669,7034],[1658,7042],[1638,7031],[1611,7039],[1611,7053],[1600,7057],[1596,7070],[1576,7080],[1557,7106],[1542,7108],[1509,7127],[1505,7120],[1473,7124],[1471,7133],[1435,7151],[1426,7158],[1435,7170],[1431,7183],[1443,7198],[1459,7201],[1483,7238],[1469,7249],[1477,7258],[1475,7290],[1480,7301],[1473,7314],[1478,7326],[1461,7348]]]}},{"type":"Feature","id":"ML","properties":{"hc-group":"admin0","hc-middle-x":0.61,"hc-middle-y":0.38,"hc-key":"ml","hc-a2":"ML","name":"Mali","labelrank":"3","country-abbrev":"Mali","subregion":"Western Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MLI","iso-a2":"ML","woe-id":"23424891","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[3828,7453],[3805,7447],[3804,7463],[3781,7444],[3758,7453],[3747,7444],[3737,7471],[3724,7472],[3735,7484],[3720,7493],[3721,7502],[3709,7520],[3691,7505],[3673,7512],[3659,7501],[3637,7518],[3637,7535],[3614,7560],[3618,7575],[3609,7595],[3624,7599],[3627,7620],[3637,7622],[3653,7606],[3660,7617],[3680,7615],[3704,7619],[3829,7619],[3834,7646],[3826,7653],[3797,7930],[3853,7930],[4045,7803],[4046,7791],[4069,7774],[4112,7760],[4109,7738],[4117,7733],[4145,7738],[4144,7649],[4133,7625],[4122,7614],[4052,7612],[4039,7602],[4015,7600],[3985,7605],[3939,7575],[3928,7579],[3916,7571],[3914,7559],[3902,7561],[3902,7547],[3875,7550],[3866,7541],[3870,7529],[3860,7509],[3840,7503],[3828,7453]]]}},{"type":"Feature","id":"MD","properties":{"hc-group":"admin0","hc-middle-x":0.51,"hc-middle-y":0.37,"hc-key":"md","hc-a2":"MD","name":"Moldova","labelrank":"6","country-abbrev":"Mda.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"MDA","iso-a2":"MD","woe-id":"23424885","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4812,8692],[4847,8698],[4893,8679],[4890,8668],[4904,8662],[4905,8649],[4917,8645],[4923,8630],[4888,8633],[4890,8618],[4869,8601],[4863,8619],[4867,8639],[4859,8652],[4835,8673],[4824,8689],[4812,8692]]]}},{"type":"Feature","id":"CZ","properties":{"hc-group":"admin0","hc-middle-x":0.49,"hc-middle-y":0.57,"hc-key":"cz","hc-a2":"CZ","name":"Czech Republic","labelrank":"5","country-abbrev":"Cz. Rep.","subregion":"Eastern Europe","region-wb":"Europe & Central Asia","iso-a3":"CZE","iso-a2":"CZ","woe-id":"23424810","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[4574,8733],[4553,8720],[4519,8704],[4459,8716],[4451,8703],[4425,8709],[4380,8741],[4383,8762],[4437,8778],[4451,8777],[4500,8768],[4493,8763],[4509,8752],[4523,8762],[4543,8748],[4565,8746],[4574,8733]]]}},{"type":"Feature","id":"CF","properties":{"hc-group":"admin0","hc-middle-x":0.57,"hc-middle-y":0.43,"hc-key":"cf","hc-a2":"CF","name":"Central African Republic","labelrank":"4","country-abbrev":"C.A.R.","subregion":"Middle Africa","region-wb":"Sub-Saharan Africa","iso-a3":"CAF","iso-a2":"CF","woe-id":"23424792","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4798,7396],[4800,7383],[4820,7379],[4837,7352],[4871,7329],[4873,7310],[4896,7300],[4906,7277],[4896,7282],[4876,7277],[4845,7287],[4837,7276],[4811,7278],[4772,7262],[4758,7269],[4745,7249],[4682,7256],[4674,7268],[4654,7280],[4633,7272],[4615,7253],[4618,7225],[4580,7233],[4551,7225],[4548,7204],[4539,7185],[4535,7204],[4505,7235],[4499,7256],[4490,7263],[4484,7284],[4487,7299],[4479,7309],[4490,7316],[4514,7358],[4524,7356],[4549,7369],[4557,7359],[4585,7373],[4616,7375],[4633,7396],[4632,7407],[4676,7411],[4718,7452],[4717,7460],[4741,7472],[4754,7469],[4780,7434],[4776,7399],[4798,7396]]]}},{"type":"Feature","id":"BT","properties":{"hc-group":"admin0","hc-middle-x":0.08,"hc-middle-y":0.53,"hc-key":"bt","hc-a2":"BT","name":"Bhutan","labelrank":"5","country-abbrev":"Bhutan","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"BTN","iso-a2":"BT","woe-id":"23424770","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6937,8021],[6949,8011],[6956,7994],[6944,7989],[6884,7986],[6860,7990],[6851,8006],[6869,8033],[6889,8040],[6937,8021]]]}},{"type":"Feature","id":"KG","properties":{"hc-group":"admin0","hc-middle-x":0.36,"hc-middle-y":0.50,"hc-key":"kg","hc-a2":"KG","name":"Kyrgyzstan","labelrank":"4","country-abbrev":"Kgz.","subregion":"Central Asia","region-wb":"Europe & Central Asia","iso-a3":"KGZ","iso-a2":"KG","woe-id":"23424864","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6482,8493],[6483,8488],[6457,8480],[6431,8467],[6425,8456],[6385,8453],[6383,8442],[6356,8431],[6350,8442],[6328,8438],[6305,8423],[6298,8404],[6268,8402],[6257,8395],[6230,8409],[6210,8401],[6199,8409],[6163,8406],[6159,8414],[6180,8429],[6198,8423],[6210,8429],[6233,8427],[6273,8447],[6259,8450],[6226,8469],[6218,8459],[6198,8462],[6177,8473],[6206,8494],[6196,8495],[6196,8506],[6220,8515],[6274,8500],[6272,8521],[6289,8529],[6322,8515],[6340,8518],[6422,8516],[6442,8512],[6482,8493]],[[6202,8417],[6198,8418],[6201,8414],[6205,8416],[6202,8417]],[[6237,8418],[6237,8421],[6234,8420],[6235,8419],[6237,8418]],[[6218,8423],[6211,8425],[6214,8418],[6220,8418],[6218,8423]]]}},{"type":"Feature","id":"NZ","properties":{"hc-group":"admin0","hc-middle-x":0.17,"hc-middle-y":0.85,"hc-key":"nz","hc-a2":"NZ","name":"New Zealand","labelrank":"2","country-abbrev":"N.Z.","subregion":"Australia and New Zealand","region-wb":"East Asia & Pacific","iso-a3":"NZL","iso-a2":"NZ","woe-id":"23424916","continent":"Oceania"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9242,5640],[9210,5614],[9164,5586],[9132,5584],[9110,5568],[9088,5564],[9111,5582],[9113,5598],[9083,5597],[9082,5611],[9109,5632],[9171,5669],[9185,5670],[9220,5684],[9280,5716],[9304,5741],[9318,5747],[9338,5772],[9364,5784],[9362,5758],[9391,5771],[9386,5760],[9405,5768],[9390,5754],[9387,5740],[9357,5720],[9341,5704],[9319,5694],[9319,5675],[9300,5679],[9258,5661],[9242,5640]]],[[[9513,5812],[9457,5764],[9426,5748],[9409,5759],[9436,5779],[9445,5791],[9442,5804],[9414,5821],[9416,5827],[9448,5840],[9472,5874],[9473,5911],[9481,5927],[9467,5923],[9452,5958],[9458,5967],[9449,5982],[9462,5985],[9459,5970],[9480,5965],[9494,5945],[9486,5933],[9492,5923],[9484,5905],[9502,5893],[9509,5925],[9515,5879],[9528,5871],[9549,5867],[9573,5882],[9588,5876],[9568,5849],[9554,5844],[9545,5830],[9531,5831],[9510,5820],[9513,5812]]]]}},{"type":"Feature","id":"CU","properties":{"hc-group":"admin0","hc-middle-x":0.77,"hc-middle-y":0.72,"hc-key":"cu","hc-a2":"CU","name":"Cuba","labelrank":"3","country-abbrev":"Cuba","subregion":"Caribbean","region-wb":"Latin America & Caribbean","iso-a3":"CUB","iso-a2":"CU","woe-id":"23424793","continent":"North America"},"geometry":{"type":"Polygon","coordinates":[[[1543,7766],[1494,7761],[1516,7782],[1509,7790],[1466,7788],[1479,7796],[1467,7820],[1451,7817],[1430,7822],[1413,7834],[1369,7838],[1361,7846],[1369,7854],[1341,7855],[1327,7843],[1344,7819],[1334,7814],[1318,7838],[1301,7838],[1281,7825],[1287,7844],[1302,7855],[1327,7865],[1367,7871],[1393,7867],[1414,7872],[1441,7859],[1455,7853],[1450,7846],[1483,7850],[1524,7814],[1550,7802],[1567,7800],[1570,7791],[1592,7787],[1606,7769],[1562,7763],[1543,7766]]]}},{"type":"Feature","id":"VN","properties":{"hc-group":"admin0","hc-middle-x":0.56,"hc-middle-y":0.92,"hc-key":"vn","hc-a2":"VN","name":"Vietnam","labelrank":"2","country-abbrev":"Viet.","subregion":"South-Eastern Asia","region-wb":"East Asia & Pacific","iso-a3":"VNM","iso-a2":"VN","woe-id":"23424984","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[7495,7815],[7475,7808],[7473,7799],[7451,7784],[7454,7774],[7438,7767],[7429,7734],[7447,7711],[7459,7705],[7468,7684],[7513,7645],[7524,7643],[7545,7615],[7567,7566],[7566,7550],[7575,7534],[7568,7526],[7572,7503],[7565,7483],[7536,7469],[7510,7451],[7493,7456],[7495,7444],[7487,7424],[7456,7410],[7443,7394],[7433,7404],[7430,7446],[7399,7451],[7418,7453],[7431,7456],[7436,7469],[7459,7472],[7474,7464],[7462,7481],[7466,7497],[7480,7494],[7488,7504],[7513,7516],[7510,7538],[7513,7554],[7502,7574],[7507,7593],[7509,7612],[7491,7628],[7498,7633],[7466,7668],[7438,7690],[7400,7727],[7370,7744],[7374,7756],[7394,7754],[7403,7769],[7382,7781],[7389,7788],[7370,7798],[7359,7788],[7341,7795],[7332,7818],[7301,7845],[7310,7857],[7329,7846],[7337,7858],[7360,7849],[7399,7877],[7419,7862],[7439,7862],[7451,7832],[7473,7819],[7495,7815]]]}},{"type":"Feature","id":"MG","properties":{"hc-group":"admin0","hc-middle-x":0.45,"hc-middle-y":0.48,"hc-key":"mg","hc-a2":"MG","name":"Madagascar","labelrank":"3","country-abbrev":"Mad.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"MDG","iso-a2":"MG","woe-id":"23424883","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5627,6570],[5612,6545],[5614,6531],[5570,6412],[5552,6375],[5539,6330],[5520,6293],[5493,6286],[5470,6274],[5457,6273],[5422,6292],[5413,6312],[5417,6343],[5405,6363],[5402,6382],[5413,6413],[5447,6457],[5448,6472],[5436,6508],[5434,6540],[5451,6564],[5452,6581],[5466,6580],[5479,6590],[5490,6588],[5539,6614],[5552,6631],[5553,6617],[5572,6654],[5568,6666],[5579,6673],[5598,6674],[5604,6703],[5614,6720],[5624,6698],[5636,6684],[5642,6638],[5650,6606],[5641,6588],[5631,6606],[5622,6602],[5627,6570]]]}},{"type":"Feature","id":"EG","properties":{"hc-group":"admin0","hc-middle-x":0.50,"hc-middle-y":0.64,"hc-key":"eg","hc-a2":"EG","name":"Egypt","labelrank":"2","country-abbrev":"Egypt","subregion":"Northern Africa","region-wb":"Middle East & North Africa","iso-a3":"EGY","iso-a2":"EG","woe-id":"23424802","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5119,8077],[5103,8020],[5069,8047],[5065,8062],[5050,8076],[5043,8093],[5038,8081],[5049,8060],[5082,8022],[5079,8017],[5096,7992],[5098,7983],[5151,7897],[5158,7863],[5176,7853],[5198,7832],[5016,7832],[4814,7832],[4804,8067],[4794,8100],[4802,8120],[4797,8139],[4806,8148],[4876,8139],[4879,8134],[4911,8130],[4930,8121],[4945,8125],[4971,8144],[5009,8141],[5028,8129],[5059,8135],[5076,8131],[5094,8137],[5117,8086],[5119,8077]]]}},{"type":"Feature","id":"SO","properties":{"hc-group":"admin0","hc-middle-x":0.41,"hc-middle-y":0.69,"hc-key":"so","hc-a2":"SO","name":"Somalia","labelrank":"6","country-abbrev":"Som.","subregion":"Eastern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"SOM","iso-a2":"SO","woe-id":"-90","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[5605,7480],[5648,7491],[5665,7504],[5681,7499],[5676,7488],[5677,7461],[5671,7450],[5669,7421],[5623,7342],[5613,7313],[5578,7257],[5516,7191],[5482,7173],[5432,7132],[5403,7102],[5369,7056],[5351,7083],[5350,7204],[5380,7242],[5387,7249],[5409,7252],[5420,7264],[5447,7274],[5479,7272],[5527,7324],[5577,7373],[5607,7421],[5605,7480]]]}},{"type":"Feature","id":"IS","properties":{"hc-group":"admin0","hc-middle-x":0.64,"hc-middle-y":0.50,"hc-key":"is","hc-a2":"IS","name":"Iceland","labelrank":"3","country-abbrev":"Iceland","subregion":"Northern Europe","region-wb":"Europe & Central Asia","iso-a3":"ISL","iso-a2":"IS","woe-id":"23424845","continent":"Europe"},"geometry":{"type":"Polygon","coordinates":[[[3331,9257],[3364,9280],[3384,9275],[3374,9288],[3389,9289],[3422,9273],[3412,9262],[3430,9252],[3450,9266],[3456,9278],[3467,9266],[3476,9276],[3505,9279],[3525,9273],[3537,9281],[3555,9280],[3565,9291],[3586,9278],[3605,9275],[3600,9264],[3633,9257],[3634,9246],[3604,9221],[3580,9217],[3545,9204],[3512,9198],[3482,9188],[3444,9193],[3434,9199],[3416,9204],[3374,9202],[3396,9210],[3404,9221],[3386,9234],[3353,9237],[3388,9243],[3401,9254],[3383,9258],[3331,9257]]]}},{"type":"Feature","id":"LK","properties":{"hc-group":"admin0","hc-middle-x":0.57,"hc-middle-y":0.82,"hc-key":"lk","hc-a2":"LK","name":"Sri Lanka","labelrank":"3","country-abbrev":"Sri L.","subregion":"Southern Asia","region-wb":"South Asia","iso-a3":"LKA","iso-a2":"LK","woe-id":"23424778","continent":"Asia"},"geometry":{"type":"Polygon","coordinates":[[[6617,7376],[6626,7432],[6646,7418],[6667,7390],[6683,7360],[6687,7340],[6680,7323],[6645,7305],[6629,7312],[6621,7334],[6614,7377],[6617,7376]]]}},{"type":"Feature","id":"BW","properties":{"hc-group":"admin0","hc-middle-x":0.44,"hc-middle-y":0.44,"hc-key":"bw","hc-a2":"BW","name":"Botswana","labelrank":"4","country-abbrev":"Bwa.","subregion":"Southern Africa","region-wb":"Sub-Saharan Africa","iso-a3":"BWA","iso-a2":"BW","woe-id":"23424755","continent":"Africa"},"geometry":{"type":"Polygon","coordinates":[[[4650,6301],[4653,6391],[4685,6392],[4688,6511],[4764,6522],[4772,6506],[4794,6521],[4828,6529],[4835,6509],[4848,6492],[4854,6473],[4888,6453],[4890,6440],[4904,6440],[4902,6421],[4913,6405],[4946,6396],[4955,6385],[4917,6369],[4902,6351],[4878,6337],[4871,6317],[4857,6304],[4839,6301],[4829,6272],[4804,6265],[4776,6272],[4761,6283],[4747,6283],[4737,6260],[4702,6231],[4671,6230],[4669,6246],[4676,6255],[4662,6291],[4650,6301]]]}}]};