Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active July 4, 2018 03:54
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 HarryStevens/3bc69a5dd80b7a634b3090c54df36da9 to your computer and use it in GitHub Desktop.
Save HarryStevens/3bc69a5dd80b7a634b3090c54df36da9 to your computer and use it in GitHub Desktop.
Basic Map Zooming
license: gpl-3.0

It's ridiculous how easy d3-zoom makes it to zoom elements.

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
font-family: "Helvetica Neue", sans-serif;
cursor: default;
}
.subunit {
stroke: #fff;
stroke-width: .5px;
}
.subunit.highlight {
stroke: #000;
stroke-width: 2px;
}
.subunit-boundary {
fill: none;
stroke: #000;
stroke-width: 1px;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- <script src="https://d3js.org/d3-geo-projection.v2.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script>
<script>
var width = window.innerWidth, height = window.innerHeight;
var projection = d3.geoAzimuthalEqualArea()
.rotate([-70, -10, -1]);
var path = d3.geoPath()
.projection(projection)
.pointRadius(2);
var svg = d3.select("body").append("svg").attr("width", width).attr("height", height);
var g = svg.append("g").attr("width", width).attr("height", height);
var colors = ["#8dd3c7", "#ffffb3", "#bebada", "#fb8072", "#80b1d3", "#fdb462", "#b3de69", "#fccde5", "#fbb4ae", "#b3cde3", "#ccebc5", "#decbe4", "#fed9a6", "#ffffcc", "#e5d8bd", "#fddaec", "#e41a1c", "#377eb8", "#4daf4a", "#984ea3", "#ff7f00", "#ffff33", "#a65628", "#f781bf"];
d3.json("india_state.json", (error, data) => {
var feature = topojson.feature(data, data.objects.polygons);
projection.fitSize([width, height], feature);
g.selectAll(".subunit")
.data(feature.features, d => d.properties.ST_NM)
.enter().append("path")
.attr("class", "subunit")
.attr("d", path)
.style("fill", (d, i) => colors[i % colors.length])
.on("mouseover", function(){
d3.select(this).classed("highlight", true).raise();
d3.select(".subunit-boundary").raise();
})
.on("mouseout", () => {
d3.selectAll(".subunit").classed("highlight", false);
});
g.append("path")
.datum(topojson.mesh(data, data.objects.polygons, (a, b) => a === b))
.attr("d", path)
.attr("class", "subunit-boundary");
var zoom = d3.zoom().scaleExtent([1, 8]).translateExtent([[0, 0], [width, height]]).on("zoom", () => g.attr("transform", d3.event.transform));
svg.call(zoom);
window.onresize = () => {
width = window.innerWidth, height = window.innerHeight;
svg.attr("width", width).attr("height", height);
g.attr("width", width).attr("height", height);
projection.fitSize([width, height], topojson.feature(data, data.objects.polygons));
g.selectAll("path").attr("d", path);
zoom.translateExtent([[0, 0], [width, height]]);
svg.call(zoom);
}
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[21913,440],[29,-34],[4,-106],[37,-70],[-25,-93],[-12,-99],[-45,-38],[-52,100],[-23,86],[-59,50],[-18,100],[29,59],[41,0],[94,45]],[[21797,625],[37,-63],[-27,-60],[-66,-59],[-15,23],[3,93],[64,21],[4,45]],[[21515,1152],[11,-49],[57,-32],[-72,-46],[-57,72],[13,34],[48,21]],[[21656,1155],[29,-31],[-7,-56],[-56,49],[34,38]],[[21637,1342],[10,-42],[-21,-43],[34,-58],[-57,-21],[-26,112],[60,52]],[[21013,2259],[31,-69],[-25,-40],[-59,3],[-7,87],[60,19]],[[20777,3768],[34,-32],[24,-68],[10,-80],[-50,-78],[24,-35],[-32,-53],[-27,-6],[-68,33],[1,62],[-32,47],[-1,87],[117,123]],[[20882,4325],[38,-67],[4,-60],[-79,-21],[18,50],[-7,51],[26,47]],[[20530,4396],[35,-3],[0,-56],[-54,24],[19,35]],[[21166,4810],[68,-126],[-102,74],[34,52]],[[21252,4962],[16,-88],[-49,18],[33,70]],[[20930,4989],[17,-57],[34,0],[-18,-85],[31,-34],[-8,-43],[-40,-49],[59,-8],[0,-63],[-26,-136],[-2,-99],[-22,-82],[-68,2],[-48,136],[-33,48],[-3,85],[-30,30],[41,88],[43,11],[6,97],[21,102],[46,57]],[[21039,5048],[40,-3],[1,-87],[-42,-34],[-27,-77],[-45,14],[24,118],[49,69]],[[21102,5604],[25,-29],[34,-131],[-10,-133],[16,-47],[-29,-84],[-36,-30],[-60,9],[38,-67],[-37,-44],[-111,27],[-4,168],[4,74],[31,36],[2,89],[-13,82],[85,62],[43,-14],[22,32]],[[20929,5673],[20,-11],[0,-96],[-47,8],[27,99]],[[21214,6200],[11,-60],[-9,-72],[33,-71],[-82,3],[70,-90],[-22,-68],[2,-87],[-23,-45],[-48,-3],[-10,-51],[-73,-42],[-51,-11],[-5,93],[35,175],[-2,109],[39,130],[45,22],[-7,36],[97,32]],[[11275,8714],[-101,-50],[-7,30],[108,20]],[[14158,11213],[-66,-100],[-94,-94],[-23,-73],[-53,-48],[-111,-143],[-45,-20],[-24,-54],[-126,-132],[-14,-45],[-51,-34],[-137,-60],[-24,-24],[-143,-63],[-117,-91],[-10,-36],[-68,-47],[-51,-63],[2,-31],[-60,-78],[-110,-120],[-67,-39],[-81,-27],[-44,-42],[-205,-95],[-165,-100],[-98,-84],[-123,-127],[-45,-116],[16,-23],[73,-21],[11,-21],[-12,-93],[-45,-139],[-99,-62],[-150,-73],[-34,-24],[-96,-23],[-110,-58],[-65,28],[-104,12],[-106,-13],[-19,21],[-106,-37],[7,-47],[-37,-37],[-32,-130],[-32,-59],[4,-40],[-92,-71],[-42,-66],[14,-45],[-44,-36],[-104,-26],[-30,12],[11,81],[-30,49],[-43,21],[-187,-26],[-20,-28],[-122,-68],[-58,-64],[-33,-62],[-36,-137],[-57,-75],[-43,-112],[6,-38],[-31,-94],[-4,-57],[58,-288],[27,-38],[42,-116],[-19,-198],[-18,-43],[-19,-105],[14,-116],[89,-244],[-12,-95],[29,-110]],[[10315,6193],[-38,-72],[-177,15],[-37,-33],[-7,-70],[-24,-35],[-64,-29],[-43,0],[-67,-35],[52,-34],[-33,-30],[-62,37],[-3,42],[-88,-30],[-25,56],[-102,10],[-8,-77],[11,-48],[-62,-20],[-42,-44],[-62,18],[-63,-116],[-85,28],[-61,34],[-31,-11],[-124,10],[-91,-64],[-37,12],[-26,-40],[4,-55],[-28,-68],[-34,-129],[-81,-32],[2,-41],[-78,-5],[-121,70],[-6,58]],[[8574,5465],[18,86],[53,0],[36,74],[48,4],[48,28],[-5,62],[45,19],[3,61],[38,63],[12,75],[-56,5],[-125,71],[13,32],[-3,95],[11,78],[-112,-6],[-48,18],[-41,50],[-56,1],[25,54],[7,61],[-10,69],[-56,30],[-111,10],[-42,26],[-48,-8],[18,-52],[-85,-53],[-97,-38],[-74,-49],[-71,-10],[15,43],[-33,76],[-101,27],[-48,-16],[-9,50],[-67,-72],[4,-55],[-112,13],[-37,-25],[-20,62],[32,36],[25,69],[-35,51],[-55,37],[35,27],[-25,54],[-44,43],[110,13],[-8,-74],[12,-35],[83,-10],[11,-40],[124,8],[30,17],[30,-117],[60,-1],[-30,102],[-39,42],[49,45],[-5,56],[103,7],[-9,80],[-90,62],[-30,-54],[-68,6],[1,50],[-73,-15],[-38,21],[-34,-46],[-2,-60],[-51,16],[-96,1],[4,59],[-38,13],[-13,64],[77,80],[-94,-3],[-55,48],[-33,62],[9,71],[53,101],[23,96],[3,67],[-86,5],[28,110],[69,-57],[77,-14],[122,15],[47,127],[-20,45],[6,61],[-33,38],[-35,-7],[-26,36],[-10,69],[0,177],[46,21],[-29,66],[14,89],[-26,27],[37,51],[57,29],[91,15],[152,-14],[71,-19]],[[7962,8343],[149,-42],[28,11],[71,-19],[76,28],[182,-62],[55,20],[13,46],[54,34],[21,89],[41,-5],[77,47],[131,-22],[66,32],[43,-47],[45,-17],[59,23],[24,37],[73,32],[-11,63],[95,48],[88,-6],[46,-18],[42,30],[2,78],[-14,24],[16,142],[30,39],[138,19],[60,44],[129,28],[108,62],[31,-35],[44,7],[25,-44],[44,-16],[90,103],[18,62],[-66,45],[46,93],[33,-2],[95,50],[57,-7],[33,-50],[16,-77],[85,-26],[32,-47],[91,-25],[-7,57],[27,44],[-2,48],[-45,21],[-76,-4],[-70,23],[24,39],[49,3],[43,77],[54,33],[106,-63],[119,-28],[31,12],[10,87],[29,50],[69,-20],[151,49],[24,86],[66,-7],[47,63],[53,-31],[48,25],[45,61],[8,128],[102,157],[44,4],[47,47],[56,23],[-31,45]],[[11594,10141],[36,39],[116,43],[75,67],[119,-14],[67,-56],[14,50],[66,11],[-3,153],[11,97],[33,46],[-19,34],[102,95],[36,-10],[11,-87],[55,-38],[-10,-99],[37,-26],[28,57],[87,36],[8,81],[20,18],[78,-43],[10,-33],[63,-1],[77,34],[-43,51],[30,27],[-22,79],[50,83],[167,121],[70,39],[22,35],[-64,87],[19,37],[119,-6],[111,84],[12,45],[92,-151],[53,29],[70,-172],[152,-31],[37,-35],[107,38],[25,-12],[73,17],[71,132],[48,39],[33,52],[37,9],[37,-25],[55,92],[86,-46]],[[23099,18129],[-19,102],[-26,60],[39,19],[-30,95],[1,49]],[[23064,18454],[44,-12],[101,75],[78,21],[2,67],[64,56],[47,-38],[231,58],[10,-25],[78,46],[44,53],[-35,56],[-78,7],[0,100],[-71,49],[-34,113],[55,71],[90,74],[42,71],[-129,8],[-187,-17],[-78,-69],[-112,-36],[-58,26],[-369,-116],[-30,-29],[-91,-43],[-50,0],[-157,-78],[-67,22],[-46,-22],[-67,16],[-53,-17],[28,-48],[-88,-41],[-82,-104],[-52,-26],[-164,-167],[24,-67],[-100,-53],[-37,-44],[-177,-29],[-103,22],[-280,-42],[-87,44],[-39,39],[-88,23],[-94,5],[-11,-46],[-52,-23],[-118,-1],[-40,-31],[-40,8],[-135,-40],[-74,2]],[[20429,18322],[-4,104],[-64,64],[36,181],[-13,112],[-32,53],[-143,22],[-64,-16],[-103,17],[-78,92],[-3,45],[56,66],[4,86],[-50,55],[85,-4],[66,-48],[69,3],[44,-78],[56,6],[33,38],[61,-10],[87,71],[84,23],[45,-76],[116,20],[42,33],[58,-15],[38,52],[54,20],[61,81],[-66,67],[15,51],[88,59],[48,-4],[48,23],[108,87],[88,24],[59,-8],[32,76],[-35,23],[73,72],[49,117],[139,46],[25,-21],[70,-5],[106,30],[38,-19],[58,36],[78,-28],[51,150],[137,103],[51,118],[63,58],[53,2],[70,70],[108,2],[60,109],[42,-19],[76,-69],[26,-80],[63,18],[40,-21],[74,8],[80,-25],[13,-20],[117,-11],[-1,-37],[136,-32],[38,3],[42,96],[37,-13],[-1,79],[35,2],[164,126],[53,-2],[35,34],[65,-8],[106,74],[59,-59],[28,-82],[43,-60],[50,-7],[70,43],[15,-25],[-39,-78],[-110,-29],[-58,-78],[29,-59],[-34,-46],[19,-29],[52,21],[102,94],[76,5],[72,-67],[14,-74],[60,-78],[-19,-70],[-99,-34],[21,-37],[-80,-74],[-66,-29],[37,-47],[-87,-56],[46,-29],[44,8],[24,-46],[50,68],[45,-1],[75,44],[57,-1],[79,-46],[14,-38],[106,11],[23,-37],[60,-27],[48,38],[63,-2],[37,-49],[47,-2],[128,-68],[-38,-58],[30,-86],[28,-31],[-17,-106],[-60,11],[-44,-19],[-83,-79],[-123,-74],[-22,-64],[-41,-3],[-38,-42],[34,-83],[-22,-61],[45,-44],[32,-78],[78,-75],[66,-102],[-93,-23],[-67,51],[-101,31],[16,62],[-70,79],[-155,17],[-77,-68],[-83,11],[-132,-27],[-38,5],[-169,-81],[-68,-116],[-68,-43],[-53,2],[-46,-53],[-5,-52],[-101,-25],[-22,-53],[-56,15],[-105,-128],[-103,-37],[-55,28]],[[23064,18454],[-93,-82],[-87,-31],[-24,23],[-61,-10],[-55,-71],[-16,-44],[-99,-67],[-81,-27],[-40,7],[-115,-85],[-12,-79],[-88,-45],[-9,76],[-82,-94],[-19,-91],[-48,-31],[-62,-112],[-20,-15],[-49,-163],[23,-74],[-112,-58],[-61,-15],[16,58],[-11,44],[-83,-44],[15,-51],[-49,-27],[-64,-61],[-26,-50],[-51,-51],[-56,-22],[-72,-66],[48,-57],[57,-40],[18,-57],[-3,-64]],[[21593,16878],[-61,-42],[-43,-74],[-15,-78],[-76,-83],[6,-78],[-44,-62],[-8,-40],[-68,-4],[-21,-85],[7,-115],[-38,-34],[-17,-106],[-27,-23]],[[21188,16054],[-76,9],[-68,-12],[-24,20],[-33,91],[-63,-150],[-56,-20],[-12,-74],[-52,-6],[-18,-65],[-80,-20],[-12,92],[-107,-1]],[[20587,15918],[-71,-3],[51,127],[-36,65],[2,40]],[[20533,16147],[6,133],[22,58],[5,106],[-30,30],[12,42],[86,-18],[44,-30],[81,12],[-27,86],[-37,11],[2,50]],[[20697,16627],[35,23],[50,75],[83,-20],[48,59],[59,23],[39,72],[-27,44],[-94,88],[-37,-12],[-22,70],[5,52],[-25,54],[-51,14],[-69,103],[-153,-29],[-58,-38],[-14,133],[24,54],[-13,84],[77,59],[-12,30],[-54,16],[-39,-31],[-121,-4],[-49,-24],[-43,14],[-6,62],[-48,19],[-75,-54],[-10,-96],[-43,-44],[-34,36],[2,70],[-53,5],[-44,-63],[-43,-90],[-116,-25],[-48,-77],[-45,-21],[-37,48],[19,58],[-42,9],[-74,-22],[-92,98],[-64,17],[-74,-10],[-48,-23],[-23,33],[-72,-13],[-81,19],[-48,52],[-42,-24],[-54,19],[-35,-32],[-95,-19],[-85,3],[-90,-100],[-48,-33],[3,-33],[-52,-43],[45,-62],[61,-46],[-14,-22],[-99,-24],[-29,-74]],[[18503,17034],[23,126],[-47,115],[10,124],[29,32],[-2,57],[-71,70],[11,19],[-41,72],[-26,12]],[[18389,17661],[0,85],[55,85],[64,29],[-4,94],[22,88],[-18,108]],[[18508,18150],[28,19],[133,4],[122,38],[6,57],[26,23],[73,-7],[37,41],[47,5],[128,-91],[76,-25],[346,5],[30,35],[147,-12],[64,-23],[61,51],[60,-40],[124,27],[88,-8],[64,35],[44,55],[37,4],[76,-53],[59,-9],[45,41]],[[17013,18000],[118,-81],[26,-66],[-42,-80],[-69,-33],[-59,-65],[-32,-3],[-66,-86],[-40,7],[-61,-43],[-30,-104],[14,-53],[75,-18],[-9,-65],[67,-56],[61,-30],[-20,-120],[-20,-54],[-41,40],[-74,-32],[-5,-34],[-66,-15],[-20,-49],[16,-52],[59,-37],[-1,-40],[-53,-30]],[[16741,16801],[-68,33],[-20,49],[-66,1],[-34,20],[-81,-84],[0,-42],[-69,30],[-58,-5],[-28,-121],[-27,14],[-71,-37],[-19,-67],[-6,-116],[-59,-50],[3,-76],[-32,-91],[-29,-16],[-63,22],[-70,-73],[-39,12],[-14,47],[-106,-50],[-58,35],[-65,-58],[-29,-46],[-24,-98],[-39,2],[-53,57],[-51,31],[16,30],[-17,70],[-109,-2],[-34,25],[7,58],[-24,55],[-49,39],[-83,-42],[-62,62],[-86,-2],[-35,22],[-27,-86],[-38,-49],[4,-84],[-48,3],[-64,-48],[-34,16],[-183,-28],[-94,-82],[-46,-19],[-71,15],[-54,-45],[-56,-3],[-72,139],[-120,-63],[-17,-57],[-74,17],[-67,-114],[-33,47],[-102,52],[-36,50],[24,35],[-24,70],[-30,-26],[-73,4],[-54,-55],[-53,119],[-47,23],[-54,-82],[-111,-17],[-70,-22],[-187,20]],[[13079,16169],[31,80],[-46,111],[-80,42],[3,45],[-33,63],[5,48],[-32,54],[26,167],[51,46],[172,76],[84,57],[62,3],[119,148],[133,69],[-6,53],[32,26],[51,-2],[43,-52],[86,7],[6,59],[106,-20],[57,-34],[34,54],[56,51],[-64,44],[-15,33],[-83,14],[-68,60],[-52,-10],[-132,90],[-39,45],[-35,3],[-40,82],[132,64],[21,51],[-9,52],[-94,15],[-38,47],[-98,7],[4,52],[121,33],[31,61],[58,26],[102,-36],[22,15],[100,10],[-10,41],[-66,11],[-23,63],[-63,3],[24,47],[-20,56],[-83,-13],[-68,33],[-2,90],[-22,49],[-59,38],[-11,30],[37,57],[-32,51],[-39,12],[5,72],[-44,16]],[[13387,18734],[17,28],[-35,60],[77,6],[77,-12],[78,78],[33,-31],[85,-34],[19,-48],[54,-20],[72,-3],[172,-32],[56,-103],[-3,-62],[-36,-99],[100,-42],[56,19],[62,-43],[51,-10],[61,-80],[139,-5],[-14,-50],[26,-49],[109,-17],[62,45],[39,-9],[77,51],[55,18],[58,-11],[50,-46],[-10,-103],[15,-33],[94,-33],[5,-36],[84,73],[63,15],[140,-47],[130,2],[132,-68],[62,-40],[138,-67],[32,31],[44,-16],[62,19],[31,46],[71,20],[48,48],[17,-123],[56,-42],[92,2],[65,-54],[40,64],[77,19],[93,-42],[56,-1],[22,39],[75,-24],[25,54],[47,-30],[59,-3],[61,-36],[16,-34],[76,72],[11,95]],[[7387,21841],[-7,-71]],[[7380,21770],[-22,-15],[-68,40],[-21,43],[59,35],[59,-32]],[[13509,14346],[34,-52],[-35,-85],[-120,-24],[-98,-93],[-85,-15],[-76,-114],[-16,-40],[-3,-84],[56,-48],[-59,-71],[-34,-21],[-6,-61],[-37,-84],[-52,-33],[-33,-116],[44,-78],[-16,-54],[-89,32],[-66,-215],[-62,-34],[-68,16],[-52,35],[-119,5],[-175,-13],[8,-43],[-19,-60],[-60,-86],[-59,-38],[-5,-48],[-53,-19],[-12,33],[-57,-20],[7,-129],[21,-62],[-37,-69],[48,-40],[25,-98],[-13,-61],[17,-121],[-30,-52],[14,-87],[127,-33],[33,-20],[58,8],[52,-14],[-11,-142],[-45,-2],[-23,-35],[-40,38],[22,29],[-104,36],[-75,-17],[-42,-47],[-35,49],[-31,80],[-66,8],[-108,63],[-37,-28],[-69,72],[-63,-69],[-20,-66],[18,-46],[88,-41],[16,-53],[62,-4],[-12,-80],[11,-72],[-4,-78],[39,-26],[23,-78],[44,5],[9,-88],[-25,-61],[14,-119],[35,-50],[26,-153],[-58,-17],[-22,-108],[-46,-15],[-117,-69],[-6,-110],[-43,-28],[-115,-107],[-15,-60],[-74,-5],[-111,-73],[-20,-69],[15,-24],[-41,-117],[2,-49],[-69,-79],[-9,-74]],[[11275,10061],[-112,5],[-81,37],[-73,-60],[-35,3],[-24,44],[-48,258],[-74,9],[-11,61],[-44,-31],[-54,5],[-1,43],[43,22],[-52,107],[-9,41],[-53,60],[-15,42],[-124,98],[-32,0],[-93,-37],[-64,120]],[[10319,10888],[-22,28],[90,57],[-9,40],[-62,77],[3,43],[55,103],[12,56],[30,16],[7,57],[48,24],[22,54],[76,62],[38,-77],[51,13],[17,-36],[56,0],[77,62],[-44,65],[89,36],[-11,48],[-51,42],[-29,-4],[-55,43],[-51,0],[4,76],[-108,75],[-19,49],[-49,-1],[25,60],[-74,14],[35,40],[65,-20],[20,46],[2,76],[-19,54],[-62,18],[-58,88],[109,26],[27,33],[63,18],[-26,60],[15,37],[8,143],[-29,22],[-51,-27],[-32,29],[32,41],[51,15],[-30,103],[10,25],[-17,102],[-65,-3],[-31,74],[22,36],[-12,45],[19,67],[89,30],[66,45],[15,69]],[[10651,13262],[63,128],[1,61],[-20,121],[28,77],[60,-8],[25,116],[-6,65],[39,103],[33,55],[70,-54],[23,124],[75,88],[-11,81],[8,52],[52,43],[45,-33],[85,66],[47,-17],[9,-55],[108,83],[80,0],[35,36],[25,66],[74,25],[-16,46],[32,36],[-13,98],[79,18],[67,58],[-18,76],[16,33],[77,4],[29,31],[46,-11],[30,35],[-7,78],[40,51],[-1,35],[-77,68],[-64,-13],[-45,37],[-18,66],[-28,32],[-76,-19],[-25,34],[-59,15],[-31,-38],[-75,-11],[7,136],[26,-1],[37,56],[-40,45],[-35,75],[7,45],[46,21],[36,-57],[59,-45],[34,-4],[70,32],[91,17],[38,-39],[132,11],[84,-22],[141,3],[70,-15],[72,41],[22,61],[79,14],[51,38]],[[12489,15656],[125,-82],[148,15],[53,29],[23,62],[53,32],[39,70]],[[12930,15782],[87,-16],[19,-38],[53,-15],[2,-53],[59,-96],[64,-16],[62,-81],[-12,-66],[51,-75],[137,-33],[3,54],[70,-20],[-10,-92],[-34,-47],[-2,-67],[88,-40],[-35,-160],[128,-119],[33,-42],[52,-14],[79,13],[15,-33],[-11,-59],[-47,-22],[-30,-78],[-51,-26],[5,-42],[-70,-50],[-59,2],[-65,-61],[-2,-44]],[[4282,12161],[-45,-44],[-136,41],[-29,86]],[[4072,12244],[-40,51],[19,23],[85,-1],[8,30],[105,-12],[-65,-76],[-25,-60],[41,-4],[52,40],[30,-74]],[[3937,12391],[36,91]],[[3973,12482],[44,-48],[-13,-47],[-67,4]],[[2390,12716],[19,8]],[[2409,12724],[-19,-8]],[[5062,8094],[110,4],[0,-80],[28,-37],[-27,-33],[29,-98],[33,-13],[12,-68],[-56,-16],[39,-83],[-35,-74],[18,-57],[-52,-85],[-47,7],[-79,-55]],[[5035,7406],[-39,17],[3,66],[-53,35],[-37,86],[0,52],[-41,146],[-109,147],[-54,174],[-22,34]],[[4683,8163],[87,-2],[68,67],[37,-50],[31,-1],[27,-102],[22,-18],[107,37]],[[142,15513],[33,-19],[18,-55],[-24,-63],[-37,-52],[-45,-17],[-84,54],[62,11],[59,72],[18,69]],[[98,15530],[14,-82],[-51,24],[37,58]],[[261,15536],[21,-24],[-30,-61],[-34,63],[43,22]],[[173,15579],[37,-35],[-33,-45],[-49,42],[45,38]],[[293,15641],[40,-28],[-53,-53],[-29,31],[42,50]],[[261,15661],[17,-40],[-32,-31],[-32,71],[47,0]],[[142,15667],[64,-7],[-27,-42],[-44,-11],[-11,-81],[-54,-20],[-31,-106],[-39,45],[28,29],[-14,44],[60,96],[54,7],[14,46]],[[3693,13762],[-8,103],[34,142],[44,56],[51,1],[87,-34],[34,57],[60,-13],[-15,53],[-82,-47],[-55,6],[-47,43],[-55,-27],[-87,-11],[-91,-37],[-42,-91],[-30,-122],[-50,-11],[30,-60],[3,-151],[39,-87],[-32,-51],[-28,-105],[-98,-120],[-33,-72],[28,-40],[-57,-37],[-136,-54],[-216,-117],[-108,-27],[-62,-68],[-98,-21],[-151,-81],[-113,-15]],[[2390,12716],[-68,5],[-77,-41],[-128,63],[-73,18],[-126,66],[-160,114],[-129,114],[-80,86],[-251,301],[-94,98],[-15,0],[-97,95],[-172,151],[-181,199],[-90,111],[-14,58],[59,114],[55,-38],[104,24],[-29,-99],[56,-50],[58,16],[42,50],[71,-13],[117,46],[81,-7],[38,33],[-4,53],[39,3],[45,-49],[41,48],[60,15],[30,51],[70,19],[122,7],[63,103],[8,51],[40,41],[65,117],[39,30],[41,72],[-24,48],[-39,-35],[-3,-57],[-42,-30],[-93,45],[-111,-65],[-132,-14],[-73,-19],[-97,-48],[-49,-70],[-46,22],[-52,-4],[-40,21],[-75,-7],[-48,33],[-60,17],[-104,5],[-329,202],[-42,17],[-94,69],[-58,61],[50,22],[-5,89],[-88,73],[-23,35],[-16,157],[59,76],[62,37],[21,36],[61,28],[-47,29],[-127,-40],[42,57],[-18,80],[173,1],[14,276],[49,40],[20,-87],[79,74],[53,-72],[79,45],[81,-31],[99,39],[150,-12],[89,21],[121,-109],[245,-1],[40,24],[38,88],[226,55],[49,25],[123,37],[-12,-63],[12,-89],[60,-28],[66,-7],[134,27],[-4,47],[97,63],[42,-12],[64,39],[-2,37],[-93,8],[4,75],[-12,70],[17,29],[74,45]],[[2481,16315],[164,-67],[50,42],[21,-30],[92,47],[110,-3],[38,-34],[106,32],[23,-43],[49,1],[2,45],[105,-15],[50,45],[28,-49],[87,-39],[37,21],[56,-86],[54,12],[67,-83],[24,-49],[67,89],[39,-30],[60,-15],[63,-87],[117,4],[47,-36],[46,30],[3,84],[98,39],[10,-68],[-19,-23],[88,-54],[-61,-66],[-29,-71],[35,-40],[86,-39],[-20,-48],[44,-31],[64,46],[7,48],[67,-58],[6,-116],[-52,-63],[34,-64],[95,-80],[-8,-56],[59,17],[77,-28],[-20,-84],[-4,-71],[113,5],[53,-11],[58,-100],[111,-4],[21,-34],[50,-1],[25,-27],[-8,-78],[48,-24],[57,24],[63,-106]],[[5234,14835],[41,-75],[9,-64],[69,3],[2,-89],[-53,-77],[-16,-79],[-91,4],[-55,-73],[-110,-54],[17,-68],[113,5],[31,-42],[-65,-45],[-55,-10],[-53,25],[-11,-67],[14,-58],[40,-9],[13,-145],[-32,-47],[39,-43]],[[5081,13827],[-105,-44],[-168,-85],[16,-64],[38,-28],[-4,-60],[-53,-42],[31,-94],[105,42],[73,16],[100,1],[19,-28],[73,26],[37,-17],[-25,-55],[-72,-18],[-142,-3],[-8,-34],[-73,-23],[-12,-87],[-48,-32],[-52,5],[-8,-87],[-69,-4],[-90,-32],[48,-29],[90,-29],[48,-63],[45,-15],[-9,-46],[42,-84],[-4,-65],[-84,-60],[3,-72],[-84,-51],[-96,11],[-12,42],[-51,20],[-89,61],[-16,-108],[35,-11],[-5,-80],[-52,-104],[19,-90],[-9,-73],[-99,5],[-15,-49],[-67,-29]],[[4072,12244],[-74,13],[-48,-64],[-75,-18]],[[3875,12175],[7,99],[33,102],[22,15]],[[3973,12482],[25,29],[8,95],[-39,137],[-46,126],[-23,28],[-48,119],[13,72],[-43,12],[-61,144],[66,185],[-50,39],[13,54],[136,25],[-38,40],[-114,-6],[-53,-22],[-25,44],[32,83],[48,58],[-25,23],[-56,-5]],[[8025,21495],[-4,-67],[-33,-22],[-51,-89],[-42,-18],[-20,-51],[-59,-44],[-52,-15],[-17,-54],[-61,-79],[-23,-99],[-34,-40],[23,-29],[-47,-106],[0,-61],[28,-70],[31,-127],[-22,-41],[9,-82],[-13,-74],[76,-87],[-20,-40],[23,-56],[-26,-30]],[[7691,20114],[-117,6],[-16,-33],[-76,-15],[3,-125],[-59,-42],[-38,-50],[40,-53],[55,-9],[61,17],[79,-36],[9,-46],[40,-31],[64,18],[-11,37],[94,36]],[[7819,19788],[84,-70],[50,-67],[-24,-16],[61,-137],[-56,-79],[4,-50],[49,-50],[-13,-56],[-92,-66],[-62,0],[-55,-48]],[[7765,19149],[-35,-19],[-72,24],[-42,-24],[-54,31],[-5,-65],[-32,-6],[-21,-77],[-70,57],[33,104],[-7,149],[37,133],[-109,74],[-36,-62],[-123,-59],[10,-66],[-110,-36],[6,54],[-70,7],[36,54],[-22,40],[-96,-6],[-24,-33],[4,-70],[-73,37],[-63,-10],[-20,-61],[13,-75],[31,-57],[-28,-37],[-73,56],[-33,-19],[-63,16],[-17,113],[18,87],[-35,8],[79,72],[22,47],[-36,16],[-21,49],[-55,67],[-102,41],[-21,40],[-75,38],[-52,42],[-17,55],[-46,8],[-21,108],[-28,50],[-9,65],[20,138],[-65,5],[-4,44],[-42,5],[-17,66],[34,42],[-18,68],[-55,-25],[-37,17],[-166,-20],[-46,54],[-60,-8],[-22,75],[-67,35],[-63,-39],[-107,12],[-43,-17],[-26,48],[36,114],[-34,22],[6,90],[23,89],[-114,-8],[17,76],[53,35],[-29,71]],[[5412,21098],[57,-26],[184,70],[41,-30],[64,-17],[56,-77],[65,20],[31,-70],[69,33],[41,-79],[-28,-19],[-21,-92],[40,-21],[15,-50],[68,108],[68,82],[40,23],[96,-19],[94,6],[34,33],[98,6],[37,-58],[60,-18],[92,15],[28,29],[132,67],[-39,36],[18,46],[-4,85],[45,74],[66,-9],[83,35],[22,-43],[70,-17],[81,66],[9,46],[-41,44],[127,96],[-33,31],[42,30],[99,-16],[21,25],[-4,95],[25,54],[-43,65],[-37,13]],[[7387,21841],[0,63],[-50,67]],[[7337,21971],[71,-32],[42,24],[44,-79],[38,3],[13,-66],[76,-10],[44,-38],[3,-82],[-39,-29],[63,-38],[12,-37],[125,-21],[76,-53],[48,12],[72,-30]],[[8718,23448],[57,-36],[-9,-31],[68,-34],[-49,-74],[3,-54],[109,-54],[-16,-55],[139,-141],[29,-4],[-68,-188],[36,-92],[79,-58],[-25,-47],[-65,-32],[20,-47],[43,-34],[-16,-46],[43,-19],[2,-46],[66,-65]],[[9164,22291],[56,-70],[21,-59],[-100,-13],[-52,40],[-20,53],[-124,-7],[-43,35],[-54,-27],[-57,-2],[-86,76],[-61,1],[-56,-49],[-72,-3],[-48,-35],[-118,-13],[-45,-18],[-83,-95],[17,-45],[-60,-26],[-8,-49],[33,-46],[-82,-94],[45,-53],[29,-63],[-37,-31],[63,-43],[-6,-44],[-201,-98]],[[8015,21513],[10,-18]],[[7337,21971],[-48,52],[-88,38],[-9,44],[23,52],[-32,16],[1,50],[39,28],[-55,61],[-21,-22],[-101,63],[-59,83],[-37,-12],[12,-52],[-106,-37],[-61,71],[19,20],[-62,121],[-69,100],[-69,155],[24,28],[-47,93],[-85,36],[-52,44],[-106,57],[39,42],[-30,36],[2,45],[97,35],[92,96],[71,30],[-9,34],[-52,46],[15,70]],[[6573,23494],[44,61],[-21,34],[12,70],[-33,51],[-45,27],[-29,46],[18,33],[50,0],[57,-42],[71,31],[56,46],[10,33],[123,25],[32,65],[94,72],[72,-3],[67,27],[68,-43],[88,15],[58,-6],[68,-54],[34,-73],[69,-40],[118,-9],[18,-61],[60,-16],[80,-67],[50,53],[64,-17],[55,23],[53,47],[112,30],[67,-61],[-25,-37],[85,-44],[49,-54],[-13,-58],[63,-93],[50,0],[49,64],[78,2],[95,44],[42,46],[29,-40],[-13,-43],[22,-44],[-79,-42],[11,-93],[62,49]],[[6573,23494],[-58,-81],[-50,-10],[-30,-53],[-101,-33],[-107,-58],[-123,22]],[[6104,23281],[-69,21],[-59,50],[-50,-13],[-18,58],[-65,21],[-36,-41],[-38,-4],[-75,37],[-64,-13],[-88,15],[-25,67],[-1,62],[36,25],[-36,39],[43,125],[-59,-31],[-13,-42],[-62,-11],[-77,37],[-60,-24],[-61,31],[-11,30],[-70,19],[-34,34],[-105,26],[-83,69],[-115,17],[-14,-31],[-101,106],[-48,-2],[22,108],[-45,43],[-40,106],[27,69],[25,121],[-39,37],[-9,53],[24,71],[-28,27],[24,105],[-61,98],[-22,125],[3,69],[-57,118],[-22,9],[40,195],[147,11],[61,52],[-17,42],[52,75],[36,23],[105,22],[114,51],[38,58],[-7,98],[30,88],[-48,1],[-110,60],[-119,28],[-43,32],[-23,73],[33,63],[49,31],[-9,57],[-125,42],[-70,-14],[-65,20],[-64,-12],[-31,36],[-83,24],[-114,80],[12,113],[-63,40],[-35,-29],[-93,-8],[-24,33],[-152,-25],[-28,-20],[-134,77],[53,100],[-55,41],[36,72],[-19,27],[39,76],[57,0],[98,41],[95,80],[-11,37],[158,91],[43,66],[-23,65],[196,22],[104,35],[146,-42],[79,-12],[21,22],[150,-2],[-31,74],[-118,40],[-38,48],[25,25],[144,-17],[148,-80],[80,37],[23,52],[75,-16],[144,94],[89,-3],[48,38],[101,45],[17,-47],[90,-1],[69,-105],[89,61],[59,-31],[41,14],[57,58],[53,28],[69,-1],[0,-44],[88,-111],[26,-67],[118,-42],[112,-157],[150,-78],[124,-23],[89,-79],[70,-39],[83,11],[68,-47],[43,-88],[102,-42],[31,18],[51,-45],[24,-52],[64,-27],[-66,-87],[69,-94],[112,-60],[84,-7],[73,18],[48,-59],[42,-15],[115,3],[67,-70],[30,-109],[-80,26],[-48,-12],[47,-53],[62,-14],[57,23],[91,-15],[87,5],[86,30],[68,-37],[53,96],[67,9],[78,-42],[53,104],[62,14],[1,48],[100,15],[28,43],[84,-20],[117,83],[94,14],[31,-13],[115,22],[152,-39],[54,30],[8,70],[44,36],[124,4],[33,-87],[79,-11],[195,-75],[105,-16],[42,36],[69,14],[99,-146],[104,-32],[49,-36],[29,-118],[-40,-29],[2,-49],[-47,-145],[-39,-56],[2,-94],[-12,-68],[-41,-86],[-43,-60],[-3,-103],[-107,-31],[-71,7],[-76,-60],[-12,-62],[45,-21],[-14,-42],[-52,-6],[-131,10],[-61,-14],[44,-57],[0,-72],[27,-46],[-6,-40],[-77,-53],[0,-40],[-102,-93],[-151,16],[-98,-27],[-59,26],[-63,-24],[-30,-43],[98,-183],[0,-63],[61,-24],[12,-60],[-99,-2],[-60,20],[18,-97],[-6,-86],[51,-92],[89,-33],[122,3],[74,-23],[33,9],[76,-22],[-14,-63],[-52,-95],[5,-103],[69,-47],[93,-125],[46,-41],[-153,-187],[-92,54],[-124,-99],[-68,-90],[-47,6],[-85,-21],[-114,65],[-43,122],[13,41],[-36,58],[-75,-26],[-37,-52],[-71,11],[-78,-35],[-38,-40]],[[16741,16801],[-13,-110],[78,-54],[83,-94],[4,-50],[-58,-35],[-50,-95],[52,-15],[9,-54],[-20,-91],[-78,0],[-7,-119],[8,-45],[-52,-85],[-47,-38],[7,-88],[-94,11],[-8,-68],[-63,26],[4,-85],[-53,-40],[-91,48],[-85,-6],[50,-63],[1,-59],[-60,-30],[-74,10],[11,-67],[-78,20],[-80,44],[-59,13],[-66,-94],[-21,-81],[-70,9],[-102,-31],[-53,-31],[-72,3],[-74,-81],[-5,-72],[-109,-25],[-59,62],[-14,60],[-87,12],[-22,-20],[26,-65],[-88,-32],[-67,-4],[1,-134],[-30,-36],[8,-65],[68,-57],[104,13],[6,-29],[61,-16],[51,-74],[32,-19],[57,17],[97,-33],[20,19],[69,-4],[13,-22],[-69,-46],[-14,-126],[54,-50],[60,-10],[75,-51],[12,-72],[89,-1],[24,-27],[5,-64],[-22,-47],[68,-24],[-12,-65],[50,-39],[-58,-19],[-24,-39],[-59,-2]],[[15831,14070],[-64,18],[-59,57],[-46,4],[-21,35],[-65,-32],[-61,36],[-55,73],[-73,40],[-86,18],[-28,48],[-85,-39],[-13,-40],[58,-67],[-25,-40],[21,-30],[-41,-56],[49,-53],[-21,-65],[-51,-86],[-41,-37],[-94,0],[-4,53],[-84,11],[-31,38],[-46,-15],[-154,75],[-40,-2],[-130,-101],[-96,48],[-64,14],[1,38],[69,125],[-46,171],[-146,-56],[-68,23],[-49,-26],[-95,13],[-112,-13],[-64,-57],[-117,-14],[-36,33],[-45,-1],[-50,44],[1,42],[-68,39],[-47,10]],[[12930,15782],[22,22],[45,127],[-23,43],[51,31],[-4,52],[-42,47],[10,41],[90,24]],[[7995,10497],[17,-93],[24,-33],[0,-62],[-38,-45],[46,-15],[40,-44],[-32,-61],[-77,-69],[-19,-40],[30,-52],[-69,-24],[-16,-107],[186,-54],[-72,-84],[-54,-2],[10,-59],[-56,-16],[-19,-51],[-46,-63],[-3,-74],[74,-31],[31,-88],[-39,-89],[16,-102],[-30,-31],[-17,-91],[32,-50],[-33,-82],[-42,-30],[-99,-15],[29,-59],[109,-37],[91,7],[62,-52],[-88,-57],[-1,-122],[14,-38],[6,-139]],[[8574,5465],[-85,15],[-48,55],[-37,10],[-35,-28],[-46,36],[-87,8],[-57,-118],[-7,-39],[-131,-60],[-23,-57],[7,-47],[40,-27],[-18,-112],[-73,-77],[-41,-7],[-4,-54],[39,-17],[79,11],[105,-25],[35,-53],[-66,-90],[-22,-52],[-78,-27],[-71,5],[-50,-144],[-162,28],[-119,-36],[-23,-36],[-62,72],[-89,-18],[-16,-54],[-44,-68],[18,-43],[-208,-2],[-47,11],[-11,53],[-31,25],[-69,-36]],[[7037,4467],[-17,82],[-59,-17],[-52,64],[-48,-1],[-30,58],[-65,-12],[0,109],[-67,-35],[-46,-7],[-86,14],[-45,40],[-25,82],[-67,-12],[-70,73],[-50,8],[-81,123],[-45,5],[-45,86],[-7,88],[-56,13],[-29,51],[-49,18],[-11,47],[-76,46],[-56,-15],[2,50],[-40,-1],[2,65],[-122,-28]],[[5697,5461],[-48,124],[-49,265],[-30,93],[-17,100],[25,55],[-32,13],[-12,115],[48,33],[-67,25],[-30,157],[-41,103],[-43,37],[-62,265],[-25,28],[-14,88],[-35,93],[-22,4],[-45,95],[-14,94],[-50,9],[-82,49],[15,43],[-32,57]],[[5062,8094],[7,66],[28,24],[107,-9],[51,22],[31,76],[-15,26],[56,69],[28,87],[-67,-11],[-16,23],[54,46],[47,-21],[16,123],[-137,62],[-21,57],[13,90],[-38,20],[-15,42],[47,30],[46,-24],[15,47],[79,44],[48,5],[20,-74],[103,58],[-29,20],[101,101],[118,34],[-4,64],[79,82],[78,-23],[66,-51],[50,-22],[45,31],[2,72],[52,-1],[105,30],[22,-37],[66,17],[64,-11],[20,29],[5,118],[-37,43],[28,48],[-5,52],[-45,30],[26,158],[150,-98],[9,46],[63,-13],[-1,-47],[32,-27],[163,38],[36,-23],[56,21],[40,-30],[91,-17],[-17,58],[10,53],[-20,35],[-16,111],[72,9],[11,36],[48,23],[2,40],[32,41],[68,-2],[76,-46],[82,110],[-43,28],[99,37],[51,36],[4,87],[29,4],[2,134],[89,-29],[70,49],[33,68],[24,-3],[29,119],[62,28],[75,-38],[6,-89],[50,-36],[72,28]],[[7037,4467],[-2,-31],[-106,-55],[-23,25],[-39,-25],[28,-83],[89,-23],[75,-61],[77,-27],[-21,-81],[-58,-29],[-3,-28],[155,-12],[63,41],[25,-22],[-34,-45],[47,-43],[-6,-42],[-37,-42],[-37,-81],[73,-43],[73,-18],[69,-82],[-19,-59],[-2,-70],[-37,-40],[-10,-134],[19,-71],[-17,-59],[62,-57],[77,-11],[55,49],[100,66],[75,-84],[12,-67],[-9,-62],[-56,-15],[52,-72],[11,-48],[-53,-89],[21,-21],[-13,-110],[-36,-67],[49,-69],[70,19],[31,-14],[36,-106],[-52,-51],[-1,-49],[-45,-55],[-13,-135],[-48,-50],[-13,-39],[-41,-31],[99,-163],[-60,-89],[19,-85],[57,-94],[-15,-33],[-48,-12],[-2,-49],[-57,-102],[-35,-36]],[[7608,1396],[-86,79],[-92,111],[-237,324],[-52,31],[-25,96],[-137,324],[-23,64],[-40,228],[-10,123],[-30,147],[-35,73],[-30,127],[-23,40],[-30,119],[-54,146],[-14,7],[-86,212],[-18,29],[-60,288],[-30,60],[-50,162],[-54,85],[-47,23],[-72,197]],[[6273,4491],[-7,12]],[[6266,4503],[-56,53],[-68,88],[-45,31],[-70,110],[-40,2],[-96,247],[-93,181],[-72,187],[-29,59]],[[5047,4047],[-77,33],[-40,59],[23,42],[84,-49],[28,-58],[-18,-27]],[[3119,4621],[-53,0],[-41,114],[44,38],[50,-152]],[[3478,2961],[-17,41],[76,68],[7,-29],[-35,-63],[-31,-17]],[[3405,4308],[-36,56],[50,34],[-14,-90]],[[3334,4036],[-11,-46],[-34,-13],[-15,55],[60,4]],[[3167,5030],[-18,99],[40,-14],[-22,-85]],[[10651,13262],[-54,-6],[-63,59],[-61,12],[-31,32],[-35,75],[-94,90],[-62,13],[-59,-23],[-47,-49],[-117,-1],[-60,-21],[-56,46],[-50,19],[-70,-40],[-64,-14],[-60,43],[-15,76],[-80,0],[-137,37],[-15,-59],[-59,9],[-38,-46],[-80,-8],[-30,15],[-53,-49],[16,-69],[-146,2],[-32,-23],[-88,12],[-96,46],[-60,-23],[-13,89],[-53,-21],[-154,-18],[-10,-55],[-90,-54],[-141,-55],[-91,11],[-105,-16],[-21,18],[-74,5],[-103,68],[-13,63],[69,11],[54,-23],[-7,127],[-53,73],[-188,9],[-17,-40],[-43,-19],[-74,28],[-44,-3],[-62,-37],[-90,-73],[-83,-3],[-27,-68],[24,-30],[-51,-74],[-91,-72],[30,-43],[-32,-81],[-113,4],[-33,-75],[-65,-34],[-81,-2],[-84,13],[-41,33],[26,41],[-6,80],[-52,104],[-40,-19],[-71,38],[-69,5],[-48,-15],[-182,9],[-61,-19],[-69,20],[-72,-8],[-140,23],[-97,54],[-42,86],[-169,61],[-31,-19],[-94,14],[-107,35],[-35,51],[-31,3],[-8,76],[21,92],[-65,54],[-14,58],[-40,-10],[-83,-76],[-74,-10],[-51,26]],[[5234,14835],[58,45],[65,-24],[59,14],[62,40],[52,51],[66,10],[-38,54],[-59,-8],[-72,22],[-12,33],[68,126],[204,87],[30,44],[46,22],[-14,35],[14,60],[-30,121],[8,41],[68,106],[-29,73],[-51,59],[-40,87],[-84,8],[26,81],[62,76],[-37,37],[-49,-3],[-7,98],[59,68],[-35,14],[36,72],[47,-88],[60,-6],[48,42],[12,77],[-93,4],[-40,14],[-26,78],[34,35],[66,-54],[85,-17],[64,27],[1,79],[30,48],[133,16],[23,-76],[-9,-69],[77,-21],[-99,-44],[-51,41],[-42,-65],[31,-49],[191,-39],[111,27],[27,-31],[110,65],[38,5],[45,-33],[12,-105],[50,-34],[12,-35],[-19,-84],[-64,-21],[-36,33],[-43,-50],[25,-85],[41,-9],[-7,-64],[-27,-8],[-26,-74],[31,-71],[-15,-58],[-53,-27],[-159,73],[-43,-62],[-7,-54],[91,-57],[17,-53],[57,-1],[175,86],[21,-8],[84,43],[-14,85],[72,44],[78,19],[-10,100],[61,72],[10,-47],[60,-15],[66,30],[50,-36],[44,17],[51,-59],[80,90],[74,-13],[-25,-50],[40,-29],[41,3],[19,-35],[93,4],[38,62],[-59,66],[-32,81],[12,99],[-31,59],[27,15],[62,-14],[-4,-43],[39,-25],[77,60],[8,105],[-34,66],[-148,50],[-38,52],[80,12],[46,30],[-66,74],[-2,52],[98,60],[80,-18],[69,28],[10,23],[79,5],[35,-32],[72,34],[16,95],[-48,42],[22,31],[-27,74],[-33,44],[-73,-57],[-2,-38],[-55,-17],[-66,25],[-44,-36],[-56,-3],[-99,30],[-60,-13],[-79,27],[-67,40],[-11,38],[-59,90],[-8,130],[16,114],[96,98],[79,-3],[52,38],[86,139],[85,37],[25,34],[62,18],[15,33],[69,4],[62,36],[44,64],[94,55],[81,7],[127,87],[58,30],[63,11],[7,41],[50,18],[97,75],[82,-14],[6,93],[72,11],[26,32]],[[8563,18266],[39,-15],[23,40],[68,7],[20,-40],[154,-64],[80,11],[48,28],[82,-32],[46,-55],[33,8],[68,-25],[19,-69],[-7,-54],[54,-43],[-12,-38],[59,-98],[-50,-64],[-49,-117],[-48,-16],[50,-51],[-50,-40],[-1,-42],[-109,-146],[-47,-100],[43,-42],[-14,-52],[-101,-21],[-24,-26],[-143,13],[-62,-43],[11,-48],[-74,-44],[-35,-58],[31,-28],[46,-129],[49,-34],[-100,-67],[2,-77],[-135,-104],[48,-99],[0,-36],[36,-61],[-11,-107],[-27,-10],[37,-85],[81,-63],[-30,-36],[50,-59],[42,22],[56,88],[67,-34],[33,-55],[70,-56],[47,11],[26,-56],[63,26],[42,79],[52,51],[17,65],[-40,16],[4,98],[-55,78],[-43,-28],[-68,-6],[-10,52],[28,41],[-7,143],[-82,37],[-37,54],[15,91],[-39,33],[-2,54],[-63,119],[48,58],[23,59],[47,-27],[91,-26],[0,65],[-34,30],[129,55],[56,7],[-11,-94],[-46,-37],[-70,-86],[36,-54],[43,103],[73,-51],[-53,-15],[-35,-77],[73,28],[29,50],[34,-37],[-2,-44],[56,-9],[37,-59],[55,15],[67,-7],[33,29],[-32,53],[54,18],[-69,73],[63,20],[86,-82],[-43,-65],[5,-46],[85,-34],[52,79],[99,-38],[63,14],[75,-39],[28,51],[-13,73],[130,31],[20,66],[91,-2],[53,60],[103,-13],[2,-100],[77,-56],[19,-42],[-65,-31],[-3,-74],[42,12],[71,-72],[25,47],[62,40],[14,61],[67,-92],[66,79],[58,-10],[43,53],[1,-107],[-17,-62],[5,-61],[69,34],[14,-30],[105,11],[44,-53],[29,59],[85,100],[-13,34],[19,54],[69,2],[34,-39],[81,-45],[7,67],[35,34],[74,-27],[-24,-30],[47,-44],[124,-59],[32,9],[62,-33],[1,-90],[44,-41],[43,11],[92,-53],[82,5],[29,-88],[48,-67],[94,-27],[-6,78],[16,20],[93,-49],[116,44],[23,-46],[63,-7],[30,-81],[-73,4],[9,-119],[29,-48],[3,-73],[-31,-63],[-16,-130],[39,-6],[-7,-55],[47,-11],[5,-34]],[[10319,10888],[-137,-37],[-81,81],[-68,16],[-33,42],[39,25],[-12,167],[-55,16],[-3,40],[72,65],[-19,46],[45,159],[-53,83],[-70,40],[-44,55],[-133,-29],[-18,-52],[-50,37],[-61,-47],[-184,103],[-16,-77],[-41,-61],[-74,62],[-72,11],[-35,36],[-7,63],[-46,17],[-48,-10],[-12,92],[-273,58],[-110,13],[-11,39],[-41,3],[27,-92],[-20,-62],[-50,-21],[21,-78],[-12,-42],[10,-92],[-72,-21],[-32,-35],[9,-58],[-12,-82],[-118,27],[-83,64],[-75,-36],[6,-51],[-20,-53],[1,-67],[-72,-47],[5,-73],[74,-27],[39,-76],[-53,-56],[-44,-102],[-45,-17],[12,-79],[-77,-56],[-51,18],[-23,-73],[10,-22],[-47,-94],[19,-44]],[[4683,8163],[-40,116],[-34,50],[-65,26],[-22,33],[-11,110],[-20,47],[-55,192],[-61,164],[33,74],[-42,112],[11,49],[-30,87],[11,75],[-11,124],[-53,149],[19,41],[-46,58],[-4,113],[-34,37],[1,50],[-24,81],[18,23],[-53,145],[-36,54],[-19,99],[-35,76],[5,64],[-37,74],[25,32],[-42,39],[-18,91],[13,109],[-34,38],[-13,66],[11,101],[-46,82],[5,208],[-26,23],[-2,138],[13,28],[-36,39],[-8,103],[-33,61],[9,60],[-38,86],[9,72],[-36,42],[24,31],[-3,63],[56,-30],[31,27],[-44,36],[-13,93],[22,51]],[[22624,17012],[-72,-155],[2,-85],[123,-54],[-3,-101],[-34,-52],[-9,-62],[-43,-47],[-26,-115],[-51,-5],[-26,-91],[-47,-37],[-47,-96],[-21,-78],[-30,-38],[-76,-159],[-15,-112],[-64,-105],[-7,-69],[-33,-9],[-23,46],[-67,37],[-104,19],[-75,-19],[-39,64],[-124,7],[-6,-34],[-68,-12],[-49,10],[-49,99],[-52,16],[-14,-40]],[[21475,15735],[-103,-3],[-75,13],[-122,60],[32,80],[-13,57],[23,35],[-29,77]],[[21593,16878],[25,-51],[51,-6],[38,-41],[67,118],[81,84],[28,55],[-43,28],[62,43],[110,-6],[40,17],[68,-39],[84,-2],[28,-31],[68,-2],[105,53],[41,62],[105,60],[-35,-92],[1,-67],[58,-40],[49,-9]],[[20697,16627],[-165,61],[-132,81],[-54,3],[-175,-18],[-51,2],[-89,-43],[-34,45],[-93,-36],[-68,34],[-59,0],[-69,32],[-171,-14],[-133,-27],[-183,-2],[-49,12],[-108,-4],[-56,-23],[-97,44],[-187,30],[-45,29],[-129,47],[-33,-19],[-48,75],[34,98]],[[21475,15735],[0,-64],[52,-48],[0,-96],[29,-221],[-22,-67],[-24,-160],[13,-98],[-31,-133],[-48,-64],[-42,-1],[-40,46],[-62,-9],[-4,-42],[29,-79],[-54,-94],[11,-60],[-12,-39],[40,-105],[-25,-29],[16,-72],[48,-44],[9,-133],[-43,-30],[10,-59],[-93,19],[-6,-59],[-40,-75],[-90,-40],[-66,76],[-93,53],[-16,-102],[-51,-51],[-24,25],[8,105],[-22,170],[-22,94],[-31,259],[-35,45],[-20,61],[2,51],[-71,55],[18,107],[-34,166],[31,27],[-12,99],[-38,84],[-21,114],[-27,49],[15,40],[-24,33]],[[20563,15439],[-8,81],[61,88],[-5,268],[-24,42]],[[23099,18129],[-71,-61],[0,-35],[-73,-104],[57,-72],[-9,-261],[50,-15],[-17,-46],[-50,-60],[-67,-44],[-11,-44],[32,-100],[-101,-89],[-12,-45],[-72,-58],[-20,-50],[-111,-33]],[[7691,20114],[6,-59],[114,-101],[-28,-118],[36,-48]],[[9959,3850],[-3,-147]],[[9956,3703],[-25,55],[-65,23],[-20,50],[29,34],[84,-15]],[[6273,4491],[-7,12]],[[9920,4618],[-10,-43]],[[9910,4575],[-62,11],[14,42],[58,-10]],[[9948,4729],[-27,-109]],[[9921,4620],[-28,3],[-2,-1],[-66,44],[-2,-1],[23,98],[36,-44],[66,10]],[[9963,4775],[15,35]],[[9978,4810],[-15,-35]],[[5412,21098],[-229,11],[-156,13],[-152,2],[6,76],[55,67],[4,62]],[[4940,21329],[-8,60],[-51,80],[51,67],[4,58],[38,40],[44,-10],[30,71],[82,63],[66,82],[44,82],[38,42],[46,15],[29,53],[77,26],[13,51],[88,1],[20,68],[-148,6],[4,125],[26,85],[86,87],[-58,53],[29,41],[-57,47],[-15,57],[-43,38],[68,34],[4,65],[82,73],[128,47],[14,29],[92,66],[58,-21],[108,36],[90,6],[37,26],[42,91],[40,18],[-44,52],[10,42]],[[7765,19149],[25,-17],[32,-123],[-14,-51],[12,-66],[31,-5],[46,-52],[1,-57],[56,-16],[66,-50],[60,-80],[9,-58],[-49,-42],[-46,-12],[13,-61],[83,-24],[30,-39],[-96,-44],[-83,-25],[-55,-55],[9,-52],[30,-15],[49,48],[75,11],[92,43],[42,51],[91,-29],[146,9],[38,-13],[45,51],[80,-22],[-20,-88]],[[2481,16315],[-29,29],[-32,79],[-77,124],[-43,191],[-116,119],[-12,42],[-60,63],[7,247],[-13,33],[-55,6],[-60,-24],[-114,-11],[-98,32],[-34,62],[-57,49],[-60,95],[-11,139],[53,75],[21,55],[-6,64],[15,55],[-8,172],[-64,40],[-43,6],[-144,-19],[-67,17],[-77,57],[-168,73],[-26,60],[27,188],[63,153],[99,93],[142,113],[59,85],[72,54],[94,223],[77,83],[73,46],[54,58],[105,22],[82,-24],[72,-78],[9,-87],[68,-94],[118,-14],[259,112],[172,37],[212,2],[205,79],[29,150],[57,79],[111,86],[65,74],[91,269],[81,88],[101,46],[190,108],[173,74],[42,100],[73,85],[159,282],[30,82],[75,266],[12,16],[182,71],[156,43],[148,114]],[[17566,18555],[-29,-4],[-108,46],[-136,-103],[-109,43],[-130,-16],[-54,25],[-26,68],[-42,3]],[[16932,18617],[39,102],[-15,35],[22,53],[-20,62],[89,159],[8,61],[32,48],[3,57],[-58,20],[12,82],[89,-13],[80,36],[44,-10],[79,62],[44,-8],[36,45],[53,17],[25,-28],[72,-1],[77,-75],[-4,-53],[37,-34],[-21,-70],[6,-72],[-14,-64],[-68,-94],[18,-33],[-4,-67],[22,-46],[40,-16],[29,-46],[8,-56],[-84,-25],[-14,-60],[-28,-30]],[[9510,2311],[3,-60],[-103,53],[100,7]],[[9921,4620],[-1,-2]],[[9910,4575],[-31,-157],[3,-68],[64,-166],[0,-66],[17,-120],[-4,-148]],[[9956,3703],[1,-100],[17,-342],[8,-46],[-70,-17],[-307,48],[-43,-2],[-96,-76],[-30,-58],[-12,-65],[32,-61],[-36,-27],[-82,-107],[-2,-28],[-58,-79],[-55,-54],[-56,-114],[-21,-118],[74,-94],[91,-86],[-91,14],[-94,-17],[-175,-57],[-18,-33],[-66,-27],[-40,8],[-90,-21],[-120,-83],[-59,-55],[-35,-74],[3,-104],[-42,-119],[14,-40],[-8,-84],[-56,-75],[-23,-53],[-56,-22],[-90,-67],[-47,-13],[-70,-70],[-122,-25],[-29,-57],[-44,1],[-159,37],[-35,39],[-77,51],[-74,65]],[[10315,6193],[27,-80],[-11,-66],[34,-16],[12,-104],[-38,-138],[-32,-165],[-5,-155],[-99,-305],[-102,-137],[-123,-217]],[[9963,4775],[-15,-46]],[[11275,10061],[82,-3],[80,23],[31,-11],[44,56],[35,-15],[47,30]],[[20563,15439],[-112,-15],[-48,-53],[-58,13],[-25,61],[-37,-60],[33,-166],[-28,-39],[-46,-5],[-89,-116],[3,-68],[25,-120],[-90,-102],[-80,-40],[-65,49],[3,32],[-27,101],[-52,104],[-34,3],[-28,-60],[21,-93],[-45,2],[-24,63],[-1,67],[-23,102],[-43,127],[-74,101],[1,132],[54,-1],[23,84],[-18,44],[44,86],[67,5],[56,112],[107,-30],[44,5],[34,36],[15,59],[90,-33],[-16,87],[70,-29],[50,-66],[22,7],[25,115],[-15,59],[40,39],[103,-7],[66,43],[-15,74],[67,-1]],[[10145,20084],[54,-6],[56,-51],[41,-7],[65,-56],[42,-58],[76,-8],[82,61],[63,-50],[33,2],[28,-58],[59,-11],[13,-35],[47,-24],[43,6],[15,-43],[90,-9],[81,-65],[89,-16],[22,-70],[68,-72],[9,-59],[84,31],[47,-52],[-5,-28],[132,-74],[58,-12],[69,-63],[93,-57],[33,2],[36,64],[89,-6],[44,-52],[69,-19],[154,-119],[61,-35],[198,37],[45,-77],[2,-120],[154,0],[18,-24],[90,-23],[112,4],[76,-66],[33,-47],[39,10],[42,54],[-4,72],[177,-7],[183,-87],[37,-27]],[[8015,21513],[62,5],[64,-65],[176,-75],[-18,-63],[-65,-85],[-53,-43],[-47,-162],[52,-75],[-6,-64],[65,-40],[34,28],[61,-14],[27,-41],[2,-80],[160,114],[56,22],[86,84],[133,-50],[20,-82],[55,-64],[100,-66],[177,-48],[-37,-64],[-111,-66],[74,-55],[43,-3],[34,-78],[144,-10],[59,-30],[-6,-34],[123,-107],[105,-29],[8,-70],[82,7],[22,24],[114,-38],[92,40],[57,-76],[61,-40],[15,-35],[50,-8],[60,107]],[[9164,22291],[20,72],[43,17],[66,105],[61,-31],[102,-129],[44,-134],[70,-28],[26,-74],[76,1],[27,-60],[48,-27],[127,57],[97,-23],[54,-80],[110,-44],[51,-59],[48,30],[66,-65],[-24,-87],[1,-58],[58,-7],[77,-43],[100,-33],[38,-27],[54,19],[118,-72],[68,-75],[156,-45],[29,-61],[-149,-24],[6,-37],[-96,-76],[-16,-41],[-53,-38],[-45,3],[-48,-37],[-15,-63],[-56,-55],[-68,-4],[-34,-58],[46,-82],[-9,-34],[-55,-46],[-40,-56],[-21,-84],[33,-65],[-16,-79],[-38,-17],[16,-67],[-70,-9],[-46,-55],[-13,-80],[-46,-60],[3,-82]],[[17376,13541],[40,-25],[-29,-43],[-34,35],[23,33]],[[17822,13617],[29,-77],[-57,6],[-7,59],[35,12]],[[17384,13630],[34,-34],[-38,-54],[-21,66],[25,22]],[[17106,13654],[44,-31],[34,-51],[-17,-99],[-37,0],[-27,51],[14,45],[-11,85]],[[17628,13657],[24,-112],[-44,-2],[20,114]],[[17529,13695],[37,-44],[1,-67],[-42,4],[-14,49],[18,58]],[[17200,13743],[26,-58],[-49,-32],[-32,48],[55,42]],[[17649,13748],[18,-13],[12,-81],[-48,18],[18,76]],[[17034,13756],[30,-118],[-14,-84],[-34,-24],[-63,21],[2,62],[79,143]],[[17754,13773],[44,-28],[-9,-41],[-59,22],[24,47]],[[17299,13784],[38,-50],[-41,-44],[-43,28],[46,66]],[[17531,13786],[48,-39],[2,-39],[-44,-25],[-25,44],[19,59]],[[17632,13796],[67,9],[53,-55],[-74,-51],[-46,97]],[[17481,13888],[48,-17],[-32,-53],[-39,9],[23,61]],[[17612,13888],[74,-6],[6,-76],[-43,-9],[-89,36],[8,50],[44,5]],[[17785,13917],[53,-59],[-12,-47],[-76,54],[35,52]],[[17656,14022],[50,-53],[-43,-19],[-23,31],[16,41]],[[17729,14042],[30,-37],[-23,-80],[29,-139],[-52,32],[-25,110],[6,64],[35,50]],[[17773,14051],[25,-95],[-43,-14],[18,109]],[[17511,14060],[81,-36],[-86,-72],[35,-47],[-57,-13],[-25,75],[16,52],[36,41]],[[17759,14218],[10,-91],[62,-84],[-87,23],[-17,37],[6,96],[26,19]],[[17684,14370],[6,-125],[-37,1],[5,107],[26,17]],[[17703,14385],[31,-13],[35,-112],[-29,-20],[-17,-87],[-40,63],[26,23],[-27,55],[21,91]],[[17566,18555],[100,-36],[8,-64],[58,-56],[32,-51],[37,15],[49,-37],[37,-80],[105,7],[58,33],[178,-31],[107,-43],[-10,-22],[183,-40]],[[18389,17661],[-30,46],[-40,-1],[-36,-49],[18,-90],[-59,-58],[-101,15],[-64,-4],[-64,38],[-50,67],[-53,12],[-18,93],[-29,43],[-13,101],[-90,18],[-59,-12],[3,-40],[60,-15],[11,-46],[-27,-49],[-40,40],[-141,23],[-46,23],[-17,67],[-97,44],[-76,76],[-47,23],[-29,45],[-31,-97],[16,-23],[94,-23],[30,-69],[-60,-21],[-75,-61],[-29,-80],[-67,-12],[-59,-41],[-17,-38],[14,-76],[-47,-49],[-26,-67],[19,-90],[81,-8],[51,20],[25,-45],[65,-41],[63,-102],[41,-20],[47,-58],[46,-2],[35,-28],[103,12],[57,-14],[10,-105],[36,-36],[99,-24],[-42,-49],[7,-32],[-38,-41],[-61,40],[-34,-33],[-104,33],[-53,-4],[-48,-28],[-69,35],[-38,-11],[7,-152],[-46,-82],[-43,-3],[-9,-62],[-51,17],[-48,61],[-38,-12],[-12,-86],[-127,-164],[77,-112],[78,-75],[64,-20],[63,-59],[72,2],[124,-52],[131,-22],[13,-34],[-10,-149],[10,-75],[-4,-90],[-134,-50],[4,-64],[-17,-130],[70,-34],[16,-54],[69,-62],[18,-35],[-1,-68],[-56,-68],[20,-37],[55,-32],[109,12],[41,-37],[-25,-46],[-53,-39],[-1,-116],[24,-18],[11,-65],[49,-32],[-40,-98],[33,-39],[-26,-49],[5,-63],[-58,-23],[-18,-105],[11,-59],[65,-62],[-30,-110],[-30,17],[-67,-15],[-99,24],[-45,-91],[13,-57],[-31,-68],[3,-56],[-63,-48],[-47,38],[-49,5],[-26,-56],[-64,15],[-80,-83],[-46,104],[-8,73],[51,69],[-40,35],[-97,-55],[-79,-170],[-106,-100],[-145,-76],[-151,-27]],[[16482,13509],[-13,99],[-23,49],[-60,5],[-79,30],[-31,52],[-8,89],[-121,-42],[1,-44],[-55,5],[-27,38],[31,74],[-14,48],[-52,38],[-129,28],[-13,36],[-64,-9],[6,65]],[[17013,18000],[64,164],[-12,136],[-24,19],[-8,83],[-76,53],[-45,63],[20,99]],[[16482,13509],[-81,-55],[-134,-5],[-75,-27],[-174,-141],[-69,-119],[-20,-59],[28,-103],[89,-167],[-5,-61],[22,-27],[13,-73],[-194,-141],[-42,-62],[-4,-45],[40,-27],[3,-50],[-150,-90],[-69,-54],[-41,-69],[-43,-36],[-54,-95],[-58,-12],[-59,-37],[-157,-48],[-126,-22],[-172,-60],[-114,-63],[-181,-89],[-117,-82],[-98,-83],[-6,-21],[-107,-69],[-65,-55],[-70,-82],[-34,-67]]],"transform":{"scale":[0.0011708194773641706,0.0010989699384745485],"translate":[68.19264199303359,6.757034477359298]},"objects":{"polygons":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]]],"type":"MultiPolygon","properties":{"ST_NM":"Andaman & Nicobar Island"}},{"arcs":[[[16]],[[17,18,19,20,21]]],"type":"MultiPolygon","properties":{"ST_NM":"Andhra Pradesh"}},{"arcs":[[22,23,24]],"type":"Polygon","properties":{"ST_NM":"Arunanchal Pradesh"}},{"arcs":[[25,26,27,28,29,30,31,32,33,-24]],"type":"Polygon","properties":{"ST_NM":"Assam"}},{"arcs":[[34,35,36,37]],"type":"Polygon","properties":{"ST_NM":"Bihar"}},{"arcs":[[38,39]],"type":"Polygon","properties":{"ST_NM":"Chandigarh"}},{"arcs":[[40,41,42,43,44,45]],"type":"Polygon","properties":{"ST_NM":"Chhattisgarh"}},{"arcs":[[46,47]],"type":"Polygon","properties":{"ST_NM":"Dadara & Nagar Havelli"}},{"arcs":[[48,49]],"type":"Polygon","properties":{"ST_NM":"Daman & Diu"}},{"arcs":[[52,53,54]],"type":"Polygon","properties":{"ST_NM":"Goa"}},{"arcs":[[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62,-51,63,64,65,66,-48,67,68,-50,69]]],"type":"MultiPolygon","properties":{"ST_NM":"Gujarat"}},{"arcs":[[70,71,72,73,74,-39,75,76]],"type":"Polygon","properties":{"ST_NM":"Haryana"}},{"arcs":[[77,78,79,-77,80,81]],"type":"Polygon","properties":{"ST_NM":"Himachal Pradesh"}},{"arcs":[[-82,82,83]],"type":"Polygon","properties":{"ST_NM":"Jammu & Kashmir"}},{"arcs":[[84,85,-46,86,-36]],"type":"Polygon","properties":{"ST_NM":"Jharkhand"}},{"arcs":[[87,-20,88,89,90,-53,91]],"type":"Polygon","properties":{"ST_NM":"Karnataka"}},{"arcs":[[92,93,94,95,-90]],"type":"Polygon","properties":{"ST_NM":"Kerala"}},{"arcs":[[[96]],[[97]],[[98]],[[99]],[[100]],[[101]]],"type":"MultiPolygon","properties":{"ST_NM":"Lakshadweep"}},{"arcs":[[-44,102,-66,103,104]],"type":"Polygon","properties":{"ST_NM":"Madhya Pradesh"}},{"arcs":[[-43,105,-92,-55,106,-68,-47,-67,-103]],"type":"Polygon","properties":{"ST_NM":"Maharashtra"}},{"arcs":[[107,108,-27,109]],"type":"Polygon","properties":{"ST_NM":"Manipur"}},{"arcs":[[110,-31]],"type":"Polygon","properties":{"ST_NM":"Meghalaya"}},{"arcs":[[-109,111,112,-28]],"type":"Polygon","properties":{"ST_NM":"Mizoram"}},{"arcs":[[113,-110,-26,-23]],"type":"Polygon","properties":{"ST_NM":"Nagaland"}},{"arcs":[[114,-72]],"type":"Polygon","properties":{"ST_NM":"NCT of Delhi"}},{"arcs":[[[115,116]],[[118,119]],[[120,121]]],"type":"MultiPolygon","properties":{"ST_NM":"Puducherry"}},{"arcs":[[-76,-40,-75,124,125,-83,-81]],"type":"Polygon","properties":{"ST_NM":"Punjab"}},{"arcs":[[-74,126,-104,-65,127,-125]],"type":"Polygon","properties":{"ST_NM":"Rajasthan"}},{"arcs":[[128,129]],"type":"Polygon","properties":{"ST_NM":"Sikkim"}},{"arcs":[[[130]],[[-122,131,-120,132,-117,133,-93,-89,-19,134,-123,135]]],"type":"MultiPolygon","properties":{"ST_NM":"Tamil Nadu"}},{"arcs":[[-42,136,-21,-88,-106]],"type":"Polygon","properties":{"ST_NM":"Telangana"}},{"arcs":[[-29,-113,137]],"type":"Polygon","properties":{"ST_NM":"Tripura"}},{"arcs":[[138,-37,-87,-45,-105,-127,-73,-115,-71,-80,139]],"type":"Polygon","properties":{"ST_NM":"Uttar Pradesh"}},{"arcs":[[-140,-79,140]],"type":"Polygon","properties":{"ST_NM":"Uttarakhand"}},{"arcs":[[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164,-33,165,166,-85,-35,167,-129]]],"type":"MultiPolygon","properties":{"ST_NM":"West Bengal"}},{"arcs":[[-167,168,-22,-137,-41,-86]],"type":"Polygon","properties":{"ST_NM":"Odisha"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment