Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created May 31, 2013 02:52
Show Gist options
  • Save erikhazzard/5682699 to your computer and use it in GitHub Desktop.
Save erikhazzard/5682699 to your computer and use it in GitHub Desktop.
obesity map
{"description":"obesity map","endpoint":"","display":"svg","public":true,"require":[{"name":"cartogram","url":"http://enjalot.github.io/d3-cartogram/cartogram.js"},{"name":"colorbrewer","url":"http://enjalot.github.io/d3-cartogram/lib/colorbrewer.js"},{"name":"topojson","url":"http://enjalot.github.io/d3-cartogram/lib/topojson.js"}],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"obesity.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12},"us.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":true,"loop":true,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01}
//from http://blog.milesgrimshaw.com/2013/03/14/obesity-in-the-usa/
//and http://prag.ma/code/d3-cartogram/?segmentized#netmigrate/2011
//inspired by https://plus.google.com/+avinash/posts/2ssDxtgp15K
var topology = tributary.us;
var geometries = topology.objects.states.geometries;
var data = tributary.obesity;
colors = ["#ffffff","#ff0000", "#000000"]
var year0 = 1995
var year1 = 2010
var yearScale = d3.scale.linear()
.domain([0,1])
.range([year0, year1])
year = year0;
tributary.loop_type = "none";
tributary.duration = 20000;
var duration = tributary.duration/(year1-year0) - 50;
var svg = d3.select("svg");
rawData = data;
dataById = d3.nest()
.key(function(d) { return d.state; })
//.rollup(function(d) { return d[0]; })
.map(data);
var field = "obese";
var proj = d3.geo.albersUsa();
var carto = d3.cartogram()
.projection(proj)
.properties(function(d) {
return dataById[d.id.toLowerCase()];
})
.value(function(d) {
//console.log(d);
return +d.properties[field];
});
var zoom = d3.behavior.zoom()
.translate([-38, 32])
.scale(.94)
.scaleExtent([0.5, 10.0])
var yearTitle = svg.append("text")
.classed("year", true)
.text(year)
.attr({
x: tributary.sw - 250,
y: tributary.sh - 50
})
var proj = d3.geo.albersUsa();
carto = d3.cartogram()
.projection(proj)
.properties(function(d) {
return dataById[d.id.toLowerCase()];
})
.value(function(d) {
return +d.properties[field];
});
tributary.init = function(g) {
var map = g.append("g").classed("map", true);
var layer = map.append("g")
.attr("class", "layer");
var states = layer.append("g")
.attr("class", "states")
.selectAll("path");
var features = carto.features(topology, geometries),
path = d3.geo.path()
.projection(proj);
states = g.select("g.states").selectAll("path");
states = states.data(features)
.enter()
.append("path")
.attr("class", "state")
.attr("id", function(d) {
return d.id.toLowerCase();
})
.attr("fill", "#fafafa")
.attr("d", path);
states.append("title");
if(!tributary.bv) {
states.style("fill-opacity", 1)
}
// map.call(zoom);
updateZoom(g);
}
var lastyear = year-1;
tributary.run = function(g,t,i) {
year = Math.floor(yearScale(t));
//console.log(year, lastyear);
if(year != lastyear || i > 0) {
update(g);
d3.select("text.year").text(year);
}
lastyear = year;
}
function updateZoom(g) {
var scale = zoom.scale();
g.select("g.layer").attr("transform",
"translate(" + zoom.translate() + ") " +
"scale(" + [scale, scale] + ")");
}
function update(g) {
states = g.select("g.states").selectAll("path");
var start = Date.now();
var fmt = (typeof field.format === "function")
? field.format
: d3.format(field.format || ","),
value = function(d) {
return d3.max(d.properties, function(d) {
if(d.year === year) return d.obese
return 0;
})
},
values = states.data()
.map(value)
.filter(function(n) {
return !isNaN(n);
})
.sort(d3.ascending),
lo = values[0],
hi = values[values.length - 1];
hi = 40;
console.log(lo, d3.mean(values), hi)
var color = d3.scale.linear()
.range(colors)
.domain(lo < 0
? [lo, 0, hi]
: [lo, d3.mean(values), hi]);
// : [0, d3.mean(values), hi]);
// normalize the scale to positive numbers
var scale = d3.scale.linear()
.domain([lo, hi])
.range([1, 1000]);
// tell the cartogram to use the scaled values
carto.value(function(d) {
return scale(value(d));
});
// generate the new features, pre-projected
var features = carto(topology, geometries).features;
// update the data
states.data(features)
.select("title")
.text(function(d) {
return [d.properties.NAME, fmt(value(d))].join(": ");
});
states.transition()
.duration(duration)
.ease("linear")
.attr("fill", function(d) {
return color(value(d));
})
.attr("d", carto.path);
var delta = (Date.now() - start) / 1000;
//stat.text(["calculated in", delta.toFixed(1), "seconds"].join(" "));
}
var deferredUpdate = (function() {
var timeout;
return function() {
var args = arguments;
clearTimeout(timeout);
// stat.text("calculating...");
return timeout = setTimeout(function() {
update.apply(null, arguments);
}, 10);
};
})();
[{"state":"alabama","year":1995,"obese":18.7},
{"state":"alabama","year":1996,"obese":20.5},
{"state":"alabama","year":1997,"obese":18.2},
{"state":"alabama","year":1998,"obese":21.3},
{"state":"alabama","year":1999,"obese":22.4},
{"state":"alabama","year":2000,"obese":23.9},
{"state":"alabama","year":2001,"obese":24.5},
{"state":"alabama","year":2002,"obese":25.7},
{"state":"alabama","year":2003,"obese":28.4},
{"state":"alabama","year":2004,"obese":28.8},
{"state":"alabama","year":2005,"obese":28.9},
{"state":"alabama","year":2006,"obese":30.5},
{"state":"alabama","year":2007,"obese":30.9},
{"state":"alabama","year":2008,"obese":32.2},
{"state":"alabama","year":2009,"obese":31.6},
{"state":"alabama","year":2010,"obese":33},
{"state":"alaska","year":1995,"obese":19.8},
{"state":"alaska","year":1996,"obese":17.5},
{"state":"alaska","year":1997,"obese":19.7},
{"state":"alaska","year":1998,"obese":21.4},
{"state":"alaska","year":1999,"obese":20.4},
{"state":"alaska","year":2000,"obese":21},
{"state":"alaska","year":2001,"obese":22.1},
{"state":"alaska","year":2002,"obese":23.4},
{"state":"alaska","year":2003,"obese":23.5},
{"state":"alaska","year":2004,"obese":23.7},
{"state":"alaska","year":2005,"obese":27.4},
{"state":"alaska","year":2006,"obese":26.2},
{"state":"alaska","year":2007,"obese":28.2},
{"state":"alaska","year":2008,"obese":27.1},
{"state":"alaska","year":2009,"obese":25.4},
{"state":"alaska","year":2010,"obese":25.2},
{"state":"arizona","year":1995,"obese":13.3},
{"state":"arizona","year":1996,"obese":15.1},
{"state":"arizona","year":1997,"obese":12.4},
{"state":"arizona","year":1998,"obese":13.1},
{"state":"arizona","year":1999,"obese":12.3},
{"state":"arizona","year":2000,"obese":19.2},
{"state":"arizona","year":2001,"obese":18.5},
{"state":"arizona","year":2002,"obese":19.6},
{"state":"arizona","year":2003,"obese":20.1},
{"state":"arizona","year":2004,"obese":21.2},
{"state":"arizona","year":2005,"obese":21.1},
{"state":"arizona","year":2006,"obese":22.9},
{"state":"arizona","year":2007,"obese":25.8},
{"state":"arizona","year":2008,"obese":25.6},
{"state":"arizona","year":2009,"obese":25.9},
{"state":"arizona","year":2010,"obese":25.2},
{"state":"arkansas","year":1995,"obese":17.5},
{"state":"arkansas","year":1996,"obese":17.8},
{"state":"arkansas","year":1997,"obese":18.1},
{"state":"arkansas","year":1998,"obese":19.8},
{"state":"arkansas","year":1999,"obese":22.7},
{"state":"arkansas","year":2000,"obese":23.3},
{"state":"arkansas","year":2001,"obese":22.4},
{"state":"arkansas","year":2002,"obese":23.7},
{"state":"arkansas","year":2003,"obese":25.2},
{"state":"arkansas","year":2004,"obese":26.1},
{"state":"arkansas","year":2005,"obese":28},
{"state":"arkansas","year":2006,"obese":26.9},
{"state":"arkansas","year":2007,"obese":29.3},
{"state":"arkansas","year":2008,"obese":29.5},
{"state":"arkansas","year":2009,"obese":31.5},
{"state":"arkansas","year":2010,"obese":30.9},
{"state":"california","year":1995,"obese":15.1},
{"state":"california","year":1996,"obese":14.6},
{"state":"california","year":1997,"obese":16},
{"state":"california","year":1998,"obese":17.3},
{"state":"california","year":1999,"obese":18.7},
{"state":"california","year":2000,"obese":19.9},
{"state":"california","year":2001,"obese":21.9},
{"state":"california","year":2002,"obese":19.2},
{"state":"california","year":2003,"obese":23.2},
{"state":"california","year":2004,"obese":22.2},
{"state":"california","year":2005,"obese":22.7},
{"state":"california","year":2006,"obese":23.3},
{"state":"california","year":2007,"obese":23.3},
{"state":"california","year":2008,"obese":24.3},
{"state":"california","year":2009,"obese":25.5},
{"state":"california","year":2010,"obese":24.7},
{"state":"colorado","year":1995,"obese":10.1},
{"state":"colorado","year":1996,"obese":10.3},
{"state":"colorado","year":1997,"obese":11.8},
{"state":"colorado","year":1998,"obese":14.4},
{"state":"colorado","year":1999,"obese":14.9},
{"state":"colorado","year":2000,"obese":14.2},
{"state":"colorado","year":2001,"obese":14.9},
{"state":"colorado","year":2002,"obese":16.5},
{"state":"colorado","year":2003,"obese":16},
{"state":"colorado","year":2004,"obese":16.8},
{"state":"colorado","year":2005,"obese":17.8},
{"state":"colorado","year":2006,"obese":18.2},
{"state":"colorado","year":2007,"obese":19.3},
{"state":"colorado","year":2008,"obese":19.1},
{"state":"colorado","year":2009,"obese":19},
{"state":"colorado","year":2010,"obese":21.4},
{"state":"connecticut","year":1995,"obese":12.5},
{"state":"connecticut","year":1996,"obese":13.4},
{"state":"connecticut","year":1997,"obese":14.7},
{"state":"connecticut","year":1998,"obese":15.5},
{"state":"connecticut","year":1999,"obese":15.1},
{"state":"connecticut","year":2000,"obese":17.4},
{"state":"connecticut","year":2001,"obese":17.9},
{"state":"connecticut","year":2002,"obese":18},
{"state":"connecticut","year":2003,"obese":19.1},
{"state":"connecticut","year":2004,"obese":19.7},
{"state":"connecticut","year":2005,"obese":20.1},
{"state":"connecticut","year":2006,"obese":20.6},
{"state":"connecticut","year":2007,"obese":21.7},
{"state":"connecticut","year":2008,"obese":21.4},
{"state":"connecticut","year":2009,"obese":21},
{"state":"connecticut","year":2010,"obese":23},
{"state":"delaware","year":1995,"obese":17.1},
{"state":"delaware","year":1996,"obese":17.7},
{"state":"delaware","year":1997,"obese":18.8},
{"state":"delaware","year":1998,"obese":17.2},
{"state":"delaware","year":1999,"obese":17.5},
{"state":"delaware","year":2000,"obese":16.6},
{"state":"delaware","year":2001,"obese":20.8},
{"state":"delaware","year":2002,"obese":22.4},
{"state":"delaware","year":2003,"obese":24},
{"state":"delaware","year":2004,"obese":21.1},
{"state":"delaware","year":2005,"obese":23.5},
{"state":"delaware","year":2006,"obese":26},
{"state":"delaware","year":2007,"obese":28.2},
{"state":"delaware","year":2008,"obese":27.8},
{"state":"delaware","year":2009,"obese":27.6},
{"state":"delaware","year":2010,"obese":28.7},
{"state":"district of columbia","year":1996,"obese":16.8},
{"state":"district of columbia","year":1997,"obese":14.5},
{"state":"district of columbia","year":1998,"obese":20.2},
{"state":"district of columbia","year":1999,"obese":18.5},
{"state":"district of columbia","year":2000,"obese":21.5},
{"state":"district of columbia","year":2001,"obese":20},
{"state":"district of columbia","year":2002,"obese":20.7},
{"state":"district of columbia","year":2003,"obese":20.3},
{"state":"district of columbia","year":2004,"obese":22.5},
{"state":"district of columbia","year":2005,"obese":21.7},
{"state":"district of columbia","year":2006,"obese":22.5},
{"state":"district of columbia","year":2007,"obese":22.2},
{"state":"district of columbia","year":2008,"obese":22.3},
{"state":"district of columbia","year":2009,"obese":20.1},
{"state":"district of columbia","year":2010,"obese":22.4},
{"state":"florida","year":1995,"obese":17.2},
{"state":"florida","year":1996,"obese":16.7},
{"state":"florida","year":1997,"obese":16.1},
{"state":"florida","year":1998,"obese":18},
{"state":"florida","year":1999,"obese":18.6},
{"state":"florida","year":2000,"obese":18.7},
{"state":"florida","year":2001,"obese":18.8},
{"state":"florida","year":2002,"obese":19.4},
{"state":"florida","year":2003,"obese":19.9},
{"state":"florida","year":2004,"obese":22.9},
{"state":"florida","year":2005,"obese":22.8},
{"state":"florida","year":2006,"obese":23.1},
{"state":"florida","year":2007,"obese":24.1},
{"state":"florida","year":2008,"obese":25.2},
{"state":"florida","year":2009,"obese":26.5},
{"state":"florida","year":2010,"obese":27.2},
{"state":"georgia","year":1995,"obese":13.3},
{"state":"georgia","year":1996,"obese":11.5},
{"state":"georgia","year":1997,"obese":14.4},
{"state":"georgia","year":1998,"obese":19.2},
{"state":"georgia","year":1999,"obese":21.1},
{"state":"georgia","year":2000,"obese":21.5},
{"state":"georgia","year":2001,"obese":22.7},
{"state":"georgia","year":2002,"obese":23.5},
{"state":"georgia","year":2003,"obese":25.2},
{"state":"georgia","year":2004,"obese":24.7},
{"state":"georgia","year":2005,"obese":26.5},
{"state":"georgia","year":2006,"obese":27.1},
{"state":"georgia","year":2007,"obese":28.7},
{"state":"georgia","year":2008,"obese":27.8},
{"state":"georgia","year":2009,"obese":27.7},
{"state":"georgia","year":2010,"obese":30.4},
{"state":"hawaii","year":1995,"obese":10.8},
{"state":"hawaii","year":1996,"obese":12.9},
{"state":"hawaii","year":1997,"obese":13.6},
{"state":"hawaii","year":1998,"obese":15.5},
{"state":"hawaii","year":1999,"obese":15.7},
{"state":"hawaii","year":2000,"obese":15.7},
{"state":"hawaii","year":2001,"obese":17.9},
{"state":"hawaii","year":2002,"obese":17.1},
{"state":"hawaii","year":2003,"obese":16.4},
{"state":"hawaii","year":2005,"obese":19.7},
{"state":"hawaii","year":2006,"obese":20.6},
{"state":"hawaii","year":2007,"obese":21.7},
{"state":"hawaii","year":2008,"obese":23.1},
{"state":"hawaii","year":2009,"obese":22.9},
{"state":"hawaii","year":2010,"obese":23.1},
{"state":"idaho","year":1995,"obese":14.2},
{"state":"idaho","year":1996,"obese":16.9},
{"state":"idaho","year":1997,"obese":16.3},
{"state":"idaho","year":1998,"obese":16.4},
{"state":"idaho","year":1999,"obese":20},
{"state":"idaho","year":2000,"obese":18.9},
{"state":"idaho","year":2001,"obese":20.5},
{"state":"idaho","year":2002,"obese":20.2},
{"state":"idaho","year":2003,"obese":21.8},
{"state":"idaho","year":2004,"obese":20.8},
{"state":"idaho","year":2005,"obese":24.5},
{"state":"idaho","year":2006,"obese":24.1},
{"state":"idaho","year":2007,"obese":25.1},
{"state":"idaho","year":2008,"obese":25.2},
{"state":"idaho","year":2009,"obese":25.1},
{"state":"idaho","year":2010,"obese":26.9},
{"state":"illinois","year":1995,"obese":16.7},
{"state":"illinois","year":1996,"obese":17},
{"state":"illinois","year":1997,"obese":17.1},
{"state":"illinois","year":1998,"obese":18.5},
{"state":"illinois","year":1999,"obese":20.9},
{"state":"illinois","year":2000,"obese":21.7},
{"state":"illinois","year":2001,"obese":21},
{"state":"illinois","year":2002,"obese":21.9},
{"state":"illinois","year":2003,"obese":23.7},
{"state":"illinois","year":2004,"obese":23},
{"state":"illinois","year":2005,"obese":25.1},
{"state":"illinois","year":2006,"obese":25.1},
{"state":"illinois","year":2007,"obese":25.6},
{"state":"illinois","year":2008,"obese":26.9},
{"state":"illinois","year":2009,"obese":27.4},
{"state":"illinois","year":2010,"obese":28.7},
{"state":"indiana","year":1995,"obese":20.1},
{"state":"indiana","year":1996,"obese":18.6},
{"state":"indiana","year":1997,"obese":21.2},
{"state":"indiana","year":1998,"obese":19.9},
{"state":"indiana","year":1999,"obese":19.9},
{"state":"indiana","year":2000,"obese":21.8},
{"state":"indiana","year":2001,"obese":24.5},
{"state":"indiana","year":2002,"obese":24.1},
{"state":"indiana","year":2003,"obese":26},
{"state":"indiana","year":2004,"obese":25.5},
{"state":"indiana","year":2005,"obese":27.2},
{"state":"indiana","year":2006,"obese":27.8},
{"state":"indiana","year":2007,"obese":27.4},
{"state":"indiana","year":2008,"obese":27},
{"state":"indiana","year":2009,"obese":30},
{"state":"indiana","year":2010,"obese":30.2},
{"state":"iowa","year":1995,"obese":17.5},
{"state":"iowa","year":1996,"obese":18.7},
{"state":"iowa","year":1997,"obese":19.4},
{"state":"iowa","year":1998,"obese":19.8},
{"state":"iowa","year":1999,"obese":21.5},
{"state":"iowa","year":2000,"obese":21.5},
{"state":"iowa","year":2001,"obese":22.5},
{"state":"iowa","year":2002,"obese":22.9},
{"state":"iowa","year":2003,"obese":23.9},
{"state":"iowa","year":2004,"obese":23.5},
{"state":"iowa","year":2005,"obese":25.4},
{"state":"iowa","year":2006,"obese":25.7},
{"state":"iowa","year":2007,"obese":27.7},
{"state":"iowa","year":2008,"obese":26.7},
{"state":"iowa","year":2009,"obese":28.5},
{"state":"iowa","year":2010,"obese":29.1},
{"state":"kansas","year":1995,"obese":15.9},
{"state":"kansas","year":1996,"obese":13.4},
{"state":"kansas","year":1997,"obese":14.7},
{"state":"kansas","year":1998,"obese":17.7},
{"state":"kansas","year":1999,"obese":18.9},
{"state":"kansas","year":2000,"obese":20.8},
{"state":"kansas","year":2001,"obese":21.6},
{"state":"kansas","year":2002,"obese":22.8},
{"state":"kansas","year":2003,"obese":22.6},
{"state":"kansas","year":2004,"obese":23.2},
{"state":"kansas","year":2005,"obese":23.9},
{"state":"kansas","year":2006,"obese":25.9},
{"state":"kansas","year":2007,"obese":27.7},
{"state":"kansas","year":2008,"obese":28.1},
{"state":"kansas","year":2009,"obese":28.8},
{"state":"kansas","year":2010,"obese":30.1},
{"state":"kentucky","year":1995,"obese":16.9},
{"state":"kentucky","year":1996,"obese":19.2},
{"state":"kentucky","year":1997,"obese":21.8},
{"state":"kentucky","year":1998,"obese":20.4},
{"state":"kentucky","year":1999,"obese":21.7},
{"state":"kentucky","year":2000,"obese":23},
{"state":"kentucky","year":2001,"obese":24.6},
{"state":"kentucky","year":2002,"obese":24.4},
{"state":"kentucky","year":2003,"obese":25.6},
{"state":"kentucky","year":2004,"obese":25.8},
{"state":"kentucky","year":2005,"obese":28.6},
{"state":"kentucky","year":2006,"obese":28},
{"state":"kentucky","year":2007,"obese":28.7},
{"state":"kentucky","year":2008,"obese":30.3},
{"state":"kentucky","year":2009,"obese":32.4},
{"state":"kentucky","year":2010,"obese":31.8},
{"state":"louisiana","year":1995,"obese":17.7},
{"state":"louisiana","year":1996,"obese":19.7},
{"state":"louisiana","year":1997,"obese":19.6},
{"state":"louisiana","year":1998,"obese":21.8},
{"state":"louisiana","year":1999,"obese":22.3},
{"state":"louisiana","year":2000,"obese":23.6},
{"state":"louisiana","year":2001,"obese":24},
{"state":"louisiana","year":2002,"obese":25.5},
{"state":"louisiana","year":2003,"obese":24.8},
{"state":"louisiana","year":2004,"obese":26.9},
{"state":"louisiana","year":2005,"obese":30.8},
{"state":"louisiana","year":2006,"obese":27.1},
{"state":"louisiana","year":2007,"obese":30.7},
{"state":"louisiana","year":2008,"obese":29},
{"state":"louisiana","year":2009,"obese":33.9},
{"state":"louisiana","year":2010,"obese":31.7},
{"state":"maine","year":1995,"obese":14.1},
{"state":"maine","year":1996,"obese":16.1},
{"state":"maine","year":1997,"obese":16.2},
{"state":"maine","year":1998,"obese":17.4},
{"state":"maine","year":1999,"obese":19.4},
{"state":"maine","year":2000,"obese":20},
{"state":"maine","year":2001,"obese":19.5},
{"state":"maine","year":2002,"obese":20.7},
{"state":"maine","year":2003,"obese":19.9},
{"state":"maine","year":2004,"obese":23.4},
{"state":"maine","year":2005,"obese":22.7},
{"state":"maine","year":2006,"obese":23.1},
{"state":"maine","year":2007,"obese":25.2},
{"state":"maine","year":2008,"obese":25.9},
{"state":"maine","year":2009,"obese":26.4},
{"state":"maine","year":2010,"obese":27.4},
{"state":"maryland","year":1995,"obese":16.3},
{"state":"maryland","year":1996,"obese":17.7},
{"state":"maryland","year":1997,"obese":17.5},
{"state":"maryland","year":1998,"obese":20.5},
{"state":"maryland","year":1999,"obese":18.2},
{"state":"maryland","year":2000,"obese":20.2},
{"state":"maryland","year":2001,"obese":20.5},
{"state":"maryland","year":2002,"obese":19.4},
{"state":"maryland","year":2003,"obese":21.9},
{"state":"maryland","year":2004,"obese":23.9},
{"state":"maryland","year":2005,"obese":24.4},
{"state":"maryland","year":2006,"obese":24.9},
{"state":"maryland","year":2007,"obese":26.3},
{"state":"maryland","year":2008,"obese":26.7},
{"state":"maryland","year":2009,"obese":26.8},
{"state":"maryland","year":2010,"obese":27.9},
{"state":"massachusetts","year":1995,"obese":11.7},
{"state":"massachusetts","year":1996,"obese":13.1},
{"state":"massachusetts","year":1997,"obese":14.8},
{"state":"massachusetts","year":1998,"obese":14.3},
{"state":"massachusetts","year":1999,"obese":14.7},
{"state":"massachusetts","year":2000,"obese":16.8},
{"state":"massachusetts","year":2001,"obese":16.6},
{"state":"massachusetts","year":2002,"obese":18.3},
{"state":"massachusetts","year":2003,"obese":16.8},
{"state":"massachusetts","year":2004,"obese":18.4},
{"state":"massachusetts","year":2005,"obese":20.7},
{"state":"massachusetts","year":2006,"obese":20.3},
{"state":"massachusetts","year":2007,"obese":21.7},
{"state":"massachusetts","year":2008,"obese":21.5},
{"state":"massachusetts","year":2009,"obese":21.8},
{"state":"massachusetts","year":2010,"obese":23.6},
{"state":"michigan","year":1995,"obese":18.2},
{"state":"michigan","year":1996,"obese":18.2},
{"state":"michigan","year":1997,"obese":19.3},
{"state":"michigan","year":1998,"obese":21.2},
{"state":"michigan","year":1999,"obese":22.8},
{"state":"michigan","year":2000,"obese":22.4},
{"state":"michigan","year":2001,"obese":25},
{"state":"michigan","year":2002,"obese":25.4},
{"state":"michigan","year":2003,"obese":25.2},
{"state":"michigan","year":2004,"obese":25.4},
{"state":"michigan","year":2005,"obese":26.2},
{"state":"michigan","year":2006,"obese":28.8},
{"state":"michigan","year":2007,"obese":28.2},
{"state":"michigan","year":2008,"obese":29.5},
{"state":"michigan","year":2009,"obese":30.3},
{"state":"michigan","year":2010,"obese":31.7},
{"state":"minnesota","year":1995,"obese":15.3},
{"state":"minnesota","year":1996,"obese":14.3},
{"state":"minnesota","year":1997,"obese":16.5},
{"state":"minnesota","year":1998,"obese":16.2},
{"state":"minnesota","year":1999,"obese":15.5},
{"state":"minnesota","year":2000,"obese":17.4},
{"state":"minnesota","year":2001,"obese":19.9},
{"state":"minnesota","year":2002,"obese":22.4},
{"state":"minnesota","year":2003,"obese":23},
{"state":"minnesota","year":2004,"obese":22.6},
{"state":"minnesota","year":2005,"obese":23.7},
{"state":"minnesota","year":2006,"obese":24.7},
{"state":"minnesota","year":2007,"obese":26},
{"state":"minnesota","year":2008,"obese":25.2},
{"state":"minnesota","year":2009,"obese":25.4},
{"state":"minnesota","year":2010,"obese":25.4},
{"state":"mississippi","year":1995,"obese":19.5},
{"state":"mississippi","year":1996,"obese":19.8},
{"state":"mississippi","year":1997,"obese":22},
{"state":"mississippi","year":1998,"obese":22.8},
{"state":"mississippi","year":1999,"obese":23.2},
{"state":"mississippi","year":2000,"obese":25},
{"state":"mississippi","year":2001,"obese":26.5},
{"state":"mississippi","year":2002,"obese":26.8},
{"state":"mississippi","year":2003,"obese":28.1},
{"state":"mississippi","year":2004,"obese":29.5},
{"state":"mississippi","year":2005,"obese":30.9},
{"state":"mississippi","year":2006,"obese":31.4},
{"state":"mississippi","year":2007,"obese":32.6},
{"state":"mississippi","year":2008,"obese":33.4},
{"state":"mississippi","year":2009,"obese":35.4},
{"state":"mississippi","year":2010,"obese":34.5},
{"state":"missouri","year":1995,"obese":18.9},
{"state":"missouri","year":1996,"obese":19.2},
{"state":"missouri","year":1997,"obese":19.1},
{"state":"missouri","year":1998,"obese":20.5},
{"state":"missouri","year":1999,"obese":21.7},
{"state":"missouri","year":2000,"obese":22.1},
{"state":"missouri","year":2001,"obese":23.2},
{"state":"missouri","year":2002,"obese":23.2},
{"state":"missouri","year":2003,"obese":23.6},
{"state":"missouri","year":2004,"obese":24.9},
{"state":"missouri","year":2005,"obese":26.9},
{"state":"missouri","year":2006,"obese":27.2},
{"state":"missouri","year":2007,"obese":28.2},
{"state":"missouri","year":2008,"obese":29.1},
{"state":"missouri","year":2009,"obese":30.6},
{"state":"missouri","year":2010,"obese":31.4},
{"state":"montana","year":1995,"obese":13.4},
{"state":"montana","year":1996,"obese":14.3},
{"state":"montana","year":1997,"obese":14.6},
{"state":"montana","year":1998,"obese":15},
{"state":"montana","year":1999,"obese":15.8},
{"state":"montana","year":2000,"obese":15.9},
{"state":"montana","year":2001,"obese":18.8},
{"state":"montana","year":2002,"obese":18.7},
{"state":"montana","year":2003,"obese":18.8},
{"state":"montana","year":2004,"obese":19.7},
{"state":"montana","year":2005,"obese":21.3},
{"state":"montana","year":2006,"obese":21.2},
{"state":"montana","year":2007,"obese":22.6},
{"state":"montana","year":2008,"obese":24.3},
{"state":"montana","year":2009,"obese":23.7},
{"state":"montana","year":2010,"obese":23.5},
{"state":"nebraska","year":1995,"obese":16.3},
{"state":"nebraska","year":1996,"obese":16.3},
{"state":"nebraska","year":1997,"obese":17},
{"state":"nebraska","year":1998,"obese":18.3},
{"state":"nebraska","year":1999,"obese":21},
{"state":"nebraska","year":2000,"obese":21.1},
{"state":"nebraska","year":2001,"obese":20.7},
{"state":"nebraska","year":2002,"obese":23.2},
{"state":"nebraska","year":2003,"obese":23.9},
{"state":"nebraska","year":2004,"obese":23.2},
{"state":"nebraska","year":2005,"obese":26},
{"state":"nebraska","year":2006,"obese":26.9},
{"state":"nebraska","year":2007,"obese":26.5},
{"state":"nebraska","year":2008,"obese":27.2},
{"state":"nebraska","year":2009,"obese":28.1},
{"state":"nebraska","year":2010,"obese":27.5},
{"state":"nevada","year":1995,"obese":13.3},
{"state":"nevada","year":1996,"obese":15.5},
{"state":"nevada","year":1997,"obese":14.1},
{"state":"nevada","year":1998,"obese":14},
{"state":"nevada","year":1999,"obese":15.8},
{"state":"nevada","year":2000,"obese":17.9},
{"state":"nevada","year":2001,"obese":19.5},
{"state":"nevada","year":2002,"obese":21.6},
{"state":"nevada","year":2003,"obese":21.2},
{"state":"nevada","year":2004,"obese":21.1},
{"state":"nevada","year":2005,"obese":21.2},
{"state":"nevada","year":2006,"obese":25},
{"state":"nevada","year":2007,"obese":24.6},
{"state":"nevada","year":2008,"obese":25.6},
{"state":"nevada","year":2009,"obese":26.4},
{"state":"nevada","year":2010,"obese":23.1},
{"state":"new hampshire","year":1995,"obese":15.1},
{"state":"new hampshire","year":1996,"obese":14.5},
{"state":"new hampshire","year":1997,"obese":14.2},
{"state":"new hampshire","year":1998,"obese":15.6},
{"state":"new hampshire","year":1999,"obese":14.6},
{"state":"new hampshire","year":2000,"obese":18.1},
{"state":"new hampshire","year":2001,"obese":19.4},
{"state":"new hampshire","year":2002,"obese":17.9},
{"state":"new hampshire","year":2003,"obese":20.2},
{"state":"new hampshire","year":2004,"obese":21.6},
{"state":"new hampshire","year":2005,"obese":23.1},
{"state":"new hampshire","year":2006,"obese":22.4},
{"state":"new hampshire","year":2007,"obese":25.1},
{"state":"new hampshire","year":2008,"obese":24.9},
{"state":"new hampshire","year":2009,"obese":26.3},
{"state":"new hampshire","year":2010,"obese":25.5},
{"state":"new jersey","year":1995,"obese":14.5},
{"state":"new jersey","year":1996,"obese":13.5},
{"state":"new jersey","year":1997,"obese":16},
{"state":"new jersey","year":1998,"obese":15.5},
{"state":"new jersey","year":1999,"obese":17},
{"state":"new jersey","year":2000,"obese":18.5},
{"state":"new jersey","year":2001,"obese":19.6},
{"state":"new jersey","year":2002,"obese":19},
{"state":"new jersey","year":2003,"obese":20.1},
{"state":"new jersey","year":2004,"obese":21.9},
{"state":"new jersey","year":2005,"obese":22.1},
{"state":"new jersey","year":2006,"obese":22.6},
{"state":"new jersey","year":2007,"obese":24.1},
{"state":"new jersey","year":2008,"obese":23.6},
{"state":"new jersey","year":2009,"obese":23.9},
{"state":"new jersey","year":2010,"obese":24.8},
{"state":"new mexico","year":1995,"obese":13},
{"state":"new mexico","year":1996,"obese":14.1},
{"state":"new mexico","year":1997,"obese":14.9},
{"state":"new mexico","year":1998,"obese":15.2},
{"state":"new mexico","year":1999,"obese":17.7},
{"state":"new mexico","year":2000,"obese":19.3},
{"state":"new mexico","year":2001,"obese":19.7},
{"state":"new mexico","year":2002,"obese":19.7},
{"state":"new mexico","year":2003,"obese":20.2},
{"state":"new mexico","year":2004,"obese":21.5},
{"state":"new mexico","year":2005,"obese":21.7},
{"state":"new mexico","year":2006,"obese":22.9},
{"state":"new mexico","year":2007,"obese":25.1},
{"state":"new mexico","year":2008,"obese":25.7},
{"state":"new mexico","year":2009,"obese":25.6},
{"state":"new mexico","year":2010,"obese":25.6},
{"state":"new york","year":1995,"obese":13.9},
{"state":"new york","year":1996,"obese":14.5},
{"state":"new york","year":1997,"obese":16},
{"state":"new york","year":1998,"obese":16.3},
{"state":"new york","year":1999,"obese":17.4},
{"state":"new york","year":2000,"obese":17.7},
{"state":"new york","year":2001,"obese":20.3},
{"state":"new york","year":2002,"obese":20.6},
{"state":"new york","year":2003,"obese":20.9},
{"state":"new york","year":2004,"obese":22.1},
{"state":"new york","year":2005,"obese":22.2},
{"state":"new york","year":2006,"obese":22.9},
{"state":"new york","year":2007,"obese":25.5},
{"state":"new york","year":2008,"obese":25.1},
{"state":"new york","year":2009,"obese":24.6},
{"state":"new york","year":2010,"obese":24.5},
{"state":"north carolina","year":1995,"obese":16.9},
{"state":"north carolina","year":1996,"obese":18.1},
{"state":"north carolina","year":1997,"obese":18.3},
{"state":"north carolina","year":1998,"obese":19.4},
{"state":"north carolina","year":1999,"obese":21.5},
{"state":"north carolina","year":2000,"obese":21.8},
{"state":"north carolina","year":2001,"obese":22.9},
{"state":"north carolina","year":2002,"obese":23.5},
{"state":"north carolina","year":2003,"obese":24},
{"state":"north carolina","year":2004,"obese":24.2},
{"state":"north carolina","year":2005,"obese":25.9},
{"state":"north carolina","year":2006,"obese":26.6},
{"state":"north carolina","year":2007,"obese":28.7},
{"state":"north carolina","year":2008,"obese":29.5},
{"state":"north carolina","year":2009,"obese":30.1},
{"state":"north carolina","year":2010,"obese":28.6},
{"state":"north dakota","year":1995,"obese":16.4},
{"state":"north dakota","year":1996,"obese":18.4},
{"state":"north dakota","year":1997,"obese":17},
{"state":"north dakota","year":1998,"obese":19.2},
{"state":"north dakota","year":1999,"obese":21.9},
{"state":"north dakota","year":2000,"obese":20.4},
{"state":"north dakota","year":2001,"obese":20.4},
{"state":"north dakota","year":2002,"obese":23.4},
{"state":"north dakota","year":2003,"obese":23.7},
{"state":"north dakota","year":2004,"obese":24.6},
{"state":"north dakota","year":2005,"obese":25.4},
{"state":"north dakota","year":2006,"obese":25.4},
{"state":"north dakota","year":2007,"obese":27},
{"state":"north dakota","year":2008,"obese":27.8},
{"state":"north dakota","year":2009,"obese":28.4},
{"state":"north dakota","year":2010,"obese":27.9},
{"state":"ohio","year":1995,"obese":17.5},
{"state":"ohio","year":1996,"obese":18.9},
{"state":"ohio","year":1997,"obese":17.7},
{"state":"ohio","year":1998,"obese":20},
{"state":"ohio","year":1999,"obese":20.3},
{"state":"ohio","year":2000,"obese":21.5},
{"state":"ohio","year":2001,"obese":22.4},
{"state":"ohio","year":2002,"obese":23},
{"state":"ohio","year":2003,"obese":24.9},
{"state":"ohio","year":2004,"obese":25.3},
{"state":"ohio","year":2005,"obese":24.3},
{"state":"ohio","year":2006,"obese":28.4},
{"state":"ohio","year":2007,"obese":28.1},
{"state":"ohio","year":2008,"obese":29.3},
{"state":"ohio","year":2009,"obese":29.8},
{"state":"ohio","year":2010,"obese":29.7},
{"state":"oklahoma","year":1995,"obese":13.5},
{"state":"oklahoma","year":1996,"obese":16.8},
{"state":"oklahoma","year":1997,"obese":15.1},
{"state":"oklahoma","year":1998,"obese":19.5},
{"state":"oklahoma","year":1999,"obese":21.1},
{"state":"oklahoma","year":2000,"obese":19.7},
{"state":"oklahoma","year":2001,"obese":22.6},
{"state":"oklahoma","year":2002,"obese":22.9},
{"state":"oklahoma","year":2003,"obese":24.4},
{"state":"oklahoma","year":2004,"obese":24.9},
{"state":"oklahoma","year":2005,"obese":26.8},
{"state":"oklahoma","year":2006,"obese":28.8},
{"state":"oklahoma","year":2007,"obese":28.8},
{"state":"oklahoma","year":2008,"obese":31},
{"state":"oklahoma","year":2009,"obese":32},
{"state":"oklahoma","year":2010,"obese":31.3},
{"state":"oregon","year":1995,"obese":15.2},
{"state":"oregon","year":1996,"obese":16.4},
{"state":"oregon","year":1997,"obese":19.4},
{"state":"oregon","year":1998,"obese":18.3},
{"state":"oregon","year":1999,"obese":19.9},
{"state":"oregon","year":2000,"obese":21.5},
{"state":"oregon","year":2001,"obese":21.1},
{"state":"oregon","year":2002,"obese":20.3},
{"state":"oregon","year":2003,"obese":21.5},
{"state":"oregon","year":2004,"obese":21.2},
{"state":"oregon","year":2005,"obese":23.8},
{"state":"oregon","year":2006,"obese":24.8},
{"state":"oregon","year":2007,"obese":26.3},
{"state":"oregon","year":2008,"obese":25},
{"state":"oregon","year":2009,"obese":23.6},
{"state":"oregon","year":2010,"obese":27.6},
{"state":"pennsylvania","year":1995,"obese":16.4},
{"state":"pennsylvania","year":1996,"obese":18.7},
{"state":"pennsylvania","year":1997,"obese":17.5},
{"state":"pennsylvania","year":1998,"obese":19.4},
{"state":"pennsylvania","year":1999,"obese":20.3},
{"state":"pennsylvania","year":2000,"obese":21.2},
{"state":"pennsylvania","year":2001,"obese":22.1},
{"state":"pennsylvania","year":2002,"obese":23.9},
{"state":"pennsylvania","year":2003,"obese":23.8},
{"state":"pennsylvania","year":2004,"obese":24.3},
{"state":"pennsylvania","year":2005,"obese":25.3},
{"state":"pennsylvania","year":2006,"obese":24},
{"state":"pennsylvania","year":2007,"obese":27.8},
{"state":"pennsylvania","year":2008,"obese":28.4},
{"state":"pennsylvania","year":2009,"obese":28.1},
{"state":"pennsylvania","year":2010,"obese":29.2},
{"state":"puerto rico","year":1996,"obese":16.8},
{"state":"puerto rico","year":1997,"obese":19},
{"state":"puerto rico","year":1998,"obese":19.3},
{"state":"puerto rico","year":1999,"obese":21.3},
{"state":"puerto rico","year":2000,"obese":21.7},
{"state":"puerto rico","year":2001,"obese":22.2},
{"state":"puerto rico","year":2002,"obese":22},
{"state":"puerto rico","year":2003,"obese":22.9},
{"state":"puerto rico","year":2004,"obese":24.3},
{"state":"puerto rico","year":2005,"obese":23.7},
{"state":"puerto rico","year":2006,"obese":24.7},
{"state":"puerto rico","year":2007,"obese":26.6},
{"state":"puerto rico","year":2008,"obese":26.2},
{"state":"puerto rico","year":2009,"obese":27.5},
{"state":"puerto rico","year":2010,"obese":27.5},
{"state":"rhode island","year":1995,"obese":13.2},
{"state":"rhode island","year":1996,"obese":14.3},
{"state":"rhode island","year":1997,"obese":13.8},
{"state":"rhode island","year":1998,"obese":16.8},
{"state":"rhode island","year":1999,"obese":16.8},
{"state":"rhode island","year":2000,"obese":17.1},
{"state":"rhode island","year":2001,"obese":17.7},
{"state":"rhode island","year":2002,"obese":18.5},
{"state":"rhode island","year":2003,"obese":18.4},
{"state":"rhode island","year":2004,"obese":19},
{"state":"rhode island","year":2005,"obese":21},
{"state":"rhode island","year":2006,"obese":21.4},
{"state":"rhode island","year":2007,"obese":21.7},
{"state":"rhode island","year":2008,"obese":22.1},
{"state":"rhode island","year":2009,"obese":24.9},
{"state":"rhode island","year":2010,"obese":26},
{"state":"south carolina","year":1995,"obese":16.7},
{"state":"south carolina","year":1996,"obese":18.4},
{"state":"south carolina","year":1997,"obese":16.9},
{"state":"south carolina","year":1998,"obese":20.6},
{"state":"south carolina","year":1999,"obese":20.6},
{"state":"south carolina","year":2000,"obese":22},
{"state":"south carolina","year":2001,"obese":22.5},
{"state":"south carolina","year":2002,"obese":25.8},
{"state":"south carolina","year":2003,"obese":24.5},
{"state":"south carolina","year":2004,"obese":25.1},
{"state":"south carolina","year":2005,"obese":29.1},
{"state":"south carolina","year":2006,"obese":29.4},
{"state":"south carolina","year":2007,"obese":29},
{"state":"south carolina","year":2008,"obese":30.7},
{"state":"south carolina","year":2009,"obese":30.1},
{"state":"south carolina","year":2010,"obese":32},
{"state":"south dakota","year":1995,"obese":13.9},
{"state":"south dakota","year":1996,"obese":14.7},
{"state":"south dakota","year":1997,"obese":17},
{"state":"south dakota","year":1998,"obese":15.8},
{"state":"south dakota","year":1999,"obese":19.6},
{"state":"south dakota","year":2000,"obese":19.8},
{"state":"south dakota","year":2001,"obese":21.2},
{"state":"south dakota","year":2002,"obese":21.2},
{"state":"south dakota","year":2003,"obese":22.9},
{"state":"south dakota","year":2004,"obese":23.8},
{"state":"south dakota","year":2005,"obese":25.5},
{"state":"south dakota","year":2006,"obese":25.4},
{"state":"south dakota","year":2007,"obese":27.2},
{"state":"south dakota","year":2008,"obese":28.1},
{"state":"south dakota","year":2009,"obese":30.3},
{"state":"south dakota","year":2010,"obese":27.7},
{"state":"tennessee","year":1995,"obese":18.4},
{"state":"tennessee","year":1996,"obese":17.4},
{"state":"tennessee","year":1997,"obese":17.7},
{"state":"tennessee","year":1998,"obese":19.2},
{"state":"tennessee","year":1999,"obese":20.5},
{"state":"tennessee","year":2000,"obese":22.9},
{"state":"tennessee","year":2001,"obese":23.4},
{"state":"tennessee","year":2002,"obese":24.5},
{"state":"tennessee","year":2003,"obese":25},
{"state":"tennessee","year":2004,"obese":27.2},
{"state":"tennessee","year":2005,"obese":27.4},
{"state":"tennessee","year":2006,"obese":28.8},
{"state":"tennessee","year":2007,"obese":30.7},
{"state":"tennessee","year":2008,"obese":31.2},
{"state":"tennessee","year":2009,"obese":32.9},
{"state":"tennessee","year":2010,"obese":31.7},
{"state":"texas","year":1995,"obese":15.9},
{"state":"texas","year":1996,"obese":17.2},
{"state":"texas","year":1997,"obese":18.7},
{"state":"texas","year":1998,"obese":20.2},
{"state":"texas","year":1999,"obese":21.6},
{"state":"texas","year":2000,"obese":23.1},
{"state":"texas","year":2001,"obese":24.6},
{"state":"texas","year":2002,"obese":25.5},
{"state":"texas","year":2003,"obese":24.6},
{"state":"texas","year":2004,"obese":25.8},
{"state":"texas","year":2005,"obese":27},
{"state":"texas","year":2006,"obese":26.1},
{"state":"texas","year":2007,"obese":28.6},
{"state":"texas","year":2008,"obese":28.9},
{"state":"texas","year":2009,"obese":29.5},
{"state":"texas","year":2010,"obese":31.7},
{"state":"utah","year":1997,"obese":15.2},
{"state":"utah","year":1998,"obese":15.9},
{"state":"utah","year":1999,"obese":16.7},
{"state":"utah","year":2000,"obese":19.1},
{"state":"utah","year":2001,"obese":19.1},
{"state":"utah","year":2002,"obese":17.5},
{"state":"utah","year":2003,"obese":20.8},
{"state":"utah","year":2004,"obese":20.4},
{"state":"utah","year":2005,"obese":21.2},
{"state":"utah","year":2006,"obese":21.9},
{"state":"utah","year":2007,"obese":22.4},
{"state":"utah","year":2008,"obese":23.1},
{"state":"utah","year":2009,"obese":24},
{"state":"utah","year":2010,"obese":23},
{"state":"vermont","year":1995,"obese":14.6},
{"state":"vermont","year":1996,"obese":14.9},
{"state":"vermont","year":1997,"obese":15.9},
{"state":"vermont","year":1998,"obese":14.8},
{"state":"vermont","year":1999,"obese":18},
{"state":"vermont","year":2000,"obese":18.2},
{"state":"vermont","year":2001,"obese":17.6},
{"state":"vermont","year":2002,"obese":18.9},
{"state":"vermont","year":2003,"obese":19.6},
{"state":"vermont","year":2004,"obese":18.7},
{"state":"vermont","year":2005,"obese":20.2},
{"state":"vermont","year":2006,"obese":21.2},
{"state":"vermont","year":2007,"obese":21.9},
{"state":"vermont","year":2008,"obese":23.3},
{"state":"vermont","year":2009,"obese":23.4},
{"state":"vermont","year":2010,"obese":23.9},
{"state":"virginia","year":1995,"obese":15.7},
{"state":"virginia","year":1996,"obese":15.9},
{"state":"virginia","year":1997,"obese":16.4},
{"state":"virginia","year":1998,"obese":18.7},
{"state":"virginia","year":1999,"obese":19.3},
{"state":"virginia","year":2000,"obese":18.2},
{"state":"virginia","year":2001,"obese":20.9},
{"state":"virginia","year":2002,"obese":23.8},
{"state":"virginia","year":2003,"obese":21.7},
{"state":"virginia","year":2004,"obese":23.1},
{"state":"virginia","year":2005,"obese":25.1},
{"state":"virginia","year":2006,"obese":25.1},
{"state":"virginia","year":2007,"obese":25.3},
{"state":"virginia","year":2008,"obese":25.8},
{"state":"virginia","year":2009,"obese":25.5},
{"state":"virginia","year":2010,"obese":26.4},
{"state":"virgin islands","year":2001,"obese":24.7},
{"state":"virgin islands","year":2002,"obese":24.9},
{"state":"virgin islands","year":2003,"obese":22},
{"state":"virgin islands","year":2004,"obese":23.2},
{"state":"virgin islands","year":2005,"obese":25.6},
{"state":"virgin islands","year":2006,"obese":26.1},
{"state":"virgin islands","year":2007,"obese":26.3},
{"state":"virgin islands","year":2008,"obese":26.5},
{"state":"virgin islands","year":2009,"obese":29.6},
{"state":"virgin islands","year":2010,"obese":30},
{"state":"washington","year":1995,"obese":13.9},
{"state":"washington","year":1996,"obese":15.6},
{"state":"washington","year":1997,"obese":15.2},
{"state":"washington","year":1998,"obese":18.1},
{"state":"washington","year":1999,"obese":18.2},
{"state":"washington","year":2000,"obese":18.8},
{"state":"washington","year":2001,"obese":19.3},
{"state":"washington","year":2002,"obese":21.3},
{"state":"washington","year":2003,"obese":21.7},
{"state":"washington","year":2004,"obese":22.2},
{"state":"washington","year":2005,"obese":23.3},
{"state":"washington","year":2006,"obese":24.2},
{"state":"washington","year":2007,"obese":25.9},
{"state":"washington","year":2008,"obese":26},
{"state":"washington","year":2009,"obese":26.9},
{"state":"washington","year":2010,"obese":26.2},
{"state":"west virginia","year":1995,"obese":18.3},
{"state":"west virginia","year":1996,"obese":19.9},
{"state":"west virginia","year":1997,"obese":20.6},
{"state":"west virginia","year":1998,"obese":23.9},
{"state":"west virginia","year":1999,"obese":24.6},
{"state":"west virginia","year":2000,"obese":23.2},
{"state":"west virginia","year":2001,"obese":25.1},
{"state":"west virginia","year":2002,"obese":27.6},
{"state":"west virginia","year":2003,"obese":27.7},
{"state":"west virginia","year":2004,"obese":27.6},
{"state":"west virginia","year":2005,"obese":30.6},
{"state":"west virginia","year":2006,"obese":31},
{"state":"west virginia","year":2007,"obese":30.3},
{"state":"west virginia","year":2008,"obese":31.9},
{"state":"west virginia","year":2009,"obese":31.7},
{"state":"west virginia","year":2010,"obese":32.9},
{"state":"wisconsin","year":1995,"obese":16},
{"state":"wisconsin","year":1996,"obese":17.1},
{"state":"wisconsin","year":1997,"obese":16.6},
{"state":"wisconsin","year":1998,"obese":18.3},
{"state":"wisconsin","year":1999,"obese":19.9},
{"state":"wisconsin","year":2000,"obese":20},
{"state":"wisconsin","year":2001,"obese":22.4},
{"state":"wisconsin","year":2002,"obese":21.6},
{"state":"wisconsin","year":2003,"obese":20.9},
{"state":"wisconsin","year":2004,"obese":23.2},
{"state":"wisconsin","year":2005,"obese":24.4},
{"state":"wisconsin","year":2006,"obese":26.6},
{"state":"wisconsin","year":2007,"obese":25.3},
{"state":"wisconsin","year":2008,"obese":26.1},
{"state":"wisconsin","year":2009,"obese":29.2},
{"state":"wisconsin","year":2010,"obese":26.9},
{"state":"wyoming","year":1995,"obese":14.3},
{"state":"wyoming","year":1996,"obese":15.1},
{"state":"wyoming","year":1997,"obese":15},
{"state":"wyoming","year":1998,"obese":15.1},
{"state":"wyoming","year":1999,"obese":16.9},
{"state":"wyoming","year":2000,"obese":18},
{"state":"wyoming","year":2001,"obese":19.7},
{"state":"wyoming","year":2002,"obese":19.5},
{"state":"wyoming","year":2003,"obese":20.1},
{"state":"wyoming","year":2004,"obese":20.8},
{"state":"wyoming","year":2005,"obese":24.2},
{"state":"wyoming","year":2006,"obese":23.3},
{"state":"wyoming","year":2007,"obese":24.5},
{"state":"wyoming","year":2008,"obese":25.2},
{"state":"wyoming","year":2009,"obese":25.4},
{"state":"wyoming","year":2010,"obese":25.7}]
.map {
display: block;
position: absolute;
background: #fff;
width: 100%;
height: 100%;
margin: 0;
}
path.state {
stroke: #666;
stroke-width: 1;
fill-opacity: 0.10
}
path.state:hover {
stroke: #000;
}
.year {
font-family: 'Helvetica neue';
font-size: 90px;
fill: #ffffff;
stroke: #000
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.010483693461690662,0.005244681944955843],"translate":[-171.79111060289114,18.91619]},"objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"Maryland","arcs":[[0,1,2,3,4,5,6,7,8,9,10]]},{"type":"Polygon","id":"Minnesota","arcs":[[11,12,13,14,15]]},{"type":"Polygon","id":"Montana","arcs":[[16,17,18,19,20]]},{"type":"Polygon","id":"North Dakota","arcs":[[21,-20,22,-14]]},{"type":"MultiPolygon","id":"Hawaii","arcs":[[[23]],[[24]],[[25]],[[26]],[[27]]]},{"type":"Polygon","id":"Idaho","arcs":[[28,29,30,31,32,33,34,35,36,37,-18,38]]},{"type":"Polygon","id":"Washington","arcs":[[39,40,-37]]},{"type":"Polygon","id":"Arizona","arcs":[[41,42,43,44,45,46,47]]},{"type":"Polygon","id":"California","arcs":[[-45,48,49,50,51,52]]},{"type":"Polygon","id":"Colorado","arcs":[[53,54,55,56,57,58,59,60,61]]},{"type":"Polygon","id":"Nevada","arcs":[[-46,-53,62,-32,63,-30,64]]},{"type":"Polygon","id":"New Mexico","arcs":[[65,-42,66,-56,67,68,69]]},{"type":"Polygon","id":"Oregon","arcs":[[-34,70,-63,-52,71,-50,72,-40,-36,73]]},{"type":"Polygon","id":"Wyoming","arcs":[[74,75,-59,76,-39,-17,77,78]]},{"type":"Polygon","id":"Arkansas","arcs":[[79,80,81,82,83,84,85,86,87]]},{"type":"Polygon","id":"Iowa","arcs":[[88,89,90,91,-12,92]]},{"type":"Polygon","id":"Kansas","arcs":[[93,-54,94,-61,95,96,97,98,99]]},{"type":"Polygon","id":"Missouri","arcs":[[100,101,-87,102,103,-99,104,-97,105,-90,106]]},{"type":"Polygon","id":"Nebraska","arcs":[[-106,-96,-60,-76,107,108,-91]]},{"type":"Polygon","id":"Oklahoma","arcs":[[-84,109,110,-68,-55,-94,111,-103,-86,112]]},{"type":"Polygon","id":"South Dakota","arcs":[[-109,113,-78,-21,-22,-13,-92]]},{"type":"Polygon","id":"Louisiana","arcs":[[114,115,116,117,-81]]},{"type":"Polygon","id":"Texas","arcs":[[-118,118,-69,-111,-82]]},{"type":"Polygon","id":"Connecticut","arcs":[[119,120,121,122]]},{"type":"Polygon","id":"Massachusetts","arcs":[[123,-121,124,125,126,127]]},{"type":"Polygon","id":"New Hampshire","arcs":[[128,129,130,131,-127]]},{"type":"Polygon","id":"Rhode Island","arcs":[[-122,-124,132]]},{"type":"Polygon","id":"Vermont","arcs":[[133,134,-129,-126]]},{"type":"Polygon","id":"Alabama","arcs":[[135,136,137,138,139]]},{"type":"Polygon","id":"Florida","arcs":[[-136,140,141]]},{"type":"Polygon","id":"Georgia","arcs":[[-141,-140,142,143,144,145]]},{"type":"Polygon","id":"Mississippi","arcs":[[-80,146,-138,147,148]]},{"type":"Polygon","id":"South Carolina","arcs":[[-145,149,150]]},{"type":"Polygon","id":"Illinois","arcs":[[151,152,153,-107,-89,154,155]]},{"type":"Polygon","id":"Indiana","arcs":[[156,157,-153,158,159,160]]},{"type":"Polygon","id":"Kentucky","arcs":[[161,162,163,-101,-154,-158,164]]},{"type":"Polygon","id":"North Carolina","arcs":[[-150,-144,165,166,167]]},{"type":"Polygon","id":"Ohio","arcs":[[-165,-157,168,169,170,171]]},{"type":"Polygon","id":"Tennessee","arcs":[[172,-166,-143,-139,-147,-88,-102,-164]]},{"type":"Polygon","id":"Wisconsin","arcs":[[-155,-93,-16,173,174,175]]},{"type":"Polygon","id":"West Virginia","arcs":[[-10,176,-8,177,-162,-172,178]]},{"type":"Polygon","id":"Delaware","arcs":[[-1,179,180,181]]},{"type":"Polygon","id":"New Jersey","arcs":[[-181,182,183,184]]},{"type":"Polygon","id":"New York","arcs":[[-125,-120,185,-184,186,187,-134]]},{"type":"Polygon","id":"Pennsylvania","arcs":[[-180,-11,-179,-171,188,-187,-183]]},{"type":"Polygon","id":"Maine","arcs":[[-131,189]]},{"type":"MultiPolygon","id":"Michigan","arcs":[[[-169,-161,190]],[[191,192]]]},{"type":"MultiPolygon","id":"Alaska","arcs":[[[193]],[[194]],[[195]],[[196]]]},{"type":"MultiPolygon","id":"Virginia","arcs":[[[-7,197,-5,198,-167,-173,-163,-178]],[[2,199]]]},{"type":"Polygon","id":"District of Columbia","arcs":[[-6,-198]]},{"type":"Polygon","id":"Utah","arcs":[[-65,-29,-77,-58,200,-47]]}]}},"arcs":[[[9157,3967],[2,-81],[3,-81],[2,-81],[32,0],[31,0]],[[9227,3724],[0,-9],[-16,-37],[-15,-37]],[[9196,3641],[-22,-3],[-11,-12]],[[9163,3626],[-15,22],[-12,19],[-10,15],[-12,17],[-2,29],[-2,31],[-2,28],[-2,35],[-3,35],[-7,-32],[-5,-25],[-6,-25],[5,-31],[5,-32],[5,-28],[5,-30],[-12,6],[-13,6],[-17,8],[-21,10]],[[9042,3684],[-1,6],[-4,21],[-16,-9],[-12,11],[10,42],[13,14],[4,4],[1,16]],[[9037,3789],[3,3],[2,3],[3,4],[2,3],[3,4],[-3,4],[-2,4],[-3,4],[-2,4],[-2,3],[-3,-2],[-2,-3],[-3,-4]],[[9030,3816],[-18,22],[-20,11],[1,5],[6,16],[-13,14],[-11,5],[-3,1]],[[8972,3890],[-7,25],[-12,27],[-29,15],[-19,-14],[-10,-15],[-28,8],[-13,-20],[-19,-7],[-16,-22]],[[8819,3887],[-15,-17],[1,48]],[[8805,3918],[0,48]],[[8805,3966],[44,0],[44,0],[31,0],[34,1],[33,0],[41,0],[41,-1],[42,1],[42,0]],[[7684,4687],[-42,1],[-41,1],[-42,2],[-46,-1],[-47,0],[-46,-1],[-44,0],[-43,-1],[-43,-1],[-35,0],[-35,0],[-34,0]],[[7186,4687],[0,89],[1,89],[-6,92],[-6,91],[-16,15],[-10,29],[5,26],[22,21],[1,28]],[[7177,5167],[1,35],[-6,29],[-8,30],[-5,39],[-1,44],[-3,10],[-4,56],[-1,26],[-2,22],[-4,39],[-12,39],[-11,35],[-2,35],[-1,37],[3,24],[1,23],[-9,27],[-1,19]],[[7112,5736],[39,0],[40,0],[39,0],[40,0],[39,0],[0,73],[33,1],[8,-53],[9,-52],[29,-32],[34,-6],[33,-6],[32,-10],[33,-10],[32,-10],[31,-20],[31,-20],[31,-19],[38,12],[39,13],[39,-17],[39,-16],[39,-17],[-32,-21],[-32,-21],[-33,-21],[-34,-38],[-34,-38],[-32,-41],[-32,-40],[-1,-28]],[[7609,5299],[-25,-10],[1,-54],[0,-53],[-3,0],[-23,-21],[-21,-18],[-13,-36],[20,-35],[-8,-48],[0,-52],[-3,-42],[28,-36],[12,-2],[31,-27],[10,-13],[7,-21],[24,-32],[32,-29],[3,-15],[1,-46],[2,-22]],[[6458,4981],[-39,0],[-40,1],[-40,0],[-40,1],[-43,-1],[-43,0],[-43,0],[-42,0],[-38,0],[-37,1],[-37,0],[-37,1],[-47,-1],[-47,0],[-47,0],[-47,-1],[1,-48],[0,-49],[-2,-6]],[[5790,4879],[-10,10],[-10,27],[-10,5],[-14,-38],[-21,-6],[-27,6],[-27,6],[-3,-19],[-31,7],[-18,-26],[-17,49],[-11,28],[-20,5],[-6,14],[-6,50],[-17,23],[-10,61],[-12,26],[-11,5],[-10,-27],[-19,-22],[-17,18],[-1,49],[11,13],[-8,49],[9,50],[11,42],[-29,2],[-24,27],[-27,59],[-16,30],[-22,18],[-18,30],[0,35],[-25,50],[-2,67],[-3,67],[-2,67]],[[5317,5736],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,0],[47,0],[48,1],[47,0],[48,0],[47,0],[48,0]],[[6457,5737],[0,-88],[1,-87],[0,-88],[0,-87],[2,-77],[2,-78],[1,-77]],[[6463,5155],[-2,-87],[-3,-87]],[[7177,5167],[-45,-3],[-45,-2],[-46,-3],[-45,-2],[-39,0],[-38,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,0],[-39,-1],[-40,0],[-45,0],[-46,0],[-45,0],[-46,-1]],[[6457,5737],[47,0],[47,-1],[48,0],[47,0],[47,0],[47,0],[47,0],[47,0],[46,0],[46,0],[47,0],[46,0],[46,0],[47,0]],[[1549,31],[-14,-31],[-23,27],[3,53],[-16,70],[4,21],[17,31],[-7,37],[6,18],[7,-3],[37,-33],[17,-16],[15,-26],[25,-67],[-3,-10],[-37,-41],[-31,-30]],[[1498,329],[-32,-14],[-16,40],[-11,16],[-1,12],[9,16],[34,-18],[25,-29],[-8,-23]],[[1433,431],[-3,-21],[-25,3],[-26,2],[7,24],[47,-8]],[[1348,458],[-5,-11],[-7,3],[-33,6],[-12,44],[-4,7],[26,27],[8,-13],[27,-63]],[[1187,584],[-12,-19],[-32,35],[5,14],[15,19],[22,-5],[2,-44]],[[5793,4401],[-47,0],[-48,0],[-47,-1],[-47,0],[-48,0],[-47,0]],[[5509,4400],[-48,0],[-47,0],[-48,0]],[[5366,4400],[-48,0],[-47,1]],[[5271,4401],[-48,0]],[[5223,4401],[0,86],[1,85]],[[5224,4572],[0,86]],[[5224,4658],[0,86],[9,54]],[[5233,4798],[-8,25],[-18,12],[0,31],[14,43],[20,38],[14,61],[13,50],[10,24],[-6,29],[-16,16],[-22,37]],[[5234,5164],[1,33],[-9,30],[-1,88],[-1,89],[-1,88],[0,81],[0,81],[0,81]],[[5223,5735],[47,1],[47,0]],[[5790,4879],[3,-4],[0,-95],[0,-94],[0,-95],[0,-95],[0,-95]],[[5234,5164],[-39,-1],[-40,0],[-39,0],[-40,-1],[-39,0],[-34,-20],[-24,9],[-19,-16],[-35,-21],[-43,3],[-22,-16],[-20,-7],[-15,10],[-34,9],[-22,-6],[-37,-21],[-23,0],[-22,7],[-7,27],[-3,32],[-18,36],[-27,11],[-23,17],[-30,1],[-21,1]],[[4558,5218],[-4,55],[-3,55],[-16,82],[-15,82],[-14,44],[-13,44],[11,37],[46,-21],[46,-22],[46,-21],[17,-60],[17,-60],[17,-60],[23,50],[-7,78],[-8,78],[-16,78],[-16,79],[45,0],[45,0],[45,0],[45,0],[45,0],[45,0],[48,0],[47,0],[47,0],[47,0],[48,-1],[47,0]],[[5985,3178],[0,-90],[0,-90],[0,-90],[0,-90],[0,-90],[0,-90]],[[5985,2638],[0,-89],[0,-90],[0,-90]],[[5985,2369],[-47,-1],[-48,0],[-47,0],[-47,-1],[-44,27],[-43,27],[-44,27],[-43,27],[-44,27],[-36,23],[-36,23],[-36,23],[-36,23],[9,38]],[[5443,2632],[13,-1],[10,38],[-17,26],[-3,29],[-5,33],[19,44],[7,87],[29,39],[-18,37],[-12,36],[-8,33],[-5,26],[-2,17]],[[5451,3076],[6,38],[-5,37],[-2,37],[0,41],[-9,26],[7,24],[20,0],[18,-14],[13,-7],[7,29],[4,6],[-1,77],[0,76]],[[5509,3446],[39,1],[38,1],[38,1],[39,0],[46,0],[46,0],[45,0],[46,0],[46,-1],[46,0],[47,0]],[[5985,3448],[0,-90],[0,-90],[0,-90]],[[5443,2632],[-40,-7],[-41,-7],[-40,-7],[-36,-5],[-36,-5],[-36,-5],[-8,49],[-8,49],[-31,54],[-31,55],[-45,23],[-10,55],[-27,5],[-27,4],[-34,52],[-44,9],[-44,10],[-25,31],[-6,52],[-5,52],[-31,64],[-31,64],[-31,64],[-20,66],[-20,66],[-19,66],[-20,67],[3,44],[-21,31],[-21,32],[-25,53],[-24,53],[-25,54],[-6,77],[-7,78],[-25,52],[-26,52],[11,79],[10,79],[-2,82],[-1,82]],[[4538,4401],[44,0],[45,-1],[45,0],[44,0],[45,0],[45,0]],[[4806,4400],[44,0],[45,0]],[[4895,4400],[45,-1]],[[4940,4399],[0,-95],[0,-95],[0,-95],[0,-96],[0,-95],[0,-95],[36,-52],[36,-51],[36,-52],[36,-51],[35,-52],[35,-50],[34,-50],[34,-51],[34,-50],[35,-51],[32,-48],[32,-49],[32,-48],[32,-48],[32,-49]],[[6653,3799],[0,-73],[0,-93],[0,-94],[0,-93]],[[6653,3446],[-46,0],[-46,1]],[[6561,3447],[-38,0],[-38,0],[-38,0],[-41,0],[-40,0],[-41,0],[-40,0],[-38,0],[-38,0],[-37,0],[-38,0],[-37,0],[-38,0],[-37,0],[-37,0]],[[5985,3447],[0,85]],[[5985,3532],[-1,85],[0,85],[0,85],[0,84],[0,85],[0,85],[0,85],[0,85]],[[5984,4211],[32,0],[32,0],[31,0],[32,0],[32,0],[32,0],[38,0],[38,0],[39,0],[38,0],[38,0],[32,0],[32,0],[32,0]],[[6462,4211],[47,0],[48,0],[47,0],[48,0],[0,-93],[0,-92],[0,-6]],[[6652,4020],[0,-74]],[[6652,3946],[1,-73],[0,-74]],[[4940,4399],[47,1],[47,0],[48,0],[47,0],[47,0],[47,0],[0,1]],[[5271,4401],[48,-1],[47,0]],[[5509,4400],[0,-96],[0,-95],[0,-95],[0,-96],[0,-95],[0,-95],[0,-96],[0,-95],[0,-95],[0,-96]],[[5985,2369],[0,89],[0,90],[0,90]],[[5985,3178],[0,89],[0,90],[0,90]],[[6561,3447],[0,-95]],[[6561,3352],[0,-83],[0,-83],[0,-84],[0,-83],[0,-83],[0,-83],[0,-90],[0,-90],[0,-90],[0,-89],[-44,0],[-44,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[1,-16],[11,-31]],[[6227,2447],[-42,0],[-41,0],[-41,0],[-42,0],[0,-78],[-38,0],[-38,0]],[[5224,4572],[0,-85],[-1,-86]],[[4895,4400],[-44,0],[-45,0]],[[4538,4401],[-15,73],[-16,73],[13,60],[12,60],[13,60],[5,86],[6,87],[6,86],[6,87],[-5,72],[-5,73]],[[5233,4798],[-8,-54],[-1,-86]],[[6461,4592],[0,-96],[0,-95],[0,-95]],[[6461,4306],[1,-95]],[[5984,4211],[-35,0],[-39,2],[-40,1],[-43,1],[-34,1],[0,69],[0,64],[0,52]],[[6458,4981],[1,-78],[0,-78]],[[6459,4825],[1,-78],[0,-78],[1,-77]],[[7777,3070],[-1,-15],[-17,-14],[-1,-28],[-12,-51],[-11,-11],[-17,-26],[-10,-39],[-21,-66],[-2,-46],[11,-50],[-5,-37]],[[7691,2687],[-40,3],[-41,3],[-34,-2],[-35,-2],[-35,-2],[-46,0],[-46,0]],[[7414,2687],[3,54],[3,54],[-23,1],[-18,-2],[-5,12]],[[7374,2806],[1,84],[2,83]],[[7377,2973],[1,93],[1,92]],[[7379,3158],[-7,68],[-6,67]],[[7366,3293],[-6,67]],[[7360,3360],[38,-1],[39,-1],[39,-1],[35,0],[35,0],[35,0],[34,0],[33,0],[34,0],[36,-4],[36,-4],[37,-4],[7,-24],[-10,-20],[-11,-21],[-6,-19],[31,0],[31,0]],[[7833,3261],[-1,-16],[-9,-26],[-17,-19],[-4,-32],[-15,-25],[1,-55],[-11,-18]],[[7740,4497],[6,-14],[11,-10],[4,-21],[15,-15],[10,-16],[-5,-52],[-17,-43],[-7,-14],[-22,-11],[-32,-9],[-9,-33],[12,-15],[4,-29],[-12,-33],[-7,-29],[-24,-28],[-2,-35]],[[7665,4090],[-13,16],[-18,31],[-35,-2],[-35,-1],[-35,-2],[-36,0],[-37,0],[-36,-1],[-43,0],[-43,0],[-43,0],[-43,0]],[[7248,4131],[-6,34],[3,34],[-2,33],[-10,55],[-6,23],[-7,6],[-1,44],[-6,32],[-17,36],[0,16],[-6,31],[-5,19]],[[7185,4494],[1,18],[-16,21],[8,31],[5,31],[2,20],[-12,26],[0,46],[13,0]],[[7684,4687],[1,-10],[13,-31],[-9,-14],[1,-40],[4,-17],[6,-30],[31,-19],[9,-29]],[[7318,3447],[-41,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[-43,0],[-32,0],[-31,-1],[-32,0],[-48,0],[-48,0],[-44,0],[-45,0]],[[6653,3799],[-1,74],[0,73]],[[6652,4020],[42,0],[41,0],[42,0],[42,0],[41,0],[41,0],[42,0],[44,0],[44,0],[43,0],[44,0],[44,0],[44,0],[44,0],[44,0]],[[7294,4020],[22,-26],[13,1],[2,-28],[-13,-35],[7,-18],[12,-40]],[[7337,3874],[25,-18],[0,-69]],[[7362,3787],[-1,-68],[0,-68],[0,-68],[0,-68]],[[7361,3515],[-1,-67],[-42,-1]],[[7887,3438],[-3,-19],[2,-30],[-16,-16],[-21,-20]],[[7849,3353],[-2,-18],[-6,-27],[-8,-47]],[[7360,3360],[1,87],[-1,0]],[[7360,3447],[1,68]],[[7362,3787],[0,68],[-25,19]],[[7294,4020],[-13,41],[-15,24],[-16,30],[-2,16]],[[7665,4090],[-9,-48],[9,-57],[16,-39],[18,-32],[22,-26],[9,-9],[8,-36],[1,-32],[11,-8],[18,13],[18,-31],[-5,-35],[-9,-28],[-6,-34],[13,-28],[19,-27],[11,-1],[25,-42],[10,-5],[7,-46],[-4,-29],[13,-47],[10,5],[17,-30]],[[6461,4306],[0,96],[0,95],[0,95]],[[6461,4592],[46,0],[47,0],[47,0],[46,0],[36,0],[36,0],[35,0],[36,0],[38,0],[39,0],[38,0],[38,0],[38,0],[25,-24],[35,-16],[8,9],[23,-1],[34,2],[25,-24],[26,-16],[4,-16],[8,-9],[16,-3]],[[7377,2973],[-2,-84],[-1,-83]],[[7374,2806],[-41,37],[-27,21],[-22,-13],[-33,2],[-20,0],[-16,-16],[-16,-8],[-14,9],[-32,-10],[-14,32],[-15,-28],[-26,13],[-27,29],[-29,-19],[-12,46],[-45,-4],[-28,10],[-32,13],[-14,40],[-25,-13],[-16,16],[-23,20],[0,91],[0,91],[0,94],[0,93],[-47,0],[-48,0],[-32,0],[-32,0],[-32,0],[-31,0],[-32,0],[-32,0]],[[7318,3447],[42,0]],[[7366,3293],[6,-68],[7,-67]],[[6461,4592],[-1,78],[0,78],[-1,77]],[[7691,2687],[7,-11],[-9,-28],[14,-39],[-4,-24],[12,-32],[-13,-20],[-4,-36],[-19,-30],[-8,-40],[-9,-46],[-12,-21],[4,-47],[42,-3],[42,-4],[45,0],[45,0],[-3,-32],[-6,-31],[6,-24],[13,-22],[3,-32]],[[7837,2165],[2,-19],[1,-3]],[[7840,2143],[17,-50],[-1,-78],[20,-37],[-18,-25],[-36,28],[-36,-36],[-34,3],[-35,2],[-35,51],[-36,50],[-42,-12],[-41,-12],[-35,23],[-35,22],[-29,-7],[-30,-7]],[[7434,2058],[-7,21],[10,28],[14,25],[1,38],[-7,13],[8,45],[6,21],[9,70],[-8,26],[-11,43],[-8,44],[-6,30],[-15,21],[-2,68],[-2,68],[-2,68]],[[7434,2058],[-40,-22],[-40,-22],[-29,-47],[-29,-48],[-29,-47],[-32,-27],[-31,-27],[-32,-28],[-26,-45],[-26,-46],[-11,-43],[-11,-43],[0,-65],[-1,-66],[5,-92],[18,-65],[-37,-5],[-34,21],[-34,21],[-37,29],[-37,30],[-14,45],[-13,44],[-10,67],[-11,67],[-28,54],[-28,54],[-17,56],[-16,56],[-24,66],[-24,65],[-34,38],[-33,38],[-39,-2],[-39,-2],[-20,-50],[-20,-50],[-20,-51],[-40,29],[-39,29],[-25,28],[-25,29],[-12,53],[-11,52],[-16,50],[-16,50],[-28,42],[-29,41],[-24,31],[-25,30],[-17,34],[-17,33]],[[9361,4202],[-1,5],[-3,24],[20,18],[-7,16],[3,73],[2,73]],[[9375,4411],[37,-1],[36,-2],[45,-2],[44,-3]],[[9537,4403],[1,-52],[0,-52],[-6,-28]],[[9532,4271],[-42,-9],[-28,-5],[-27,-5],[-37,-25],[-37,-26],[0,1]],[[9602,4305],[-3,29],[-15,22],[-7,50],[-40,-3]],[[9375,4411],[11,66],[10,66]],[[9396,4543],[39,-2],[40,-1]],[[9475,4540],[38,-1],[38,-1],[39,0],[10,19],[20,12],[11,-3]],[[9631,4566],[0,-51],[-1,-50],[16,-51],[16,-50],[39,-5],[-10,70],[29,-43],[-8,-54],[-32,-16],[-32,-15],[-46,4]],[[9475,4540],[-8,19],[7,25],[3,50],[3,12],[3,45],[10,38],[8,17],[12,45],[2,31],[3,18],[18,9],[22,22],[3,24],[-7,28],[12,51],[-1,0]],[[9565,4974],[10,47],[30,10]],[[9605,5031],[4,-88],[3,-87],[4,-88],[3,-88],[-4,-18],[18,-29],[4,-26],[10,2]],[[9647,4609],[-16,-43]],[[9602,4305],[-35,-17],[-35,-17]],[[9396,4543],[2,78],[2,79],[-14,1],[-1,8],[6,27],[-9,50],[9,39],[-5,30],[-2,56],[4,25],[2,38]],[[9390,4974],[44,0],[44,0],[43,0],[44,0]],[[8278,2302],[-39,0],[-39,-1],[-39,0],[-39,0],[-39,0],[-27,-6],[-27,-5],[-2,-15],[22,-46],[-5,-38],[-7,-26]],[[8037,2165],[-43,11],[-42,10]],[[7952,2186],[-1,73],[0,73],[-1,73],[-1,72],[4,77],[5,76],[4,76],[4,76],[6,82],[5,83],[6,82],[-7,37]],[[7976,3066],[40,0],[40,0],[40,0],[41,-1],[41,-1],[41,0]],[[8219,3064],[8,-79],[8,-79],[8,-79],[8,-63],[7,-64],[8,-63],[13,-59],[9,-34],[-16,-34],[-5,-61],[5,-35],[-2,-34],[-3,-31],[6,-25],[5,-22]],[[8278,2302],[14,-52],[32,-3],[32,-2],[32,-3],[39,-8],[38,-7],[39,-7],[39,-7],[7,-33],[12,17],[0,66],[12,7],[19,-14],[20,-4]],[[8613,2252],[8,-66],[9,-66],[16,-82],[16,-82],[21,-67],[21,-67],[1,-83],[15,-74],[15,-73],[15,-74],[-2,-64],[-1,-65],[-4,-74],[-12,-58],[-12,-58],[-29,-24],[-23,11],[-24,12],[-15,83],[-36,44],[-17,55],[-17,55],[-17,54],[-22,73],[-22,73],[-14,75],[10,63],[9,63],[-13,53],[-13,52],[-25,53],[-25,54],[-25,53],[-37,29],[-32,-29],[-32,-29],[-32,-29],[-17,10],[-23,44],[-24,45],[-29,24],[-30,23],[-36,-8],[-36,-8],[-36,-8]],[[8219,3064],[36,-1],[37,-1],[26,1],[25,1]],[[8343,3064],[40,-1],[39,0],[40,-1]],[[8462,3062],[-11,-16],[-15,-36],[26,-31],[16,-12],[18,-60],[11,-34],[34,-45],[6,-24],[23,-31],[11,-46],[30,-38],[7,-44],[6,-21],[-3,-14],[17,-21],[10,-35],[0,-37],[8,-7],[17,-9]],[[8673,2501],[-23,-57],[-22,-57],[-8,-67],[-7,-68]],[[7777,3070],[47,0],[47,0],[35,-1],[35,-1],[35,-2]],[[7952,2186],[-36,-6],[-37,-7],[-39,-30]],[[7840,2143],[-3,22],[-3,32],[-13,22],[-6,24],[6,31],[3,32],[-45,0],[-45,0],[-42,4],[-42,3],[-4,47],[12,21],[9,46],[8,40],[19,30],[4,36],[13,20],[-12,32],[4,24],[-14,39],[9,28],[-7,11]],[[8462,3062],[9,6],[26,16],[26,17],[44,-1],[44,-1],[44,-9],[1,-17],[10,13],[15,-32],[-1,-23],[36,0],[35,-1],[35,-1],[36,-60],[35,-60],[36,-60]],[[8893,2849],[-24,-35],[-24,-35],[-14,-64],[-35,-41],[-35,-41],[-35,-42],[-27,-45],[-26,-45]],[[8037,4345],[0,-74],[0,-73]],[[8037,4198],[0,-74],[0,-73],[0,-74],[0,-73],[-11,-53],[8,-14],[5,-33],[-1,-26],[-8,-11],[-7,-32],[-19,-41],[-14,-52],[-3,-38]],[[7987,3604],[1,-14],[-11,-27],[8,-18],[-17,-14],[-21,-16],[4,-41],[-13,-16],[-23,17],[-25,11],[-7,-19],[4,-29]],[[7740,4497],[33,0],[32,0],[32,0],[34,0],[33,0],[33,0],[37,-1],[36,-1],[0,1],[1,0]],[[8011,4496],[0,-1],[0,-49],[13,-51],[13,-50]],[[8297,4339],[-1,-86],[0,-86],[0,-93],[0,-93],[-1,-66],[0,-66]],[[8295,3849],[-6,-9],[8,-39],[-4,-14],[-16,0],[-15,-17],[-22,7],[-2,-37],[-14,-14],[-12,-33],[-14,-5],[-21,-57],[-19,16],[-6,23],[-17,-38],[-10,-21],[-21,23],[-22,-18],[-7,-19],[-30,29],[-20,-21],[-25,15],[0,-21],[-13,5]],[[8037,4198],[0,74],[0,73]],[[8037,4345],[9,-13],[32,1],[26,21]],[[8104,4354],[34,0],[34,0],[35,-1],[45,1],[45,0],[0,-15]],[[8508,3717],[2,-18],[-1,-39],[11,-30],[5,-29],[14,-25],[9,-23],[19,-3]],[[8567,3550],[-10,-15],[-28,-42],[-30,-22],[-2,-16],[-10,-20],[-25,-21],[-2,-2],[-1,-2],[-7,-16],[-15,-9],[-5,-3],[-27,-11]],[[8405,3371],[-33,-3],[-32,-3],[-42,4],[-42,4],[-27,-2],[-28,3],[-27,2],[-28,1],[-28,1],[-26,0],[-25,1],[-30,-3],[-30,-3],[-3,9],[-19,0],[0,-30],[-45,0],[-45,1],[-46,0]],[[8295,3849],[33,-4],[17,-19],[25,-43],[20,-13],[15,-16],[22,6],[17,-11],[21,10],[18,3],[7,-26],[18,-19]],[[8343,3064],[2,40],[20,12],[7,21],[13,23],[20,5],[22,8],[22,17],[9,17],[19,15],[-1,14],[24,26],[8,-17],[35,36],[16,-4],[15,32],[20,8],[-2,28],[3,24]],[[8595,3369],[40,-3],[40,-2],[41,-2],[40,-2],[47,0],[48,0],[47,0],[48,-1],[34,1],[33,0],[34,1],[45,0],[45,1],[12,0]],[[9149,3362],[5,-64],[4,-63],[5,-64],[-31,-71],[-30,-70],[-33,-19],[-33,-19],[-33,-19],[-31,-56],[-31,-56],[-24,-6],[-24,-6]],[[8297,4339],[24,1],[24,1],[44,0],[36,2]],[[8425,4343],[29,-20],[30,-20],[23,-5],[24,-5],[35,13],[34,13],[28,26],[29,26],[24,13],[25,13]],[[8706,4397],[0,-85],[0,-85],[0,-85]],[[8706,4142],[-14,-10],[4,-24],[-4,-44],[-10,-50],[-9,-41],[-2,-19],[-26,-44],[-11,-9],[-13,-6],[-11,5],[-21,-33],[-4,-34],[-3,-19],[-9,-8],[-1,22],[-13,4],[-13,-41],[-2,-42],[-12,-27],[-24,-5]],[[8405,3371],[47,-2],[47,-2],[48,-2],[11,1],[37,3]],[[7609,5299],[32,13],[32,14],[32,13],[29,-32],[29,-33]],[[7763,5274],[0,-1],[6,4],[15,-7],[8,-34],[42,-17],[42,-17],[27,-17],[28,-17],[27,-1],[18,-2],[5,-31],[23,-12],[8,-27],[-5,-15],[-5,-31],[21,-2],[-7,-31],[13,-22],[2,-1]],[[8031,4993],[0,-2],[-19,-35],[-19,-34],[13,-23],[35,62],[35,61],[15,1],[-25,-73],[-25,-74],[-11,-66],[-11,-67],[-9,-54],[-9,-54],[6,-46],[6,-47],[-2,-46]],[[8805,3918],[-1,-49],[15,18]],[[8972,3890],[-10,-35],[-5,4],[-22,24],[-22,23],[-2,-11],[-6,-40],[-8,-13],[-3,-6],[-8,-10],[-11,-14],[-14,-25],[-7,8],[-4,-10],[-7,-17],[-9,-24],[-5,-17],[-13,-8],[-15,14],[-12,15],[-9,-42],[-8,-15],[-9,-19],[-4,-28],[-19,-25],[-13,-33],[2,-22],[-1,-7],[-1,-11],[-15,-14],[-14,2],[-12,-13],[-10,6],[-1,-6],[-1,-11],[-6,-2],[-30,-14],[-11,14],[-9,-6],[-22,-17],[-14,15],[-2,4],[-9,13],[-4,33]],[[8706,4142],[0,-88],[0,-88],[33,0],[33,0],[33,0]],[[9157,3967],[7,15],[9,8],[20,-9]],[[9193,3981],[-14,-20],[3,-37]],[[9182,3924],[10,-51],[10,-52],[23,-34],[2,-63]],[[9193,3981],[20,17],[7,12],[22,25],[13,21],[-30,49],[-2,20],[-10,6],[0,31],[11,23],[-5,25],[15,17],[17,43],[12,8]],[[9263,4278],[36,-38],[37,-37],[-4,-40]],[[9332,4163],[-29,-53],[28,-9],[-10,-68],[-11,-69],[-23,-49],[-23,-49],[-23,-49],[-7,49],[-21,10],[-31,48]],[[9361,4202],[-6,-5],[47,12],[46,12],[47,12],[28,-36],[-44,-19],[-45,-19],[-44,-19],[-30,-1],[-31,0],[3,24]],[[9263,4278],[-16,14],[-16,13],[-6,27],[2,21],[-11,18],[-21,30],[-43,0],[-43,0],[-43,0],[-47,0],[-46,0],[-46,0],[-37,0],[-38,0],[-37,0],[-37,0],[0,52]],[[8778,4453],[27,37],[28,38],[27,38],[-2,19],[-8,57],[45,22],[37,-4],[38,-3],[39,-8],[39,-8],[36,32],[35,31],[-5,74],[-10,27],[33,44],[32,45],[33,44],[43,35],[36,0],[36,1],[36,0],[37,0]],[[8706,4397],[36,28],[36,27],[0,1]],[[9605,5031],[41,30],[17,43],[17,43],[14,75],[15,74],[24,48],[24,48],[25,48],[31,-51],[32,17],[32,16],[22,-28],[21,-27],[0,-87],[0,-86],[0,-87],[31,-54],[31,-54],[17,-62],[-34,-31],[-34,-31],[-34,-31],[-33,-22],[-33,-22],[-32,-22],[-34,-18],[-34,-19],[-33,-19],[-25,-57],[-26,-56]],[[8104,4354],[19,27],[20,46],[19,47],[1,63],[2,62],[-16,59],[-16,59],[5,81],[12,47],[13,47],[24,64],[38,45],[9,-63],[8,47],[8,47],[22,19],[13,73],[40,-20],[41,-19],[35,-37],[36,-37],[7,-87],[-8,-86],[-27,-39],[-26,-38],[5,-48],[19,-1],[30,42],[29,42],[35,-20],[9,-55],[9,-55],[4,-78],[-22,-53],[-23,-52],[-20,-67],[-17,-37],[-16,-36]],[[8031,4993],[-2,1],[-13,22],[7,31],[-21,2],[5,31],[5,15],[-8,27],[-23,12],[-5,31],[-18,2],[-27,1],[-28,17],[-27,17],[-42,17],[-42,17],[-8,34],[-15,7],[-6,-4],[0,1],[0,-1]],[[7763,5273],[37,25],[37,24],[38,31],[39,31],[42,31],[42,32],[-16,-50],[-15,-51],[27,-12],[27,-12],[34,-36],[33,-37],[43,22],[42,21],[47,8],[47,8],[20,-53],[29,-8],[6,19],[-6,-19],[25,-6],[24,-38],[24,-38],[-42,-8],[-42,-9],[-3,1],[-38,10],[-37,10],[-38,-19],[-37,-19],[-32,-8],[-33,-9],[-28,-61],[-28,-60]],[[1791,7283],[-31,-24],[-32,-24],[-32,-25],[-24,25],[-25,25],[-14,89],[43,34],[43,34],[26,14],[25,15],[32,-7],[31,-6],[21,-30],[20,-29],[-41,-46],[-42,-45]],[[592,7816],[-29,-15],[-29,-15],[-32,18],[-31,18],[-29,26],[-29,26],[31,10],[32,11],[31,11],[38,-8],[38,-9],[9,-73]],[[5,8554],[30,-18],[29,-18],[30,10],[30,9],[38,-25],[39,-25],[31,-8],[32,-9],[31,-8],[-8,-21],[-36,-20],[-36,-20],[-36,20],[-36,21],[-37,35],[-42,-6],[-42,-5],[-22,16],[5,72]],[[1595,9958],[34,-43],[35,-43],[42,37],[40,-3],[41,-2],[40,-3],[40,-3],[-5,-44],[36,-8],[37,-8],[36,-8],[36,-8],[33,6],[32,6],[33,7],[40,-12],[40,-12],[40,-12],[41,-13],[40,-12],[46,-4],[45,-5],[46,-4],[46,-5],[37,-12],[37,-12],[42,10],[42,10],[43,11],[36,-15],[36,-14],[36,-14],[36,-15],[35,-9],[34,-8],[35,-9],[0,-89],[0,-88],[0,-89],[0,-88],[-1,-89],[0,-88],[0,-89],[0,-88],[0,-91],[0,-90],[0,-90],[0,-91],[0,-90],[0,-91],[0,-90],[0,-91],[0,-90],[0,-91],[0,-90],[0,-91],[47,-2],[47,-3],[31,-18],[31,-17],[31,-18],[33,-42],[33,-42],[28,-41],[29,-42],[28,-42],[31,36],[31,35],[31,36],[32,20],[32,21],[31,20],[26,-49],[25,-49],[32,-39],[32,-39],[30,-29],[29,-29],[29,-28],[30,-69],[29,-68],[25,-54],[24,-55],[25,-54],[24,-54],[40,-31],[41,-30],[41,-30],[40,-31],[1,-60],[2,-60],[-27,-46],[-26,-46],[-27,36],[-26,36],[-42,30],[-42,30],[-13,84],[-14,83],[-31,38],[-30,39],[-31,38],[-31,39],[-17,60],[-17,60],[-17,60],[-46,6],[-46,6],[-38,2],[-38,1],[-38,1],[-37,1],[-38,18],[-37,19],[-37,18],[-40,39],[-39,40],[-40,40],[-39,39],[-39,40],[-46,18],[-46,18],[-41,17],[-42,17],[-42,17],[-42,17],[-44,-5],[-44,-6],[-44,-5],[-37,17],[-38,18],[-37,17],[-38,18],[-37,17],[-38,27],[-38,28],[-38,27],[-35,-14],[-35,-13],[-36,-14],[10,-66],[10,-66],[-26,-6],[-27,-6],[-36,-14],[-37,-13],[-37,-13],[-42,-32],[-42,-33],[-35,-13],[-35,-14],[-36,-13],[-6,56],[-7,56],[14,63],[14,62],[15,62],[33,20],[34,19],[34,20],[-26,48],[-41,-36],[-40,-35],[-41,-35],[-32,-64],[-33,-63],[-34,-34],[-35,-34],[-34,-34],[-34,-34],[35,-46],[34,-47],[-30,-45],[-30,-46],[-30,-46],[-34,-26],[-34,-27],[-34,-26],[-32,-20],[-32,-19],[-32,-19],[-11,-43],[-12,-42],[-38,-25],[-37,-24],[-37,-25],[-37,-24],[-15,-45],[-15,-45],[-38,-27],[-37,-27],[-37,-27],[-33,7],[-32,7],[-45,-26],[-44,-27],[-33,-22],[-32,-21],[-32,-22],[-40,-32],[-40,-32],[-40,-13],[-41,-14],[-41,-13],[-41,-14],[-15,32],[35,30],[34,29],[35,30],[31,20],[31,19],[31,20],[34,35],[34,34],[34,35],[40,7],[39,8],[39,7],[24,39],[23,39],[34,28],[33,29],[33,29],[33,28],[21,38],[35,34],[35,34],[9,72],[8,72],[24,56],[24,57],[-36,-19],[-37,-20],[-37,-19],[-30,33],[-26,-35],[-26,-35],[-31,49],[-31,48],[-26,-68],[-18,47],[-18,48],[-31,-26],[-32,-25],[-32,-26],[-29,1],[-30,0],[-4,56],[-4,57],[17,70],[-30,34],[-31,34],[-41,-12],[-42,-12],[-41,-13],[-40,45],[-41,45],[-32,23],[-33,23],[0,54],[0,54],[-37,40],[-37,41],[19,55],[18,55],[39,53],[39,53],[17,49],[17,49],[39,7],[38,7],[33,-15],[33,-16],[38,46],[39,46],[34,-8],[35,-8],[36,29],[37,30],[-18,87],[-27,17],[-27,17],[36,37],[35,37],[-29,-1],[-30,-1],[-33,-14],[-34,-14],[-34,-14],[-29,-42],[-37,21],[-38,21],[-45,-7],[-45,-7],[-45,-7],[-47,15],[-46,15],[-47,16],[-20,38],[-20,38],[-40,37],[-40,37],[-40,37],[44,27],[45,26],[45,27],[42,18],[43,19],[42,19],[43,18],[42,19],[40,0],[39,0],[-7,-48],[-6,-47],[40,1],[40,2],[41,1],[40,2],[40,1],[-26,39],[-25,40],[-26,39],[-39,24],[-39,25],[-40,24],[-34,47],[-33,48],[-31,27],[-30,27],[-31,27],[-44,21],[-43,20],[-44,20],[27,50],[26,50],[43,1],[42,2],[42,1],[43,2],[40,29],[40,29],[40,29],[11,46],[12,47],[32,30],[33,30],[32,30],[47,11],[46,11],[45,21],[45,21],[46,21],[45,22],[44,-7],[44,-6],[36,25],[37,26],[37,25],[36,26],[36,-11],[37,-10],[36,-10],[36,-10]],[[9030,3816],[3,-6],[2,-5],[3,-5],[0,-5],[-1,-6]],[[9042,3684],[33,-31],[33,-30],[2,-91],[2,-91],[27,-13],[10,-66]],[[9163,3626],[-15,-65],[-14,-65],[8,-7],[27,76],[27,76]],[[5985,3532],[0,-84]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment