Skip to content

Instantly share code, notes, and snippets.

@bmershon
Last active October 24, 2016 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmershon/f84b7b31bc2ac92f2e30 to your computer and use it in GitHub Desktop.
Save bmershon/f84b7b31bc2ac92f2e30 to your computer and use it in GitHub Desktop.
Context Sensitive Label Visibility

This was developed at the Washington Post as a prototype for an illustration about the devastating effects of U.S. nuclear testing carried out around the Marshall Islands. The purpose of this prototype was to demonstrate a means for showing geographic information what would otherise require many "small multiples" in a more dense, interactive, and perhaps intuitive way.

The use of context-senstive label placement that attempts to avoid cluttering the view with unecessary details was one of the most valuable design exercises involved in creating this graphic prototype.

SVG rendering is not performant enough for smooth mouse interaction of the 3D globe. The author's 2011 Mac Book Air, for example, manages a mere 11 frames per second as it performs the main update loop. Performance could be improved with more thoughtful managment of D3 4.0 selections as well as canvas rendering using the new D3 4.0 semantics for drawing paths.

N.B. Hex binning was performed using longitude and latitude: this produces a distortion in the binning of tests. See annulus sampling.

"use strict";
//d3.chart.min.js
(function(window){"use strict";var d3=window.d3;var hasOwnProp=Object.hasOwnProperty;var d3cAssert=function(test,message){if(test){return}throw new Error("[d3.chart] "+message)};d3cAssert(d3,"d3.js is required");d3cAssert(typeof d3.version==="string"&&d3.version.match(/^3/),"d3.js version 3 is required");"use strict";var lifecycleRe=/^(enter|update|merge|exit)(:transition)?$/;var Layer=function(base){d3cAssert(base,"Layers must be initialized with a base.");this._base=base;this._handlers={}};Layer.prototype.dataBind=function(){d3cAssert(false,"Layers must specify a `dataBind` method.")};Layer.prototype.insert=function(){d3cAssert(false,"Layers must specify an `insert` method.")};Layer.prototype.on=function(eventName,handler,options){options=options||{};d3cAssert(lifecycleRe.test(eventName),"Unrecognized lifecycle event name specified to `Layer#on`: '"+eventName+"'.");if(!(eventName in this._handlers)){this._handlers[eventName]=[]}this._handlers[eventName].push({callback:handler,chart:options.chart||null});return this._base};Layer.prototype.off=function(eventName,handler){var handlers=this._handlers[eventName];var idx;d3cAssert(lifecycleRe.test(eventName),"Unrecognized lifecycle event name specified to `Layer#off`: '"+eventName+"'.");if(!handlers){return this._base}if(arguments.length===1){handlers.length=0;return this._base}for(idx=handlers.length-1;idx>-1;--idx){if(handlers[idx].callback===handler){handlers.splice(idx,1)}}return this._base};Layer.prototype.draw=function(data){var bound,entering,events,selection,handlers,eventName,idx,len;bound=this.dataBind.call(this._base,data);d3cAssert(bound&&bound.call===d3.selection.prototype.call,"Invalid selection defined by `Layer#dataBind` method.");d3cAssert(bound.enter,"Layer selection not properly bound.");entering=bound.enter();entering._chart=this._base._chart;events=[{name:"update",selection:bound},{name:"enter",selection:this.insert.bind(entering)},{name:"merge",selection:bound},{name:"exit",selection:bound.exit.bind(bound)}];for(var i=0,l=events.length;i<l;++i){eventName=events[i].name;selection=events[i].selection;if(typeof selection==="function"){selection=selection()}if(selection.empty()){continue}d3cAssert(selection&&selection.call===d3.selection.prototype.call,"Invalid selection defined for '"+eventName+"' lifecycle event.");handlers=this._handlers[eventName];if(handlers){for(idx=0,len=handlers.length;idx<len;++idx){selection._chart=handlers[idx].chart||this._base._chart;selection.call(handlers[idx].callback)}}handlers=this._handlers[eventName+":transition"];if(handlers&&handlers.length){selection=selection.transition();for(idx=0,len=handlers.length;idx<len;++idx){selection._chart=handlers[idx].chart||this._base._chart;selection.call(handlers[idx].callback)}}}};"use strict";d3.selection.prototype.layer=function(options){var layer=new Layer(this);var eventName;layer.dataBind=options.dataBind;layer.insert=options.insert;if("events"in options){for(eventName in options.events){layer.on(eventName,options.events[eventName])}}this.on=function(){return layer.on.apply(layer,arguments)};this.off=function(){return layer.off.apply(layer,arguments)};this.draw=function(){return layer.draw.apply(layer,arguments)};return this};"use strict";function extend(object){var argsIndex,argsLength,iteratee,key;if(!object){return object}argsLength=arguments.length;for(argsIndex=1;argsIndex<argsLength;argsIndex++){iteratee=arguments[argsIndex];if(iteratee){for(key in iteratee){object[key]=iteratee[key]}}}return object}var initCascade=function(instance,args){var ctor=this.constructor;var sup=ctor.__super__;if(sup){initCascade.call(sup,instance,args)}if(hasOwnProp.call(ctor.prototype,"initialize")){this.initialize.apply(instance,args)}};var transformCascade=function(instance,data){var ctor=this.constructor;var sup=ctor.__super__;if(this===instance&&hasOwnProp.call(this,"transform")){data=this.transform(data)}if(hasOwnProp.call(ctor.prototype,"transform")){data=ctor.prototype.transform.call(instance,data)}if(sup){data=transformCascade.call(sup,instance,data)}return data};var Chart=function(selection,chartOptions){this.base=selection;this._layers={};this._attached={};this._events={};if(chartOptions&&chartOptions.transform){this.transform=chartOptions.transform}initCascade.call(this,this,[chartOptions])};Chart.prototype.initialize=function(){};Chart.prototype.unlayer=function(name){var layer=this.layer(name);delete this._layers[name];delete layer._chart;return layer};Chart.prototype.layer=function(name,selection,options){var layer;if(arguments.length===1){return this._layers[name]}if(arguments.length===2){if(typeof selection.draw==="function"){selection._chart=this;this._layers[name]=selection;return this._layers[name]}else{d3cAssert(false,"When reattaching a layer, the second argument "+"must be a d3.chart layer")}}layer=selection.layer(options);this._layers[name]=layer;selection._chart=this;return layer};Chart.prototype.attach=function(attachmentName,chart){if(arguments.length===1){return this._attached[attachmentName]}this._attached[attachmentName]=chart;return chart};Chart.prototype.draw=function(data){var layerName,attachmentName,attachmentData;data=transformCascade.call(this,this,data);for(layerName in this._layers){this._layers[layerName].draw(data)}for(attachmentName in this._attached){if(this.demux){attachmentData=this.demux(attachmentName,data)}else{attachmentData=data}this._attached[attachmentName].draw(attachmentData)}return this};Chart.prototype.on=function(name,callback,context){var events=this._events[name]||(this._events[name]=[]);events.push({callback:callback,context:context||this,_chart:this});return this};Chart.prototype.once=function(name,callback,context){var self=this;var once=function(){self.off(name,once);callback.apply(this,arguments)};return this.on(name,once,context)};Chart.prototype.off=function(name,callback,context){var names,n,events,event,i,j;if(arguments.length===0){for(name in this._events){this._events[name].length=0}return this}if(arguments.length===1){events=this._events[name];if(events){events.length=0}return this}names=name?[name]:Object.keys(this._events);for(i=0;i<names.length;i++){n=names[i];events=this._events[n];j=events.length;while(j--){event=events[j];if(callback&&callback===event.callback||context&&context===event.context){events.splice(j,1)}}}return this};Chart.prototype.trigger=function(name){var args=Array.prototype.slice.call(arguments,1);var events=this._events[name];var i,ev;if(events!==undefined){for(i=0;i<events.length;i++){ev=events[i];ev.callback.apply(ev.context,args)}}return this};Chart.extend=function(name,protoProps,staticProps){var parent=this;var child;if(protoProps&&hasOwnProp.call(protoProps,"constructor")){child=protoProps.constructor}else{child=function(){return parent.apply(this,arguments)}}extend(child,parent,staticProps);var Surrogate=function(){this.constructor=child};Surrogate.prototype=parent.prototype;child.prototype=new Surrogate;if(protoProps){extend(child.prototype,protoProps)}child.__super__=parent.prototype;Chart[name]=child;return child};"use strict";d3.chart=function(name){if(arguments.length===0){return Chart}else if(arguments.length===1){return Chart[name]}return Chart.extend.apply(Chart,arguments)};d3.selection.prototype.chart=function(chartName,options){if(arguments.length===0){return this._chart}var ChartCtor=Chart[chartName];d3cAssert(ChartCtor,"No chart registered with name '"+chartName+"'");return new ChartCtor(this,options)};d3.selection.enter.prototype.chart=function(){return this._chart};d3.transition.prototype.chart=d3.selection.enter.prototype.chart})(this);
//atlas.min.js
(function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?factory():typeof define==="function"&&define.amd?define(factory):factory()})(this,function(){"use strict";var configuration={};function layer_exit(){var chart=this.chart();return this.remove()}function layer_merge(){var chart=this.chart();if(chart._projection){chart._projection.scale(chart._scale).rotate(chart._rotation).precision(chart._precision).translate(chart._translate)}chart._path.projection(chart._projection).pointRadius(chart._pointRadius);return this.attr("d",chart._path)}function chart_initialize(options){var depth=0;var chart=this;chart.options=options||{};chart._w=chart.base.attr("width")||960;chart._h=chart.base.attr("height")||500;chart.base=chart.base.append("g").attr("class","base");chart._projection=d3.geo.orthographic().clipAngle(90);chart._path=d3.geo.path();chart._graticule=null;chart._sphere=null;chart._precision=Math.sqrt(2);chart._scale=1;chart._translate=[0,0];chart._rotation=[0,0,0];var layerSphere=chart.base.append("g").attr("class","sphere").append("path");var layerGraticule=chart.base.append("g").attr("class","graticule").append("path");chart.options.layers.forEach(function(layer){var layerBase=chart.base.append("g").attr("class","layer-base-"+layer.object+"-"+depth);var layerConfig={dataBind:layer.databind||function(data){var chart=this.chart();var toBind=Array.isArray(data[layer.object])?data[layer.object]:[data[layer.object]];toBind=layer.filter?toBind.filter(layer.filter):toBind;return this.selectAll("."+layer.object).data(toBind)},insert:layer.insert||function(){var chart=this.chart();var selection=this.append("path").attr("class",layer.class||"").classed(layer.object,true).attr("id",layer.id||function(d,i){return i});if(layer.interactions){for(var e in layer.interactions){if(layer.interactions.hasOwnProperty(e)){selection.on(e,layer.interactions[e])}}}return selection},events:layer.events||{merge:layer_merge,exit:layer_exit}};chart.layer("layer-"+layer.object+"-"+depth,layerBase,layerConfig);depth++});chart.options.labels.forEach(function(layer){var labelBase=chart.base.append("g").attr("class","layer-labels-"+layer.object+"-"+depth);var labelConfig={dataBind:function(data){var chart=this.chart();var toBind=Array.isArray(data[layer.object])?data[layer.object]:[data[layer.object]];toBind=layer.filter?toBind.filter(layer.filter):toBind;toBind=toBind.filter(function(d){var c=chart._path.centroid(d);return!(isNaN(c[0])||isNaN(c[1]))});return this.selectAll("."+"label-"+layer.object).data(toBind)},insert:function(){var chart=this.chart();var selection=this.append("text").attr("class",layer.class||"").classed("label-"+layer.object,true);return selection},events:layer.events||{update:function(){this.attr("transform",function(d){return"translate("+chart._path.centroid(d)+")"}).attr("id",layer.id||"").text(layer.text);return this},exit:function(){this.remove();return this}}};chart.layer("labels-"+layer.object+"-"+depth,labelBase,labelConfig);depth++});chart.on("change:projection",function(){if(this.data){if(chart._projection){chart._projection.scale(chart._scale).rotate(chart._rotation).precision(chart._precision).translate(chart._translate);layerGraticule.datum(chart._graticule).attr("d",chart._path).attr("class","graticule");layerSphere.datum(chart._sphere).attr("d",chart._path).attr("class","sphere")}chart._path.projection(chart._projection).pointRadius(chart._pointRadius);this.draw(this.data)}})}configuration.initialize=chart_initialize;function chart_transform(data){var chart=this;if(!(data.type=="Topology"))return data;var t={};this.options.layers.forEach(function(layer){if(!data.objects.hasOwnProperty(layer.object)){return[]}if(data.objects[layer.object].type=="GeometryCollection"){t[layer.object]=topojson.feature(data,data.objects[layer.object]).features}if(data.objects[layer.object].type=="MultiPolygon"){t[layer.object]=topojson.feature(data,data.objects[layer.object])}});this.topology=data;this.data=t;chart.trigger("change:projection");return t}configuration.transform=chart_transform;function center(_){if(arguments.length===0){return this._scale}if(_)this._center=_;this.trigger("change:projection");return this}configuration.center=center;function graticule(_){if(arguments.length===0){return this._graticule}this._graticule=_;this.trigger("change:projection");return this}configuration.graticule=graticule;function height(_){if(arguments.length===0){return this._h}this._h=_;this.trigger("change:projection");return this}configuration.height=height;function path(_){if(arguments.length===0){return this._path}if(_)this._path=_;this.trigger("change:projection");return this}configuration.path=path;function projection(_){if(arguments.length===0){return this._projection}if(_||_===null)this._projection=_;this.trigger("change:projection");return this}configuration.projection=projection;function rotate(_){if(arguments.length===0){return this._rotation}if(_)this._rotation=_;this.trigger("change:projection");return this}configuration.rotate=rotate;function scale(_){if(arguments.length===0){return this._scale}if(_)this._center=_;this.trigger("change:projection");return this}configuration.scale=scale;function sphere(_){if(arguments.length===0){return this._sphere}this._sphere=_;this.trigger("change:projection");return this}configuration.sphere=sphere;function translate(_){if(arguments.length===0){return this._translate}if(_)this._translate=_;this.trigger("change:projection");return this}configuration.translate=translate;function precision(_){if(arguments.length===0){return this._precision}if(_)this._precision=_;this.trigger("change:projection");return this}configuration.precision=precision;function pointRadius(_){if(arguments.length===0){return this._pointRadius}if(_)this._pointRadius=_;this.trigger("change:projection");return this}configuration.pointRadius=pointRadius;function width(_){if(arguments.length===0){return this._w}this._w=_;this.trigger("change:projection");return this}configuration.width=width;function zoomToLayer(_,_filter){if(arguments.length===0){return this._projection}var f=typeof _filter==="undefined"?function(d){return true}:_filter;var chart=this;if(this.data){var layerObject=_;var collection={type:"FeatureCollection",features:this.data[layerObject].filter(f)};var b=collection.features.length==0?[[-1,-1],[1,1]]:chart._path.bounds(collection),s=.9/Math.max((b[1][0]-b[0][0])/chart._w,(b[1][1]-b[0][1])/chart._h),t=[(chart._w-s*(b[1][0]+b[0][0]))/2,(chart._h-s*(b[1][1]+b[0][1]))/2];chart._scale=s;chart._translate=t}chart.trigger("change:projection");return this}configuration.zoomToLayer=zoomToLayer;function rotateToLayer(_,_filter){if(arguments.length===0){return this._projection}var f=typeof _filter==="undefined"?function(d){return true}:_filter;var chart=this;if(this.data){var layerObject=_;var collection={type:"FeatureCollection",features:this.data[layerObject]};var filteredCollection={type:"FeatureCollection",features:this.data[layerObject].filter(f)};var b=[[-1,-1],[1,1]],c=d3.geo.centroid(filteredCollection),s=.9/Math.max((b[1][0]-b[0][0])/chart._w,(b[1][1]-b[0][1])/chart._h),t=[(chart._w-s*(b[1][0]+b[0][0]))/2,(chart._h-s*(b[1][1]+b[0][1]))/2];chart._scale=s;chart._translate=t;c=[-c[0],-c[1]];chart._rotation=c}chart.trigger("change:projection");return this}configuration.rotateToLayer=rotateToLayer;d3.chart("atlas",configuration)});
d3.select(self.frameElement).style("height", "960px");
(function() {
var margin = {top: 0, right: 0, bottom: 0, left: 0},
padding = {top: 0, right: 0, bottom: 0, left: 0},
outerWidth = 960,
outerHeight = 960,
innerWidth = outerWidth - margin.left - margin.right,
innerHeight = outerHeight - margin.top - margin.bottom,
width = innerWidth - padding.left - padding.right,
height = innerHeight - padding.top - padding.bottom;
var smallFontScale = d3.scale.linear().domain([height/2, 0]).range([8, 18]);
var bigFontScale = d3.scale.linear().domain([height/2, 0]).range([8, 22]);
var opacityScale = d3.scale.linear().domain([.8*height/2, 0]).range([0, 1]);
var tightOpacityScale = d3.scale.linear().domain([.6*height/2, 0]).range([0, .6]);
var hexagonOpacity = d3.scale.linear().domain([.85*height/2, 0]).range([0, .8]);
var hexagonStroke = d3.scale.sqrt().range([.5, 8]);
var z = d3.scale.linear()
.range([4, 250]);
var data;
var time0 = Date.now(),
time1;
var fps = d3.select("#fps span");
var p = [outerWidth/2, outerHeight/2], vx = -40, vy = 0;
// map screen distance to incremental change in globe rotation (per unit time)
// exponential function mimics a "gimbal-like" feel with softened control around center
var dλ = d3.scale.pow()
.domain([-outerWidth/2, outerWidth/2])
.range([15, -15])
.exponent(2.2);
var dφ = d3.scale.pow()
.domain([-outerHeight/2, outerHeight/2])
.range([-15, 15])
.exponent(2.2);
// clamp globe longitude rotation (if needed)
var λ = d3.scale.linear().clamp(true)
.domain([-180, 180])
.range([-180, 180]);
// clamp globe latitude rotation
var φ = d3.scale.linear().clamp(true)
.domain([-90, 90])
.range([-90, 90]);
var radius = d3.scale.linear()
.range([4, 25]);
var center = [165, 0];
var bins;
var hexbin = d3.hexbin()
.radius(1); //spherical coordinates, degrees
var background = d3.select("#nuclear-testing");
var svg = background.append("g")
.attr("transform", "translate(" + (margin.left + padding.left) + "," + (margin.top + padding.top) + ")")
.attr("id", "globe");
// cache a layer added to the map
var g_hexagons;
var powers = {
"FRA": "France",
"CHN": "China",
"PAK": "Pakistan",
"IND": "India",
"USA": "United States",
"RUS": "Russia",
"GBR": "UK",
"PRK": "North Korea",
"DZA": ""
}
var options = {};
options.layers = [];
options.labels = [];
// define a layer and labels
options.layers.push({
class: "land",
object: "land"
});
options.layers.push({
class: "country",
id: function(d) {return d.properties["adm0_a3"]},
object: "countries",
filter: function(d) {return powers.hasOwnProperty(d.properties["adm0_a3"])},
});
// country labels
options.labels.push({
id: function(d) {return d.properties["adm0_a3"]},
object: "countries",
class: "country",
text: function(d) {return powers[d.properties["adm0_a3"]]},
filter: function(d) {return powers.hasOwnProperty(d.properties["adm0_a3"])}
});
// placeholder layer, not tied to topojson object; used for drawing order
options.layers.push({
object: "hexagons"
});
// locators for important events
options.layers.push({
object: "events",
class: "event",
text: function(d) {return d.properties.blurb}
});
// labels for important events -- tied to "events" topology object
options.labels.push({
object: "events",
class: "blurb",
text: function(d) {return d.properties.blurb}
});
// d3.chart grafts itself onto and modifies the d3 selection.
// Sets up all of the layer groups before the data is bound
var globe = svg.chart("atlas", options)
.width(width)
.height(height)
.rotate(center)
.sphere({type: "Sphere"})
.precision(.3)
.graticule(d3.geo.graticule().step([20, 20]))
.projection(d3.geo.orthographic().clipAngle(90))
.pointRadius(function(d) {
if(d.properties) {
return (d.properties.blurb) ? 30 : 5;
}
})
/*
Define a callback to be called when "change:projection" events are triggered
within the chart.
Mutators like .rotate() and .zoomToLayer() trigger change:projection internally.
This approach allows the *this* context passed to the callback to refer to the chart instance.
This is useful when we want access things like the internal projection
and d3.geo.path instance for calculating the centroid of a feature.
*/
globe.on("change:projection", function() {
var chart = this;
var path = chart._path;
var projection = chart._projection;
if(!chart.data) return;
svg.selectAll(".label-countries")
.each(function(d) {
var c = path.centroid(d);
var dx = width/2 - c[0];
var dy = height/2 - c[1];
d.distance = Math.sqrt(dx * dx + dy * dy);
})
.style("fill-opacity", function(d) {return tightOpacityScale(d.distance)})
.style("font-size", function(d) {return smallFontScale(d.distance)})
svg.selectAll(".event")
.each(function(d) {
var c = path.centroid(d);
var dx = width/2 - c[0];
var dy = height/2 - c[1];
d.distance = Math.sqrt(dx * dx + dy * dy);
})
.style("stroke-opacity", function(d) {return opacityScale(d.distance)})
svg.selectAll(".blurb")
.attr("x", 30)
.attr("y", 60)
.each(function(d) {
var c = path.centroid(d);
var dx = width/2 - c[0];
var dy = height/2 - c[1];
d.distance = Math.sqrt(dx * dx + dy * dy);
})
.style("opacity", function(d) {return opacityScale(d.distance)})
.style("font-size", function(d) {return bigFontScale(d.distance)})
})
queue()
.defer(d3.json, "combined.json")
.await(ready);
// The default export, called when the required data (topojson file) is ready.
function ready(error, topology) {
data = topology;
var locations = topojson.feature(topology, topology.objects.nuclear).features;
locations.forEach(function(d) {
var p = d.geometry.coordinates;
d[0] = p[0], d[1] = p[1];
});
globe.draw(data)
.rotateToLayer("land");
var projection = globe.projection();
var path = globe.path();
bins = hexbin(locations).sort(function(a, b) { return b.length - a.length;});
// calculate total yield for each bin
bins.map(function(bin) {
var sum = 0;
var length = bin.length;
for(var i = 0; i < length; i++) {
sum += +(bin[i].properties.yield)
}
bin.totalyield = sum;
})
var yieldExtent = d3.extent(bins, function(bin) {
return bin.totalyield;
})
// set scale domains for nuclear test symbology
radius.domain(yieldExtent);
z.domain(yieldExtent);
hexagonStroke.domain([1, d3.max(bins, function(bin) {return bin.length})]);
// find dominate country in bin and use that for color coding
bins.map(function(d) {
var length = d.length;
for(var i = 0; i < length; i++) {
var country = d[i].properties.country;
}
d.properties = {};
d.properties.country = country;
})
g_hexagons = d3.select(".layer-base-hexagons-2");
updateHexagons(projection, path);
background.on("mousemove", function() {
p = d3.mouse(this);
vx = p[0] - outerWidth/2;
vy = p[1] - outerHeight/2;
});
d3.timer(function(){
center[0] = center[0] + dλ(vx);
center[1] = φ(center[1] + dφ(vy)); // clamped to avoid rotating past +/- 90 degrees
globe.rotate([center[0], center[1]]);
updateHexagons(projection, path);
time1 = Date.now();
fps.text(Math.round(1000 / (time1 - time0)));
time0 = time1;
})
// NORTH EAST HIGHLIGHT (from sun)
svg.append("circle")
.attr("cx", width / 2).attr("cy", height / 2)
.attr("r", globe.scale())
.attr("class","noclicks")
.style("fill", "url(#globe_highlight)");
// SOUTH WEST SHADING
svg.append("circle")
.attr("cx", width / 2).attr("cy", height / 2)
.attr("r", globe.scale())
.attr("class","noclicks")
.style("fill", "url(#globe_shading)");
}
// ENTER, UPDATE, EXIT for hexagons (bins generated from hexbining of nuclear tests)
function updateHexagons(projection, path) {
var hexagons = g_hexagons.selectAll(".hexagon")
.data(bins.filter(function(d) {return visible(d, path)}))
hexagons.enter().append("circle")
hexagons.attr("r", function(d) { return radius(d.totalyield); })
.each(function(d, i) {
var test = {
"type": "Point",
"coordinates": [d.x, d.y] // spherical coordinates
}
var centroid = path.centroid(test);
var dx = centroid[0] - width/2;
var dy = height/2 - centroid[1]; //dy is pos when centroid is above equator
// d.angle = Math.atan2(dx, dy); // angle of spike
// d.z = z(d.totalyield)
// d.tip = [d.z * Math.cos(d.angle), -1 * d.z * Math.sin(d.angle)]
d.distance = Math.sqrt(dx * dx + dy * dy);
})
.classed("hexagon", true)
.attr("id", function(d) {return d.properties.country})
.attr("transform", function(d) { return "translate(" + projection([d.x, d.y])[0] + "," + projection([d.x, d.y])[1] + ")"; })
.style("stroke-width", function(d) {return hexagonStroke(d.length)})
.style("fill-opacity", function(d) {return hexagonOpacity(d.distance)})
.style("stroke-opacity", function(d) {return hexagonOpacity(d.distance)})
hexagons.exit().remove();
}
// Run a point through the geometry pipeline to test for orthographic clipping
function visible(d, path) {
var test = {
"type": "Point",
"coordinates": [d.x, d.y] // spherical coordinates
}
var c = path.centroid(test);
return !(isNaN(c[0]) || isNaN(c[1]));
}
})();
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Afghanistan","sov_a3":"AFG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Afghanistan","adm0_a3":"AFG","geou_dif":0,"geounit":"Afghanistan","gu_a3":"AFG","su_dif":0,"subunit":"Afghanistan","su_a3":"AFG","brk_diff":0,"name":"Afghanistan","name_long":"Afghanistan","brk_a3":"AFG","brk_name":"Afghanistan","brk_group":null,"abbrev":"Afg.","postal":"AF","formal_en":"Islamic State of Afghanistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Afghanistan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":8,"mapcolor13":7,"pop_est":28400000,"gdp_md_est":22270,"pop_year":-99,"lastcensus":1979,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"AF","iso_a3":"AFG","iso_n3":"004","un_a3":"004","wb_a2":"AF","wb_a3":"AFG","woe_id":-99,"adm0_a3_is":"AFG","adm0_a3_us":"AFG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[0,1,2,3,4,5]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Angola","sov_a3":"AGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Angola","adm0_a3":"AGO","geou_dif":0,"geounit":"Angola","gu_a3":"AGO","su_dif":0,"subunit":"Angola","su_a3":"AGO","brk_diff":0,"name":"Angola","name_long":"Angola","brk_a3":"AGO","brk_name":"Angola","brk_group":null,"abbrev":"Ang.","postal":"AO","formal_en":"People's Republic of Angola","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Angola","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":6,"mapcolor13":1,"pop_est":12799293,"gdp_md_est":110300,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AO","iso_a3":"AGO","iso_n3":"024","un_a3":"024","wb_a2":"AO","wb_a3":"AGO","woe_id":-99,"adm0_a3_is":"AGO","adm0_a3_us":"AGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[6,7,8,9]],[[10,11,12]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Albania","sov_a3":"ALB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Albania","adm0_a3":"ALB","geou_dif":0,"geounit":"Albania","gu_a3":"ALB","su_dif":0,"subunit":"Albania","su_a3":"ALB","brk_diff":0,"name":"Albania","name_long":"Albania","brk_a3":"ALB","brk_name":"Albania","brk_group":null,"abbrev":"Alb.","postal":"AL","formal_en":"Republic of Albania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Albania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3639453,"gdp_md_est":21810,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AL","iso_a3":"ALB","iso_n3":"008","un_a3":"008","wb_a2":"AL","wb_a3":"ALB","woe_id":-99,"adm0_a3_is":"ALB","adm0_a3_us":"ALB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[13,14,15,16,17]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"United Arab Emirates","sov_a3":"ARE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Arab Emirates","adm0_a3":"ARE","geou_dif":0,"geounit":"United Arab Emirates","gu_a3":"ARE","su_dif":0,"subunit":"United Arab Emirates","su_a3":"ARE","brk_diff":0,"name":"United Arab Emirates","name_long":"United Arab Emirates","brk_a3":"ARE","brk_name":"United Arab Emirates","brk_group":null,"abbrev":"U.A.E.","postal":"AE","formal_en":"United Arab Emirates","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Arab Emirates","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":3,"pop_est":4798491,"gdp_md_est":184300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AE","iso_a3":"ARE","iso_n3":"784","un_a3":"784","wb_a2":"AE","wb_a3":"ARE","woe_id":-99,"adm0_a3_is":"ARE","adm0_a3_us":"ARE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":20,"long_len":20,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[18,19,20,21,22]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Argentina","sov_a3":"ARG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Argentina","adm0_a3":"ARG","geou_dif":0,"geounit":"Argentina","gu_a3":"ARG","su_dif":0,"subunit":"Argentina","su_a3":"ARG","brk_diff":0,"name":"Argentina","name_long":"Argentina","brk_a3":"ARG","brk_name":"Argentina","brk_group":null,"abbrev":"Arg.","postal":"AR","formal_en":"Argentine Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Argentina","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":13,"pop_est":40913584,"gdp_md_est":573900,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AR","iso_a3":"ARG","iso_n3":"032","un_a3":"032","wb_a2":"AR","wb_a3":"ARG","woe_id":-99,"adm0_a3_is":"ARG","adm0_a3_us":"ARG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[23,24]],[[25,26,27,28,29,30]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Armenia","sov_a3":"ARM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Armenia","adm0_a3":"ARM","geou_dif":0,"geounit":"Armenia","gu_a3":"ARM","su_dif":0,"subunit":"Armenia","su_a3":"ARM","brk_diff":0,"name":"Armenia","name_long":"Armenia","brk_a3":"ARM","brk_name":"Armenia","brk_group":null,"abbrev":"Arm.","postal":"ARM","formal_en":"Republic of Armenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Armenia","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":10,"pop_est":2967004,"gdp_md_est":18770,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AM","iso_a3":"ARM","iso_n3":"051","un_a3":"051","wb_a2":"AM","wb_a3":"ARM","woe_id":-99,"adm0_a3_is":"ARM","adm0_a3_us":"ARM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[31,32,33,34,35]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Antarctica","sov_a3":"ATA","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Antarctica","adm0_a3":"ATA","geou_dif":0,"geounit":"Antarctica","gu_a3":"ATA","su_dif":0,"subunit":"Antarctica","su_a3":"ATA","brk_diff":0,"name":"Antarctica","name_long":"Antarctica","brk_a3":"ATA","brk_name":"Antarctica","brk_group":null,"abbrev":"Ant.","postal":"AQ","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Multiple claims held in abeyance","name_sort":"Antarctica","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":-99,"pop_est":3802,"gdp_md_est":760.4,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"AQ","iso_a3":"ATA","iso_n3":"010","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATA","adm0_a3_us":"ATA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Antarctica","region_un":"Antarctica","subregion":"Antarctica","region_wb":"Antarctica","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43,44,45]]]},{"type":"Polygon","properties":{"scalerank":3,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"French Southern and Antarctic Lands","adm0_a3":"ATF","geou_dif":0,"geounit":"French Southern and Antarctic Lands","gu_a3":"ATF","su_dif":0,"subunit":"French Southern and Antarctic Lands","su_a3":"ATF","brk_diff":0,"name":"Fr. S. Antarctic Lands","name_long":"French Southern and Antarctic Lands","brk_a3":"ATF","brk_name":"Fr. S. and Antarctic Lands","brk_group":null,"abbrev":"Fr. S.A.L.","postal":"TF","formal_en":"Territory of the French Southern and Antarctic Lands","formal_fr":null,"note_adm0":"Fr.","note_brk":null,"name_sort":"French Southern and Antarctic Lands","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":140,"gdp_md_est":16,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TF","iso_a3":"ATF","iso_n3":"260","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"ATF","adm0_a3_us":"ATF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Seven seas (open ocean)","region_un":"Seven seas (open ocean)","subregion":"Seven seas (open ocean)","region_wb":"Sub-Saharan Africa","name_len":22,"long_len":35,"abbrev_len":10,"tiny":2,"homepart":-99},"arcs":[[46]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Australia","sov_a3":"AU1","adm0_dif":1,"level":2,"type":"Country","admin":"Australia","adm0_a3":"AUS","geou_dif":0,"geounit":"Australia","gu_a3":"AUS","su_dif":0,"subunit":"Australia","su_a3":"AUS","brk_diff":0,"name":"Australia","name_long":"Australia","brk_a3":"AUS","brk_name":"Australia","brk_group":null,"abbrev":"Auz.","postal":"AU","formal_en":"Commonwealth of Australia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Australia","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":7,"pop_est":21262641,"gdp_md_est":800200,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AU","iso_a3":"AUS","iso_n3":"036","un_a3":"036","wb_a2":"AU","wb_a3":"AUS","woe_id":-99,"adm0_a3_is":"AUS","adm0_a3_us":"AUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[47]],[[48]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Austria","sov_a3":"AUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Austria","adm0_a3":"AUT","geou_dif":0,"geounit":"Austria","gu_a3":"AUT","su_dif":0,"subunit":"Austria","su_a3":"AUT","brk_diff":0,"name":"Austria","name_long":"Austria","brk_a3":"AUT","brk_name":"Austria","brk_group":null,"abbrev":"Aust.","postal":"A","formal_en":"Republic of Austria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Austria","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":4,"pop_est":8210281,"gdp_md_est":329500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"AT","iso_a3":"AUT","iso_n3":"040","un_a3":"040","wb_a2":"AT","wb_a3":"AUT","woe_id":-99,"adm0_a3_is":"AUT","adm0_a3_us":"AUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[49,50,51,52,53,54,55]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Azerbaijan","sov_a3":"AZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Azerbaijan","adm0_a3":"AZE","geou_dif":0,"geounit":"Azerbaijan","gu_a3":"AZE","su_dif":0,"subunit":"Azerbaijan","su_a3":"AZE","brk_diff":0,"name":"Azerbaijan","name_long":"Azerbaijan","brk_a3":"AZE","brk_name":"Azerbaijan","brk_group":null,"abbrev":"Aze.","postal":"AZ","formal_en":"Republic of Azerbaijan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Azerbaijan","name_alt":null,"mapcolor7":1,"mapcolor8":6,"mapcolor9":5,"mapcolor13":8,"pop_est":8238672,"gdp_md_est":77610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"AZ","iso_a3":"AZE","iso_n3":"031","un_a3":"031","wb_a2":"AZ","wb_a3":"AZE","woe_id":-99,"adm0_a3_is":"AZE","adm0_a3_us":"AZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[56,-35]],[[57,58,-33,59,60]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Burundi","sov_a3":"BDI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burundi","adm0_a3":"BDI","geou_dif":0,"geounit":"Burundi","gu_a3":"BDI","su_dif":0,"subunit":"Burundi","su_a3":"BDI","brk_diff":0,"name":"Burundi","name_long":"Burundi","brk_a3":"BDI","brk_name":"Burundi","brk_group":null,"abbrev":"Bur.","postal":"BI","formal_en":"Republic of Burundi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burundi","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":8988091,"gdp_md_est":3102,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BI","iso_a3":"BDI","iso_n3":"108","un_a3":"108","wb_a2":"BI","wb_a3":"BDI","woe_id":-99,"adm0_a3_is":"BDI","adm0_a3_us":"BDI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[61,62,63]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Belgium","sov_a3":"BEL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belgium","adm0_a3":"BEL","geou_dif":0,"geounit":"Belgium","gu_a3":"BEL","su_dif":0,"subunit":"Belgium","su_a3":"BEL","brk_diff":0,"name":"Belgium","name_long":"Belgium","brk_a3":"BEL","brk_name":"Belgium","brk_group":null,"abbrev":"Belg.","postal":"B","formal_en":"Kingdom of Belgium","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belgium","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":8,"pop_est":10414336,"gdp_md_est":389300,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"BE","iso_a3":"BEL","iso_n3":"056","un_a3":"056","wb_a2":"BE","wb_a3":"BEL","woe_id":-99,"adm0_a3_is":"BEL","adm0_a3_us":"BEL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[64,65,66,67,68]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Benin","sov_a3":"BEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Benin","adm0_a3":"BEN","geou_dif":0,"geounit":"Benin","gu_a3":"BEN","su_dif":0,"subunit":"Benin","su_a3":"BEN","brk_diff":0,"name":"Benin","name_long":"Benin","brk_a3":"BEN","brk_name":"Benin","brk_group":null,"abbrev":"Benin","postal":"BJ","formal_en":"Republic of Benin","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Benin","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":12,"pop_est":8791832,"gdp_md_est":12830,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BJ","iso_a3":"BEN","iso_n3":"204","un_a3":"204","wb_a2":"BJ","wb_a3":"BEN","woe_id":-99,"adm0_a3_is":"BEN","adm0_a3_us":"BEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[69,70,71,72,73]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Burkina Faso","sov_a3":"BFA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Burkina Faso","adm0_a3":"BFA","geou_dif":0,"geounit":"Burkina Faso","gu_a3":"BFA","su_dif":0,"subunit":"Burkina Faso","su_a3":"BFA","brk_diff":0,"name":"Burkina Faso","name_long":"Burkina Faso","brk_a3":"BFA","brk_name":"Burkina Faso","brk_group":null,"abbrev":"B.F.","postal":"BF","formal_en":"Burkina Faso","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Burkina Faso","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":15746232,"gdp_md_est":17820,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BF","iso_a3":"BFA","iso_n3":"854","un_a3":"854","wb_a2":"BF","wb_a3":"BFA","woe_id":-99,"adm0_a3_is":"BFA","adm0_a3_us":"BFA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[74,75,76,-72,77,78]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bangladesh","sov_a3":"BGD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bangladesh","adm0_a3":"BGD","geou_dif":0,"geounit":"Bangladesh","gu_a3":"BGD","su_dif":0,"subunit":"Bangladesh","su_a3":"BGD","brk_diff":0,"name":"Bangladesh","name_long":"Bangladesh","brk_a3":"BGD","brk_name":"Bangladesh","brk_group":null,"abbrev":"Bang.","postal":"BD","formal_en":"People's Republic of Bangladesh","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bangladesh","name_alt":null,"mapcolor7":3,"mapcolor8":4,"mapcolor9":7,"mapcolor13":7,"pop_est":156050883,"gdp_md_est":224000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"BD","iso_a3":"BGD","iso_n3":"050","un_a3":"050","wb_a2":"BD","wb_a3":"BGD","woe_id":-99,"adm0_a3_is":"BGD","adm0_a3_us":"BGD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[79,80,81]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Bulgaria","sov_a3":"BGR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bulgaria","adm0_a3":"BGR","geou_dif":0,"geounit":"Bulgaria","gu_a3":"BGR","su_dif":0,"subunit":"Bulgaria","su_a3":"BGR","brk_diff":0,"name":"Bulgaria","name_long":"Bulgaria","brk_a3":"BGR","brk_name":"Bulgaria","brk_group":null,"abbrev":"Bulg.","postal":"BG","formal_en":"Republic of Bulgaria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bulgaria","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":8,"pop_est":7204687,"gdp_md_est":93750,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BG","iso_a3":"BGR","iso_n3":"100","un_a3":"100","wb_a2":"BG","wb_a3":"BGR","woe_id":-99,"adm0_a3_is":"BGR","adm0_a3_us":"BGR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[82,83,84,85,86,87]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"The Bahamas","sov_a3":"BHS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"The Bahamas","adm0_a3":"BHS","geou_dif":0,"geounit":"The Bahamas","gu_a3":"BHS","su_dif":0,"subunit":"The Bahamas","su_a3":"BHS","brk_diff":0,"name":"Bahamas","name_long":"Bahamas","brk_a3":"BHS","brk_name":"Bahamas","brk_group":null,"abbrev":"Bhs.","postal":"BS","formal_en":"Commonwealth of the Bahamas","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bahamas, The","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":5,"pop_est":309156,"gdp_md_est":9093,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BS","iso_a3":"BHS","iso_n3":"044","un_a3":"044","wb_a2":"BS","wb_a3":"BHS","woe_id":-99,"adm0_a3_is":"BHS","adm0_a3_us":"BHS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[88]],[[89]],[[90]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bosnia and Herzegovina","sov_a3":"BIH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bosnia and Herzegovina","adm0_a3":"BIH","geou_dif":0,"geounit":"Bosnia and Herzegovina","gu_a3":"BIH","su_dif":0,"subunit":"Bosnia and Herzegovina","su_a3":"BIH","brk_diff":0,"name":"Bosnia and Herz.","name_long":"Bosnia and Herzegovina","brk_a3":"BIH","brk_name":"Bosnia and Herz.","brk_group":null,"abbrev":"B.H.","postal":"BiH","formal_en":"Bosnia and Herzegovina","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bosnia and Herzegovina","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":2,"pop_est":4613414,"gdp_md_est":29700,"pop_year":-99,"lastcensus":1991,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BA","iso_a3":"BIH","iso_n3":"070","un_a3":"070","wb_a2":"BA","wb_a3":"BIH","woe_id":-99,"adm0_a3_is":"BIH","adm0_a3_us":"BIH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":16,"long_len":22,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[91,92,93]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Belarus","sov_a3":"BLR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belarus","adm0_a3":"BLR","geou_dif":0,"geounit":"Belarus","gu_a3":"BLR","su_dif":0,"subunit":"Belarus","su_a3":"BLR","brk_diff":0,"name":"Belarus","name_long":"Belarus","brk_a3":"BLR","brk_name":"Belarus","brk_group":null,"abbrev":"Bela.","postal":"BY","formal_en":"Republic of Belarus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belarus","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":5,"mapcolor13":11,"pop_est":9648533,"gdp_md_est":114100,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BY","iso_a3":"BLR","iso_n3":"112","un_a3":"112","wb_a2":"BY","wb_a3":"BLR","woe_id":-99,"adm0_a3_is":"BLR","adm0_a3_us":"BLR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[94,95,96,97,98]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Belize","sov_a3":"BLZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Belize","adm0_a3":"BLZ","geou_dif":0,"geounit":"Belize","gu_a3":"BLZ","su_dif":0,"subunit":"Belize","su_a3":"BLZ","brk_diff":0,"name":"Belize","name_long":"Belize","brk_a3":"BLZ","brk_name":"Belize","brk_group":null,"abbrev":"Belize","postal":"BZ","formal_en":"Belize","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Belize","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":5,"mapcolor13":7,"pop_est":307899,"gdp_md_est":2536,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BZ","iso_a3":"BLZ","iso_n3":"084","un_a3":"084","wb_a2":"BZ","wb_a3":"BLZ","woe_id":-99,"adm0_a3_is":"BLZ","adm0_a3_us":"BLZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[99,100,101]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Bolivia","sov_a3":"BOL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bolivia","adm0_a3":"BOL","geou_dif":0,"geounit":"Bolivia","gu_a3":"BOL","su_dif":0,"subunit":"Bolivia","su_a3":"BOL","brk_diff":0,"name":"Bolivia","name_long":"Bolivia","brk_a3":"BOL","brk_name":"Bolivia","brk_group":null,"abbrev":"Bolivia","postal":"BO","formal_en":"Plurinational State of Bolivia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bolivia","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":9775246,"gdp_md_est":43270,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BO","iso_a3":"BOL","iso_n3":"068","un_a3":"068","wb_a2":"BO","wb_a3":"BOL","woe_id":-99,"adm0_a3_is":"BOL","adm0_a3_us":"BOL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[102,103,104,105,-31]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Brazil","sov_a3":"BRA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brazil","adm0_a3":"BRA","geou_dif":0,"geounit":"Brazil","gu_a3":"BRA","su_dif":0,"subunit":"Brazil","su_a3":"BRA","brk_diff":0,"name":"Brazil","name_long":"Brazil","brk_a3":"BRA","brk_name":"Brazil","brk_group":null,"abbrev":"Brazil","postal":"BR","formal_en":"Federative Republic of Brazil","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brazil","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":7,"pop_est":198739269,"gdp_md_est":1993000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BR","iso_a3":"BRA","iso_n3":"076","un_a3":"076","wb_a2":"BR","wb_a3":"BRA","woe_id":-99,"adm0_a3_is":"BRA","adm0_a3_us":"BRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[-27,106,-105,107,108,109,110,111,112,113,114]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Brunei","sov_a3":"BRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Brunei","adm0_a3":"BRN","geou_dif":0,"geounit":"Brunei","gu_a3":"BRN","su_dif":0,"subunit":"Brunei","su_a3":"BRN","brk_diff":0,"name":"Brunei","name_long":"Brunei Darussalam","brk_a3":"BRN","brk_name":"Brunei","brk_group":null,"abbrev":"Brunei","postal":"BN","formal_en":"Negara Brunei Darussalam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Brunei","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":6,"mapcolor13":12,"pop_est":388190,"gdp_md_est":20250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"BN","iso_a3":"BRN","iso_n3":"096","un_a3":"096","wb_a2":"BN","wb_a3":"BRN","woe_id":-99,"adm0_a3_is":"BRN","adm0_a3_us":"BRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":17,"abbrev_len":6,"tiny":2,"homepart":1},"arcs":[[115,116]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Bhutan","sov_a3":"BTN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Bhutan","adm0_a3":"BTN","geou_dif":0,"geounit":"Bhutan","gu_a3":"BTN","su_dif":0,"subunit":"Bhutan","su_a3":"BTN","brk_diff":0,"name":"Bhutan","name_long":"Bhutan","brk_a3":"BTN","brk_name":"Bhutan","brk_group":null,"abbrev":"Bhutan","postal":"BT","formal_en":"Kingdom of Bhutan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Bhutan","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":1,"mapcolor13":8,"pop_est":691141,"gdp_md_est":3524,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BT","iso_a3":"BTN","iso_n3":"064","un_a3":"064","wb_a2":"BT","wb_a3":"BTN","woe_id":-99,"adm0_a3_is":"BTN","adm0_a3_us":"BTN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[117,118]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Botswana","sov_a3":"BWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Botswana","adm0_a3":"BWA","geou_dif":0,"geounit":"Botswana","gu_a3":"BWA","su_dif":0,"subunit":"Botswana","su_a3":"BWA","brk_diff":0,"name":"Botswana","name_long":"Botswana","brk_a3":"BWA","brk_name":"Botswana","brk_group":null,"abbrev":"Bwa.","postal":"BW","formal_en":"Republic of Botswana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Botswana","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":7,"mapcolor13":3,"pop_est":1990876,"gdp_md_est":27060,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"BW","iso_a3":"BWA","iso_n3":"072","un_a3":"072","wb_a2":"BW","wb_a3":"BWA","woe_id":-99,"adm0_a3_is":"BWA","adm0_a3_us":"BWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[119,120,121,122]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Central African Republic","sov_a3":"CAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Central African Republic","adm0_a3":"CAF","geou_dif":0,"geounit":"Central African Republic","gu_a3":"CAF","su_dif":0,"subunit":"Central African Republic","su_a3":"CAF","brk_diff":0,"name":"Central African Rep.","name_long":"Central African Republic","brk_a3":"CAF","brk_name":"Central African Rep.","brk_group":null,"abbrev":"C.A.R.","postal":"CF","formal_en":"Central African Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Central African Republic","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":6,"mapcolor13":9,"pop_est":4511488,"gdp_md_est":3198,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CF","iso_a3":"CAF","iso_n3":"140","un_a3":"140","wb_a2":"CF","wb_a3":"CAF","woe_id":-99,"adm0_a3_is":"CAF","adm0_a3_us":"CAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":20,"long_len":24,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[123,124,125,126,127,128,129]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Canada","sov_a3":"CAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Canada","adm0_a3":"CAN","geou_dif":0,"geounit":"Canada","gu_a3":"CAN","su_dif":0,"subunit":"Canada","su_a3":"CAN","brk_diff":0,"name":"Canada","name_long":"Canada","brk_a3":"CAN","brk_name":"Canada","brk_group":null,"abbrev":"Can.","postal":"CA","formal_en":"Canada","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Canada","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":33487208,"gdp_md_est":1300000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CA","iso_a3":"CAN","iso_n3":"124","un_a3":"124","wb_a2":"CA","wb_a3":"CAN","woe_id":-99,"adm0_a3_is":"CAN","adm0_a3_us":"CAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[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]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Switzerland","sov_a3":"CHE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Switzerland","adm0_a3":"CHE","geou_dif":0,"geounit":"Switzerland","gu_a3":"CHE","su_dif":0,"subunit":"Switzerland","su_a3":"CHE","brk_diff":0,"name":"Switzerland","name_long":"Switzerland","brk_a3":"CHE","brk_name":"Switzerland","brk_group":null,"abbrev":"Switz.","postal":"CH","formal_en":"Swiss Confederation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Switzerland","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":7604467,"gdp_md_est":316700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CH","iso_a3":"CHE","iso_n3":"756","un_a3":"756","wb_a2":"CH","wb_a3":"CHE","woe_id":-99,"adm0_a3_is":"CHE","adm0_a3_us":"CHE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[-53,169,170,171]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Chile","sov_a3":"CHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chile","adm0_a3":"CHL","geou_dif":0,"geounit":"Chile","gu_a3":"CHL","su_dif":0,"subunit":"Chile","su_a3":"CHL","brk_diff":0,"name":"Chile","name_long":"Chile","brk_a3":"CHL","brk_name":"Chile","brk_group":null,"abbrev":"Chile","postal":"CL","formal_en":"Republic of Chile","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chile","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":5,"mapcolor13":9,"pop_est":16601707,"gdp_md_est":244500,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CL","iso_a3":"CHL","iso_n3":"152","un_a3":"152","wb_a2":"CL","wb_a3":"CHL","woe_id":-99,"adm0_a3_is":"CHL","adm0_a3_us":"CHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[-24,172,173,174]],[[-30,175,176,-103]]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"China","sov_a3":"CH1","adm0_dif":1,"level":2,"type":"Country","admin":"China","adm0_a3":"CHN","geou_dif":0,"geounit":"China","gu_a3":"CHN","su_dif":0,"subunit":"China","su_a3":"CHN","brk_diff":0,"name":"China","name_long":"China","brk_a3":"CHN","brk_name":"China","brk_group":null,"abbrev":"China","postal":"CN","formal_en":"People's Republic of China","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"China","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":3,"pop_est":1338612970,"gdp_md_est":7973000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CN","iso_a3":"CHN","iso_n3":"156","un_a3":"156","wb_a2":"CN","wb_a3":"CHN","woe_id":-99,"adm0_a3_is":"CHN","adm0_a3_us":"CHN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[177]],[[178,179,180,181,182,183,184,185,-119,186,187,188,189,-4,190,191,192,193,194,195]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ivory Coast","sov_a3":"CIV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ivory Coast","adm0_a3":"CIV","geou_dif":0,"geounit":"Ivory Coast","gu_a3":"CIV","su_dif":0,"subunit":"Ivory Coast","su_a3":"CIV","brk_diff":0,"name":"Côte d'Ivoire","name_long":"Côte d'Ivoire","brk_a3":"CIV","brk_name":"Côte d'Ivoire","brk_group":null,"abbrev":"I.C.","postal":"CI","formal_en":"Republic of Ivory Coast","formal_fr":"Republic of Cote D'Ivoire","note_adm0":null,"note_brk":null,"name_sort":"Côte d'Ivoire","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":3,"mapcolor13":3,"pop_est":20617068,"gdp_md_est":33850,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CI","iso_a3":"CIV","iso_n3":"384","un_a3":"384","wb_a2":"CI","wb_a3":"CIV","woe_id":-99,"adm0_a3_is":"CIV","adm0_a3_us":"CIV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[196,197,198,199,-75,200]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cameroon","sov_a3":"CMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cameroon","adm0_a3":"CMR","geou_dif":0,"geounit":"Cameroon","gu_a3":"CMR","su_dif":0,"subunit":"Cameroon","su_a3":"CMR","brk_diff":0,"name":"Cameroon","name_long":"Cameroon","brk_a3":"CMR","brk_name":"Cameroon","brk_group":null,"abbrev":"Cam.","postal":"CM","formal_en":"Republic of Cameroon","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cameroon","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":3,"pop_est":18879301,"gdp_md_est":42750,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CM","iso_a3":"CMR","iso_n3":"120","un_a3":"120","wb_a2":"CM","wb_a3":"CMR","woe_id":-99,"adm0_a3_is":"CMR","adm0_a3_us":"CMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[201,202,203,204,205,206,-130,207]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Democratic Republic of the Congo","sov_a3":"COD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Democratic Republic of the Congo","adm0_a3":"COD","geou_dif":0,"geounit":"Democratic Republic of the Congo","gu_a3":"COD","su_dif":0,"subunit":"Democratic Republic of the Congo","su_a3":"COD","brk_diff":0,"name":"Dem. Rep. Congo","name_long":"Democratic Republic of the Congo","brk_a3":"COD","brk_name":"Democratic Republic of the Congo","brk_group":null,"abbrev":"D.R.C.","postal":"DRC","formal_en":"Democratic Republic of the Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Dem. Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":7,"pop_est":68692542,"gdp_md_est":20640,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"CD","iso_a3":"COD","iso_n3":"180","un_a3":"180","wb_a2":"ZR","wb_a3":"ZAR","woe_id":-99,"adm0_a3_is":"COD","adm0_a3_us":"COD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":15,"long_len":32,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[208,209,-62,210,211,-10,212,-13,213,-128,214]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Republic of Congo","sov_a3":"COG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Congo","adm0_a3":"COG","geou_dif":0,"geounit":"Republic of Congo","gu_a3":"COG","su_dif":0,"subunit":"Republic of Congo","su_a3":"COG","brk_diff":0,"name":"Congo","name_long":"Republic of Congo","brk_a3":"COG","brk_name":"Republic of Congo","brk_group":null,"abbrev":"Rep. Congo","postal":"CG","formal_en":"Republic of Congo","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Congo, Rep.","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":10,"pop_est":4012809,"gdp_md_est":15350,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CG","iso_a3":"COG","iso_n3":"178","un_a3":"178","wb_a2":"CG","wb_a3":"COG","woe_id":-99,"adm0_a3_is":"COG","adm0_a3_us":"COG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":17,"abbrev_len":10,"tiny":-99,"homepart":1},"arcs":[[-12,215,216,-208,-129,-214]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Colombia","sov_a3":"COL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Colombia","adm0_a3":"COL","geou_dif":0,"geounit":"Colombia","gu_a3":"COL","su_dif":0,"subunit":"Colombia","su_a3":"COL","brk_diff":0,"name":"Colombia","name_long":"Colombia","brk_a3":"COL","brk_name":"Colombia","brk_group":null,"abbrev":"Col.","postal":"CO","formal_en":"Republic of Colombia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Colombia","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":3,"mapcolor13":1,"pop_est":45644023,"gdp_md_est":395400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CO","iso_a3":"COL","iso_n3":"170","un_a3":"170","wb_a2":"CO","wb_a3":"COL","woe_id":-99,"adm0_a3_is":"COL","adm0_a3_us":"COL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[217,218,219,220,221,-109,222]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Costa Rica","sov_a3":"CRI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Costa Rica","adm0_a3":"CRI","geou_dif":0,"geounit":"Costa Rica","gu_a3":"CRI","su_dif":0,"subunit":"Costa Rica","su_a3":"CRI","brk_diff":0,"name":"Costa Rica","name_long":"Costa Rica","brk_a3":"CRI","brk_name":"Costa Rica","brk_group":null,"abbrev":"C.R.","postal":"CR","formal_en":"Republic of Costa Rica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Costa Rica","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":4,"mapcolor13":2,"pop_est":4253877,"gdp_md_est":48320,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CR","iso_a3":"CRI","iso_n3":"188","un_a3":"188","wb_a2":"CR","wb_a3":"CRI","woe_id":-99,"adm0_a3_is":"CRI","adm0_a3_us":"CRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[223,224,225,226]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cuba","sov_a3":"CUB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cuba","adm0_a3":"CUB","geou_dif":0,"geounit":"Cuba","gu_a3":"CUB","su_dif":0,"subunit":"Cuba","su_a3":"CUB","brk_diff":0,"name":"Cuba","name_long":"Cuba","brk_a3":"CUB","brk_name":"Cuba","brk_group":null,"abbrev":"Cuba","postal":"CU","formal_en":"Republic of Cuba","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cuba","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":11451652,"gdp_md_est":108200,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"CU","iso_a3":"CUB","iso_n3":"192","un_a3":"192","wb_a2":"CU","wb_a3":"CUB","woe_id":-99,"adm0_a3_is":"CUB","adm0_a3_us":"CUB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[227]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Northern Cyprus","sov_a3":"CYN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Northern Cyprus","adm0_a3":"CYN","geou_dif":0,"geounit":"Northern Cyprus","gu_a3":"CYN","su_dif":0,"subunit":"Northern Cyprus","su_a3":"CYN","brk_diff":1,"name":"N. Cyprus","name_long":"Northern Cyprus","brk_a3":"B20","brk_name":"N. Cyprus","brk_group":null,"abbrev":"N. Cy.","postal":"CN","formal_en":"Turkish Republic of Northern Cyprus","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Cyprus","name_sort":"Cyprus, Northern","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":265100,"gdp_md_est":3600,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":9,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[228,229]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Cyprus","sov_a3":"CYP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cyprus","adm0_a3":"CYP","geou_dif":0,"geounit":"Cyprus","gu_a3":"CYP","su_dif":0,"subunit":"Cyprus","su_a3":"CYP","brk_diff":0,"name":"Cyprus","name_long":"Cyprus","brk_a3":"CYP","brk_name":"Cyprus","brk_group":null,"abbrev":"Cyp.","postal":"CY","formal_en":"Republic of Cyprus","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cyprus","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":3,"mapcolor13":7,"pop_est":531640,"gdp_md_est":22700,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"CY","iso_a3":"CYP","iso_n3":"196","un_a3":"196","wb_a2":"CY","wb_a3":"CYP","woe_id":-99,"adm0_a3_is":"CYP","adm0_a3_us":"CYP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[230,-230]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Czech Republic","sov_a3":"CZE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Czech Republic","adm0_a3":"CZE","geou_dif":0,"geounit":"Czech Republic","gu_a3":"CZE","su_dif":0,"subunit":"Czech Republic","su_a3":"CZE","brk_diff":0,"name":"Czech Rep.","name_long":"Czech Republic","brk_a3":"CZE","brk_name":"Czech Rep.","brk_group":null,"abbrev":"Cz. Rep.","postal":"CZ","formal_en":"Czech Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Czech Republic","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":2,"mapcolor13":6,"pop_est":10211904,"gdp_md_est":265200,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"CZ","iso_a3":"CZE","iso_n3":"203","un_a3":"203","wb_a2":"CZ","wb_a3":"CZE","woe_id":-99,"adm0_a3_is":"CZE","adm0_a3_us":"CZE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":14,"abbrev_len":8,"tiny":-99,"homepart":1},"arcs":[[-55,231,232,233]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Germany","sov_a3":"DEU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Germany","adm0_a3":"DEU","geou_dif":0,"geounit":"Germany","gu_a3":"DEU","su_dif":0,"subunit":"Germany","su_a3":"DEU","brk_diff":0,"name":"Germany","name_long":"Germany","brk_a3":"DEU","brk_name":"Germany","brk_group":null,"abbrev":"Ger.","postal":"D","formal_en":"Federal Republic of Germany","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Germany","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":5,"mapcolor13":1,"pop_est":82329758,"gdp_md_est":2918000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DE","iso_a3":"DEU","iso_n3":"276","un_a3":"276","wb_a2":"DE","wb_a3":"DEU","woe_id":-99,"adm0_a3_is":"DEU","adm0_a3_us":"DEU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[234,235,-232,-54,-172,236,237,-66,238,239,240]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Djibouti","sov_a3":"DJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Djibouti","adm0_a3":"DJI","geou_dif":0,"geounit":"Djibouti","gu_a3":"DJI","su_dif":0,"subunit":"Djibouti","su_a3":"DJI","brk_diff":0,"name":"Djibouti","name_long":"Djibouti","brk_a3":"DJI","brk_name":"Djibouti","brk_group":null,"abbrev":"Dji.","postal":"DJ","formal_en":"Republic of Djibouti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Djibouti","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":8,"pop_est":516055,"gdp_md_est":1885,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DJ","iso_a3":"DJI","iso_n3":"262","un_a3":"262","wb_a2":"DJ","wb_a3":"DJI","woe_id":-99,"adm0_a3_is":"DJI","adm0_a3_us":"DJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Middle East & North Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[241,242,243,244]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Denmark","adm0_a3":"DNK","geou_dif":0,"geounit":"Denmark","gu_a3":"DNK","su_dif":0,"subunit":"Denmark","su_a3":"DNK","brk_diff":0,"name":"Denmark","name_long":"Denmark","brk_a3":"DNK","brk_name":"Denmark","brk_group":null,"abbrev":"Den.","postal":"DK","formal_en":"Kingdom of Denmark","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Denmark","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":5500510,"gdp_md_est":203600,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"DK","iso_a3":"DNK","iso_n3":"208","un_a3":"208","wb_a2":"DK","wb_a3":"DNK","woe_id":-99,"adm0_a3_is":"DNK","adm0_a3_us":"DNK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[245]],[[-241,246]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Dominican Republic","sov_a3":"DOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Dominican Republic","adm0_a3":"DOM","geou_dif":0,"geounit":"Dominican Republic","gu_a3":"DOM","su_dif":0,"subunit":"Dominican Republic","su_a3":"DOM","brk_diff":0,"name":"Dominican Rep.","name_long":"Dominican Republic","brk_a3":"DOM","brk_name":"Dominican Rep.","brk_group":null,"abbrev":"Dom. Rep.","postal":"DO","formal_en":"Dominican Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Dominican Republic","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":5,"mapcolor13":7,"pop_est":9650054,"gdp_md_est":78000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DO","iso_a3":"DOM","iso_n3":"214","un_a3":"214","wb_a2":"DO","wb_a3":"DOM","woe_id":-99,"adm0_a3_is":"DOM","adm0_a3_us":"DOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":14,"long_len":18,"abbrev_len":9,"tiny":-99,"homepart":1},"arcs":[[247,248]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Algeria","sov_a3":"DZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Algeria","adm0_a3":"DZA","geou_dif":0,"geounit":"Algeria","gu_a3":"DZA","su_dif":0,"subunit":"Algeria","su_a3":"DZA","brk_diff":0,"name":"Algeria","name_long":"Algeria","brk_a3":"DZA","brk_name":"Algeria","brk_group":null,"abbrev":"Alg.","postal":"DZ","formal_en":"People's Democratic Republic of Algeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Algeria","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":34178188,"gdp_md_est":232900,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"DZ","iso_a3":"DZA","iso_n3":"012","un_a3":"012","wb_a2":"DZ","wb_a3":"DZA","woe_id":-99,"adm0_a3_is":"DZA","adm0_a3_us":"DZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[249,250,251,252,253,254,255,256]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ecuador","sov_a3":"ECU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ecuador","adm0_a3":"ECU","geou_dif":0,"geounit":"Ecuador","gu_a3":"ECU","su_dif":0,"subunit":"Ecuador","su_a3":"ECU","brk_diff":0,"name":"Ecuador","name_long":"Ecuador","brk_a3":"ECU","brk_name":"Ecuador","brk_group":null,"abbrev":"Ecu.","postal":"EC","formal_en":"Republic of Ecuador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ecuador","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":12,"pop_est":14573101,"gdp_md_est":107700,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EC","iso_a3":"ECU","iso_n3":"218","un_a3":"218","wb_a2":"EC","wb_a3":"ECU","woe_id":-99,"adm0_a3_is":"ECU","adm0_a3_us":"ECU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[257,-218,258]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Egypt","sov_a3":"EGY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Egypt","adm0_a3":"EGY","geou_dif":0,"geounit":"Egypt","gu_a3":"EGY","su_dif":0,"subunit":"Egypt","su_a3":"EGY","brk_diff":0,"name":"Egypt","name_long":"Egypt","brk_a3":"EGY","brk_name":"Egypt","brk_group":null,"abbrev":"Egypt","postal":"EG","formal_en":"Arab Republic of Egypt","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Egypt, Arab Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":7,"mapcolor13":2,"pop_est":83082869,"gdp_md_est":443700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"EG","iso_a3":"EGY","iso_n3":"818","un_a3":"818","wb_a2":"EG","wb_a3":"EGY","woe_id":-99,"adm0_a3_is":"EGY","adm0_a3_us":"EGY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[259,260,261,262,263]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Eritrea","sov_a3":"ERI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Eritrea","adm0_a3":"ERI","geou_dif":0,"geounit":"Eritrea","gu_a3":"ERI","su_dif":0,"subunit":"Eritrea","su_a3":"ERI","brk_diff":0,"name":"Eritrea","name_long":"Eritrea","brk_a3":"ERI","brk_name":"Eritrea","brk_group":null,"abbrev":"Erit.","postal":"ER","formal_en":"State of Eritrea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Eritrea","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":2,"mapcolor13":12,"pop_est":5647168,"gdp_md_est":3945,"pop_year":-99,"lastcensus":1984,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ER","iso_a3":"ERI","iso_n3":"232","un_a3":"232","wb_a2":"ER","wb_a3":"ERI","woe_id":-99,"adm0_a3_is":"ERI","adm0_a3_us":"ERI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[264,265,266,-245]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Spain","sov_a3":"ESP","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Spain","adm0_a3":"ESP","geou_dif":0,"geounit":"Spain","gu_a3":"ESP","su_dif":0,"subunit":"Spain","su_a3":"ESP","brk_diff":0,"name":"Spain","name_long":"Spain","brk_a3":"ESP","brk_name":"Spain","brk_group":null,"abbrev":"Sp.","postal":"E","formal_en":"Kingdom of Spain","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Spain","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":5,"mapcolor13":5,"pop_est":40525002,"gdp_md_est":1403000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"ES","iso_a3":"ESP","iso_n3":"724","un_a3":"724","wb_a2":"ES","wb_a3":"ESP","woe_id":-99,"adm0_a3_is":"ESP","adm0_a3_us":"ESP","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":3,"tiny":-99,"homepart":1},"arcs":[[267,268,269,270]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Estonia","sov_a3":"EST","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Estonia","adm0_a3":"EST","geou_dif":0,"geounit":"Estonia","gu_a3":"EST","su_dif":0,"subunit":"Estonia","su_a3":"EST","brk_diff":0,"name":"Estonia","name_long":"Estonia","brk_a3":"EST","brk_name":"Estonia","brk_group":null,"abbrev":"Est.","postal":"EST","formal_en":"Republic of Estonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Estonia","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":10,"pop_est":1299371,"gdp_md_est":27410,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"EE","iso_a3":"EST","iso_n3":"233","un_a3":"233","wb_a2":"EE","wb_a3":"EST","woe_id":-99,"adm0_a3_is":"EST","adm0_a3_us":"EST","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[271,272,273]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Ethiopia","sov_a3":"ETH","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ethiopia","adm0_a3":"ETH","geou_dif":0,"geounit":"Ethiopia","gu_a3":"ETH","su_dif":0,"subunit":"Ethiopia","su_a3":"ETH","brk_diff":0,"name":"Ethiopia","name_long":"Ethiopia","brk_a3":"ETH","brk_name":"Ethiopia","brk_group":null,"abbrev":"Eth.","postal":"ET","formal_en":"Federal Democratic Republic of Ethiopia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ethiopia","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":1,"mapcolor13":13,"pop_est":85237338,"gdp_md_est":68770,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ET","iso_a3":"ETH","iso_n3":"231","un_a3":"231","wb_a2":"ET","wb_a3":"ETH","woe_id":-99,"adm0_a3_is":"ETH","adm0_a3_us":"ETH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-244,274,275,276,277,278,279,-265]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Finland","sov_a3":"FI1","adm0_dif":1,"level":2,"type":"Country","admin":"Finland","adm0_a3":"FIN","geou_dif":0,"geounit":"Finland","gu_a3":"FIN","su_dif":0,"subunit":"Finland","su_a3":"FIN","brk_diff":0,"name":"Finland","name_long":"Finland","brk_a3":"FIN","brk_name":"Finland","brk_group":null,"abbrev":"Fin.","postal":"FIN","formal_en":"Republic of Finland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Finland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":6,"pop_est":5250275,"gdp_md_est":193500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FI","iso_a3":"FIN","iso_n3":"246","un_a3":"246","wb_a2":"FI","wb_a3":"FIN","woe_id":-99,"adm0_a3_is":"FIN","adm0_a3_us":"FIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[280,281,282,283]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Fiji","sov_a3":"FJI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Fiji","adm0_a3":"FJI","geou_dif":0,"geounit":"Fiji","gu_a3":"FJI","su_dif":0,"subunit":"Fiji","su_a3":"FJI","brk_diff":0,"name":"Fiji","name_long":"Fiji","brk_a3":"FJI","brk_name":"Fiji","brk_group":null,"abbrev":"Fiji","postal":"FJ","formal_en":"Republic of Fiji","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Fiji","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":2,"mapcolor13":2,"pop_est":944720,"gdp_md_est":3579,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"FJ","iso_a3":"FJI","iso_n3":"242","un_a3":"242","wb_a2":"FJ","wb_a3":"FJI","woe_id":-99,"adm0_a3_is":"FJI","adm0_a3_us":"FJI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[284]],[[285,286]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Falkland Islands","adm0_a3":"FLK","geou_dif":0,"geounit":"Falkland Islands","gu_a3":"FLK","su_dif":0,"subunit":"Falkland Islands","su_a3":"FLK","brk_diff":1,"name":"Falkland Is.","name_long":"Falkland Islands","brk_a3":"B12","brk_name":"Falkland Is.","brk_group":null,"abbrev":"Flk. Is.","postal":"FK","formal_en":"Falkland Islands","formal_fr":null,"note_adm0":"U.K.","note_brk":"Admin. by U.K.; Claimed by Argentina","name_sort":"Falkland Islands","name_alt":"Islas Malvinas","mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":3140,"gdp_md_est":105.1,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FK","iso_a3":"FLK","iso_n3":"238","un_a3":"238","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"FLK","adm0_a3_us":"FLK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":12,"long_len":16,"abbrev_len":8,"tiny":-99,"homepart":-99},"arcs":[[287]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Country","admin":"France","adm0_a3":"FRA","geou_dif":0,"geounit":"France","gu_a3":"FRA","su_dif":0,"subunit":"France","su_a3":"FRA","brk_diff":0,"name":"France","name_long":"France","brk_a3":"FRA","brk_name":"France","brk_group":null,"abbrev":"Fr.","postal":"F","formal_en":"French Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"France","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":64057792,"gdp_md_est":2128000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"FR","iso_a3":"FRA","iso_n3":"250","un_a3":"250","wb_a2":"FR","wb_a3":"FRA","woe_id":-99,"adm0_a3_is":"FRA","adm0_a3_us":"FRA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":3,"tiny":-99,"homepart":1},"arcs":[[[288,289,-113]],[[290]],[[291,-237,-171,292,293,-269,294,-68]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Gabon","sov_a3":"GAB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gabon","adm0_a3":"GAB","geou_dif":0,"geounit":"Gabon","gu_a3":"GAB","su_dif":0,"subunit":"Gabon","su_a3":"GAB","brk_diff":0,"name":"Gabon","name_long":"Gabon","brk_a3":"GAB","brk_name":"Gabon","brk_group":null,"abbrev":"Gabon","postal":"GA","formal_en":"Gabonese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gabon","name_alt":null,"mapcolor7":6,"mapcolor8":2,"mapcolor9":5,"mapcolor13":5,"pop_est":1514993,"gdp_md_est":21110,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GA","iso_a3":"GAB","iso_n3":"266","un_a3":"266","wb_a2":"GA","wb_a3":"GAB","woe_id":-99,"adm0_a3_is":"GAB","adm0_a3_us":"GAB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":3,"homepart":1},"arcs":[[295,296,-202,-217]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United Kingdom","sov_a3":"GB1","adm0_dif":1,"level":2,"type":"Country","admin":"United Kingdom","adm0_a3":"GBR","geou_dif":0,"geounit":"United Kingdom","gu_a3":"GBR","su_dif":0,"subunit":"United Kingdom","su_a3":"GBR","brk_diff":0,"name":"United Kingdom","name_long":"United Kingdom","brk_a3":"GBR","brk_name":"United Kingdom","brk_group":null,"abbrev":"U.K.","postal":"GB","formal_en":"United Kingdom of Great Britain and Northern Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United Kingdom","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":3,"pop_est":62262000,"gdp_md_est":1977704,"pop_year":0,"lastcensus":2011,"gdp_year":2009,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GB","iso_a3":"GBR","iso_n3":"826","un_a3":"826","wb_a2":"GB","wb_a3":"GBR","woe_id":-99,"adm0_a3_is":"GBR","adm0_a3_us":"GBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":14,"long_len":14,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[297,298]],[[299,300,301,302]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Georgia","sov_a3":"GEO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Georgia","adm0_a3":"GEO","geou_dif":0,"geounit":"Georgia","gu_a3":"GEO","su_dif":0,"subunit":"Georgia","su_a3":"GEO","brk_diff":0,"name":"Georgia","name_long":"Georgia","brk_a3":"GEO","brk_name":"Georgia","brk_group":null,"abbrev":"Geo.","postal":"GE","formal_en":"Georgia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Georgia","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":3,"mapcolor13":2,"pop_est":4615807,"gdp_md_est":21510,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GE","iso_a3":"GEO","iso_n3":"268","un_a3":"268","wb_a2":"GE","wb_a3":"GEO","woe_id":-99,"adm0_a3_is":"GEO","adm0_a3_us":"GEO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[303,304,-60,-32,305]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ghana","sov_a3":"GHA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ghana","adm0_a3":"GHA","geou_dif":0,"geounit":"Ghana","gu_a3":"GHA","su_dif":0,"subunit":"Ghana","su_a3":"GHA","brk_diff":0,"name":"Ghana","name_long":"Ghana","brk_a3":"GHA","brk_name":"Ghana","brk_group":null,"abbrev":"Ghana","postal":"GH","formal_en":"Republic of Ghana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ghana","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":23832495,"gdp_md_est":34200,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GH","iso_a3":"GHA","iso_n3":"288","un_a3":"288","wb_a2":"GH","wb_a3":"GHA","woe_id":-99,"adm0_a3_is":"GHA","adm0_a3_us":"GHA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[306,-201,-79,307]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guinea","sov_a3":"GIN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea","adm0_a3":"GIN","geou_dif":0,"geounit":"Guinea","gu_a3":"GIN","su_dif":0,"subunit":"Guinea","su_a3":"GIN","brk_diff":0,"name":"Guinea","name_long":"Guinea","brk_a3":"GIN","brk_name":"Guinea","brk_group":null,"abbrev":"Gin.","postal":"GN","formal_en":"Republic of Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":2,"pop_est":10057975,"gdp_md_est":10600,"pop_year":-99,"lastcensus":1996,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GN","iso_a3":"GIN","iso_n3":"324","un_a3":"324","wb_a2":"GN","wb_a3":"GIN","woe_id":-99,"adm0_a3_is":"GIN","adm0_a3_us":"GIN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[308,309,310,311,312,313,-199]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Gambia","sov_a3":"GMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Gambia","adm0_a3":"GMB","geou_dif":0,"geounit":"Gambia","gu_a3":"GMB","su_dif":0,"subunit":"Gambia","su_a3":"GMB","brk_diff":0,"name":"Gambia","name_long":"The Gambia","brk_a3":"GMB","brk_name":"Gambia","brk_group":null,"abbrev":"Gambia","postal":"GM","formal_en":"Republic of the Gambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Gambia, The","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":8,"pop_est":1782893,"gdp_md_est":2272,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GM","iso_a3":"GMB","iso_n3":"270","un_a3":"270","wb_a2":"GM","wb_a3":"GMB","woe_id":-99,"adm0_a3_is":"GMB","adm0_a3_us":"GMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[314,315]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Guinea Bissau","sov_a3":"GNB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guinea Bissau","adm0_a3":"GNB","geou_dif":0,"geounit":"Guinea Bissau","gu_a3":"GNB","su_dif":0,"subunit":"Guinea Bissau","su_a3":"GNB","brk_diff":0,"name":"Guinea-Bissau","name_long":"Guinea-Bissau","brk_a3":"GNB","brk_name":"Guinea-Bissau","brk_group":null,"abbrev":"GnB.","postal":"GW","formal_en":"Republic of Guinea-Bissau","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guinea-Bissau","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":4,"pop_est":1533964,"gdp_md_est":904.2,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"GW","iso_a3":"GNB","iso_n3":"624","un_a3":"624","wb_a2":"GW","wb_a3":"GNB","woe_id":-99,"adm0_a3_is":"GNB","adm0_a3_us":"GNB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":13,"long_len":13,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[316,317,-312]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Equatorial Guinea","sov_a3":"GNQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Equatorial Guinea","adm0_a3":"GNQ","geou_dif":0,"geounit":"Equatorial Guinea","gu_a3":"GNQ","su_dif":0,"subunit":"Equatorial Guinea","su_a3":"GNQ","brk_diff":0,"name":"Eq. Guinea","name_long":"Equatorial Guinea","brk_a3":"GNQ","brk_name":"Eq. Guinea","brk_group":null,"abbrev":"Eq. G.","postal":"GQ","formal_en":"Republic of Equatorial Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Equatorial Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":650702,"gdp_md_est":14060,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"7. Least developed region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GQ","iso_a3":"GNQ","iso_n3":"226","un_a3":"226","wb_a2":"GQ","wb_a3":"GNQ","woe_id":-99,"adm0_a3_is":"GNQ","adm0_a3_us":"GNQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":17,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[318,-203,-297]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Greece","sov_a3":"GRC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Greece","adm0_a3":"GRC","geou_dif":0,"geounit":"Greece","gu_a3":"GRC","su_dif":0,"subunit":"Greece","su_a3":"GRC","brk_diff":0,"name":"Greece","name_long":"Greece","brk_a3":"GRC","brk_name":"Greece","brk_group":null,"abbrev":"Greece","postal":"GR","formal_en":"Hellenic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Greece","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":10737428,"gdp_md_est":343000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"GR","iso_a3":"GRC","iso_n3":"300","un_a3":"300","wb_a2":"GR","wb_a3":"GRC","woe_id":-99,"adm0_a3_is":"GRC","adm0_a3_us":"GRC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[[319]],[[320,-15,321,-86,322]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Denmark","sov_a3":"DN1","adm0_dif":1,"level":2,"type":"Country","admin":"Greenland","adm0_a3":"GRL","geou_dif":0,"geounit":"Greenland","gu_a3":"GRL","su_dif":0,"subunit":"Greenland","su_a3":"GRL","brk_diff":0,"name":"Greenland","name_long":"Greenland","brk_a3":"GRL","brk_name":"Greenland","brk_group":null,"abbrev":"Grlnd.","postal":"GL","formal_en":"Greenland","formal_fr":null,"note_adm0":"Den.","note_brk":null,"name_sort":"Greenland","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":3,"mapcolor13":12,"pop_est":57600,"gdp_md_est":1100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"GL","iso_a3":"GRL","iso_n3":"304","un_a3":"304","wb_a2":"GL","wb_a3":"GRL","woe_id":-99,"adm0_a3_is":"GRL","adm0_a3_us":"GRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":-99},"arcs":[[323]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Guatemala","sov_a3":"GTM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guatemala","adm0_a3":"GTM","geou_dif":0,"geounit":"Guatemala","gu_a3":"GTM","su_dif":0,"subunit":"Guatemala","su_a3":"GTM","brk_diff":0,"name":"Guatemala","name_long":"Guatemala","brk_a3":"GTM","brk_name":"Guatemala","brk_group":null,"abbrev":"Guat.","postal":"GT","formal_en":"Republic of Guatemala","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guatemala","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":3,"mapcolor13":6,"pop_est":13276517,"gdp_md_est":68580,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GT","iso_a3":"GTM","iso_n3":"320","un_a3":"320","wb_a2":"GT","wb_a3":"GTM","woe_id":-99,"adm0_a3_is":"GTM","adm0_a3_us":"GTM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":5,"tiny":4,"homepart":1},"arcs":[[324,325,-102,326,327,328]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Guyana","sov_a3":"GUY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Guyana","adm0_a3":"GUY","geou_dif":0,"geounit":"Guyana","gu_a3":"GUY","su_dif":0,"subunit":"Guyana","su_a3":"GUY","brk_diff":0,"name":"Guyana","name_long":"Guyana","brk_a3":"GUY","brk_name":"Guyana","brk_group":null,"abbrev":"Guy.","postal":"GY","formal_en":"Co-operative Republic of Guyana","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Guyana","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":4,"mapcolor13":8,"pop_est":772298,"gdp_md_est":2966,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"GY","iso_a3":"GUY","iso_n3":"328","un_a3":"328","wb_a2":"GY","wb_a3":"GUY","woe_id":-99,"adm0_a3_is":"GUY","adm0_a3_us":"GUY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[329,330,-111,331]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Honduras","sov_a3":"HND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Honduras","adm0_a3":"HND","geou_dif":0,"geounit":"Honduras","gu_a3":"HND","su_dif":0,"subunit":"Honduras","su_a3":"HND","brk_diff":0,"name":"Honduras","name_long":"Honduras","brk_a3":"HND","brk_name":"Honduras","brk_group":null,"abbrev":"Hond.","postal":"HN","formal_en":"Republic of Honduras","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Honduras","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":2,"mapcolor13":5,"pop_est":7792854,"gdp_md_est":33720,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"HN","iso_a3":"HND","iso_n3":"340","un_a3":"340","wb_a2":"HN","wb_a3":"HND","woe_id":-99,"adm0_a3_is":"HND","adm0_a3_us":"HND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[332,333,-328,334,335]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Croatia","sov_a3":"HRV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Croatia","adm0_a3":"HRV","geou_dif":0,"geounit":"Croatia","gu_a3":"HRV","su_dif":0,"subunit":"Croatia","su_a3":"HRV","brk_diff":0,"name":"Croatia","name_long":"Croatia","brk_a3":"HRV","brk_name":"Croatia","brk_group":null,"abbrev":"Cro.","postal":"HR","formal_en":"Republic of Croatia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Croatia","name_alt":null,"mapcolor7":5,"mapcolor8":4,"mapcolor9":5,"mapcolor13":1,"pop_est":4489409,"gdp_md_est":82390,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"HR","iso_a3":"HRV","iso_n3":"191","un_a3":"191","wb_a2":"HR","wb_a3":"HRV","woe_id":-99,"adm0_a3_is":"HRV","adm0_a3_us":"HRV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[336,-94,337,338,339,340]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Haiti","sov_a3":"HTI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Haiti","adm0_a3":"HTI","geou_dif":0,"geounit":"Haiti","gu_a3":"HTI","su_dif":0,"subunit":"Haiti","su_a3":"HTI","brk_diff":0,"name":"Haiti","name_long":"Haiti","brk_a3":"HTI","brk_name":"Haiti","brk_group":null,"abbrev":"Haiti","postal":"HT","formal_en":"Republic of Haiti","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Haiti","name_alt":null,"mapcolor7":2,"mapcolor8":1,"mapcolor9":7,"mapcolor13":2,"pop_est":9035536,"gdp_md_est":11500,"pop_year":-99,"lastcensus":2003,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"HT","iso_a3":"HTI","iso_n3":"332","un_a3":"332","wb_a2":"HT","wb_a3":"HTI","woe_id":-99,"adm0_a3_is":"HTI","adm0_a3_us":"HTI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-249,341]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Hungary","sov_a3":"HUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Hungary","adm0_a3":"HUN","geou_dif":0,"geounit":"Hungary","gu_a3":"HUN","su_dif":0,"subunit":"Hungary","su_a3":"HUN","brk_diff":0,"name":"Hungary","name_long":"Hungary","brk_a3":"HUN","brk_name":"Hungary","brk_group":null,"abbrev":"Hun.","postal":"HU","formal_en":"Republic of Hungary","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Hungary","name_alt":null,"mapcolor7":4,"mapcolor8":6,"mapcolor9":1,"mapcolor13":5,"pop_est":9905596,"gdp_md_est":196600,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"HU","iso_a3":"HUN","iso_n3":"348","un_a3":"348","wb_a2":"HU","wb_a3":"HUN","woe_id":-99,"adm0_a3_is":"HUN","adm0_a3_us":"HUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-50,342,343,344,345,-341,346]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Indonesia","sov_a3":"IDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Indonesia","adm0_a3":"IDN","geou_dif":0,"geounit":"Indonesia","gu_a3":"IDN","su_dif":0,"subunit":"Indonesia","su_a3":"IDN","brk_diff":0,"name":"Indonesia","name_long":"Indonesia","brk_a3":"IDN","brk_name":"Indonesia","brk_group":null,"abbrev":"Indo.","postal":"INDO","formal_en":"Republic of Indonesia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Indonesia","name_alt":null,"mapcolor7":6,"mapcolor8":6,"mapcolor9":6,"mapcolor13":11,"pop_est":240271522,"gdp_md_est":914600,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ID","iso_a3":"IDN","iso_n3":"360","un_a3":"360","wb_a2":"ID","wb_a3":"IDN","woe_id":-99,"adm0_a3_is":"IDN","adm0_a3_us":"IDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[347]],[[348,349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356,357]],[[358]],[[359]],[[360,361]],[[362]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"India","sov_a3":"IND","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"India","adm0_a3":"IND","geou_dif":0,"geounit":"India","gu_a3":"IND","su_dif":0,"subunit":"India","su_a3":"IND","brk_diff":0,"name":"India","name_long":"India","brk_a3":"IND","brk_name":"India","brk_group":null,"abbrev":"India","postal":"IND","formal_en":"Republic of India","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"India","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":1166079220,"gdp_md_est":3297000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IN","iso_a3":"IND","iso_n3":"356","un_a3":"356","wb_a2":"IN","wb_a3":"IND","woe_id":-99,"adm0_a3_is":"IND","adm0_a3_us":"IND","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-189,363,-187,-118,-186,364,-82,365,366]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ireland","sov_a3":"IRL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ireland","adm0_a3":"IRL","geou_dif":0,"geounit":"Ireland","gu_a3":"IRL","su_dif":0,"subunit":"Ireland","su_a3":"IRL","brk_diff":0,"name":"Ireland","name_long":"Ireland","brk_a3":"IRL","brk_name":"Ireland","brk_group":null,"abbrev":"Ire.","postal":"IRL","formal_en":"Ireland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ireland","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":2,"pop_est":4203200,"gdp_md_est":188400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IE","iso_a3":"IRL","iso_n3":"372","un_a3":"372","wb_a2":"IE","wb_a3":"IRL","woe_id":-99,"adm0_a3_is":"IRL","adm0_a3_us":"IRL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[367,-298]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Iran","sov_a3":"IRN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iran","adm0_a3":"IRN","geou_dif":0,"geounit":"Iran","gu_a3":"IRN","su_dif":0,"subunit":"Iran","su_a3":"IRN","brk_diff":0,"name":"Iran","name_long":"Iran","brk_a3":"IRN","brk_name":"Iran","brk_group":null,"abbrev":"Iran","postal":"IRN","formal_en":"Islamic Republic of Iran","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iran, Islamic Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":4,"mapcolor13":13,"pop_est":66429284,"gdp_md_est":841700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IR","iso_a3":"IRN","iso_n3":"364","un_a3":"364","wb_a2":"IR","wb_a3":"IRN","woe_id":-99,"adm0_a3_is":"IRN","adm0_a3_us":"IRN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[368,-6,369,370,371,372,-57,-34,-59,373]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iraq","sov_a3":"IRQ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iraq","adm0_a3":"IRQ","geou_dif":0,"geounit":"Iraq","gu_a3":"IRQ","su_dif":0,"subunit":"Iraq","su_a3":"IRQ","brk_diff":0,"name":"Iraq","name_long":"Iraq","brk_a3":"IRQ","brk_name":"Iraq","brk_group":null,"abbrev":"Iraq","postal":"IRQ","formal_en":"Republic of Iraq","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iraq","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":1,"pop_est":31129225,"gdp_md_est":103900,"pop_year":-99,"lastcensus":1997,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"IQ","iso_a3":"IRQ","iso_n3":"368","un_a3":"368","wb_a2":"IQ","wb_a3":"IRQ","woe_id":-99,"adm0_a3_is":"IRQ","adm0_a3_us":"IRQ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[374,375,376,377,378,379,-372]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Iceland","sov_a3":"ISL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Iceland","adm0_a3":"ISL","geou_dif":0,"geounit":"Iceland","gu_a3":"ISL","su_dif":0,"subunit":"Iceland","su_a3":"ISL","brk_diff":0,"name":"Iceland","name_long":"Iceland","brk_a3":"ISL","brk_name":"Iceland","brk_group":null,"abbrev":"Iceland","postal":"IS","formal_en":"Republic of Iceland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Iceland","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":306694,"gdp_md_est":12710,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IS","iso_a3":"ISL","iso_n3":"352","un_a3":"352","wb_a2":"IS","wb_a3":"ISL","woe_id":-99,"adm0_a3_is":"ISL","adm0_a3_us":"ISL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[380]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Israel","adm0_a3":"ISR","geou_dif":0,"geounit":"Israel","gu_a3":"ISR","su_dif":0,"subunit":"Israel","su_a3":"ISR","brk_diff":0,"name":"Israel","name_long":"Israel","brk_a3":"ISR","brk_name":"Israel","brk_group":null,"abbrev":"Isr.","postal":"IS","formal_en":"State of Israel","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Israel","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":9,"pop_est":7233701,"gdp_md_est":201400,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IL","iso_a3":"ISR","iso_n3":"376","un_a3":"376","wb_a2":"IL","wb_a3":"ISR","woe_id":-99,"adm0_a3_is":"ISR","adm0_a3_us":"ISR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[381,382,383,-264,384,385,386]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Italy","sov_a3":"ITA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Italy","adm0_a3":"ITA","geou_dif":0,"geounit":"Italy","gu_a3":"ITA","su_dif":0,"subunit":"Italy","su_a3":"ITA","brk_diff":0,"name":"Italy","name_long":"Italy","brk_a3":"ITA","brk_name":"Italy","brk_group":null,"abbrev":"Italy","postal":"I","formal_en":"Italian Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Italy","name_alt":null,"mapcolor7":6,"mapcolor8":7,"mapcolor9":8,"mapcolor13":7,"pop_est":58126212,"gdp_md_est":1823000,"pop_year":-99,"lastcensus":2012,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"IT","iso_a3":"ITA","iso_n3":"380","un_a3":"380","wb_a2":"IT","wb_a3":"ITA","woe_id":-99,"adm0_a3_is":"ITA","adm0_a3_us":"ITA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[387]],[[388]],[[389,390,-293,-170,-52]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jamaica","sov_a3":"JAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jamaica","adm0_a3":"JAM","geou_dif":0,"geounit":"Jamaica","gu_a3":"JAM","su_dif":0,"subunit":"Jamaica","su_a3":"JAM","brk_diff":0,"name":"Jamaica","name_long":"Jamaica","brk_a3":"JAM","brk_name":"Jamaica","brk_group":null,"abbrev":"Jam.","postal":"J","formal_en":"Jamaica","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jamaica","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":4,"mapcolor13":10,"pop_est":2825928,"gdp_md_est":20910,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JM","iso_a3":"JAM","iso_n3":"388","un_a3":"388","wb_a2":"JM","wb_a3":"JAM","woe_id":-99,"adm0_a3_is":"JAM","adm0_a3_us":"JAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[391]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Jordan","sov_a3":"JOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Jordan","adm0_a3":"JOR","geou_dif":0,"geounit":"Jordan","gu_a3":"JOR","su_dif":0,"subunit":"Jordan","su_a3":"JOR","brk_diff":0,"name":"Jordan","name_long":"Jordan","brk_a3":"JOR","brk_name":"Jordan","brk_group":null,"abbrev":"Jord.","postal":"J","formal_en":"Hashemite Kingdom of Jordan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Jordan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":6342948,"gdp_md_est":31610,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"JO","iso_a3":"JOR","iso_n3":"400","un_a3":"400","wb_a2":"JO","wb_a3":"JOR","woe_id":-99,"adm0_a3_is":"JOR","adm0_a3_us":"JOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-382,392,-378,393,394,-384,395]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Japan","sov_a3":"JPN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Japan","adm0_a3":"JPN","geou_dif":0,"geounit":"Japan","gu_a3":"JPN","su_dif":0,"subunit":"Japan","su_a3":"JPN","brk_diff":0,"name":"Japan","name_long":"Japan","brk_a3":"JPN","brk_name":"Japan","brk_group":null,"abbrev":"Japan","postal":"J","formal_en":"Japan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Japan","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":127078679,"gdp_md_est":4329000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"JP","iso_a3":"JPN","iso_n3":"392","un_a3":"392","wb_a2":"JP","wb_a3":"JPN","woe_id":-99,"adm0_a3_is":"JPN","adm0_a3_us":"JPN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[396]],[[397]],[[398]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Kazakhstan","sov_a3":"KAZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kazakhstan","adm0_a3":"KAZ","geou_dif":0,"geounit":"Kazakhstan","gu_a3":"KAZ","su_dif":0,"subunit":"Kazakhstan","su_a3":"KAZ","brk_diff":0,"name":"Kazakhstan","name_long":"Kazakhstan","brk_a3":"KAZ","brk_name":"Kazakhstan","brk_group":null,"abbrev":"Kaz.","postal":"KZ","formal_en":"Republic of Kazakhstan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kazakhstan","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":1,"pop_est":15399437,"gdp_md_est":175800,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"KZ","iso_a3":"KAZ","iso_n3":"398","un_a3":"398","wb_a2":"KZ","wb_a3":"KAZ","woe_id":-99,"adm0_a3_is":"KAZ","adm0_a3_us":"KAZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[399,400,401,402,-193,403]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Kenya","sov_a3":"KEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kenya","adm0_a3":"KEN","geou_dif":0,"geounit":"Kenya","gu_a3":"KEN","su_dif":0,"subunit":"Kenya","su_a3":"KEN","brk_diff":0,"name":"Kenya","name_long":"Kenya","brk_a3":"KEN","brk_name":"Kenya","brk_group":null,"abbrev":"Ken.","postal":"KE","formal_en":"Republic of Kenya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kenya","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":7,"mapcolor13":3,"pop_est":39002772,"gdp_md_est":61510,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KE","iso_a3":"KEN","iso_n3":"404","un_a3":"404","wb_a2":"KE","wb_a3":"KEN","woe_id":-99,"adm0_a3_is":"KEN","adm0_a3_us":"KEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[404,405,406,407,408,409,-277,410]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Kyrgyzstan","sov_a3":"KGZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kyrgyzstan","adm0_a3":"KGZ","geou_dif":0,"geounit":"Kyrgyzstan","gu_a3":"KGZ","su_dif":0,"subunit":"Kyrgyzstan","su_a3":"KGZ","brk_diff":0,"name":"Kyrgyzstan","name_long":"Kyrgyzstan","brk_a3":"KGZ","brk_name":"Kyrgyzstan","brk_group":null,"abbrev":"Kgz.","postal":"KG","formal_en":"Kyrgyz Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kyrgyz Republic","name_alt":null,"mapcolor7":5,"mapcolor8":7,"mapcolor9":7,"mapcolor13":6,"pop_est":5431747,"gdp_md_est":11610,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KG","iso_a3":"KGZ","iso_n3":"417","un_a3":"417","wb_a2":"KG","wb_a3":"KGZ","woe_id":-99,"adm0_a3_is":"KGZ","adm0_a3_us":"KGZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-404,-192,411,412]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Cambodia","sov_a3":"KHM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Cambodia","adm0_a3":"KHM","geou_dif":0,"geounit":"Cambodia","gu_a3":"KHM","su_dif":0,"subunit":"Cambodia","su_a3":"KHM","brk_diff":0,"name":"Cambodia","name_long":"Cambodia","brk_a3":"KHM","brk_name":"Cambodia","brk_group":null,"abbrev":"Camb.","postal":"KH","formal_en":"Kingdom of Cambodia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Cambodia","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":5,"pop_est":14494293,"gdp_md_est":27940,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KH","iso_a3":"KHM","iso_n3":"116","un_a3":"116","wb_a2":"KH","wb_a3":"KHM","woe_id":-99,"adm0_a3_is":"KHM","adm0_a3_us":"KHM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[413,414,415,416]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Korea","sov_a3":"KOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Korea","adm0_a3":"KOR","geou_dif":0,"geounit":"South Korea","gu_a3":"KOR","su_dif":0,"subunit":"South Korea","su_a3":"KOR","brk_diff":0,"name":"Korea","name_long":"Republic of Korea","brk_a3":"KOR","brk_name":"Republic of Korea","brk_group":null,"abbrev":"S.K.","postal":"KR","formal_en":"Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Rep.","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":5,"pop_est":48508972,"gdp_md_est":1335000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"KR","iso_a3":"KOR","iso_n3":"410","un_a3":"410","wb_a2":"KR","wb_a3":"KOR","woe_id":-99,"adm0_a3_is":"KOR","adm0_a3_us":"KOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":5,"long_len":17,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[417,418]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kosovo","sov_a3":"KOS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kosovo","adm0_a3":"KOS","geou_dif":0,"geounit":"Kosovo","gu_a3":"KOS","su_dif":0,"subunit":"Kosovo","su_a3":"KOS","brk_diff":1,"name":"Kosovo","name_long":"Kosovo","brk_a3":"B57","brk_name":"Kosovo","brk_group":null,"abbrev":"Kos.","postal":"KO","formal_en":"Republic of Kosovo","formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by Serbia","name_sort":"Kosovo","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":1804838,"gdp_md_est":5352,"pop_year":-99,"lastcensus":1981,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"KV","wb_a3":"KSV","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"KOS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-18,419,420,421]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Kuwait","sov_a3":"KWT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Kuwait","adm0_a3":"KWT","geou_dif":0,"geounit":"Kuwait","gu_a3":"KWT","su_dif":0,"subunit":"Kuwait","su_a3":"KWT","brk_diff":0,"name":"Kuwait","name_long":"Kuwait","brk_a3":"KWT","brk_name":"Kuwait","brk_group":null,"abbrev":"Kwt.","postal":"KW","formal_en":"State of Kuwait","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Kuwait","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":2,"mapcolor13":2,"pop_est":2691158,"gdp_md_est":149100,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"KW","iso_a3":"KWT","iso_n3":"414","un_a3":"414","wb_a2":"KW","wb_a3":"KWT","woe_id":-99,"adm0_a3_is":"KWT","adm0_a3_us":"KWT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[422,423,-376]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Laos","sov_a3":"LAO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Laos","adm0_a3":"LAO","geou_dif":0,"geounit":"Laos","gu_a3":"LAO","su_dif":0,"subunit":"Laos","su_a3":"LAO","brk_diff":0,"name":"Lao PDR","name_long":"Lao PDR","brk_a3":"LAO","brk_name":"Laos","brk_group":null,"abbrev":"Laos","postal":"LA","formal_en":"Lao People's Democratic Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lao PDR","name_alt":null,"mapcolor7":1,"mapcolor8":1,"mapcolor9":1,"mapcolor13":9,"pop_est":6834942,"gdp_md_est":13980,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LA","iso_a3":"LAO","iso_n3":"418","un_a3":"418","wb_a2":"LA","wb_a3":"LAO","woe_id":-99,"adm0_a3_is":"LAO","adm0_a3_us":"LAO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[424,425,-184,426,-415]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lebanon","sov_a3":"LBN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lebanon","adm0_a3":"LBN","geou_dif":0,"geounit":"Lebanon","gu_a3":"LBN","su_dif":0,"subunit":"Lebanon","su_a3":"LBN","brk_diff":0,"name":"Lebanon","name_long":"Lebanon","brk_a3":"LBN","brk_name":"Lebanon","brk_group":null,"abbrev":"Leb.","postal":"LB","formal_en":"Lebanese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lebanon","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":12,"pop_est":4017095,"gdp_md_est":44060,"pop_year":-99,"lastcensus":1970,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LB","iso_a3":"LBN","iso_n3":"422","un_a3":"422","wb_a2":"LB","wb_a3":"LBN","woe_id":-99,"adm0_a3_is":"LBN","adm0_a3_us":"LBN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":4,"homepart":1},"arcs":[[-386,427,428]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Liberia","sov_a3":"LBR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Liberia","adm0_a3":"LBR","geou_dif":0,"geounit":"Liberia","gu_a3":"LBR","su_dif":0,"subunit":"Liberia","su_a3":"LBR","brk_diff":0,"name":"Liberia","name_long":"Liberia","brk_a3":"LBR","brk_name":"Liberia","brk_group":null,"abbrev":"Liberia","postal":"LR","formal_en":"Republic of Liberia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Liberia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":9,"pop_est":3441790,"gdp_md_est":1526,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"LR","iso_a3":"LBR","iso_n3":"430","un_a3":"430","wb_a2":"LR","wb_a3":"LBR","woe_id":-99,"adm0_a3_is":"LBR","adm0_a3_us":"LBR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[429,430,-309,-198]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Libya","sov_a3":"LBY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Libya","adm0_a3":"LBY","geou_dif":0,"geounit":"Libya","gu_a3":"LBY","su_dif":0,"subunit":"Libya","su_a3":"LBY","brk_diff":0,"name":"Libya","name_long":"Libya","brk_a3":"LBY","brk_name":"Libya","brk_group":null,"abbrev":"Libya","postal":"LY","formal_en":"Libya","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Libya","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":11,"pop_est":6310434,"gdp_md_est":88830,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LY","iso_a3":"LBY","iso_n3":"434","un_a3":"434","wb_a2":"LY","wb_a3":"LBY","woe_id":-99,"adm0_a3_is":"LBY","adm0_a3_us":"LBY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[431,-257,432,433,-262,434,435]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sri Lanka","sov_a3":"LKA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sri Lanka","adm0_a3":"LKA","geou_dif":0,"geounit":"Sri Lanka","gu_a3":"LKA","su_dif":0,"subunit":"Sri Lanka","su_a3":"LKA","brk_diff":0,"name":"Sri Lanka","name_long":"Sri Lanka","brk_a3":"LKA","brk_name":"Sri Lanka","brk_group":null,"abbrev":"Sri L.","postal":"LK","formal_en":"Democratic Socialist Republic of Sri Lanka","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sri Lanka","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":9,"pop_est":21324791,"gdp_md_est":91870,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LK","iso_a3":"LKA","iso_n3":"144","un_a3":"144","wb_a2":"LK","wb_a3":"LKA","woe_id":-99,"adm0_a3_is":"LKA","adm0_a3_us":"LKA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":9,"long_len":9,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[436]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Lesotho","sov_a3":"LSO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lesotho","adm0_a3":"LSO","geou_dif":0,"geounit":"Lesotho","gu_a3":"LSO","su_dif":0,"subunit":"Lesotho","su_a3":"LSO","brk_diff":0,"name":"Lesotho","name_long":"Lesotho","brk_a3":"LSO","brk_name":"Lesotho","brk_group":null,"abbrev":"Les.","postal":"LS","formal_en":"Kingdom of Lesotho","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lesotho","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":2,"mapcolor13":8,"pop_est":2130819,"gdp_md_est":3293,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LS","iso_a3":"LSO","iso_n3":"426","un_a3":"426","wb_a2":"LS","wb_a3":"LSO","woe_id":-99,"adm0_a3_is":"LSO","adm0_a3_us":"LSO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[437]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Lithuania","sov_a3":"LTU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Lithuania","adm0_a3":"LTU","geou_dif":0,"geounit":"Lithuania","gu_a3":"LTU","su_dif":0,"subunit":"Lithuania","su_a3":"LTU","brk_diff":0,"name":"Lithuania","name_long":"Lithuania","brk_a3":"LTU","brk_name":"Lithuania","brk_group":null,"abbrev":"Lith.","postal":"LT","formal_en":"Republic of Lithuania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Lithuania","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":3,"mapcolor13":9,"pop_est":3555179,"gdp_md_est":63330,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LT","iso_a3":"LTU","iso_n3":"440","un_a3":"440","wb_a2":"LT","wb_a3":"LTU","woe_id":-99,"adm0_a3_is":"LTU","adm0_a3_us":"LTU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[438,439,440,-95,441]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Luxembourg","sov_a3":"LUX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Luxembourg","adm0_a3":"LUX","geou_dif":0,"geounit":"Luxembourg","gu_a3":"LUX","su_dif":0,"subunit":"Luxembourg","su_a3":"LUX","brk_diff":0,"name":"Luxembourg","name_long":"Luxembourg","brk_a3":"LUX","brk_name":"Luxembourg","brk_group":null,"abbrev":"Lux.","postal":"L","formal_en":"Grand Duchy of Luxembourg","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Luxembourg","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":3,"mapcolor13":7,"pop_est":491775,"gdp_md_est":39370,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"LU","iso_a3":"LUX","iso_n3":"442","un_a3":"442","wb_a2":"LU","wb_a3":"LUX","woe_id":-99,"adm0_a3_is":"LUX","adm0_a3_us":"LUX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1},"arcs":[[-238,-292,-67]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Latvia","sov_a3":"LVA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Latvia","adm0_a3":"LVA","geou_dif":0,"geounit":"Latvia","gu_a3":"LVA","su_dif":0,"subunit":"Latvia","su_a3":"LVA","brk_diff":0,"name":"Latvia","name_long":"Latvia","brk_a3":"LVA","brk_name":"Latvia","brk_group":null,"abbrev":"Lat.","postal":"LV","formal_en":"Republic of Latvia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Latvia","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":6,"mapcolor13":13,"pop_est":2231503,"gdp_md_est":38860,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"LV","iso_a3":"LVA","iso_n3":"428","un_a3":"428","wb_a2":"LV","wb_a3":"LVA","woe_id":-99,"adm0_a3_is":"LVA","adm0_a3_us":"LVA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[442,-274,443,-96,-441]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Morocco","sov_a3":"MAR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Morocco","adm0_a3":"MAR","geou_dif":0,"geounit":"Morocco","gu_a3":"MAR","su_dif":0,"subunit":"Morocco","su_a3":"MAR","brk_diff":0,"name":"Morocco","name_long":"Morocco","brk_a3":"MAR","brk_name":"Morocco","brk_group":null,"abbrev":"Mor.","postal":"MA","formal_en":"Kingdom of Morocco","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Morocco","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":9,"pop_est":34859364,"gdp_md_est":136600,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MA","iso_a3":"MAR","iso_n3":"504","un_a3":"504","wb_a2":"MA","wb_a3":"MAR","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"MAR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-254,444,445,446,447]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Moldova","sov_a3":"MDA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Moldova","adm0_a3":"MDA","geou_dif":0,"geounit":"Moldova","gu_a3":"MDA","su_dif":0,"subunit":"Moldova","su_a3":"MDA","brk_diff":0,"name":"Moldova","name_long":"Moldova","brk_a3":"MDA","brk_name":"Moldova","brk_group":null,"abbrev":"Mda.","postal":"MD","formal_en":"Republic of Moldova","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Moldova","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":4,"mapcolor13":12,"pop_est":4320748,"gdp_md_est":10670,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MD","iso_a3":"MDA","iso_n3":"498","un_a3":"498","wb_a2":"MD","wb_a3":"MDA","woe_id":-99,"adm0_a3_is":"MDA","adm0_a3_us":"MDA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[448,449]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Madagascar","sov_a3":"MDG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Madagascar","adm0_a3":"MDG","geou_dif":0,"geounit":"Madagascar","gu_a3":"MDG","su_dif":0,"subunit":"Madagascar","su_a3":"MDG","brk_diff":0,"name":"Madagascar","name_long":"Madagascar","brk_a3":"MDG","brk_name":"Madagascar","brk_group":null,"abbrev":"Mad.","postal":"MG","formal_en":"Republic of Madagascar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Madagascar","name_alt":null,"mapcolor7":6,"mapcolor8":5,"mapcolor9":2,"mapcolor13":3,"pop_est":20653556,"gdp_md_est":20130,"pop_year":-99,"lastcensus":1993,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MG","iso_a3":"MDG","iso_n3":"450","un_a3":"450","wb_a2":"MG","wb_a3":"MDG","woe_id":-99,"adm0_a3_is":"MDG","adm0_a3_us":"MDG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[450]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Mexico","sov_a3":"MEX","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mexico","adm0_a3":"MEX","geou_dif":0,"geounit":"Mexico","gu_a3":"MEX","su_dif":0,"subunit":"Mexico","su_a3":"MEX","brk_diff":0,"name":"Mexico","name_long":"Mexico","brk_a3":"MEX","brk_name":"Mexico","brk_group":null,"abbrev":"Mex.","postal":"MX","formal_en":"United Mexican States","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mexico","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":7,"mapcolor13":3,"pop_est":111211789,"gdp_md_est":1563000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MX","iso_a3":"MEX","iso_n3":"484","un_a3":"484","wb_a2":"MX","wb_a3":"MEX","woe_id":-99,"adm0_a3_is":"MEX","adm0_a3_us":"MEX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[451,452,453,-100,-326,454,455]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Macedonia","sov_a3":"MKD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Macedonia","adm0_a3":"MKD","geou_dif":0,"geounit":"Macedonia","gu_a3":"MKD","su_dif":0,"subunit":"Macedonia","su_a3":"MKD","brk_diff":0,"name":"Macedonia","name_long":"Macedonia","brk_a3":"MKD","brk_name":"Macedonia","brk_group":null,"abbrev":"Mkd.","postal":"MK","formal_en":"Former Yugoslav Republic of Macedonia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Macedonia, FYR","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":2066718,"gdp_md_est":18780,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MK","iso_a3":"MKD","iso_n3":"807","un_a3":"807","wb_a2":"MK","wb_a3":"MKD","woe_id":-99,"adm0_a3_is":"MKD","adm0_a3_us":"MKD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-422,456,-87,-322,-14]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mali","sov_a3":"MLI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mali","adm0_a3":"MLI","geou_dif":0,"geounit":"Mali","gu_a3":"MLI","su_dif":0,"subunit":"Mali","su_a3":"MLI","brk_diff":0,"name":"Mali","name_long":"Mali","brk_a3":"MLI","brk_name":"Mali","brk_group":null,"abbrev":"Mali","postal":"ML","formal_en":"Republic of Mali","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mali","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":12666987,"gdp_md_est":14590,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ML","iso_a3":"MLI","iso_n3":"466","un_a3":"466","wb_a2":"ML","wb_a3":"MLI","woe_id":-99,"adm0_a3_is":"MLI","adm0_a3_us":"MLI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[457,-251,458,-76,-200,-314,459]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Myanmar","sov_a3":"MMR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Myanmar","adm0_a3":"MMR","geou_dif":0,"geounit":"Myanmar","gu_a3":"MMR","su_dif":0,"subunit":"Myanmar","su_a3":"MMR","brk_diff":0,"name":"Myanmar","name_long":"Myanmar","brk_a3":"MMR","brk_name":"Myanmar","brk_group":null,"abbrev":"Myan.","postal":"MM","formal_en":"Republic of the Union of Myanmar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Myanmar","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":5,"mapcolor13":13,"pop_est":48137741,"gdp_md_est":55130,"pop_year":-99,"lastcensus":1983,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MM","iso_a3":"MMR","iso_n3":"104","un_a3":"104","wb_a2":"MM","wb_a3":"MMR","woe_id":-99,"adm0_a3_is":"MMR","adm0_a3_us":"MMR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[460,-80,-365,-185,-426,461]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Montenegro","sov_a3":"MNE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Montenegro","adm0_a3":"MNE","geou_dif":0,"geounit":"Montenegro","gu_a3":"MNE","su_dif":0,"subunit":"Montenegro","su_a3":"MNE","brk_diff":0,"name":"Montenegro","name_long":"Montenegro","brk_a3":"MNE","brk_name":"Montenegro","brk_group":null,"abbrev":"Mont.","postal":"ME","formal_en":"Montenegro","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Montenegro","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":4,"mapcolor13":5,"pop_est":672180,"gdp_md_est":6816,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ME","iso_a3":"MNE","iso_n3":"499","un_a3":"499","wb_a2":"ME","wb_a3":"MNE","woe_id":-99,"adm0_a3_is":"MNE","adm0_a3_us":"MNE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[462,-338,-93,463,-420,-17]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mongolia","sov_a3":"MNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mongolia","adm0_a3":"MNG","geou_dif":0,"geounit":"Mongolia","gu_a3":"MNG","su_dif":0,"subunit":"Mongolia","su_a3":"MNG","brk_diff":0,"name":"Mongolia","name_long":"Mongolia","brk_a3":"MNG","brk_name":"Mongolia","brk_group":null,"abbrev":"Mong.","postal":"MN","formal_en":"Mongolia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mongolia","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":5,"mapcolor13":6,"pop_est":3041142,"gdp_md_est":9476,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MN","iso_a3":"MNG","iso_n3":"496","un_a3":"496","wb_a2":"MN","wb_a3":"MNG","woe_id":-99,"adm0_a3_is":"MNG","adm0_a3_us":"MNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[464,-195]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mozambique","sov_a3":"MOZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mozambique","adm0_a3":"MOZ","geou_dif":0,"geounit":"Mozambique","gu_a3":"MOZ","su_dif":0,"subunit":"Mozambique","su_a3":"MOZ","brk_diff":0,"name":"Mozambique","name_long":"Mozambique","brk_a3":"MOZ","brk_name":"Mozambique","brk_group":null,"abbrev":"Moz.","postal":"MZ","formal_en":"Republic of Mozambique","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mozambique","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":1,"mapcolor13":4,"pop_est":21669278,"gdp_md_est":18940,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MZ","iso_a3":"MOZ","iso_n3":"508","un_a3":"508","wb_a2":"MZ","wb_a3":"MOZ","woe_id":-99,"adm0_a3_is":"MOZ","adm0_a3_us":"MOZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[465,466,467,468,469,470,471,472]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Mauritania","sov_a3":"MRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Mauritania","adm0_a3":"MRT","geou_dif":0,"geounit":"Mauritania","gu_a3":"MRT","su_dif":0,"subunit":"Mauritania","su_a3":"MRT","brk_diff":0,"name":"Mauritania","name_long":"Mauritania","brk_a3":"MRT","brk_name":"Mauritania","brk_group":null,"abbrev":"Mrt.","postal":"MR","formal_en":"Islamic Republic of Mauritania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Mauritania","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":1,"pop_est":3129486,"gdp_md_est":6308,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MR","iso_a3":"MRT","iso_n3":"478","un_a3":"478","wb_a2":"MR","wb_a3":"MRT","woe_id":-99,"adm0_a3_is":"MRT","adm0_a3_us":"MRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[473,474,475,-252,-458]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Malawi","sov_a3":"MWI","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malawi","adm0_a3":"MWI","geou_dif":0,"geounit":"Malawi","gu_a3":"MWI","su_dif":0,"subunit":"Malawi","su_a3":"MWI","brk_diff":0,"name":"Malawi","name_long":"Malawi","brk_a3":"MWI","brk_name":"Malawi","brk_group":null,"abbrev":"Mal.","postal":"MW","formal_en":"Republic of Malawi","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malawi","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":4,"mapcolor13":5,"pop_est":14268711,"gdp_md_est":11810,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"MW","iso_a3":"MWI","iso_n3":"454","un_a3":"454","wb_a2":"MW","wb_a3":"MWI","woe_id":-99,"adm0_a3_is":"MWI","adm0_a3_us":"MWI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-473,476,477]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Malaysia","sov_a3":"MYS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Malaysia","adm0_a3":"MYS","geou_dif":0,"geounit":"Malaysia","gu_a3":"MYS","su_dif":0,"subunit":"Malaysia","su_a3":"MYS","brk_diff":0,"name":"Malaysia","name_long":"Malaysia","brk_a3":"MYS","brk_name":"Malaysia","brk_group":null,"abbrev":"Malay.","postal":"MY","formal_en":"Malaysia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Malaysia","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":3,"mapcolor13":6,"pop_est":25715819,"gdp_md_est":384300,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"MY","iso_a3":"MYS","iso_n3":"458","un_a3":"458","wb_a2":"MY","wb_a3":"MYS","woe_id":-99,"adm0_a3_is":"MYS","adm0_a3_us":"MYS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[[478,479]],[[-361,480,-117,481]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Namibia","sov_a3":"NAM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Namibia","adm0_a3":"NAM","geou_dif":0,"geounit":"Namibia","gu_a3":"NAM","su_dif":0,"subunit":"Namibia","su_a3":"NAM","brk_diff":0,"name":"Namibia","name_long":"Namibia","brk_a3":"NAM","brk_name":"Namibia","brk_group":null,"abbrev":"Nam.","postal":"NA","formal_en":"Republic of Namibia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Namibia","name_alt":null,"mapcolor7":4,"mapcolor8":1,"mapcolor9":1,"mapcolor13":7,"pop_est":2108665,"gdp_md_est":13250,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NA","iso_a3":"NAM","iso_n3":"516","un_a3":"516","wb_a2":"NA","wb_a3":"NAM","woe_id":-99,"adm0_a3_is":"NAM","adm0_a3_us":"NAM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[482,-8,483,-121,484]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"France","sov_a3":"FR1","adm0_dif":1,"level":2,"type":"Dependency","admin":"New Caledonia","adm0_a3":"NCL","geou_dif":0,"geounit":"New Caledonia","gu_a3":"NCL","su_dif":0,"subunit":"New Caledonia","su_a3":"NCL","brk_diff":0,"name":"New Caledonia","name_long":"New Caledonia","brk_a3":"NCL","brk_name":"New Caledonia","brk_group":null,"abbrev":"New C.","postal":"NC","formal_en":"New Caledonia","formal_fr":"Nouvelle-Calédonie","note_adm0":"Fr.","note_brk":null,"name_sort":"New Caledonia","name_alt":null,"mapcolor7":7,"mapcolor8":5,"mapcolor9":9,"mapcolor13":11,"pop_est":227436,"gdp_md_est":3158,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"NC","iso_a3":"NCL","iso_n3":"540","un_a3":"540","wb_a2":"NC","wb_a3":"NCL","woe_id":-99,"adm0_a3_is":"NCL","adm0_a3_us":"NCL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":-99},"arcs":[[485]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Niger","sov_a3":"NER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Niger","adm0_a3":"NER","geou_dif":0,"geounit":"Niger","gu_a3":"NER","su_dif":0,"subunit":"Niger","su_a3":"NER","brk_diff":0,"name":"Niger","name_long":"Niger","brk_a3":"NER","brk_name":"Niger","brk_group":null,"abbrev":"Niger","postal":"NE","formal_en":"Republic of Niger","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Niger","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":3,"mapcolor13":13,"pop_est":15306252,"gdp_md_est":10040,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NE","iso_a3":"NER","iso_n3":"562","un_a3":"562","wb_a2":"NE","wb_a3":"NER","woe_id":-99,"adm0_a3_is":"NER","adm0_a3_us":"NER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-77,-459,-250,-432,486,-206,487,-73]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Nigeria","sov_a3":"NGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nigeria","adm0_a3":"NGA","geou_dif":0,"geounit":"Nigeria","gu_a3":"NGA","su_dif":0,"subunit":"Nigeria","su_a3":"NGA","brk_diff":0,"name":"Nigeria","name_long":"Nigeria","brk_a3":"NGA","brk_name":"Nigeria","brk_group":null,"abbrev":"Nigeria","postal":"NG","formal_en":"Federal Republic of Nigeria","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nigeria","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":2,"pop_est":149229090,"gdp_md_est":335400,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NG","iso_a3":"NGA","iso_n3":"566","un_a3":"566","wb_a2":"NG","wb_a3":"NGA","woe_id":-99,"adm0_a3_is":"NGA","adm0_a3_us":"NGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[488,-74,-488,-205]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Nicaragua","sov_a3":"NIC","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nicaragua","adm0_a3":"NIC","geou_dif":0,"geounit":"Nicaragua","gu_a3":"NIC","su_dif":0,"subunit":"Nicaragua","su_a3":"NIC","brk_diff":0,"name":"Nicaragua","name_long":"Nicaragua","brk_a3":"NIC","brk_name":"Nicaragua","brk_group":null,"abbrev":"Nic.","postal":"NI","formal_en":"Republic of Nicaragua","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nicaragua","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":9,"pop_est":5891199,"gdp_md_est":16790,"pop_year":-99,"lastcensus":2005,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"NI","iso_a3":"NIC","iso_n3":"558","un_a3":"558","wb_a2":"NI","wb_a3":"NIC","woe_id":-99,"adm0_a3_is":"NIC","adm0_a3_us":"NIC","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[489,-336,490,-225]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Netherlands","sov_a3":"NL1","adm0_dif":1,"level":2,"type":"Country","admin":"Netherlands","adm0_a3":"NLD","geou_dif":0,"geounit":"Netherlands","gu_a3":"NLD","su_dif":0,"subunit":"Netherlands","su_a3":"NLD","brk_diff":0,"name":"Netherlands","name_long":"Netherlands","brk_a3":"NLD","brk_name":"Netherlands","brk_group":null,"abbrev":"Neth.","postal":"NL","formal_en":"Kingdom of the Netherlands","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Netherlands","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":2,"mapcolor13":9,"pop_est":16715999,"gdp_md_est":672000,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NL","iso_a3":"NLD","iso_n3":"528","un_a3":"528","wb_a2":"NL","wb_a3":"NLD","woe_id":-99,"adm0_a3_is":"NLD","adm0_a3_us":"NLD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Western Europe","region_wb":"Europe & Central Asia","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-239,-65,491]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Norway","sov_a3":"NOR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Norway","adm0_a3":"NOR","geou_dif":0,"geounit":"Norway","gu_a3":"NOR","su_dif":0,"subunit":"Norway","su_a3":"NOR","brk_diff":0,"name":"Norway","name_long":"Norway","brk_a3":"NOR","brk_name":"Norway","brk_group":null,"abbrev":"Nor.","postal":"N","formal_en":"Kingdom of Norway","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Norway","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":8,"mapcolor13":12,"pop_est":4676305,"gdp_md_est":276400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NO","iso_a3":"NOR","iso_n3":"578","un_a3":"578","wb_a2":"NO","wb_a3":"NOR","woe_id":-99,"adm0_a3_is":"NOR","adm0_a3_us":"NOR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[492,-284,493,494]],[[495]],[[496]],[[497]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Nepal","sov_a3":"NPL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Nepal","adm0_a3":"NPL","geou_dif":0,"geounit":"Nepal","gu_a3":"NPL","su_dif":0,"subunit":"Nepal","su_a3":"NPL","brk_diff":0,"name":"Nepal","name_long":"Nepal","brk_a3":"NPL","brk_name":"Nepal","brk_group":null,"abbrev":"Nepal","postal":"NP","formal_en":"Nepal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Nepal","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":12,"pop_est":28563377,"gdp_md_est":31080,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"NP","iso_a3":"NPL","iso_n3":"524","un_a3":"524","wb_a2":"NP","wb_a3":"NPL","woe_id":-99,"adm0_a3_is":"NPL","adm0_a3_us":"NPL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-364,-188]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"New Zealand","sov_a3":"NZ1","adm0_dif":1,"level":2,"type":"Country","admin":"New Zealand","adm0_a3":"NZL","geou_dif":0,"geounit":"New Zealand","gu_a3":"NZL","su_dif":0,"subunit":"New Zealand","su_a3":"NZL","brk_diff":0,"name":"New Zealand","name_long":"New Zealand","brk_a3":"NZL","brk_name":"New Zealand","brk_group":null,"abbrev":"N.Z.","postal":"NZ","formal_en":"New Zealand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"New Zealand","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":4,"mapcolor13":4,"pop_est":4213418,"gdp_md_est":116700,"pop_year":-99,"lastcensus":2006,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"NZ","iso_a3":"NZL","iso_n3":"554","un_a3":"554","wb_a2":"NZ","wb_a3":"NZL","woe_id":-99,"adm0_a3_is":"NZL","adm0_a3_us":"NZL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Australia and New Zealand","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[498]],[[499]]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Oman","sov_a3":"OMN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Oman","adm0_a3":"OMN","geou_dif":0,"geounit":"Oman","gu_a3":"OMN","su_dif":0,"subunit":"Oman","su_a3":"OMN","brk_diff":0,"name":"Oman","name_long":"Oman","brk_a3":"OMN","brk_name":"Oman","brk_group":null,"abbrev":"Oman","postal":"OM","formal_en":"Sultanate of Oman","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Oman","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":3418085,"gdp_md_est":66980,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"OM","iso_a3":"OMN","iso_n3":"512","un_a3":"512","wb_a2":"OM","wb_a3":"OMN","woe_id":-99,"adm0_a3_is":"OMN","adm0_a3_us":"OMN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[500,501,-22,502]],[[-20,503]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Pakistan","sov_a3":"PAK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Pakistan","adm0_a3":"PAK","geou_dif":0,"geounit":"Pakistan","gu_a3":"PAK","su_dif":0,"subunit":"Pakistan","su_a3":"PAK","brk_diff":0,"name":"Pakistan","name_long":"Pakistan","brk_a3":"PAK","brk_name":"Pakistan","brk_group":null,"abbrev":"Pak.","postal":"PK","formal_en":"Islamic Republic of Pakistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Pakistan","name_alt":null,"mapcolor7":2,"mapcolor8":2,"mapcolor9":3,"mapcolor13":11,"pop_est":176242949,"gdp_md_est":427300,"pop_year":-99,"lastcensus":1998,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PK","iso_a3":"PAK","iso_n3":"586","un_a3":"586","wb_a2":"PK","wb_a3":"PAK","woe_id":-99,"adm0_a3_is":"PAK","adm0_a3_us":"PAK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Southern Asia","region_wb":"South Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-190,-367,504,-370,-5]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Panama","sov_a3":"PAN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Panama","adm0_a3":"PAN","geou_dif":0,"geounit":"Panama","gu_a3":"PAN","su_dif":0,"subunit":"Panama","su_a3":"PAN","brk_diff":0,"name":"Panama","name_long":"Panama","brk_a3":"PAN","brk_name":"Panama","brk_group":null,"abbrev":"Pan.","postal":"PA","formal_en":"Republic of Panama","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Panama","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":6,"mapcolor13":3,"pop_est":3360474,"gdp_md_est":38830,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PA","iso_a3":"PAN","iso_n3":"591","un_a3":"591","wb_a2":"PA","wb_a3":"PAN","woe_id":-99,"adm0_a3_is":"PAN","adm0_a3_us":"PAN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[505,-227,506,-220]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Peru","sov_a3":"PER","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Peru","adm0_a3":"PER","geou_dif":0,"geounit":"Peru","gu_a3":"PER","su_dif":0,"subunit":"Peru","su_a3":"PER","brk_diff":0,"name":"Peru","name_long":"Peru","brk_a3":"PER","brk_name":"Peru","brk_group":null,"abbrev":"Peru","postal":"PE","formal_en":"Republic of Peru","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Peru","name_alt":null,"mapcolor7":4,"mapcolor8":4,"mapcolor9":4,"mapcolor13":11,"pop_est":29546963,"gdp_md_est":247300,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PE","iso_a3":"PER","iso_n3":"604","un_a3":"604","wb_a2":"PE","wb_a3":"PER","woe_id":-99,"adm0_a3_is":"PER","adm0_a3_us":"PER","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-177,507,-259,-223,-108,-104]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Philippines","sov_a3":"PHL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Philippines","adm0_a3":"PHL","geou_dif":0,"geounit":"Philippines","gu_a3":"PHL","su_dif":0,"subunit":"Philippines","su_a3":"PHL","brk_diff":0,"name":"Philippines","name_long":"Philippines","brk_a3":"PHL","brk_name":"Philippines","brk_group":null,"abbrev":"Phil.","postal":"PH","formal_en":"Republic of the Philippines","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Philippines","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":2,"mapcolor13":8,"pop_est":97976603,"gdp_md_est":317500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PH","iso_a3":"PHL","iso_n3":"608","un_a3":"608","wb_a2":"PH","wb_a3":"PHL","woe_id":-99,"adm0_a3_is":"PHL","adm0_a3_us":"PHL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Papua New Guinea","sov_a3":"PNG","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Papua New Guinea","adm0_a3":"PNG","geou_dif":0,"geounit":"Papua New Guinea","gu_a3":"PNG","su_dif":1,"subunit":"Papua New Guinea","su_a3":"PN1","brk_diff":0,"name":"Papua New Guinea","name_long":"Papua New Guinea","brk_a3":"PN1","brk_name":"Papua New Guinea","brk_group":null,"abbrev":"P.N.G.","postal":"PG","formal_en":"Independent State of Papua New Guinea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Papua New Guinea","name_alt":null,"mapcolor7":4,"mapcolor8":2,"mapcolor9":3,"mapcolor13":1,"pop_est":6057263,"gdp_md_est":13210,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PG","iso_a3":"PNG","iso_n3":"598","un_a3":"598","wb_a2":"PG","wb_a3":"PNG","woe_id":-99,"adm0_a3_is":"PNG","adm0_a3_us":"PNG","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":16,"long_len":16,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[[515]],[[516]],[[-357,517]],[[518]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Poland","sov_a3":"POL","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Poland","adm0_a3":"POL","geou_dif":0,"geounit":"Poland","gu_a3":"POL","su_dif":0,"subunit":"Poland","su_a3":"POL","brk_diff":0,"name":"Poland","name_long":"Poland","brk_a3":"POL","brk_name":"Poland","brk_group":null,"abbrev":"Pol.","postal":"PL","formal_en":"Republic of Poland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Poland","name_alt":null,"mapcolor7":3,"mapcolor8":7,"mapcolor9":1,"mapcolor13":2,"pop_est":38482919,"gdp_md_est":667900,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PL","iso_a3":"POL","iso_n3":"616","un_a3":"616","wb_a2":"PL","wb_a3":"POL","woe_id":-99,"adm0_a3_is":"POL","adm0_a3_us":"POL","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-236,519,520,521,522,-442,-99,523,524,-233]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Dependency","admin":"Puerto Rico","adm0_a3":"PRI","geou_dif":0,"geounit":"Puerto Rico","gu_a3":"PRI","su_dif":0,"subunit":"Puerto Rico","su_a3":"PRI","brk_diff":0,"name":"Puerto Rico","name_long":"Puerto Rico","brk_a3":"PRI","brk_name":"Puerto Rico","brk_group":null,"abbrev":"P.R.","postal":"PR","formal_en":"Commonwealth of Puerto Rico","formal_fr":null,"note_adm0":"Commonwealth of U.S.A.","note_brk":null,"name_sort":"Puerto Rico","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":3971020,"gdp_md_est":70230,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"PR","iso_a3":"PRI","iso_n3":"630","un_a3":"630","wb_a2":"PR","wb_a3":"PRI","woe_id":-99,"adm0_a3_is":"PRI","adm0_a3_us":"PRI","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":-99},"arcs":[[525]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"North Korea","sov_a3":"PRK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"North Korea","adm0_a3":"PRK","geou_dif":0,"geounit":"North Korea","gu_a3":"PRK","su_dif":0,"subunit":"North Korea","su_a3":"PRK","brk_diff":0,"name":"Dem. Rep. Korea","name_long":"Dem. Rep. Korea","brk_a3":"PRK","brk_name":"Dem. Rep. Korea","brk_group":null,"abbrev":"N.K.","postal":"KP","formal_en":"Democratic People's Republic of Korea","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Korea, Dem. Rep.","name_alt":null,"mapcolor7":3,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":22665345,"gdp_md_est":40000,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"KP","iso_a3":"PRK","iso_n3":"408","un_a3":"408","wb_a2":"KP","wb_a3":"PRK","woe_id":-99,"adm0_a3_is":"PRK","adm0_a3_us":"PRK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":15,"long_len":15,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[526,527,528,529,-419,530,-179]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Portugal","sov_a3":"PRT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Portugal","adm0_a3":"PRT","geou_dif":0,"geounit":"Portugal","gu_a3":"PRT","su_dif":1,"subunit":"Portugal","su_a3":"PR1","brk_diff":0,"name":"Portugal","name_long":"Portugal","brk_a3":"PR1","brk_name":"Portugal","brk_group":null,"abbrev":"Port.","postal":"P","formal_en":"Portuguese Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Portugal","name_alt":null,"mapcolor7":1,"mapcolor8":7,"mapcolor9":1,"mapcolor13":4,"pop_est":10707924,"gdp_md_est":208627,"pop_year":-99,"lastcensus":2011,"gdp_year":0,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"PT","iso_a3":"PRT","iso_n3":"620","un_a3":"620","wb_a2":"PT","wb_a3":"PRT","woe_id":-99,"adm0_a3_is":"PRT","adm0_a3_us":"PRT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-271,531]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Paraguay","sov_a3":"PRY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Paraguay","adm0_a3":"PRY","geou_dif":0,"geounit":"Paraguay","gu_a3":"PRY","su_dif":0,"subunit":"Paraguay","su_a3":"PRY","brk_diff":0,"name":"Paraguay","name_long":"Paraguay","brk_a3":"PRY","brk_name":"Paraguay","brk_group":null,"abbrev":"Para.","postal":"PY","formal_en":"Republic of Paraguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Paraguay","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":2,"pop_est":6995655,"gdp_md_est":28890,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PY","iso_a3":"PRY","iso_n3":"600","un_a3":"600","wb_a2":"PY","wb_a3":"PRY","woe_id":-99,"adm0_a3_is":"PRY","adm0_a3_us":"PRY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-106,-107,-26]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Israel","sov_a3":"ISR","adm0_dif":1,"level":2,"type":"Disputed","admin":"Palestine","adm0_a3":"PSX","geou_dif":0,"geounit":"Palestine","gu_a3":"PSX","su_dif":0,"subunit":"Palestine","su_a3":"PSX","brk_diff":0,"name":"Palestine","name_long":"Palestine","brk_a3":"PSX","brk_name":"Palestine","brk_group":null,"abbrev":"Pal.","postal":"PAL","formal_en":"West Bank and Gaza","formal_fr":null,"note_adm0":"Partial self-admin.","note_brk":"Partial self-admin.","name_sort":"Palestine (West Bank and Gaza)","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":5,"mapcolor13":8,"pop_est":4119083,"gdp_md_est":11950.77,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"PS","iso_a3":"PSE","iso_n3":"275","un_a3":"275","wb_a2":"GZ","wb_a3":"WBG","woe_id":-99,"adm0_a3_is":"PSE","adm0_a3_us":"PSX","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":-99},"arcs":[[-396,-383]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Qatar","sov_a3":"QAT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Qatar","adm0_a3":"QAT","geou_dif":0,"geounit":"Qatar","gu_a3":"QAT","su_dif":0,"subunit":"Qatar","su_a3":"QAT","brk_diff":0,"name":"Qatar","name_long":"Qatar","brk_a3":"QAT","brk_name":"Qatar","brk_group":null,"abbrev":"Qatar","postal":"QA","formal_en":"State of Qatar","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Qatar","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":4,"pop_est":833285,"gdp_md_est":91330,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"QA","iso_a3":"QAT","iso_n3":"634","un_a3":"634","wb_a2":"QA","wb_a3":"QAT","woe_id":-99,"adm0_a3_is":"QAT","adm0_a3_us":"QAT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[532,533]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Romania","sov_a3":"ROU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Romania","adm0_a3":"ROU","geou_dif":0,"geounit":"Romania","gu_a3":"ROU","su_dif":0,"subunit":"Romania","su_a3":"ROU","brk_diff":0,"name":"Romania","name_long":"Romania","brk_a3":"ROU","brk_name":"Romania","brk_group":null,"abbrev":"Rom.","postal":"RO","formal_en":"Romania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Romania","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":3,"mapcolor13":13,"pop_est":22215421,"gdp_md_est":271400,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RO","iso_a3":"ROU","iso_n3":"642","un_a3":"642","wb_a2":"RO","wb_a3":"ROM","woe_id":-99,"adm0_a3_is":"ROU","adm0_a3_us":"ROU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[534,-450,535,536,-83,537,-345]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Russia","sov_a3":"RUS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Russia","adm0_a3":"RUS","geou_dif":0,"geounit":"Russia","gu_a3":"RUS","su_dif":0,"subunit":"Russia","su_a3":"RUS","brk_diff":0,"name":"Russia","name_long":"Russian Federation","brk_a3":"RUS","brk_name":"Russia","brk_group":null,"abbrev":"Rus.","postal":"RUS","formal_en":"Russian Federation","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Russian Federation","name_alt":null,"mapcolor7":2,"mapcolor8":5,"mapcolor9":7,"mapcolor13":7,"pop_est":140041247,"gdp_md_est":2266000,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"3. Emerging region: BRIC","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RU","iso_a3":"RUS","iso_n3":"643","un_a3":"643","wb_a2":"RU","wb_a3":"RUS","woe_id":-99,"adm0_a3_is":"RUS","adm0_a3_us":"RUS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":18,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[538]],[[-523,539,-439]],[[540,541,542]],[[543]],[[544]],[[545]],[[546]],[[-527,-196,-465,-194,-403,547,-61,-305,548,549,-97,-444,-273,550,-281,-493,551,552,553,554,555,556,557,558,559,560,561]],[[562]],[[563]],[[564]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Rwanda","sov_a3":"RWA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Rwanda","adm0_a3":"RWA","geou_dif":0,"geounit":"Rwanda","gu_a3":"RWA","su_dif":0,"subunit":"Rwanda","su_a3":"RWA","brk_diff":0,"name":"Rwanda","name_long":"Rwanda","brk_a3":"RWA","brk_name":"Rwanda","brk_group":null,"abbrev":"Rwa.","postal":"RW","formal_en":"Republic of Rwanda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Rwanda","name_alt":null,"mapcolor7":5,"mapcolor8":2,"mapcolor9":3,"mapcolor13":10,"pop_est":10473282,"gdp_md_est":9706,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"RW","iso_a3":"RWA","iso_n3":"646","un_a3":"646","wb_a2":"RW","wb_a3":"RWA","woe_id":-99,"adm0_a3_is":"RWA","adm0_a3_us":"RWA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[565,-63,-210,566]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":7,"sovereignt":"Western Sahara","sov_a3":"SAH","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Western Sahara","adm0_a3":"SAH","geou_dif":0,"geounit":"Western Sahara","gu_a3":"SAH","su_dif":0,"subunit":"Western Sahara","su_a3":"SAH","brk_diff":1,"name":"W. Sahara","name_long":"Western Sahara","brk_a3":"B28","brk_name":"W. Sahara","brk_group":null,"abbrev":"W. Sah.","postal":"WS","formal_en":"Sahrawi Arab Democratic Republic","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Morocco","name_sort":"Western Sahara","name_alt":null,"mapcolor7":4,"mapcolor8":7,"mapcolor9":4,"mapcolor13":4,"pop_est":-99,"gdp_md_est":-99,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"EH","iso_a3":"ESH","iso_n3":"732","un_a3":"732","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"MAR","adm0_a3_us":"SAH","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":9,"long_len":14,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[-253,-476,567,-445]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Saudi Arabia","sov_a3":"SAU","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Saudi Arabia","adm0_a3":"SAU","geou_dif":0,"geounit":"Saudi Arabia","gu_a3":"SAU","su_dif":0,"subunit":"Saudi Arabia","su_a3":"SAU","brk_diff":0,"name":"Saudi Arabia","name_long":"Saudi Arabia","brk_a3":"SAU","brk_name":"Saudi Arabia","brk_group":null,"abbrev":"Saud.","postal":"SA","formal_en":"Kingdom of Saudi Arabia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Saudi Arabia","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":6,"mapcolor13":7,"pop_est":28686633,"gdp_md_est":576500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"SA","iso_a3":"SAU","iso_n3":"682","un_a3":"682","wb_a2":"SA","wb_a3":"SAU","woe_id":-99,"adm0_a3_is":"SAU","adm0_a3_us":"SAU","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[568,-394,-377,-424,569,-534,570,-23,-502,571]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sudan","sov_a3":"SDN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sudan","adm0_a3":"SDN","geou_dif":0,"geounit":"Sudan","gu_a3":"SDN","su_dif":0,"subunit":"Sudan","su_a3":"SDN","brk_diff":0,"name":"Sudan","name_long":"Sudan","brk_a3":"SDN","brk_name":"Sudan","brk_group":null,"abbrev":"Sudan","postal":"SD","formal_en":"Republic of the Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sudan","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":4,"mapcolor13":1,"pop_est":25946220,"gdp_md_est":88080,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SD","iso_a3":"SDN","iso_n3":"729","un_a3":"729","wb_a2":"SD","wb_a3":"SDN","woe_id":-99,"adm0_a3_is":"SDN","adm0_a3_us":"SDN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Sub-Saharan Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[572,573,-125,574,-435,-261,575,-266,-280,576]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"South Sudan","sov_a3":"SDS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Sudan","adm0_a3":"SDS","geou_dif":0,"geounit":"South Sudan","gu_a3":"SDS","su_dif":0,"subunit":"South Sudan","su_a3":"SDS","brk_diff":0,"name":"S. Sudan","name_long":"South Sudan","brk_a3":"SDS","brk_name":"S. Sudan","brk_group":null,"abbrev":"S. Sud.","postal":"SS","formal_en":"Republic of South Sudan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Sudan","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":3,"mapcolor13":5,"pop_est":10625176,"gdp_md_est":13227,"pop_year":-99,"lastcensus":2008,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SS","iso_a3":"SSD","iso_n3":"728","un_a3":"728","wb_a2":"SS","wb_a3":"SSD","woe_id":-99,"adm0_a3_is":"SSD","adm0_a3_us":"SDS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":11,"abbrev_len":7,"tiny":-99,"homepart":1},"arcs":[[577,-278,-410,578,-215,-127,579,-573]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Senegal","sov_a3":"SEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Senegal","adm0_a3":"SEN","geou_dif":0,"geounit":"Senegal","gu_a3":"SEN","su_dif":0,"subunit":"Senegal","su_a3":"SEN","brk_diff":0,"name":"Senegal","name_long":"Senegal","brk_a3":"SEN","brk_name":"Senegal","brk_group":null,"abbrev":"Sen.","postal":"SN","formal_en":"Republic of Senegal","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Senegal","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":5,"mapcolor13":5,"pop_est":13711597,"gdp_md_est":21980,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SN","iso_a3":"SEN","iso_n3":"686","un_a3":"686","wb_a2":"SN","wb_a3":"SEN","woe_id":-99,"adm0_a3_is":"SEN","adm0_a3_us":"SEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[580,-474,-460,-313,-318,581,-316]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Solomon Islands","sov_a3":"SLB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Solomon Islands","adm0_a3":"SLB","geou_dif":0,"geounit":"Solomon Islands","gu_a3":"SLB","su_dif":0,"subunit":"Solomon Islands","su_a3":"SLB","brk_diff":0,"name":"Solomon Is.","name_long":"Solomon Islands","brk_a3":"SLB","brk_name":"Solomon Is.","brk_group":null,"abbrev":"S. Is.","postal":"SB","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Solomon Islands","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":6,"pop_est":595613,"gdp_md_est":1078,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SB","iso_a3":"SLB","iso_n3":"090","un_a3":"090","wb_a2":"SB","wb_a3":"SLB","woe_id":-99,"adm0_a3_is":"SLB","adm0_a3_us":"SLB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":11,"long_len":15,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[[582]],[[583]],[[584]],[[585]],[[586]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Sierra Leone","sov_a3":"SLE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sierra Leone","adm0_a3":"SLE","geou_dif":0,"geounit":"Sierra Leone","gu_a3":"SLE","su_dif":0,"subunit":"Sierra Leone","su_a3":"SLE","brk_diff":0,"name":"Sierra Leone","name_long":"Sierra Leone","brk_a3":"SLE","brk_name":"Sierra Leone","brk_group":null,"abbrev":"S.L.","postal":"SL","formal_en":"Republic of Sierra Leone","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sierra Leone","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":1,"mapcolor13":7,"pop_est":6440053,"gdp_md_est":4285,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SL","iso_a3":"SLE","iso_n3":"694","un_a3":"694","wb_a2":"SL","wb_a3":"SLE","woe_id":-99,"adm0_a3_is":"SLE","adm0_a3_us":"SLE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[587,-310,-431]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"El Salvador","sov_a3":"SLV","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"El Salvador","adm0_a3":"SLV","geou_dif":0,"geounit":"El Salvador","gu_a3":"SLV","su_dif":0,"subunit":"El Salvador","su_a3":"SLV","brk_diff":0,"name":"El Salvador","name_long":"El Salvador","brk_a3":"SLV","brk_name":"El Salvador","brk_group":null,"abbrev":"El. S.","postal":"SV","formal_en":"Republic of El Salvador","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"El Salvador","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":6,"mapcolor13":8,"pop_est":7185218,"gdp_md_est":43630,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SV","iso_a3":"SLV","iso_n3":"222","un_a3":"222","wb_a2":"SV","wb_a3":"SLV","woe_id":-99,"adm0_a3_is":"SLV","adm0_a3_us":"SLV","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Central America","region_wb":"Latin America & Caribbean","name_len":11,"long_len":11,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[588,-329,-334]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Somaliland","sov_a3":"SOL","adm0_dif":0,"level":2,"type":"Indeterminate","admin":"Somaliland","adm0_a3":"SOL","geou_dif":0,"geounit":"Somaliland","gu_a3":"SOL","su_dif":0,"subunit":"Somaliland","su_a3":"SOL","brk_diff":1,"name":"Somaliland","name_long":"Somaliland","brk_a3":"B30","brk_name":"Somaliland","brk_group":null,"abbrev":"Solnd.","postal":"SL","formal_en":"Republic of Somaliland","formal_fr":null,"note_adm0":"Self admin.","note_brk":"Self admin.; Claimed by Somalia","name_sort":"Somaliland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":5,"mapcolor13":2,"pop_est":3500000,"gdp_md_est":12250,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"-99","iso_a3":"-99","iso_n3":"-99","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":10,"long_len":10,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[-275,-243,589,590,591,592]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Somalia","sov_a3":"SOM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Somalia","adm0_a3":"SOM","geou_dif":0,"geounit":"Somalia","gu_a3":"SOM","su_dif":0,"subunit":"Somalia","su_a3":"SOM","brk_diff":0,"name":"Somalia","name_long":"Somalia","brk_a3":"SOM","brk_name":"Somalia","brk_group":null,"abbrev":"Som.","postal":"SO","formal_en":"Federal Republic of Somalia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Somalia","name_alt":null,"mapcolor7":2,"mapcolor8":8,"mapcolor9":6,"mapcolor13":7,"pop_est":9832017,"gdp_md_est":5524,"pop_year":-99,"lastcensus":1987,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"SO","iso_a3":"SOM","iso_n3":"706","un_a3":"706","wb_a2":"SO","wb_a3":"SOM","woe_id":-99,"adm0_a3_is":"SOM","adm0_a3_us":"SOM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-411,-276,-593,593,594,595]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Republic of Serbia","sov_a3":"SRB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Republic of Serbia","adm0_a3":"SRB","geou_dif":0,"geounit":"Republic of Serbia","gu_a3":"SRB","su_dif":0,"subunit":"Republic of Serbia","su_a3":"SRB","brk_diff":0,"name":"Serbia","name_long":"Serbia","brk_a3":"SRB","brk_name":"Serbia","brk_group":null,"abbrev":"Serb.","postal":"RS","formal_en":"Republic of Serbia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Serbia","name_alt":null,"mapcolor7":3,"mapcolor8":3,"mapcolor9":2,"mapcolor13":10,"pop_est":7379339,"gdp_md_est":80340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"RS","iso_a3":"SRB","iso_n3":"688","un_a3":"688","wb_a2":"YF","wb_a3":"SRB","woe_id":-99,"adm0_a3_is":"SRB","adm0_a3_us":"SRB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-88,-457,-421,-464,-92,-337,-346,-538]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Suriname","sov_a3":"SUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Suriname","adm0_a3":"SUR","geou_dif":0,"geounit":"Suriname","gu_a3":"SUR","su_dif":0,"subunit":"Suriname","su_a3":"SUR","brk_diff":0,"name":"Suriname","name_long":"Suriname","brk_a3":"SUR","brk_name":"Suriname","brk_group":null,"abbrev":"Sur.","postal":"SR","formal_en":"Republic of Suriname","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Suriname","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":7,"mapcolor13":6,"pop_est":481267,"gdp_md_est":4254,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SR","iso_a3":"SUR","iso_n3":"740","un_a3":"740","wb_a2":"SR","wb_a3":"SUR","woe_id":-99,"adm0_a3_is":"SUR","adm0_a3_us":"SUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[596,-289,-112,-331]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovakia","sov_a3":"SVK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovakia","adm0_a3":"SVK","geou_dif":0,"geounit":"Slovakia","gu_a3":"SVK","su_dif":0,"subunit":"Slovakia","su_a3":"SVK","brk_diff":0,"name":"Slovakia","name_long":"Slovakia","brk_a3":"SVK","brk_name":"Slovakia","brk_group":null,"abbrev":"Svk.","postal":"SK","formal_en":"Slovak Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovak Republic","name_alt":null,"mapcolor7":2,"mapcolor8":4,"mapcolor9":4,"mapcolor13":9,"pop_est":5463046,"gdp_md_est":119500,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SK","iso_a3":"SVK","iso_n3":"703","un_a3":"703","wb_a2":"SK","wb_a3":"SVK","woe_id":-99,"adm0_a3_is":"SVK","adm0_a3_us":"SVK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-525,597,-343,-56,-234]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Slovenia","sov_a3":"SVN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Slovenia","adm0_a3":"SVN","geou_dif":0,"geounit":"Slovenia","gu_a3":"SVN","su_dif":0,"subunit":"Slovenia","su_a3":"SVN","brk_diff":0,"name":"Slovenia","name_long":"Slovenia","brk_a3":"SVN","brk_name":"Slovenia","brk_group":null,"abbrev":"Slo.","postal":"SLO","formal_en":"Republic of Slovenia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Slovenia","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":2,"mapcolor13":12,"pop_est":2005692,"gdp_md_est":59340,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SI","iso_a3":"SVN","iso_n3":"705","un_a3":"705","wb_a2":"SI","wb_a3":"SVN","woe_id":-99,"adm0_a3_is":"SVN","adm0_a3_us":"SVN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Southern Europe","region_wb":"Europe & Central Asia","name_len":8,"long_len":8,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-51,-347,-340,598,-390]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Sweden","sov_a3":"SWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Sweden","adm0_a3":"SWE","geou_dif":0,"geounit":"Sweden","gu_a3":"SWE","su_dif":0,"subunit":"Sweden","su_a3":"SWE","brk_diff":0,"name":"Sweden","name_long":"Sweden","brk_a3":"SWE","brk_name":"Sweden","brk_group":null,"abbrev":"Swe.","postal":"S","formal_en":"Kingdom of Sweden","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Sweden","name_alt":null,"mapcolor7":1,"mapcolor8":4,"mapcolor9":2,"mapcolor13":4,"pop_est":9059651,"gdp_md_est":344300,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"1. High income: OECD","wikipedia":-99,"fips_10":null,"iso_a2":"SE","iso_a3":"SWE","iso_n3":"752","un_a3":"752","wb_a2":"SE","wb_a3":"SWE","woe_id":-99,"adm0_a3_is":"SWE","adm0_a3_us":"SWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Northern Europe","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-494,-283,599]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Swaziland","sov_a3":"SWZ","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Swaziland","adm0_a3":"SWZ","geou_dif":0,"geounit":"Swaziland","gu_a3":"SWZ","su_dif":0,"subunit":"Swaziland","su_a3":"SWZ","brk_diff":0,"name":"Swaziland","name_long":"Swaziland","brk_a3":"SWZ","brk_name":"Swaziland","brk_group":null,"abbrev":"Swz.","postal":"SW","formal_en":"Kingdom of Swaziland","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Swaziland","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1123913,"gdp_md_est":5702,"pop_year":-99,"lastcensus":2007,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SZ","iso_a3":"SWZ","iso_n3":"748","un_a3":"748","wb_a2":"SZ","wb_a3":"SWZ","woe_id":-99,"adm0_a3_is":"SWZ","adm0_a3_us":"SWZ","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[600,-469]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Syria","sov_a3":"SYR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Syria","adm0_a3":"SYR","geou_dif":0,"geounit":"Syria","gu_a3":"SYR","su_dif":0,"subunit":"Syria","su_a3":"SYR","brk_diff":0,"name":"Syria","name_long":"Syria","brk_a3":"SYR","brk_name":"Syria","brk_group":null,"abbrev":"Syria","postal":"SYR","formal_en":"Syrian Arab Republic","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Syrian Arab Republic","name_alt":null,"mapcolor7":2,"mapcolor8":6,"mapcolor9":2,"mapcolor13":6,"pop_est":20178485,"gdp_md_est":98830,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"SY","iso_a3":"SYR","iso_n3":"760","un_a3":"760","wb_a2":"SY","wb_a3":"SYR","woe_id":-99,"adm0_a3_is":"SYR","adm0_a3_us":"SYR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-393,-387,-429,601,602,-379]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Chad","sov_a3":"TCD","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Chad","adm0_a3":"TCD","geou_dif":0,"geounit":"Chad","gu_a3":"TCD","su_dif":0,"subunit":"Chad","su_a3":"TCD","brk_diff":0,"name":"Chad","name_long":"Chad","brk_a3":"TCD","brk_name":"Chad","brk_group":null,"abbrev":"Chad","postal":"TD","formal_en":"Republic of Chad","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Chad","name_alt":null,"mapcolor7":6,"mapcolor8":1,"mapcolor9":8,"mapcolor13":6,"pop_est":10329208,"gdp_md_est":15860,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TD","iso_a3":"TCD","iso_n3":"148","un_a3":"148","wb_a2":"TD","wb_a3":"TCD","woe_id":-99,"adm0_a3_is":"TCD","adm0_a3_us":"TCD","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Middle Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-487,-436,-575,-124,-207]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":6,"sovereignt":"Togo","sov_a3":"TGO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Togo","adm0_a3":"TGO","geou_dif":0,"geounit":"Togo","gu_a3":"TGO","su_dif":0,"subunit":"Togo","su_a3":"TGO","brk_diff":0,"name":"Togo","name_long":"Togo","brk_a3":"TGO","brk_name":"Togo","brk_group":null,"abbrev":"Togo","postal":"TG","formal_en":"Togolese Republic","formal_fr":"République Togolaise","note_adm0":null,"note_brk":null,"name_sort":"Togo","name_alt":null,"mapcolor7":3,"mapcolor8":1,"mapcolor9":3,"mapcolor13":5,"pop_est":6019877,"gdp_md_est":5118,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TG","iso_a3":"TGO","iso_n3":"768","un_a3":"768","wb_a2":"TG","wb_a3":"TGO","woe_id":-99,"adm0_a3_is":"TGO","adm0_a3_us":"TGO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Western Africa","region_wb":"Sub-Saharan Africa","name_len":4,"long_len":4,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[603,-308,-78,-71]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Thailand","sov_a3":"THA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Thailand","adm0_a3":"THA","geou_dif":0,"geounit":"Thailand","gu_a3":"THA","su_dif":0,"subunit":"Thailand","su_a3":"THA","brk_diff":0,"name":"Thailand","name_long":"Thailand","brk_a3":"THA","brk_name":"Thailand","brk_group":null,"abbrev":"Thai.","postal":"TH","formal_en":"Kingdom of Thailand","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Thailand","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":8,"mapcolor13":1,"pop_est":65905410,"gdp_md_est":547400,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TH","iso_a3":"THA","iso_n3":"764","un_a3":"764","wb_a2":"TH","wb_a3":"THA","woe_id":-99,"adm0_a3_is":"THA","adm0_a3_us":"THA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[604,605,606,-480,607,-462,-425,-414]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Tajikistan","sov_a3":"TJK","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tajikistan","adm0_a3":"TJK","geou_dif":0,"geounit":"Tajikistan","gu_a3":"TJK","su_dif":0,"subunit":"Tajikistan","su_a3":"TJK","brk_diff":0,"name":"Tajikistan","name_long":"Tajikistan","brk_a3":"TJK","brk_name":"Tajikistan","brk_group":null,"abbrev":"Tjk.","postal":"TJ","formal_en":"Republic of Tajikistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tajikistan","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":7349145,"gdp_md_est":13160,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"6. Developing region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TJ","iso_a3":"TJK","iso_n3":"762","un_a3":"762","wb_a2":"TJ","wb_a3":"TJK","woe_id":-99,"adm0_a3_is":"TJK","adm0_a3_us":"TJK","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-412,-191,-3,608]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Turkmenistan","sov_a3":"TKM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkmenistan","adm0_a3":"TKM","geou_dif":0,"geounit":"Turkmenistan","gu_a3":"TKM","su_dif":0,"subunit":"Turkmenistan","su_a3":"TKM","brk_diff":0,"name":"Turkmenistan","name_long":"Turkmenistan","brk_a3":"TKM","brk_name":"Turkmenistan","brk_group":null,"abbrev":"Turkm.","postal":"TM","formal_en":"Turkmenistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkmenistan","name_alt":null,"mapcolor7":3,"mapcolor8":2,"mapcolor9":1,"mapcolor13":9,"pop_est":4884887,"gdp_md_est":29780,"pop_year":-99,"lastcensus":1995,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TM","iso_a3":"TKM","iso_n3":"795","un_a3":"795","wb_a2":"TM","wb_a3":"TKM","woe_id":-99,"adm0_a3_is":"TKM","adm0_a3_us":"TKM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":12,"long_len":12,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[-369,609,-401,610,-1]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"East Timor","sov_a3":"TLS","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"East Timor","adm0_a3":"TLS","geou_dif":0,"geounit":"East Timor","gu_a3":"TLS","su_dif":0,"subunit":"East Timor","su_a3":"TLS","brk_diff":0,"name":"Timor-Leste","name_long":"Timor-Leste","brk_a3":"TLS","brk_name":"Timor-Leste","brk_group":null,"abbrev":"T.L.","postal":"TL","formal_en":"Democratic Republic of Timor-Leste","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Timor-Leste","name_alt":"East Timor","mapcolor7":2,"mapcolor8":2,"mapcolor9":4,"mapcolor13":3,"pop_est":1131612,"gdp_md_est":2520,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TL","iso_a3":"TLS","iso_n3":"626","un_a3":"626","wb_a2":"TP","wb_a3":"TMP","woe_id":-99,"adm0_a3_is":"TLS","adm0_a3_us":"TLS","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":11,"long_len":11,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[611,-349]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":5,"sovereignt":"Trinidad and Tobago","sov_a3":"TTO","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Trinidad and Tobago","adm0_a3":"TTO","geou_dif":0,"geounit":"Trinidad and Tobago","gu_a3":"TTO","su_dif":0,"subunit":"Trinidad and Tobago","su_a3":"TTO","brk_diff":0,"name":"Trinidad and Tobago","name_long":"Trinidad and Tobago","brk_a3":"TTO","brk_name":"Trinidad and Tobago","brk_group":null,"abbrev":"Tr.T.","postal":"TT","formal_en":"Republic of Trinidad and Tobago","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Trinidad and Tobago","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":2,"mapcolor13":5,"pop_est":1310000,"gdp_md_est":29010,"pop_year":-99,"lastcensus":2011,"gdp_year":-99,"economy":"6. Developing region","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TT","iso_a3":"TTO","iso_n3":"780","un_a3":"780","wb_a2":"TT","wb_a3":"TTO","woe_id":-99,"adm0_a3_is":"TTO","adm0_a3_us":"TTO","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Caribbean","region_wb":"Latin America & Caribbean","name_len":19,"long_len":19,"abbrev_len":5,"tiny":2,"homepart":1},"arcs":[[612]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Tunisia","sov_a3":"TUN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Tunisia","adm0_a3":"TUN","geou_dif":0,"geounit":"Tunisia","gu_a3":"TUN","su_dif":0,"subunit":"Tunisia","su_a3":"TUN","brk_diff":0,"name":"Tunisia","name_long":"Tunisia","brk_a3":"TUN","brk_name":"Tunisia","brk_group":null,"abbrev":"Tun.","postal":"TN","formal_en":"Republic of Tunisia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tunisia","name_alt":null,"mapcolor7":4,"mapcolor8":3,"mapcolor9":3,"mapcolor13":2,"pop_est":10486339,"gdp_md_est":81710,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"6. Developing region","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TN","iso_a3":"TUN","iso_n3":"788","un_a3":"788","wb_a2":"TN","wb_a3":"TUN","woe_id":-99,"adm0_a3_is":"TUN","adm0_a3_us":"TUN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Northern Africa","region_wb":"Middle East & North Africa","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-256,613,-433]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Turkey","sov_a3":"TUR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Turkey","adm0_a3":"TUR","geou_dif":0,"geounit":"Turkey","gu_a3":"TUR","su_dif":0,"subunit":"Turkey","su_a3":"TUR","brk_diff":0,"name":"Turkey","name_long":"Turkey","brk_a3":"TUR","brk_name":"Turkey","brk_group":null,"abbrev":"Tur.","postal":"TR","formal_en":"Republic of Turkey","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Turkey","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":8,"mapcolor13":4,"pop_est":76805524,"gdp_md_est":902700,"pop_year":-99,"lastcensus":2000,"gdp_year":-99,"economy":"4. Emerging region: MIKT","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"TR","iso_a3":"TUR","iso_n3":"792","un_a3":"792","wb_a2":"TR","wb_a3":"TUR","woe_id":-99,"adm0_a3_is":"TUR","adm0_a3_us":"TUR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Europe & Central Asia","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[[-306,-36,-373,-380,-603,614]],[[-323,-85,615]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Taiwan","sov_a3":"TWN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Taiwan","adm0_a3":"TWN","geou_dif":0,"geounit":"Taiwan","gu_a3":"TWN","su_dif":0,"subunit":"Taiwan","su_a3":"TWN","brk_diff":1,"name":"Taiwan","name_long":"Taiwan","brk_a3":"B77","brk_name":"Taiwan","brk_group":null,"abbrev":"Taiwan","postal":"TW","formal_en":null,"formal_fr":null,"note_adm0":null,"note_brk":"Self admin.; Claimed by China","name_sort":"Taiwan","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":7,"mapcolor13":2,"pop_est":22974347,"gdp_md_est":712000,"pop_year":-99,"lastcensus":-99,"gdp_year":-99,"economy":"2. Developed region: nonG7","income_grp":"2. High income: nonOECD","wikipedia":-99,"fips_10":null,"iso_a2":"TW","iso_a3":"TWN","iso_n3":"158","un_a3":"-099","wb_a2":"-99","wb_a3":"-99","woe_id":-99,"adm0_a3_is":"TWN","adm0_a3_us":"TWN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Eastern Asia","region_wb":"East Asia & Pacific","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[616]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"United Republic of Tanzania","sov_a3":"TZA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"United Republic of Tanzania","adm0_a3":"TZA","geou_dif":0,"geounit":"Tanzania","gu_a3":"TZA","su_dif":0,"subunit":"Tanzania","su_a3":"TZA","brk_diff":0,"name":"Tanzania","name_long":"Tanzania","brk_a3":"TZA","brk_name":"Tanzania","brk_group":null,"abbrev":"Tanz.","postal":"TZ","formal_en":"United Republic of Tanzania","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Tanzania","name_alt":null,"mapcolor7":3,"mapcolor8":6,"mapcolor9":2,"mapcolor13":2,"pop_est":41048532,"gdp_md_est":54250,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"TZ","iso_a3":"TZA","iso_n3":"834","un_a3":"834","wb_a2":"TZ","wb_a3":"TZA","woe_id":-99,"adm0_a3_is":"TZA","adm0_a3_us":"TZA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-408,617,-466,-478,618,-211,-64,-566,619]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uganda","sov_a3":"UGA","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uganda","adm0_a3":"UGA","geou_dif":0,"geounit":"Uganda","gu_a3":"UGA","su_dif":0,"subunit":"Uganda","su_a3":"UGA","brk_diff":0,"name":"Uganda","name_long":"Uganda","brk_a3":"UGA","brk_name":"Uganda","brk_group":null,"abbrev":"Uga.","postal":"UG","formal_en":"Republic of Uganda","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uganda","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":6,"mapcolor13":4,"pop_est":32369558,"gdp_md_est":39380,"pop_year":-99,"lastcensus":2002,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"UG","iso_a3":"UGA","iso_n3":"800","un_a3":"800","wb_a2":"UG","wb_a3":"UGA","woe_id":-99,"adm0_a3_is":"UGA","adm0_a3_us":"UGA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-567,-209,-579,-409,-620]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Ukraine","sov_a3":"UKR","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Ukraine","adm0_a3":"UKR","geou_dif":0,"geounit":"Ukraine","gu_a3":"UKR","su_dif":0,"subunit":"Ukraine","su_a3":"UKR","brk_diff":0,"name":"Ukraine","name_long":"Ukraine","brk_a3":"UKR","brk_name":"Ukraine","brk_group":null,"abbrev":"Ukr.","postal":"UA","formal_en":"Ukraine","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Ukraine","name_alt":null,"mapcolor7":5,"mapcolor8":1,"mapcolor9":6,"mapcolor13":3,"pop_est":45700395,"gdp_md_est":339800,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UA","iso_a3":"UKR","iso_n3":"804","un_a3":"804","wb_a2":"UA","wb_a3":"UKR","woe_id":-99,"adm0_a3_is":"UKR","adm0_a3_us":"UKR","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Europe","region_un":"Europe","subregion":"Eastern Europe","region_wb":"Europe & Central Asia","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-550,620,-536,-449,-535,-344,-598,-524,-98]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Uruguay","sov_a3":"URY","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uruguay","adm0_a3":"URY","geou_dif":0,"geounit":"Uruguay","gu_a3":"URY","su_dif":0,"subunit":"Uruguay","su_a3":"URY","brk_diff":0,"name":"Uruguay","name_long":"Uruguay","brk_a3":"URY","brk_name":"Uruguay","brk_group":null,"abbrev":"Ury.","postal":"UY","formal_en":"Oriental Republic of Uruguay","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uruguay","name_alt":null,"mapcolor7":1,"mapcolor8":2,"mapcolor9":2,"mapcolor13":10,"pop_est":3494382,"gdp_md_est":43160,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UY","iso_a3":"URY","iso_n3":"858","un_a3":"858","wb_a2":"UY","wb_a3":"URY","woe_id":-99,"adm0_a3_is":"URY","adm0_a3_us":"URY","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":7,"long_len":7,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[-115,621,-28]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"United States of America","sov_a3":"US1","adm0_dif":1,"level":2,"type":"Country","admin":"United States of America","adm0_a3":"USA","geou_dif":0,"geounit":"United States of America","gu_a3":"USA","su_dif":0,"subunit":"United States of America","su_a3":"USA","brk_diff":0,"name":"United States","name_long":"United States","brk_a3":"USA","brk_name":"United States","brk_group":null,"abbrev":"U.S.A.","postal":"US","formal_en":"United States of America","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"United States of America","name_alt":null,"mapcolor7":4,"mapcolor8":5,"mapcolor9":1,"mapcolor13":1,"pop_est":313973000,"gdp_md_est":15094000,"pop_year":0,"lastcensus":2010,"gdp_year":0,"economy":"1. Developed region: G7","income_grp":"1. High income: OECD","wikipedia":0,"fips_10":null,"iso_a2":"US","iso_a3":"USA","iso_n3":"840","un_a3":"840","wb_a2":"US","wb_a3":"USA","woe_id":-99,"adm0_a3_is":"USA","adm0_a3_us":"USA","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"North America","region_un":"Americas","subregion":"Northern America","region_wb":"North America","name_len":13,"long_len":13,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[[622]],[[623]],[[624]],[[625]],[[626]],[[627,628,629,630,631,632,633,634,635,-456,636,637,638,-141]],[[639]],[[640]],[[641]],[[-143,642,643,644,645,646]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Uzbekistan","sov_a3":"UZB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Uzbekistan","adm0_a3":"UZB","geou_dif":0,"geounit":"Uzbekistan","gu_a3":"UZB","su_dif":0,"subunit":"Uzbekistan","su_a3":"UZB","brk_diff":0,"name":"Uzbekistan","name_long":"Uzbekistan","brk_a3":"UZB","brk_name":"Uzbekistan","brk_group":null,"abbrev":"Uzb.","postal":"UZ","formal_en":"Republic of Uzbekistan","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Uzbekistan","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":5,"mapcolor13":4,"pop_est":27606007,"gdp_md_est":71670,"pop_year":-99,"lastcensus":1989,"gdp_year":-99,"economy":"6. Developing region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"UZ","iso_a3":"UZB","iso_n3":"860","un_a3":"860","wb_a2":"UZ","wb_a3":"UZB","woe_id":-99,"adm0_a3_is":"UZB","adm0_a3_us":"UZB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Central Asia","region_wb":"Europe & Central Asia","name_len":10,"long_len":10,"abbrev_len":4,"tiny":5,"homepart":1},"arcs":[[-611,-400,-413,-609,-2]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Venezuela","sov_a3":"VEN","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Venezuela","adm0_a3":"VEN","geou_dif":0,"geounit":"Venezuela","gu_a3":"VEN","su_dif":0,"subunit":"Venezuela","su_a3":"VEN","brk_diff":0,"name":"Venezuela","name_long":"Venezuela","brk_a3":"VEN","brk_name":"Venezuela","brk_group":null,"abbrev":"Ven.","postal":"VE","formal_en":"Bolivarian Republic of Venezuela","formal_fr":"República Bolivariana de Venezuela","note_adm0":null,"note_brk":null,"name_sort":"Venezuela, RB","name_alt":null,"mapcolor7":1,"mapcolor8":3,"mapcolor9":1,"mapcolor13":4,"pop_est":26814843,"gdp_md_est":357400,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VE","iso_a3":"VEN","iso_n3":"862","un_a3":"862","wb_a2":"VE","wb_a3":"VEN","woe_id":-99,"adm0_a3_is":"VEN","adm0_a3_us":"VEN","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"South America","region_un":"Americas","subregion":"South America","region_wb":"Latin America & Caribbean","name_len":9,"long_len":9,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[647,-332,-110,-222]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"Vietnam","sov_a3":"VNM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vietnam","adm0_a3":"VNM","geou_dif":0,"geounit":"Vietnam","gu_a3":"VNM","su_dif":0,"subunit":"Vietnam","su_a3":"VNM","brk_diff":0,"name":"Vietnam","name_long":"Vietnam","brk_a3":"VNM","brk_name":"Vietnam","brk_group":null,"abbrev":"Viet.","postal":"VN","formal_en":"Socialist Republic of Vietnam","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vietnam","name_alt":null,"mapcolor7":5,"mapcolor8":6,"mapcolor9":5,"mapcolor13":4,"pop_est":86967524,"gdp_md_est":241700,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VN","iso_a3":"VNM","iso_n3":"704","un_a3":"704","wb_a2":"VN","wb_a3":"VNM","woe_id":-99,"adm0_a3_is":"VNM","adm0_a3_us":"VNM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"South-Eastern Asia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":5,"tiny":2,"homepart":1},"arcs":[[648,-416,-427,-183]]},{"type":"MultiPolygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":4,"sovereignt":"Vanuatu","sov_a3":"VUT","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Vanuatu","adm0_a3":"VUT","geou_dif":0,"geounit":"Vanuatu","gu_a3":"VUT","su_dif":0,"subunit":"Vanuatu","su_a3":"VUT","brk_diff":0,"name":"Vanuatu","name_long":"Vanuatu","brk_a3":"VUT","brk_name":"Vanuatu","brk_group":null,"abbrev":"Van.","postal":"VU","formal_en":"Republic of Vanuatu","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Vanuatu","name_alt":null,"mapcolor7":6,"mapcolor8":3,"mapcolor9":7,"mapcolor13":3,"pop_est":218519,"gdp_md_est":988.5,"pop_year":-99,"lastcensus":2009,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"VU","iso_a3":"VUT","iso_n3":"548","un_a3":"548","wb_a2":"VU","wb_a3":"VUT","woe_id":-99,"adm0_a3_is":"VUT","adm0_a3_us":"VUT","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Oceania","region_un":"Oceania","subregion":"Melanesia","region_wb":"East Asia & Pacific","name_len":7,"long_len":7,"abbrev_len":4,"tiny":2,"homepart":1},"arcs":[[[649]],[[650]]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Yemen","sov_a3":"YEM","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Yemen","adm0_a3":"YEM","geou_dif":0,"geounit":"Yemen","gu_a3":"YEM","su_dif":0,"subunit":"Yemen","su_a3":"YEM","brk_diff":0,"name":"Yemen","name_long":"Yemen","brk_a3":"YEM","brk_name":"Yemen","brk_group":null,"abbrev":"Yem.","postal":"YE","formal_en":"Republic of Yemen","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Yemen, Rep.","name_alt":null,"mapcolor7":5,"mapcolor8":3,"mapcolor9":3,"mapcolor13":11,"pop_est":23822783,"gdp_md_est":55280,"pop_year":-99,"lastcensus":2004,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"YE","iso_a3":"YEM","iso_n3":"887","un_a3":"887","wb_a2":"RY","wb_a3":"YEM","woe_id":-99,"adm0_a3_is":"YEM","adm0_a3_us":"YEM","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Asia","region_un":"Asia","subregion":"Western Asia","region_wb":"Middle East & North Africa","name_len":5,"long_len":5,"abbrev_len":4,"tiny":-99,"homepart":1},"arcs":[[651,-572,-501]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":2,"sovereignt":"South Africa","sov_a3":"ZAF","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"South Africa","adm0_a3":"ZAF","geou_dif":0,"geounit":"South Africa","gu_a3":"ZAF","su_dif":0,"subunit":"South Africa","su_a3":"ZAF","brk_diff":0,"name":"South Africa","name_long":"South Africa","brk_a3":"ZAF","brk_name":"South Africa","brk_group":null,"abbrev":"S.Af.","postal":"ZA","formal_en":"Republic of South Africa","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"South Africa","name_alt":null,"mapcolor7":2,"mapcolor8":3,"mapcolor9":4,"mapcolor13":2,"pop_est":49052489,"gdp_md_est":491000,"pop_year":-99,"lastcensus":2001,"gdp_year":-99,"economy":"5. Emerging region: G20","income_grp":"3. Upper middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZA","iso_a3":"ZAF","iso_n3":"710","un_a3":"710","wb_a2":"ZA","wb_a3":"ZAF","woe_id":-99,"adm0_a3_is":"ZAF","adm0_a3_us":"ZAF","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Southern Africa","region_wb":"Sub-Saharan Africa","name_len":12,"long_len":12,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-485,-120,652,-470,-601,-468,653],[-438]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zambia","sov_a3":"ZMB","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zambia","adm0_a3":"ZMB","geou_dif":0,"geounit":"Zambia","gu_a3":"ZMB","su_dif":0,"subunit":"Zambia","su_a3":"ZMB","brk_diff":0,"name":"Zambia","name_long":"Zambia","brk_a3":"ZMB","brk_name":"Zambia","brk_group":null,"abbrev":"Zambia","postal":"ZM","formal_en":"Republic of Zambia","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zambia","name_alt":null,"mapcolor7":5,"mapcolor8":8,"mapcolor9":5,"mapcolor13":13,"pop_est":11862740,"gdp_md_est":17500,"pop_year":-99,"lastcensus":2010,"gdp_year":-99,"economy":"7. Least developed region","income_grp":"4. Lower middle income","wikipedia":-99,"fips_10":null,"iso_a2":"ZM","iso_a3":"ZMB","iso_n3":"894","un_a3":"894","wb_a2":"ZM","wb_a3":"ZMB","woe_id":-99,"adm0_a3_is":"ZMB","adm0_a3_us":"ZMB","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":6,"long_len":6,"abbrev_len":6,"tiny":-99,"homepart":1},"arcs":[[-477,-472,654,-122,-484,-7,-212,-619]]},{"type":"Polygon","properties":{"scalerank":1,"featurecla":"Admin-0 country","labelrank":3,"sovereignt":"Zimbabwe","sov_a3":"ZWE","adm0_dif":0,"level":2,"type":"Sovereign country","admin":"Zimbabwe","adm0_a3":"ZWE","geou_dif":0,"geounit":"Zimbabwe","gu_a3":"ZWE","su_dif":0,"subunit":"Zimbabwe","su_a3":"ZWE","brk_diff":0,"name":"Zimbabwe","name_long":"Zimbabwe","brk_a3":"ZWE","brk_name":"Zimbabwe","brk_group":null,"abbrev":"Zimb.","postal":"ZW","formal_en":"Republic of Zimbabwe","formal_fr":null,"note_adm0":null,"note_brk":null,"name_sort":"Zimbabwe","name_alt":null,"mapcolor7":1,"mapcolor8":5,"mapcolor9":3,"mapcolor13":9,"pop_est":12619600,"gdp_md_est":9323,"pop_year":0,"lastcensus":2002,"gdp_year":0,"economy":"5. Emerging region: G20","income_grp":"5. Low income","wikipedia":-99,"fips_10":null,"iso_a2":"ZW","iso_a3":"ZWE","iso_n3":"716","un_a3":"716","wb_a2":"ZW","wb_a3":"ZWE","woe_id":-99,"adm0_a3_is":"ZWE","adm0_a3_us":"ZWE","adm0_a3_un":-99,"adm0_a3_wb":-99,"continent":"Africa","region_un":"Africa","subregion":"Eastern Africa","region_wb":"Sub-Saharan Africa","name_len":8,"long_len":8,"abbrev_len":5,"tiny":-99,"homepart":1},"arcs":[[-653,-123,-655,-471]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[36]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[37]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[38]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[39]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[40]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[41]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[42]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[655,656,45]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[172,657,174,24]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[287]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[46]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[47]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[498]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[499]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[485]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[284]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[286,658]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[285,-659]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[649]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[650]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[450]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[48]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[582]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[347]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[583]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[584]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[611,349]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[350]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[351]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[585]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[586]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[352]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[353]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[515]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[516]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[354]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[355]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[518]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[517,357]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[358]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[359]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[362]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[480,115,481,361]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[508]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[436]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[612]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[509]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[510]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[511]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[512]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[513]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[514]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[525]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[391]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[247,341]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[177]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[622]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[623]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[624]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[625]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[626]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[227]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[88]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[616]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[89]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[90]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[396]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[230,228]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[319]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[387]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[388]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[397]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[290]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[398]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[130]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[131]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[132]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[133]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[134]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[538]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[298,367]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[245]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[639]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[659,300,660,302]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[640]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[135]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[136]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[641]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[137]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[380]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[138]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[560,661]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[139]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[662,540,663]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[541,-664]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[627,664,629,665,631,666,633,667,635,451,668,453,100,326,334,490,225,506,220,647,329,596,289,113,621,28,175,507,257,218,505,223,489,332,588,324,454,636,669,638,141,642,670,644,671,646,143,672,145]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[673,147]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[148]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[149]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[150]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[151]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[543]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[152]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[153,674,155,675]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[544]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[157]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[545]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[158]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[159]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[546]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[160]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[161]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[561,527,676,529,417,530,179,677,181,648,416,604,678,606,478,607,460,80,365,504,370,374,422,569,532,570,18,503,20,502,651,568,394,259,575,266,241,589,679,591,593,680,595,404,681,406,617,466,653,482,8,212,10,215,295,318,203,488,69,603,306,196,429,587,310,316,581,314,580,474,567,445,682,447,254,613,433,262,384,427,601,614,303,548,620,536,83,615,320,15,462,338,598,390,293,269,531,267,294,68,491,239,246,234,519,683,521,539,439,442,271,550,281,599,494,551,684,553,685,555,686,557,687,559,-662],[373,609,401,547,57]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[162]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[163]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[495]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[164]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[165]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[166]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[562]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[496]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[497]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[563]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[564]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[167]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[168]]},{"type":"Polygon","properties":{"featurecla":"Country","scalerank":1},"arcs":[[323]]}]},"events":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"blurb":"67 US tests on the Marshall Islands"},"coordinates":[9596,5742]},{"type":"Point","properties":{"blurb":"The two bombings of Hiroshima and Nagasaki"},"coordinates":[8678,7089]},{"type":"Point","properties":{"blurb":"17 French tests in Algeria"},"coordinates":[5077,6761]},{"type":"Point","properties":{"blurb":"928 announced US tests at The Nevada Test Site"},"coordinates":[1776,7250]},{"type":"Point","properties":{"blurb":"US tests effects of high-altitude nuclear detonations"},"coordinates":[4680,2783]},{"type":"Point","properties":{"blurb":"7 British tests in Australia between 1956 and 1962"},"coordinates":[8655,3276]},{"type":"Point","properties":{"blurb":"456 Soviet tests in Kazakhstan"},"coordinates":[7185,8018]},{"type":"Point","properties":{"blurb":"41 French atmospheric tests at Mururoa"},"coordinates":[1143,3768]},{"type":"Point","properties":{"blurb":"Unidentified \"double flash\" in the South Atlantic"},"coordinates":[6043,2319]},{"type":"Point","properties":{"blurb":"Biggest-ever underground test by US conducted in Alaska"},"coordinates":[9971,8103]},{"type":"Point","properties":{"blurb":"The 50-megaton Tsar Bomba test in the Arctic Circle"},"coordinates":[6485,9417]}]},"nuclear":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"country":"US","year":"1945","yield":"21","name":"TrinityTrinity"},"coordinates":[2043,7047]},{"type":"Point","properties":{"country":"US","year":"1945","yield":"15","name":"AlbertaLittle Boy"},"coordinates":[8679,7089]},{"type":"Point","properties":{"country":"US","year":"1945","yield":"21","name":"AlbertaFat Man"},"coordinates":[8607,6993]},{"type":"Point","properties":{"country":"US","year":"1946","yield":"21","name":"CrossroadsAble"},"coordinates":[9596,5741]},{"type":"Point","properties":{"country":"US","year":"1946","yield":"21","name":"CrossroadsBaker"},"coordinates":[9596,5742]},{"type":"Point","properties":{"country":"US","year":"1948","yield":"37","name":"SandstoneX-ray"},"coordinates":[9506,5747]},{"type":"Point","properties":{"country":"US","year":"1948","yield":"49","name":"SandstoneYoke"},"coordinates":[9508,5744]},{"type":"Point","properties":{"country":"US","year":"1948","yield":"18","name":"SandstoneZebra"},"coordinates":[9509,5741]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"1","name":"RangerAble"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"8","name":"RangerBaker"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"1","name":"RangerEasy"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"8","name":"RangerBaker-2"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"22","name":"RangerFox"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"81","name":"GreenhouseDog"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"47","name":"GreenhouseEasy"},"coordinates":[9506,5746]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"225","name":"GreenhouseGeorge"},"coordinates":[9508,5744]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"45.5","name":"GreenhouseItem"},"coordinates":[9506,5747]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"0.05","name":"BusterAble"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"3.5","name":"BusterBaker"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"14","name":"BusterCharlie"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"21","name":"BusterDog"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"31","name":"BusterEasy"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"1.2","name":"JangleSugar"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1951","yield":"1.2","name":"JangleUncle"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"1","name":"TumblerAble"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"1","name":"TumblerBaker"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"31","name":"TumblerCharlie"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"19","name":"SnapperDog"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"12","name":"SnapperEasy"},"coordinates":[1774,7246]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"11","name":"SnapperFox"},"coordinates":[1774,7249]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"15","name":"SnapperGeorge"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"14","name":"SnapperHow"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"10400","name":"IvyMike"},"coordinates":[9504,5721]},{"type":"Point","properties":{"country":"US","year":"1952","yield":"500","name":"IvyKing"},"coordinates":[9509,5741]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"16","name":"Upshot-KnotholeAnnie"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"24","name":"Upshot-KnotholeNancy"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"0.2","name":"Upshot-KnotholeRuth"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"11","name":"Upshot-KnotholeDixie"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"0.2","name":"Upshot-KnotholeRay"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"23","name":"Upshot-KnotholeBadger"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"43","name":"Upshot-KnotholeSimon"},"coordinates":[1775,7246]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"27","name":"Upshot-KnotholeEncore"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"32","name":"Upshot-KnotholeHarry"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"15","name":"Upshot-KnotholeGrable"},"coordinates":[1780,7231]},{"type":"Point","properties":{"country":"US","year":"1953","yield":"61","name":"Upshot-KnotholeClimax"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"15000","name":"CastleBravo"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"11000","name":"CastleRomeo"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"110","name":"CastleKoon"},"coordinates":[9593,5737]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"6900","name":"CastleUnion"},"coordinates":[9593,5746]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"13500","name":"CastleYankee"},"coordinates":[9593,5746]},{"type":"Point","properties":{"country":"US","year":"1954","yield":"1690","name":"CastleNectar"},"coordinates":[9504,5747]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"1","name":"TeapotWasp"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"2","name":"TeapotMoth"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"7","name":"TeapotTesla"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"43","name":"TeapotTurk"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"4","name":"TeapotHornet"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"8","name":"TeapotBee"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"1","name":"TeapotEss"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"14","name":"TeapotApple-1"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"3","name":"TeapotWasp Prime"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"3","name":"TeapotHA (High Altitude)"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"2","name":"TeapotPost"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"22","name":"TeapotMET (Military Effects T"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"29","name":"TeapotApple-2"},"coordinates":[1775,7246]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"30","name":"WigwamWigwam"},"coordinates":[1492,6755]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"28","name":"TeapotZucchini"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"0","name":"Project 56Project 56 No. 1"},"coordinates":[1779,7237]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"0","name":"Project 56Project 56 No. 2"},"coordinates":[1779,7237]},{"type":"Point","properties":{"country":"US","year":"1955","yield":"0","name":"Project 56Project 56 No. 3"},"coordinates":[1779,7237]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"0.01","name":"Project 56Project 56 No. 4"},"coordinates":[1779,7237]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"40","name":"RedwingLacrosse"},"coordinates":[9509,5741]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"3800","name":"RedwingCherokee"},"coordinates":[9593,5746]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"3500","name":"RedwingZuni"},"coordinates":[9593,5737]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"0.19","name":"RedwingYuma"},"coordinates":[9508,5744]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"14.9","name":"RedwingErie"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"13.7","name":"RedwingSeminole"},"coordinates":[9505,5747]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"365","name":"RedwingFlathead"},"coordinates":[9595,5743]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"8","name":"RedwingBlackfoot"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"1.49","name":"RedwingKickapoo"},"coordinates":[9508,5744]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"1.7","name":"RedwingOsage"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"15.2","name":"RedwingInca"},"coordinates":[9509,5744]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"1100","name":"RedwingDakota"},"coordinates":[9595,5743]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"360","name":"RedwingMohawk"},"coordinates":[9508,5744]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"1850","name":"RedwingApache"},"coordinates":[9504,5747]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"4500","name":"RedwingNavajo"},"coordinates":[9593,5746]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"5000","name":"RedwingTewa"},"coordinates":[9592,5747]},{"type":"Point","properties":{"country":"US","year":"1956","yield":"250","name":"RedwingHuron"},"coordinates":[9509,5747]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0","name":"Project 57Project 57 No. 1"},"coordinates":[1775,7255]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"12","name":"PlumbbobBoltzmann"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.14","name":"PlumbbobFranklin"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.0005","name":"PlumbbobLassen"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"10","name":"PlumbbobWilson"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"37","name":"PlumbbobPriscilla"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0","name":"PlumbbobCoulomb-A"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"74","name":"PlumbbobHood"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"17","name":"PlumbbobDiablo"},"coordinates":[1774,7252]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"2","name":"PlumbbobJohn"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"10","name":"PlumbbobKepler"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"9.7","name":"PlumbbobOwens"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.01","name":"PlumbbobPascal-A"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"19","name":"PlumbbobStokes"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0","name":"PlumbbobSaturn"},"coordinates":[1777,7255]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"17","name":"PlumbbobShasta"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"11","name":"PlumbbobDoppler"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.01","name":"PlumbbobPascal-B"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"4.7","name":"PlumbbobFranklin Prime"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"44","name":"PlumbbobSmoky"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"11","name":"PlumbbobGalileo"},"coordinates":[1775,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.197","name":"PlumbbobWheeler"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.3","name":"PlumbbobCoulomb-B"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"1","name":"PlumbbobLaplace"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"11","name":"PlumbbobFizeau"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"12","name":"PlumbbobNewton"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"1.7","name":"PlumbbobRainier"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"19","name":"PlumbbobWhitney"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"12","name":"PlumbbobCharleston"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"8","name":"PlumbbobMorgan"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.01","name":"Project 58Pascal-C"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1957","yield":"0.5","name":"Project 58Coulomb-C"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0005","name":"Project 58AVenus"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0005","name":"Project 58AUranus"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.7","name":"Hardtack IYucca"},"coordinates":[9666,5803]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"18","name":"Hardtack ICactus"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1360","name":"Hardtack IFir"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"81","name":"Hardtack IButternut"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1370","name":"Hardtack IKoa"},"coordinates":[9505,5747]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"9","name":"Hardtack IWahoo"},"coordinates":[9504,5727]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"5.9","name":"Hardtack IHolly"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"25.1","name":"Hardtack INutmeg"},"coordinates":[9593,5737]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"330","name":"Hardtack IYellowwood"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"57","name":"Hardtack IMagnolia"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"11.6","name":"Hardtack ITobacco"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"92","name":"Hardtack ISycamore"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"15","name":"Hardtack IRose"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"8","name":"Hardtack IUmbrella"},"coordinates":[9505,5730]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"213","name":"Hardtack IMaple"},"coordinates":[9594,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"319","name":"Hardtack IAspen"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1450","name":"Hardtack IWalnut"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"11","name":"Hardtack ILinden"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"412","name":"Hardtack IRedwood"},"coordinates":[9594,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"880","name":"Hardtack IElder"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"8900","name":"Hardtack IOak"},"coordinates":[9502,5744]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"14","name":"Hardtack IHickory"},"coordinates":[9509,5737]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"5.2","name":"Hardtack ISequoia"},"coordinates":[9509,5739]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"220","name":"Hardtack ICedar"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"397","name":"Hardtack IDogwood"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"9300","name":"Hardtack IPoplar"},"coordinates":[9590,5748]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IScaevola"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"255","name":"Hardtack IPisonia"},"coordinates":[9508,5740]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"65","name":"Hardtack IJuniper"},"coordinates":[9593,5737]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"202","name":"Hardtack IOlive"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"2000","name":"Hardtack IPine"},"coordinates":[9505,5746]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"3800","name":"NewsreelTeak"},"coordinates":[290,6046]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IQuince"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"3800","name":"NewsreelOrange"},"coordinates":[290,6024]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.02","name":"Hardtack IFig"},"coordinates":[9509,5740]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.5","name":"ArgusArgus I"},"coordinates":[4680,2783]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.5","name":"ArgusArgus II"},"coordinates":[4772,2133]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.5","name":"ArgusArgus III"},"coordinates":[4730,2192]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.038","name":"Hardtack IIOtero"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.015","name":"Hardtack IIBernalillo"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.083","name":"Hardtack IIEddy"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0015","name":"Hardtack IILuna"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.01","name":"Hardtack IIMercury"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.002","name":"Hardtack IIValencia"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.013","name":"Hardtack IIMars"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"2","name":"Hardtack IIMora"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.077","name":"Hardtack IIHidalgo"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0055","name":"Hardtack IIColfax"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.072","name":"Hardtack IITamalpais"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.079","name":"Hardtack IIQuay"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.4","name":"Hardtack IILea"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.115","name":"Hardtack IINeptune"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0012","name":"Hardtack IIHamilton"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"5","name":"Hardtack IILogan"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.037","name":"Hardtack IIDona Ana"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.024","name":"Hardtack IIVesta"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.09","name":"Hardtack IIRio Arriba"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IISan Juan"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"6","name":"Hardtack IISocorro"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.115","name":"Hardtack IIWrangell"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IIOberon"},"coordinates":[1775,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.188","name":"Hardtack IIRushmore"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.021","name":"Hardtack IICatron"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0017","name":"Hardtack IIJuno"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0007","name":"Hardtack IICeres"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"4.9","name":"Hardtack IISanford"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"2.2","name":"Hardtack IIDe Baca"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0006","name":"Hardtack IIChavez"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.055","name":"Hardtack IIEvans"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IIMazama"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0078","name":"Hardtack IIHumboldt"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"1.3","name":"Hardtack IISanta Fe"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0","name":"Hardtack IIGanymede"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"22","name":"Hardtack IIBlanca"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1958","yield":"0.0002","name":"Hardtack IITitania"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"2.6","name":"NougatAntler"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"10","name":"NougatShrew"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"10","name":"NougatBoomer"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"10","name":"NougatChena"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"10","name":"NougatMink"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"13.4","name":"NougatFisher"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"3","name":"NougatGnome"},"coordinates":[2115,6963]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"0.5","name":"NougatMad"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"20","name":"NougatRingtail"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1961","yield":"0.15","name":"NougatFeather"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5.1","name":"NougatStoat"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"6.4","name":"NougatAgouti"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"NougatDormouse"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3.07","name":"NougatStillwater"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"7.1","name":"NougatArmadillo"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5.7","name":"NougatHard Hat"},"coordinates":[1776,7257]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1.9","name":"NougatChinchilla I"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2","name":"NougatCodsaw"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"11.9","name":"NougatCimarron"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"NougatPlatypus"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"0.43","name":"NougatDanny Boy"},"coordinates":[1767,7250]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"NougatErmine"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"8.4","name":"NougatBrazos"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"8","name":"NougatHognose"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3.4","name":"NougatHoosic"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2","name":"NougatChinchilla II"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10.6","name":"NougatDormouse Prime"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"9","name":"NougatPassaic"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1","name":"NougatHudson"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1.85","name":"NougatPlatte"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3","name":"NougatDead"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"190","name":"Dominic IAdobe"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"410","name":"Dominic IAztec"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5","name":"NougatBlack"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1090","name":"Dominic IArkansas"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"670","name":"Dominic IQuesta"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"600","name":"Dominic IFrigate Bird"},"coordinates":[849,5343]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"8","name":"NougatPaca"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"100","name":"Dominic IYukon"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"100","name":"Dominic IMesilla"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"NougatArikaree"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"50","name":"Dominic IMuskegon"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"Dominic ISwordfish"},"coordinates":[1550,6904]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"500","name":"Dominic IEncino"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"40","name":"NougatAardvark"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"97","name":"Dominic ISwanee"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"4.5","name":"NougatEel"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"73","name":"Dominic IChetco"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"8","name":"NougatWhite"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2.6","name":"Dominic ITanana"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"43","name":"Dominic INambe"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3","name":"NougatRaccoon"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"13","name":"NougatPackrat"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"782","name":"Dominic IAlma"},"coordinates":[633,5146]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"210","name":"Dominic ITruckee"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3000","name":"Dominic IYeso"},"coordinates":[633,5146]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1200","name":"Dominic IHarlem"},"coordinates":[633,5146]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2.9","name":"NougatDes Moines"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"800","name":"Dominic IRinconada"},"coordinates":[633,5146]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"52","name":"Dominic IDulce"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2.2","name":"Dominic IPetit"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"11","name":"NougatDaman I"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"81.5","name":"Dominic IOtowi"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"7650","name":"Dominic IBighorn"},"coordinates":[631,5134]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"67","name":"NougatHaymaker"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"NougatMarshmallow"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1270","name":"Dominic IBluestone"},"coordinates":[631,5146]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"4","name":"NougatSacramento"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"104","name":"StoraxSedan"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"SunbeamLittle Feller II"},"coordinates":[1769,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1400","name":"FishbowlStarfish Prime"},"coordinates":[303,6074]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1000","name":"Dominic ISunset"},"coordinates":[631,5152]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3880","name":"Dominic IPamlico"},"coordinates":[631,5140]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"0.5","name":"SunbeamJohnnie Boy"},"coordinates":[1768,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"20","name":"StoraxMerrimac"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"0.6","name":"SunbeamSmall Boy"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"SunbeamLittle Feller I"},"coordinates":[1769,7250]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"3.5","name":"StoraxWichita"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5","name":"StoraxYork"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2.5","name":"StoraxBobac"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"2","name":"StoraxRaritan"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5","name":"StoraxHyrax"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"11","name":"StoraxPeba"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1","name":"StoraxAllegheny"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"75","name":"Dominic IAndroscoggin"},"coordinates":[222,5885]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"115","name":"StoraxMississippi"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"11.3","name":"Dominic IBumping"},"coordinates":[305,5944]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"7","name":"StoraxRoanoke"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxWolverine"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"1590","name":"Dominic IChama"},"coordinates":[305,5885]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxTioga"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"12.5","name":"StoraxBandicoot"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"FishbowlCheckmate"},"coordinates":[291,6002]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"400","name":"FishbowlBluegill 3 Prime"},"coordinates":[300,6056]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5","name":"StoraxSantee"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"800","name":"Dominic ICalamity"},"coordinates":[305,5944]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"8300","name":"Dominic IHousatonic"},"coordinates":[222,5855]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"400","name":"FishbowlKingfish"},"coordinates":[294,6038]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"FishbowlTightrope"},"coordinates":[303,6068]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxSt. Lawrence"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxGundi"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"5.2","name":"StoraxAnacostia"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxTaunton"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxMadison"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"11","name":"StoraxNumbat"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1962","yield":"10","name":"StoraxManatee"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"6","name":"StoraxCasselman"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxHatchie"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxFerret"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"9","name":"StoraxAcushi"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxChipmunk"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"3","name":"StoraxKaweah"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxCarmel"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxJerboa"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxToyah"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"11","name":"StoraxGerbil"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"7","name":"StoraxFerret Prime"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxCoypu"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"6","name":"StoraxCumberland"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxKootanai"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxPaisano"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"8","name":"StoraxGundi Prime"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0","name":"Roller CoasterDouble Tracks"},"coordinates":[1775,7255]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxHarkee"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxTejon"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"20","name":"StoraxStones"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0","name":"Roller CoasterClean Slate I"},"coordinates":[1775,7255]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"2","name":"StoraxPleasant"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0","name":"Roller CoasterClean Slate II"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"3.1","name":"StoraxYuba"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"3","name":"StoraxHutia"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"StoraxApshapa"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0","name":"Roller CoasterClean Slate III"},"coordinates":[1775,7255]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"3","name":"StoraxMataco"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"4","name":"StoraxKennebec"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"8","name":"NiblickPekan"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"3","name":"NiblickSatsop"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"NiblickKohocton S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"NiblickNatches SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"1","name":"NiblickAhtanum"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"249","name":"NiblickBilby"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0.08","name":"NiblickCarp"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0.08","name":"NiblickNarraguagus"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"8","name":"NiblickGrunion"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"0.38","name":"NiblickTornillo"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"60","name":"NiblickClearwater"},"coordinates":[1771,7255]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"NiblickMullet"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"12","name":"NiblickShoal"},"coordinates":[1712,7373]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"9","name":"NiblickAnchovy"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"2","name":"NiblickMustang"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"20","name":"NiblickGreys"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"NiblickBarracuda S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"8","name":"NiblickSardine SS"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"5.3","name":"NiblickEagle"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1963","yield":"10","name":"NiblickTuna"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"38","name":"NiblickFore"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10.5","name":"NiblickOconto"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"2","name":"NiblickClub"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"NiblickSolendon"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"1.5","name":"NiblickBunker"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"5","name":"NiblickBonefish"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"NiblickMackerel"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"70","name":"NiblickKlickitat"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"0.2","name":"NiblickHandicap"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"2","name":"NiblickPike"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"3","name":"NiblickHook"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"2","name":"NiblickSturgeon"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"NiblickBogey"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"38","name":"NiblickTurf"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"15","name":"NiblickPipefish"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"NiblickDriver"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"8","name":"NiblickBackswing"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"6","name":"NiblickMinnow"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"3","name":"NiblickAce"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"0.5","name":"NiblickBitterling"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"0.15","name":"NiblickDuffer"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"6","name":"NiblickFade"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"11.7","name":"NiblickDub"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"20","name":"WhetstoneBye"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneLinks"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneTrogon"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"4.4","name":"WhetstoneAlva"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"18","name":"WhetstoneCanvasback"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstonePlayer"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneHaddock"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"12","name":"WhetstoneGuanay"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"0.2","name":"WhetstoneSpoon"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"12","name":"WhetstoneAuk"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"38","name":"WhetstonePar"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"7","name":"WhetstoneBarbel S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneTurnstone SS"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"5.3","name":"WhetstoneSalmon"},"coordinates":[2512,6897]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneGarden"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneForest"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"12","name":"WhetstoneHandcar"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"20","name":"WhetstoneCrepe"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"3.4","name":"WhetstoneDrill (Source-Lower)S"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneDrill (Target-Upper)SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"1.3","name":"WhetstoneParrot"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneCassowary S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"10","name":"WhetstoneHoopoe SS"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"2.7","name":"WhetstoneMudpack"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1964","yield":"0.092","name":"WhetstoneSulky"},"coordinates":[1768,7248]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"7","name":"WhetstoneWool"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.5","name":"WhetstoneTern"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"4","name":"WhetstoneCashmere"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.33","name":"WhetstoneAlpaca"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10.1","name":"WhetstoneMerlin"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"5","name":"WhetstoneWishbone"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10","name":"WhetstoneSeersucker"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"51","name":"WhetstoneWagtail"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.2","name":"WhetstoneSuede"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"38","name":"WhetstoneCup"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"7","name":"WhetstoneKestrel"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"4.3","name":"WhetstonePalanquin"},"coordinates":[1764,7260]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"20","name":"WhetstoneGum Drop"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"1","name":"WhetstoneChenille"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.6","name":"WhetstoneMuscovy"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"7","name":"WhetstoneTee"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10","name":"WhetstoneButeo"},"coordinates":[1765,7258]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.75","name":"WhetstoneCambric"},"coordinates":[1778,7233]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"12","name":"WhetstoneScaup"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"15","name":"WhetstoneTweed"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"1.3","name":"WhetstonePetrel"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.5","name":"WhetstoneOrgandy"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"4","name":"WhetstoneDiluted Waters"},"coordinates":[1779,7232]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10","name":"WhetstoneTiny Tot"},"coordinates":[1776,7257]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10","name":"FlintlockIzzer"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"10","name":"FlintlockPongee"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"67","name":"FlintlockBronze"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"18","name":"FlintlockMauve"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.25","name":"FlintlockTicking"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"1","name":"FlintlockCentaur"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"2.5","name":"FlintlockMoa S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"9","name":"FlintlockScreamer SS"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"6","name":"FlintlockElkhart"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"80","name":"FlintlockLong Shot"},"coordinates":[9976,8096]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"7","name":"FlintlockSepia"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"0.5","name":"FlintlockKermet"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"120","name":"FlintlockCorduroy"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"3","name":"FlintlockEmerson"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1965","yield":"51","name":"FlintlockBuff"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockMaxwell"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"38","name":"FlintlockLampblack"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"4","name":"FlintlockSienna"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"7","name":"FlintlockDovekie"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"0.15","name":"FlintlockReo"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"3.5","name":"FlintlockPlaid II"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"19","name":"FlintlockRex"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"2","name":"FlintlockRed Hot"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"5","name":"FlintlockFinfoot S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockCinnamon SS"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"3","name":"FlintlockClymer"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"7","name":"FlintlockPurple"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"0.37","name":"FlintlockTemplar"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockLime"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"5","name":"FlintlockStutz"},"coordinates":[1773,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"6","name":"FlintlockTomato"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"70","name":"FlintlockDuryea"},"coordinates":[1765,7258]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"1.4","name":"FlintlockFenton"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"5","name":"FlintlockPin Stripe"},"coordinates":[1779,7237]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockOchre"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"20","name":"FlintlockTraveler"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"12","name":"FlintlockCyclamen"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"73","name":"FlintlockChartreuse"},"coordinates":[1768,7264]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockTapestry"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"120","name":"FlintlockPiranha"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"200","name":"FlintlockDumont"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"22","name":"FlintlockDiscus Thrower"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"62","name":"FlintlockPile Driver"},"coordinates":[1776,7257]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"160","name":"FlintlockTan"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockPuce"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"FlintlockDouble Play"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"200","name":"FlintlockKankakee"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"25","name":"FlintlockVulcan"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"365","name":"FlintlockHalfbeak"},"coordinates":[1769,7262]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"1.2","name":"LatchkeySaxon"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"1","name":"LatchkeyRovena"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"LatchkeyTangerine"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"7.8","name":"LatchkeyDerringer"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"LatchkeyDaiquiri"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"4","name":"LatchkeyNewark"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"LatchkeyKhaki"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"2.3","name":"LatchkeySimms"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"5","name":"LatchkeyAjax"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"7","name":"LatchkeyCerise"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"10","name":"LatchkeyVigil"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"0.38","name":"LatchkeySterling"},"coordinates":[2512,6897]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"1","name":"LatchkeySidecar"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"7","name":"LatchkeyNew Point"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1966","yield":"870","name":"LatchkeyGreeley"},"coordinates":[1766,7261]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.15","name":"LatchkeyRivet I"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"39","name":"LatchkeyNash"},"coordinates":[1774,7252]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"41","name":"LatchkeyBourbon"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.8","name":"LatchkeyRivet II"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"11","name":"LatchkeyWard"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"4","name":"LatchkeyPersimmon"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"200","name":"LatchkeyAgile"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"2.5","name":"LatchkeyRivet III"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.6","name":"LatchkeyMushroom"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"LatchkeyFizz"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"LatchkeyOakland"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"LatchkeyHeilman"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"1","name":"LatchkeyFawn"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"7","name":"LatchkeyChocolate"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.8","name":"LatchkeyEffendi"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"22","name":"LatchkeyMickey"},"coordinates":[1778,7248]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"250","name":"LatchkeyCommodore"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"155","name":"LatchkeyScotch"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"LatchkeyAbsinthe"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"76","name":"LatchkeyKnickerbocker"},"coordinates":[1764,7258]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"3.1","name":"LatchkeySwitch"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"20","name":"LatchkeyMidi Mist"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"LatchkeyUmber"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"CrosstieVito"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"22","name":"CrosstieStanley"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"1.5","name":"CrosstieGibson"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"CrosstieWasher"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"18","name":"CrosstieBordeaux"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.8","name":"CrosstieLexington"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"20","name":"CrosstieDoor Mist"},"coordinates":[1772,7254]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"22","name":"CrosstieYard"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"CrosstieGilroy"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"2.2","name":"CrosstieMarvel"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"160","name":"CrosstieZaza"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"160","name":"CrosstieLanpher"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"9","name":"CrosstieSazerac"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"CrosstieCognac"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"10","name":"CrosstieWorth"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"20","name":"CrosstieCobbler"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"0.2","name":"CrosstiePolka"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"29","name":"CrosstieGasbuggy"},"coordinates":[2022,7224]},{"type":"Point","properties":{"country":"US","year":"1967","yield":"2","name":"CrosstieStilt"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"7.4","name":"CrosstieHupmobile"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"50","name":"CrosstieStaccato"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1000","name":"CrosstieFaultless"},"coordinates":[1771,7340]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieBrush"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"2.3","name":"CrosstieCabriolet"},"coordinates":[1764,7260]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"4","name":"CrosstieMallet"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTorch"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"200","name":"CrosstieKnox"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"CrosstieDorsal Fin"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieRusset"},"coordinates":[1776,7242]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.08","name":"CrosstieBuggy-A S"},"coordinates":[1767,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.08","name":"CrosstieBuggy-B SS"},"coordinates":[1767,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.08","name":"CrosstieBuggy-C SS"},"coordinates":[1767,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.08","name":"CrosstieBuggy-D SS"},"coordinates":[1767,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.08","name":"CrosstieBuggy-E SS"},"coordinates":[1767,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.5","name":"CrosstiePommard"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"120","name":"CrosstieStinger"},"coordinates":[1769,7263]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieMilk Shake"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieBevel"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"CrosstieNoor S"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"2","name":"CrosstieThrow SS"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"CrosstieShuffle"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"6","name":"CrosstieScroll"},"coordinates":[1767,7263]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1300","name":"CrosstieBoxcar"},"coordinates":[1764,7261]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"2","name":"CrosstieHatchet"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"CrosstieCrock"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"CrosstieClarksmobile"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieAdze"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.5","name":"CrosstieWembley"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTub-A S"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTub-B SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTub-C SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTub-D SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieTub-F SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"200","name":"CrosstieRickey"},"coordinates":[1768,7259]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieFunnel"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"CrosstieSevilla"},"coordinates":[1778,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"58","name":"CrosstieChateaugay"},"coordinates":[1764,7258]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1.5","name":"BowlineSpud"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"BowlineTanya"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"0.35","name":"BowlineImp"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineRack"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"9","name":"BowlineDiana Moon"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"200","name":"BowlineSled"},"coordinates":[1768,7258]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"120","name":"BowlineNoggin"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"BowlineKnife A"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"31","name":"BowlineStoddard"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"BowlineHudson Seal"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"BowlineWelder"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"3","name":"BowlineKnife C"},"coordinates":[1778,7245]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineVat"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"0.25","name":"BowlineHula"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineBit-A S"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"BowlineBit-B SS"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"7","name":"BowlineFile"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"22","name":"BowlineCrew"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"BowlineCrew-2nd S"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"BowlineCrew-3rd SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineAuger"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"8","name":"BowlineKnife B"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"16","name":"BowlineMing Vase"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"3","name":"BowlineTinderbox"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"30","name":"BowlineSchooner"},"coordinates":[1762,7264]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"10","name":"BowlineBay Leaf"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"20","name":"BowlineTyg-A S"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"3","name":"BowlineTyg-B SS"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"2","name":"BowlineTyg-C SS"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineTyg-D SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"3","name":"BowlineTyg-E SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"4","name":"BowlineTyg-F SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1","name":"BowlineScissors"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1968","yield":"1150","name":"BowlineBenham"},"coordinates":[1764,7257]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlinePackard"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"40","name":"BowlineWineskin"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2","name":"BowlineShave"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"20","name":"BowlineVise"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineBiggin"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineNipper"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0.6","name":"BowlineWinch"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"15","name":"BowlineCypress"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineValise"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0.8","name":"BowlineChatty"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineBarsac"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"26","name":"BowlineCoffer"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0.8","name":"BowlineGourd-Amber S"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineGourd-Brown SS"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"38","name":"BowlineThistle"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"51","name":"BowlineBlenton"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"90","name":"BowlinePurse"},"coordinates":[1764,7260]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2","name":"BowlineAliment"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineIpecac-A S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineIpecac-B SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"22","name":"BowlineTorrido"},"coordinates":[1778,7248]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"BowlineTapper"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2","name":"BowlineBowl-1 S"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"3","name":"BowlineBowl-2 SS"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"20","name":"MandrelIldrim"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"120","name":"MandrelHutch"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"1","name":"MandrelSpider-A S"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"1","name":"MandrelSpider-B SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelPliers"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelHorehound"},"coordinates":[1778,7243]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"40","name":"MandrelRulison"},"coordinates":[2002,7385]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"5","name":"MandrelMinute Steak"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"800","name":"MandrelJorum"},"coordinates":[1764,7262]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0.8","name":"MandrelKyack-A S"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"1","name":"MandrelKyack-B SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelSeaweed-C S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelSeaweed-D SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelSeaweed-E SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"1000","name":"MandrelMilrow"},"coordinates":[9976,8095]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"200","name":"MandrelPipkin"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelSeaweed B"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"11","name":"MandrelCruet"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"16.7","name":"MandrelPod-A S"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0","name":"MandrelPod-B SS"},"coordinates":[1773,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0","name":"MandrelPod-C SS"},"coordinates":[1773,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"0","name":"MandrelPod-D SS"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"110","name":"MandrelCalabash"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"1.7","name":"MandrelScuttle"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"22","name":"MandrelPiccalilli"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"20","name":"MandrelPlaner"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"20","name":"MandrelDiesel Train"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelCulantro-A S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"10","name":"MandrelCulantro-B SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2.5","name":"MandrelTun-A S"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2","name":"MandrelTun-B SS"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"2","name":"MandrelTun-C SS"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"3","name":"MandrelTun-D SS"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"89","name":"MandrelGrape A"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"16","name":"MandrelLovage"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"38","name":"MandrelTerrine-White S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1969","yield":"110","name":"MandrelTerrine-Yellow SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"8","name":"MandrelFob-Green S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelFob-Red SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelFob-Blue SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"MandrelAjo"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"120","name":"MandrelGrape B"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"97","name":"MandrelBelen"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"25","name":"MandrelLabis"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"12","name":"MandrelDiana Mist"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"51","name":"MandrelCumarin"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"70","name":"MandrelYannigan-Red S"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"MandrelYannigan-Blue SS"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"30","name":"MandrelYannigan-White SS"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"8.7","name":"MandrelCyathus"},"coordinates":[1775,7245]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"3.5","name":"MandrelArabis-Red S"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelArabis-Green SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelArabis-Blue SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"6","name":"MandrelJal"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"89","name":"MandrelShaper"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"1900","name":"MandrelHandley"},"coordinates":[1763,7261]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"12.7","name":"MandrelSnubber"},"coordinates":[1778,7246]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"MandrelCan-Green S"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"MandrelCan-Red SS"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"1","name":"MandrelBeebalm"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelHod-C (Blue)"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"9","name":"MandrelHod-A (Green) S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"4","name":"MandrelHod-B (Red) SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"MandrelMint Leaf"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelDiamond Dust"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"45","name":"MandrelCornice-Yellow S"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"40","name":"MandrelCornice-Green SS"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"1","name":"MandrelManzanas"},"coordinates":[1778,7245]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"29","name":"MandrelMorrones"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"9","name":"MandrelHudson Moon"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"105","name":"MandrelFlask-Green S"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"0.09","name":"MandrelFlask-Yellow SS"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"0.035","name":"MandrelFlask-Red SS"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"2.5","name":"MandrelPiton-C"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"0.8","name":"MandrelPiton-A S"},"coordinates":[1777,7252]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"MandrelPiton-B SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"3.5","name":"MandrelArnica-Yellow S"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"2","name":"MandrelArnica-Violet SS"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"1","name":"EmeryScree-Acajou S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"2","name":"EmeryScree-Alhambra SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryScree-Chamois SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"89","name":"EmeryTijeras"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryTruchas-Chacon S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryTruchas-Chamisal SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"8","name":"EmeryTruchas-Rodarte SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"EmeryAbeytas"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"2","name":"EmeryPenasco"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryCarrizozo S"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"0.1","name":"EmeryCorazon SS"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryCanjilon"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"45","name":"EmeryArtesia"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryAvens-Andorre S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryAvens-Alkermes SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryAvens-Asamite SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"20","name":"EmeryAvens-Cream SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"220","name":"EmeryCarpetbag"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1970","yield":"10","name":"EmeryBaneberry"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"18","name":"EmeryEmbudo"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"EmeryDexter"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"20","name":"EmeryLaguna"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"38","name":"EmeryHarebell"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"20","name":"EmeryCamphor"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetDiamond Mine"},"coordinates":[1772,7244]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"83","name":"GrommetMiniata"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"0.25","name":"GrommetBracken"},"coordinates":[1777,7253]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"0.25","name":"GrommetApodaca"},"coordinates":[1778,7244]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetBarranca"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetNama-Amarylis S"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetNama-Mephisto SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetBaltic"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"67","name":"GrommetAlgodones"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"0.5","name":"GrommetFrijoles-Deming S"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetFrijoles-Espuela SS"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetFrijoles-Guaje SS"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetFrijoles-Petaca SS"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"4","name":"GrommetPedernal"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetChantilly"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"7","name":"GrommetCathay"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"5","name":"GrommetLagoon"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"4800","name":"GrommetCannikin"},"coordinates":[9974,8098]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"4","name":"GrommetDiagonal Line"},"coordinates":[1779,7236]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"10","name":"GrommetParnassia"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"24","name":"GrommetChaenactis"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"11","name":"GrommetHospah"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1971","yield":"5","name":"GrommetYerba"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"GrommetMescalero"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"2","name":"GrommetCowles"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"3.5","name":"GrommetDianthus"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"4","name":"GrommetSappho"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"GrommetOcate S"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"8","name":"GrommetOnaja SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"8","name":"GrommetLongchamps"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"GrommetJicarilla"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"19","name":"GrommetMisty North"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.5","name":"GrommetKara"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"8","name":"GrommetZinnia"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"12","name":"GrommetMonero"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.8","name":"GrommetMerida"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.6","name":"GrommetCapitan"},"coordinates":[1775,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"GrommetTajique"},"coordinates":[1778,7248]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"6","name":"GrommetHaplopappus"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"21","name":"ToggleDiamond Sculls"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"1.5","name":"ToggleAtarque"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleCebolla S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleCuchillo SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleSolano SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"160","name":"ToggleOscuro"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"15","name":"ToggleDelphinium"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.6","name":"ToggleAkbar"},"coordinates":[1777,7253]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.6","name":"ToggleArsenate"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleCanna-Umbrinus S"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleCanna-Limoges SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"0.2","name":"ToggleTuloso"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleSolanum"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"20","name":"ToggleFlax-Source"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"110","name":"ToggleFlax-Test S"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1972","yield":"10","name":"ToggleFlax-Backup SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ToggleAlumroot"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"67","name":"ToggleMiera"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"0.2","name":"ToggleGazook"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ToggleNatoma"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"9","name":"ToggleAngus S"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"8","name":"ToggleVelarde SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"0.5","name":"ToggleColmor"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"90","name":"ToggleStarwort"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ToggleMesita"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"33","name":"ToggleRio Blanco-1 S"},"coordinates":[1990,7408]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"33","name":"ToggleRio Blanco-2 SS"},"coordinates":[1990,7408]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"33","name":"ToggleRio Blanco-3 SS"},"coordinates":[1990,7408]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"15","name":"ToggleCabresto"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"2","name":"ToggleKashan"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"18","name":"ToggleDido Queen"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"250","name":"ToggleAlmendro"},"coordinates":[1768,7258]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"58","name":"TogglePotrillo"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"24","name":"TogglePortulaca"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"0.005","name":"ToggleSilene"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ArborPolygonum"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"1","name":"ArborWaller"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"8","name":"ArborHusky Ace"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"5","name":"ArborBernal"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"5","name":"ArborPajara"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ArborSeafoam"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"10","name":"ArborSpar"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1973","yield":"0.3","name":"ArborElida"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborPinodrops-Sloat S"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborPinedrops-Tawny SS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborPinedrops-Bayou SS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"150","name":"ArborLatir"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborHulsea"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborSapello"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"0.5","name":"ArborPotrero"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborPlomo"},"coordinates":[1778,7246]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"ArborJib"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"2.5","name":"ArborGrove"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"4","name":"ArborJara"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"20","name":"ArborMing Blade"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"150","name":"BedrockEscabosa"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"2","name":"BedrockCrestlake-Tansan S"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"BedrockCrestlake-Briar SS"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"5","name":"BedrockPuye"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"160","name":"BedrockPortmanteau"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"5","name":"BedrockPratt"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"0.2","name":"BedrockTrumbull"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"100","name":"BedrockStanyan"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"BedrockEstaca"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"BedrockHybla Fair"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"BedrockTemescal"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"10","name":"BedrockPuddle"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1974","yield":"4","name":"BedrockKeel"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"0.35","name":"BedrockPortola S"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"10","name":"BedrockPortola-Larkin SS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"6","name":"BedrockTeleme"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"10","name":"BedrockBilge"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"160","name":"BedrockTopgallant"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"89","name":"BedrockCabrillo"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"20","name":"BedrockDining Car"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"20","name":"BedrockEdam"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"38","name":"BedrockObar"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"380","name":"BedrockTybo"},"coordinates":[1764,7257]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"200","name":"BedrockStilton"},"coordinates":[1764,7263]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"140","name":"BedrockMizzen"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"10","name":"BedrockAlviso"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"10","name":"BedrockFuttock"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"520","name":"BedrockMast"},"coordinates":[1768,7264]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"750","name":"BedrockCamembert"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"7","name":"AnvilMarsh"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"15","name":"AnvilHusky Pup"},"coordinates":[1772,7257]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"1000","name":"AnvilKasseri"},"coordinates":[1766,7260]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"5","name":"AnvilDeck"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"500","name":"AnvilInlet"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"5","name":"AnvilLeyden"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1975","yield":"160","name":"AnvilChiberta"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"800","name":"AnvilMuenster"},"coordinates":[1768,7261]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"150","name":"AnvilKeelson"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"160","name":"AnvilEsrom"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"900","name":"AnvilFontina"},"coordinates":[1764,7259]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"350","name":"AnvilCheshire"},"coordinates":[1765,7258]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"2.5","name":"AnvilShallows"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"350","name":"AnvilEstuary"},"coordinates":[1767,7262]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"800","name":"AnvilColby"},"coordinates":[1764,7262]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"500","name":"AnvilPool"},"coordinates":[1768,7259]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"210","name":"AnvilStrait"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"20","name":"AnvilMighty Epic"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"0.6","name":"AnvilRivoli"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"58","name":"AnvilBillet"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"0.6","name":"FulcrumGouda"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"10","name":"FulcrumSprit"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"2","name":"FulcrumChevre"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"20","name":"FulcrumRedmud"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"11","name":"FulcrumAsiago"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"10","name":"FulcrumSutter"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1976","yield":"89","name":"FulcrumRudder"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"3","name":"FulcrumCove S"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"8","name":"FulcrumOarlock SS"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"0.8","name":"FulcrumDofino S"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"10","name":"FulcrumDofino-Lawton SS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"140","name":"FulcrumMarsilly"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"67","name":"FulcrumBulkhead"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"51","name":"FulcrumCrewline"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"10","name":"FulcrumForefoot"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"0.6","name":"FulcrumCarnelian"},"coordinates":[1774,7249]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"44","name":"FulcrumStrake"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"10","name":"FulcrumGruyere S"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"0.6","name":"FulcrumGruyere-Gradino SS"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"1.5","name":"FulcrumFlotost"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"0.2","name":"FulcrumScupper"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"120","name":"FulcrumScantling"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"6","name":"FulcrumEbbtide"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"20","name":"FulcrumCoulommiers"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"5","name":"CressetBobstay"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"10","name":"CressetHybla Gold"},"coordinates":[1771,7254]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"150","name":"CressetSandreef"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"10","name":"CressetSeamount"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"0.8","name":"CressetRib"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1977","yield":"150","name":"CressetFarallones"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"0.8","name":"CressetCampos"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"120","name":"CressetReblochon"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"1.5","name":"CressetKarab"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"10","name":"CressetTopmast"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"120","name":"CressetIceberg"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"100","name":"CressetBackbeach"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"10","name":"CressetAsco"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"0","name":"CressetTransom"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"0.6","name":"CressetJackpots"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"1.5","name":"CressetSatz"},"coordinates":[1775,7250]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"99","name":"CressetLowball"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"140","name":"CressetPanir"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"8","name":"CressetDiablo Hawk"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"0.25","name":"CressetCremino S"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"10","name":"CressetCremino-Caerphilly SS"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"25","name":"CressetDraughts"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"150","name":"CressetRummy"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"2.5","name":"QuicksilverEmmenthal"},"coordinates":[1769,7260]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"0.6","name":"QuicksilverConcentration"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1978","yield":"140","name":"QuicksilverFarm"},"coordinates":[1766,7259]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"6","name":"QuicksilverBaccarat"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"89","name":"QuicksilverQuinella"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"20","name":"QuicksilverKloster"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"5","name":"QuicksilverMemory"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"5","name":"QuicksilverFreezeout"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"100","name":"QuicksilverPepato"},"coordinates":[1764,7260]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"1.5","name":"QuicksilverChess"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"22","name":"QuicksilverFajy"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"20","name":"QuicksilverBurzet"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"20","name":"QuicksilverOffshore"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"140","name":"QuicksilverHearts"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"5","name":"QuicksilverPera"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"140","name":"QuicksilverSheepshead"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"0.8","name":"TinderboxBackgammon"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1979","yield":"10","name":"TinderboxAzul"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"5","name":"TinderboxTarko"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"1","name":"TinderboxNorbo"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"20","name":"TinderboxLiptauer"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"89","name":"TinderboxPyramid"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"6","name":"TinderboxCanfield"},"coordinates":[1777,7247]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"10","name":"TinderboxFlora"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"140","name":"TinderboxKash"},"coordinates":[1765,7260]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"6","name":"TinderboxHuron King"},"coordinates":[1776,7245]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"140","name":"TinderboxTafi"},"coordinates":[1764,7259]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"3.5","name":"TinderboxVerdello"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"20","name":"TinderboxBonarda"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"1.07","name":"TinderboxRiola"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"10","name":"GuardianMiners Iron"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1980","yield":"2","name":"GuardianDauphin"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"99","name":"GuardianBaseball"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianClairette"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianSeco"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianVide"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"2.5","name":"GuardianAligote"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"140","name":"GuardianHarzer"},"coordinates":[1768,7261]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"4","name":"GuardianNiza"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianPineau"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianHavarti"},"coordinates":[1776,7252]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"4","name":"GuardianIslay"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"1","name":"GuardianTrebbiano"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"10","name":"GuardianCernada"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"38","name":"PraetorianPaliza"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"29","name":"PraetorianTilci"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"20","name":"PraetorianAkavi"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1981","yield":"5","name":"PraetorianCaboc"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"139","name":"PraetorianJornada"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"80","name":"PraetorianMolbo"},"coordinates":[1764,7257]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"140","name":"PraetorianHosta"},"coordinates":[1768,7264]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"6","name":"PraetorianTenaja"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"3.5","name":"PraetorianKryddost"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"99","name":"PraetorianBouschet"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"10","name":"PraetorianKesti"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"140","name":"PraetorianNebbiolo"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"20","name":"PraetorianMonterey"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"138","name":"PraetorianAtrisco"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"10","name":"PraetorianQueso"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"10","name":"PraetorianCerro"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"20","name":"PraetorianHuron Landing"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"10","name":"PraetorianDiamond Ace"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"20","name":"PraetorianFrisco"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"1","name":"PraetorianBorrego"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"5","name":"PhalanxSeyval"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1982","yield":"20","name":"PhalanxManteca"},"coordinates":[1775,7245]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"10","name":"PhalanxCoalora"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"1.5","name":"PhalanxCheedam"},"coordinates":[1776,7253]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"45","name":"PhalanxCabra"},"coordinates":[1764,7261]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"84","name":"PhalanxTurquoise"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"6","name":"PhalanxCrowdie"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"4","name":"PhalanxMini Jade"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"6","name":"PhalanxFahada"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"6","name":"PhalanxDanablu"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"2.5","name":"PhalanxLaban"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"5","name":"PhalanxSabado"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"2","name":"PhalanxJarlsberg"},"coordinates":[1776,7255]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"143","name":"PhalanxChancellor"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"10","name":"PhalanxTomme/Midnight Zephyr"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"0.6","name":"PhalanxBranco S"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"2","name":"PhalanxBranco-Herkimer SS"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"2","name":"PhalanxTechado"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"10","name":"PhalanxNavata"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"1.5","name":"FusileerMuggins"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1983","yield":"29","name":"FusileerRomano"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"20","name":"FusileerGorbea"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"20","name":"FusileerMidas Myth/Milagro"},"coordinates":[1772,7257]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"150","name":"FusileerTortugas"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"6","name":"FusileerAgrini"},"coordinates":[1775,7252]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"0.25","name":"FusileerOrkney"},"coordinates":[1776,7255]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"0.8","name":"FusileerBellow"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"120","name":"FusileerCaprock"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"20","name":"FusileerDuoro"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"0.5","name":"FusileerNormanna"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"80","name":"FusileerKappeli"},"coordinates":[1766,7259]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"10","name":"FusileerCorreo"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"10","name":"FusileerWexford"},"coordinates":[1774,7252]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"20","name":"FusileerDolcetto"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"33","name":"FusileerBreton"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"2.5","name":"GrenadierVermejo"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"5","name":"GrenadierVillita"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"80","name":"GrenadierTierra"},"coordinates":[1769,7260]},{"type":"Point","properties":{"country":"US","year":"1984","yield":"2.5","name":"GrenadierMinero"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"20","name":"GrenadierVaughn"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"60","name":"GrenadierCottage"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"150","name":"GrenadierHermosa"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"15","name":"GrenadierMisty Rain"},"coordinates":[1772,7255]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"150","name":"GrenadierTowanda"},"coordinates":[1768,7258]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"100","name":"GrenadierSalut"},"coordinates":[1764,7258]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"8","name":"GrenadierVille"},"coordinates":[1775,7248]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"3.5","name":"GrenadierMaribo"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"45","name":"GrenadierSerena"},"coordinates":[1765,7261]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"10","name":"GrenadierCebrero"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"8","name":"GrenadierChamita"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"10","name":"GrenadierPonil"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"0.075","name":"CharioteerMill Yard"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"2.5","name":"CharioteerDiamond Beech"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"20","name":"CharioteerRoquefort"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"0.01","name":"CharioteerAbo"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1985","yield":"60","name":"CharioteerGoldstone"},"coordinates":[1764,7257]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"29","name":"CharioteerGlencoe"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"20","name":"CharioteerMighty Oak"},"coordinates":[1772,7257]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"1.5","name":"CharioteerMogollon"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"80","name":"CharioteerJefferson"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"1","name":"CharioteerPanamint"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"67","name":"CharioteerTajo"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"119","name":"CharioteerCybar"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"8","name":"CharioteerCornucopia"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"0.35","name":"CharioteerGalveston"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"0.1","name":"CharioteerAleman"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"140","name":"CharioteerLabquark"},"coordinates":[1769,7261]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"140","name":"MusketeerBelmont"},"coordinates":[1764,7257]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"120","name":"MusketeerGascon"},"coordinates":[1776,7249]},{"type":"Point","properties":{"country":"US","year":"1986","yield":"140","name":"MusketeerBodie"},"coordinates":[1766,7259]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"MusketeerHazebrook-Emerald (GS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"MusketeerHazebrook-CheckerberSS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"MusketeerHazebrook-Apricot (OSS"},"coordinates":[1776,7254]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"6","name":"MusketeerTornero"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"3.5","name":"MusketeerMiddle Note"},"coordinates":[1772,7256]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"100","name":"MusketeerDelamar"},"coordinates":[1764,7258]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"2.5","name":"MusketeerPresidio"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"100","name":"MusketeerHardin"},"coordinates":[1765,7257]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"MusketeerBrie"},"coordinates":[1776,7255]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"MusketeerMission Ghost"},"coordinates":[1772,7257]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"8","name":"MusketeerPanchuela"},"coordinates":[1776,7243]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"150","name":"MusketeerTahoka"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"150","name":"MusketeerLockney"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"38","name":"TouchstoneBorate"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"10","name":"TouchstoneWaco"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1987","yield":"2","name":"TouchstoneMission Cyber"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"60","name":"TouchstoneKernville"},"coordinates":[1764,7262]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"2","name":"TouchstoneAbilene"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"16","name":"TouchstoneSchellbourne"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"3.5","name":"TouchstoneLaredo"},"coordinates":[1778,7246]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"80","name":"TouchstoneComstock"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"75","name":"TouchstoneRhyolite"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"75","name":"TouchstoneNightingale"},"coordinates":[1775,7253]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"150","name":"TouchstoneAlamo"},"coordinates":[1767,7258]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"140","name":"TouchstoneKearsarge"},"coordinates":[1769,7261]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"2","name":"TouchstoneHarlingen-A S"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"10","name":"TouchstoneHarlingen-B SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"33","name":"TouchstoneBullfrog"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"150","name":"CornerstoneDalhart"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"10","name":"CornerstoneMonahans-A S"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"10","name":"CornerstoneMonahans-B SS"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"3","name":"CornerstoneKawich A-White S"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"10","name":"CornerstoneKawich B-Blue SS"},"coordinates":[1775,7254]},{"type":"Point","properties":{"country":"US","year":"1988","yield":"25","name":"CornerstoneMisty Echo"},"coordinates":[1771,7255]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"67","name":"CornerstoneTexarkana *"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"5","name":"CornerstoneKawich-Red S"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"CornerstoneKawich-Black SS"},"coordinates":[1774,7251]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"33","name":"CornerstoneIngot"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"5","name":"CornerstonePalisade-1 S"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"CornerstonePalisade-2 SS"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"8","name":"CornerstonePalisade-3 SS"},"coordinates":[1774,7250]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"0.5","name":"CornerstoneTulia"},"coordinates":[1776,7248]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"60","name":"CornerstoneContact"},"coordinates":[1766,7260]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"20","name":"CornerstoneAmarillo"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"CornerstoneDisko Elm"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"150","name":"AqueductHornitos"},"coordinates":[1764,7259]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"AqueductMuleshoe"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"AqueductWhiteface-A S"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1989","yield":"10","name":"AqueductWhiteface-B SS"},"coordinates":[1777,7245]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"44","name":"AqueductMetropolis"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"0.1","name":"AqueductBowie"},"coordinates":[1778,7247]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"150","name":"AqueductBullion"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"2","name":"AqueductAustin"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"10","name":"AqueductMineral Quarry S"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"10","name":"AqueductRandsburg SS"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"10","name":"AqueductSundown-A S"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"10","name":"AqueductSundown-B SS"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"10","name":"AqueductLedoux"},"coordinates":[1776,7244]},{"type":"Point","properties":{"country":"US","year":"1990","yield":"140","name":"SculpinTenabo"},"coordinates":[1764,7258]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"3.5","name":"SculpinCoso-Bronze S"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"8","name":"SculpinCoso-Gray SS"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"10","name":"SculpinCoso-Silver SS"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"140","name":"SculpinBexar"},"coordinates":[1769,7261]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"80","name":"SculpinMontello"},"coordinates":[1765,7258]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"3","name":"SculpinFloydada"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"100","name":"SculpinHoya"},"coordinates":[1765,7257]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"1.5","name":"SculpinDistant Zenith"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1991","yield":"53","name":"JulinLubbock"},"coordinates":[1776,7247]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"100","name":"JulinJunction"},"coordinates":[1767,7259]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"3","name":"JulinDiamond Fortune"},"coordinates":[1773,7257]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"0.08","name":"JulinVictoria"},"coordinates":[1777,7243]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"10","name":"JulinGalena-Yellow S"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"10","name":"JulinGalena-Orange SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"10","name":"JulinGalena-Green SS"},"coordinates":[1777,7251]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"4","name":"JulinHunters Trophy"},"coordinates":[1771,7256]},{"type":"Point","properties":{"country":"US","year":"1992","yield":"5","name":"JulinDivider"},"coordinates":[1778,7245]},{"type":"Point","properties":{"country":"USSR","year":"1949","yield":"22","name":"19491 Pervaya Molniya (Joe 1"},"coordinates":[7161,8037]},{"type":"Point","properties":{"country":"USSR","year":"1951","yield":"38.3","name":"19512 Vtoraya Molniya (Joe 2"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1951","yield":"42","name":"19513 (Joe 3)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1953","yield":"400","name":"19534 (Joe 4)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1953","yield":"28","name":"19535 (Joe 5)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1953","yield":"5.8","name":"19536 (Joe 6?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1953","yield":"1.6","name":"19537"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1953","yield":"4.9","name":"19538 (Joe 7?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"40","name":"19549 (Joe 8?)"},"coordinates":[6467,8165]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"0.2","name":"195410"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"0.03","name":"195411"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"2","name":"195412 (Joe 9?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"4","name":"195413 (Joe 10?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"0.8","name":"195414 (Joe 11?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"0.001","name":"195415"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"62","name":"195416 (Joe 12?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"2.8","name":"195417 (Joe 13?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1954","yield":"10","name":"195418 (Joe 14?)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"1.3","name":"195519 (Joe 15)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"12","name":"195520 (Joe 16)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"1.2","name":"195521"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"3.5","name":"195522 (Joe 17)"},"coordinates":[6515,9234]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"250","name":"195523 (Joe 18)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1955","yield":"1600","name":"195524 (Joe 19)"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"0.3","name":"195625"},"coordinates":[6722,7775]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"14","name":"195626"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"5.5","name":"195627"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"27","name":"195628"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"900","name":"195629"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"51","name":"195630"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"38","name":"195631"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"900","name":"195632"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1956","yield":"40","name":"195633"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"10","name":"195734"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"19","name":"195735"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"42","name":"195736"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"57","name":"195737"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"680","name":"195738"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"22","name":"195739"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"320","name":"195740"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"520","name":"195741"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"0.1","name":"195742"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"32","name":"195743"},"coordinates":[6522,9233]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"5.9","name":"195744"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"1600","name":"195745"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"13","name":"195746"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"2900","name":"195747"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"6","name":"195748"},"coordinates":[6515,9234]},{"type":"Point","properties":{"country":"USSR","year":"1957","yield":"12","name":"195749"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1.3","name":"195850"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"0.5","name":"195851"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"860","name":"195852"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"250","name":"195853"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1500","name":"195854"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1.2","name":"195855"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"35","name":"195856"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"40","name":"195857"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"14","name":"195858"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"0.16","name":"195859"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"12","name":"195860"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"650","name":"195861"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"18","name":"195862"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1200","name":"195863"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"900","name":"195864"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"290","name":"195865"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"40","name":"195866"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"9","name":"195867"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"15","name":"195868"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"5.5","name":"195869"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"68","name":"195870"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1450","name":"195871"},"coordinates":[6480,9484]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1500","name":"195872"},"coordinates":[6438,9429]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"2900","name":"195873"},"coordinates":[6457,9428]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"40","name":"195874"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"0.001","name":"195875"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"440","name":"195876"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"2","name":"195877"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"2800","name":"195878"},"coordinates":[6474,9402]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"1000","name":"195879"},"coordinates":[6526,9411]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"190","name":"195880"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"0.05","name":"195881"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"10","name":"195882"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1958","yield":"10","name":"195883"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"16","name":"196184"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"9","name":"196185"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"16","name":"196186"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1.1","name":"196187"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"10.5","name":"196188"},"coordinates":[6230,7920]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.38","name":"196189"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"2700","name":"196190"},"coordinates":[6458,9441]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"12","name":"196191"},"coordinates":[6516,9234]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.88","name":"196192"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.3","name":"196193"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1150","name":"196194"},"coordinates":[6447,9441]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"6","name":"196195"},"coordinates":[6481,9244]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"10","name":"196196"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.4","name":"196197"},"coordinates":[7161,8032]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1200","name":"196198"},"coordinates":[6419,9464]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"830","name":"196199"},"coordinates":[6441,9429]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"21","name":"1961100"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1000","name":"1961101"},"coordinates":[6444,9429]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.004","name":"1961102"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.75","name":"1961103"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.03","name":"1961104"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"4.8","name":"1961105"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1500","name":"1961106"},"coordinates":[6507,9401]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.8","name":"1961107"},"coordinates":[7158,8031]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"260","name":"1961108"},"coordinates":[6507,9401]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1.2","name":"1961109"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"3","name":"1961110"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"250","name":"1961111"},"coordinates":[6514,9425]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"13","name":"1961112"},"coordinates":[7159,8037]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"3000","name":"1961113"},"coordinates":[6494,9411]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"4000","name":"1961114"},"coordinates":[6432,9447]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"40","name":"1961115"},"coordinates":[6230,7920]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"15","name":"1961116"},"coordinates":[6516,9234]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1","name":"1961117"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"15","name":"1961118"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"6.6","name":"1961119"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"10","name":"1961120"},"coordinates":[7159,8038]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1450","name":"1961121 Raduga"},"coordinates":[6477,9417]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"4.8","name":"1961122 Korall"},"coordinates":[6515,9234]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"12500","name":"1961123"},"coordinates":[6494,9423]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"300","name":"1961124"},"coordinates":[6507,9401]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.5","name":"1961125"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"16","name":"1961126 Korall"},"coordinates":[6518,9234]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1.2","name":"K Pr127 K2"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1.2","name":"K Pr128 K1"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.09","name":"1961129"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"58000","name":"1961130 Tsar Bomba"},"coordinates":[6486,9417]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"5000","name":"1961131"},"coordinates":[6560,9405]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"400","name":"1961132"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"2.7","name":"1961133"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"120","name":"1961134"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"280","name":"1961135"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.6","name":"1961136"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.001","name":"1961137"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.9","name":"1961138"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"15","name":"1961139"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"1500","name":"1961140"},"coordinates":[6546,9411]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"6","name":"1961141"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1961","yield":"0.2","name":"1961142"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"15","name":"1962143 Argon-1"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2.4","name":"1962144"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1.6","name":"1962145"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3.8","name":"1962146"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"21100","name":"1962147"},"coordinates":[6458,9441]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"9.9","name":"1962148"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"400","name":"1962149"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"7.4","name":"1962150"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"5.8","name":"1962151"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2800","name":"1962152"},"coordinates":[6430,9447]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"23","name":"1962153"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1600","name":"1962154"},"coordinates":[6480,9429]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"6","name":"1962155"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3","name":"1962156"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2.5","name":"1962157"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1","name":"1962159"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"10000","name":"1962158"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"4200","name":"1962160"},"coordinates":[6396,9471]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"11","name":"1962161"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2.7","name":"1962162"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"80","name":"1962163"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1900","name":"1962164"},"coordinates":[6494,9411]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3100","name":"1962165"},"coordinates":[6430,9453]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3250","name":"1962166"},"coordinates":[6432,9441]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1350","name":"1962167"},"coordinates":[6519,9382]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"10000","name":"1962168"},"coordinates":[6494,9417]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2400","name":"1962169"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.21","name":"1962170"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1.2","name":"1962171"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"7","name":"1962172"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"19100","name":"1962173"},"coordinates":[6527,9411]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"20000","name":"1962174"},"coordinates":[6455,9447]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1.3","name":"1962175"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"320","name":"1962176"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8","name":"1962177"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"15","name":"1962178"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"9.2","name":"1962179"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"4.9","name":"1962180"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"10","name":"1962181"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"6.7","name":"1962182"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"300","name":"K Pr184 K3"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8200","name":"1962183"},"coordinates":[6524,9394]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"260","name":"1962185"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"7.8","name":"1962186"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"300","name":"K Pr187 K4"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"7.8","name":"1962188"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"360","name":"1962189"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1.2","name":"1962190"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"280","name":"1962191"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"10","name":"1962192"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"240","name":"1962194"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"300","name":"K Pr195 K5"},"coordinates":[6277,7952]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3","name":"1962193"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"390","name":"1962196"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"45","name":"1962197"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"4.7","name":"1962198"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8.4","name":"1962199"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.4","name":"1962200"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.1","name":"1962201"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.001","name":"1962202"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"12","name":"1962203"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"18","name":"1962204"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.001","name":"1962205"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.031","name":"1962206"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2.4","name":"1962207"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"110","name":"1962208"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"69","name":"1962209"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8.3","name":"1962210"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"6.3","name":"1962211"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"430","name":"1962212"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8.3","name":"1962213"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"2.4","name":"1962214"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.001","name":"1962215"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.007","name":"1962216"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"0.028","name":"1962217"},"coordinates":[7166,8012]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"1100","name":"1962218"},"coordinates":[6452,9441]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"24200","name":"1962219"},"coordinates":[6596,9405]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"3100","name":"1962220"},"coordinates":[6569,9394]},{"type":"Point","properties":{"country":"USSR","year":"1962","yield":"8.5","name":"1962221"},"coordinates":[6527,9370]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"37","name":"1964222"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"23.7","name":"1964223"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"1.6","name":"1964224"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"26","name":"1964225"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"0.07","name":"1964226"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"2","name":"1964227"},"coordinates":[6514,9410]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"10.0005","name":"1964228"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"20","name":"1964229"},"coordinates":[6527,9393]},{"type":"Point","properties":{"country":"USSR","year":"1964","yield":"47","name":"1964230"},"coordinates":[7170,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"140","name":"1965231 Chagan"},"coordinates":[7194,8007]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"44","name":"1965232"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"27","name":"1965233"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"0.06","name":"1965234"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"2.3","name":"1965235 Butan-1 S"},"coordinates":[6569,8183]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"2.3","name":"1965235 Butan-2 SS"},"coordinates":[6569,8183]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"14","name":"1965236"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"7.6","name":"1965237 Butan"},"coordinates":[6569,8183]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"24","name":"1965238"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"1.1","name":"1965239"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"15","name":"1965240"},"coordinates":[7170,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"29","name":"1965241"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"1.1","name":"1965242 Sary-Uzen"},"coordinates":[7156,8011]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"29","name":"1965243"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1965","yield":"6.7","name":"1965244"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"125","name":"1966245"},"coordinates":[7170,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"100","name":"1966246"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"22","name":"1966247"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"1.1","name":"1966248 Galit"},"coordinates":[6331,7883]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"4","name":"1966249"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"42","name":"1966250"},"coordinates":[7168,8002]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"24","name":"1966251"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"32","name":"1966252"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"10","name":"1966253"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"4.6","name":"1966254"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"30","name":"1966255 Urta-Bulak"},"coordinates":[6791,7359]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"55","name":"1966256"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"700","name":"1966258"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"700","name":"1966257"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"10.0005","name":"1966259"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"10.0005","name":"1966260"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"4.6","name":"1966261 S"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"10.0005","name":"1966261 SS"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1966","yield":"100","name":"1966262"},"coordinates":[7159,8007]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"4.6","name":"1967263 S"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10.0005","name":"1967263 SS"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"130","name":"1967264"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"18","name":"1967265 S"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10.0005","name":"1967265 SS"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"37","name":"1967266"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"28","name":"1967267 S"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10.0005","name":"1967267 SS"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"20","name":"1967268"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"23","name":"1967269"},"coordinates":[7169,8002]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"19","name":"1967270 S"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10.0005","name":"1967270 SS"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"0.7","name":"1967271"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"16","name":"1967272"},"coordinates":[7158,8008]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10","name":"1967273"},"coordinates":[7157,8009]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"0.3","name":"1967274 Tavda"},"coordinates":[6811,8466]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"45","name":"1967275 S"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"10.0005","name":"1967275 SS"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"260","name":"1967276 S"},"coordinates":[6522,9393]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"85","name":"1967276 SS"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"25","name":"1967277"},"coordinates":[7166,7999]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"1.6","name":"1967278"},"coordinates":[7157,8008]},{"type":"Point","properties":{"country":"USSR","year":"1967","yield":"19","name":"1967279"},"coordinates":[7171,8001]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"7.5","name":"1968280"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"6.2","name":"1968281"},"coordinates":[7169,8002]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"47","name":"1968282 Pamuk"},"coordinates":[6806,7357]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.001","name":"1968283"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"15","name":"1968284"},"coordinates":[7170,7999]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"18","name":"1968285"},"coordinates":[7193,8010]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"27","name":"1968286 Galit"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"24","name":"1968287 S"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"10.0005","name":"1968287 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"4.6","name":"1968288 S"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.001","name":"1968288 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"32","name":"1968289"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"60","name":"1968290 Argon"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.24","name":"1968291 Telkem-1"},"coordinates":[7180,7995]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"10.0005","name":"1968292"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.001","name":"1968293 S"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"165","name":"1968293 SS"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"165","name":"1968293 SS"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"4","name":"1968294"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.24","name":"1968295 Telkem-2 S"},"coordinates":[7179,7995]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.24","name":"1968295 Telkem-2 SS"},"coordinates":[7180,7994]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"0.24","name":"1968295 Telkem-2 SS"},"coordinates":[7180,7994]},{"type":"Point","properties":{"country":"USSR","year":"1968","yield":"8.9","name":"1968296"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"49","name":"1969297"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969298"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969299"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"16","name":"1969300"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"18","name":"1969301"},"coordinates":[7157,8009]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"15","name":"1969302 S"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969302 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"16","name":"1969303"},"coordinates":[7170,8001]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"7.6","name":"1969304 Grifon-1"},"coordinates":[6538,8438]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"7.6","name":"1969305 Grifon-2"},"coordinates":[6539,8438]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"6.2","name":"1969306 S"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969306 SS"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10","name":"1969307"},"coordinates":[6183,7766]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"16","name":"1969308 S"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969308 SS"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"540","name":"1969309 S"},"coordinates":[6521,9393]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"825","name":"1969309 SS"},"coordinates":[6521,9393]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"825","name":"1969309 SS"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969310"},"coordinates":[7169,8002]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10.0005","name":"1969311"},"coordinates":[7168,8002]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"125","name":"1969312"},"coordinates":[7192,8007]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"30","name":"1969313 Say-Utes-1"},"coordinates":[6522,7649]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"40","name":"1969314"},"coordinates":[7158,8008]},{"type":"Point","properties":{"country":"USSR","year":"1969","yield":"10","name":"1969315"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"42","name":"1970316 S"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"10.0005","name":"1970316 SS"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"10.0005","name":"1970316 SS"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"0.001","name":"1970317"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"6.5","name":"1970318"},"coordinates":[7166,7996]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"0.9","name":"1970319"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"2.3","name":"1970320 Magistral"},"coordinates":[6546,8141]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"88","name":"1970321"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"10.0005","name":"1970322 S"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"10.0005","name":"1970322 SS"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"23","name":"1970323"},"coordinates":[7157,8009]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"20","name":"1970324"},"coordinates":[7170,8001]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"10.0005","name":"1970325"},"coordinates":[7166,7999]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"34","name":"1970326"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"2200","name":"1970327 S"},"coordinates":[6528,9388]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"825","name":"1970327 SS"},"coordinates":[6528,9388]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"825","name":"1970327 SS"},"coordinates":[6528,9388]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"27","name":"1970328"},"coordinates":[7159,8011]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"80","name":"1970329 Say-Utes-2"},"coordinates":[6522,7648]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"26","name":"1970330"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1970","yield":"75","name":"1970331 Say-Utes-3"},"coordinates":[6525,7659]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"1.8","name":"1971332"},"coordinates":[7171,8000]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"67","name":"1971333"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"10.0005","name":"1971334"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"15","name":"1971335 Taiga S"},"coordinates":[6560,8685]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"15","name":"1971335 Taiga SS"},"coordinates":[6560,8685]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"15","name":"1971335 Taiga SS"},"coordinates":[6560,8685]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"0.23","name":"1971336"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"90","name":"1971337"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"9","name":"1971338"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"16","name":"1971339"},"coordinates":[7156,8010]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"35","name":"1971340"},"coordinates":[7156,8009]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"5","name":"1971341"},"coordinates":[7193,8008]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"2.3","name":"1971342 Globus-4"},"coordinates":[6762,9033]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"2.3","name":"1971343 Globus-3"},"coordinates":[6535,8848]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"2.3","name":"1971344 Globus-1"},"coordinates":[6184,8455]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"2450","name":"1971345 S"},"coordinates":[6525,9393]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"825","name":"1971345 SS"},"coordinates":[6525,9393]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"825","name":"1971345 SS"},"coordinates":[6525,9393]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"825","name":"1971345 SS"},"coordinates":[6525,9393]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"2.3","name":"1971346 Globus-2"},"coordinates":[6336,8682]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"12","name":"1971347"},"coordinates":[7156,8010]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"23","name":"1971348"},"coordinates":[7155,8010]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"15","name":"1971349 Sapfir-1"},"coordinates":[6512,8106]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"28","name":"1971350 S"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"10.0005","name":"1971350 SS"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"6","name":"1971351"},"coordinates":[7166,8001]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"64","name":"1971352 Galit"},"coordinates":[6337,7887]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"50","name":"1971353"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1971","yield":"85","name":"1971354"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"16","name":"1972355"},"coordinates":[7190,8013]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"28","name":"1972356 S"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"10.0005","name":"1972356 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"6","name":"1972357 S"},"coordinates":[7168,7995]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"10.0005","name":"1972357 SS"},"coordinates":[7168,7995]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"0.001","name":"1972357 SS"},"coordinates":[7168,7995]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"15","name":"1972358 Crater"},"coordinates":[6723,7264]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"0.001","name":"1972359"},"coordinates":[7169,8002]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"10.0005","name":"1972360"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"25","name":"1972361"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"1.5","name":"1972362"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"3.8","name":"1972363 Fakel"},"coordinates":[5983,8000]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"10","name":"1972364"},"coordinates":[6494,9240]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"8","name":"1972365"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"6.6","name":"1972366 Region-3"},"coordinates":[6337,7976]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"21","name":"1972367"},"coordinates":[7158,8010]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"1120","name":"1972368 S"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"85","name":"1972368 SS"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"825","name":"1972368 SS"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"825","name":"1972368 SS"},"coordinates":[6523,9393]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"2","name":"1972369"},"coordinates":[7156,8009]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"2.1","name":"1972370 Dnepr-1"},"coordinates":[5919,9060]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"2.3","name":"1972371 Region-1"},"coordinates":[6446,8137]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"6.6","name":"1972372 Region-4"},"coordinates":[6248,7826]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"165","name":"1972373"},"coordinates":[7188,8007]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"2.3","name":"1972374 Region-2"},"coordinates":[6440,8129]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"6.6","name":"1972375 Region-5"},"coordinates":[6782,8120]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"58","name":"1972376 S"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"85","name":"1972376 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"140","name":"1972377"},"coordinates":[7193,8013]},{"type":"Point","properties":{"country":"USSR","year":"1972","yield":"10.0005","name":"1972378"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"42","name":"1973379"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"21","name":"1973380"},"coordinates":[7155,8010]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"20","name":"1973381 S"},"coordinates":[7166,7999]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"10.0005","name":"1973381 SS"},"coordinates":[7166,7999]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"0.001","name":"1973381 SS"},"coordinates":[7166,7999]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"212","name":"1973382"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"6.3","name":"1973383 Meridian-3"},"coordinates":[6872,7584]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"6.3","name":"1973384 Meridian-1"},"coordinates":[6898,8042]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"3800","name":"1973385 S"},"coordinates":[6529,9389]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"825","name":"1973385 SS"},"coordinates":[6529,9389]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"825","name":"1973385 SS"},"coordinates":[6529,9389]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"825","name":"1973385 SS"},"coordinates":[6529,9389]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"6.3","name":"1973386 Meridian-2"},"coordinates":[6883,7761]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"0.001","name":"1973387"},"coordinates":[7189,8009]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"180","name":"1973388"},"coordinates":[6495,9236]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"10","name":"1973389 Sapfir-2"},"coordinates":[6514,8109]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"15","name":"1973391"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"10","name":"1973390 Kama-2"},"coordinates":[6539,8227]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"4000","name":"1973392"},"coordinates":[6501,9239]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"10.0005","name":"1973393"},"coordinates":[7192,8015]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"80","name":"1973394"},"coordinates":[7193,8014]},{"type":"Point","properties":{"country":"USSR","year":"1973","yield":"0.5","name":"1973395"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"24","name":"1974396 S"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"6","name":"1974396 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"10.0005","name":"1974396 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"0.001","name":"1974397"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"1","name":"1974398"},"coordinates":[7191,8013]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"18","name":"1974399"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"71","name":"1974400"},"coordinates":[7189,8009]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"3.5","name":"1974401"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"10","name":"1974402 Kama-1"},"coordinates":[6530,8230]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"18","name":"1974403"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"10.0005","name":"1974404"},"coordinates":[7192,8008]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"7.6","name":"1974405 Gorizont-2"},"coordinates":[7105,9128]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"1200","name":"1974407 S"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"825","name":"1974407 SS"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"85","name":"1974407 SS"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"10.0005","name":"1974407 SS"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"825","name":"1974407 SS"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"7.6","name":"1974406 Gorizont-1"},"coordinates":[6739,9021]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"14","name":"1974408"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"1.7","name":"1974409 Kristall"},"coordinates":[5350,8962]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"19","name":"1974410 Argon-3"},"coordinates":[7191,8011]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"2300","name":"1974411"},"coordinates":[6497,9241]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"0.01","name":"1974412"},"coordinates":[7158,8009]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"1.7","name":"1974413 Lazurit"},"coordinates":[7155,8006]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"6.7","name":"1974414"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"3.8","name":"1974415"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1974","yield":"36","name":"1974416"},"coordinates":[7194,8009]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975417 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975417 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975417 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"55","name":"1975418"},"coordinates":[7166,8000]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"24","name":"1975419"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"0.35","name":"1975420"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"29","name":"1975421"},"coordinates":[7191,8008]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"32","name":"1975422"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"8","name":"1975423"},"coordinates":[7191,8011]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975424 S"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975424 SS"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"14","name":"1975425 S"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975425 SS"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"7.6","name":"1975426 Gorizont-4"},"coordinates":[5748,9238]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"1100","name":"1975427 S"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"10.0005","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"85","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"85","name":"1975427 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"7.6","name":"1975428 Gorizont-3"},"coordinates":[7508,9168]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"0.2","name":"1975429"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"600","name":"1975430 S"},"coordinates":[6492,9241]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"600","name":"1975430 SS"},"coordinates":[6492,9241]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"600","name":"1975431"},"coordinates":[6493,9241]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"1300","name":"1975432 S"},"coordinates":[6528,9389]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975432 SS"},"coordinates":[6528,9389]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"85","name":"1975432 SS"},"coordinates":[6528,9389]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975432 SS"},"coordinates":[6528,9389]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"825","name":"1975432 SS"},"coordinates":[6528,9389]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"36","name":"1975433"},"coordinates":[7190,8009]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"8","name":"1975434"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1975","yield":"59","name":"1975435"},"coordinates":[7188,8014]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"13","name":"1976436"},"coordinates":[7171,8000]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10.0005","name":"1976437"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10","name":"1976438"},"coordinates":[6337,7887]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"0.1","name":"1976439"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"7","name":"1976441"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"7","name":"1976440"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"3.7","name":"1976442"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10","name":"1976443"},"coordinates":[7194,8011]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"65","name":"1976444"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"7","name":"1976445"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"58","name":"1976446"},"coordinates":[6337,7886]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"0.9","name":"1976447"},"coordinates":[7158,8003]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"53","name":"1976448"},"coordinates":[7191,8010]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"130","name":"1976449 S"},"coordinates":[6524,9392]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"85","name":"1976449 SS"},"coordinates":[6524,9392]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"13","name":"1976450 S"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10.0005","name":"1976450 SS"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10.0005","name":"1976450 SS"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"0.001","name":"1976450 SS"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"2.8","name":"1976451"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"15","name":"1976452 Oka"},"coordinates":[5356,8688]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"74","name":"1976453"},"coordinates":[7192,8012]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"54","name":"1976454 S"},"coordinates":[7189,8008]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10.0005","name":"1976454 SS"},"coordinates":[7189,8008]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"95","name":"1976455"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10","name":"1976456 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1976","yield":"10.0005","name":"1976456 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"24","name":"1977458"},"coordinates":[7169,8009]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"25","name":"1977457 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977457 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"0.001","name":"1977457 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10","name":"1977459"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"44","name":"1977460"},"coordinates":[7187,8008]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"9","name":"1977461"},"coordinates":[7190,8012]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"15","name":"1977462 Meteorit-2"},"coordinates":[7509,9168]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"11","name":"1977463 S"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977463 SS"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"8.5","name":"1977464 Meteorit-5"},"coordinates":[5305,8067]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"8","name":"1977465"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"8.5","name":"1977466 Meteorit-3"},"coordinates":[7765,8845]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"120","name":"1977467 S"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977467 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977467 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"85","name":"1977467 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"78","name":"1977468 S"},"coordinates":[7191,8015]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977468 SS"},"coordinates":[7191,8015]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"7.6","name":"1977469 Meteorit-4"},"coordinates":[5182,8439]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10","name":"1977470 Galit"},"coordinates":[6338,7887]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"5","name":"1977471"},"coordinates":[6525,9394]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"0.1","name":"1977472"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"42","name":"1977473 S"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977473 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"50","name":"1977474"},"coordinates":[7193,8015]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"0.1","name":"1977475"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977476"},"coordinates":[7190,8015]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977477"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"70","name":"1977478 S"},"coordinates":[7190,8009]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977478 SS"},"coordinates":[7190,8009]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977479"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"6","name":"1977480 S"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"0.001","name":"1977480 SS"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977480 SS"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1977","yield":"10.0005","name":"1977480 SS"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"13","name":"1978481"},"coordinates":[7158,8008]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"30","name":"1978482 S"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978482 SS"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"20","name":"1978483 S"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978483 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978483 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.001","name":"1978484"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"3","name":"1978485"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.001","name":"1978486"},"coordinates":[7168,7996]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"58","name":"1978487"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"87","name":"1978488"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"60","name":"1978489 S"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978489 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978489 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978489 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978489 SS"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"22","name":"1978490 Kraton-4"},"coordinates":[5708,8820]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"180","name":"1978491 S"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978491 SS"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978491 SS"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978491 SS"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"85","name":"1978491 SS"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978491 SS"},"coordinates":[6524,9387]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"22","name":"1978492 Kraton-3"},"coordinates":[5343,8952]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"14","name":"1978493 S"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978493 SS"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.001","name":"1978493 SS"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"119","name":"1978494"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.08","name":"1978495"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"81","name":"1978496"},"coordinates":[7190,8007]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"1.1","name":"1978497"},"coordinates":[7170,7999]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"15","name":"1978498 Kraton-2"},"coordinates":[7394,8992]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"60","name":"1978499 S"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.001","name":"1978499 SS"},"coordinates":[6518,9391]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"15","name":"1978500 Vyatka"},"coordinates":[5356,8694]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"12","name":"1978501"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"56","name":"1978502 Galit S"},"coordinates":[6336,7884]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"18","name":"1978502 Galit SS"},"coordinates":[6336,7884]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"22","name":"1978503 Kraton-1"},"coordinates":[6761,8790]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"16","name":"1978504"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"44","name":"1978505 S"},"coordinates":[7192,8014]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978505 SS"},"coordinates":[7192,8014]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"101","name":"1978506 S"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978506 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"110","name":"1978507"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"0.006","name":"1978508"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"4","name":"1978509"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"103","name":"1978510 Galit"},"coordinates":[6337,7885]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"3.5","name":"1978511 S"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1978","yield":"10.0005","name":"1978511 SS"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"0.5","name":"1979512"},"coordinates":[6330,7888]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"12","name":"1979513 Galit S"},"coordinates":[6336,7889]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"56","name":"1979513 SS"},"coordinates":[6336,7889]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"18","name":"1979514"},"coordinates":[7189,8016]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"23","name":"1979515 S"},"coordinates":[7157,8010]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979515 SS"},"coordinates":[7157,8010]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"0.001","name":"1979516"},"coordinates":[7171,8000]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"0.001","name":"1979517"},"coordinates":[7171,8000]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"15","name":"1979518 S"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979518 SS"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"17","name":"1979519 S"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979519 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979519 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979519 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"0.001","name":"1979520"},"coordinates":[7171,8000]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"149","name":"1979521"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"97","name":"1979522 S"},"coordinates":[7193,8013]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979522 SS"},"coordinates":[7193,8013]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"7","name":"1979523 Galit S"},"coordinates":[6336,7886]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"7","name":"1979523 Galit SS"},"coordinates":[6336,7886]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"7","name":"1979523 Galit SS"},"coordinates":[6336,7886]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"12","name":"1979524"},"coordinates":[7161,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"14","name":"1979525"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"150","name":"1979526 S"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"85","name":"1979526 SS"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"8.5","name":"1979527 Kimberlit-4"},"coordinates":[5623,8709]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"150","name":"1979528 S"},"coordinates":[7191,8008]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979528 SS"},"coordinates":[7191,8008]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"8.5","name":"1979529 Kimberlit-3"},"coordinates":[7765,8845]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"0.3","name":"1979530 Klivazh"},"coordinates":[6064,7905]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"130","name":"1979531 S"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979531 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979531 SS"},"coordinates":[6518,9390]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"1.6","name":"1979532"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"22","name":"1979533 Kimberlit-1"},"coordinates":[6984,8642]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"15","name":"1979534 Sheksna"},"coordinates":[5363,8711]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"15","name":"1979535 S"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979535 SS"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"150","name":"1979536 S"},"coordinates":[6522,9389]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979536 SS"},"coordinates":[6522,9389]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"85","name":"1979536 SS"},"coordinates":[6522,9389]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979536 SS"},"coordinates":[6522,9389]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"3","name":"1979537 Galit S"},"coordinates":[6337,7884]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"30","name":"1979537 Galit SS"},"coordinates":[6337,7884]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"120","name":"1979538 S"},"coordinates":[7193,8011]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"85","name":"1979538 SS"},"coordinates":[7193,8011]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"1.6","name":"1979539"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"93","name":"1979540 S"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"85","name":"1979540 SS"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"3.6","name":"1979541"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"137","name":"1979542 S"},"coordinates":[7187,8007]},{"type":"Point","properties":{"country":"USSR","year":"1979","yield":"10.0005","name":"1979542 SS"},"coordinates":[7187,8007]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"0.001","name":"1980543"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"6","name":"1980544"},"coordinates":[7161,8012]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"8","name":"1980545 S"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980545 SS"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"19","name":"1980546 S"},"coordinates":[7187,8010]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980546 SS"},"coordinates":[7187,8010]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"35","name":"1980547 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980547 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980547 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"37","name":"1980548"},"coordinates":[7193,8011]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"3.2","name":"1980549 Butan"},"coordinates":[6569,8183]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"3.2","name":"1980550 Butan"},"coordinates":[6569,8183]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"0.3","name":"1980551"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"44","name":"1980552 S"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980552 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"85","name":"1980552 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"20","name":"1980553 S"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980553 SS"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"200","name":"1980554"},"coordinates":[7188,8008]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"5","name":"1980555 Dynamika"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"8.5","name":"1980556 Vega-1"},"coordinates":[6341,7820]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"130","name":"1980557 S"},"coordinates":[6526,9390]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980557 SS"},"coordinates":[6526,9390]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980557 SS"},"coordinates":[6526,9390]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"85","name":"1980557 SS"},"coordinates":[6526,9390]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980557 SS"},"coordinates":[6524,9388]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980557 SS"},"coordinates":[6524,9388]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980557 SS"},"coordinates":[6524,9388]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"102","name":"1980558 S"},"coordinates":[7194,8009]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"85","name":"1980558 SS"},"coordinates":[7194,8009]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980559"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"8","name":"1980560 Batolit-1"},"coordinates":[7709,8650]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"0.1","name":"1980561"},"coordinates":[7170,7997]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980562 S"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980562 SS"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980562 SS"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"15","name":"1980563 Angara"},"coordinates":[6854,8706]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"101","name":"1980564 S"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980564 SS"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"85","name":"1980564 SS"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"2","name":"1980565"},"coordinates":[7169,8001]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"100","name":"1980566 S"},"coordinates":[7193,8015]},{"type":"Point","properties":{"country":"USSR","year":"1980","yield":"10.0005","name":"1980566 SS"},"coordinates":[7193,8015]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"0.001","name":"1981567"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"30","name":"1981568 S"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981568 SS"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981568 SS"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"92","name":"1981569 S"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981569 SS"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981569 SS"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"37.6","name":"1981570 Pirit"},"coordinates":[6486,9086]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"20","name":"1981571"},"coordinates":[7193,8011]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"0.001","name":"1981572"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"12","name":"1981573 S"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981573 SS"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"9.3","name":"1981574"},"coordinates":[7170,8000]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"5.6","name":"1981575 S"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981575 SS"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981575 SS"},"coordinates":[7168,7997]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"3.2","name":"1981576 Geliy-1"},"coordinates":[6546,8637]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"150","name":"1981577"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"8.5","name":"1981578 Vega"},"coordinates":[6342,7822]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"8.5","name":"1981579 Vega"},"coordinates":[6342,7820]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"140","name":"1981580 S"},"coordinates":[6522,9388]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981580 SS"},"coordinates":[6522,9388]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981580 SS"},"coordinates":[6522,9388]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981580 SS"},"coordinates":[6522,9388]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"0.001","name":"1981581"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"107","name":"1981582 S"},"coordinates":[7189,8007]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981582 SS"},"coordinates":[7189,8007]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"8.5","name":"1981583 Shpat-2"},"coordinates":[7709,8827]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"8","name":"1981584 S"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981584 SS"},"coordinates":[7169,7996]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"31","name":"1981585 S"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981585 SS"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981585 SS"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"7","name":"1981586 S"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981586 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"10.0005","name":"1981586 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1981","yield":"150","name":"1981587"},"coordinates":[7187,8007]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"24","name":"1982588 S"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982588 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"145","name":"1982589 S"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"85","name":"1982589 SS"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"85","name":"1982589 SS"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"2.4","name":"1982590 S"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982590 SS"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"136","name":"1982591 S"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"85","name":"1982591 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982591 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8.5","name":"1982592 Rift-3"},"coordinates":[5114,8236]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"1.7","name":"1982593 S"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982593 SS"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8","name":"1982594 S"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982594 SS"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"16","name":"1982595 Rift-1"},"coordinates":[7267,9146]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"12","name":"1982596 S"},"coordinates":[7170,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982596 SS"},"coordinates":[7170,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8.5","name":"1982597 Rift-4"},"coordinates":[7549,8859]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"15","name":"1982598 Neva-1"},"coordinates":[5356,8694]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"80","name":"1982599 S"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"85","name":"1982599 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982599 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982599 SS"},"coordinates":[6516,9390]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"13.5","name":"1982600 Vega"},"coordinates":[6340,7820]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8.5","name":"1982601 Vega"},"coordinates":[6340,7820]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8.5","name":"1982602 Vega"},"coordinates":[6341,7820]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"8.5","name":"1982603 Vega"},"coordinates":[6341,7820]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"119","name":"1982604 S"},"coordinates":[7188,8007]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982604 SS"},"coordinates":[7188,8007]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"1.7","name":"1982605 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"10.0005","name":"1982605 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"21","name":"1982606 S"},"coordinates":[7193,8015]},{"type":"Point","properties":{"country":"USSR","year":"1982","yield":"21","name":"1982606 SS"},"coordinates":[7193,8015]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"0.001","name":"1983607"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"2.7","name":"1983608"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"3","name":"1983609"},"coordinates":[7169,7998]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"20","name":"1983610 S"},"coordinates":[7170,7996]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983610 SS"},"coordinates":[7170,7996]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"138","name":"1983611 S"},"coordinates":[7191,8007]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983611 SS"},"coordinates":[7191,8007]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"1.8","name":"1983612"},"coordinates":[7167,7996]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"15","name":"1983613 Lira"},"coordinates":[6480,8092]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"15","name":"1983614 Lira"},"coordinates":[6481,8092]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"15","name":"1983615 Lira"},"coordinates":[6481,8093]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"150","name":"1983616 S"},"coordinates":[6526,9391]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983616 SS"},"coordinates":[6526,9391]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983616 SS"},"coordinates":[6526,9391]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983616 SS"},"coordinates":[6526,9391]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983616 SS"},"coordinates":[6526,9391]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"1.9","name":"1983617 Dynamika"},"coordinates":[7168,7998]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983618 Vega"},"coordinates":[6342,7821]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983619 Vega"},"coordinates":[6341,7822]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983620 Vega"},"coordinates":[6342,7820]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983621 Vega"},"coordinates":[6342,7819]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983622 Vega"},"coordinates":[6341,7820]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"8.5","name":"1983623 Vega"},"coordinates":[6341,7820]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"100","name":"1983624 S"},"coordinates":[6514,9389]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983624 SS"},"coordinates":[6514,9389]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983624 SS"},"coordinates":[6514,9389]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983624 SS"},"coordinates":[6514,9389]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"82","name":"1983625 S"},"coordinates":[7186,8007]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983625 SS"},"coordinates":[7186,8007]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"114","name":"1983626"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983627"},"coordinates":[7170,7998]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"20","name":"1983628 S"},"coordinates":[7194,8015]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983628 SS"},"coordinates":[7194,8015]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983629"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"19","name":"1983630 S"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"10.0005","name":"1983630 SS"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1983","yield":"30","name":"1983631"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"49","name":"1984632"},"coordinates":[7186,8005]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"42","name":"1984633"},"coordinates":[7192,8015]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"83","name":"1984634"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"60","name":"1984635 S"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984635 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"76","name":"1984636 S"},"coordinates":[7189,8008]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984636 SS"},"coordinates":[7189,8008]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"130","name":"1984637 S"},"coordinates":[7194,8010]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984637 SS"},"coordinates":[7194,8010]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"135","name":"1984638 S"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984638 SS"},"coordinates":[7190,8006]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"15","name":"1984639 Lira"},"coordinates":[6480,8092]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"15","name":"1984640 Lira"},"coordinates":[6481,8092]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"15","name":"1984641 Lira"},"coordinates":[6481,8093]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"85","name":"1984642 Kvarts-2"},"coordinates":[6530,8900]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"8.5","name":"1984643 Kvarts-3"},"coordinates":[7002,8714]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"0.6","name":"1984644 Dynamika"},"coordinates":[6522,9394]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"1.7","name":"1984645 Dnepr-2 S"},"coordinates":[5916,9060]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"1.7","name":"1984645 Dnepr-2 SS"},"coordinates":[5916,9060]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"3.2","name":"1984646 Geliy"},"coordinates":[6585,8620]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"3.2","name":"1984647 Geliy"},"coordinates":[6596,8644]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"6","name":"1984648 S"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984648 SS"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984648 SS"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984648 SS"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10","name":"1984649 Kvarts-4"},"coordinates":[7430,8356]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"1.4","name":"1984650"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"110","name":"1984651 S"},"coordinates":[6527,9391]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984651 SS"},"coordinates":[6527,9391]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984651 SS"},"coordinates":[6527,9391]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"85","name":"1984651 SS"},"coordinates":[6527,9391]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"150","name":"1984654"},"coordinates":[7192,8007]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"3.2","name":"1984652 Vega"},"coordinates":[6337,7829]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"3.2","name":"1984653 Vega"},"coordinates":[6336,7831]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"1.4","name":"1984655 S"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984655 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984655 SS"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"79","name":"1984656 S"},"coordinates":[7194,8012]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984656 SS"},"coordinates":[7194,8012]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"137","name":"1984657 S"},"coordinates":[7188,8008]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984657 SS"},"coordinates":[7188,8008]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"105","name":"1984658 S"},"coordinates":[7185,8004]},{"type":"Point","properties":{"country":"USSR","year":"1984","yield":"10.0005","name":"1984658 SS"},"coordinates":[7185,8004]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"62","name":"1985659 S"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985659 SS"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"85","name":"1985659 SS"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"74","name":"1985660 S"},"coordinates":[7190,8007]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"85","name":"1985660 SS"},"coordinates":[7190,8007]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"114","name":"1985661 S"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985661 SS"},"coordinates":[7189,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985661 SS"},"coordinates":[7188,8006]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"2.5","name":"1985662 Benzol"},"coordinates":[7019,8637]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"86","name":"1985663 S"},"coordinates":[7184,8003]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"85","name":"1985663 SS"},"coordinates":[7184,8003]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"0.5","name":"1985664"},"coordinates":[7167,7997]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"8.5","name":"1985666 Agat"},"coordinates":[6140,8956]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985665"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"74","name":"1985667"},"coordinates":[7187,8009]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"5","name":"1985668 S"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985668 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985668 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1985","yield":"10.0005","name":"1985668 SS"},"coordinates":[7167,8001]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"24","name":"1987669"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"11","name":"1987670 S"},"coordinates":[7189,8007]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987670 SS"},"coordinates":[7189,8007]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"140","name":"1987671"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"1","name":"1987672 S"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987672 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987672 SS"},"coordinates":[7169,7997]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"86","name":"1987673 S"},"coordinates":[7184,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987673 SS"},"coordinates":[7184,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987673 SS"},"coordinates":[7184,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"3.2","name":"1987674 Geliy"},"coordinates":[6588,8637]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"3.2","name":"1987675 Geliy"},"coordinates":[6596,8650]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"40","name":"1987676"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"24","name":"1987677"},"coordinates":[7168,8002]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"107","name":"1987678 S"},"coordinates":[7186,8007]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987678 SS"},"coordinates":[7186,8007]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"15","name":"1987679 Neva 2-1"},"coordinates":[5356,8691]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"78","name":"1987680"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"15","name":"1987681 Neva 2-2"},"coordinates":[5355,8688]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"72","name":"1987683 S"},"coordinates":[7190,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"85","name":"1987683 SS"},"coordinates":[7190,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"85","name":"1987683 SS"},"coordinates":[7190,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"150","name":"1987682 S"},"coordinates":[6516,9389]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987682 SS"},"coordinates":[6516,9389]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"85","name":"1987682 SS"},"coordinates":[6516,9389]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987682 SS"},"coordinates":[6516,9389]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987682 SS"},"coordinates":[6516,9389]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"3.2","name":"1987684 Neva 2-3"},"coordinates":[5355,8688]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"1.1","name":"1987685 S"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987685 SS"},"coordinates":[7169,8000]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"8.5","name":"1987686 Batolit-2"},"coordinates":[6560,7870]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"1.1","name":"1987687"},"coordinates":[7169,7995]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"103","name":"1987688 S"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987688 SS"},"coordinates":[7187,8006]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"137","name":"1987689 S"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"85","name":"1987689 SS"},"coordinates":[7188,8009]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"5","name":"1987690"},"coordinates":[7166,7998]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"117","name":"1987691 S"},"coordinates":[7186,8004]},{"type":"Point","properties":{"country":"USSR","year":"1987","yield":"10.0005","name":"1987691 SS"},"coordinates":[7186,8004]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"5","name":"1988692 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"0.001","name":"1988692 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"0.001","name":"1988692 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"125","name":"1988693 S"},"coordinates":[7190,8008]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988693 SS"},"coordinates":[7190,8008]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"135","name":"1988694"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"2.3","name":"1988695"},"coordinates":[7169,7999]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"132","name":"1988696"},"coordinates":[7186,8009]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"80","name":"1988697 S"},"coordinates":[6515,9389]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988697 SS"},"coordinates":[6515,9389]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988697 SS"},"coordinates":[6515,9389]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"4","name":"1988698"},"coordinates":[7192,8012]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"15","name":"1988699 Rubin-2"},"coordinates":[7180,8973]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"8.5","name":"1988700 Rubin-1"},"coordinates":[6336,8683]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"150","name":"1988701 Shagan"},"coordinates":[7189,8004]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"6","name":"1988702"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"15","name":"1988703"},"coordinates":[7193,8014]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"19","name":"1988704 S"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988704 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"0.001","name":"1988704 SS"},"coordinates":[7167,7998]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"140","name":"1988705 S"},"coordinates":[6527,9392]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988705 SS"},"coordinates":[6527,9392]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988705 SS"},"coordinates":[6527,9392]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988705 SS"},"coordinates":[6527,9392]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"0.001","name":"1988705 SS"},"coordinates":[6527,9392]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"68","name":"1988706 S"},"coordinates":[7191,8004]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988706 SS"},"coordinates":[7191,8004]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"0.2","name":"1988707 S"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1988","yield":"10.0005","name":"1988707 SS"},"coordinates":[7168,8000]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"118","name":"1989708 S"},"coordinates":[7188,8008]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"85","name":"1989708 SS"},"coordinates":[7188,8008]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"63","name":"1989709"},"coordinates":[7185,8006]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"10","name":"1989710"},"coordinates":[7168,8001]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"22","name":"1989711"},"coordinates":[7187,8003]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"6","name":"1989712 S"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"10.0005","name":"1989712 SS"},"coordinates":[7193,8012]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"4","name":"1989713"},"coordinates":[7166,7997]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"85","name":"1989714 S"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"10.0005","name":"1989714 SS"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1989","yield":"10.0005","name":"1989714 SS"},"coordinates":[7191,8006]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"70","name":"1990715 S"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"10.0005","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"10.0005","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"10.0005","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"10.0005","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"0.001","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"0.001","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"USSR","year":"1990","yield":"0.001","name":"1990715 SS"},"coordinates":[6520,9390]},{"type":"Point","properties":{"country":"UK","year":"1952","yield":"25","name":"HurricaneHurricane"},"coordinates":[8209,3853]},{"type":"Point","properties":{"country":"UK","year":"1953","yield":"10","name":"TotemTotem T1"},"coordinates":[8676,3362]},{"type":"Point","properties":{"country":"UK","year":"1953","yield":"8","name":"TotemTotem T2"},"coordinates":[8676,3361]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"15","name":"MosaicMosaic G1"},"coordinates":[8209,3853]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"98","name":"MosaicMosaic G2"},"coordinates":[8209,3852]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"15","name":"BuffaloBuffalo R1/One Tree"},"coordinates":[8656,3293]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"1.5","name":"BuffaloBuffalo R2/Marcoo"},"coordinates":[8655,3292]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"3","name":"BuffaloBuffalo R3/Kite"},"coordinates":[8656,3292]},{"type":"Point","properties":{"country":"UK","year":"1956","yield":"10","name":"BuffaloBuffalo R4/Breakaway"},"coordinates":[8654,3292]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"300","name":"GrappleGrapple 1/Short Granit"},"coordinates":[697,4818]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"720","name":"GrappleGrapple 2/Orange Heral"},"coordinates":[697,4818]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"200","name":"GrappleGrapple 3/Purple Grani"},"coordinates":[697,4818]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"0.93","name":"AntlerAntler Round 1/Tadje"},"coordinates":[8656,3292]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"6","name":"AntlerAntler Round 2/Biak"},"coordinates":[8655,3292]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"26.6","name":"AntlerAntler Round 3/Taranak"},"coordinates":[8654,3291]},{"type":"Point","properties":{"country":"UK","year":"1957","yield":"1800","name":"Grapple XGrapple X/Round C"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1958","yield":"3000","name":"Grapple YGrapple Y"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1958","yield":"24","name":"Grapple ZGrapple Z/Pennant 2"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1958","yield":"1000","name":"Grapple ZGrapple Z/Flagpole 1"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1958","yield":"800","name":"Grapple ZGrapple Z/Halliard 1"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1958","yield":"25","name":"Grapple ZGrapple Z/Burgee 2"},"coordinates":[632,5156]},{"type":"Point","properties":{"country":"UK","year":"1962","yield":"9.5","name":"NougatPampas"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"UK","year":"1962","yield":"10","name":"StoraxTendrac"},"coordinates":[1777,7246]},{"type":"Point","properties":{"country":"UK","year":"1964","yield":"2","name":"WhetstoneCormorant"},"coordinates":[1777,7244]},{"type":"Point","properties":{"country":"UK","year":"1964","yield":"0","name":"WhetstoneCourser"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"UK","year":"1965","yield":"29","name":"FlintlockCharcoal"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"UK","year":"1974","yield":"20","name":"ArborFallon"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"UK","year":"1976","yield":"51","name":"AnvilBanon"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"UK","year":"1978","yield":"67","name":"CressetFondutta"},"coordinates":[1768,7261]},{"type":"Point","properties":{"country":"UK","year":"1978","yield":"38","name":"QuicksilverQuargel"},"coordinates":[1775,7251]},{"type":"Point","properties":{"country":"UK","year":"1979","yield":"20","name":"QuicksilverNessel"},"coordinates":[1776,7251]},{"type":"Point","properties":{"country":"UK","year":"1980","yield":"140","name":"TinderboxColwick"},"coordinates":[1765,7258]},{"type":"Point","properties":{"country":"UK","year":"1980","yield":"10","name":"GuardianDutchess"},"coordinates":[1777,7248]},{"type":"Point","properties":{"country":"UK","year":"1980","yield":"35","name":"GuardianSerpa"},"coordinates":[1769,7262]},{"type":"Point","properties":{"country":"UK","year":"1981","yield":"77","name":"PraetorianRousanne"},"coordinates":[1776,7250]},{"type":"Point","properties":{"country":"UK","year":"1982","yield":"89","name":"PraetorianGibne"},"coordinates":[1765,7259]},{"type":"Point","properties":{"country":"UK","year":"1983","yield":"1.5","name":"PhalanxArmada"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"UK","year":"1984","yield":"77","name":"FusileerMundo"},"coordinates":[1777,7250]},{"type":"Point","properties":{"country":"UK","year":"1984","yield":"103","name":"GrenadierEgmont"},"coordinates":[1764,7259]},{"type":"Point","properties":{"country":"UK","year":"1985","yield":"110","name":"CharioteerKinibito"},"coordinates":[1776,7246]},{"type":"Point","properties":{"country":"UK","year":"1986","yield":"89","name":"CharioteerDarwin"},"coordinates":[1764,7259]},{"type":"Point","properties":{"country":"UK","year":"1987","yield":"20","name":"MusketeerMidland"},"coordinates":[1777,7249]},{"type":"Point","properties":{"country":"UK","year":"1989","yield":"120","name":"AqueductBarnwell"},"coordinates":[1766,7257]},{"type":"Point","properties":{"country":"UK","year":"1990","yield":"103","name":"SculpinHouston"},"coordinates":[1767,7257]},{"type":"Point","properties":{"country":"UK","year":"1991","yield":"11","name":"JulinBristol"},"coordinates":[1775,7249]},{"type":"Point","properties":{"country":"China","year":"1964","yield":"22","name":"596"},"coordinates":[7452,7559]},{"type":"Point","properties":{"country":"China","year":"1965","yield":"35","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1966","yield":"250","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1966","yield":"12","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1966","yield":"300","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1967","yield":"3300","name":""},"coordinates":[7493,7465]},{"type":"Point","properties":{"country":"China","year":"1967","yield":"20","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1968","yield":"3000","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1969","yield":"19.2","name":""},"coordinates":[7453,7502]},{"type":"Point","properties":{"country":"China","year":"1969","yield":"3000","name":""},"coordinates":[7486,7463]},{"type":"Point","properties":{"country":"China","year":"1970","yield":"3400","name":""},"coordinates":[7493,7451]},{"type":"Point","properties":{"country":"China","year":"1971","yield":"20","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1972","yield":"8","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1972","yield":"170","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1973","yield":"3000","name":""},"coordinates":[7494,7468]},{"type":"Point","properties":{"country":"China","year":"1974","yield":"1000","name":""},"coordinates":[7489,7451]},{"type":"Point","properties":{"country":"China","year":"1975","yield":"2.5","name":""},"coordinates":[7453,7502]},{"type":"Point","properties":{"country":"China","year":"1976","yield":"10","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1976","yield":"200","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1976","yield":"2.6","name":""},"coordinates":[7454,7521]},{"type":"Point","properties":{"country":"China","year":"1976","yield":"4000","name":""},"coordinates":[7489,7462]},{"type":"Point","properties":{"country":"China","year":"1977","yield":"10","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1978","yield":"11","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1978","yield":"3.4","name":""},"coordinates":[7463,7510]},{"type":"Point","properties":{"country":"China","year":"1978","yield":"10","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1979","yield":"10","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1980","yield":"1000","name":""},"coordinates":[7490,7463]},{"type":"Point","properties":{"country":"China","year":"1982","yield":"7","name":""},"coordinates":[7458,7509]},{"type":"Point","properties":{"country":"China","year":"1983","yield":"1","name":""},"coordinates":[7454,7520]},{"type":"Point","properties":{"country":"China","year":"1983","yield":"60","name":""},"coordinates":[7463,7512]},{"type":"Point","properties":{"country":"China","year":"1984","yield":"42.5","name":""},"coordinates":[7463,7513]},{"type":"Point","properties":{"country":"China","year":"1984","yield":"15","name":""},"coordinates":[7456,7523]},{"type":"Point","properties":{"country":"China","year":"1987","yield":"250","name":""},"coordinates":[7463,7510]},{"type":"Point","properties":{"country":"China","year":"1988","yield":"3","name":""},"coordinates":[7455,7525]},{"type":"Point","properties":{"country":"China","year":"1990","yield":"40","name":""},"coordinates":[7463,7513]},{"type":"Point","properties":{"country":"China","year":"1990","yield":"189","name":""},"coordinates":[7464,7510]},{"type":"Point","properties":{"country":"China","year":"1992","yield":"660","name":""},"coordinates":[7465,7510]},{"type":"Point","properties":{"country":"China","year":"1992","yield":"8","name":""},"coordinates":[7453,7522]},{"type":"Point","properties":{"country":"China","year":"1993","yield":"80","name":""},"coordinates":[7463,7519]},{"type":"Point","properties":{"country":"China","year":"1994","yield":"90","name":""},"coordinates":[7463,7511]},{"type":"Point","properties":{"country":"China","year":"1994","yield":"90","name":""},"coordinates":[7464,7518]},{"type":"Point","properties":{"country":"China","year":"1995","yield":"95","name":""},"coordinates":[7466,7515]},{"type":"Point","properties":{"country":"China","year":"1995","yield":"90","name":""},"coordinates":[7466,7512]},{"type":"Point","properties":{"country":"China","year":"1996","yield":"50","name":"S"},"coordinates":[7462,7518]},{"type":"Point","properties":{"country":"China","year":"1996","yield":"0","name":"SS"},"coordinates":[7462,7518]},{"type":"Point","properties":{"country":"China","year":"1996","yield":"3","name":""},"coordinates":[7456,7528]},{"type":"Point","properties":{"country":"France","year":"1960","yield":"65","name":"GerboiseGerboise Bleue"},"coordinates":[4998,6612]},{"type":"Point","properties":{"country":"France","year":"1960","yield":"10","name":"GerboiseGerboise Blanche"},"coordinates":[4996,6603]},{"type":"Point","properties":{"country":"France","year":"1960","yield":"3","name":"GerboiseGerboise Rouge"},"coordinates":[4996,6614]},{"type":"Point","properties":{"country":"France","year":"1961","yield":"0.5","name":"GerboiseGerboise Verte"},"coordinates":[4997,6613]},{"type":"Point","properties":{"country":"France","year":"1961","yield":"10","name":"Agate"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1962","yield":"40","name":"Beryl"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1963","yield":"10","name":"Emeraude"},"coordinates":[5140,6478]},{"type":"Point","properties":{"country":"France","year":"1963","yield":"2.5","name":"Amethyste"},"coordinates":[5140,6478]},{"type":"Point","properties":{"country":"France","year":"1963","yield":"52","name":"Rubis"},"coordinates":[5140,6477]},{"type":"Point","properties":{"country":"France","year":"1964","yield":"3.7","name":"Opale (Michele)"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1964","yield":"2.5","name":"Topaze"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1964","yield":"10","name":"Turquoise"},"coordinates":[5140,6478]},{"type":"Point","properties":{"country":"France","year":"1965","yield":"127","name":"Saphir (Monique)"},"coordinates":[5139,6479]},{"type":"Point","properties":{"country":"France","year":"1965","yield":"2.5","name":"Jade"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1965","yield":"2.5","name":"Corindon"},"coordinates":[5140,6479]},{"type":"Point","properties":{"country":"France","year":"1965","yield":"10","name":"Tourmaline"},"coordinates":[5140,6478]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"13","name":"Grenat (Georgette)"},"coordinates":[5140,6478]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"28","name":"1966Aldebaran"},"coordinates":[1139,3765]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"50","name":"1966Tamoure"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"0","name":"1966Ganymede X"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"110","name":"1966Betelguese"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"125","name":"1966Rigel"},"coordinates":[1146,3744]},{"type":"Point","properties":{"country":"France","year":"1966","yield":"205","name":"1966Sirus"},"coordinates":[1139,3765]},{"type":"Point","properties":{"country":"France","year":"1967","yield":"15","name":"1967Altair"},"coordinates":[1142,3770]},{"type":"Point","properties":{"country":"France","year":"1967","yield":"120","name":"1967Antares"},"coordinates":[1139,3766]},{"type":"Point","properties":{"country":"France","year":"1967","yield":"22","name":"1967Arcturus"},"coordinates":[1142,3770]},{"type":"Point","properties":{"country":"France","year":"1968","yield":"115","name":"1968Capella"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1968","yield":"450","name":"1968Castor"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1968","yield":"150","name":"1968Pollux"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1968","yield":"2600","name":"1968Canopus"},"coordinates":[1149,3745]},{"type":"Point","properties":{"country":"France","year":"1968","yield":"1280","name":"1968Procyon"},"coordinates":[1139,3768]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"13","name":"1970Andromede"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"224","name":"1970Cassiopee"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"945","name":"1970Dragon"},"coordinates":[1150,3739]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"12","name":"1970Eridan"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"914","name":"1970Licorne"},"coordinates":[1141,3762]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"0.05","name":"1970Pegase"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"72","name":"1970Orion"},"coordinates":[1142,3770]},{"type":"Point","properties":{"country":"France","year":"1970","yield":"594","name":"1970Toucan"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1971","yield":"34","name":"1971Dione"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1971","yield":"440","name":"1971Encelade"},"coordinates":[1189,3651]},{"type":"Point","properties":{"country":"France","year":"1971","yield":"9","name":"1971Japet"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1971","yield":"4","name":"1971Phoebe"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1971","yield":"955","name":"1971Rhea"},"coordinates":[1139,3768]},{"type":"Point","properties":{"country":"France","year":"1972","yield":"0.5","name":"1972Umbriel"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1972","yield":"4","name":"1972Titania"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1972","yield":"6","name":"1972Oberon"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1972","yield":"0.001","name":"1972Ariel"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"11","name":"1973Euterpe"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"0.05","name":"1973Melpomene"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"4","name":"1973Pallas"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"0.2","name":"1973Parthenope"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"6.6","name":"1973Tamara"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1973","yield":"0","name":"1973Vesta"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"4","name":"1974Capricorne"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"0","name":"1974Belier"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"150","name":"1974Gemeaux"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"4","name":"1974Centaure"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"8","name":"1974Maquis"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"0.001","name":"1974Persee"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"96","name":"1974Scorpion"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"14","name":"1974Taurue"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1974","yield":"332","name":"1974Verseau"},"coordinates":[1138,3765]},{"type":"Point","properties":{"country":"France","year":"1975","yield":"5","name":"1975Achille"},"coordinates":[1146,3741]},{"type":"Point","properties":{"country":"France","year":"1975","yield":"5","name":"1975Hector"},"coordinates":[1146,3741]},{"type":"Point","properties":{"country":"France","year":"1976","yield":"1","name":"1976Patrocle"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1976","yield":"12","name":"1976Menelas"},"coordinates":[1145,3766]},{"type":"Point","properties":{"country":"France","year":"1976","yield":"0","name":"1976Calypso"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1976","yield":"1","name":"1976Ulysse A"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1976","yield":"1","name":"1976Astanax"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"5","name":"1977Ulysse B"},"coordinates":[1143,3767]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"47","name":"1977Nestor"},"coordinates":[1141,3764]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"1","name":"1977Oedipe"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"0","name":"1977Andromaque"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"20","name":"1977Ajax"},"coordinates":[1140,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"0","name":"1977Clytemnestre"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"5","name":"1977Oreste"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"50","name":"1977Enee"},"coordinates":[1142,3764]},{"type":"Point","properties":{"country":"France","year":"1977","yield":"5","name":"1977Laocoon"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"1","name":"1978Polypheme"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"5","name":"1978Pylade"},"coordinates":[1140,3775]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"1","name":"1978Hecube"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"1","name":"1978Xanthois"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"5","name":"1978Ares"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"4","name":"1978Idomenee"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"3","name":"1978Schedios"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"0","name":"1978Aphrodite"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"64","name":"1978Priam"},"coordinates":[1140,3765]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"5","name":"1978Eteocle"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1978","yield":"12","name":"1978Eumee"},"coordinates":[1140,3772]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"8","name":"1979Penthesilee"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"14","name":"1979Philoctete"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"8","name":"1979Agapenor"},"coordinates":[1141,3769]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"6","name":"1979Polydore"},"coordinates":[1147,3767]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"5","name":"1979Pyrrhos"},"coordinates":[1144,3769]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"28","name":"1979Egisthe"},"coordinates":[1141,3768]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"112","name":"1979Tydee"},"coordinates":[1140,3765]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"5","name":"1979Palamede"},"coordinates":[1144,3769]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"1","name":"1979Chrysotemis"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1979","yield":"4","name":"1979Atree"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"2","name":"1980Thyetse"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"5","name":"1980Adraste"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"80","name":"1980Thesee"},"coordinates":[1140,3766]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"18","name":"1980Boros"},"coordinates":[1145,3767]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"5","name":"1980Pelpos"},"coordinates":[1144,3762]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"26","name":"1980Eurypyle"},"coordinates":[1141,3765]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"9","name":"1980Ilus"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"5","name":"1980Chryses"},"coordinates":[1143,3767]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"0","name":"1980Leda"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"80","name":"1980Asios"},"coordinates":[1140,3766]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"2","name":"1980Laerte"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1980","yield":"51","name":"1980Diomede"},"coordinates":[1140,3765]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"5","name":"1981Broteas"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"2","name":"1981Tyro"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"5","name":"1981Iphicles"},"coordinates":[1148,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"8","name":"1981Clymene"},"coordinates":[1140,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"20","name":"1981Lyncee"},"coordinates":[1137,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"5","name":"1981Eryx"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"2","name":"1981Theras"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"20","name":"1981Agenor"},"coordinates":[1141,3768]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"1","name":"1981Leto"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"5","name":"1981Procles"},"coordinates":[1140,3766]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"5","name":"1981Cilix"},"coordinates":[1141,3776]},{"type":"Point","properties":{"country":"France","year":"1981","yield":"15","name":"1981Cadmos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"3","name":"1982Aerope"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"1","name":"1982Deiphobe"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"17","name":"1982Rhesos"},"coordinates":[1142,3767]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"0.5","name":"1982Evevos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"0","name":"1982Aeson"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"2","name":"1982Laodice"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"20","name":"1982Antilokos"},"coordinates":[1140,3771]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"2","name":"1982Pitane"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"56","name":"1982Laios"},"coordinates":[1142,3767]},{"type":"Point","properties":{"country":"France","year":"1982","yield":"0.5","name":"1982Procris"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"40","name":"1983Eurytos"},"coordinates":[1142,3768]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"0.25","name":"1983Automedon"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"42","name":"1983Cinyras"},"coordinates":[1141,3766]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"3","name":"1983Burisis"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"20","name":"1983Oxylos"},"coordinates":[1142,3772]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"10","name":"1983Battos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"20","name":"1983Carnabon"},"coordinates":[1143,3767]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"4","name":"1983Linos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1983","yield":"15","name":"1983Gyges"},"coordinates":[1141,3768]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"5","name":"1984Demophon"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"56","name":"1984Midas"},"coordinates":[1141,3766]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"5","name":"1984Aristee"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"34","name":"1984Echemos"},"coordinates":[1142,3767]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"5","name":"1984Machaon"},"coordinates":[1153,3754]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"34","name":"1984Acaste"},"coordinates":[1141,3766]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"0.5","name":"1984Miletos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1984","yield":"53","name":"1984Memnon"},"coordinates":[1142,3767]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"13","name":"1985Cercyon"},"coordinates":[1140,3768]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"80","name":"1985Nisos"},"coordinates":[1139,3767]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"11","name":"1985Talaos"},"coordinates":[1142,3769]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"5","name":"1985Erginos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"2","name":"1985Hero"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"20","name":"1985Codros"},"coordinates":[1144,3767]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"5","name":"1985Zetes"},"coordinates":[1145,3770]},{"type":"Point","properties":{"country":"France","year":"1985","yield":"54","name":"1985Megaree"},"coordinates":[1141,3766]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"5","name":"1986Hyllos"},"coordinates":[1140,3774]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"5","name":"1986Ceto"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"5","name":"1986Sthenelos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"30","name":"1986Galatee"},"coordinates":[1140,3766]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"5","name":"1986Hesione"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"20","name":"1986Naupolis"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"5","name":"1986Peneleos"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1986","yield":"32","name":"1986Circe"},"coordinates":[1142,3767]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"5","name":"1987Jocaste"},"coordinates":[1151,3775]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"30","name":"1987Lycomede"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"5","name":"1987Dirce"},"coordinates":[1142,3771]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"20","name":"1987Iphpitos"},"coordinates":[1142,3766]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"51","name":"1987Helenos"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"18","name":"1987Pasiphae"},"coordinates":[1142,3770]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"62","name":"1987Pelee"},"coordinates":[1140,3767]},{"type":"Point","properties":{"country":"France","year":"1987","yield":"5","name":"1987Danae"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"20","name":"1988Nelee"},"coordinates":[1140,3767]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"80","name":"1988Niobe"},"coordinates":[1140,3767]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"5","name":"1988Antigone"},"coordinates":[1139,3773]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"20","name":"1988Dejanire"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"2","name":"1988Acrisios"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"47","name":"1988Thrasymedes"},"coordinates":[1139,3770]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"45","name":"1988Pheres"},"coordinates":[1140,3767]},{"type":"Point","properties":{"country":"France","year":"1988","yield":"103","name":"1988Cycnos"},"coordinates":[1146,3744]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"16","name":"1989Epeios"},"coordinates":[1142,3769]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"2","name":"1989Tecmessa"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"20","name":"1989Nyctee"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"80","name":"1989Cyzicos"},"coordinates":[1147,3745]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"24","name":"1989Hypsipyle"},"coordinates":[1141,3767]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"20","name":"1989Erigone"},"coordinates":[1143,3770]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"20","name":"1989Tros"},"coordinates":[1142,3770]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"0","name":"1989Daunus"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1989","yield":"87","name":"1989Lycos"},"coordinates":[1147,3743]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"20","name":"1990Telephe"},"coordinates":[1141,3765]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"5","name":"1990Megapentes"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"100","name":"1990Cypselos"},"coordinates":[1143,3745]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"18","name":"1990Anticlee"},"coordinates":[1137,3767]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"118","name":"1990Hyrtacos"},"coordinates":[1144,3742]},{"type":"Point","properties":{"country":"France","year":"1990","yield":"36","name":"1990Thoas"},"coordinates":[1140,3762]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"1","name":"1991Melanippe"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"20","name":"1991Alcinos"},"coordinates":[1138,3767]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"106","name":"1991Periclymentos"},"coordinates":[1144,3742]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"28","name":"1991Pitthee"},"coordinates":[1139,3761]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"0.3","name":"1991Coronis"},"coordinates":[1141,3770]},{"type":"Point","properties":{"country":"France","year":"1991","yield":"34","name":"1991Lycurgue"},"coordinates":[1140,3765]},{"type":"Point","properties":{"country":"France","year":"1995","yield":"8","name":"1995Thetis"},"coordinates":[1143,3767]},{"type":"Point","properties":{"country":"France","year":"1995","yield":"97","name":"1995Ploutos"},"coordinates":[1146,3743]},{"type":"Point","properties":{"country":"France","year":"1995","yield":"39","name":"1995Aepytos"},"coordinates":[1139,3764]},{"type":"Point","properties":{"country":"France","year":"1995","yield":"20","name":"1995Phegee"},"coordinates":[1138,3765]},{"type":"Point","properties":{"country":"France","year":"1995","yield":"21","name":"1995Themisto"},"coordinates":[1139,3765]},{"type":"Point","properties":{"country":"France","year":"1996","yield":"46","name":"1996Xouthos"},"coordinates":[1144,3744]},{"type":"Point","properties":{"country":"India","year":"1998","yield":"43","name":"Shakti-98Shakti I S"},"coordinates":[6992,6657]},{"type":"Point","properties":{"country":"India","year":"1998","yield":"12","name":"Shakti-98Shakti II SS"},"coordinates":[6992,6657]},{"type":"Point","properties":{"country":"India","year":"1998","yield":"0.2","name":"Shakti-98Shakti III SS"},"coordinates":[6992,6657]},{"type":"Point","properties":{"country":"India","year":"1998","yield":"0.5","name":"Shakti-98Shakti IV S"},"coordinates":[6994,6658]},{"type":"Point","properties":{"country":"India","year":"1998","yield":"0.3","name":"Shakti-98Shakti V SS"},"coordinates":[6994,6658]},{"type":"Point","properties":{"country":"North Korea","year":"2006","yield":"0.5","name":""},"coordinates":[8585,7497]},{"type":"Point","properties":{"country":"North Korea","year":"2009","yield":"4","name":""},"coordinates":[8583,7498]},{"type":"Point","properties":{"country":"North Korea","year":"2013","yield":"0","name":""},"coordinates":[8585,7498]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"32","name":"ChagaiChagai-I S"},"coordinates":[6803,6758]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"1","name":"ChagaiChagai-I SS"},"coordinates":[6803,6758]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"1","name":"ChagaiChagai-I ?"},"coordinates":[6803,6758]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"1","name":"ChagaiChagai-I ?"},"coordinates":[6803,6758]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"1","name":"ChagaiChagai-I ?"},"coordinates":[6803,6758]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"16.5","name":"ChagaiChagai-II S"},"coordinates":[6770,6740]},{"type":"Point","properties":{"country":"Pakistan","year":"1998","yield":"0","name":"ChagaiChagai-II ?"},"coordinates":[6770,6740]},{"type":"Point","properties":{"country":"Unknown","year":"1979","yield":"3","name":""},"coordinates":[6043,2318]}]}},"arcs":[[[6700,7163],[28,-22],[21,8],[6,27],[22,9],[15,17],[6,47],[23,13],[5,20],[13,-15],[8,-2]],[[6847,7265],[16,0],[20,-14]],[[6883,7251],[9,-7],[20,20],[9,-11],[9,26],[17,-1],[4,8],[3,25],[12,21],[15,-14],[-3,-18],[9,-3],[-3,-50],[11,-19],[10,12],[12,6],[17,27],[19,-5],[29,0]],[[7082,7268],[5,-17]],[[7087,7251],[-16,-7],[-14,-10],[-32,-7],[-30,-12],[-16,-26],[6,-26],[4,-28],[-14,-25],[1,-24],[-8,-20],[-26,1],[11,-39],[-18,-15],[-12,-35],[2,-36],[-11,-17],[-10,6],[-22,-8],[-3,-16],[-20,0],[-16,-33],[-1,-50],[-36,-25],[-19,5],[-6,-13],[-16,7],[-28,-8],[-47,30]],[[6690,6820],[25,53],[-2,38],[-21,10],[-2,38],[-9,47],[12,32],[-12,9],[7,43],[12,73]],[[5664,4412],[3,-19],[-4,-29],[5,-27],[-4,-22],[3,-20],[-58,1],[-2,-188],[19,-49],[18,-37]],[[5644,4022],[-51,-24],[-67,8],[-19,29],[-113,-3],[-4,-4],[-17,27],[-18,2],[-16,-11],[-14,-11]],[[5325,4035],[-2,37],[4,52],[9,55],[2,24],[9,54],[6,24],[16,39],[9,26],[3,44],[-1,34],[-9,20],[-7,36],[-7,36],[2,13],[8,22],[-8,58],[-6,40],[-14,37],[3,11]],[[5342,4697],[11,8],[8,-1],[10,7],[82,-1],[7,-44],[8,-35],[6,-19],[11,-31],[18,5],[9,8],[16,-9],[4,15],[7,34],[17,3],[2,11],[14,0],[-3,-22],[34,1],[1,-38],[5,-22],[-4,-36],[2,-36],[9,-22],[-1,-71],[7,6],[12,-1],[17,9],[13,-4]],[[5338,4715],[-8,44]],[[5330,4759],[12,26],[8,10],[10,-20]],[[5360,4775],[-10,-12],[-4,-16],[-1,-26],[-7,-6]],[[5571,7531],[-3,-21],[4,-26],[11,-14]],[[5583,7470],[0,-15],[-9,-9],[-2,-19],[-13,-29]],[[5559,7398],[-5,4],[0,14],[-15,19],[-3,29],[2,40],[4,18],[-4,10]],[[5538,7532],[-2,18],[12,30],[1,-11],[8,5]],[[5557,7574],[6,-17],[7,-5],[1,-21]],[[6432,6490],[5,2],[1,-15],[22,9],[23,-2],[17,-2],[19,40],[20,38],[18,37]],[[6557,6597],[5,-21]],[[6562,6576],[4,-46]],[[6566,6530],[-14,-1],[-3,-38],[5,-8],[-12,-11],[0,-25],[-8,-24],[-1,-24]],[[6533,6399],[-6,-12],[-83,29],[-11,60],[-1,14]],[[3140,1814],[-17,2],[-30,0],[0,132]],[[3093,1948],[11,-27],[14,-45],[36,-35],[39,-15],[-13,-30],[-26,-3],[-14,21]],[[3258,3743],[51,-97],[23,-8],[34,-44],[29,-23],[4,-26],[-28,-90],[28,-16],[32,-9],[22,9],[25,46],[4,51]],[[3482,3536],[14,12],[14,-34],[-1,-47],[-23,-33],[-19,-24],[-31,-57],[-37,-80]],[[3399,3273],[-7,-48],[-7,-61],[0,-58],[-6,-14],[-2,-38]],[[3377,3054],[-2,-30],[35,-52],[-4,-40],[18,-25],[-2,-29],[-26,-76],[-42,-32],[-55,-12],[-31,6],[6,-36],[-6,-44],[5,-30],[-16,-20],[-29,-9],[-26,22],[-11,-15],[4,-59],[18,-18],[16,18],[8,-30],[-26,-18],[-22,-37],[-4,-60],[-7,-31],[-26,0],[-22,-31],[-8,-44],[28,-43],[26,-13],[-9,-52],[-33,-34],[-18,-69],[-25,-23],[-12,-28],[9,-61],[19,-34],[-12,3]],[[3095,1968],[-26,9],[-67,8],[-11,34],[0,44],[-18,-3],[-10,22],[-3,62],[22,26],[9,37],[-4,31],[15,50],[10,78],[-3,35],[12,11],[-3,22],[-13,12],[10,25],[-13,22],[-6,68],[11,12],[-5,72],[7,60],[7,54],[17,20],[-9,59],[0,54],[21,38],[-1,49],[16,59],[0,53],[-7,12],[-13,101],[18,62],[-3,56],[10,54],[18,56],[20,37],[-9,22],[6,20],[-1,98],[30,29],[10,62],[-3,14]],[[3136,3714],[23,53],[36,-14],[16,-42],[11,47],[32,-2],[4,-13]],[[6210,7485],[39,10]],[[6249,7495],[5,-16],[11,-10],[-6,-15],[15,-21],[-8,-18],[12,-17],[13,-9],[0,-41]],[[6291,7348],[-10,-2]],[[6281,7346],[-11,35],[0,9],[-12,-1],[-9,16],[-5,-2]],[[6244,7403],[-11,18],[-21,14],[3,29],[-5,21]],[[3345,329],[-8,-30],[-8,-27],[-59,8],[-62,-3],[-34,20],[0,2],[-16,17],[63,-2],[60,-6],[20,24],[15,21],[29,-24]],[[577,361],[-53,-8],[-36,20],[-17,22],[-1,3],[-18,16],[17,22],[52,-9],[28,-19],[21,-20],[7,-27]],[[3745,446],[35,-25],[12,-36],[3,-25],[1,-31],[-43,-18],[-45,-14],[-52,-15],[-59,-11],[-65,3],[-37,19],[5,25],[59,16],[24,20],[18,26],[12,21],[17,22],[18,23],[14,0],[41,14],[42,-14]],[[1633,715],[36,-9],[33,10],[-16,-20],[-26,-16],[-39,5],[-27,21],[6,19],[33,-10]],[[1512,716],[43,-22],[-17,2],[-36,6],[-38,15],[20,13],[28,-14]],[[2250,807],[31,-8],[30,7],[17,-33],[-22,5],[-34,-2],[-34,2],[-38,-3],[-28,11],[-15,25],[18,10],[35,-8],[40,-6]],[[3098,866],[4,-27],[-5,-23],[-8,-22],[-33,-8],[-31,-12],[-36,2],[14,22],[-33,-8],[-31,-8],[-21,17],[-2,25],[30,23],[20,7],[32,-2],[8,29],[1,23],[0,47],[16,28],[25,9],[15,-22],[6,-22],[12,-27],[10,-24],[7,-27]],[[79,70],[30,19]],[[109,89],[4,-1],[3,0]],[[116,88],[40,-24],[35,24],[7,3],[81,11],[27,-14],[13,-7],[41,-19],[79,-16],[63,-18],[107,-15],[80,17],[118,-12],[67,-18],[73,17],[78,17],[6,28],[-110,2],[-89,13],[-24,24],[-74,12],[5,27],[10,24],[10,23],[-5,23],[-46,17],[-22,20],[-43,19],[68,-3],[64,9],[40,-20],[50,18],[45,21],[23,20],[-10,24],[-36,17],[-41,17],[-57,3],[-50,9],[-54,6],[-18,21],[-36,19],[-21,21],[-9,67],[14,-6],[25,-19],[45,7],[44,8],[23,-26],[44,6],[37,13],[35,16],[32,20],[41,6],[-1,21],[-9,23],[8,20],[36,11],[16,-20],[42,11],[32,16],[40,1],[38,6],[37,13],[30,13],[34,13],[22,-3],[19,-5],[41,8],[37,-10],[38,1],[37,8],[37,-6],[41,-6],[39,3],[40,-1],[42,-2],[38,3],[28,17],[34,9],[35,-13],[33,10],[30,22],[18,-19],[9,-21],[18,-20],[29,18],[33,-22],[38,-7],[32,-16],[39,4],[36,10],[41,-3],[38,-7],[38,-12],[15,26],[-18,20],[-14,21],[-36,4],[-15,23],[-6,21],[-10,44],[21,-8],[36,-3],[36,3],[33,-9],[28,-17],[12,-21],[38,-4],[36,8],[38,12],[34,7],[28,-14],[37,4],[24,46],[23,-27],[32,-10],[34,6],[23,-24],[37,-2],[33,-7],[34,-12],[21,21],[11,22],[28,-24],[38,6],[28,-13],[19,-20],[37,7],[29,12],[29,15],[33,8],[39,7],[36,8],[27,13],[16,19],[7,25],[-3,24],[-9,23],[-10,23],[-9,24],[-7,20],[-1,24],[2,23],[13,22],[11,25],[5,22],[-6,26],[-3,23],[14,27],[15,16],[18,23],[19,18],[22,18],[11,26],[15,16],[18,14],[26,4],[18,19],[19,11],[23,7],[20,15],[16,18],[22,7],[16,-15],[-10,-19],[-29,-18],[-11,-12],[-21,9],[-23,-6],[-19,-14],[-20,-15],[-14,-17],[-4,-23],[2,-22],[13,-20],[-19,-14],[-26,-4],[-15,-20],[-17,-18],[-17,-26],[-4,-23],[9,-23],[15,-19],[23,-14],[21,-19],[12,-22],[6,-23],[8,-22],[13,-21],[8,-21],[4,-55],[8,-22],[2,-23],[9,-23],[-4,-31],[-15,-25],[-17,-19],[-37,-9],[-12,-20],[-17,-20],[-42,-22],[-37,-9],[-35,-13],[-37,-13],[-22,-24],[-45,-3],[-49,3],[-44,-5],[-47,0],[9,-22],[42,-12],[31,-15],[18,-21],[-31,-19],[-48,6],[-40,-15],[-2,-24],[-1,-23],[33,-20],[6,-22],[35,-22],[59,-9],[50,-17],[40,-18],[50,-19],[70,-9],[68,-16],[47,-18],[52,-19],[27,-28],[13,-21],[34,20],[46,18],[48,18],[58,14],[49,17],[69,1],[68,-8],[57,-14],[17,26],[39,17],[70,1],[55,13],[52,13],[58,8],[62,11],[43,14],[-20,21],[-12,21],[0,21],[-54,-2],[-57,-9],[-54,0],[-8,23],[4,43],[12,13],[40,14],[47,14],[34,17],[33,18],[25,22],[38,12],[38,7],[19,5],[43,2],[41,8],[34,11],[34,15],[30,13],[39,20],[24,19],[26,18],[9,22],[-30,15],[10,23],[18,19],[29,12],[31,13],[28,19],[22,23],[13,28],[21,16],[33,-4],[13,-19],[34,-2],[1,21],[14,24],[30,-6],[7,-22],[33,-3],[36,10],[35,7],[31,-4],[12,-24],[31,20],[28,11],[31,8],[31,7],[29,14],[31,10],[24,12],[17,21],[20,-15],[29,8],[20,-27],[16,-21],[32,11],[12,23],[28,16],[37,-3],[11,-22],[22,22],[30,7],[33,3],[29,-2],[31,-7],[30,-3],[13,-20],[18,-17],[31,11],[32,2],[32,0],[31,1],[28,8],[29,7],[25,16],[26,11],[28,5],[21,16],[15,33],[16,20],[29,-10],[11,-20],[24,-15],[29,6],[19,-22],[21,-14],[28,13],[10,26],[25,10],[29,19],[27,9],[33,11],[22,13],[22,14],[22,13],[26,-7],[25,20],[18,17],[26,-1],[23,14],[6,21],[23,16],[23,11],[28,9],[25,5],[25,-4],[26,-6],[22,-15],[3,-26],[24,-19],[17,-17],[33,-7],[19,-16],[23,-17],[26,-3],[23,12],[24,24],[26,-12],[27,-7],[26,-7],[27,-5],[28,0],[23,-61],[-1,-16],[-4,-26],[-26,-15],[-22,-22],[4,-23],[31,1],[-4,-23],[-14,-22],[-13,-24],[21,-19],[32,-6],[32,10],[15,24],[10,21],[15,19],[17,17],[7,22],[15,29],[18,6],[31,2],[28,7],[28,9],[14,23],[8,22],[19,22],[27,15],[23,12],[16,19],[15,10],[21,9],[27,-5],[25,5],[28,8],[30,-3],[20,16],[14,39],[11,-16],[13,-28],[23,-11],[27,-6],[26,8],[29,-5],[26,-2],[17,7],[24,-3],[21,-14],[25,8],[30,0],[25,9],[29,-9],[19,20],[14,19],[19,17],[35,44],[18,-8],[21,-17],[18,-20],[36,-36],[27,-1],[25,0],[30,7],[30,8],[23,16],[19,17],[31,3],[21,12],[22,-11],[14,-18],[19,-19],[31,2],[19,-15],[33,-14],[35,-7],[29,5],[21,19],[19,18],[25,5],[25,-9],[29,-5],[26,9],[25,0],[24,-6],[26,-6],[25,10],[30,10],[28,3],[32,0],[25,5],[25,5],[8,29],[1,24],[18,-16],[4,-27],[10,-24],[11,-20],[23,-10],[32,3],[36,2],[25,3],[37,0],[26,1],[36,-2],[32,-5],[19,-19],[-5,-21],[18,-18],[30,-14],[31,-14],[35,-11],[38,-10],[28,-9],[32,-1],[18,20],[24,-16],[21,-18],[25,-15],[34,-6],[32,-6],[13,-24],[32,-13],[21,-22],[31,-9],[32,1],[30,-3],[33,1],[34,-4],[31,-8],[28,-14],[29,-12],[20,-17],[-3,-24],[-15,-20],[-13,-27],[-9,-21],[-14,-24],[-36,-9],[-16,-21],[-36,-13],[-13,-23],[-19,-22],[-20,-19],[-11,-23],[-7,-23],[-3,-27],[0,-21],[16,-24],[6,-21],[13,-22],[52,-7],[11,-26],[-50,-9],[-43,-13],[-52,-2],[-24,-34],[-5,-28],[-12,-21],[-14,-23],[37,-20],[14,-23],[24,-23],[33,-19],[39,-19],[42,-18],[64,-19],[14,-28],[80,-14],[5,-4],[21,-17],[77,14],[63,-18],[-9951,-15],[2,0],[24,34],[50,-18],[3,2]],[[6914,2184],[18,-18],[26,-7],[1,-12],[-7,-26],[-43,-4],[-1,31],[4,25],[2,11]],[[9038,2648],[27,-21],[15,9],[22,11],[16,-4],[2,-71],[-9,-19],[-3,-49],[-10,17],[-19,-41],[-6,3],[-17,2],[-17,50],[-4,39],[-16,51],[1,28],[18,-5]],[[8987,4244],[10,-46],[18,22],[9,-25],[13,-22],[-3,-27],[6,-50],[5,-30],[7,-7],[7,-51],[-3,-30],[9,-40],[31,-31],[19,-29],[19,-26],[-4,-14],[16,-37],[11,-63],[11,13],[11,-26],[7,8],[5,-62],[19,-36],[13,-23],[22,-48],[8,-47],[1,-34],[-2,-36],[13,-50],[-2,-52],[-5,-28],[-7,-52],[1,-34],[-6,-42],[-12,-55],[-21,-28],[-10,-47],[-9,-28],[-8,-52],[-11,-29],[-7,-44],[-4,-40],[2,-20],[-16,-21],[-31,-2],[-26,-23],[-13,-24],[-17,-24],[-23,25],[-17,11],[5,30],[-15,-11],[-25,-42],[-24,15],[-15,10],[-16,5],[-27,16],[-18,37],[-5,44],[-7,31],[-13,24],[-27,7],[9,28],[-7,44],[-13,-40],[-25,-12],[14,33],[5,34],[10,29],[-2,44],[-22,-50],[-18,-21],[-10,-47],[-22,24],[1,32],[-18,42],[-14,23],[5,13],[-36,36],[-19,2],[-27,29],[-50,-6],[-36,-21],[-31,-19],[-27,3],[-29,-30],[-24,-13],[-6,-32],[-10,-24],[-23,-1],[-18,-6],[-24,11],[-20,-6],[-19,-3],[-17,-32],[-8,3],[-14,-16],[-13,-19],[-21,3],[-18,0],[-30,37],[-15,11],[1,34],[14,8],[4,13],[-1,22],[4,41],[-3,35],[-15,59],[-4,34],[1,34],[-11,38],[-1,17],[-12,24],[-4,46],[-16,47],[-4,26],[13,-26],[-10,55],[14,-18],[8,-22],[0,30],[-14,47],[-3,18],[-6,18],[3,34],[6,15],[4,30],[-3,33],[11,43],[2,-45],[12,40],[22,21],[14,24],[21,22],[13,5],[7,-7],[22,22],[17,7],[4,12],[8,6],[15,-2],[29,18],[15,26],[7,31],[17,31],[1,23],[1,32],[19,50],[12,-51],[12,12],[-10,28],[9,29],[12,-13],[3,45],[15,28],[7,24],[14,10],[0,17],[13,-7],[0,15],[12,8],[14,8],[20,-27],[16,-35],[17,0],[18,-6],[-6,32],[13,48],[13,15],[-5,15],[12,34],[17,21],[14,-7],[24,11],[-1,30],[-20,19],[15,9],[18,-15],[15,-24],[23,-15],[8,6],[17,-18],[17,17],[10,-5],[7,11],[12,-29],[-7,-32],[-11,-24],[-9,-2],[3,-24],[-8,-29],[-10,-29],[2,-16],[22,-33],[21,-19],[15,-20],[20,-35],[8,0],[14,-16],[4,-18],[27,-19],[18,19],[6,32],[5,26],[4,32],[8,47],[-4,29],[2,18],[-3,34],[4,44],[5,12],[-4,19],[7,32],[5,32],[1,17],[10,22],[8,-29],[2,-37],[7,-7],[1,-24],[10,-31],[2,-33],[-1,-22]],[[5471,7901],[-2,-25],[-16,0],[6,-13],[-9,-38]],[[5450,7825],[-6,-9],[-24,-2],[-14,-14],[-23,6]],[[5383,7806],[-40,14],[-6,21],[-27,-10],[-4,-11],[-16,8]],[[5290,7828],[-15,1],[-12,11],[4,15],[-1,10]],[[5266,7865],[8,3],[14,-16],[4,15],[25,-2],[20,10],[13,-1],[9,-12],[2,10],[-4,38],[10,7],[10,28]],[[5377,7945],[21,-19],[15,24],[10,4],[22,-17],[13,3],[13,-11]],[[5471,7929],[-3,-8],[3,-20]],[[6281,7346],[-19,8],[-14,28],[-4,21]],[[6349,7527],[15,-30],[14,-42],[13,-3],[8,-16],[-23,-5],[-5,-46],[-4,-21],[-11,-13],[1,-30]],[[6357,7321],[-7,-3],[-17,31],[10,30],[-9,17],[-10,-5],[-33,-43]],[[6249,7495],[6,9],[21,-17],[15,-4],[4,8],[-14,31],[7,9]],[[6288,7531],[8,-3],[19,-35],[13,-5],[4,16],[17,23]],[[5814,4791],[-1,72],[-7,27]],[[5806,4890],[17,-5],[8,33],[15,-4]],[[5846,4914],[1,-22],[6,-14],[1,-19],[-7,-12],[-11,-31],[-10,-22],[-12,-3]],[[5092,8091],[20,-4],[26,12],[17,-27],[16,-13]],[[5171,8059],[-4,-40]],[[5167,8019],[-7,-2],[-3,-33]],[[5157,7984],[-24,27],[-14,-5],[-20,27],[-13,25],[-13,1],[-4,20]],[[5069,8079],[23,12]],[[5074,5427],[-23,-7]],[[5051,5420],[-7,41],[2,136],[-6,12],[-1,29],[-10,20],[-8,18],[3,31]],[[5024,5707],[10,7],[6,25],[13,6],[6,18]],[[5059,5763],[10,17],[10,0],[21,-34]],[[5100,5746],[-1,-19],[6,-35],[-6,-25],[3,-15],[-13,-37],[-9,-17],[-5,-38],[1,-37],[-2,-96]],[[4921,5627],[-19,16],[-13,-3],[-10,-15],[-12,13],[-5,19],[-13,13]],[[4849,5670],[-1,34],[7,25],[-1,20],[23,50],[4,40],[7,14],[14,-8],[11,12],[4,16],[22,26],[5,19],[26,24],[15,9],[7,-12],[18,0]],[[5010,5939],[-2,-28],[3,-27],[16,-39],[1,-28],[32,-14],[-1,-40]],[[5024,5707],[-24,1]],[[5000,5708],[-13,6],[-9,-11],[-12,4],[-48,-2],[-1,-33],[4,-45]],[[7573,6360],[0,-43],[-10,9],[2,-47]],[[7565,6279],[-8,31],[-1,29],[-6,29],[-11,34],[-26,3],[3,-25],[-9,-32],[-12,12],[-4,-11],[-8,6],[-11,6]],[[7472,6361],[-4,48],[-10,44],[5,36],[-17,16],[6,21],[18,23],[-20,30],[9,40],[22,-25],[14,-2],[2,-41],[26,-8],[26,1],[16,-11],[-13,-50],[-12,-3],[-9,-34],[16,-31],[4,38],[8,0],[14,-93]],[[5629,7671],[8,-25],[11,5],[21,-10],[41,-3],[13,16],[33,13],[20,-22],[17,-6]],[[5793,7639],[-15,-24],[-10,-42],[9,-34]],[[5777,7539],[-24,8],[-28,-19]],[[5725,7528],[0,-29],[-26,-5],[-19,20],[-22,-16],[-21,2]],[[5637,7500],[-2,39],[-14,18]],[[5621,7557],[5,9],[-3,7],[4,19],[11,19],[-14,25],[-2,22],[7,13]],[[2846,6461],[-7,-3],[-7,34],[-10,18],[6,37],[8,-2],[10,-50],[0,-34]],[[2838,6628],[-30,-10],[-2,22],[13,5],[18,-2],[1,-15]],[[2861,6629],[-5,-42],[-5,7],[0,31],[-12,23],[0,7],[22,-26]],[[5527,7708],[10,0],[-7,-27],[14,-22],[-4,-28],[-7,-2]],[[5533,7629],[-5,-6],[-9,-13],[-4,-33]],[[5515,7577],[-25,22],[-10,25],[-11,13],[-12,22],[-6,18],[-14,28],[6,25],[10,-14],[6,13],[13,1],[24,-10],[19,0],[12,-12]],[[5652,8243],[27,0],[30,21],[6,34],[23,18],[-3,27]],[[5735,8343],[17,10],[30,23]],[[5782,8376],[29,-15],[4,-15],[15,7],[27,-14],[3,-28],[-6,-15],[17,-39],[12,-11],[-2,-11],[19,-10],[8,-15],[-11,-14],[-23,2],[-5,-5],[7,-19],[6,-38]],[[5882,8136],[-23,-4],[-9,-13],[-2,-29],[-11,5],[-25,-3],[-7,14],[-11,-10],[-10,8],[-22,1],[-31,14],[-28,6],[-22,-2],[-15,-16],[-13,-2]],[[5653,8105],[-1,26],[-8,27],[17,13],[0,23],[-8,22],[-1,27]],[[2524,6110],[-1,8],[4,3],[5,-7],[10,36],[5,1]],[[2547,6151],[0,-10],[5,0],[0,-16],[-5,-26],[3,-8],[-3,-21],[2,-7],[-4,-29],[-5,-16],[-5,-2],[-6,-20]],[[2529,5996],[-8,0],[2,66],[1,48]],[[3136,3714],[-20,-8],[-11,82],[-15,66],[9,57],[-15,25],[-4,43],[-13,40]],[[3067,4019],[17,63],[-12,51],[7,19],[-5,22],[10,29],[1,51],[1,42],[6,19],[-24,96]],[[3068,4411],[21,-6],[14,2],[6,18],[25,24],[14,22],[37,9],[-3,-44],[3,-22],[-2,-40],[30,-53],[31,-10],[11,-21],[19,-13],[11,-16],[18,0],[16,-18],[1,-33],[6,-18],[0,-26],[-8,-1],[11,-68],[53,-2],[-4,-34],[3,-24],[15,-16],[6,-37],[-4,-46],[-8,-27],[3,-33],[-9,-12]],[[3384,3866],[-1,17],[-25,31],[-26,1],[-49,-17],[-13,-53],[-1,-32],[-11,-70]],[[3482,3536],[6,35],[4,35],[0,32],[-10,11],[-11,-10],[-10,3],[-3,23],[-3,54],[-5,18],[-19,16],[-11,-12],[-30,11],[2,81],[-8,33]],[[3068,4411],[-15,-11],[-13,8],[2,89],[-23,-35],[-24,2],[-11,31],[-18,4],[6,24],[-16,36],[-11,54],[7,11],[0,25],[17,17],[-3,32],[7,20],[2,28],[32,40],[22,11],[4,10],[25,-3]],[[3058,4804],[13,162],[0,25],[-4,34],[-12,22],[0,43],[15,9],[6,-6],[1,22],[-16,7],[-1,37],[54,-1],[10,20],[7,-18],[6,-35],[5,7]],[[3142,5132],[15,-32],[22,4],[5,19],[21,13],[11,9],[4,26],[19,16],[-1,13],[-24,5],[-3,38],[1,39],[-13,15],[5,5],[21,-7],[22,-14],[8,13],[20,9],[31,23],[10,22],[-3,17]],[[3313,5365],[14,2],[7,-14],[-4,-25],[9,-9],[7,-28],[-8,-21],[-4,-50],[7,-30],[2,-27],[17,-28],[14,-3],[3,12],[8,2],[13,10],[9,17],[15,-5],[7,2]],[[3429,5170],[15,-5],[3,12],[-5,11],[3,18],[11,-5],[13,6],[16,-13]],[[3485,5194],[12,-12],[9,16],[6,-3],[4,-16],[13,4],[11,23],[8,43],[17,54]],[[3565,5303],[9,3],[7,-33],[16,-103],[14,-10],[1,-40],[-21,-50],[9,-17],[49,-9],[1,-60],[21,39],[35,-21],[46,-36],[14,-35],[-5,-33],[33,18],[54,-30],[41,2],[41,-50],[36,-65],[21,-18],[24,-2],[10,-18],[9,-76],[5,-35],[-11,-98],[-14,-38],[-39,-83],[-18,-66],[-21,-52],[-7,-1],[-7,-44],[2,-110],[-8,-91],[-3,-39],[-9,-23],[-5,-79],[-28,-77],[-5,-62],[-22,-25],[-7,-35],[-30,0],[-44,-23],[-19,-27],[-31,-17],[-33,-46],[-23,-60],[-4,-44],[4,-32],[-5,-60],[-6,-29],[-20,-32],[-31,-104],[-24,-47],[-19,-27],[-13,-57],[-18,-34]],[[3517,3062],[-8,34],[13,28],[-16,40],[-22,33],[-29,38],[-10,-2],[-28,46],[-18,-6]],[[8172,5325],[11,22],[23,32]],[[8206,5379],[-1,-29],[-2,-38],[-13,2],[-6,-20],[-12,31]],[[7546,6698],[12,-19],[-2,-36],[-23,-2],[-23,4],[-18,-9],[-25,22],[-1,12]],[[7466,6670],[19,44],[15,15],[20,-13],[14,-2],[12,-16]],[[5817,3752],[-39,-43],[-25,-44],[-10,-39],[-8,-23],[-15,-5],[-5,-28],[-3,-18],[-17,-14],[-23,3],[-13,16],[-12,7],[-14,-13],[-6,-29],[-14,-17],[-13,-27],[-20,-5],[-6,20],[2,36],[-16,57],[-8,8]],[[5552,3594],[0,172],[27,2],[1,211],[21,2],[43,21],[10,-24],[18,22],[9,0],[15,14]],[[5696,4014],[5,-5]],[[5701,4009],[11,-47],[5,-10],[9,-34],[32,-66],[12,-6],[0,-20],[8,-38],[21,-9],[18,-27]],[[5424,5496],[23,4],[5,16],[5,-1],[7,-14],[34,23],[12,22],[15,21],[-3,21],[8,6],[27,-5],[26,28],[20,65],[14,23],[18,11]],[[5635,5716],[3,-26],[16,-37],[0,-24],[-5,-24],[2,-19],[10,-16]],[[5661,5570],[21,-27]],[[5682,5543],[15,-23],[0,-20],[19,-31],[12,-25],[7,-35],[20,-24],[5,-18]],[[5760,5367],[-9,-6],[-18,1],[-21,6],[-10,-5],[-5,-15],[-9,-2],[-10,14],[-31,-30],[-13,6],[-4,-5],[-8,-36],[-21,12],[-20,5],[-18,23],[-23,19],[-15,-18],[-10,-31],[-3,-41]],[[5512,5264],[-18,3],[-19,11],[-16,-31],[-15,-56]],[[5444,5191],[-3,18],[-1,26],[-13,20],[-10,30],[-2,21],[-13,31],[2,17],[-3,25],[2,46],[7,11],[14,60]],[[3231,7808],[20,-9],[26,2],[-14,-24],[-10,-4],[-35,25],[-7,20],[10,18],[10,-28]],[[3283,7958],[-14,-1],[-36,19],[-26,28],[10,5],[37,-15],[28,-24],[1,-12]],[[1569,7923],[-14,-8],[-46,27],[-8,20],[-25,22],[-5,16],[-28,11],[-11,33],[2,13],[30,-13],[17,-9],[26,-6],[9,-20],[14,-29],[28,-24],[11,-33]],[[3440,8052],[-18,-52],[18,20],[19,-12],[-10,-21],[25,-16],[12,14],[28,-18],[-8,-44],[19,11],[4,-31],[8,-37],[-11,-52],[-13,-2],[-18,11],[6,48],[-8,7],[-32,-51],[-17,2],[20,28],[-27,14],[-30,-3],[-54,2],[-4,18],[17,20],[-12,17],[24,34],[28,95],[18,34],[24,20],[13,-3],[-6,-16],[-15,-37]],[[1300,8258],[13,-8],[27,5],[-8,-68],[24,-47],[-11,0],[-17,28],[-10,26],[-14,19],[-5,25],[1,20]],[[2798,8730],[-11,-32],[-12,5],[-8,19],[2,4],[10,17],[12,-1],[7,-12]],[[2725,8763],[-33,-33],[-19,1],[-6,16],[20,27],[38,0],[0,-11]],[[2634,8936],[5,-26],[15,10],[16,-16],[30,-20],[32,-19],[2,-27],[21,4],[20,-20],[-25,-18],[-43,14],[-16,27],[-27,-32],[-40,-31],[-9,35],[-38,-6],[24,30],[4,46],[9,54],[20,-5]],[[2892,9024],[-31,-3],[-7,29],[12,34],[26,8],[21,-16],[1,-26],[-4,-8],[-18,-18]],[[2343,9140],[-17,-20],[-38,17],[-22,-6],[-38,27],[24,18],[19,26],[30,-18],[17,-10],[8,-11],[17,-23]],[[3135,7724],[-18,33],[0,81],[-13,17],[-18,-9],[-10,15],[-21,-45],[-8,-46],[-10,-27],[-12,-9],[-9,-3],[-3,-15],[-51,0],[-42,0],[-12,-11],[-30,-42],[-3,-5],[-9,-23],[-26,0],[-27,0],[-12,-10],[4,-11],[3,-18],[-1,-6],[-36,-30],[-29,-9],[-32,-32],[-7,0],[-10,9],[-3,10],[1,6],[6,20],[13,32],[8,35],[-5,51],[-6,55],[-29,27],[3,11],[-4,7],[-8,0],[-5,9],[-2,15],[-5,-7],[-7,2],[1,6],[-6,6],[-3,15],[-21,20],[-23,19],[-27,23],[-26,21],[-25,-16],[-9,-1],[-34,15],[-23,-7],[-27,17],[-28,11],[-19,3],[-9,10],[-5,32],[-9,0],[-1,-23],[-57,0],[-95,0],[-94,0],[-84,0],[-83,0],[-82,0],[-85,0],[-27,0],[-82,0],[-79,0]],[[1588,7952],[-4,0],[-54,59],[-20,25],[-50,24],[-15,52],[3,37],[-35,25],[-5,48],[-34,43],[0,30]],[[1374,8295],[15,29],[0,37],[-48,38],[-28,67],[-17,42],[-26,27],[-19,24],[-14,30],[-28,-18],[-27,-34],[-25,39],[-19,26],[-27,16],[-28,2],[0,337],[1,219]],[[1084,9176],[51,-14],[44,-29],[29,-5]],[[1208,9128],[24,25],[34,18]],[[1266,9171],[41,-7],[42,26],[45,14],[20,-24],[20,14],[6,27],[20,-6],[47,-53],[37,40],[3,-44],[34,9],[11,17],[34,-3],[42,-25],[65,-22],[38,-9],[28,3],[37,-30],[-39,-29],[50,-13],[75,7],[24,11],[29,-36],[31,30],[-29,25],[18,21],[34,2],[22,6],[23,-15],[28,-31],[31,5],[49,-27],[43,9],[40,-1],[-3,36],[25,10],[43,-19],[0,-56],[17,47],[23,-1],[12,59],[-30,36],[-32,24],[2,65],[33,43],[37,-9],[28,-26],[38,-67],[-25,-29],[52,-12],[-1,-61],[38,48],[33,-38],[-9,-45],[27,-40],[29,44],[21,50],[1,64],[40,-4],[41,-8],[37,-30],[2,-29],[-21,-31],[20,-32],[-4,-29],[-54,-41],[-39,-9],[-29,17],[-8,-29],[-27,-50],[-8,-26],[-32,-40],[-40,-3],[-22,-26],[-2,-38],[-32,-7],[-34,-48],[-30,-67],[-11,-46],[-1,-69],[40,-10],[13,-56],[13,-44],[39,12],[51,-26],[28,-23],[20,-27],[35,-17],[29,-24],[46,-3],[30,-7],[-4,-51],[8,-59],[21,-66],[41,-56],[21,19],[15,61],[-14,93],[-20,31],[45,27],[31,42],[16,41],[-3,39],[-19,51],[-33,45],[32,61],[-12,54],[-9,92],[19,13],[48,-15],[29,-6],[23,15],[25,-19],[35,-35],[8,-23],[50,-4],[-1,-50],[9,-75],[25,-9],[21,-35],[40,33],[26,65],[19,28],[21,-53],[37,-75],[30,-71],[-11,-37],[37,-34],[25,-34],[44,-15],[18,-18],[11,-51],[22,-7],[11,-22],[2,-67],[-20,-22],[-20,-21],[-46,-21],[-35,-48],[-47,-10],[-59,12],[-42,1],[-29,-4],[-23,-43],[-35,-26],[-40,-78],[-32,-54],[23,9],[45,78],[58,49],[42,6],[24,-29],[-26,-39],[9,-65],[9,-44],[36,-30],[46,10],[28,65],[2,-42],[17,-21],[-34,-39],[-61,-35],[-28,-25],[-31,-42],[-21,4],[-1,50],[48,50],[-44,-2],[-31,-8]],[[1972,9121],[-70,-9],[-50,-6]],[[1852,9106],[-15,28],[-38,17],[-24,-8],[-35,48],[19,6],[43,10],[39,-3],[36,10],[-54,15],[-59,-6],[-39,1],[-15,23],[64,24],[-42,-1],[-49,15],[23,44],[20,24],[74,36],[29,-12],[-14,-27],[61,17],[39,-30],[31,31],[26,-19],[23,-59],[14,25],[-20,60],[24,9],[28,-10],[31,-23],[17,-58],[9,-42],[47,-29],[50,-27],[-3,-27],[-46,-4],[18,-23],[-9,-22],[-51,10],[-48,15],[-32,-3],[-52,-20]],[[2097,9395],[-24,-39],[-44,42],[10,8],[37,2],[21,-13]],[[2879,9376],[3,-16],[-30,2],[-30,1],[-30,-8],[-8,4],[-31,31],[1,21],[14,4],[63,-6],[48,-33]],[[2595,9379],[22,-37],[26,49],[70,23],[48,-60],[-4,-39],[55,17],[26,24],[62,-31],[38,-28],[3,-25],[52,13],[29,-38],[67,-23],[24,-24],[26,-56],[-51,-26],[66,-39],[44,-14],[40,-54],[44,-3],[-9,-42],[-49,-69],[-34,26],[-44,56],[-36,-7],[-3,-34],[29,-34],[38,-27],[11,-16],[18,-58],[-9,-43],[-35,16],[-70,47],[39,-50],[29,-36],[5,-20],[-76,23],[-59,34],[-34,29],[10,16],[-42,31],[-40,29],[0,-18],[-80,-9],[-23,21],[18,43],[52,1],[57,8],[-9,20],[10,30],[36,58],[-8,25],[-11,21],[-42,28],[-57,21],[18,14],[-29,37],[-25,3],[-22,21],[-14,-18],[-51,-8],[-101,14],[-59,17],[-45,9],[-23,21],[29,26],[-39,1],[-9,60],[21,52],[29,25],[72,15],[-21,-38]],[[2212,9420],[33,-13],[50,8],[7,-17],[-26,-29],[42,-25],[-5,-53],[-45,-22],[-27,4],[-19,22],[-69,46],[0,19],[57,-7],[-31,39],[33,28]],[[2411,9357],[-30,-44],[-32,2],[-17,52],[1,29],[14,25],[28,16],[58,-2],[53,-15],[-42,-52],[-33,-11]],[[1581,9246],[-15,26],[-64,31]],[[1502,9303],[12,25],[19,43]],[[1533,9371],[24,39],[-27,36],[94,9],[39,-11],[71,-4],[27,-17],[30,-25],[-35,-15],[-68,-42],[-34,-41]],[[1654,9300],[0,-25],[-73,-29]],[[2399,9487],[-15,-23],[-40,5],[-34,15],[15,27],[40,15],[24,-20],[10,-19]],[[2264,9590],[21,-27],[1,-31],[-13,-44],[-46,-6],[-30,9],[1,35],[-45,-4],[-2,45],[30,-2],[41,21],[40,-4],[2,8]],[[1994,9559],[11,-21],[25,11],[29,-3],[5,-29],[-17,-29],[-94,-8],[-70,-26],[-43,-2],[-3,20],[57,26],[-125,-7],[-39,10],[38,58],[26,16],[78,-19],[50,-35],[48,-5],[-40,57],[26,22],[29,-7],[9,-29]],[[2370,9612],[30,-19],[55,1],[24,-20],[-6,-22],[32,-14],[17,-14],[38,-2],[40,-5],[44,12],[57,5],[45,-4],[30,-21],[6,-25],[-17,-16],[-42,-13],[-35,7],[-80,-9],[-57,-1],[-45,7],[-74,20],[-9,32],[-4,29],[-27,26],[-58,7],[-32,19],[10,24],[58,-4]],[[1772,9645],[-4,-46],[-21,-21],[-26,-3],[-52,-24],[-44,-10],[-38,13],[47,45],[57,38],[43,-1],[38,9]],[[2393,9637],[-13,-1],[-52,3],[-7,16],[56,0],[19,-11],[-3,-7]],[[1939,9647],[-52,-16],[-41,19],[23,19],[40,6],[39,-9],[-9,-19]],[[1954,9701],[-34,-12],[-46,0],[0,9],[29,18],[14,-3],[37,-12]],[[2338,9669],[-41,-13],[-23,15],[-12,21],[-2,25],[36,-2],[16,-4],[33,-21],[-7,-21]],[[2220,9685],[11,-25],[-45,7],[-46,19],[-62,2],[27,18],[-34,14],[-2,23],[55,-9],[75,-21],[21,-28]],[[2583,9764],[33,-19],[-38,-18],[-51,-45],[-50,-4],[-57,8],[-30,24],[0,21],[22,16],[-50,0],[-31,19],[-18,27],[20,26],[19,18],[28,4],[-12,14],[65,3],[35,-31],[47,-14],[46,-10],[22,-39]],[[3097,9967],[74,-5],[60,-7],[51,-17],[-2,-15],[-67,-26],[-68,-12],[-25,-12],[61,0],[-66,-36],[-45,-17],[-48,-48],[-57,-10],[-18,-12],[-84,-6],[39,-8],[-20,-10],[23,-30],[-26,-20],[-43,-17],[-13,-22],[-39,-19],[4,-13],[48,3],[0,-14],[-74,-36],[-73,16],[-81,-9],[-42,7],[-52,3],[-4,29],[52,13],[-14,42],[17,5],[74,-26],[-38,38],[-45,11],[23,24],[49,13],[8,21],[-39,23],[-12,31],[76,-3],[22,-6],[43,21],[-62,7],[-98,-4],[-49,20],[-23,24],[-32,18],[-6,19],[41,12],[32,2],[55,9],[41,23],[34,-4],[30,-16],[21,32],[37,9],[50,6],[85,3],[14,-6],[81,9],[60,-3],[60,-4]],[[5290,7828],[-3,-25],[-12,-10],[-20,8],[-6,-24],[-14,-1],[-5,9],[-15,-21],[-13,-3],[-12,14]],[[5190,7775],[-10,25],[-13,-9],[0,27],[21,33],[-1,15],[12,-5],[8,10]],[[5207,7871],[24,-1],[5,13],[30,-18]],[[3140,1814],[-10,-24],[-23,-18]],[[3107,1772],[-14,2],[-16,5]],[[3077,1779],[-21,17],[-29,9],[-35,32],[-28,32],[-38,67],[23,-12],[39,-40],[36,-21],[15,27],[9,41],[25,23],[20,-6]],[[3095,1968],[-25,0],[-13,-15],[-25,-21],[-5,-54],[-11,-3],[-32,20],[-32,41],[-34,34],[-9,38],[8,34],[-14,40],[-4,100],[12,57],[30,46],[-43,16],[27,53],[9,98],[31,-20],[15,122],[-19,15],[-9,-74],[-17,8],[9,86],[9,108],[13,41],[-8,58],[-2,66],[11,2],[17,96],[20,94],[11,89],[-6,88],[8,48],[-3,74],[16,72],[5,114],[9,123],[9,132],[-2,96],[-6,84]],[[3045,3974],[14,15],[8,30]],[[8064,6161],[-24,-29],[-23,19],[0,51],[13,27],[31,16],[16,-1],[6,-23],[-12,-26],[-7,-34]],[[8628,7562],[-18,35],[-11,-34],[-43,-24],[4,-32],[-24,2],[-13,18],[-19,-41],[-30,-31],[-23,-38]],[[8451,7417],[-39,-18],[-20,-27],[-30,-17],[15,28],[-6,22],[22,40],[-15,31],[-24,-20],[-32,-41],[-17,-38],[-27,-3],[-14,-28],[15,-40],[22,-9],[1,-27],[22,-17],[31,42],[25,-23],[18,-2]],[[8398,7270],[4,-31],[-39,-16]],[[8363,7223],[-13,-32],[-27,-30],[-14,-41],[30,-33],[11,-58],[17,-53],[19,-47],[-1,-43],[-17,-16],[6,-32],[17,-18],[-5,-49],[-7,-46],[-15,-5],[-21,-65],[-22,-77],[-26,-70],[-38,-55],[-39,-50],[-31,-6],[-17,-27],[-10,20],[-15,-30],[-39,-30],[-29,-8],[-10,-63],[-15,-4],[-8,43],[7,23],[-37,19],[-13,-9]],[[8001,6331],[-28,15],[-14,24],[5,34],[-26,11],[-13,22],[-24,-32],[-27,-6],[-22,0],[-15,-14]],[[7837,6385],[-14,-9],[4,-67],[-15,1],[-2,14]],[[7810,6324],[-1,25],[-20,-18],[-12,10],[-21,23],[8,49],[-18,12],[-6,54],[-30,-9],[4,69],[26,50],[1,48],[-1,46],[-12,13],[-9,35],[-16,-4]],[[7703,6727],[-30,8],[9,26],[-13,36],[-20,-25],[-23,15],[-32,-37],[-25,-44],[-23,-8]],[[7466,6670],[-2,47],[-17,-12]],[[7447,6705],[-32,5],[-32,14],[-22,26],[-22,11],[-9,29],[-16,8],[-28,39],[-22,17],[-12,-13]],[[7252,6841],[-38,41],[-28,37],[-7,66],[20,-8],[1,29],[-12,31],[3,48],[-30,69]],[[7161,7154],[-45,25],[-8,45],[-21,27]],[[7082,7268],[-4,34],[1,22],[-17,15],[-9,-6],[-7,54]],[[7046,7387],[8,13],[-4,15],[26,27],[20,12],[29,-9],[11,38],[35,8],[10,23],[44,32],[4,13]],[[7229,7559],[-2,34],[19,16],[-25,102],[55,24],[14,13],[20,106],[55,-20],[15,27],[2,59],[23,6],[21,39]],[[7426,7965],[11,5]],[[7437,7970],[7,-41],[23,-32],[40,-22],[19,-48],[-10,-69],[10,-25],[33,-11],[37,-8],[33,-37],[18,-6],[12,-54],[17,-35],[30,1],[58,-13],[36,8],[28,-8],[41,-36],[34,0],[12,-19],[32,32],[45,20],[42,3],[32,20],[20,32],[20,19],[-5,20],[-9,22],[15,39],[15,-6],[29,-11],[28,31],[42,23],[20,39],[20,17],[40,8],[22,-7],[3,21],[-25,41],[-22,19],[-22,-22],[-27,10],[-16,-8],[-7,24],[20,59],[13,45]],[[8240,8005],[34,-23],[39,38],[-1,26],[26,62],[15,20],[0,32],[-16,14],[23,30],[35,10],[37,2],[41,-18],[25,-22],[17,-60],[10,-24],[10,-37],[10,-58],[49,-19],[32,-42],[12,-56],[42,0],[24,24],[46,17],[-15,-53],[-11,-21],[-9,-65],[-19,-58],[-33,11],[-24,-21],[7,-50],[-4,-70],[-14,-2],[0,-30]],[[4920,5352],[-12,-1],[-20,13],[-18,-1],[-33,-11],[-19,-17],[-27,-22],[-6,3]],[[4785,5316],[2,48],[3,7],[-1,23],[-12,25],[-8,4],[-8,17],[6,25],[-3,29],[1,17]],[[4765,5511],[5,0],[1,26],[-2,11],[3,9],[10,7],[-7,47],[-6,25],[2,20],[5,4]],[[4776,5660],[4,5],[8,-8],[21,-1],[5,18],[5,-1],[8,6],[4,-25],[7,7],[11,9]],[[4921,5627],[7,-84],[-11,-50],[-8,-67],[12,-50],[-1,-24]],[[5363,5191],[-4,3],[-16,-7],[-17,7],[-13,-3]],[[5313,5191],[-45,1]],[[5268,5192],[4,47],[-11,40],[-13,9],[-6,26],[-7,9],[1,16]],[[5236,5339],[7,42],[13,58],[8,0],[17,34],[10,2],[16,-25],[19,19],[2,25],[7,25],[4,29],[15,24],[5,42],[6,13],[4,31],[7,37],[24,46],[1,20],[3,10],[-11,24]],[[5393,5795],[1,19],[8,3]],[[5402,5817],[11,-38],[2,-39],[-1,-39],[15,-54],[-15,1],[-8,-4],[-13,6],[-6,-29],[16,-34],[13,-10],[3,-25],[9,-41],[-4,-15]],[[5444,5191],[-2,-31],[-22,14],[-22,15],[-35,2]],[[5856,5265],[-2,-70],[11,-8],[-9,-20],[-10,-16],[-11,-30],[-6,-28],[-1,-47],[-7,-23],[0,-45]],[[5821,4978],[-8,-16],[-1,-35],[-4,-5],[-2,-32]],[[5814,4791],[5,-54],[-2,-31],[5,-34],[16,-33],[15,-75]],[[5853,4564],[-11,7],[-37,-11],[-7,-7],[-8,-37],[6,-26],[-5,-70],[-3,-60],[7,-10],[19,-22],[8,10],[2,-64],[-21,1],[-11,32],[-10,26],[-22,8],[-6,31],[-17,-19],[-22,8],[-10,27],[-17,5],[-13,-1],[-2,19],[-9,1]],[[5342,4697],[-4,18]],[[5360,4775],[8,-6],[9,22],[15,0],[2,-17],[11,-10],[16,36],[16,29],[7,20],[-1,48],[12,57],[13,31],[18,29],[3,18],[1,22],[5,20],[-2,34],[4,53],[5,37],[8,30],[2,36]],[[5760,5367],[17,-49],[12,-8],[8,11],[12,-4],[16,12],[6,-25],[25,-39]],[[5330,4759],[-22,63]],[[5308,4822],[21,33],[-11,39],[10,15],[19,7],[2,26],[15,-28],[24,-3],[9,28],[3,40],[-3,46],[-13,35],[12,68],[-7,12],[-21,-5],[-7,31],[2,25]],[[2906,5049],[-12,13],[-14,20],[-7,-10],[-24,9],[-7,25],[-5,-1],[-28,34]],[[2809,5139],[-3,19],[10,4],[-1,29],[6,22],[14,4],[12,37],[10,31],[-10,14],[5,34],[-6,54],[6,16],[-4,50],[-12,31]],[[2836,5484],[4,28],[9,-4],[5,18],[-6,35],[3,9]],[[2851,5570],[14,-2],[21,41],[12,6],[0,20],[5,50],[16,28],[17,1],[3,12],[21,-5],[22,30],[11,13],[14,29],[9,-5],[8,-15],[-6,-19]],[[3018,5754],[-18,-11],[-7,-29],[-10,-17],[-8,-22],[-4,-42],[-8,-35],[15,-3],[3,-28],[6,-13],[3,-24],[-4,-22],[1,-12],[7,-5],[7,-21],[36,7],[16,-9],[19,-50],[11,6],[20,-3],[16,6],[10,-10],[-5,-32],[-6,-19],[-2,-42],[5,-39],[8,-19],[1,-12],[-14,-30],[10,-13],[8,-21],[8,-58]],[[3058,4804],[-14,31],[-8,1],[18,61],[-21,28],[-17,-6],[-10,11],[-15,-17],[-21,9],[-16,61],[-13,15],[-9,28],[-19,28],[-7,-5]],[[2695,5543],[-15,14],[-6,12],[4,10],[-1,14],[-8,13],[-11,12],[-10,7],[-1,18],[-8,10],[2,-16],[-5,-15],[-7,17],[-9,5],[-4,12],[1,19],[3,18],[-8,8],[7,12]],[[2619,5713],[4,7],[18,-16],[7,9],[9,-6],[4,-12],[8,-4],[7,12]],[[2676,5703],[7,-31],[11,-24],[13,-26]],[[2707,5622],[-11,-5],[0,-23],[6,-10],[-4,-6],[1,-11],[-2,-11],[-2,-13]],[[2715,6428],[23,-4],[22,-1],[26,-21],[11,-22],[26,8],[10,-15],[24,-36],[17,-26],[9,0],[17,-12],[-2,-17],[20,-2],[21,-24],[-3,-14],[-19,-7],[-18,-3],[-19,4],[-40,-5],[18,32],[-11,16],[-18,4],[-9,16],[-7,34],[-16,-2],[-26,16],[-8,12],[-36,9],[-10,12],[11,15],[-28,3],[-20,-31],[-11,-1],[-4,-14],[-14,-6],[-12,5],[15,18],[6,22],[13,13],[14,11],[21,5],[7,8]],[[5909,7134],[2,0],[4,14],[20,-1],[25,18],[-19,-25],[2,-12]],[[5943,7128],[-3,2],[-5,-4],[-4,1],[-2,-2],[0,6],[-2,4],[-6,1],[-7,-6],[-5,4]],[[5943,7128],[1,-4],[-28,-24],[-14,8],[-7,23],[14,3]],[[5377,7945],[-16,26],[-14,14],[-3,25],[-5,17],[21,12],[10,16],[20,11],[7,11],[7,-7],[13,6]],[[5417,8076],[13,-18],[21,-5],[-2,-17],[15,-12],[4,15],[19,-7],[3,-18],[20,-3],[13,-29]],[[5523,7982],[-8,0],[-4,-11],[-7,-2],[-2,-14],[-5,-3],[-1,-6],[-9,-5],[-12,0],[-4,-12]],[[5275,8306],[1,-23],[28,-14],[-1,-21],[29,11],[15,16],[32,-23],[13,-19]],[[5392,8233],[6,-29],[-8,-17],[11,-20],[6,-32],[-2,-21],[12,-38]],[[5207,7871],[3,42],[14,40],[-40,12],[-13,15]],[[5171,7980],[2,26],[-6,13]],[[5171,8059],[-5,61],[17,0],[7,23],[6,54],[-5,20]],[[5191,8217],[6,12],[23,3],[5,-12],[19,29],[-6,22],[-2,33]],[[5236,8304],[21,-7],[18,9]],[[6196,5808],[7,-19],[-1,-24],[-16,-14],[12,-17]],[[6198,5734],[-10,-31]],[[6188,5703],[-7,11],[-6,-5],[-16,1],[0,18],[-2,16],[9,28],[10,27]],[[6176,5799],[12,-5],[8,14]],[[5352,8343],[-17,-48],[-29,34],[-4,23],[41,21],[9,-30]],[[5236,8304],[-11,33],[-1,60],[5,17],[8,17],[24,4],[10,16],[22,17],[-1,-31],[-8,-19],[4,-16],[15,-9],[-7,-22],[-8,6],[-20,-42],[7,-29]],[[3008,6222],[3,11],[22,-1],[16,-16],[8,2],[5,-21],[15,2],[-1,-19],[12,-2],[14,-21],[-10,-24],[-14,13],[-12,-3],[-9,4],[-5,-12],[-11,-3],[-4,15],[-10,-10],[-11,-40],[-7,10],[-1,17]],[[3008,6124],[0,15],[-7,18],[7,10],[2,23],[-2,32]],[[5333,6444],[-95,-113],[-81,-116],[-39,-26]],[[5118,6189],[-31,-6],[0,37],[-13,11],[-17,16],[-7,28],[-94,129],[-93,129]],[[4863,6533],[-105,143]],[[4758,6676],[1,11],[0,4]],[[4759,6691],[0,70],[44,44],[28,9],[23,16],[11,30],[32,23],[1,43],[16,5],[13,23],[36,9],[5,24],[-7,12],[-10,63],[-1,36],[-11,38]],[[4939,7136],[27,31],[30,11],[18,24],[26,18],[47,11],[46,4],[14,-8],[26,22],[30,1],[11,-14],[19,4]],[[5233,7240],[-5,-31],[4,-55],[-6,-49],[-18,-33],[3,-44],[23,-36],[0,-14],[17,-24],[12,-106]],[[5263,6848],[9,-52],[1,-28],[-5,-48],[2,-27],[-3,-32],[2,-37],[-11,-25],[17,-43],[1,-26],[10,-33],[13,12],[22,-28],[12,-37]],[[2769,4856],[15,44],[-6,27],[-11,-28],[-16,26],[5,16],[-4,54],[9,9],[5,37],[11,38],[-2,24],[15,12],[19,24]],[[2906,5049],[4,-45],[-9,-38],[-30,-63],[-33,-23],[-17,-52],[-6,-39],[-15,-24],[-12,29],[-11,6],[-12,-4],[-1,22],[8,13],[-3,25]],[[5969,6800],[-7,-24],[-6,-44],[-8,-30],[-6,-11],[-10,19],[-12,26],[-20,85],[-3,-6],[12,-62],[17,-59],[21,-92],[10,-32],[9,-34],[25,-65],[-6,-11],[1,-37],[33,-54],[4,-12]],[[6023,6357],[-110,0],[-107,0],[-112,0]],[[5694,6357],[0,217],[0,211],[-8,48],[7,36],[-5,25],[10,28]],[[5698,6922],[37,1],[27,-15],[28,-18],[13,-9],[21,19],[11,17],[25,5],[20,-8],[7,-29],[7,20],[22,-15],[22,-3],[13,15]],[[5951,6902],[18,-102]],[[6176,5799],[-10,18],[-11,35],[-12,20],[-8,19],[-24,25],[-19,0],[-7,12],[-16,-13],[-17,26],[-8,-44],[-33,13]],[[6011,5910],[-3,23],[12,87],[3,39],[9,19],[20,9],[14,34]],[[6066,6121],[16,-69],[8,-54],[15,-29],[38,-55],[16,-34],[15,-34],[8,-21],[14,-17]],[[4749,7532],[1,42],[-11,25],[39,43],[34,-11],[37,1],[30,-10],[23,3],[45,-2]],[[4947,7623],[11,-24],[51,-26],[10,13],[31,-27],[32,7]],[[5082,7566],[2,-33],[-26,-40],[-36,-13],[-2,-19],[-18,-33],[-10,-48],[11,-34],[-16,-27],[-6,-38],[-21,-11],[-20,-46],[-35,-1],[-27,1],[-17,-21],[-11,-22],[-13,5],[-11,20],[-8,34],[-26,9]],[[4792,7249],[-2,20],[10,21],[4,17],[-9,17],[7,39],[-11,35],[12,5],[1,28],[5,9],[0,46],[13,16],[-8,30],[-16,2],[-5,-8],[-16,0],[-7,29],[-11,-8],[-10,-15]],[[5675,8471],[3,35],[-10,-7],[-18,22],[-2,33],[35,17],[35,8],[30,-9],[29,1]],[[5777,8571],[4,-10],[-20,-34],[8,-56],[-12,-18]],[[5757,8453],[-22,0],[-24,22],[-13,8],[-23,-12]],[[6188,5703],[-6,-21],[10,-32],[10,-29],[11,-21],[90,-70],[24,0]],[[6327,5530],[-79,-178],[-36,-2],[-25,-42],[-17,-1],[-8,-18]],[[6162,5289],[-19,0],[-11,20],[-26,-24],[-8,-25],[-18,4],[-6,7],[-7,-2],[-9,1],[-35,51],[-19,0],[-10,19],[0,33],[-14,10]],[[5980,5383],[-17,64],[-12,14],[-5,24],[-14,29],[-17,4],[9,33],[15,1],[4,19]],[[5943,5571],[0,52]],[[5943,5623],[8,63],[13,16],[3,24],[12,45],[17,30],[11,57],[4,52]],[[5794,9137],[-4,-41],[42,-39],[-26,-45],[33,-67],[-19,-51],[25,-43],[-11,-39],[41,-40],[-11,-31],[-25,-34],[-60,-76]],[[5779,8631],[-50,-4],[-49,-21],[-45,-13],[-16,32],[-27,20],[6,58],[-14,54],[14,33],[25,37],[63,65],[19,12],[-3,25],[-39,28]],[[5663,8957],[-9,23],[-1,91],[-43,41],[-37,28]],[[5573,9140],[17,16],[30,-31],[37,2],[30,-13],[26,25],[14,43],[43,21],[35,-24],[-11,-42]],[[9954,4033],[9,-17],[-4,-31],[-17,-8],[-16,8],[-2,25],[10,21],[13,-8],[7,10]],[[0,4108],[6,3],[-4,-29],[-2,-3]],[[0,4079],[9981,-14],[-17,-12],[-4,21],[14,12],[9,3],[-9983,19]],[[3300,1994],[33,35],[24,-14],[16,24],[22,-27],[-8,-21],[-37,-17],[-13,20],[-23,-26],[-14,26]],[[3485,5194],[7,25],[3,27],[4,25],[-10,35],[-3,40],[15,52]],[[3501,5398],[9,-7],[21,-14],[29,-50],[5,-24]],[[5265,7548],[-9,-46],[-13,12],[-6,40],[5,22],[18,22],[5,-50]],[[5157,7984],[6,-5],[8,1]],[[5190,7775],[-2,-17],[9,-22],[-10,-19],[7,-45],[15,-8],[-3,-26]],[[5206,7638],[-25,-33],[-55,17],[-40,-20],[-4,-36]],[[4947,7623],[14,35],[5,118],[-28,62],[-21,30],[-42,23],[-3,43],[36,12],[47,-14],[-9,66],[26,-25],[65,46],[8,48],[24,12]],[[5308,4822],[-29,60],[-18,49],[-17,60],[1,21],[6,18],[7,43],[5,44]],[[5263,5117],[10,4],[40,-1],[0,71]],[[4827,8239],[-21,13],[-17,-1],[6,32],[-6,31]],[[4789,8314],[23,2],[30,-35],[-15,-42]],[[4942,8361],[2,-7],[25,-69]],[[4969,8285],[19,-10],[17,-67],[8,-24],[33,-11],[-3,-37],[-14,-18],[11,-30],[-25,-31],[-37,0],[-48,-17],[-13,13],[-18,-28],[-26,6],[-19,-22],[-15,12],[41,62],[25,13]],[[4905,8096],[-1,0],[-43,9]],[[4861,8105],[-8,24],[29,18],[-15,32],[5,39],[42,-5],[4,34],[-19,37],[-34,10],[-7,16],[10,27],[-9,16],[-15,-28],[-1,57],[-14,30],[10,61],[21,49],[23,-6],[33,6],[-30,-64],[29,7],[30,0],[-7,-48],[-25,-52],[29,-4]],[[6154,7511],[4,26],[-7,40],[-16,21],[-16,7],[-10,19]],[[6109,7624],[4,6],[23,-9],[41,-10],[38,-28],[5,-11],[17,9],[25,-12],[9,-25],[17,-13]],[[6210,7485],[-27,29],[-29,-3]],[[5029,5408],[-44,-35],[-15,-21],[-25,-16],[-25,16]],[[5000,5708],[-2,-18],[12,-31],[0,-43],[2,-46],[7,-22],[-6,-53],[2,-29],[8,-38],[6,-20]],[[4765,5511],[-8,3],[-5,-25],[-8,1],[-6,12],[2,24],[-11,36],[-8,-6],[-6,-1]],[[4715,5555],[-7,-5],[0,22],[-4,15],[0,18],[-6,24],[-7,22],[-22,0],[-7,-11],[-8,-1],[-4,-14],[-4,-16],[-14,-26]],[[4632,5583],[-13,35],[-10,24],[-8,7],[-6,12],[-4,26],[-4,13],[-8,9]],[[4579,5709],[13,29],[8,-1],[7,10],[6,0],[5,9],[-3,19],[3,6],[1,20]],[[4619,5801],[13,0],[20,-15],[6,1],[3,7],[15,-5],[4,4]],[[4680,5793],[1,-22],[5,0],[7,8],[5,-2],[7,-15],[12,-5],[8,13],[9,8],[6,8],[6,-2],[6,-12],[3,-16],[12,-25],[-6,-15],[-1,-20],[6,6],[3,-7],[-1,-17],[8,-18]],[[4532,5835],[3,25]],[[4535,5860],[31,2],[6,15],[9,1],[11,-16],[8,0],[9,11],[6,-18],[-12,-13],[-12,1],[-12,12],[-10,-13],[-5,0],[-7,-8],[-25,1]],[[4579,5709],[-15,25],[-11,4],[-7,17],[1,9],[-9,12],[-2,13]],[[4536,5789],[15,10],[9,-2],[8,7],[51,-3]],[[5263,5117],[-5,9],[10,66]],[[5658,7166],[15,-19],[22,3],[20,-4],[0,-10],[15,7],[-4,-18],[-40,-5],[1,10],[-34,12],[5,24]],[[5723,7469],[-17,2],[-14,5],[-34,-15],[19,-33],[-14,-9],[-15,0],[-15,29],[-5,-12],[6,-36],[14,-27],[-10,-13],[15,-27],[14,-18],[0,-33],[-25,16],[8,-30],[-18,-6],[11,-53],[-19,-1],[-23,26],[-10,47],[-5,39],[-11,28],[-14,34],[-2,16]],[[5583,7470],[19,5],[10,13],[15,-1],[5,11],[5,2]],[[5725,7528],[13,-15],[-8,-37],[-7,-7]],[[3701,9938],[93,36],[97,-3],[36,22],[98,6],[222,-7],[174,-47],[-52,-23],[-106,-3],[-150,-5],[14,-10],[99,6],[83,-21],[54,19],[23,-22],[-30,-35],[71,23],[135,22],[83,-11],[15,-26],[-113,-41],[-16,-14],[-88,-10],[64,-2],[-32,-43],[-23,-39],[1,-66],[33,-38],[-43,-3],[-46,-18],[52,-32],[6,-51],[-30,-5],[36,-50],[-61,-5],[32,-24],[-9,-20],[-39,-9],[-39,0],[35,-40],[0,-27],[-55,24],[-14,-16],[37,-14],[37,-36],[10,-48],[-49,-12],[-22,24],[-34,34],[10,-40],[-33,-32],[73,-2],[39,-3],[-75,-51],[-75,-48],[-81,-20],[-31,0],[-29,-23],[-38,-62],[-60,-41],[-19,-3],[-37,-15],[-40,-13],[-24,-37],[0,-41],[-15,-39],[-45,-47],[11,-46],[-12,-50],[-14,-57],[-39,-3],[-41,48],[-56,0],[-27,32],[-18,58],[-49,73],[-14,39],[-3,53],[-39,55],[10,43],[-18,20],[27,70],[42,22],[11,24],[6,46],[-32,-20],[-15,-9],[-25,-8],[-34,19],[-2,40],[11,32],[25,0],[57,-16],[-48,38],[-24,20],[-28,-8],[-23,15],[31,54],[-17,23],[-22,40],[-34,64],[-35,22],[0,25],[-74,35],[-59,4],[-74,-2],[-68,-5],[-32,19],[-49,37],[73,19],[56,3],[-119,15],[-62,24],[4,23],[105,29],[101,28],[11,21],[-75,22],[24,23],[97,41],[40,7],[-12,26],[66,16],[86,9],[85,1],[30,-19],[74,33],[66,-22],[39,-5],[58,-19],[-66,32],[4,24]],[[2497,5868],[-14,11],[-17,1],[-13,12],[-15,25]],[[2438,5917],[1,16],[3,14],[-4,12],[13,48],[36,0],[1,19],[-5,5],[-3,12],[-10,14],[-11,20],[13,0],[0,33],[26,1],[26,-1]],[[2529,5996],[10,-11],[2,9],[8,-8]],[[2549,5986],[-13,-22],[-13,-17],[-2,-11],[2,-11],[-5,-15]],[[2518,5910],[-7,-4],[2,-7],[-6,-7],[-9,-14],[-1,-10]],[[3340,5551],[18,-21],[17,-38],[1,-31],[10,-1],[15,-30],[11,-20]],[[3412,5410],[-4,-52],[-17,-16],[1,-14],[-5,-31],[13,-43],[9,0],[3,-33],[17,-51]],[[3313,5365],[-19,45],[7,15],[0,28],[17,9],[7,11],[-10,22],[3,22],[22,34]],[[2574,5824],[-5,19],[-8,5]],[[2561,5848],[2,24],[-4,6],[-6,5],[-12,-7],[-1,7],[-8,10],[-6,11],[-8,6]],[[2549,5986],[3,-2],[6,11],[8,1],[3,-5],[4,3],[13,-5],[13,1],[9,7],[3,6],[9,-3],[6,-4],[8,2],[5,5],[13,-8],[4,-2],[9,-11],[8,-13],[10,-9],[7,-17]],[[2690,5943],[-9,1],[-4,-8],[-10,-7],[-7,0],[-6,-8],[-6,3],[-4,9],[-3,-2],[-4,-14],[-3,1],[0,-13],[-10,-16],[-5,-7],[-3,-7],[-8,12],[-6,-16],[-6,1],[-6,-1],[0,-30],[-4,0],[-3,-14],[-9,-3]],[[5523,7770],[6,-23],[9,-17],[-11,-22]],[[5515,7577],[-3,-10]],[[5512,7567],[-26,22],[-16,22],[-26,17],[-23,43],[6,4],[-13,26],[-1,19],[-17,10],[-9,-26],[-8,20],[0,21],[1,1]],[[5380,7746],[20,-2],[5,9],[9,-9],[11,-1],[0,16],[10,6],[2,24],[23,15]],[[5460,7804],[8,-7],[21,-24],[23,-13],[11,10]],[[3008,6124],[-19,9],[-13,-4],[-17,5],[-13,-11],[-15,18],[3,19],[25,-8],[21,-4],[10,12],[-12,26],[0,22],[-18,9],[7,17],[17,-2],[24,-10]],[[5471,7901],[14,-15],[10,-7],[24,8],[2,11],[11,2],[14,9],[3,-4],[13,7],[6,15],[9,3],[30,-18],[6,6]],[[5613,7918],[15,-16],[2,-15]],[[5630,7887],[-17,-13],[-13,-40],[-17,-41],[-22,-10]],[[5561,7783],[-17,2],[-21,-15]],[[5460,7804],[-6,21],[-4,0]],[[8352,4453],[-11,-1],[-37,41],[26,11],[14,-17],[10,-19],[-2,-15]],[[8471,4532],[2,-12],[1,-17]],[[8474,4503],[-18,-44],[-24,-14],[-3,8],[2,19],[12,37],[28,23]],[[8274,4579],[10,-16],[17,6],[7,-26],[-32,-11],[-19,-9],[-15,0],[10,34],[15,1],[7,21]],[[8413,4579],[-4,-33],[-42,-16],[-37,7],[0,21],[22,13],[18,-18],[18,4],[25,22]],[[8017,4657],[53,-6],[6,24],[51,-28],[10,-38],[42,-11],[34,-36],[-31,-21],[-31,23],[-25,-2],[-29,5],[-26,11],[-32,22],[-21,6],[-11,-8],[-51,25],[-5,26],[-25,4],[19,56],[34,-3],[22,-24],[12,-4],[4,-21]],[[8741,4691],[-14,-41],[-3,45],[5,20],[6,21],[7,-18],[-1,-27]],[[8534,4853],[-11,-20],[-19,12],[-5,25],[28,2],[7,-19]],[[8623,4874],[10,-45],[-23,25],[-23,5],[-16,-4],[-19,2],[6,33],[35,2],[30,-18]],[[8916,4904],[0,-193],[1,-193]],[[8917,4518],[-25,50],[-28,11],[-7,-17],[-35,-2],[12,49],[17,16],[-7,65],[-14,49],[-53,50],[-23,4],[-42,56],[-8,-29],[-11,-5],[-6,21],[0,26],[-21,29],[29,21],[20,-1],[-2,16],[-41,0],[-11,35],[-25,11],[-11,29],[37,14],[14,19],[45,-23],[4,-23],[8,-95],[29,-35],[23,63],[32,34],[25,0],[23,-20],[21,-21],[30,-11]],[[8478,5141],[-22,-58],[-21,-12],[-27,12],[-46,-3],[-24,-9],[-4,-44],[24,-53],[15,27],[52,20],[-2,-28],[-12,10],[-12,-35],[-25,-23],[27,-76],[-5,-20],[25,-68],[-1,-39],[-14,-17],[-11,20],[13,48],[-27,-22],[-7,16],[3,23],[-20,35],[3,57],[-19,-17],[2,-69],[1,-85],[-17,-9],[-12,18],[8,54],[-4,57],[-12,1],[-9,40],[12,39],[4,47],[14,88],[5,25],[24,44],[22,-18],[35,-8],[32,2],[27,43],[5,-13]],[[8574,5125],[-2,-53],[-14,7],[-4,-36],[11,-31],[-8,-7],[-11,37],[-8,75],[6,48],[9,21],[2,-33],[16,-5],[3,-23]],[[8045,5176],[5,-39],[19,-34],[18,12],[18,-4],[16,30],[13,5],[26,-16],[23,12],[14,82],[11,21],[10,66],[32,0],[24,-9]],[[8274,5302],[-16,-53],[20,-57],[-4,-26],[31,-56],[-33,-6],[-10,-41],[2,-53],[-27,-40],[-1,-60],[-10,-90],[-5,22],[-31,-27],[-11,36],[-20,3],[-14,19],[-33,-21],[-10,28],[-18,-3],[-23,8],[-4,79],[-14,16],[-13,50],[-4,52],[3,55],[16,39]],[[7939,4711],[-31,-1],[-24,49],[-35,49],[-12,36],[-21,48],[-14,44],[-21,83],[-24,49],[-9,52],[-10,45],[-25,38],[-14,50],[-21,33],[-29,65],[-3,30],[18,-2],[43,-11],[25,-59],[21,-40],[16,-24],[26,-64],[28,-1],[23,-40],[16,-49],[22,-28],[-12,-48],[16,-21],[10,-1],[5,-41],[10,-33],[20,-5],[14,-38],[-7,-72],[-1,-93]],[[7252,6841],[-17,-28],[-11,-54],[27,-23],[26,-28],[36,-34],[38,-7],[16,-31],[22,-5],[33,-14],[23,1],[4,23],[-4,38],[2,26]],[[7703,6727],[2,-22],[-10,-12],[2,-36],[-19,11],[-36,-40],[0,-34],[-15,-50],[-1,-29],[-13,-48],[-21,13],[-1,-62],[-7,-19],[3,-26],[-14,-13]],[[7472,6361],[-4,-23],[-19,1],[-34,-12],[2,-44],[-15,-35],[-40,-40],[-31,-70],[-21,-37],[-28,-39],[0,-26],[-13,-15],[-25,-21],[-13,-3],[-9,-45],[6,-77],[1,-50],[-11,-55],[0,-101],[-15,-3],[-12,-45],[8,-19],[-25,-17],[-10,-40],[-11,-17],[-26,55],[-13,83],[-11,60],[-9,28],[-15,56],[-7,74],[-5,37],[-25,81],[-12,115],[-8,76],[0,70],[-5,56],[-41,-35],[-19,7],[-36,71],[13,22],[-8,23],[-33,50]],[[6893,6457],[19,39],[61,0],[-6,51],[-15,30],[-4,46],[-18,26],[31,62],[32,-4],[29,61],[18,61],[27,58],[-1,42],[24,35],[-23,29],[-9,40],[-10,52],[14,25],[42,-14],[31,9],[26,49]],[[4827,8239],[5,-42],[-21,-52],[-49,-35],[-40,8],[23,63],[-15,60],[38,46],[21,27]],[[6497,7255],[25,12],[19,34],[19,-2],[12,11],[20,-6],[31,-30],[22,-6],[31,-52],[21,-2],[3,-51]],[[6690,6820],[14,-31],[11,-36],[27,-26],[1,-52],[13,-9],[2,-28],[-40,-31],[-10,-68]],[[6708,6539],[-53,18],[-30,13],[-31,8],[-12,72],[-13,11],[-22,-11],[-28,-28],[-34,19],[-28,46],[-27,17],[-18,56],[-21,78],[-14,-9],[-18,19],[-11,-22]],[[6348,6826],[-15,30],[0,32],[-9,0],[5,42],[-15,46],[-34,32],[-19,56],[6,46],[14,20],[-2,35],[-18,18],[-18,71]],[[6243,7254],[-15,47],[5,18],[-8,68],[19,16]],[[6357,7321],[9,-43],[26,-12],[20,-30],[39,-10],[44,15],[2,14]],[[6348,6826],[-16,3]],[[6332,6829],[-19,4],[-20,-57]],[[6293,6776],[-52,6],[-78,118],[-41,42],[-34,15]],[[6088,6957],[-11,73]],[[6077,7030],[61,60],[11,72],[-3,43],[16,15],[14,37]],[[6176,7257],[12,9],[32,-7],[10,-16],[13,11]],[[4597,8983],[-7,-38],[31,-40],[-36,-45],[-80,-41],[-24,-10],[-36,8],[-78,19],[28,26],[-61,29],[49,11],[-1,18],[-58,14],[19,38],[42,9],[43,-40],[42,32],[35,-16],[45,30],[47,-4]],[[5992,6990],[-5,-19]],[[5987,6971],[-10,9],[-6,-40],[7,-7],[-7,-8],[-1,-15],[13,8]],[[5983,6918],[0,-24],[-14,-94]],[[5951,6902],[8,19],[-2,3],[8,28],[5,45],[4,14],[1,1]],[[5975,7012],[9,0],[3,11],[7,1]],[[5994,7024],[1,-25],[-4,-9],[1,0]],[[5431,7316],[-10,-46],[4,-19],[-6,-30],[-21,22],[-14,6],[-39,30],[4,31],[32,-5],[28,6],[22,5]],[[5255,7492],[17,-41],[-4,-79],[-13,4],[-11,-20],[-10,16],[-2,71],[-6,33],[15,-2],[14,18]],[[5383,7806],[-3,-30],[7,-25]],[[5387,7751],[-22,8],[-23,-20],[1,-30],[-3,-16],[9,-31],[26,-30],[14,-48],[31,-48],[22,1],[7,-14],[-8,-11],[25,-21],[20,-19],[24,-31],[3,-10],[-5,-22],[-16,28],[-24,9],[-12,-38],[20,-21],[-3,-31],[-11,-4],[-15,-50],[-12,-5],[0,18],[6,32],[6,12],[-11,35],[-8,30],[-12,7],[-8,26],[-18,10],[-12,24],[-21,4],[-21,26],[-26,38],[-19,35],[-8,59],[-14,6],[-23,19],[-12,-8],[-16,-27],[-12,-5]],[[2845,6150],[19,-6],[14,-14],[5,-16],[-19,-1],[-9,-10],[-15,10],[-16,21],[3,14],[12,4],[6,-2]],[[5992,6990],[31,-24],[54,64]],[[6088,6957],[-5,-8],[-56,-30],[28,-59],[-9,-11],[-5,-19],[-21,-8],[-7,-22],[-12,-17],[-31,9]],[[5970,6792],[-1,8]],[[5983,6918],[4,17],[0,36]],[[8739,7075],[4,-20],[-16,-36],[-11,19],[-15,-14],[-7,-34],[-18,16],[0,28],[15,36],[16,-7],[12,24],[20,-12]],[[8915,7251],[-10,-47],[5,-29],[-15,-41],[-35,-28],[-49,-4],[-40,-68],[-19,24],[-1,44],[-48,-14],[-33,-27],[-32,-1],[28,-44],[-19,-101],[-18,-25],[-13,24],[7,53],[-18,17],[-11,41],[26,17],[15,38],[28,30],[20,41],[55,17],[30,-12],[29,106],[19,-29],[40,60],[16,22],[18,72],[-5,67],[11,38],[30,10],[15,-82],[-1,-47],[-25,-60],[0,-62]],[[8997,7667],[19,-12],[20,24],[6,-65],[-41,-17],[-25,-58],[-43,40],[-15,-65],[-31,-1],[-4,59],[14,46],[29,3],[8,82],[9,45],[32,-60],[22,-21]],[[6970,7554],[-15,-10],[-37,-42],[-12,-42],[-11,0],[-7,27],[-36,3],[-5,48],[-14,1],[2,58],[-33,43],[-48,-4],[-32,-8],[-27,52],[-22,23],[-43,42],[-6,5],[-71,-35],[1,-217]],[[6554,7498],[-14,-3],[-20,46],[-18,17],[-32,-12],[-12,-21]],[[6458,7525],[-2,16],[7,24],[-5,21],[-32,19],[-13,54],[-15,14],[-1,20],[27,-5],[1,43],[23,9],[25,-8],[5,57],[-5,36],[-28,-2],[-24,14],[-32,-26],[-26,-13]],[[6363,7798],[-14,11],[3,29],[-18,40],[-20,-2],[-24,40],[16,45],[-8,13],[22,64],[29,-34],[3,43],[58,64],[43,2],[61,-41],[33,-24],[30,25],[44,1],[35,-30],[8,17],[39,-2],[7,28],[-45,41],[27,28],[-5,16],[26,15],[-20,41],[13,20],[104,20],[13,16],[70,21],[25,25],[50,-14],[9,-60],[29,14],[35,-20],[-2,-32],[27,3],[69,55],[-10,-18],[35,-45],[62,-151],[15,32],[39,-35],[39,15],[16,-10],[13,-34],[20,-12],[11,-25],[36,8],[15,-36]],[[7229,7559],[-17,10],[-14,20],[-42,6],[-46,2],[-10,-6],[-39,25],[-16,-13],[-4,-34],[-46,20],[-18,-8],[-7,-27]],[[6155,4958],[-20,-23],[-7,-25],[-10,-5],[-4,-41]],[[6114,4864],[-9,-25],[-5,-39]],[[6100,4800],[-12,-19]],[[6088,4781],[-40,59],[-1,34],[-101,120],[-5,8]],[[5941,5002],[0,62],[8,24],[14,39],[10,43],[-13,68],[-3,29],[-13,41]],[[5944,5308],[17,36],[19,39]],[[6162,5289],[-24,-67],[0,-215],[17,-49]],[[7046,7387],[-53,-9],[-34,19],[-30,-4],[3,34],[30,-10],[10,18]],[[6972,7435],[21,-6],[36,43],[-33,31],[-20,-15],[-21,22],[24,39],[-9,5]],[[7849,5777],[-7,72],[18,49],[36,12],[26,-10]],[[7922,5900],[23,-22],[12,40],[25,-22]],[[7982,5896],[6,-39],[-3,-71],[-47,-45],[13,-36],[-30,-4],[-24,-24]],[[7897,5677],[-23,9],[-11,31],[-14,60]],[[8564,7339],[24,-70],[7,-38],[0,-69],[-10,-32],[-25,-11],[-22,-24],[-25,-6],[-3,32],[5,44],[-13,62],[21,10],[-19,50]],[[8504,7287],[2,6],[12,-3],[11,27],[20,3],[11,4],[4,15]],[[5557,7574],[5,13]],[[5562,7587],[7,4],[4,20],[5,3],[4,-9],[5,-4],[3,-9],[5,-2],[5,-11],[4,0],[-3,-15],[-3,-7],[1,-4]],[[5599,7553],[-6,-2],[-17,-9],[-1,-12],[-4,1]],[[6332,6829],[6,-27],[-3,-13],[9,-44]],[[6344,6745],[-19,-2],[-7,28],[-25,5]],[[7922,5900],[9,27],[1,50],[-22,52],[-2,58],[-21,48],[-21,4],[-6,-20],[-16,-2],[-8,10],[-30,-35],[0,54],[7,61],[-19,3],[-2,35],[-12,18]],[[7780,6263],[6,22],[24,39]],[[7837,6385],[17,-47],[12,-54],[34,0],[11,-51],[-18,-16],[-8,-21],[34,-36],[23,-70],[17,-51],[21,-41],[7,-42],[-5,-60]],[[5975,7012],[10,49],[14,41],[0,2]],[[5999,7104],[13,-3],[4,-23],[-15,-22],[-7,-32]],[[4785,5316],[-7,-2],[-29,29],[-25,45],[-24,32],[-18,38]],[[4682,5458],[6,20],[2,16],[12,33],[13,28]],[[5412,6408],[-20,-21],[-15,31],[-44,26]],[[5263,6848],[13,14],[3,24],[-3,25],[19,22],[8,20],[14,16],[2,47]],[[5319,7016],[32,-21],[12,5],[23,-10],[37,-27],[13,-52],[25,-11],[39,-25],[30,-30],[13,16],[13,27],[-6,45],[9,29],[20,28],[19,8],[37,-12],[10,-27],[10,0],[9,-10],[28,-7],[6,-20]],[[5694,6357],[0,-118],[-32,0],[0,-25]],[[5662,6214],[-111,113],[-111,113],[-28,-32]],[[7271,5502],[-4,-61],[-12,-18],[-24,-13],[-13,47],[-5,85],[13,96],[19,-33],[13,-41],[13,-62]],[[5804,3347],[10,-18],[-9,-28],[-4,-20],[-16,-9],[-5,-19],[-10,-6],[-21,45],[15,38],[15,23],[13,12],[12,-18]],[[5631,8267],[-2,16],[3,15],[-13,9],[-29,11]],[[5590,8318],[-6,50]],[[5584,8368],[32,18],[47,-4],[27,6],[4,-12],[15,-4],[26,-29]],[[5652,8243],[-7,18],[-14,6]],[[5584,8368],[1,44],[14,37],[26,20],[22,-44],[22,1],[6,45]],[[5757,8453],[14,-13],[2,-29],[9,-35]],[[4759,6691],[-4,0],[0,-31],[-17,-3],[-9,-13],[-13,0],[-10,8],[-23,-7],[-9,-45],[-9,-5],[-13,-74],[-38,-64],[-9,-82],[-12,-26],[-3,-21],[-63,-5]],[[4527,6323],[1,28],[11,15],[9,31],[-2,20],[10,42],[15,37],[9,10],[8,34],[0,32],[10,36],[19,22],[18,60]],[[4635,6690],[0,1],[14,23]],[[4649,6714],[26,6],[22,41],[14,15],[23,50],[-7,74],[10,50],[4,32],[18,40],[28,26],[21,25],[18,61],[9,36],[20,-1],[17,-24],[26,4],[29,-13],[12,0]],[[5739,7906],[6,9],[19,5],[20,-18],[12,-2],[12,-15],[-2,-21],[11,-9],[4,-25],[9,-15],[-2,-8],[5,-7],[-7,-5],[-16,2],[-3,9],[-6,-5],[2,-11],[-7,-18],[-5,-21],[-7,-6]],[[5784,7745],[-5,27],[3,25],[-1,26],[-16,35],[-9,24],[-9,19],[-8,5]],[[6376,4320],[7,-24],[7,-39],[4,-71],[7,-28],[-2,-29],[-5,-17],[-10,35],[-5,-18],[5,-44],[-2,-24],[-8,-15],[-1,-49],[-11,-69],[-14,-82],[-17,-112],[-11,-82],[-12,-68],[-23,-14],[-24,-25],[-16,15],[-22,22],[-8,30],[-2,53],[-10,47],[-2,42],[5,43],[13,10],[0,20],[13,45],[3,37],[-7,29],[-5,37],[-2,54],[9,33],[4,38],[14,2],[15,12],[11,10],[12,1],[16,34],[23,36],[8,30],[-4,26],[12,-8],[15,41],[1,35],[9,27],[10,-26]],[[2301,6586],[-10,-52],[-5,-43],[-2,-79],[-3,-28],[5,-33],[9,-29],[5,-45],[19,-44],[6,-34],[11,-29],[29,-16],[12,-25],[24,17],[21,6],[21,11],[18,9],[17,25]],[[2478,6197],[7,34],[2,50]],[[2487,6281],[5,17],[19,16],[29,13],[25,-2],[17,5],[6,-12],[-1,-29],[-15,-35],[-6,-36],[5,-10],[-4,-26],[-7,-46],[-7,16],[-6,-1]],[[2438,5917],[-32,63],[-14,19],[-23,15],[-15,-4],[-22,-21],[-14,-7],[-20,16],[-21,11],[-26,27],[-21,8],[-31,28],[-23,28],[-7,16],[-16,4],[-28,18],[-12,27],[-30,34],[-14,37],[-6,29],[9,6],[-3,16],[7,15],[0,21],[-10,27],[-2,23],[-9,30],[-25,58],[-28,47],[-13,37],[-24,23],[-5,16],[4,35],[-14,15],[-17,29],[-7,41],[-14,4],[-17,32],[-13,28],[-1,19],[-15,44],[-10,45],[1,23],[-20,23],[-10,-2],[-15,17],[-5,-25],[5,-28],[2,-45],[10,-24],[21,-41],[4,-14],[4,-4],[4,-21],[5,1],[6,-38],[8,-15],[6,-20],[17,-30],[10,-56],[8,-25],[8,-28],[1,-31],[13,-2],[12,-26],[10,-27],[-1,-10],[-12,-23],[-5,1],[-7,36],[-18,34],[-20,28],[-14,15],[1,43],[-5,32],[-13,18],[-19,27],[-4,-8],[-7,15],[-17,15],[-16,34],[2,5],[11,-4],[11,22],[1,27],[-22,42],[-16,16],[-10,37],[-11,39],[-12,47],[-12,54]],[[1746,6980],[32,4],[35,7],[-2,-12],[41,-29],[64,-41],[55,0],[22,0],[0,24],[48,0],[10,-20],[15,-20],[16,-25],[9,-31],[7,-33],[15,-17],[23,-18],[17,46],[23,1],[19,-23],[14,-40],[10,-35],[16,-34],[6,-41],[8,-28],[22,-18],[20,-13],[10,2]],[[5599,7553],[9,3],[13,1]],[[4661,5921],[10,11],[4,35],[9,1],[20,-16],[15,11],[11,-4],[4,13],[112,1],[6,41],[-5,8],[-13,255],[-14,255],[43,1]],[[5118,6189],[0,-136],[-15,-40],[-2,-36],[-25,-9],[-38,-5],[-10,-22],[-18,-2]],[[4680,5793],[1,18],[-2,23],[-11,16],[-5,34],[-2,37]],[[7737,5644],[-3,44],[9,45],[-10,35],[3,65],[-12,30],[-9,71],[-5,75],[-12,48],[-18,-29],[-32,-43],[-15,6],[-17,14],[9,73],[-6,55],[-21,69],[3,20],[-16,9],[-20,48]],[[7780,6263],[-16,-13],[-16,-25],[-19,-4],[-13,-63],[-12,-10],[14,-53],[17,-43],[12,-39],[-11,-51],[-9,-11],[6,-30],[19,-46],[3,-33],[0,-28],[11,-54],[-16,-55],[-13,-61]],[[5538,7532],[-6,4],[-8,19],[-12,12]],[[5533,7629],[8,-10],[4,-8],[9,-7],[10,-12],[-2,-5]],[[7437,7970],[29,10],[53,51],[42,28],[24,-19],[29,-1],[19,-27],[28,-2],[40,-15],[27,41],[-11,35],[28,62],[31,-25],[26,-7],[32,-15],[6,-45],[39,-24],[26,10],[36,8],[27,-8],[28,-28],[16,-30],[26,1],[35,-10],[26,15],[36,9],[41,42],[17,-6],[14,-21],[33,6]],[[5959,4377],[21,5],[34,-17],[7,8],[19,1],[10,18],[17,-1],[30,23],[22,34]],[[6119,4448],[5,-26],[-1,-60],[3,-51],[1,-92],[5,-30],[-8,-42],[-11,-41],[-18,-36],[-25,-23],[-31,-28],[-32,-64],[-10,-11],[-20,-41],[-11,-15],[-3,-42],[14,-44],[5,-35],[0,-17],[5,2],[-1,-58],[-4,-27],[7,-10],[-5,-25],[-11,-21],[-23,-20],[-34,-32],[-12,-21],[3,-25],[7,-4],[-3,-31]],[[5911,3478],[-21,0]],[[5890,3478],[-2,27],[-4,25]],[[5884,3530],[-3,22],[5,66],[-7,42],[-13,83]],[[5866,3743],[29,67],[7,42],[5,6],[3,34],[-5,18],[1,44],[6,41],[0,75],[-15,19],[-13,5],[-6,14],[-13,12],[-23,-1],[-2,22]],[[5840,4141],[-2,42],[84,49]],[[5922,4232],[16,-29],[8,7],[11,-16],[1,-23],[-6,-28],[2,-41],[19,-37],[8,41],[12,12],[-2,76],[-12,43],[-10,19],[-10,-1],[-7,77],[7,45]],[[4661,5921],[-18,41],[-17,43],[-18,15],[-13,18],[-16,0],[-13,-14],[-14,6],[-10,-19]],[[4542,6011],[-2,32],[8,29],[3,55],[-3,59],[-3,29],[2,29],[-7,29],[-14,25]],[[4526,6298],[6,20],[108,0],[-5,85],[7,30],[26,5],[-1,152],[91,-3],[0,89]],[[5922,4232],[-15,15],[9,55],[9,20],[-6,50],[6,48],[5,15],[-7,50],[-14,27]],[[5909,4512],[28,-11],[5,-17],[10,-27],[7,-80]],[[7836,5425],[7,-6],[16,-35],[12,-40],[2,-40],[-3,-26],[2,-21],[2,-35],[10,-16],[11,-53],[-1,-19],[-19,-4],[-27,44],[-32,46],[-4,31],[-16,39],[-4,49],[-10,32],[4,43],[-7,26]],[[7779,5440],[5,10],[23,-26],[2,-31],[18,8],[9,24]],[[8045,5176],[21,-21],[21,12],[6,50],[12,11],[33,13],[20,47],[14,37]],[[8206,5379],[22,41],[14,46],[11,0],[14,-29],[1,-26],[19,-17],[23,-17],[-2,-24],[-19,-3],[5,-28],[-20,-20]],[[5453,3369],[-20,44],[-11,43],[-6,59],[-7,42],[-9,91],[-1,71],[-3,32],[-11,25],[-15,49],[-14,71],[-6,37],[-23,57],[-2,45]],[[5644,4022],[23,14],[18,-4],[11,-13],[0,-5]],[[5552,3594],[0,-218],[-25,-30],[-15,-4],[-17,11],[-13,4],[-4,26],[-11,15],[-14,-29]],[[9604,3812],[23,-36],[14,-28],[-10,-14],[-16,16],[-19,27],[-18,31],[-19,41],[-4,21],[12,-1],[16,-21],[12,-19],[9,-17]],[[5412,6408],[7,-92],[10,-15],[1,-19],[11,-21],[-6,-24],[-11,-120],[-1,-77],[-35,-56],[-12,-78],[11,-22],[0,-38],[18,-1],[-3,-28]],[[5393,5795],[-5,-1],[-19,64],[-6,2],[-22,-33],[-21,18],[-15,3],[-8,-8],[-17,2],[-16,-26],[-14,-1],[-34,31],[-13,-14],[-14,1],[-10,21],[-28,23],[-30,-7],[-7,-13],[-4,-34],[-8,-24],[-2,-53]],[[5236,5339],[-29,-20],[-11,3],[-10,-14],[-23,1],[-15,37],[-9,43],[-19,39],[-21,-1],[-25,0]],[[2619,5713],[-10,18],[-13,24],[-6,20],[-12,19],[-13,26],[3,10],[4,-10],[2,4]],[[2690,5943],[-2,-6],[-2,-12],[3,-22],[-6,-20],[-3,-24],[-1,-26],[1,-15],[1,-26],[-4,-7],[-3,-25],[2,-16],[-6,-15],[2,-15],[4,-11]],[[5092,8091],[14,16],[24,87],[38,25],[23,-2]],[[5863,9167],[-47,-24],[-22,-6]],[[5573,9140],[-17,-3],[-4,-38],[-53,9],[-7,-32],[-27,0],[-18,-42],[-28,-66],[-43,-83],[10,-21],[-10,-22],[-27,1],[-18,-56],[2,-79],[17,-29],[-9,-70],[-23,-40],[-12,-34]],[[5306,8535],[-19,36],[-55,-69],[-37,-13],[-38,30],[-10,63],[-9,137],[26,38],[73,49],[55,61],[51,82],[66,114],[47,45],[76,74],[61,26],[46,-3],[42,49],[51,-3],[50,12],[87,-44],[-36,-15],[30,-37]],[[5686,9657],[-62,-24],[-49,13],[19,15],[-16,20],[57,11],[11,-21],[40,-14]],[[5506,9766],[92,-44],[-70,-24],[-15,-43],[-25,-11],[-13,-49],[-34,-2],[-59,36],[25,21],[-42,17],[-54,50],[-21,46],[75,22],[16,-21],[39,0],[11,21],[40,2],[35,-21]],[[5706,9808],[55,-21],[-41,-32],[-81,-6],[-82,9],[-5,16],[-40,1],[-30,27],[86,17],[40,-14],[28,18],[70,-15]],[[9805,2640],[6,-25],[20,25],[8,-26],[0,-24],[-10,-27],[-18,-44],[-14,-24],[10,-29],[-22,0],[-23,-22],[-8,-39],[-16,-60],[-21,-26],[-14,-17],[-26,1],[-18,20],[-30,4],[-5,21],[15,45],[35,58],[18,11],[20,22],[24,32],[17,29],[12,45],[10,15],[5,33],[19,27],[6,-25]],[[9849,2921],[20,-62],[1,40],[13,-16],[4,-44],[22,-20],[19,-4],[16,23],[14,-7],[-7,-53],[-8,-35],[-22,1],[-7,-17],[3,-26],[-4,-11],[-11,-32],[-14,-40],[-21,-23],[-5,15],[-12,8],[16,49],[-9,32],[-30,24],[1,21],[20,21],[5,46],[-1,38],[-12,40],[1,10],[-13,24],[-22,52],[-12,42],[11,5],[15,-32],[22,-16],[7,-53]],[[6475,6041],[-9,42],[-22,97]],[[6444,6180],[83,59],[19,118],[-13,42]],[[6566,6530],[12,-41],[16,-21],[20,-8],[17,-11],[12,-34],[8,-19],[10,-7],[0,-14],[-10,-35],[-5,-16],[-12,-19],[-10,-40],[-13,3],[-5,-15],[-5,-30],[4,-40],[-3,-7],[-13,1],[-17,-22],[-3,-29],[-6,-12],[-17,0],[-11,-15],[0,-23],[-14,-17],[-15,5],[-19,-19],[-12,-4]],[[6557,6597],[8,19],[3,-5],[-2,-23],[-4,-12]],[[6893,6457],[-20,15],[-9,43],[-21,45],[-51,-11],[-45,-1],[-39,-9]],[[2836,5484],[-9,17],[-6,32],[7,16],[-7,3],[-5,20],[-14,16],[-12,-3],[-6,-20],[-11,-16],[-6,-2],[-3,-12],[13,-32],[-7,-7],[-4,-9],[-13,-3],[-5,36],[-4,-11],[-9,3],[-5,24],[-12,4],[-7,7],[-12,0],[-1,-13],[-3,9]],[[2707,5622],[10,-20],[-1,-14],[11,-2],[3,5],[8,-15],[13,5],[12,15],[17,12],[9,17],[16,-3],[-1,-6],[15,-2],[13,-10],[9,-18],[10,-16]],[[3045,3974],[-28,33],[-2,25],[-55,59],[-50,64],[-22,37],[-11,48],[4,18],[-23,78],[-28,108],[-26,118],[-11,27],[-9,43],[-21,39],[-20,24],[9,26],[-14,57],[9,41],[22,37]],[[8510,5555],[2,-39],[2,-34],[-9,-54],[-11,60],[-13,-30],[9,-43],[-8,-28],[-32,34],[-8,43],[8,28],[-17,29],[-9,-25],[-13,2],[-21,-33],[-4,18],[11,49],[17,16],[15,23],[10,-27],[21,17],[5,25],[19,2],[-1,47],[22,-29],[3,-30],[2,-21]],[[8443,5664],[-10,-19],[-9,-37],[-8,-18],[-17,41],[5,16],[7,16],[3,37],[16,3],[-5,-39],[21,57],[-3,-57]],[[8291,5608],[-37,-57],[14,43],[20,35],[16,41],[15,59],[5,-48],[-18,-32],[-15,-41]],[[8385,5760],[16,-19],[18,0],[0,-24],[-13,-25],[-18,-17],[-1,26],[2,31],[-4,28]],[[8485,5776],[8,-66],[-21,16],[0,-21],[7,-36],[-13,-13],[-1,42],[-9,3],[-4,35],[16,-4],[0,23],[-17,45],[27,-2],[7,-22]],[[8375,5830],[-7,-52],[-12,30],[-15,45],[24,-2],[10,-21]],[[8369,6151],[17,-17],[9,16],[2,-16],[-4,-24],[9,-42],[-7,-50],[-16,-19],[-5,-48],[7,-47],[14,-7],[13,7],[34,-32],[-2,-32],[9,-15],[-3,-27],[-22,29],[-10,31],[-7,-21],[-18,35],[-25,-9],[-14,13],[1,24],[9,16],[-8,13],[-4,-22],[-14,35],[-4,26],[-1,56],[11,-19],[3,92],[9,54],[17,0]],[[9329,4655],[-8,-6],[-12,22],[-12,38],[-6,45],[4,5],[3,-17],[8,-13],[14,-38],[13,-20],[-4,-16]],[[9221,4734],[-15,-5],[-4,-17],[-15,-14],[-15,-13],[-14,0],[-23,16],[-16,17],[2,18],[25,-8],[15,4],[5,28],[4,1],[2,-30],[16,4],[8,20],[16,22],[-4,34],[17,2],[6,-10],[-1,-33],[-9,-36]],[[8916,4904],[48,-41],[51,-34],[19,-30],[16,-29],[4,-35],[46,-37],[7,-31],[-25,-7],[6,-39],[25,-39],[18,-63],[16,2],[-2,-25],[22,-11],[-8,-11],[29,-24],[-3,-18],[-18,-4],[-7,15],[-24,7],[-28,9],[-22,38],[-16,33],[-14,51],[-36,26],[-24,-17],[-17,-19],[4,-44],[-22,-21],[-16,10],[-28,2]],[[9253,4791],[-9,-15],[-5,35],[-6,22],[-13,20],[-16,25],[-20,18],[8,14],[15,-17],[9,-13],[12,-14],[11,-24],[11,-20],[3,-31]],[[5392,8233],[19,18]],[[5411,8251],[43,26],[35,21]],[[5489,8298],[28,-10],[2,-15],[27,-1]],[[5546,8272],[34,-6],[51,1]],[[5653,8105],[14,-52],[-3,-17],[-14,-7],[-25,-49],[7,-26],[-6,3]],[[5626,7957],[-26,23],[-20,-8],[-13,6],[-17,-12],[-14,20],[-11,-8],[-2,4]],[[3159,6152],[14,-5],[5,-13],[-7,-14],[-21,0],[-17,-2],[-1,25],[4,9],[23,0]],[[8628,7562],[4,-10]],[[8632,7552],[-11,3],[-12,-19],[-8,-21],[1,-42],[-14,-13],[-5,-11],[-11,-17],[-18,-10],[-12,-16],[-1,-25]],[[8541,7381],[-3,-7],[11,-10]],[[8549,7364],[15,-25]],[[8504,7287],[-13,12],[-4,-12],[-8,-4],[-1,11],[-7,6],[-8,9],[8,26],[7,7],[-3,10],[7,33],[-2,9],[-16,6],[-13,17]],[[4792,7249],[-11,-15],[-14,8],[-15,-7],[5,47],[-3,36],[-12,5],[-7,23],[2,39],[11,21],[2,24],[6,36],[-1,25],[-5,21],[-1,20]],[[6411,6520],[-2,43],[7,31],[8,6],[8,-18],[1,-35],[-6,-34]],[[6427,6513],[-8,-5],[-8,12]],[[5630,7887],[12,12],[17,-6],[18,-1],[13,-15],[10,10],[20,6],[7,13],[12,0]],[[5784,7745],[12,-11],[13,9],[13,-9]],[[5822,7734],[0,-16],[-13,-13],[-9,6],[-7,-72]],[[5629,7671],[-5,10],[6,10],[-7,8],[-8,-14],[-17,17],[-2,25],[-17,14],[-3,18],[-15,24]],[[8989,8056],[28,-105],[-41,20],[-17,-86],[27,-61],[-1,-41],[-21,36],[-18,-46],[-5,50],[3,57],[-3,64],[6,44],[2,79],[-17,59],[3,81],[25,26],[-11,28],[13,8],[7,-39],[10,-57],[-1,-58],[11,-59]],[[5546,8272],[6,27],[38,19]],[[9969,9239],[-5,19],[-9964,25]],[[0,9283],[4,2],[23,0],[40,-18],[-2,-7],[-29,-14],[-36,-4]],[[0,9242],[9999,0],[-30,-3]],[[8988,9382],[-42,0],[-57,7],[-5,3],[27,23],[34,5],[40,-22],[3,-16]],[[9186,9493],[-32,-23],[-44,5],[-52,23],[7,20],[51,-9],[70,-16]],[[9029,9522],[-22,-44],[-102,1],[-46,-13],[-55,37],[15,42],[37,11],[73,-3],[100,-31]],[[6598,9236],[-17,-5],[-91,7],[-7,26],[-50,16],[-4,32],[28,13],[-1,32],[55,50],[-25,7],[66,53],[-7,26],[62,31],[92,38],[92,11],[48,22],[54,8],[19,-24],[-19,-18],[-98,-29],[-85,-29],[-86,-56],[-42,-57],[-43,-57],[5,-49],[54,-48]],[[6363,7798],[-12,-35],[-27,-9],[-28,-61],[25,-56],[-2,-40],[30,-70]],[[6109,7624],[-35,49],[-32,23],[-24,35],[20,9],[23,49],[-15,24],[41,23],[-1,14],[-25,-10]],[[6061,7840],[1,26],[14,16],[27,6],[5,19],[-7,33],[12,31],[-1,17],[-41,19],[-16,0],[-17,27],[-21,-9],[-35,21],[0,11],[-10,26],[-22,3],[-2,18],[7,11],[-18,34],[-29,-5],[-8,2],[-7,-13],[-11,3]],[[5777,8571],[31,33],[-29,27]],[[5863,9167],[29,20],[46,-35],[76,-15],[105,-66],[21,-28],[2,-39],[-31,-32],[-45,-15],[-124,45],[-21,-8],[45,-44]],[[5966,8950],[2,-27],[2,-60]],[[5970,8863],[36,-18],[22,-16],[3,29]],[[6031,8858],[-17,26],[18,22]],[[6032,8906],[67,-37],[24,15],[-19,43],[65,57],[25,-3],[26,-20],[16,40],[-23,36],[14,35],[-21,36],[78,-18],[16,-34],[-35,-7],[0,-33],[22,-20],[43,13],[7,38],[58,28],[97,50],[20,-2],[-27,-36],[35,-6],[19,19],[52,2],[42,25],[31,-36],[32,39],[-29,35],[14,19],[82,-18],[39,-19],[100,-67],[19,32],[-28,30],[-1,13],[-34,6],[10,27],[-15,47],[-1,19],[51,54],[18,53],[21,11],[74,-15],[5,-33],[-26,-48],[17,-19],[9,-41],[-6,-81],[31,-36],[-12,-40],[-55,-84],[32,-8],[11,21],[31,15],[7,30],[24,27],[-16,34],[13,39],[-31,5],[-6,33],[22,60],[-36,48],[50,39],[-7,42],[14,2],[15,-33],[-11,-57],[29,-11],[-12,42],[46,24],[58,3],[51,-34],[-25,49],[-2,63],[48,12],[67,-3],[60,8],[-23,31],[33,39],[31,1],[54,30],[74,8],[9,16],[73,6],[23,-14],[62,32],[51,-1],[8,25],[26,26],[66,24],[48,-19],[-38,-15],[63,-9],[7,-30],[25,15],[82,0],[62,-29],[23,-23],[-7,-30],[-31,-18],[-73,-33],[-21,-17],[35,-8],[41,-16],[25,12],[14,-38],[12,15],[44,9],[90,-9],[6,-28],[116,-9],[2,45],[59,-10],[44,1],[45,-32],[13,-38],[-17,-24],[35,-47],[44,-23],[27,61],[44,-26],[48,16]],[[8765,9291],[53,-18],[21,16]],[[8839,9289],[45,-8],[-20,54],[37,26],[251,-38],[24,-35],[72,-45],[112,11],[56,-10],[23,-25],[-4,-43],[35,-16],[37,12],[49,1]],[[9556,9173],[52,-11],[53,6]],[[9661,9168],[49,-52],[34,18],[-23,38],[13,27],[88,-17],[58,3],[80,-27],[-9960,-26]],[[0,9132],[68,-45],[73,-60],[-3,-35],[19,-16],[-6,43],[75,-8],[55,-55],[-28,-26],[-46,-6],[0,-59],[-11,-12],[-26,2],[-22,21],[-36,17],[-7,26],[-28,9],[-31,-7],[-16,20],[6,22],[-33,-14],[13,-27],[-16,-26]],[[0,8896],[9963,-26],[-36,5],[25,-32],[17,-48],[13,-17],[3,-25],[-7,-15],[-52,13],[-78,-45],[-25,-6],[-42,-42],[-40,-36],[-11,-27],[-39,41],[-73,-47],[-12,23],[-27,-26],[-37,8],[-9,-39],[-33,-57],[1,-24],[31,-13],[-4,-86],[-25,-2],[-12,-49],[11,-26],[-48,-30],[-10,-68],[-41,-14],[-9,-60],[-40,-55],[-10,41],[-12,86],[-15,131],[13,82],[23,36],[2,27],[43,13],[50,75],[48,60],[49,47],[23,83],[-34,-5],[-17,-48],[-70,-65],[-23,73],[-72,-20],[-69,-99],[23,-37],[-62,-15],[-43,-6],[2,43],[-43,9],[-35,-30],[-85,11],[-91,-18],[-90,-115],[-106,-139],[43,-7],[14,-37],[27,-14],[18,30],[30,-4],[40,-65],[1,-50],[-21,-59],[-3,-71],[-12,-95],[-42,-85],[-9,-41],[-38,-69],[-38,-68],[-17,-35],[-38,-34],[-17,-1],[-17,29],[-38,-43],[-4,-20]],[[7918,9684],[-157,-24],[51,78],[23,7],[21,-4],[70,-33],[-8,-24]],[[6420,9816],[-37,-8],[-25,-4],[-4,-10],[-33,-9],[-30,13],[16,18],[-62,2],[54,12],[43,0],[5,-16],[16,15],[26,9],[42,-13],[-11,-9]],[[7775,9718],[-60,-8],[-78,17],[-46,23],[-21,42],[-38,12],[72,40],[60,13],[54,-29],[64,-58],[-7,-52]],[[5844,4990],[11,-33],[-1,-34],[-8,-9]],[[5821,4978],[7,-6],[16,18]],[[4526,6298],[1,25]],[[6188,6023],[-4,25],[-8,19],[-2,23],[-15,21],[-15,50],[-7,48],[-20,40],[-12,10],[-18,57],[-4,41],[2,35],[-16,65],[-13,23],[-15,12],[-10,34],[2,13],[-8,31],[-8,14],[-11,43],[-17,48],[-14,40],[-14,0],[5,33],[1,20],[3,24]],[[6344,6745],[11,-52],[14,-13],[5,-20],[18,-26],[2,-24],[-3,-20],[4,-20],[8,-16],[4,-20],[4,-14]],[[6427,6513],[5,-23]],[[6444,6180],[-80,-23],[-26,-26],[-20,-62],[-13,-10],[-7,20],[-11,-3],[-27,6],[-5,5],[-32,-1],[-7,-5],[-12,15],[-7,-29],[3,-25],[-12,-19]],[[5943,5616],[-4,2],[0,29],[-3,20],[-14,24],[-4,42],[4,44],[-13,4],[-2,-13],[-17,-3],[7,-18],[2,-34],[-15,-33],[-14,-43],[-14,-7],[-23,35],[-11,-12],[-3,-17],[-14,-11],[-1,-12],[-28,0],[-3,12],[-20,1],[-10,-9],[-8,5],[-14,34],[-5,17],[-20,-9],[-8,-27],[-7,-53],[-10,-11],[-8,-6]],[[5663,5567],[-2,3]],[[5635,5716],[0,14],[-10,17],[-1,34],[-5,24],[-10,-4],[3,21],[7,25],[-3,25],[9,18],[-6,13],[7,37],[13,43],[24,-4],[-1,235]],[[6023,6357],[9,-58],[-6,-11],[4,-60],[11,-71],[10,-15],[15,-21]],[[5943,5623],[0,-7]],[[5943,5616],[0,-45]],[[5944,5308],[-17,-26],[-20,0],[-22,-15],[-18,14],[-11,-16]],[[5682,5543],[-19,24]],[[4535,5860],[-11,46],[-14,22],[12,11],[14,41],[6,31]],[[4536,5789],[-4,46]],[[9502,4438],[8,-20],[-19,0],[-11,37],[17,-15],[5,-2]],[[9467,4474],[-11,-1],[-17,6],[-5,9],[1,23],[19,-9],[9,-12],[4,-16]],[[9490,4491],[-4,-12],[-21,52],[-5,35],[9,0],[10,-48],[11,-27]],[[9440,4564],[1,-11],[-22,25],[-15,21],[-10,20],[4,6],[13,-14],[23,-27],[6,-20]],[[9375,4623],[-5,-3],[-13,13],[-11,25],[1,9],[17,-25],[11,-19]],[[4682,5458],[-8,4],[-20,25],[-14,32],[-5,21],[-3,43]],[[2561,5848],[-3,-13],[-16,0],[-10,6],[-12,11],[-15,4],[-8,12]],[[6198,5734],[9,-10],[5,-25],[13,-24],[14,0]],[[6239,5675],[26,14],[30,7]],[[6295,5696],[25,19],[13,4],[10,11],[16,2]],[[6359,5732],[0,-1],[0,-25],[0,-59],[0,-31],[-13,-37],[-19,-49]],[[6359,5732],[9,1],[13,8],[14,6],[14,21],[10,0],[1,-16],[-3,-35],[0,-31],[-6,-22],[-7,-63],[-14,-66],[-17,-76],[-24,-86],[-23,-67],[-33,-80],[-28,-48]],[[6265,5178],[-42,-58],[-25,-46]],[[6198,5074],[-31,-70],[-6,-32],[-6,-14]],[[3412,5410],[34,-11],[2,10],[23,4],[30,-15]],[[5626,7957],[-8,-15],[-5,-24]],[[5380,7746],[7,5]],[[5663,8957],[-47,-17],[-27,-41],[4,-36],[-44,-48],[-54,-50],[-20,-83],[20,-42],[26,-33],[-25,-67],[-29,-13],[-11,-100],[-15,-55],[-34,6],[-16,-47],[-32,-3],[-9,56],[-23,67],[-21,84]],[[5890,3478],[-5,-27],[-17,-6],[-16,32],[0,21],[7,22],[3,18],[8,4],[14,-12]],[[5999,7104],[-2,45],[7,25]],[[6004,7174],[7,13],[7,12],[2,34],[9,-12],[31,16],[14,-10],[23,0],[32,21],[15,-1],[32,10]],[[5051,5420],[-22,-12]],[[7849,5777],[-25,28],[-24,-1],[4,46],[-24,-1],[-2,-65],[-15,-86]],[[7763,5698],[-9,-52],[1,-43]],[[7755,5603],[19,-1],[11,-55],[5,-51],[15,-34],[17,-6],[14,-31]],[[7779,5440],[-11,22],[-4,29],[-15,34],[-14,27],[-4,-34],[-5,32],[3,37],[8,57]],[[6883,7251],[16,61],[-6,44],[-20,13],[7,27],[23,-3],[13,33],[9,38],[37,13],[-6,-28],[4,-16],[12,2]],[[6497,7255],[-5,42],[4,61],[-22,21],[8,40],[-19,4],[6,49],[26,-14],[25,19],[-20,35],[-8,34],[-23,-15],[-3,-44],[-8,38]],[[6554,7498],[31,1],[-4,29],[24,21],[23,34],[37,-31],[3,-47],[11,-12],[30,3],[9,-12],[14,-60],[32,-41],[18,-28],[29,-29],[37,-25],[-1,-36]],[[8471,4532],[3,14],[24,13],[19,2],[9,8],[10,-8],[-10,-16],[-29,-26],[-23,-16]],[[3286,5693],[16,8],[6,-2],[-1,-44],[-23,-7],[-5,5],[8,16],[-1,24]],[[5233,7240],[31,24],[19,-7],[-1,-30],[24,21],[2,-11],[-14,-29],[0,-27],[9,-15],[-3,-51],[-19,-30],[6,-32],[14,-1],[7,-27],[11,-9]],[[6004,7174],[-11,26],[11,23],[-17,-5],[-23,13],[-19,-34],[-43,-6],[-22,32],[-30,1],[-6,-24],[-20,-7],[-26,31],[-31,-1],[-16,59],[-21,33],[14,45],[-18,29],[31,56],[43,2],[12,46],[53,-9],[33,39],[32,17],[46,1],[49,-41],[40,-24],[32,9],[24,-5],[33,31]],[[5777,7539],[3,-23],[25,-18],[-5,-15],[-33,-4],[-12,-17],[-23,-32],[-9,27],[0,12]],[[8382,6498],[-17,-94],[-12,-48],[-14,49],[-4,44],[17,58],[22,45],[13,-18],[-5,-36]],[[6088,4781],[-12,-73],[1,-33],[18,-21],[1,-16],[-8,-36],[2,-18],[-2,-28],[10,-37],[11,-58],[10,-13]],[[5909,4512],[-15,18],[-18,10],[-11,10],[-12,14]],[[5844,4990],[10,7],[31,-1],[56,6]],[[6061,7840],[-22,-5],[-18,-18],[-26,-4],[-24,-22],[1,-37],[14,-14],[28,4],[-5,-22],[-31,-10],[-37,-34],[-16,13],[6,27],[-30,18],[5,11],[26,20],[-8,13],[-43,14],[-2,23],[-25,-7],[-11,-33],[-21,-43]],[[3517,3062],[-12,-36],[-31,-33],[-21,11],[-15,-6],[-26,26],[-18,-3],[-17,33]],[[679,6184],[-4,-9],[-7,8],[1,17],[-4,21],[1,7],[5,10],[-2,11],[1,6],[3,-2],[10,-9],[5,-5],[5,-8],[7,-21],[-1,-3],[-11,-13],[-9,-10]],[[664,6277],[-9,-4],[-5,12],[-3,5],[0,3],[3,5],[9,-5],[8,-9],[-3,-7]],[[646,6309],[-1,-7],[-15,1],[2,8],[14,-2]],[[621,6317],[-2,-3],[-2,1],[-9,2],[-4,13],[-1,2],[7,8],[3,-4],[8,-19]],[[574,6356],[-4,-5],[-9,10],[1,4],[5,6],[6,-1],[1,-14]],[[3135,7724],[5,-19],[-30,-29],[-29,-20],[-29,-18]],[[3052,7638],[-15,-35],[-4,-13]],[[3033,7590],[-1,-32],[10,-31],[11,-2],[-3,22],[8,-12],[-2,-18],[-19,-9],[-13,1],[-20,-10],[-12,-3],[-17,-3],[-23,-18],[41,11],[8,-11],[-39,-17],[-17,0],[0,7],[-8,-17],[8,-3],[-6,-42],[-20,-45],[-2,16],[-6,3],[-9,14],[5,-32],[7,-10],[1,-23],[-9,-22],[-16,-47],[-2,2],[8,40],[-14,22],[-3,49],[-5,-25],[5,-38]],[[2879,7307],[-18,9],[19,-18]],[[2880,7298],[1,-57],[8,-4],[3,-20],[4,-59],[-17,-44],[-29,-17],[-18,-35],[-14,-4],[-14,-22],[-4,-19],[-31,-39],[-16,-28],[-13,-35],[-4,-42],[5,-41],[9,-50],[13,-42],[0,-26],[13,-69],[-1,-40],[-1,-22],[-7,-36],[-8,-8],[-14,8],[-4,25],[-11,14],[-15,51],[-13,45],[-4,23],[6,39],[-8,32],[-22,50],[-10,9],[-28,-27],[-5,3],[-14,28],[-17,14],[-32,-7],[-24,6],[-21,-4]],[[2523,6848],[-12,-9],[5,-15]],[[2516,6824],[0,-24],[5,-12],[-5,-7],[-10,8],[-11,-12],[-20,3],[-20,30],[-25,-7],[-20,15],[-17,-6],[-24,-13],[-25,-44]],[[2344,6755],[-27,-26],[-16,-27]],[[2301,6702],[-6,-27],[0,-41],[1,-28],[5,-20]],[[1746,6980],[-4,29],[-18,34],[-13,7],[-3,18],[-16,3],[-10,15],[-26,6],[-7,10],[-3,33],[-27,59],[-23,82],[1,13],[-13,20],[-21,49],[-4,48],[-15,33],[6,49],[-1,51],[-8,45],[10,55]],[[1551,7639],[4,55],[3,53]],[[1558,7747],[-5,79],[-9,50],[-8,28],[4,11],[40,-19],[15,-57],[7,17],[-5,48],[-9,48]],[[750,8431],[-28,-22],[-14,15],[-4,28],[25,21],[15,9],[18,-3],[12,-19],[-24,-29]],[[401,8597],[-17,-10],[-19,12],[-17,16],[28,10],[22,-6],[3,-22]],[[230,8825],[17,-11],[17,6],[23,-15],[27,-8],[-2,-7],[-21,-12],[-21,12],[-11,12],[-24,-4],[-7,6],[2,21]],[[1374,8295],[-15,22],[-25,19],[-8,51],[-36,48],[-15,56],[-26,4],[-44,2],[-33,16],[-57,62],[-27,11]],[[1088,8586],[-49,21],[-38,-5]],[[1001,8602],[-55,27],[-33,25],[-30,-12],[5,-41],[-15,-3]],[[873,8598],[-32,-14],[-25,-19]],[[816,8565],[-30,-13],[-4,35],[12,58],[30,18],[-8,15],[-35,-33],[-19,-39],[-40,-42],[20,-29],[-26,-42],[-30,-25],[-28,-18],[-7,-26],[-43,-31],[-9,-27],[-32,-26],[-20,5],[-25,-16],[-29,-21],[-23,-19],[-47,-18],[-5,11],[31,27],[27,19],[29,32],[35,7],[14,23],[38,36],[6,11],[21,22],[5,44],[14,35],[-32,-17],[-9,10],[-15,-22],[-18,30],[-8,-21],[-10,29],[-28,-23],[-17,0],[-3,35],[5,21],[-17,22],[-37,-12],[-23,28],[-19,14],[0,33],[-22,26],[11,34],[23,33],[10,30],[22,4],[19,-9],[23,28],[20,-5],[21,18],[-5,28],[-16,10],[21,23],[-17,0],[-30,-14],[-8,-13],[-22,13],[-39,-6],[-41,14],[-12,23],[-35,35],[39,25],[62,28],[23,0],[-4,-29],[59,3],[-23,36],[-34,22],[-20,30],[-26,26],[-38,18],[15,31],[49,2],[35,27],[7,28],[28,28],[28,7],[52,27],[26,-4],[42,31],[42,-13],[21,-26],[12,12],[47,-4],[-2,-13],[43,-11],[28,6],[59,-18],[53,-6],[21,-7],[37,9],[42,-18],[31,-8]],[[3018,5754],[-1,-15],[-16,-7],[9,-27],[0,-30],[-12,-34],[10,-47],[12,4],[6,42],[-8,21],[-2,44],[35,25],[-4,28],[10,18],[10,-42],[19,-1],[18,-33],[1,-19],[25,0],[30,6],[16,-27],[21,-7],[16,19],[0,14],[34,4],[34,1],[-24,-17],[10,-29],[22,-4],[21,-29],[4,-47],[15,1],[11,-15]],[[8001,6331],[-37,-51],[-24,-55],[-6,-42],[22,-62],[25,-77],[26,-37],[17,-47],[12,-109],[-3,-105],[-24,-39],[-31,-38],[-23,-49],[-35,-54],[-10,38],[8,40],[-21,33]],[[9661,4084],[-9,-7],[-9,26],[1,15],[17,-34]],[[9641,4176],[4,-49],[-7,8],[-6,-3],[-4,16],[0,45],[13,-17]],[[6475,6041],[-20,-16],[-6,-26],[-1,-20],[-27,-25],[-45,-28],[-24,-41],[-13,-3],[-8,3],[-16,-25],[-18,-11],[-23,-3],[-7,-3],[-6,-16],[-8,-5],[-4,-14],[-14,1],[-9,-8],[-19,3],[-7,35],[1,32],[-5,17],[-5,44],[-8,24],[5,3],[-2,27],[3,12],[-1,25]],[[5817,3752],[11,0],[14,-10],[9,7],[15,-6]],[[5911,3478],[-7,-43],[-3,-49],[-7,-27],[-19,-30],[-5,-9],[-12,-30],[-8,-29],[-16,-44],[-31,-60],[-20,-36],[-21,-27],[-29,-22],[-14,-3],[-3,-17],[-17,8],[-14,-11],[-30,11],[-17,-7],[-11,3],[-29,-22],[-24,-9],[-17,-23],[-13,-2],[-11,21],[-10,1],[-12,27],[-1,-8],[-4,15],[0,35],[-9,40],[9,10],[0,46],[-19,55],[-14,50],[-20,77]],[[5840,4141],[-21,-7],[-15,-24],[-4,-21],[-10,-5],[-24,-48],[-15,-38],[-10,-2],[-9,7],[-31,6]],[[79,70],[8,5],[10,6],[8,5],[4,3]],[[109,89],[4,0],[3,-1]],[[3107,1772],[-30,7]],[[0,4108],[0,-29]],[[4942,8361],[27,-76]],[[4905,8096],[-44,9]],[[0,8896],[0,236]],[[0,9242],[9969,-3]],[[0,9283],[0,-41]],[[3052,7638],[-16,-39],[-3,-9]],[[2879,7307],[-17,9],[18,-18]],[[2523,6848],[-12,-8],[5,-16]],[[2344,6755],[-27,-25],[-16,-28]],[[2478,6197],[7,35],[2,49]],[[1551,7639],[7,108]],[[1088,8586],[-48,21],[-39,-5]],[[873,8598],[-32,-13],[-25,-20]],[[1208,9128],[25,25],[33,18]],[[1972,9121],[-82,-10],[-38,-5]],[[1502,9303],[9,20],[22,48]],[[1654,9300],[0,-24],[-73,-30]],[[8541,7381],[-3,-6],[11,-11]],[[8398,7270],[5,-31],[-40,-16]],[[7763,5698],[-10,-52],[2,-43]],[[6239,5675],[26,15],[30,6]],[[6265,5178],[-41,-58],[-26,-46]],[[6114,4864],[-9,-24],[-5,-40]],[[4635,6690],[14,24]],[[5411,8251],[43,27],[35,20]],[[5966,8950],[4,-87]],[[6031,8858],[-17,27],[18,21]],[[8765,9291],[54,-18],[20,16]],[[9556,9173],[53,-11],[52,6]]],"transform":{"scale":[0.036003600360036005,0.016926839568445297],"translate":[-180,-85.60633884488449]}}
(function() {
d3.hexbin = function() {
var width = 1,
height = 1,
r,
x = d3_hexbinX,
y = d3_hexbinY,
dx,
dy;
function hexbin(points) {
var binsById = {};
points.forEach(function(point, i) {
var py = y.call(hexbin, point, i) / dy, pj = Math.round(py),
px = x.call(hexbin, point, i) / dx - (pj & 1 ? .5 : 0), pi = Math.round(px),
py1 = py - pj;
if (Math.abs(py1) * 3 > 1) {
var px1 = px - pi,
pi2 = pi + (px < pi ? -1 : 1) / 2,
pj2 = pj + (py < pj ? -1 : 1),
px2 = px - pi2,
py2 = py - pj2;
if (px1 * px1 + py1 * py1 > px2 * px2 + py2 * py2) pi = pi2 + (pj & 1 ? 1 : -1) / 2, pj = pj2;
}
var id = pi + "-" + pj, bin = binsById[id];
if (bin) bin.push(point); else {
bin = binsById[id] = [point];
bin.i = pi;
bin.j = pj;
bin.x = (pi + (pj & 1 ? 1 / 2 : 0)) * dx;
bin.y = pj * dy;
}
});
return d3.values(binsById);
}
function hexagon(radius) {
var x0 = 0, y0 = 0;
return d3_hexbinAngles.map(function(angle) {
var x1 = Math.sin(angle) * radius,
y1 = -Math.cos(angle) * radius,
dx = x1 - x0,
dy = y1 - y0;
x0 = x1, y0 = y1;
return [dx, dy];
});
}
hexbin.x = function(_) {
if (!arguments.length) return x;
x = _;
return hexbin;
};
hexbin.y = function(_) {
if (!arguments.length) return y;
y = _;
return hexbin;
};
hexbin.hexagon = function(radius) {
if (arguments.length < 1) radius = r;
return "m" + hexagon(radius).join("l") + "z";
};
hexbin.centers = function() {
var centers = [];
for (var y = 0, odd = false, j = 0; y < height + r; y += dy, odd = !odd, ++j) {
for (var x = odd ? dx / 2 : 0, i = 0; x < width + dx / 2; x += dx, ++i) {
var center = [x, y];
center.i = i;
center.j = j;
centers.push(center);
}
}
return centers;
};
hexbin.mesh = function() {
var fragment = hexagon(r).slice(0, 4).join("l");
return hexbin.centers().map(function(p) { return "M" + p + "m" + fragment; }).join("");
};
hexbin.size = function(_) {
if (!arguments.length) return [width, height];
width = +_[0], height = +_[1];
return hexbin;
};
hexbin.radius = function(_) {
if (!arguments.length) return r;
r = +_;
dx = r * 2 * Math.sin(Math.PI / 3);
dy = r * 1.5;
return hexbin;
};
return hexbin.radius(1);
};
var d3_hexbinAngles = d3.range(0, 2 * Math.PI, Math.PI / 3),
d3_hexbinX = function(d) { return d[0]; },
d3_hexbinY = function(d) { return d[1]; };
})();
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
min-height: 960px;
}
#fps {
position: absolute;
margin: 20px
}
.noclicks {
pointer-events:none;
}
svg {
top: 0;
position: absolute;
cursor: move;
}
.spike {
fill: none;
stroke: #000;
stroke-width: 1px;
}
.sphere {
fill: #f3efe7;
fill-opacity: 1;
stroke: none;
stroke-width: 1px;
}
.graticule {
fill: none;
stroke: #000F24;
stroke-width: 0.2px;
stroke-dasharray: 2,2;
}
path.country {
fill: none;
stroke: #5e5e5e;
stroke-width: .3px;
fill-opacity: 0.8;
}
path.land {
fill: #dad3c7;
stroke-width: .2px;
stroke: #798d94;
}
path#CHN {
fill: #de8b57;
}
path#USA {
fill: #6b6483;
}
path#FRA {
fill: #ac769d;
}
path#PAK {
fill: #6c8969;
}
path#RUS {
fill: #c15e50;
}
path#IND {
fill: #fdc576;
}
path#GBR {
fill: #cad15f;
}
path#PRK {
fill: #31061e;
}
/* The countries who conducted tests*/
.label-countries {
font-family: FranklinITCProLight,FranklinITCStdLight,Helvetica,Arial,sans-serif;
fill: #000F24;
font-style: normal;
text-anchor: middle;
}
/* Blurbs about areas affected*/
.blurb {
pointer-events: none;
fill: #000F24;
text-anchor: middle;
font-style: italic;
font-family: FranklinITCProLight,FranklinITCStdLight,Helvetica,Arial,sans-serif;
}
/* Dots to represent tests */
.event {
pointer-events: none;
fill: none;
stroke: #000000;
stroke-width: 2px;
stroke-dasharray: 5, 5;
}
/* Dots to represent tests */
.hexagon {
stroke: #222222;
stroke-width: 1px;
}
/* Specific dot styling */
#China {
fill: #de8b57;
}
#US {
fill: #6b6483;
}
#France {
fill: #ac769d;
}
#Pakistan {
fill: #6c8969;
}
#USSR {
fill: #c15e50;
}
#India {
fill: #fdc576;
}
#UK {
fill: #7bd52c;
}
#PRK {
fill: #31061e;
}
</style>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.indigo-pink.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.0/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<body>
<div id="fps">FPS: <span>?</span></div>
<div id="map">
<svg width=960 height=960 id="nuclear-testing">
<defs><radialGradient id="globe_highlight" cx="75%" cy="25%"><stop offset="5%" stop-color="#fff" stop-opacity="0.6"></stop><stop offset="100%" stop-color="#b5b5b5" stop-opacity="0.2"></stop></radialGradient></defs>
<radialGradient id="globe_shading" cx="55%" cy="45%"><stop offset="30%" stop-color="#fff" stop-opacity="0"></stop><stop offset="100%" stop-color="#505962" stop-opacity="0.3"></stop></radialGradient>
</svg>
</div>
</body>
<script src="https://d3js.org/queue.v1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://d3js.org/d3.geo.projection.v0.min.js" charset="utf-8"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="hexbin.js"></script>
<script src="app.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment