PalletControl/static/plugins/datamaps/datamaps.flk.min.js

2 lines
35 KiB
JavaScript

!function(){function a(a,b,c){"undefined"==typeof c&&(c=b,optionsValues=void 0);var d="undefined"!=typeof a?a:b;if("undefined"==typeof d)return null;if("function"==typeof d){var e=[c];return c.geography&&(e=[c.geography,c.data]),d.apply(null,e)}return d}function b(a,b,c){return this.svg=n.select(a).append("svg").attr("width",c||a.offsetWidth).attr("data-width",c||a.offsetWidth).attr("class","datamap").attr("height",b||a.offsetHeight).style("overflow","hidden"),this.options.responsive&&(n.select(this.options.element).style({position:"relative","padding-bottom":100*this.options.aspectRatio+"%"}),n.select(this.options.element).select("svg").style({position:"absolute",width:"100%",height:"100%"}),n.select(this.options.element).select("svg").select("g").selectAll("path").style("vector-effect","non-scaling-stroke")),this.svg}function c(a,b){var c,d,e=b.width||a.offsetWidth,f=b.height||a.offsetHeight,g=this.svg;return b&&"undefined"==typeof b.scope&&(b.scope="world"),"usa"===b.scope?c=n.geo.albersUsa().scale(e).translate([e/2,f/2]):"world"===b.scope&&(c=n.geo[b.projection]().scale((e+1)/2/Math.PI).translate([e/2,f/("mercator"===b.projection?1.45:1.8)])),"orthographic"===b.projection&&(g.append("defs").append("path").datum({type:"Sphere"}).attr("id","sphere").attr("d",d),g.append("use").attr("class","stroke").attr("xlink:href","#sphere"),g.append("use").attr("class","fill").attr("xlink:href","#sphere"),c.scale(250).clipAngle(90).rotate(b.projectionConfig.rotation)),d=n.geo.path().projection(c),{path:d,projection:c}}function d(){n.select(".datamaps-style-block").empty()&&n.select("head").append("style").attr("class","datamaps-style-block").html('.datamap path.datamaps-graticule { fill: none; stroke: #777; stroke-width: 0.5px; stroke-opacity: .5; pointer-events: none; } .datamap .labels {pointer-events: none;} .datamap path {stroke: #FFFFFF; stroke-width: 1px;} .datamaps-legend dt, .datamaps-legend dd { float: left; margin: 0 3px 0 0;} .datamaps-legend dd {width: 20px; margin-right: 6px; border-radius: 3px;} .datamaps-legend {padding-bottom: 20px; z-index: 1001; position: absolute; left: 4px; font-size: 12px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;} .datamaps-hoverover {display: none; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .hoverinfo {padding: 4px; border-radius: 1px; background-color: #FFF; box-shadow: 1px 1px 5px #CCC; font-size: 12px; border: 1px solid #CCC; } .hoverinfo hr {border:1px dotted #CCC; }')}function e(b){var c=this.options.fills,d=this.options.data||{},e=this.options.geographyConfig,f=this.svg.select("g.datamaps-subunits");f.empty()&&(f=this.addLayer("datamaps-subunits",null,!0));var g=o.feature(b,b.objects[this.options.scope]).features;e.hideAntarctica&&(g=g.filter(function(a){return"ATA"!==a.id})),e.hideHawaiiAndAlaska&&(g=g.filter(function(a){return"HI"!==a.id&&"AK"!==a.id}));var h=f.selectAll("path.datamaps-subunit").data(g);h.enter().append("path").attr("d",this.path).attr("class",function(a){return"datamaps-subunit "+a.id}).attr("data-info",function(a){return JSON.stringify(d[a.id])}).style("fill",function(b){var e,f=d[b.id];return f&&f.fillKey&&(e=c[a(f.fillKey,{data:d[b.id],geography:b})]),"undefined"==typeof e&&(e=a(f&&f.fillColor,c.defaultFill,{data:d[b.id],geography:b})),e}).style("stroke-width",e.borderWidth).style("stroke",e.borderColor)}function f(){function b(){this.parentNode.appendChild(this)}var c=this.svg,d=this,e=this.options.geographyConfig;(e.highlightOnHover||e.popupOnHover)&&c.selectAll(".datamaps-subunit").on("mouseover",function(f){var g=n.select(this),h=d.options.data[f.id]||{};if(e.highlightOnHover){var i={fill:g.style("fill"),stroke:g.style("stroke"),"stroke-width":g.style("stroke-width"),"fill-opacity":g.style("fill-opacity")};g.style("fill",a(h.highlightFillColor,e.highlightFillColor,h)).style("stroke",a(h.highlightBorderColor,e.highlightBorderColor,h)).style("stroke-width",a(h.highlightBorderWidth,e.highlightBorderWidth,h)).style("fill-opacity",a(h.highlightFillOpacity,e.highlightFillOpacity,h)).attr("data-previousAttributes",JSON.stringify(i)),/((MSIE)|(Trident))/.test(navigator.userAgent)||b.call(this)}e.popupOnHover&&d.updatePopup(g,f,e,c)}).on("mouseout",function(){var a=n.select(this);if(e.highlightOnHover){var b=JSON.parse(a.attr("data-previousAttributes"));for(var c in b)a.style(c,b[c])}a.on("mousemove",null),n.selectAll(".datamaps-hoverover").style("display","none")})}function g(a,b,c){if(b=b||{},this.options.fills){var d="<dl>",e="";b.legendTitle&&(d="<h2>"+b.legendTitle+"</h2>"+d);for(var f in this.options.fills){if("defaultFill"===f){if(!b.defaultFillName)continue;e=b.defaultFillName}else e=b.labels&&b.labels[f]?b.labels[f]:f+": ";d+="<dt>"+e+"</dt>",d+='<dd style="background-color:'+this.options.fills[f]+'">&nbsp;</dd>'}d+="</dl>";n.select(this.options.element).append("div").attr("class","datamaps-legend").html(d)}}function h(a,b){var c=n.geo.graticule();this.svg.insert("path",".datamaps-subunits").datum(c).attr("class","datamaps-graticule").attr("d",this.path)}function i(b,c,d){var e=this;this.svg;if(!c||c&&!c.slice)throw"Datamaps Error - arcs must be an array";for(var f=0;f<c.length;f++)c[f]=l(c[f],c[f].options),delete c[f].options;"undefined"==typeof d&&(d=p.arcConfig);var g=b.selectAll("path.datamaps-arc").data(c,JSON.stringify),h=n.geo.path().projection(e.projection);g.enter().append("svg:path").attr("class","datamaps-arc").style("stroke-linecap","round").style("stroke",function(b){return a(b.strokeColor,d.strokeColor,b)}).style("fill","none").style("stroke-width",function(b){return a(b.strokeWidth,d.strokeWidth,b)}).attr("d",function(b){var c=e.latLngToXY(a(b.origin.latitude,b),a(b.origin.longitude,b)),f=e.latLngToXY(a(b.destination.latitude,b),a(b.destination.longitude,b)),g=[(c[0]+f[0])/2,(c[1]+f[1])/2];if(d.greatArc){var i=n.geo.greatArc().source(function(b){return[a(b.origin.longitude,b),a(b.origin.latitude,b)]}).target(function(b){return[a(b.destination.longitude,b),a(b.destination.latitude,b)]});return h(i(b))}var j=a(b.arcSharpness,d.arcSharpness,b);return"M"+c[0]+","+c[1]+"S"+(g[0]+50*j)+","+(g[1]-75*j)+","+f[0]+","+f[1]}).transition().delay(100).style("fill",function(b){var c=this.getTotalLength();return this.style.transition=this.style.WebkitTransition="none",this.style.strokeDasharray=c+" "+c,this.style.strokeDashoffset=c,this.getBoundingClientRect(),this.style.transition=this.style.WebkitTransition="stroke-dashoffset "+a(b.animationSpeed,d.animationSpeed,b)+"ms ease-out",this.style.strokeDashoffset="0","none"}),g.exit().transition().style("opacity",0).remove()}function j(a,b){var c=this;b=b||{};var d=this.projection([-67.707617,42.722131]);this.svg.selectAll(".datamaps-subunit").attr("data-foo",function(e){var f=c.path.centroid(e),g=7.5,h=5;["FL","KY","MI"].indexOf(e.id)>-1&&(g=-2.5),"NY"===e.id&&(g=-1),"MI"===e.id&&(h=18),"LA"===e.id&&(g=13);var i,j;i=f[0]-g,j=f[1]+h;var k=["VT","NH","MA","RI","CT","NJ","DE","MD","DC"].indexOf(e.id);if(k>-1){var l=d[1];i=d[0],j=l+k*(2+(b.fontSize||12)),a.append("line").attr("x1",i-3).attr("y1",j-5).attr("x2",f[0]).attr("y2",f[1]).style("stroke",b.labelColor||"#000").style("stroke-width",b.lineWidth||1)}return a.append("text").attr("x",i).attr("y",j).style("font-size",(b.fontSize||10)+"px").style("font-family",b.fontFamily||"Verdana").style("fill",b.labelColor||"#000").text(e.id),"bar"})}function k(b,c,d){function e(a){return"undefined"!=typeof a&&"undefined"!=typeof a.latitude&&"undefined"!=typeof a.longitude}var f=this,g=this.options.fills,h=this.options.filters,i=this.svg;if(!c||c&&!c.slice)throw"Datamaps Error - bubbles must be an array";var j=b.selectAll("circle.datamaps-bubble").data(c,d.key);j.enter().append("svg:circle").attr("class","datamaps-bubble").attr("cx",function(a){var b;return e(a)?b=f.latLngToXY(a.latitude,a.longitude):a.centered&&(b=f.path.centroid(i.select("path."+a.centered).data()[0])),b?b[0]:void 0}).attr("cy",function(a){var b;return e(a)?b=f.latLngToXY(a.latitude,a.longitude):a.centered&&(b=f.path.centroid(i.select("path."+a.centered).data()[0])),b?b[1]:void 0}).attr("r",function(b){return d.animate?0:a(b.radius,d.radius,b)}).attr("data-info",function(a){return JSON.stringify(a)}).attr("filter",function(b){var c=h[a(b.filterKey,d.filterKey,b)];return c?c:void 0}).style("stroke",function(b){return a(b.borderColor,d.borderColor,b)}).style("stroke-width",function(b){return a(b.borderWidth,d.borderWidth,b)}).style("fill-opacity",function(b){return a(b.fillOpacity,d.fillOpacity,b)}).style("fill",function(b){var c=g[a(b.fillKey,d.fillKey,b)];return c||g.defaultFill}).on("mouseover",function(b){var c=n.select(this);if(d.highlightOnHover){var e={fill:c.style("fill"),stroke:c.style("stroke"),"stroke-width":c.style("stroke-width"),"fill-opacity":c.style("fill-opacity")};c.style("fill",a(b.highlightFillColor,d.highlightFillColor,b)).style("stroke",a(b.highlightBorderColor,d.highlightBorderColor,b)).style("stroke-width",a(b.highlightBorderWidth,d.highlightBorderWidth,b)).style("fill-opacity",a(b.highlightFillOpacity,d.highlightFillOpacity,b)).attr("data-previousAttributes",JSON.stringify(e))}d.popupOnHover&&f.updatePopup(c,b,d,i)}).on("mouseout",function(a){var b=n.select(this);if(d.highlightOnHover){var c=JSON.parse(b.attr("data-previousAttributes"));for(var e in c)b.style(e,c[e])}n.selectAll(".datamaps-hoverover").style("display","none")}),j.transition().duration(400).attr("r",function(b){return a(b.radius,d.radius,b)}),j.exit().transition().delay(d.exitDelay).attr("r",0).remove()}function l(a){return Array.prototype.slice.call(arguments,1).forEach(function(b){if(b)for(var c in b)null==a[c]&&(a[c]=b[c])}),a}function m(a){if("undefined"==typeof n||"undefined"==typeof o)throw new Error("Include d3.js (v3.0.3 or greater) and topojson on this page before creating a new map");return this.options=l(a,p),this.options.geographyConfig=l(a.geographyConfig,p.geographyConfig),this.options.projectionConfig=l(a.projectionConfig,p.projectionConfig),this.options.bubblesConfig=l(a.bubblesConfig,p.bubblesConfig),this.options.arcConfig=l(a.arcConfig,p.arcConfig),n.select(this.options.element).select("svg").length>0&&b.call(this,this.options.element,this.options.height,this.options.width),this.addPlugin("bubbles",k),this.addPlugin("legend",g),this.addPlugin("arc",i),this.addPlugin("labels",j),this.addPlugin("graticule",h),this.options.disableDefaultStyles||d(),this.draw()}var n=window.d3,o=window.topojson,p={scope:"world",responsive:!1,aspectRatio:.5625,setProjection:c,projection:"equirectangular",dataType:"json",data:{},done:function(){},fills:{defaultFill:"#ABDDA4"},filters:{},geographyConfig:{dataUrl:null,hideAntarctica:!0,hideHawaiiAndAlaska:!1,borderWidth:1,borderColor:"#FDFDFD",popupTemplate:function(a,b){return'<div class="hoverinfo"><strong>'+a.properties.name+"</strong></div>"},popupOnHover:!0,highlightOnHover:!0,highlightFillColor:"#FC8D59",highlightBorderColor:"rgba(250, 15, 160, 0.2)",highlightBorderWidth:2},projectionConfig:{rotation:[97,0]},bubblesConfig:{borderWidth:2,borderColor:"#FFFFFF",popupOnHover:!0,radius:null,popupTemplate:function(a,b){return'<div class="hoverinfo"><strong>'+b.name+"</strong></div>"},fillOpacity:.75,animate:!0,highlightOnHover:!0,highlightFillColor:"#FC8D59",highlightBorderColor:"rgba(250, 15, 160, 0.2)",highlightBorderWidth:2,highlightFillOpacity:.85,exitDelay:100,key:JSON.stringify},arcConfig:{strokeColor:"#DD1C77",strokeWidth:1,arcSharpness:1,animationSpeed:600}};m.prototype.resize=function(){var a=this,b=a.options;if(b.responsive){var c=b.element.clientWidth,d=n.select(b.element).select("svg").attr("data-width");n.select(b.element).select("svg").selectAll("g").attr("transform","scale("+c/d+")")}},m.prototype.draw=function(){function a(a){b.options.dataUrl&&n[b.options.dataType](b.options.dataUrl,function(a){if("csv"===b.options.dataType&&a&&a.slice){for(var c={},d=0;d<a.length;d++)c[a[d].id]=a[d];a=c}Datamaps.prototype.updateChoropleth.call(b,a)}),e.call(b,a),f.call(b),(b.options.geographyConfig.popupOnHover||b.options.bubblesConfig.popupOnHover)&&(hoverover=n.select(b.options.element).append("div").attr("class","datamaps-hoverover").style("z-index",10001).style("position","absolute")),b.options.done(b)}var b=this,c=b.options,d=c.setProjection.apply(b,[c.element,c]);return this.path=d.path,this.projection=d.projection,c.geographyConfig.dataUrl?n.json(c.geographyConfig.dataUrl,function(c,d){if(c)throw new Error(c);b.customTopo=d,a(d)}):a(this[c.scope+"Topo"]||c.geographyConfig.dataJson),this},m.prototype.worldTopo="__WORLD__",m.prototype.abwTopo="__ABW__",m.prototype.afgTopo="__AFG__",m.prototype.agoTopo="__AGO__",m.prototype.aiaTopo="__AIA__",m.prototype.albTopo="__ALB__",m.prototype.aldTopo="__ALD__",m.prototype.andTopo="__AND__",m.prototype.areTopo="__ARE__",m.prototype.argTopo="__ARG__",m.prototype.armTopo="__ARM__",m.prototype.asmTopo="__ASM__",m.prototype.ataTopo="__ATA__",m.prototype.atcTopo="__ATC__",m.prototype.atfTopo="__ATF__",m.prototype.atgTopo="__ATG__",m.prototype.ausTopo="__AUS__",m.prototype.autTopo="__AUT__",m.prototype.azeTopo="__AZE__",m.prototype.bdiTopo="__BDI__",m.prototype.belTopo="__BEL__",m.prototype.benTopo="__BEN__",m.prototype.bfaTopo="__BFA__",m.prototype.bgdTopo="__BGD__",m.prototype.bgrTopo="__BGR__",m.prototype.bhrTopo="__BHR__",m.prototype.bhsTopo="__BHS__",m.prototype.bihTopo="__BIH__",m.prototype.bjnTopo="__BJN__",m.prototype.blmTopo="__BLM__",m.prototype.blrTopo="__BLR__",m.prototype.blzTopo="__BLZ__",m.prototype.bmuTopo="__BMU__",m.prototype.bolTopo="__BOL__",m.prototype.braTopo="__BRA__",m.prototype.brbTopo="__BRB__",m.prototype.brnTopo="__BRN__",m.prototype.btnTopo="__BTN__",m.prototype.norTopo="__NOR__",m.prototype.bwaTopo="__BWA__",m.prototype.cafTopo="__CAF__",m.prototype.canTopo="__CAN__",m.prototype.cheTopo="__CHE__",m.prototype.chlTopo="__CHL__",m.prototype.chnTopo="__CHN__",m.prototype.civTopo="__CIV__",m.prototype.clpTopo="__CLP__",m.prototype.cmrTopo="__CMR__",m.prototype.codTopo="__COD__",m.prototype.cogTopo="__COG__",m.prototype.cokTopo="__COK__",m.prototype.colTopo="__COL__",m.prototype.comTopo="__COM__",m.prototype.cpvTopo="__CPV__",m.prototype.criTopo="__CRI__",m.prototype.csiTopo="__CSI__",m.prototype.cubTopo="__CUB__",m.prototype.cuwTopo="__CUW__",m.prototype.cymTopo="__CYM__",m.prototype.cynTopo="__CYN__",m.prototype.cypTopo="__CYP__",m.prototype.czeTopo="__CZE__",m.prototype.deuTopo="__DEU__",m.prototype.djiTopo="__DJI__",m.prototype.dmaTopo="__DMA__",m.prototype.dnkTopo="__DNK__",m.prototype.domTopo="__DOM__",m.prototype.dzaTopo="__DZA__",m.prototype.ecuTopo="__ECU__",m.prototype.egyTopo="__EGY__",m.prototype.eriTopo="__ERI__",m.prototype.esbTopo="__ESB__",m.prototype.espTopo="__ESP__",m.prototype.estTopo="__EST__",m.prototype.ethTopo="__ETH__",m.prototype.finTopo="__FIN__",m.prototype.fjiTopo="__FJI__",m.prototype.flkTopo={type:"Topology",objects:{flk:{type:"GeometryCollection",geometries:[{type:"MultiPolygon",properties:{name:"Falkland Islands"},id:"FK",arcs:[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]]]}]}},arcs:[[[5904,5],[-6,-5],[-19,55],[7,96],[17,20],[18,-16],[2,-53],[-8,-28],[-1,-10],[0,-14],[1,-28],[-3,-10],[-8,-7]],[[6170,2561],[-21,-22],[-45,6],[-44,30],[10,33],[30,21],[167,46],[68,-37],[-5,-10],[-105,-35],[-7,-11],[-48,-21]],[[4396,3004],[62,-48],[109,17],[76,44],[34,-64],[-71,-61],[-56,-65],[-24,-76],[-76,43],[-62,48],[-43,53],[-71,-11],[-34,64],[-62,54],[85,81],[71,23],[-10,59],[46,92],[71,28],[95,1],[10,-59],[-66,-23],[0,-70],[-51,-60],[-33,-70]],[[4286,4144],[45,-144],[138,18],[59,-17],[42,-69],[-13,-25],[-11,-35],[-10,-42],[-6,-47],[49,-39],[-6,-71],[-40,-68],[-50,-31],[-23,-7],[-29,-19],[-24,-29],[-23,-79],[-26,3],[-22,37],[-3,63],[-1,8],[-2,8],[-4,8],[-5,7],[30,39],[26,68],[12,85],[-9,92],[-35,67],[-45,33],[-39,41],[-17,89],[14,99],[28,-43]],[[8019,4840],[15,-3],[25,5],[16,23],[-3,35],[12,6],[14,-9],[38,-42],[0,-7],[-12,-9],[-4,-36],[-8,-42],[-33,-2],[-52,27],[-26,-1],[0,-22],[17,-51],[-13,-22],[-31,5],[-3,-14],[29,-23],[30,16],[24,31],[5,-11],[-13,-47],[-6,-50],[5,-48],[24,-60],[-3,-31],[-8,-22],[2,-32],[18,-39],[-13,-23],[-58,12],[-22,28],[20,28],[2,36],[-16,0],[-30,-12],[-44,27],[-40,36],[-64,38],[-7,26],[-1,46],[-14,42],[-35,39],[-24,45],[20,34],[34,29],[39,24],[41,13],[28,22],[25,6],[8,7],[-20,24],[10,14],[42,-3],[32,-15],[16,-25],[12,-23]],[[4587,5020],[7,-53],[-24,-37],[-28,-12],[-16,7],[-5,15],[-6,17],[-11,15],[-14,1],[-17,-4],[-11,21],[16,63],[-5,40],[10,54],[35,39],[28,-11],[1,-35],[-9,-42],[15,-39],[18,-14],[16,-25]],[[232,5743],[0,-32],[26,-18],[28,-5],[30,7],[30,16],[-65,-128],[-97,1],[-102,81],[-82,114],[14,16],[13,11],[30,11],[25,-14],[60,-20],[46,-52],[13,21],[10,65],[9,26],[6,35],[12,33],[30,13],[24,-7],[21,-21],[18,-34],[15,-45],[-30,-11],[-84,-63]],[[4805,5874],[-44,-26],[-29,11],[-15,50],[6,38],[28,27],[92,12],[14,14],[74,83],[12,5],[-19,-68],[-2,-121],[-25,-23],[-92,-2]],[[1224,5601],[-17,-61],[-61,-152],[116,0],[-22,-48],[-19,-95],[-17,-38],[-39,-32],[-131,-35],[-81,-32],[-56,4],[-132,63],[12,52],[8,19],[-41,1],[-17,33],[-8,43],[-12,30],[-28,13],[-59,7],[-28,15],[-10,13],[-6,13],[-8,10],[-14,0],[22,114],[-19,74],[-44,43],[-52,18],[48,68],[39,31],[44,8],[114,-3],[16,5],[34,87],[53,97],[32,38],[40,24],[13,3],[30,0],[13,-3],[22,-18],[7,-20],[3,-18],[6,-12],[57,-33],[24,-39],[-13,-54],[-52,-52],[-137,-92],[-50,-89],[-7,-43],[14,-12],[202,80],[85,90],[55,36],[46,54],[25,118],[-12,43],[-27,17],[-13,22],[32,60],[35,38],[31,5],[22,-30],[9,-68],[-6,-46],[-13,-53],[-16,-48],[-14,-30],[-15,-48],[-6,-127],[-7,-58]],[[346,6460],[-47,-33],[-110,8],[-45,-30],[-22,-52],[-8,-60],[0,-156],[-34,16],[-35,25],[-29,41],[-16,61],[17,103],[22,70],[35,45],[59,30],[60,2],[101,-56],[52,-14]],[[1804,6564],[-30,-14],[-13,15],[-8,19],[-4,20],[12,36],[2,173],[-12,31],[-11,18],[-9,32],[6,26],[16,-9],[33,-59],[4,-25],[-1,-27],[14,-91],[11,-24],[29,-36],[-2,-23],[-11,-29],[-26,-33]],[[1636,7024],[-17,-18],[-200,43],[-18,37],[22,22],[153,-27],[33,-22],[27,-35]],[[5450,8221],[21,-33],[283,-135],[75,-61],[42,-75],[-120,7],[-49,-26],[-24,-82],[11,-78],[36,-3],[46,18],[41,-11],[-75,-51],[-129,-172],[-65,-61],[-18,57],[-30,19],[-33,-11],[-33,-30],[0,-35],[10,-28],[-3,-30],[-24,-84],[19,14],[59,19],[0,-33],[-89,-145],[-10,-33],[-9,-145],[-20,-33],[-34,-23],[-69,-102],[-39,-19],[-32,20],[-15,46],[-1,56],[11,55],[-87,-122],[-47,-45],[-39,25],[-153,-178],[78,8],[-12,-57],[-96,-146],[-124,-267],[-75,-105],[-185,-196],[-295,-498],[-56,-134],[-26,-80],[-30,-67],[-43,-46],[-123,-37],[-178,-154],[-21,152],[-9,23],[-71,12],[-37,15],[-16,24],[-12,57],[-27,-2],[-29,-28],[-18,-27],[-6,-54],[33,-107],[-8,-49],[-56,-37],[-241,21],[-64,-42],[-33,-5],[-17,47],[9,31],[50,62],[17,43],[-183,-88],[-45,-48],[-30,-95],[17,-79],[32,-88],[17,-116],[-14,-77],[-34,-65],[-224,-307],[-33,-31],[-61,4],[-87,73],[-61,-6],[11,-8],[4,-27],[-2,-33],[-5,-21],[-19,-14],[-19,21],[-19,30],[-46,38],[-53,98],[-16,22],[-32,14],[-55,56],[-37,1],[-17,-22],[-5,-36],[8,-34],[76,-43],[42,-72],[31,-92],[18,-92],[-114,-156],[-157,-103],[-151,19],[-96,205],[36,-4],[27,-12],[25,-4],[30,20],[-53,46],[-69,90],[-61,101],[-29,82],[21,16],[37,51],[16,54],[-44,25],[-281,14],[-36,-14],[-23,-38],[17,-23],[36,-11],[36,-3],[56,-31],[63,-78],[54,-95],[28,-83],[-162,0],[-46,10],[-23,25],[-15,35],[-126,199],[-33,37],[-36,6],[-38,-1],[-38,12],[-49,55],[-91,147],[-50,47],[-129,33],[-42,58],[19,124],[29,53],[70,-18],[150,-73],[122,-10],[29,-23],[12,-50],[-2,-59],[13,-41],[54,6],[-39,177],[188,29],[177,81],[0,35],[-89,59],[-75,16],[-65,40],[-58,131],[242,3],[127,-37],[51,-108],[19,0],[11,38],[12,24],[35,48],[4,-54],[15,-46],[21,-19],[28,27],[29,36],[27,2],[29,-13],[78,-15],[29,-17],[46,-44],[46,-59],[24,-1],[25,60],[-38,33],[0,35],[71,-2],[79,18],[75,37],[61,54],[72,154],[16,23],[8,22],[-16,40],[-31,24],[-39,-29],[-101,-107],[-133,-60],[-139,4],[-115,74],[222,-17],[56,33],[20,17],[55,28],[11,28],[9,47],[21,47],[26,40],[22,26],[-26,61],[2,41],[15,34],[9,42],[-4,49],[-14,113],[-3,71],[29,89],[67,65],[77,27],[57,-21],[-21,-43],[-24,-38],[-50,-61],[85,24],[36,0],[14,-42],[-8,-48],[-53,-147],[33,-24],[82,-86],[4,85],[22,64],[38,34],[52,-5],[-33,76],[-11,60],[6,169],[10,49],[26,31],[32,13],[29,-4],[18,-24],[20,-83],[17,-38],[19,5],[25,25],[23,6],[9,-53],[12,-14],[28,21],[85,90],[8,96],[-3,109],[5,76],[-74,30],[-69,-17],[-67,-33],[-67,-19],[-164,29],[-71,-26],[17,-109],[-22,-60],[-21,0],[-23,22],[-31,5],[-125,-94],[-38,-15],[-125,0],[-40,-18],[-21,-43],[-15,-47],[-20,-34],[-57,-1],[-28,77],[-27,93],[-49,44],[-62,31],[-52,79],[-31,105],[3,108],[39,88],[45,-9],[53,-49],[278,-102],[80,-3],[66,35],[128,118],[65,25],[220,-26],[196,91],[58,-11],[117,-137],[66,-37],[156,-19],[-41,97],[-67,53],[-78,23],[-72,5],[-56,32],[-164,216],[-30,21],[-56,25],[-30,28],[-76,140],[-73,9],[-409,220],[-34,38],[-30,108],[-6,62],[26,27],[164,0],[134,-41],[29,25],[-39,105],[-58,71],[-74,47],[-78,30],[-106,17],[-77,-8],[-38,6],[-87,59],[-38,9],[-28,12],[-31,32],[-21,40],[3,40],[11,57],[-15,62],[-42,112],[32,-4],[29,3],[27,14],[25,26],[92,-73],[310,-144],[97,-69],[285,-282],[228,-134],[250,-44],[459,104],[-67,91],[-198,21],[27,118],[59,90],[65,70],[16,68],[18,22],[33,-37],[10,-32],[20,-130],[169,165],[92,46],[82,-31],[0,-36],[-16,-16],[-8,-17],[-5,-18],[-9,-20],[262,-58],[83,-48],[-45,-25],[-47,-11],[-99,0],[80,-106],[148,0],[525,142],[50,24],[94,101],[57,17],[0,-36],[-196,-166],[-72,-43],[126,-84],[134,-3],[275,122],[-19,49],[-34,45],[-38,33],[-34,13],[-18,29],[-2,153],[-7,66],[23,-4],[48,7],[24,-3],[-5,23],[-7,59],[-6,24],[40,1],[51,-13],[43,-28],[19,-49]],[[4468,8263],[76,-67],[5,106],[62,-11],[14,-83],[62,-44],[105,-16],[10,-61],[-81,-22],[-104,-62],[-86,-56],[-81,-12],[-81,61],[9,78],[57,55],[-67,22],[-109,-23],[-86,61],[-19,55],[76,12],[81,11],[23,95],[57,-6],[39,-49],[38,-44]],[[3906,8304],[-64,-28],[-56,2],[-55,40],[-48,58],[-40,72],[-29,79],[131,48],[43,1],[43,-14],[109,-73],[19,-1],[-41,-30],[-18,-3],[0,-39],[39,-61],[-33,-51]],[[3104,8492],[76,-10],[70,6],[151,42],[69,-23],[30,-108],[12,-21],[22,-56],[7,-57],[-33,-26],[-105,-142],[-44,-120],[-13,-21],[-29,3],[-81,53],[-32,14],[-199,-45],[-42,8],[-51,27],[-40,48],[-8,70],[40,75],[69,43],[134,26],[30,-23],[57,-100],[29,-22],[41,3],[36,12],[33,22],[33,34],[-50,57],[-153,103],[-107,39],[-131,113],[-38,46],[-46,75],[-3,35],[30,32],[45,6],[25,-33],[17,-52],[18,-47],[58,-57],[73,-29]],[[2224,8429],[-17,-8],[-8,29],[-3,29],[-9,23],[-34,15],[-55,16],[-56,54],[-29,111],[39,43],[77,-74],[39,-55],[21,-18],[37,-49],[10,-63],[-12,-53]],[[7211,8360],[66,-14],[142,0],[32,-17],[28,-26],[31,-22],[42,-3],[0,32],[-11,65],[43,56],[65,41],[265,30],[49,-30],[46,-44],[114,-45],[50,-55],[126,-177],[18,-72],[11,-105],[12,-72],[-14,-58],[-66,-63],[-54,-29],[-72,-22],[-71,-6],[-52,18],[-28,60],[-46,176],[-40,48],[-48,-15],[-44,-58],[-80,-137],[95,-3],[17,-70],[-36,-230],[37,-37],[177,114],[64,-8],[13,-54],[-5,-66],[-11,-69],[-6,-61],[3,-90],[9,-32],[43,-1],[11,8],[20,49],[17,11],[11,-17],[18,-77],[10,-29],[37,-29],[44,3],[39,30],[22,51],[58,-40],[35,-54],[18,-73],[5,-101],[16,-70],[40,-89],[47,-77],[41,-32],[48,34],[-23,78],[-72,137],[30,63],[60,-14],[119,-85],[-20,123],[-67,52],[-72,32],[-33,61],[19,38],[37,33],[26,41],[-14,66],[-36,22],[-85,-46],[-42,8],[-28,41],[-2,40],[3,43],[-11,53],[-13,29],[-20,33],[-18,6],[-8,-48],[-11,-50],[-28,-28],[-34,-11],[-32,-1],[-32,20],[13,46],[49,75],[128,306],[34,47],[32,16],[75,76],[37,17],[585,51],[153,56],[84,0],[74,-25],[31,-29],[30,-53],[47,-213],[19,-32],[29,-28],[86,-171],[29,-35],[39,-27],[76,-27],[-22,-51],[-54,-39],[-21,-54],[72,0],[22,-47],[-25,-59],[-69,-34],[-347,56],[-235,164],[-58,15],[-24,-41],[34,-126],[-149,73],[-176,-105],[49,-96],[94,-79],[103,-55],[79,-22],[160,46],[78,-56],[261,-32],[104,-35],[88,-70],[36,-119],[-51,-67],[-116,-50],[-198,-43],[0,-39],[168,-71],[62,3],[111,46],[55,9],[63,-19],[0,-36],[-78,-8],[-283,-162],[-58,-13],[-189,-5],[-37,-15],[-3,-40],[-35,-38],[-37,-18],[-424,-59],[-217,40],[-109,-5],[0,-35],[34,-8],[97,-66],[46,-20],[147,-13],[0,-35],[-79,-28],[-164,12],[-81,-20],[-194,-142],[-75,-3],[60,-34],[58,5],[173,98],[187,2],[-38,-58],[-70,-58],[-76,-44],[-119,-40],[-213,-155],[-133,-68],[-258,47],[-144,-12],[-100,-38],[-444,7],[-67,31],[-95,104],[-129,56],[-63,63],[-60,38],[-28,38],[-14,44],[-10,53],[-15,45],[-28,21],[-35,-30],[-30,-74],[-22,-79],[-8,-49],[15,-66],[37,-63],[47,-49],[129,-47],[113,-68],[102,-93],[54,-99],[-39,-91],[73,-27],[158,51],[81,-6],[105,-34],[80,-67],[1,-107],[76,-71],[-145,-114],[-46,-64],[33,-36],[20,-47],[13,-59],[24,-178],[-1,-52],[-22,-19],[-47,-2],[-26,25],[-87,191],[-32,55],[-32,45],[-40,31],[-51,11],[-25,11],[-33,47],[-18,10],[-17,-10],[-8,-23],[-11,-24],[-31,-11],[-24,6],[-41,24],[-21,5],[-37,-17],[2,-41],[15,-49],[1,-37],[-38,-48],[-87,-62],[-38,-48],[-46,-38],[-30,61],[-32,174],[-58,-75],[-31,43],[-20,94],[-22,76],[-60,36],[-62,-18],[-48,1],[-21,91],[-50,-32],[-42,15],[-81,91],[-20,39],[-16,20],[-21,6],[-34,-17],[-12,-26],[-9,-31],[-21,-30],[-40,-23],[-36,-6],[-36,10],[-40,19],[-25,20],[-19,25],[-21,19],[-33,7],[-19,-11],[-41,-48],[-24,-12],[-29,-30],[16,-59],[41,-36],[83,61],[146,-43],[41,-33],[5,-74],[-1,-75],[21,-33],[55,11],[38,20],[37,4],[52,-35],[-95,-139],[101,7],[50,-10],[41,-36],[-47,-51],[-108,-52],[-37,-39],[-21,-97],[40,-31],[65,6],[160,65],[54,3],[9,-52],[-30,-44],[-144,-102],[36,-68],[63,-64],[38,-69],[-40,-83],[-60,-16],[-69,34],[-120,88],[-73,10],[-63,-12],[-57,7],[-55,70],[-14,45],[-6,43],[-11,43],[-28,47],[-32,22],[-34,9],[-33,20],[-32,55],[-48,-25],[-112,150],[-53,17],[-12,-33],[-12,-61],[-14,-102],[-15,-33],[-32,35],[-48,87],[-63,-51],[27,-92],[93,-141],[-11,1],[-19,-32],[-19,-47],[-8,-48],[14,-35],[34,-12],[66,-8],[69,-46],[44,-60],[18,-77],[-13,-100],[-17,-20],[-33,-48],[-15,-51],[34,-24],[6,-20],[63,-80],[15,-6],[-21,-92],[-56,32],[-94,131],[-65,44],[-141,33],[-61,62],[11,100],[-34,65],[-56,36],[-129,37],[-48,43],[-1,65],[67,86],[-48,29],[-96,-37],[-39,26],[-7,29],[2,68],[-5,24],[-87,114],[-103,91],[-27,32],[-31,50],[-19,58],[6,56],[19,18],[24,-5],[25,-16],[19,-19],[59,-77],[20,-15],[52,4],[36,38],[6,61],[-37,75],[115,28],[51,40],[27,78],[-51,27],[-55,49],[-46,62],[-22,74],[4,47],[14,21],[22,-7],[28,-43],[27,-21],[40,-5],[77,8],[-44,102],[-23,37],[-30,36],[46,27],[99,19],[47,25],[0,39],[-157,50],[-72,56],[-2,103],[67,49],[92,-39],[95,-62],[72,-19],[59,64],[-42,64],[-73,65],[-39,62],[16,58],[36,3],[43,-10],[38,17],[18,43],[-2,46],[-18,36],[-36,18],[48,35],[209,90],[56,-63],[35,55],[37,238],[43,-52],[45,-10],[100,29],[-47,123],[-10,55],[269,216],[46,-71],[36,33],[35,70],[45,39],[213,46],[45,-10],[16,-41],[1,-46],[-3,-48],[4,-46],[15,-39],[19,-35],[16,-38],[7,-48],[-8,-48],[-16,-47],[-10,-43],[16,-76],[-2,-44],[-8,-44],[-8,-36],[46,23],[54,15],[46,32],[25,73],[-13,75],[-34,90],[-26,93],[10,137],[-37,44],[-31,60],[17,108],[24,26],[32,5],[27,12],[12,46],[-9,48],[-22,5],[-28,-4],[-58,41],[-197,87],[-126,127],[-62,124],[50,87],[79,107],[28,180],[142,-318],[88,-110],[59,141],[-74,121],[-18,118],[42,62],[106,-49],[-73,86],[-254,136],[-56,46],[10,78],[27,84],[36,69],[41,34],[18,-10],[54,-48],[24,-14],[34,0],[92,33],[24,22],[15,50],[9,50],[8,22],[189,7],[66,23],[55,43],[25,70],[-16,71],[-80,138],[-29,90],[-26,41],[-30,36],[-20,14],[-14,23],[-34,158],[59,-28],[89,-124],[43,-29],[61,-10],[132,-59],[231,-165]],[[4473,8731],[68,-27],[286,36],[25,-8],[2,-19],[-4,-25],[7,-26],[19,-35],[9,-33],[17,-23],[41,-9],[19,14],[12,32],[9,34],[8,20],[28,27],[21,11],[27,4],[63,-28],[47,-74],[31,-103],[12,-118],[-68,-19],[-65,-42],[-163,-10],[-65,40],[-93,172],[-72,40],[-314,32],[-118,35],[-26,18],[-19,44],[-6,45],[14,33],[40,6],[63,38],[72,-29],[73,-53]],[[1122,8953],[-68,-7],[29,24],[100,45],[112,36],[39,-13],[-43,-33],[-72,-32],[-97,-20]],[[1284,9469],[-6,-61],[-48,6],[-47,44],[-52,69],[-42,44],[16,80],[84,-125],[58,-44],[37,-13]],[[752,9650],[-22,-7],[-38,13],[-92,50],[-38,10],[-25,12],[-2,28],[23,24],[17,23],[-2,25],[-19,50],[1,45],[38,-11],[37,-44],[39,-65],[13,-30],[11,-35],[6,-16],[34,-24],[16,-22],[3,-26]],[[430,9777],[-9,-18],[-39,5],[-44,34],[-32,47],[-56,30],[-19,24],[-18,2],[-17,10],[-7,32],[-3,39],[14,17],[32,-17],[63,-65],[17,-26],[84,-58],[26,-27],[8,-29]]],transform:{scale:[.0003584261421142103,.00019223927602759005],translate:[-61.31818600199989,-52.93539804499985]}},m.prototype.fraTopo="__FRA__",m.prototype.froTopo="__FRO__",m.prototype.fsmTopo="__FSM__",m.prototype.gabTopo="__GAB__",m.prototype.psxTopo="__PSX__",m.prototype.gbrTopo="__GBR__",m.prototype.geoTopo="__GEO__",m.prototype.ggyTopo="__GGY__",m.prototype.ghaTopo="__GHA__",m.prototype.gibTopo="__GIB__",m.prototype.ginTopo="__GIN__",m.prototype.gmbTopo="__GMB__",m.prototype.gnbTopo="__GNB__",m.prototype.gnqTopo="__GNQ__",m.prototype.grcTopo="__GRC__",m.prototype.grdTopo="__GRD__",m.prototype.grlTopo="__GRL__",m.prototype.gtmTopo="__GTM__",m.prototype.gumTopo="__GUM__",m.prototype.guyTopo="__GUY__",m.prototype.hkgTopo="__HKG__",m.prototype.hmdTopo="__HMD__",m.prototype.hndTopo="__HND__",m.prototype.hrvTopo="__HRV__",m.prototype.htiTopo="__HTI__",m.prototype.hunTopo="__HUN__",m.prototype.idnTopo="__IDN__",m.prototype.imnTopo="__IMN__",m.prototype.indTopo="__IND__",m.prototype.ioaTopo="__IOA__",m.prototype.iotTopo="__IOT__",m.prototype.irlTopo="__IRL__",m.prototype.irnTopo="__IRN__",m.prototype.irqTopo="__IRQ__",m.prototype.islTopo="__ISL__",m.prototype.isrTopo="__ISR__",m.prototype.itaTopo="__ITA__",m.prototype.jamTopo="__JAM__",m.prototype.jeyTopo="__JEY__",m.prototype.jorTopo="__JOR__",m.prototype.jpnTopo="__JPN__",m.prototype.kabTopo="__KAB__",m.prototype.kasTopo="__KAS__",m.prototype.kazTopo="__KAZ__",m.prototype.kenTopo="__KEN__",m.prototype.kgzTopo="__KGZ__",m.prototype.khmTopo="__KHM__",m.prototype.kirTopo="__KIR__",m.prototype.knaTopo="__KNA__",m.prototype.korTopo="__KOR__",m.prototype.kosTopo="__KOS__",m.prototype.kwtTopo="__KWT__",m.prototype.laoTopo="__LAO__",m.prototype.lbnTopo="__LBN__",m.prototype.lbrTopo="__LBR__",m.prototype.lbyTopo="__LBY__",m.prototype.lcaTopo="__LCA__",m.prototype.lieTopo="__LIE__",m.prototype.lkaTopo="__LKA__",m.prototype.lsoTopo="__LSO__",m.prototype.ltuTopo="__LTU__",m.prototype.luxTopo="__LUX__",m.prototype.lvaTopo="__LVA__",m.prototype.macTopo="__MAC__",m.prototype.mafTopo="__MAF__",m.prototype.marTopo="__MAR__",m.prototype.mcoTopo="__MCO__",m.prototype.mdaTopo="__MDA__",m.prototype.mdgTopo="__MDG__",m.prototype.mdvTopo="__MDV__",m.prototype.mexTopo="__MEX__",m.prototype.mhlTopo="__MHL__",m.prototype.mkdTopo="__MKD__",m.prototype.mliTopo="__MLI__",m.prototype.mltTopo="__MLT__",m.prototype.mmrTopo="__MMR__",m.prototype.mneTopo="__MNE__",m.prototype.mngTopo="__MNG__",m.prototype.mnpTopo="__MNP__",m.prototype.mozTopo="__MOZ__",m.prototype.mrtTopo="__MRT__",m.prototype.msrTopo="__MSR__",m.prototype.musTopo="__MUS__",m.prototype.mwiTopo="__MWI__",m.prototype.mysTopo="__MYS__",m.prototype.namTopo="__NAM__",m.prototype.nclTopo="__NCL__",m.prototype.nerTopo="__NER__",m.prototype.nfkTopo="__NFK__",m.prototype.ngaTopo="__NGA__",m.prototype.nicTopo="__NIC__",m.prototype.niuTopo="__NIU__",m.prototype.nldTopo="__NLD__",m.prototype.nplTopo="__NPL__",m.prototype.nruTopo="__NRU__",m.prototype.nulTopo="__NUL__",m.prototype.nzlTopo="__NZL__",m.prototype.omnTopo="__OMN__",m.prototype.pakTopo="__PAK__",m.prototype.panTopo="__PAN__",m.prototype.pcnTopo="__PCN__",m.prototype.perTopo="__PER__",m.prototype.pgaTopo="__PGA__",m.prototype.phlTopo="__PHL__",m.prototype.plwTopo="__PLW__",m.prototype.pngTopo="__PNG__",m.prototype.polTopo="__POL__",m.prototype.priTopo="__PRI__",m.prototype.prkTopo="__PRK__",m.prototype.prtTopo="__PRT__",m.prototype.pryTopo="__PRY__",m.prototype.pyfTopo="__PYF__",m.prototype.qatTopo="__QAT__",m.prototype.rouTopo="__ROU__",m.prototype.rusTopo="__RUS__",m.prototype.rwaTopo="__RWA__",m.prototype.sahTopo="__SAH__",m.prototype.sauTopo="__SAU__",m.prototype.scrTopo="__SCR__",m.prototype.sdnTopo="__SDN__",m.prototype.sdsTopo="__SDS__",m.prototype.senTopo="__SEN__",m.prototype.serTopo="__SER__",
m.prototype.sgpTopo="__SGP__",m.prototype.sgsTopo="__SGS__",m.prototype.shnTopo="__SHN__",m.prototype.slbTopo="__SLB__",m.prototype.sleTopo="__SLE__",m.prototype.slvTopo="__SLV__",m.prototype.smrTopo="__SMR__",m.prototype.solTopo="__SOL__",m.prototype.somTopo="__SOM__",m.prototype.spmTopo="__SPM__",m.prototype.srbTopo="__SRB__",m.prototype.stpTopo="__STP__",m.prototype.surTopo="__SUR__",m.prototype.svkTopo="__SVK__",m.prototype.svnTopo="__SVN__",m.prototype.sweTopo="__SWE__",m.prototype.swzTopo="__SWZ__",m.prototype.sxmTopo="__SXM__",m.prototype.sycTopo="__SYC__",m.prototype.syrTopo="__SYR__",m.prototype.tcaTopo="__TCA__",m.prototype.tcdTopo="__TCD__",m.prototype.tgoTopo="__TGO__",m.prototype.thaTopo="__THA__",m.prototype.tjkTopo="__TJK__",m.prototype.tkmTopo="__TKM__",m.prototype.tlsTopo="__TLS__",m.prototype.tonTopo="__TON__",m.prototype.ttoTopo="__TTO__",m.prototype.tunTopo="__TUN__",m.prototype.turTopo="__TUR__",m.prototype.tuvTopo="__TUV__",m.prototype.twnTopo="__TWN__",m.prototype.tzaTopo="__TZA__",m.prototype.ugaTopo="__UGA__",m.prototype.ukrTopo="__UKR__",m.prototype.umiTopo="__UMI__",m.prototype.uryTopo="__URY__",m.prototype.usaTopo="__USA__",m.prototype.usgTopo="__USG__",m.prototype.uzbTopo="__UZB__",m.prototype.vatTopo="__VAT__",m.prototype.vctTopo="__VCT__",m.prototype.venTopo="__VEN__",m.prototype.vgbTopo="__VGB__",m.prototype.virTopo="__VIR__",m.prototype.vnmTopo="__VNM__",m.prototype.vutTopo="__VUT__",m.prototype.wlfTopo="__WLF__",m.prototype.wsbTopo="__WSB__",m.prototype.wsmTopo="__WSM__",m.prototype.yemTopo="__YEM__",m.prototype.zafTopo="__ZAF__",m.prototype.zmbTopo="__ZMB__",m.prototype.zweTopo="__ZWE__",m.prototype.latLngToXY=function(a,b){return this.projection([b,a])},m.prototype.addLayer=function(a,b,c){var d;return d=c?this.svg.insert("g",":first-child"):this.svg.append("g"),d.attr("id",b||"").attr("class",a||"")},m.prototype.updateChoropleth=function(a){var b=this.svg;for(var c in a)if(a.hasOwnProperty(c)){var d,e=a[c];if(!c)continue;if(d="string"==typeof e?e:"string"==typeof e.color?e.color:this.options.fills[e.fillKey],e===Object(e)){this.options.data[c]=l(e,this.options.data[c]||{});this.svg.select("."+c).attr("data-info",JSON.stringify(this.options.data[c]))}b.selectAll("."+c).transition().style("fill",d)}},m.prototype.updatePopup=function(a,b,c){var d=this;a.on("mousemove",null),a.on("mousemove",function(){var e=n.mouse(d.options.element);n.select(d.svg[0][0].parentNode).select(".datamaps-hoverover").style("top",e[1]+30+"px").html(function(){var d=JSON.parse(a.attr("data-info"));try{return c.popupTemplate(b,d)}catch(e){return""}}).style("left",e[0]+"px")}),n.select(d.svg[0][0].parentNode).select(".datamaps-hoverover").style("display","block")},m.prototype.addPlugin=function(a,b){var c=this;"undefined"==typeof m.prototype[a]&&(m.prototype[a]=function(d,e,f,g){var h;"undefined"==typeof g&&(g=!1),"function"==typeof e&&(f=e,e=void 0),e=l(e||{},c.options[a+"Config"]),!g&&this.options[a+"Layer"]?(h=this.options[a+"Layer"],e=e||this.options[a+"Options"]):(h=this.addLayer(a),this.options[a+"Layer"]=h,this.options[a+"Options"]=e),b.apply(this,[h,d,e]),f&&f(h)})},"object"==typeof exports?(n=require("d3"),o=require("topojson"),module.exports=m):"function"==typeof define&&define.amd?define("datamaps",["require","d3","topojson"],function(a){return n=a("d3"),o=a("topojson"),m}):window.Datamap=window.Datamaps=m,window.jQuery&&(window.jQuery.fn.datamaps=function(a,b){a=a||{},a.element=this[0];var c=new m(a);return"function"==typeof b&&b(c,a),this})}();