Skip to content

Instantly share code, notes, and snippets.

@curran
Last active June 8, 2019 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save curran/9b193942e2fc4ac88c6e to your computer and use it in GitHub Desktop.
Save curran/9b193942e2fc4ac88c6e to your computer and use it in GitHub Desktop.
Unemployment in San Mateo County
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>D3 Example</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.js"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<style>
path {
stroke: gray;
stroke-width: 0.1px;
}
text {
font-family: 'Lato', sans-serif;
font-size: 1.5em;
/* This trick adds a heavy white shadow around the text. */
text-shadow:
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white,
0px 0px 6px white;
}
</style>
</head>
<body>
<script>
var width = 960;
var height = 500;
var csvFile = "Unemployment_Percentage_by_Census_Tract_San_Mateo_County_2010.csv";
var topoJSONFile = "tl_2010_06081_tract10.json";
// Use mercator so the map matches people's expectation,
// which has been learned from using Google Maps.
var projection = d3.geo.mercator()
.scale(65000)
.translate([width / 2, height / 2])
.center([-122.4, 37.54]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var choroplethG = svg.append("g");
var legendFormat = d3.format(".1%");
var legendSpacing = 40;
var legendLabelOffset = 35;
var legendBoxSize = 30;
var legendG = svg.append("g")
.attr("transform", "translate(50, 50)");
var tooltip = svg.append("text").attr("class", "tooltip");
var tooltipXOffset = 10;
var color = d3.scale.quantile()
.range(colorbrewer.Greys[9]);
var zoom = d3.behavior.zoom()
.scaleExtent([1, 20])
.on("zoom", function (){
choroplethG.attr("transform", "translate(" + d3.event.translate + ") scale(" + d3.event.scale + ")");
});
svg.call(zoom);
function showTooltip(data){
return function(d){
var value = data.get(d.properties.TRACTCE10);
tooltip
.attr("x", d3.event.pageX + tooltipXOffset)
.attr("y", d3.event.pageY)
.text(legendFormat(value) + " unemployment");
};
}
function hideTooltip(){
tooltip.text("");
}
fetchData(function (data){
fetchFeatures(function (features){
render(features, data);
});
});
function fetchData(callback){
// "data" will be a hash where keys are census tract codes
// and values are unemployment values.
var data = d3.map();
d3.csv(csvFile, function (d){
var id = d["Tract ID"];
var unemployment = parseFloat(d["Unemployment Rate"].replace("%","")) / 100;
data.set(id, unemployment);
}, function(){ callback(data); });
}
function fetchFeatures(callback){
d3.json(topoJSONFile, function(err, tracts){
// Parse the topoJSON structure.
var features = topojson.feature(tracts, tracts.objects.tl_2010_06081_tract10).features;
// Exclude the census tract in the water that has no unemployment data.
callback(features.filter(function (d){
return d.properties.TRACTCE10 !== "990100";
}));
});
}
function render(features, data){
color.domain(data.values());
renderChoropleth(features, data);
renderLegend(data);
}
function renderChoropleth(features, data){
choroplethG.selectAll("path")
.data(features)
.enter().append("path")
.attr("d", path)
.attr("fill", function (d){
return color(data.get(d.properties.TRACTCE10));
})
.on("mouseover", showTooltip(data))
.on("mousemove", showTooltip(data))
.on("mouseout", hideTooltip);
}
function renderLegend(data){
var extent = d3.extent(data.values());
var legendPoints = [extent[0]].concat(color.quantiles(), extent[1]);
var legendEntries = [];
legendPoints.forEach(function(d, i){
if(i < legendPoints.length - 1){
legendEntries.push([
legendPoints[i],
legendPoints[i + 1]
]);
}
});
var legend = legendG.selectAll("g.legendEntry")
.data(legendEntries)
.enter()
.append("g").attr("class", "legendEntry");
legend
.append("rect")
.attr("x", 0)
.attr("y", function(d, i) { return i * legendSpacing; })
.attr("width", legendBoxSize)
.attr("height", legendBoxSize)
.style("stroke", "gray")
.style("stroke-width", "1px")
.attr("fill", function(d){
return color(d[0]);
});
legend
.append("text")
.attr("x", legendLabelOffset)
.attr("y", function(d, i) { return i * legendSpacing; })
.attr("dy", "1em")
.text(function(d) {
var min = legendFormat(d[0]);
var max = legendFormat(d[1]);
return min + " - " + max;
});
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.00004815204789508687,0.000042127236452567844],"translate":[-122.58817699999999,37.053858]},"objects":{"tl_2010_06081_tract10":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602400","GEOID10":"06081602400","NAME10":"6024","NAMELSAD10":"Census Tract 6024","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2716047,"AWATER10":0,"INTPTLAT10":"+37.6444870","INTPTLON10":"-122.4358138"}},{"arcs":[[4,5,6,-1,7,8,9,10,11]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602300","GEOID10":"06081602300","NAME10":"6023","NAMELSAD10":"Census Tract 6023","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":10012256,"AWATER10":3414090,"INTPTLAT10":"+37.6504433","INTPTLON10":"-122.3963686"}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602000","GEOID10":"06081602000","NAME10":"6020","NAMELSAD10":"Census Tract 6020","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3657018,"AWATER10":0,"INTPTLAT10":"+37.6678381","INTPTLON10":"-122.4203403"}},{"arcs":[[17,18,-4,19,20]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601800","GEOID10":"06081601800","NAME10":"6018","NAMELSAD10":"Census Tract 6018","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1864682,"AWATER10":0,"INTPTLAT10":"+37.6553283","INTPTLON10":"-122.4460230"}},{"arcs":[[21,22,23,24,25,-17,26,27]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601601","GEOID10":"06081601601","NAME10":"6016.01","NAMELSAD10":"Census Tract 6016.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":6546123,"AWATER10":0,"INTPTLAT10":"+37.6781941","INTPTLON10":"-122.4496579"}},{"arcs":[[28,29,30,31]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612100","GEOID10":"06081612100","NAME10":"6121","NAMELSAD10":"Census Tract 6121","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":995624,"AWATER10":0,"INTPTLAT10":"+37.4591030","INTPTLON10":"-122.1439038"}},{"arcs":[[32,-29,33,34]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611900","GEOID10":"06081611900","NAME10":"6119","NAMELSAD10":"Census Tract 6119","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3258093,"AWATER10":53332,"INTPTLAT10":"+37.4667198","INTPTLON10":"-122.1238259"}},{"arcs":[[35,36,-35,37,38]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611800","GEOID10":"06081611800","NAME10":"6118","NAMELSAD10":"Census Tract 6118","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3943823,"AWATER10":2162146,"INTPTLAT10":"+37.4770584","INTPTLON10":"-122.1324808"}},{"arcs":[[39,40,-39,41,42,43]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611700","GEOID10":"06081611700","NAME10":"6117","NAMELSAD10":"Census Tract 6117","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":10158098,"AWATER10":2449490,"INTPTLAT10":"+37.4941291","INTPTLON10":"-122.1506224"}},{"arcs":[[44,45,46,47,48]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611300","GEOID10":"06081611300","NAME10":"6113","NAMELSAD10":"Census Tract 6113","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1748346,"AWATER10":3654,"INTPTLAT10":"+37.4517250","INTPTLON10":"-122.2251406"}},{"arcs":[[49,50,-40,51,52,53,54,55,56]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610302","GEOID10":"06081610302","NAME10":"6103.02","NAMELSAD10":"Census Tract 6103.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":24084182,"AWATER10":9394116,"INTPTLAT10":"+37.5128606","INTPTLON10":"-122.2076803"}},{"arcs":[[57,58,59,60,61,-24]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601300","GEOID10":"06081601300","NAME10":"6013","NAMELSAD10":"Census Tract 6013","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1115727,"AWATER10":0,"INTPTLAT10":"+37.6878686","INTPTLON10":"-122.4654837"}},{"arcs":[[62,63,-60,64,65]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601200","GEOID10":"06081601200","NAME10":"6012","NAMELSAD10":"Census Tract 6012","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1987410,"AWATER10":0,"INTPTLAT10":"+37.6932383","INTPTLON10":"-122.4784484"}},{"arcs":[[66,67,68,69,70,71,72]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601000","GEOID10":"06081601000","NAME10":"6010","NAMELSAD10":"Census Tract 6010","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2683381,"AWATER10":1452216,"INTPTLAT10":"+37.6727192","INTPTLON10":"-122.4929574"}},{"arcs":[[73,74,75,76,-67,77]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600900","GEOID10":"06081600900","NAME10":"6009","NAMELSAD10":"Census Tract 6009","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2039820,"AWATER10":306981,"INTPTLAT10":"+37.7055918","INTPTLON10":"-122.4922836"}},{"arcs":[[78,79,-25,-62,80,81,82,83]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600500","GEOID10":"06081600500","NAME10":"6005","NAMELSAD10":"Census Tract 6005","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1332288,"AWATER10":0,"INTPTLAT10":"+37.6970709","INTPTLON10":"-122.4568853"}},{"arcs":[[84,85,-79,86,87]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600300","GEOID10":"06081600300","NAME10":"6003","NAMELSAD10":"Census Tract 6003","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2183108,"AWATER10":0,"INTPTLAT10":"+37.7021372","INTPTLON10":"-122.4317733"}},{"arcs":[[88,-11,89,-13,-26,-80,-86,90,91]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600100","GEOID10":"06081600100","NAME10":"6001","NAMELSAD10":"Census Tract 6001","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":14686041,"AWATER10":2117780,"INTPTLAT10":"+37.6877413","INTPTLON10":"-122.4084093"}},{"arcs":[[92,93,94,95,96,97,98,99,100,101,102,103,104,105]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613501","GEOID10":"06081613501","NAME10":"6135.01","NAMELSAD10":"Census Tract 6135.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":84751757,"AWATER10":5523041,"INTPTLAT10":"+37.5392774","INTPTLON10":"-122.4241365"}},{"arcs":[[-94,106,107]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613502","GEOID10":"06081613502","NAME10":"6135.02","NAMELSAD10":"Census Tract 6135.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":24120444,"AWATER10":2196709,"INTPTLAT10":"+37.5212530","INTPTLON10":"-122.4708033"}},{"arcs":[[108,109,110,111,112]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613800","GEOID10":"06081613800","NAME10":"6138","NAMELSAD10":"Census Tract 6138","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":467847098,"AWATER10":17495974,"INTPTLAT10":"+37.2768483","INTPTLON10":"-122.3140903"}},{"arcs":[[-106,113,114,115,116,-109,117]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613700","GEOID10":"06081613700","NAME10":"6137","NAMELSAD10":"Census Tract 6137","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":110079587,"AWATER10":6797967,"INTPTLAT10":"+37.4513441","INTPTLON10":"-122.3672183"}},{"arcs":[[118,119,120,121,-95,-108]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613600","GEOID10":"06081613600","NAME10":"6136","NAMELSAD10":"Census Tract 6136","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":20859029,"AWATER10":6167250,"INTPTLAT10":"+37.5417779","INTPTLON10":"-122.4994673"}},{"arcs":[[122,123,124,125,126]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609900","GEOID10":"06081609900","NAME10":"6099","NAMELSAD10":"Census Tract 6099","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1266243,"AWATER10":0,"INTPTLAT10":"+37.4800486","INTPTLON10":"-122.2479590"}},{"arcs":[[127,128,-126,129,130]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609800","GEOID10":"06081609800","NAME10":"6098","NAMELSAD10":"Census Tract 6098","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2048352,"AWATER10":0,"INTPTLAT10":"+37.4721968","INTPTLON10":"-122.2530388"}},{"arcs":[[131,132,-128,133,134]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609700","GEOID10":"06081609700","NAME10":"6097","NAMELSAD10":"Census Tract 6097","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":5419449,"AWATER10":7218,"INTPTLAT10":"+37.4681650","INTPTLON10":"-122.2802889"}},{"arcs":[[-116,135,136,137,138,139,-127,-129,-133]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609603","GEOID10":"06081609603","NAME10":"6096.03","NAMELSAD10":"Census Tract 6096.03","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":5972263,"AWATER10":0,"INTPTLAT10":"+37.4814961","INTPTLON10":"-122.2815708"}},{"arcs":[[140,141,142,-137,143]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609601","GEOID10":"06081609601","NAME10":"6096.01","NAMELSAD10":"Census Tract 6096.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2401841,"AWATER10":0,"INTPTLAT10":"+37.4953071","INTPTLON10":"-122.2833309"}},{"arcs":[[144,145,146,147,148,149,-55,150,151]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609100","GEOID10":"06081609100","NAME10":"6091","NAMELSAD10":"Census Tract 6091","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3362252,"AWATER10":0,"INTPTLAT10":"+37.5101395","INTPTLON10":"-122.2554355"}},{"arcs":[[-136,-115,152,153,154,155,156,157,-144]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608900","GEOID10":"06081608900","NAME10":"6089","NAMELSAD10":"Census Tract 6089","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":6131034,"AWATER10":11005,"INTPTLAT10":"+37.5037677","INTPTLON10":"-122.3030640"}},{"arcs":[[-155,158,159,160,161,162]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607000","GEOID10":"06081607000","NAME10":"6070","NAMELSAD10":"Census Tract 6070","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2263233,"AWATER10":0,"INTPTLAT10":"+37.5247152","INTPTLON10":"-122.3232206"}},{"arcs":[[163,164,-159,-154,165]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606800","GEOID10":"06081606800","NAME10":"6068","NAMELSAD10":"Census Tract 6068","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2898871,"AWATER10":0,"INTPTLAT10":"+37.5294551","INTPTLON10":"-122.3377716"}},{"arcs":[[166,167,168]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608502","GEOID10":"06081608502","NAME10":"6085.02","NAMELSAD10":"Census Tract 6085.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":509360,"AWATER10":0,"INTPTLAT10":"+37.5317305","INTPTLON10":"-122.2825353"}},{"arcs":[[-167,169,170,171,172,173]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608501","GEOID10":"06081608501","NAME10":"6085.01","NAMELSAD10":"Census Tract 6085.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1250362,"AWATER10":0,"INTPTLAT10":"+37.5373986","INTPTLON10":"-122.2888705"}},{"arcs":[[-174,174,175,176,177,178,179,180,-168]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608400","GEOID10":"06081608400","NAME10":"6084","NAMELSAD10":"Census Tract 6084","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1250054,"AWATER10":403679,"INTPTLAT10":"+37.5436595","INTPTLON10":"-122.2787573"}},{"arcs":[[181,182,183,184,-177]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607900","GEOID10":"06081607900","NAME10":"6079","NAMELSAD10":"Census Tract 6079","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1303943,"AWATER10":286308,"INTPTLAT10":"+37.5615414","INTPTLON10":"-122.2864296"}},{"arcs":[[185,-182,-176,186,187]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607800","GEOID10":"06081607800","NAME10":"6078","NAMELSAD10":"Census Tract 6078","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1040677,"AWATER10":29749,"INTPTLAT10":"+37.5604085","INTPTLON10":"-122.2954266"}},{"arcs":[[188,189,190,191,-160,-165,192]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606700","GEOID10":"06081606700","NAME10":"6067","NAMELSAD10":"Census Tract 6067","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1963734,"AWATER10":0,"INTPTLAT10":"+37.5405075","INTPTLON10":"-122.3234915"}},{"arcs":[[-104,193,194,195,196,-193,-164,197]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605700","GEOID10":"06081605700","NAME10":"6057","NAMELSAD10":"Census Tract 6057","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":8035006,"AWATER10":0,"INTPTLAT10":"+37.5480113","INTPTLON10":"-122.3483099"}},{"arcs":[[198,199,200,201,-194,-103,202]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605600","GEOID10":"06081605600","NAME10":"6056","NAMELSAD10":"Census Tract 6056","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":8616482,"AWATER10":0,"INTPTLAT10":"+37.5649612","INTPTLON10":"-122.3691594"}},{"arcs":[[203,204,205,-188]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607702","GEOID10":"06081607702","NAME10":"6077.02","NAMELSAD10":"Census Tract 6077.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":610365,"AWATER10":0,"INTPTLAT10":"+37.5649733","INTPTLON10":"-122.3027250"}},{"arcs":[[-183,-186,-206,206,207,208]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607701","GEOID10":"06081607701","NAME10":"6077.01","NAMELSAD10":"Census Tract 6077.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1234007,"AWATER10":0,"INTPTLAT10":"+37.5711297","INTPTLON10":"-122.3033477"}},{"arcs":[[-204,-187,209,210,211,212]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607600","GEOID10":"06081607600","NAME10":"6076","NAMELSAD10":"Census Tract 6076","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1306438,"AWATER10":0,"INTPTLAT10":"+37.5581392","INTPTLON10":"-122.3066909"}},{"arcs":[[213,214,215,-210,-175,-173]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607500","GEOID10":"06081607500","NAME10":"6075","NAMELSAD10":"Census Tract 6075","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1962101,"AWATER10":0,"INTPTLAT10":"+37.5467375","INTPTLON10":"-122.2997437"}},{"arcs":[[216,217,-191,218,-215]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607400","GEOID10":"06081607400","NAME10":"6074","NAMELSAD10":"Census Tract 6074","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1135729,"AWATER10":0,"INTPTLAT10":"+37.5443066","INTPTLON10":"-122.3122521"}},{"arcs":[[-192,-218,219,220,-161]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607300","GEOID10":"06081607300","NAME10":"6073","NAMELSAD10":"Census Tract 6073","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1293954,"AWATER10":0,"INTPTLAT10":"+37.5342151","INTPTLON10":"-122.3119520"}},{"arcs":[[221,222,-220,-217,-214,-172]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607200","GEOID10":"06081607200","NAME10":"6072","NAMELSAD10":"Census Tract 6072","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1008601,"AWATER10":0,"INTPTLAT10":"+37.5331702","INTPTLON10":"-122.2974910"}},{"arcs":[[223,224,-162,-221,-223]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"607100","GEOID10":"06081607100","NAME10":"6071","NAMELSAD10":"Census Tract 6071","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1241936,"AWATER10":0,"INTPTLAT10":"+37.5272052","INTPTLON10":"-122.3046302"}},{"arcs":[[225,-211,-216,-219,-190,226]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606600","GEOID10":"06081606600","NAME10":"6066","NAMELSAD10":"Census Tract 6066","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1116912,"AWATER10":0,"INTPTLAT10":"+37.5529100","INTPTLON10":"-122.3170319"}},{"arcs":[[-189,-197,227,-227]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606500","GEOID10":"06081606500","NAME10":"6065","NAMELSAD10":"Census Tract 6065","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1417270,"AWATER10":0,"INTPTLAT10":"+37.5533660","INTPTLON10":"-122.3309033"}},{"arcs":[[228,229,-212,-226,-228,-196,230]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606400","GEOID10":"06081606400","NAME10":"6064","NAMELSAD10":"Census Tract 6064","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":935051,"AWATER10":0,"INTPTLAT10":"+37.5614107","INTPTLON10":"-122.3257186"}},{"arcs":[[[-51,231,232,233,234,235,236,-12,-89,237,-36,-41]],[[238,-119,-107,-93,-118,-113,239,-78,-73,240,241,242]]],"type":"MultiPolygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"990100","GEOID10":"06081990100","NAME10":"9901","NAMELSAD10":"Census Tract 9901","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":0,"AWATER10":677906681,"INTPTLAT10":"+37.6266098","INTPTLON10":"-122.5248394"}},{"arcs":[[243,244,245,-5,-237]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"984300","GEOID10":"06081984300","NAME10":"9843","NAMELSAD10":"Census Tract 9843","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":7903434,"AWATER10":3606239,"INTPTLAT10":"+37.6147578","INTPTLON10":"-122.3768614"}},{"arcs":[[246,247]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603801","GEOID10":"06081603801","NAME10":"6038.01","NAMELSAD10":"Census Tract 6038.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":227422,"AWATER10":0,"INTPTLAT10":"+37.6200410","INTPTLON10":"-122.4282283"}},{"arcs":[[248,-87,-84,249]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600401","GEOID10":"06081600401","NAME10":"6004.01","NAMELSAD10":"Census Tract 6004.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":519875,"AWATER10":0,"INTPTLAT10":"+37.7054512","INTPTLON10":"-122.4443609"}},{"arcs":[[250,251,252,253,-97,254,255]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"614000","GEOID10":"06081614000","NAME10":"6140","NAMELSAD10":"Census Tract 6140","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3139814,"AWATER10":0,"INTPTLAT10":"+37.6278130","INTPTLON10":"-122.4599881"}},{"arcs":[[-230,256,257,-207,-205,-213]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606300","GEOID10":"06081606300","NAME10":"6063","NAMELSAD10":"Census Tract 6063","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1022364,"AWATER10":0,"INTPTLAT10":"+37.5653475","INTPTLON10":"-122.3193435"}},{"arcs":[[258,259,260,-208,-258]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606200","GEOID10":"06081606200","NAME10":"6062","NAMELSAD10":"Census Tract 6062","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1203932,"AWATER10":0,"INTPTLAT10":"+37.5727209","INTPTLON10":"-122.3220821"}},{"arcs":[[-234,261,-184,-209,-261,262,263]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606100","GEOID10":"06081606100","NAME10":"6061","NAMELSAD10":"Census Tract 6061","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2454658,"AWATER10":2787265,"INTPTLAT10":"+37.5807361","INTPTLON10":"-122.3144888"}},{"arcs":[[264,265,266,-259,-257,-229]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605900","GEOID10":"06081605900","NAME10":"6059","NAMELSAD10":"Census Tract 6059","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":773555,"AWATER10":0,"INTPTLAT10":"+37.5723780","INTPTLON10":"-122.3340889"}},{"arcs":[[-195,-202,267,-265,-231]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605800","GEOID10":"06081605800","NAME10":"6058","NAMELSAD10":"Census Tract 6058","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1218792,"AWATER10":0,"INTPTLAT10":"+37.5680176","INTPTLON10":"-122.3451754"}},{"arcs":[[-143,268,-138]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609602","GEOID10":"06081609602","NAME10":"6096.02","NAMELSAD10":"Census Tract 6096.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":996934,"AWATER10":0,"INTPTLAT10":"+37.4889079","INTPTLON10":"-122.2762021"}},{"arcs":[[269,270,-141,-158,271]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609500","GEOID10":"06081609500","NAME10":"6095","NAMELSAD10":"Census Tract 6095","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1922417,"AWATER10":0,"INTPTLAT10":"+37.5048796","INTPTLON10":"-122.2775530"}},{"arcs":[[272,273,274,-31,275,276]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613900","GEOID10":"06081613900","NAME10":"6139","NAMELSAD10":"Census Tract 6139","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2729644,"AWATER10":0,"INTPTLAT10":"+37.4623955","INTPTLON10":"-122.1619788"}},{"arcs":[[-147,277,278,-270,279]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609202","GEOID10":"06081609202","NAME10":"6092.02","NAMELSAD10":"Census Tract 6092.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":908752,"AWATER10":0,"INTPTLAT10":"+37.5077822","INTPTLON10":"-122.2658697"}},{"arcs":[[-146,280,281,-278]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609201","GEOID10":"06081609201","NAME10":"6092.01","NAMELSAD10":"Census Tract 6092.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1062820,"AWATER10":0,"INTPTLAT10":"+37.4991014","INTPTLON10":"-122.2567366"}},{"arcs":[[282,283,-98,-254,284,285,-248]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603802","GEOID10":"06081603802","NAME10":"6038.02","NAMELSAD10":"Census Tract 6038.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2596255,"AWATER10":0,"INTPTLAT10":"+37.6190992","INTPTLON10":"-122.4345948"}},{"arcs":[[286,287,-8,-19,288,-28]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601902","GEOID10":"06081601902","NAME10":"6019.02","NAMELSAD10":"Census Tract 6019.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1290843,"AWATER10":0,"INTPTLAT10":"+37.6604839","INTPTLON10":"-122.4372438"}},{"arcs":[[-139,-269,-142,-271,-279,-282,289]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609400","GEOID10":"06081609400","NAME10":"6094","NAMELSAD10":"Census Tract 6094","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1092949,"AWATER10":0,"INTPTLAT10":"+37.4946099","INTPTLON10":"-122.2631052"}},{"arcs":[[-281,-145,290,-123,-140,-290]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609300","GEOID10":"06081609300","NAME10":"6093","NAMELSAD10":"Census Tract 6093","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":938191,"AWATER10":0,"INTPTLAT10":"+37.4907772","INTPTLON10":"-122.2518655"}},{"arcs":[[291,292,-45,293]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611200","GEOID10":"06081611200","NAME10":"6112","NAMELSAD10":"Census Tract 6112","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1128646,"AWATER10":0,"INTPTLAT10":"+37.4564906","INTPTLON10":"-122.2345855"}},{"arcs":[[294,295,-46,-293,296,-130,-125,297,298]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611000","GEOID10":"06081611000","NAME10":"6110","NAMELSAD10":"Census Tract 6110","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1373381,"AWATER10":0,"INTPTLAT10":"+37.4662884","INTPTLON10":"-122.2335642"}},{"arcs":[[299,-299,300,301,302]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610900","GEOID10":"06081610900","NAME10":"6109","NAMELSAD10":"Census Tract 6109","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1102072,"AWATER10":0,"INTPTLAT10":"+37.4765900","INTPTLON10":"-122.2320282"}},{"arcs":[[-16,303,-287,-27]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601901","GEOID10":"06081601901","NAME10":"6019.01","NAMELSAD10":"Census Tract 6019.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":852783,"AWATER10":0,"INTPTLAT10":"+37.6658727","INTPTLON10":"-122.4341168"}},{"arcs":[[-83,304,305,-250]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600402","GEOID10":"06081600402","NAME10":"6004.02","NAMELSAD10":"Census Tract 6004.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":399608,"AWATER10":0,"INTPTLAT10":"+37.7051087","INTPTLON10":"-122.4529127"}},{"arcs":[[-69,306,307,308]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601501","GEOID10":"06081601501","NAME10":"6015.01","NAMELSAD10":"Census Tract 6015.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":724699,"AWATER10":0,"INTPTLAT10":"+37.6750113","INTPTLON10":"-122.4856180"}},{"arcs":[[309,310,311,312,-70,-309]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601502","GEOID10":"06081601502","NAME10":"6015.02","NAMELSAD10":"Census Tract 6015.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":807182,"AWATER10":0,"INTPTLAT10":"+37.6692204","INTPTLON10":"-122.4782558"}},{"arcs":[[-20,313,314,315,316,317]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602600","GEOID10":"06081602600","NAME10":"6026","NAMELSAD10":"Census Tract 6026","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1420933,"AWATER10":0,"INTPTLAT10":"+37.6462394","INTPTLON10":"-122.4610254"}},{"arcs":[[-295,-300,318,319]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610800","GEOID10":"06081610800","NAME10":"6108","NAMELSAD10":"Census Tract 6108","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":507450,"AWATER10":0,"INTPTLAT10":"+37.4700717","INTPTLON10":"-122.2260081"}},{"arcs":[[320,321,322,-52,-44]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610400","GEOID10":"06081610400","NAME10":"6104","NAMELSAD10":"Census Tract 6104","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1012796,"AWATER10":0,"INTPTLAT10":"+37.4825375","INTPTLON10":"-122.1914884"}},{"arcs":[[323,324,325,326,327,-319,-303]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610203","GEOID10":"06081610203","NAME10":"6102.03","NAMELSAD10":"Census Tract 6102.03","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":606322,"AWATER10":0,"INTPTLAT10":"+37.4797023","INTPTLON10":"-122.2235825"}},{"arcs":[[328,329,-56,-150,330]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610304","GEOID10":"06081610304","NAME10":"6103.04","NAMELSAD10":"Census Tract 6103.04","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3500887,"AWATER10":320306,"INTPTLAT10":"+37.5256571","INTPTLON10":"-122.2561516"}},{"arcs":[[-323,331,-325,332,-53]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610201","GEOID10":"06081610201","NAME10":"6102.01","NAMELSAD10":"Census Tract 6102.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1438009,"AWATER10":0,"INTPTLAT10":"+37.4847530","INTPTLON10":"-122.2138224"}},{"arcs":[[333,-312,334,335,-317]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601605","GEOID10":"06081601605","NAME10":"6016.05","NAMELSAD10":"Census Tract 6016.05","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":942614,"AWATER10":0,"INTPTLAT10":"+37.6569748","INTPTLON10":"-122.4698320"}},{"arcs":[[-288,-304,-15,336,-9]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602200","GEOID10":"06081602200","NAME10":"6022","NAMELSAD10":"Census Tract 6022","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":935218,"AWATER10":0,"INTPTLAT10":"+37.6562290","INTPTLON10":"-122.4175676"}},{"arcs":[[-10,-337,-14,-90]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602100","GEOID10":"06081602100","NAME10":"6021","NAMELSAD10":"Census Tract 6021","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":480479,"AWATER10":0,"INTPTLAT10":"+37.6618027","INTPTLON10":"-122.4064157"}},{"arcs":[[-18,337,338,-22,-289]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601700","GEOID10":"06081601700","NAME10":"6017","NAMELSAD10":"Census Tract 6017","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1168624,"AWATER10":0,"INTPTLAT10":"+37.6629478","INTPTLON10":"-122.4559183"}},{"arcs":[[339,340,-286,341,-2,-7,342]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604102","GEOID10":"06081604102","NAME10":"6041.02","NAMELSAD10":"Census Tract 6041.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2288966,"AWATER10":0,"INTPTLAT10":"+37.6331747","INTPTLON10":"-122.4257557"}},{"arcs":[[-247,-341,343,344]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604000","GEOID10":"06081604000","NAME10":"6040","NAMELSAD10":"Census Tract 6040","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":915057,"AWATER10":0,"INTPTLAT10":"+37.6234201","INTPTLON10":"-122.4206868"}},{"arcs":[[345,-151,-54,-333,-324,-302,346]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610202","GEOID10":"06081610202","NAME10":"6102.02","NAMELSAD10":"Census Tract 6102.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1706413,"AWATER10":22700,"INTPTLAT10":"+37.4894625","INTPTLON10":"-122.2304268"}},{"arcs":[[-57,-330,347,348]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610303","GEOID10":"06081610303","NAME10":"6103.03","NAMELSAD10":"Census Tract 6103.03","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3452298,"AWATER10":1535928,"INTPTLAT10":"+37.5432736","INTPTLON10":"-122.2418801"}},{"arcs":[[349,350,351,352,-321]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610602","GEOID10":"06081610602","NAME10":"6106.02","NAMELSAD10":"Census Tract 6106.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1066677,"AWATER10":0,"INTPTLAT10":"+37.4745161","INTPTLON10":"-122.1975156"}},{"arcs":[[-346,353,-152]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610100","GEOID10":"06081610100","NAME10":"6101","NAMELSAD10":"Census Tract 6101","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":502717,"AWATER10":0,"INTPTLAT10":"+37.4932225","INTPTLON10":"-122.2386868"}},{"arcs":[[-301,-298,-124,-291,-354,-347]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610000","GEOID10":"06081610000","NAME10":"6100","NAMELSAD10":"Census Tract 6100","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1380440,"AWATER10":0,"INTPTLAT10":"+37.4844567","INTPTLON10":"-122.2412328"}},{"arcs":[[-342,-285,-253,-315,354]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603700","GEOID10":"06081603700","NAME10":"6037","NAMELSAD10":"Census Tract 6037","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1786282,"AWATER10":0,"INTPTLAT10":"+37.6324976","INTPTLON10":"-122.4484528"}},{"arcs":[[-314,-3,-355]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602500","GEOID10":"06081602500","NAME10":"6025","NAMELSAD10":"Census Tract 6025","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1251661,"AWATER10":0,"INTPTLAT10":"+37.6398016","INTPTLON10":"-122.4504711"}},{"arcs":[[355,356,357,358]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604800","GEOID10":"06081604800","NAME10":"6048","NAMELSAD10":"Census Tract 6048","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1033921,"AWATER10":0,"INTPTLAT10":"+37.5995339","INTPTLON10":"-122.3977958"}},{"arcs":[[359,-359,360,-100,361]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604700","GEOID10":"06081604700","NAME10":"6047","NAMELSAD10":"Census Tract 6047","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1104431,"AWATER10":0,"INTPTLAT10":"+37.5936829","INTPTLON10":"-122.4066696"}},{"arcs":[[362,-356,-360,363,364]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604500","GEOID10":"06081604500","NAME10":"6045","NAMELSAD10":"Census Tract 6045","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1615387,"AWATER10":0,"INTPTLAT10":"+37.6061891","INTPTLON10":"-122.4100389"}},{"arcs":[[-283,-345,365,366,-365,367]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603900","GEOID10":"06081603900","NAME10":"6039","NAMELSAD10":"Census Tract 6039","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1999525,"AWATER10":0,"INTPTLAT10":"+37.6140310","INTPTLON10":"-122.4171430"}},{"arcs":[[-316,-252,368,369,370,-334]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602700","GEOID10":"06081602700","NAME10":"6027","NAMELSAD10":"Census Tract 6027","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1796334,"AWATER10":0,"INTPTLAT10":"+37.6486936","INTPTLON10":"-122.4753009"}},{"arcs":[[-328,371,372,-47,-296,-320]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610700","GEOID10":"06081610700","NAME10":"6107","NAMELSAD10":"Census Tract 6107","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1127014,"AWATER10":0,"INTPTLAT10":"+37.4698505","INTPTLON10":"-122.2190386"}},{"arcs":[[373,374,375,376,377]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613000","GEOID10":"06081613000","NAME10":"6130","NAMELSAD10":"Census Tract 6130","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":4634461,"AWATER10":3134,"INTPTLAT10":"+37.4227203","INTPTLON10":"-122.2031500"}},{"arcs":[[378,-372,-327,379,-352,380]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610601","GEOID10":"06081610601","NAME10":"6106.01","NAMELSAD10":"Census Tract 6106.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":925049,"AWATER10":0,"INTPTLAT10":"+37.4713247","INTPTLON10":"-122.2090707"}},{"arcs":[[-353,-380,-326,-332,-322]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"610500","GEOID10":"06081610500","NAME10":"6105","NAMELSAD10":"Census Tract 6105","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1223678,"AWATER10":0,"INTPTLAT10":"+37.4797497","INTPTLON10":"-122.2044816"}},{"arcs":[[381,382,383,384]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612600","GEOID10":"06081612600","NAME10":"6126","NAMELSAD10":"Census Tract 6126","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1304517,"AWATER10":0,"INTPTLAT10":"+37.4492215","INTPTLON10":"-122.1817224"}},{"arcs":[[-43,385,-274,386,-350]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611600","GEOID10":"06081611600","NAME10":"6116","NAMELSAD10":"Census Tract 6116","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":834461,"AWATER10":0,"INTPTLAT10":"+37.4747978","INTPTLON10":"-122.1706821"}},{"arcs":[[-336,387,-338,-21,-318]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601603","GEOID10":"06081601603","NAME10":"6016.03","NAMELSAD10":"Census Tract 6016.03","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1241601,"AWATER10":0,"INTPTLAT10":"+37.6555598","INTPTLON10":"-122.4608392"}},{"arcs":[[-339,-388,-335,-311,388,-58,-23]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601604","GEOID10":"06081601604","NAME10":"6016.04","NAMELSAD10":"Census Tract 6016.04","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1482246,"AWATER10":0,"INTPTLAT10":"+37.6695059","INTPTLON10":"-122.4690804"}},{"arcs":[[-308,389,-65,-59,-389,-310]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601400","GEOID10":"06081601400","NAME10":"6014","NAMELSAD10":"Census Tract 6014","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1461659,"AWATER10":0,"INTPTLAT10":"+37.6810704","INTPTLON10":"-122.4788188"}},{"arcs":[[-390,-307,-68,-77,390,-66]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"601100","GEOID10":"06081601100","NAME10":"6011","NAMELSAD10":"Census Tract 6011","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":978346,"AWATER10":0,"INTPTLAT10":"+37.6922564","INTPTLON10":"-122.4894640"}},{"arcs":[[-166,-153,-114,-105,-198]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606900","GEOID10":"06081606900","NAME10":"6069","NAMELSAD10":"Census Tract 6069","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3438101,"AWATER10":0,"INTPTLAT10":"+37.5200289","INTPTLON10":"-122.3457627"}},{"arcs":[[391,392,393,394,-232,-50,-349,395]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608300","GEOID10":"06081608300","NAME10":"6083","NAMELSAD10":"Census Tract 6083","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":993997,"AWATER10":549826,"INTPTLAT10":"+37.5590519","INTPTLON10":"-122.2489100"}},{"arcs":[[396,-394,397]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608200","GEOID10":"06081608200","NAME10":"6082","NAMELSAD10":"Census Tract 6082","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1044087,"AWATER10":159778,"INTPTLAT10":"+37.5669749","INTPTLON10":"-122.2583149"}},{"arcs":[[-398,-393,398]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608100","GEOID10":"06081608100","NAME10":"6081","NAMELSAD10":"Census Tract 6081","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":605092,"AWATER10":173531,"INTPTLAT10":"+37.5606971","INTPTLON10":"-122.2630195"}},{"arcs":[[399,-179,400,401]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608023","GEOID10":"06081608023","NAME10":"6080.23","NAMELSAD10":"Census Tract 6080.23","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":805964,"AWATER10":119020,"INTPTLAT10":"+37.5412238","INTPTLON10":"-122.2711802"}},{"arcs":[[-180,-400,402,403,-396,-348,-329,404]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608013","GEOID10":"06081608013","NAME10":"6080.13","NAMELSAD10":"Census Tract 6080.13","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1167655,"AWATER10":266481,"INTPTLAT10":"+37.5408800","INTPTLON10":"-122.2619095"}},{"arcs":[[405,406,-401,-178,-185,-262,-233,-395,-397,-399]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608004","GEOID10":"06081608004","NAME10":"6080.04","NAMELSAD10":"Census Tract 6080.04","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3677409,"AWATER10":2134515,"INTPTLAT10":"+37.5678278","INTPTLON10":"-122.2716583"}},{"arcs":[[407,408,-63,-391,-76]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600800","GEOID10":"06081600800","NAME10":"6008","NAMELSAD10":"Census Tract 6008","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":572324,"AWATER10":0,"INTPTLAT10":"+37.7001002","INTPTLON10":"-122.4802873"}},{"arcs":[[-408,-75,409,-305,-82,410]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600700","GEOID10":"06081600700","NAME10":"6007","NAMELSAD10":"Census Tract 6007","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":810087,"AWATER10":0,"INTPTLAT10":"+37.7052459","INTPTLON10":"-122.4640012"}},{"arcs":[[-81,-61,-64,-409,-411]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600600","GEOID10":"06081600600","NAME10":"6006","NAMELSAD10":"Census Tract 6006","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":767718,"AWATER10":0,"INTPTLAT10":"+37.6975415","INTPTLON10":"-122.4665822"}},{"arcs":[[411,-91,-85]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"600200","GEOID10":"06081600200","NAME10":"6002","NAMELSAD10":"Census Tract 6002","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1158761,"AWATER10":0,"INTPTLAT10":"+37.7044440","INTPTLON10":"-122.4157229"}},{"arcs":[[412,413,-266,-268,-201]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605500","GEOID10":"06081605500","NAME10":"6055","NAMELSAD10":"Census Tract 6055","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1099506,"AWATER10":0,"INTPTLAT10":"+37.5765511","INTPTLON10":"-122.3482883"}},{"arcs":[[-407,414,-403,-402]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608002","GEOID10":"06081608002","NAME10":"6080.02","NAMELSAD10":"Census Tract 6080.02","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":850708,"AWATER10":302827,"INTPTLAT10":"+37.5485489","INTPTLON10":"-122.2676162"}},{"arcs":[[-415,-406,-392,-404]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608001","GEOID10":"06081608001","NAME10":"6080.01","NAMELSAD10":"Census Tract 6080.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":583785,"AWATER10":25097,"INTPTLAT10":"+37.5511200","INTPTLON10":"-122.2576522"}},{"arcs":[[-297,-292,415,-134,-131]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611100","GEOID10":"06081611100","NAME10":"6111","NAMELSAD10":"Census Tract 6111","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3315152,"AWATER10":12430,"INTPTLAT10":"+37.4580008","INTPTLON10":"-122.2524753"}},{"arcs":[[-42,-38,-34,-32,-275,-386]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612000","GEOID10":"06081612000","NAME10":"6120","NAMELSAD10":"Census Tract 6120","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1315880,"AWATER10":0,"INTPTLAT10":"+37.4680579","INTPTLON10":"-122.1465681"}},{"arcs":[[416,-263,-260,-267]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"606000","GEOID10":"06081606000","NAME10":"6060","NAMELSAD10":"Census Tract 6060","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":772346,"AWATER10":0,"INTPTLAT10":"+37.5797295","INTPTLON10":"-122.3311046"}},{"arcs":[[-272,-157,417,418,-148,-280]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"609000","GEOID10":"06081609000","NAME10":"6090","NAMELSAD10":"Census Tract 6090","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1351210,"AWATER10":0,"INTPTLAT10":"+37.5134397","INTPTLON10":"-122.2802497"}},{"arcs":[[-235,-264,-417,-414,419,420]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605400","GEOID10":"06081605400","NAME10":"6054","NAMELSAD10":"Census Tract 6054","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2641113,"AWATER10":1270707,"INTPTLAT10":"+37.5870019","INTPTLON10":"-122.3446065"}},{"arcs":[[421,422,-199,423]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605200","GEOID10":"06081605200","NAME10":"6052","NAMELSAD10":"Census Tract 6052","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":942084,"AWATER10":0,"INTPTLAT10":"+37.5834198","INTPTLON10":"-122.3766383"}},{"arcs":[[-236,-421,424,-422,425,426,-244]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605100","GEOID10":"06081605100","NAME10":"6051","NAMELSAD10":"Census Tract 6051","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2668003,"AWATER10":1653162,"INTPTLAT10":"+37.5973795","INTPTLON10":"-122.3682086"}},{"arcs":[[-361,-358,427,428,-101]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604900","GEOID10":"06081604900","NAME10":"6049","NAMELSAD10":"Census Tract 6049","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1533603,"AWATER10":0,"INTPTLAT10":"+37.5892866","INTPTLON10":"-122.3981723"}},{"arcs":[[-423,-425,-420,-413,-200]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605300","GEOID10":"06081605300","NAME10":"6053","NAMELSAD10":"Census Tract 6053","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1090640,"AWATER10":0,"INTPTLAT10":"+37.5820548","INTPTLON10":"-122.3620094"}},{"arcs":[[-102,-429,429,-426,-424,-203]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"605000","GEOID10":"06081605000","NAME10":"6050","NAMELSAD10":"Census Tract 6050","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":4065790,"AWATER10":0,"INTPTLAT10":"+37.5815575","INTPTLON10":"-122.3898031"}},{"arcs":[[-364,-362,-99,-284,-368]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604600","GEOID10":"06081604600","NAME10":"6046","NAMELSAD10":"Census Tract 6046","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1409913,"AWATER10":0,"INTPTLAT10":"+37.6002391","INTPTLON10":"-122.4181536"}},{"arcs":[[-163,-225,430,-156]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608800","GEOID10":"06081608800","NAME10":"6088","NAMELSAD10":"Census Tract 6088","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2855497,"AWATER10":0,"INTPTLAT10":"+37.5166078","INTPTLON10":"-122.3110298"}},{"arcs":[[-431,-224,-222,-171,431,-418]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608700","GEOID10":"06081608700","NAME10":"6087","NAMELSAD10":"Census Tract 6087","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2514178,"AWATER10":0,"INTPTLAT10":"+37.5208293","INTPTLON10":"-122.2883303"}},{"arcs":[[-181,-405,-331,-149,-419,-432,-170,-169]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"608600","GEOID10":"06081608600","NAME10":"6086","NAMELSAD10":"Census Tract 6086","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1644064,"AWATER10":11412,"INTPTLAT10":"+37.5267107","INTPTLON10":"-122.2743513"}},{"arcs":[[432,-385,433,434]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612700","GEOID10":"06081612700","NAME10":"6127","NAMELSAD10":"Census Tract 6127","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1275412,"AWATER10":0,"INTPTLAT10":"+37.4439637","INTPTLON10":"-122.1886855"}},{"arcs":[[-427,-430,-428,-357,-363,-367,435,436,-245]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604400","GEOID10":"06081604400","NAME10":"6044","NAMELSAD10":"Census Tract 6044","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":2000334,"AWATER10":30068,"INTPTLAT10":"+37.6067243","INTPTLON10":"-122.3911489"}},{"arcs":[[-343,-6,-246,-437,437]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604200","GEOID10":"06081604200","NAME10":"6042","NAMELSAD10":"Census Tract 6042","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1738889,"AWATER10":0,"INTPTLAT10":"+37.6273351","INTPTLON10":"-122.4061516"}},{"arcs":[[-436,-366,-344,-340,-438]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"604101","GEOID10":"06081604101","NAME10":"6041.01","NAMELSAD10":"Census Tract 6041.01","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1118049,"AWATER10":0,"INTPTLAT10":"+37.6236000","INTPTLON10":"-122.4100870"}},{"arcs":[[-122,438,439,-255,-96]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603400","GEOID10":"06081603400","NAME10":"6034","NAMELSAD10":"Census Tract 6034","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":11678609,"AWATER10":0,"INTPTLAT10":"+37.5946374","INTPTLON10":"-122.4626241"}},{"arcs":[[-439,-121,440,441]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603300","GEOID10":"06081603300","NAME10":"6033","NAMELSAD10":"Census Tract 6033","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":8011504,"AWATER10":0,"INTPTLAT10":"+37.5808674","INTPTLON10":"-122.4857197"}},{"arcs":[[442,-441,-120,-239]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603200","GEOID10":"06081603200","NAME10":"6032","NAMELSAD10":"Census Tract 6032","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":4491225,"AWATER10":1796604,"INTPTLAT10":"+37.5910371","INTPTLON10":"-122.5081650"}},{"arcs":[[-443,-243,443,-256,-440,-442]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603100","GEOID10":"06081603100","NAME10":"6031","NAMELSAD10":"Census Tract 6031","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":7293972,"AWATER10":1037628,"INTPTLAT10":"+37.6187444","INTPTLON10":"-122.4730154"}},{"arcs":[[-242,444,-369,-251,-444]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"603000","GEOID10":"06081603000","NAME10":"6030","NAMELSAD10":"Census Tract 6030","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":3539904,"AWATER10":623386,"INTPTLAT10":"+37.6364758","INTPTLON10":"-122.4859426"}},{"arcs":[[-241,-72,445,-370,-445]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602900","GEOID10":"06081602900","NAME10":"6029","NAMELSAD10":"Census Tract 6029","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1359536,"AWATER10":842095,"INTPTLAT10":"+37.6532841","INTPTLON10":"-122.4918058"}},{"arcs":[[-71,-313,-371,-446]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"602800","GEOID10":"06081602800","NAME10":"6028","NAMELSAD10":"Census Tract 6028","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1222390,"AWATER10":0,"INTPTLAT10":"+37.6594652","INTPTLON10":"-122.4838992"}},{"arcs":[[-381,-351,-387,-273,446,447]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611500","GEOID10":"06081611500","NAME10":"6115","NAMELSAD10":"Census Tract 6115","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":4182533,"AWATER10":0,"INTPTLAT10":"+37.4675423","INTPTLON10":"-122.1849613"}},{"arcs":[[-448,448,-382,-433,449,450,-374,451,-48,-373,-379]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"611400","GEOID10":"06081611400","NAME10":"6114","NAMELSAD10":"Census Tract 6114","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":8810787,"AWATER10":82320,"INTPTLAT10":"+37.4463000","INTPTLON10":"-122.2147667"}},{"arcs":[[452,-383,-449,-447,-277]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612500","GEOID10":"06081612500","NAME10":"6125","NAMELSAD10":"Census Tract 6125","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1988515,"AWATER10":0,"INTPTLAT10":"+37.4556990","INTPTLON10":"-122.1777940"}},{"arcs":[[-132,453,454,-110,-117]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613400","GEOID10":"06081613400","NAME10":"6134","NAMELSAD10":"Census Tract 6134","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":45139439,"AWATER10":14986,"INTPTLAT10":"+37.4210369","INTPTLON10":"-122.2862916"}},{"arcs":[[-416,-294,-49,-452,455,-454,-135]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613300","GEOID10":"06081613300","NAME10":"6133","NAMELSAD10":"Census Tract 6133","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":9448269,"AWATER10":0,"INTPTLAT10":"+37.4403446","INTPTLON10":"-122.2487924"}},{"arcs":[[-111,-455,-456,-378,456]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"613200","GEOID10":"06081613200","NAME10":"6132","NAMELSAD10":"Census Tract 6132","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":39937531,"AWATER10":143549,"INTPTLAT10":"+37.3697092","INTPTLON10":"-122.2158436"}},{"arcs":[[457,-375,-451]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612900","GEOID10":"06081612900","NAME10":"6129","NAMELSAD10":"Census Tract 6129","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1604307,"AWATER10":0,"INTPTLAT10":"+37.4321641","INTPTLON10":"-122.2036897"}},{"arcs":[[458,-376,-458,-450,-435]],"type":"Polygon","properties":{"STATEFP10":"06","COUNTYFP10":"081","TRACTCE10":"612800","GEOID10":"06081612800","NAME10":"6128","NAMELSAD10":"Census Tract 6128","MTFCC10":"G5020","FUNCSTAT10":"S","ALAND10":1652956,"AWATER10":0,"INTPTLAT10":"+37.4364399","INTPTLON10":"-122.1923317"}}]}},"arcs":[[[3194,14273],[42,-50],[59,-104],[122,-190]],[[3417,13929],[-188,-145],[-80,76],[-65,-34]],[[3084,13826],[-26,47],[-71,85],[-87,60],[-19,18]],[[2881,14036],[72,62],[54,25],[32,28],[25,55],[19,25],[36,15],[56,11],[19,16]],[[4431,13802],[-215,1],[-146,-5],[-128,0],[-110,10]],[[3832,13808],[-28,-15],[-43,8],[-88,2],[-2,137],[-111,-42]],[[3560,13898],[-12,-4],[-35,67],[-92,-40],[-4,8]],[[3194,14273],[14,9],[138,-87],[62,80]],[[3408,14275],[270,-67],[17,-19],[26,-4],[4,29],[50,114]],[[3775,14328],[24,52],[30,39],[91,67]],[[3920,14486],[65,62],[65,79],[38,0],[65,41],[233,-1]],[[4386,14667],[2,-96],[111,-48],[28,-90],[-21,-69],[-22,-28],[15,-99],[-126,-210],[-35,-124],[74,-37],[19,-64]],[[3298,14914],[85,-61],[31,-72],[42,-35],[71,-21],[106,-72],[58,-8],[37,6],[21,20],[61,-123],[-5,-36]],[[3805,14512],[-43,20],[-15,-44],[-53,-37],[1,-14],[-25,-82]],[[3670,14355],[-14,-46],[-367,93]],[[3289,14402],[49,157],[-39,13],[-55,33],[-31,27]],[[3213,14632],[18,39],[17,72],[50,171]],[[2807,14261],[14,7],[-33,66],[76,76],[-39,28],[61,57]],[[2886,14495],[24,-17],[47,-8],[37,-21],[70,-82],[79,-52],[51,-42]],[[2881,14036],[-17,23],[-44,84]],[[2820,14143],[30,-1],[-43,119]],[[2832,14605],[-33,39],[-137,-98]],[[2662,14546],[-5,13],[-108,111],[-80,114],[-25,39],[-4,90]],[[2440,14913],[149,10],[-15,68],[93,0],[19,-16],[64,86]],[[2750,15061],[61,79],[-40,16]],[[2771,15156],[17,11],[510,-253]],[[3213,14632],[-57,26],[-167,-146]],[[2989,14512],[-23,-2],[-65,56],[-44,62],[-25,-23]],[[9304,9649],[78,-62],[177,-120]],[[9559,9467],[-20,-17],[-21,27],[-34,6],[-12,15],[-38,9],[-44,-7],[-57,17],[-48,56],[-26,18],[-58,6],[-22,-32],[-27,-7],[-26,14],[-63,-1],[-19,12],[-17,-21]],[[9027,9562],[14,29],[39,198]],[[9080,9789],[210,-141],[14,1]],[[9811,9787],[-169,-120],[21,-91],[1,-29],[18,-44],[-10,-18],[-45,-13],[-34,16],[-34,-21]],[[9304,9649],[21,6],[-7,264]],[[9318,9919],[89,1],[264,104],[-6,-86],[25,-42],[78,-57],[15,-31],[28,-21]],[[9628,10638],[14,-65],[19,-47],[6,-82],[20,-61],[19,-77],[2,-50],[-31,-60],[-97,-49],[17,-36],[40,28],[34,11],[51,-5],[39,-32],[20,-49],[5,-39],[-7,-36],[-17,-28],[65,-51],[48,-57],[30,-63]],[[9905,9790],[-42,30],[-52,-33]],[[9318,9919],[-173,-26],[13,70],[-134,24]],[[9024,9987],[68,157],[87,49],[17,15],[235,241],[67,75],[56,55],[74,59]],[[8417,10210],[17,26],[-49,16],[-86,19],[-9,37],[108,3],[89,-21],[4,52],[8,10],[6,197],[55,-1],[1,-12],[60,-35],[89,2],[19,16],[38,56],[26,5],[17,73],[48,85]],[[8858,10738],[207,22],[32,31],[25,8],[145,63],[40,12],[83,0],[116,-67],[70,-65],[18,-25],[34,-79]],[[9024,9987],[-60,-120]],[[8964,9867],[-336,224],[-276,-23]],[[8352,10068],[22,43],[29,39],[33,27],[-19,33]],[[7407,9373],[-1,6],[84,196]],[[7490,9575],[39,81],[20,88]],[[7549,9744],[75,-36],[9,10],[44,-19]],[[7677,9699],[-5,-22],[-41,-69],[-29,-32],[101,-81],[-1,-6],[-159,-229]],[[7543,9260],[-32,26],[-41,-71],[-42,12],[-82,46],[61,100]],[[7171,11897],[3,130]],[[7174,12027],[27,-41],[10,-46],[82,-7],[61,15],[39,1],[94,-39],[80,-65],[31,-64],[-5,-41],[14,-25],[47,-12],[32,1],[55,-16],[53,-34],[55,23],[25,0],[60,-24],[86,0],[67,-22],[42,-37],[77,-56],[38,-46],[17,-79],[-8,-83],[-16,-44],[-40,-58],[12,-19],[114,-82],[18,30],[31,24],[35,3],[51,-10],[39,-25],[32,-48],[13,-36],[11,-82],[33,-65],[43,-55],[229,-125]],[[8417,10210],[-55,17],[-77,17],[-205,29]],[[8080,10273],[-182,26],[-105,28],[-2,-14],[-66,41]],[[7725,10354],[-166,83],[-101,37],[-48,4],[-31,22],[-57,19],[-52,27]],[[7270,10546],[-29,24],[-134,134],[13,17],[-23,39],[29,23],[-54,88],[-15,54],[-6,55]],[[7051,10980],[21,24],[37,98]],[[7109,11102],[0,47],[33,23],[27,75],[64,42],[107,36],[30,28],[179,287],[23,19],[14,40],[-26,17],[-56,75],[-58,43],[-69,24],[-89,-16],[-53,2],[-65,11],[1,42]],[[2440,14913],[-20,25]],[[2420,14938],[3,75],[8,38]],[[2431,15051],[11,50],[0,78]],[[2442,15179],[116,2],[-1,-11],[69,2]],[[2626,15172],[11,-73],[31,-28],[11,14],[31,-19],[10,14],[30,-19]],[[2109,15248],[131,-12],[13,-7],[21,97],[24,78],[63,-2],[47,-27],[11,-35]],[[2419,15340],[2,-49],[19,-75],[2,-37]],[[2431,15051],[-66,-1],[0,-44],[-82,-6],[-33,8],[-33,-5]],[[2217,15003],[-7,14],[-43,1],[-16,40],[5,27],[-91,6],[2,157],[42,0]],[[1725,15357],[186,1],[23,-59]],[[1934,15299],[7,-105],[6,-33],[29,-45],[47,-46],[30,-50],[5,-41],[-5,-36]],[[2053,14943],[-18,-94],[2,-67],[13,-39],[54,-108],[45,-54]],[[2149,14581],[64,-47]],[[2213,14534],[-29,16],[-44,1],[1,-61],[-14,-66],[-51,-11],[-33,2],[-41,28]],[[2002,14443],[-39,50],[-30,-1],[-14,30],[-91,-1]],[[1828,14521],[-6,40],[11,45],[0,122],[-11,154],[-15,106],[-69,298],[-13,71]],[[1687,15530],[190,1],[87,2],[260,0],[192,3],[54,-3]],[[2470,15533],[-39,-76]],[[2431,15457],[-89,-21],[-138,-46],[0,-6],[-104,-35]],[[2100,15349],[-2,6],[-164,-56]],[[1725,15357],[-10,55],[-24,73],[-4,45]],[[2940,15402],[-48,-30]],[[2892,15372],[-17,-15],[-15,-65],[-17,-24],[-104,-88],[32,-24]],[[2626,15172],[-12,231],[2,10]],[[2616,15413],[4,22],[43,17],[17,-12],[23,-38],[35,5]],[[2738,15407],[32,-16],[44,-3],[44,8]],[[2858,15396],[53,18],[29,-12]],[[3412,15533],[-17,-57],[18,-53],[119,-41],[-23,-64]],[[3509,15318],[-34,2],[-20,-14],[-35,-53],[-24,-16],[-39,7],[-61,49],[-23,6],[-23,-15],[-10,-28],[-23,-19],[-24,1],[-67,32],[-57,39],[-147,63],[-30,0]],[[2940,15402],[61,-24],[31,1],[-6,28],[17,37],[33,5],[65,39],[-20,21],[-33,15],[-18,-31],[-36,40]],[[3034,15533],[233,0],[58,5],[87,-5]],[[4137,15536],[5,-144],[55,-345],[31,-150],[75,3],[55,-27],[17,-21],[14,-52],[-3,-133]],[[3920,14486],[-115,26]],[[3509,15318],[86,-28],[56,15],[23,62],[-19,7],[39,96],[72,-23],[32,87]],[[3798,15534],[13,2],[326,0]],[[2846,9771],[-8,106],[-11,40],[-55,135],[-35,75]],[[2737,10127],[96,0],[22,21],[91,53],[-103,165],[60,51],[37,15],[16,36],[43,29],[18,58],[-5,36],[-17,194],[13,22],[30,10],[25,112],[-8,32],[-36,46],[-33,28],[-9,29],[-35,31],[10,54],[-47,45],[-5,52],[-51,30],[-23,58],[-17,10],[28,84],[54,75],[7,21],[30,0],[68,-26],[68,20],[-18,37],[-34,8],[-71,70],[-35,69],[-3,26],[-27,37],[-19,46],[-16,8],[-64,-8],[-83,27],[-5,51],[-27,9],[-25,-26],[-72,25],[-10,-2]],[[2555,11895],[-85,101],[22,37],[158,104],[16,21]],[[2666,12158],[7,0],[2,111],[182,-4],[0,178],[-186,2],[4,157],[-71,2],[322,181],[80,46],[-21,81],[-117,422],[-36,38],[11,12]],[[2843,13384],[111,113]],[[2954,13497],[133,-157],[191,-230],[46,-34]],[[3324,13076],[18,-43],[22,-30],[137,-128],[103,-118]],[[3604,12757],[75,-88]],[[3679,12669],[91,-84]],[[3770,12585],[37,-49],[96,-190],[22,-32],[87,-99],[38,-32],[50,-21]],[[4100,12162],[64,-36],[125,-144],[73,-125],[33,-46],[81,-100]],[[4476,11711],[101,-120],[107,-180],[31,-76]],[[4715,11335],[37,-97],[20,-35],[38,-49],[47,-98],[41,-55],[94,-100],[57,-53],[61,-43]],[[5110,10805],[4,-34],[-43,23],[-22,45],[-41,32],[-37,6],[-27,-12],[-29,-45],[-35,-37],[-43,-2],[-41,-15],[-19,-41],[-3,-49],[31,-71],[-67,-18],[7,-33],[-9,-18],[-33,-19],[-27,-1],[-14,-26],[-32,-3],[-53,14],[-38,-26],[-13,-33],[11,-65],[-27,-44],[21,-52],[-26,-28],[-20,13],[-22,65],[-52,54],[-56,48],[-38,5],[-110,-24],[-88,-48],[-89,-53],[-22,-23],[-40,-15],[-35,-38],[-30,-23],[-26,-34],[-58,-39],[-37,-19],[-27,-3],[-80,-34],[-12,30],[-23,-8],[-22,-33],[-96,-64],[-33,-65],[-31,-29],[-19,-31],[-27,-16],[-126,-40],[-74,1],[-13,-92],[-238,26],[-115,7]],[[2737,10127],[-101,182],[-31,31],[-103,94],[-60,49],[-37,21],[-114,-75],[-64,-22],[-16,-30],[-46,-29],[-83,11],[-99,-36],[-40,5],[-33,19],[-20,34],[-32,-7],[-40,7]],[[1818,10381],[152,42],[284,96],[110,70],[-18,39],[-36,21],[-53,22],[-76,-9],[-14,-7],[-43,22],[-19,-2],[-6,68],[-22,84],[-100,88],[-46,32],[-207,126],[-34,25],[1,19],[32,23],[55,26],[40,72],[40,11],[26,28],[37,13],[53,48],[100,61],[48,79],[53,33],[20,24],[40,8],[99,84],[46,45],[0,48],[10,34],[20,18],[-1,55],[26,55],[38,22],[82,-9]],[[3575,7641],[144,2],[57,66],[4,47],[17,42],[62,31],[29,-11],[45,41],[29,67],[2,29],[38,28],[44,74],[76,-1],[37,9],[33,-49],[44,-6],[35,-15],[25,23],[31,-9],[20,14],[0,42],[106,79],[48,78],[63,47],[41,-78],[-7,-41],[46,20],[47,56],[35,30],[1,14],[58,62],[43,8],[49,25],[37,48],[20,58],[-21,51],[19,51],[-36,34],[42,2],[-18,39],[15,46],[37,-22],[22,22],[23,6],[-5,31],[-39,12],[24,33],[33,6],[30,-12],[13,-20],[41,15],[14,-9],[52,4],[24,-20],[55,-23],[33,1],[38,-15],[69,29],[50,-4],[11,35],[16,6],[32,-44],[29,-9],[32,5],[-13,43],[5,29],[43,20],[17,-14],[48,-4],[49,24]],[[5718,8819],[-62,-34],[-64,3],[-10,-21],[16,-75],[-11,-41],[10,-17],[33,-11],[133,-81],[46,-5],[44,-42],[3,-21],[-26,-34],[1,-37],[31,-30],[62,-24],[88,-70],[36,-47],[67,-23],[19,-27],[-22,-31],[16,-30],[31,-21],[-6,-36],[44,-40],[-3,-14],[73,-31],[31,4],[37,-22],[14,-23],[49,-14],[38,7],[50,-5],[58,6],[48,-13],[13,-15],[41,-21],[9,-25],[34,-29],[19,-63],[-22,-90],[-7,-54],[18,-44],[8,-148],[22,-61],[-4,-41],[48,15],[20,-22],[17,-40],[-19,-26],[-57,0],[-35,-43],[28,2],[23,35],[54,-18],[37,72],[92,-48],[23,7],[-24,28],[49,50],[-93,-1],[-1,51],[-17,1],[-4,41],[33,23],[-9,21],[42,23],[33,34],[42,-16]],[[7005,7517],[62,-68],[1,-64],[19,-44],[-15,-58],[3,-39],[16,-27],[59,-45],[73,-93],[74,-53],[82,-19],[23,-10],[35,-34],[37,-56],[46,-22],[47,-30],[103,-43],[35,-28],[4,-19],[-5,-70],[46,-64],[72,-47],[39,-56],[96,-94],[101,-55],[71,-57],[88,-33]],[[8217,6289],[-3,-19],[52,-6],[52,-43],[22,-9],[4,-45],[17,-47],[36,-39],[32,-12],[33,14],[21,28],[43,26],[66,9],[76,-19],[7,-18],[33,-29],[13,-52],[34,-52],[40,-3],[54,-30],[-15,-44],[-17,-26],[20,-9],[-29,-49],[-23,-20],[-2,-36],[-27,-31],[98,-39],[13,-11],[33,13],[25,-13],[107,-82],[14,-33],[7,-51],[-5,-97],[0,-241],[-4,-584],[1,-76],[10,-101],[15,-233],[-5,-50],[-27,-128],[4,-166],[-112,0],[-276,-5],[-909,-1],[-97,-3],[-123,6],[-185,-5],[-163,0],[-2,-104],[2,-72],[-3,-68],[3,-286],[-1,-65],[-107,-5],[-438,0],[-409,-74],[-604,5],[50,-400],[72,-535],[123,-214],[68,-116],[240,-416],[34,-63],[-49,-104],[-65,-117]],[[6091,1194],[-106,93],[-26,11],[-152,97],[-76,23],[-13,-18],[-40,-19],[-54,10],[-76,-24],[-152,-78],[-170,-123],[-165,146],[132,95],[-38,25],[-38,72],[-28,39],[-8,44],[10,56],[23,25],[10,139],[-10,41],[5,51],[-61,54],[-28,32],[-30,49],[-5,48],[-36,-14],[-53,0],[-102,58],[-38,44],[-28,-14],[-55,21],[-41,46],[-18,51],[5,42],[28,44],[-5,46],[-61,236],[-79,104],[-40,14],[-33,39],[-41,32],[-20,42],[-36,18],[-8,35],[-40,-11],[-37,12],[-30,23],[-51,26],[-18,-12],[-43,0],[-54,-34],[-58,0],[-48,25],[-36,79],[-23,34],[-12,37],[2,37],[-7,79],[-59,16],[-58,44],[-36,35],[-20,92],[7,169],[-30,39],[-26,102],[-17,30],[-5,49],[7,51],[18,30],[-76,210],[-43,70],[-38,32],[-13,32],[-15,104],[-52,104],[13,91],[8,145],[22,37],[18,77],[33,67],[0,58],[36,122],[2,39],[16,47],[28,27],[73,532],[0,49],[8,70],[11,24],[12,135],[-1,44],[15,66],[7,138],[20,133],[-6,20],[2,105],[20,38],[46,295],[-6,70],[-23,125],[9,44],[18,36],[-2,54],[15,40],[-11,61],[-44,4],[-66,40],[-38,68],[-20,52],[-2,58],[16,67],[-16,78],[-22,26],[-39,29]],[[5110,10805],[62,-44]],[[5172,10761],[75,-52],[91,-74],[71,-32],[130,-8],[79,-25],[127,-76],[145,-38],[23,-13]],[[5913,10443],[75,-68],[22,-49],[5,-37],[-2,-71],[-13,-58],[-9,-77],[10,-55],[34,-64],[82,-85],[25,-38]],[[6142,9841],[-38,-45],[-92,-79],[-9,-25],[29,-29],[4,-34],[-41,-22],[-24,-28],[31,-64],[-22,-9],[-136,17],[-114,-15],[-83,23],[-70,-1],[-104,-64],[-52,-21],[-149,-99],[57,-23],[28,-17],[111,-94],[24,-30],[62,-124],[65,-22],[46,-43],[32,-47],[58,-60],[7,-30],[-44,-37]],[[3575,7641],[-30,28],[-16,28],[-7,39],[-24,28],[-6,41],[-23,18],[-20,43],[-70,90],[-27,43],[-8,48],[6,48],[-14,56],[10,43],[-37,28],[-31,49],[-33,80],[-4,33],[-22,6],[-31,30],[-23,33],[-6,49],[-37,39],[-14,78],[-31,63],[4,38],[-44,53],[-45,74],[0,53],[-35,17],[-22,36],[-7,52],[-17,35],[-13,79],[8,87],[-15,146],[0,128],[-18,157],[2,37],[-15,36],[-14,61]],[[1818,10381],[-49,52],[-31,55],[-9,47],[5,32],[21,44],[-85,60],[-96,117],[-59,58],[-21,46],[-12,48],[-17,33],[-4,35],[-29,16],[-26,27],[-18,41],[-12,52],[5,63],[-10,52],[7,34],[-37,51],[-8,108],[6,49],[46,106],[1,44],[20,31],[5,29],[33,33],[17,141],[-29,32],[-14,39],[1,44],[14,37],[-1,61],[-33,22],[-20,30],[-8,101],[-32,33],[-18,55],[5,67],[10,27],[35,35],[2,54],[12,48],[-2,82]],[[1383,12652],[88,-1],[55,-16],[13,-23],[43,-9],[9,-30],[-28,-30],[16,-15],[-23,-23],[4,-39],[17,-51],[52,-26],[13,-41],[53,-1],[80,-27],[16,-16],[43,2],[47,-42],[21,-4]],[[1902,12260],[45,-1],[13,-23],[-1,-30],[27,-35],[42,-11],[60,-5],[46,-10],[35,-19],[46,-49],[30,-12],[45,0],[4,34],[209,-1],[1,66],[40,-4]],[[2544,12160],[122,-2]],[[6882,10207],[35,9],[28,21],[20,34],[48,7],[22,19],[30,58]],[[7065,10355],[37,-22],[-18,-16],[31,-24],[-34,-29],[12,-31],[-24,-20],[122,-111],[-47,-44],[18,-6],[56,-38],[27,-27]],[[7245,9987],[-29,-49]],[[7216,9938],[-33,15],[-128,16],[-39,-35],[-11,53],[6,26],[-12,21],[-5,62],[-16,24],[-71,64]],[[6907,10184],[-25,23]],[[6924,9755],[-17,16],[-37,-22],[-24,2],[-5,30],[-29,7],[-10,19],[-38,3],[-9,24],[36,6],[32,-7],[22,19],[-34,88],[-25,35],[15,29],[11,60],[-13,16]],[[6799,10080],[108,104]],[[7216,9938],[-36,-48],[23,-20],[-17,-16]],[[7186,9854],[-64,-58],[-37,-18],[-33,35],[-12,-47],[-43,8],[-13,-30],[-35,22],[-25,-11]],[[6394,9449],[-126,95],[-22,24],[-37,62],[-29,13],[-15,144],[-23,54]],[[6142,9841],[33,30],[66,19],[26,32],[53,50],[22,13],[37,5],[49,-12],[50,10],[111,-3],[62,11],[79,0],[18,10],[19,41],[32,33]],[[6924,9755],[-19,-38],[9,-44],[-36,-23],[-44,-16],[-45,24],[-31,1],[-7,-59],[-25,-14],[-22,23],[-34,-15],[-19,-28],[3,-21]],[[6654,9545],[-9,-24],[-26,-9],[-36,17],[-7,29],[-42,-6],[-39,20],[-53,88],[-35,-32],[12,-29],[-21,-34],[36,-20],[-1,-44],[-39,-52]],[[5913,10443],[100,55]],[[6013,10498],[17,-24],[37,-21],[13,-18],[71,-37],[17,-30],[59,-42],[10,-53]],[[6237,10273],[15,-22],[52,-19],[31,-51],[37,45],[55,10],[33,25],[27,7],[31,24],[57,4],[40,12],[87,72]],[[6702,10380],[144,-141]],[[6846,10239],[36,-32]],[[6265,10747],[31,-12],[-13,-35],[37,-76],[44,-54],[48,-5],[-7,-52],[36,-31],[21,25],[-19,36],[66,21],[30,-11],[47,23],[48,-20]],[[6634,10556],[6,-49],[37,-66]],[[6677,10441],[-59,-16],[-75,17],[-29,-4],[-37,-37],[-46,-25],[2,-30],[-51,-18],[-36,-20],[-27,11],[-31,-6],[-51,-40]],[[6013,10498],[35,5],[16,17],[82,32],[8,17],[46,4],[-4,21],[81,18],[-6,17],[-59,26],[53,92]],[[7143,10450],[-92,86]],[[7051,10536],[-127,125],[-73,78]],[[6851,10739],[-189,188]],[[6662,10927],[-13,19],[-89,86]],[[6560,11032],[16,17],[-13,22],[90,91],[107,-106],[23,28]],[[6783,11084],[11,14],[104,-100],[32,-23],[14,17],[50,-51],[57,39]],[[7270,10546],[-53,-6]],[[7217,10540],[-11,5],[-81,-74],[18,-21]],[[5172,10761],[67,21],[32,24],[79,75]],[[5350,10881],[8,8]],[[5358,10889],[75,-20]],[[5433,10869],[69,-14],[58,1],[192,36],[87,-11],[40,7],[59,-27],[91,6],[10,-11],[64,22]],[[6103,10878],[22,-57],[31,-30],[66,-25]],[[6222,10766],[43,-19]],[[5358,10889],[25,53],[-3,42],[-13,30],[-50,85],[-8,56],[6,39],[52,171]],[[5367,11365],[83,11],[42,-19]],[[5492,11357],[18,-17],[29,-50],[28,-9],[60,22],[37,-8],[32,8],[22,-16]],[[5718,11287],[10,-32],[-6,-57],[19,-27]],[[5741,11171],[-32,-69],[-27,-19],[-8,-37],[-92,0],[-60,67],[-46,-12],[-28,-40],[21,-56],[-23,-14],[-22,-44],[-38,-38],[47,-40]],[[4949,11401],[13,40],[-22,40],[-6,48],[31,14],[61,-18],[19,-39],[34,-102],[39,-40],[76,78],[-76,70],[51,53],[69,-51],[33,26],[16,-11],[75,55]],[[5362,11564],[15,-91],[1,-58],[-11,-50]],[[5350,10881],[5,9],[-40,30],[-50,53],[-44,66],[-63,59],[-11,69],[-11,29],[-23,21],[-76,43],[-94,90],[6,51]],[[6256,11294],[-75,57],[32,41],[216,2],[6,4]],[[6435,11398],[21,-26]],[[6456,11372],[48,-58],[-29,-22],[-34,-3],[-5,-14],[-149,43],[-31,-24]],[[6256,11294],[-3,-4]],[[6253,11290],[-7,-5]],[[6246,11285],[-141,115],[-70,71]],[[6035,11471],[-7,32],[132,100],[13,-19],[37,48]],[[6210,11632],[51,-23],[174,-211]],[[6210,11632],[-18,15],[5,34],[-51,74],[-85,103]],[[6061,11858],[110,20],[39,15]],[[6210,11893],[29,-44],[23,-3],[28,17]],[[6290,11863],[33,13],[26,-7],[16,-35],[-7,-22],[-51,-24],[16,-51],[73,4],[25,-67]],[[6421,11674],[31,-25],[12,-26],[9,-84],[-17,-40],[-30,-34]],[[6426,11465],[-2,-11],[45,-51]],[[6469,11403],[-13,-31]],[[6210,11893],[-51,33],[-29,29],[15,30],[22,16],[-4,25],[-26,22],[-16,30],[16,36],[42,19],[69,8],[17,18],[-4,30],[-25,8],[-61,-9],[-48,17]],[[6127,12205],[-27,64]],[[6100,12269],[23,-5],[103,-1]],[[6226,12263],[81,0],[-1,-142],[106,-6],[-6,-167],[3,-38],[-54,-15],[-17,-15],[-45,-7],[-3,-10]],[[6047,12146],[2,53],[78,6]],[[6061,11858],[-133,165]],[[5928,12023],[116,64],[3,59]],[[5373,11729],[31,13],[41,33]],[[5445,11775],[63,-66]],[[5508,11709],[116,-101],[81,24],[7,-19],[-70,-21],[51,-47],[40,-55]],[[5733,11490],[-163,-76],[-16,-38],[-62,-19]],[[5362,11564],[-57,74],[44,69],[24,22]],[[4476,11711],[40,32],[104,-76],[40,44],[41,54],[-14,13],[19,43],[22,-7],[60,64],[53,44],[46,80],[3,34]],[[4890,12036],[31,22],[122,56],[170,83],[17,-4]],[[5230,12193],[78,-44],[58,-96],[-19,-24]],[[5347,12029],[-172,-177],[-18,-17],[-11,-34],[1,-39],[19,-41],[21,-25],[31,2],[90,101],[71,-59],[-6,-11]],[[4949,11401],[-21,-4],[-17,-31],[-72,-36],[-78,-28],[-46,33]],[[4304,12430],[55,6],[38,25],[88,38],[7,11]],[[4492,12510],[35,-29],[25,-35],[18,1],[96,55],[54,-33],[40,-41],[22,15],[17,-14],[22,25]],[[4821,12454],[58,-30],[16,-19],[-9,-39],[-19,-9],[22,-36],[-28,-19],[46,-51]],[[4907,12251],[-9,-5],[46,-79],[-100,-44],[-2,-9],[48,-78]],[[4100,12162],[-4,29],[-56,65],[41,32],[12,-7],[30,-59],[36,9],[13,31],[35,18],[-14,30],[51,14],[-5,22],[36,21],[18,27],[23,13],[-12,23]],[[5928,12023],[-125,131]],[[5803,12154],[-27,29]],[[5776,12183],[40,16],[32,24],[45,-47],[42,32],[82,4],[0,-67],[30,1]],[[5776,12183],[-53,57]],[[5723,12240],[-30,31]],[[5693,12271],[26,33],[66,50],[20,9],[42,-11],[64,39],[135,-7],[1,-90],[53,-25]],[[6061,11858],[-65,-13],[-163,-5],[-38,-11]],[[5795,11829],[-31,75],[-36,53],[-63,66]],[[5665,12023],[-11,12]],[[5654,12035],[149,119]],[[6035,11471],[-108,109]],[[5927,11580],[-51,57],[-142,148]],[[5734,11785],[61,44]],[[5927,11580],[-51,-24]],[[5876,11556],[-143,-66]],[[5508,11709],[72,16],[119,40],[35,20]],[[5876,11556],[45,-81],[48,-42],[-33,-18],[-53,-8],[15,-27]],[[5898,11380],[-41,-12],[-17,-23],[-27,-15],[-45,-7],[-21,-29],[-29,-7]],[[6246,11285],[-144,-66]],[[6102,11219],[-19,13],[11,25],[-9,16],[-31,12],[-22,37],[-79,-38],[-36,62],[13,26],[-32,8]],[[6102,11219],[-158,-74]],[[5944,11145],[-111,-54],[-72,72],[-20,8]],[[5577,11950],[88,73]],[[5445,11775],[67,61],[-5,5],[98,79],[-28,30]],[[5347,12029],[36,-6],[8,-45],[61,-60],[18,-37],[77,74],[30,-5]],[[5275,12237],[87,-56]],[[5362,12181],[36,-34],[60,-81],[18,-12],[50,39],[57,-59],[41,32],[30,-31]],[[5230,12193],[45,44]],[[7174,12027],[-32,67],[-7,48]],[[7135,12142],[-19,38],[-29,22],[-29,51],[-66,50],[-155,105],[-61,34],[-99,-17],[-119,-58],[-153,81],[-79,38],[-101,-10]],[[6225,12476],[-35,-14],[-19,-28],[-44,-10],[-37,48],[-103,15],[-90,-1],[-124,111],[10,20],[4,109],[-20,81],[-50,70],[-64,0],[-14,-13],[-42,-2],[-58,12],[-133,-59],[-52,-14],[-22,46],[-42,29]],[[5290,12876],[-118,2],[-343,-4]],[[4829,12874],[15,269]],[[4844,13143],[90,184],[-31,65],[-140,73],[-41,160],[-31,73],[-105,54],[-155,50]],[[4137,15536],[164,2],[195,-2],[235,0],[1366,-3],[266,0],[19,-24],[600,-826],[110,-159],[503,-700],[743,-1032],[403,-570],[233,-335],[143,-209],[195,-273],[243,-341],[222,-310],[162,-220],[584,-470],[-318,-378],[4,101],[-304,3]],[[1719,13182],[-15,-42],[6,-78],[24,-37],[-25,-35],[-27,-15],[-76,37],[-65,19],[-52,-7],[-19,-12],[-27,-43],[-9,-27],[-36,-3],[-51,-30],[-21,-25],[-14,-53],[12,-60],[16,-27],[49,-38],[-6,-54]],[[6091,1194],[-94,-185],[-301,-987],[-200,-22],[-267,0],[-245,43],[-245,65],[-201,86],[-133,86],[-117,138],[-84,105],[-76,121],[-77,147],[-47,156],[-31,214],[-11,101],[10,68],[-155,96],[-102,91],[-85,96],[-49,74],[-42,100],[-41,65],[-33,76],[-148,64],[-226,164],[-131,127],[-122,195],[-38,81],[-43,117],[-67,76],[-114,191],[-37,95],[-44,145],[-11,131],[1,56],[-20,86],[-21,64],[-23,122],[-13,117],[-69,92],[-73,133],[-55,177],[-30,133],[-11,174],[-7,187],[47,502],[118,547],[212,1118],[-24,205],[-94,205],[-330,708],[-283,471],[-51,88],[-49,123],[-38,134],[-15,104],[-19,102],[-13,128],[2,113],[-98,23],[-270,85],[-202,110],[-201,169],[-124,146],[-136,139],[-90,105],[-88,117],[-59,125],[-38,112],[-27,221],[-19,34],[-59,675],[-36,415],[-143,381],[-36,415],[36,312],[143,450],[143,380],[107,277],[-78,784],[-81,819],[509,15],[908,18]],[[1828,14521],[21,-82],[17,-31],[-1,-187],[5,-23],[-7,-47],[0,-114]],[[1863,14037],[2,-72],[-10,-83],[7,-33],[-13,-97],[-2,-79]],[[1847,13673],[-15,-123],[-38,-33],[-16,-24],[-12,-65],[26,-63],[-10,-70],[13,-49],[-39,-13],[-37,-51]],[[4844,13143],[-308,0],[-96,-71]],[[4440,13072],[-93,64],[-97,-66],[-269,199]],[[3981,13269],[-43,82],[-76,262],[-12,94],[-17,67],[-1,34]],[[3315,13543],[72,-125],[12,-34]],[[3399,13384],[-43,14],[-100,-13],[-7,30],[20,10],[24,49],[22,69]],[[2875,15533],[159,0]],[[2858,15396],[30,19],[-27,23],[49,20],[-35,75]],[[2398,13766],[21,33],[40,44]],[[2459,13843],[27,32],[92,12]],[[2578,13887],[50,-54],[98,-61],[70,-60],[58,-78],[43,-45],[30,-47]],[[2927,13542],[27,-45]],[[2843,13384],[-6,13],[-40,13],[-21,-9],[-139,17]],[[2637,13418],[-33,5],[-150,218],[-16,46],[-34,25],[-6,54]],[[5362,12181],[87,68]],[[5449,12249],[52,-54],[32,25],[66,-69],[112,88],[12,1]],[[5449,12249],[-46,48],[-55,47]],[[5348,12344],[51,73],[73,81],[-13,18]],[[5459,12516],[234,-245]],[[6225,12476],[1,-213]],[[5459,12516],[-95,99],[-29,18],[-72,14]],[[5263,12647],[36,30],[-9,199]],[[5275,12237],[-52,27],[-111,88]],[[5112,12352],[-15,12],[84,66]],[[5181,12430],[119,-58],[48,-28]],[[4907,12251],[205,101]],[[6677,10441],[5,-29],[20,-32]],[[6544,10831],[24,-47],[63,-56],[17,-37],[38,-37],[-19,-14]],[[6667,10640],[-59,8],[-13,-17],[38,-63],[1,-12]],[[6222,10766],[36,76],[39,-18],[60,13],[58,39],[15,27],[56,-37],[30,-9],[28,-26]],[[8603,9630],[126,288]],[[8729,9918],[174,-52],[39,0],[22,-17],[26,1]],[[8990,9850],[90,-61]],[[9027,9562],[-19,-19],[-31,-11],[4,-29],[-64,-10],[-15,23],[-25,-19],[-41,-2]],[[8836,9495],[-233,135]],[[6851,10739],[-105,-91],[7,-8]],[[6753,10640],[-65,-9],[-21,9]],[[6544,10831],[118,96]],[[7051,10536],[-161,-136]],[[6890,10400],[-42,42],[5,25],[-31,37],[-52,52],[-17,30],[0,54]],[[3399,13384],[4,-34],[-16,-64],[-45,-76],[-26,-88],[6,-41]],[[3322,13081],[2,-5]],[[2927,13542],[98,37],[66,46],[21,35],[68,24]],[[3180,13684],[101,-91],[34,-50]],[[2989,14512],[32,-23],[66,63],[82,-70],[24,-41],[29,-21],[-11,-34],[71,-7]],[[3282,14379],[-15,-46],[148,-37],[-7,-21]],[[2886,14495],[-48,44],[5,33],[-11,33]],[[6890,10400],[-1,-46],[-51,-46],[22,-58],[-14,-11]],[[7143,10450],[-34,-49],[-44,-46]],[[7224,9522],[-58,60],[61,33],[20,25],[23,47],[45,39]],[[7315,9726],[157,-129],[18,-22]],[[7407,9373],[-183,149]],[[7410,9870],[61,-55],[-21,-37],[102,-17]],[[7552,9761],[-3,-17]],[[7315,9726],[-27,26],[-15,-13],[-67,61],[-22,30],[2,24]],[[7245,9987],[2,3]],[[7247,9990],[38,-44],[21,16],[46,-30],[41,-37],[17,-25]],[[7549,9995],[-139,-125]],[[7247,9990],[31,38],[56,57],[-22,22],[-16,-12],[-30,27],[110,101]],[[7376,10223],[33,-28]],[[7409,10195],[-22,-22],[81,-67],[79,-71],[-21,-19],[23,-21]],[[3289,14402],[-7,-23]],[[2738,15407],[-37,59],[44,17],[-8,16],[87,32]],[[2824,15531],[51,2]],[[2053,14943],[46,-7]],[[2099,14936],[4,-132],[8,-21],[29,-13],[96,1],[20,-6]],[[2256,14765],[-13,-37],[1,-89],[-54,-5],[-28,-21],[-13,-32]],[[2256,14765],[22,-6],[71,0],[45,6]],[[2394,14765],[-36,-69],[-30,-31],[19,-13],[-8,-32],[9,-40],[-3,-41],[12,-26]],[[2357,14513],[-22,-29],[13,-69],[-14,-14]],[[2334,14401],[-25,39],[-50,45],[-46,49]],[[2881,14036],[-16,-14],[-83,-42],[-35,-3],[-51,18],[-40,-3],[-47,-17],[-20,-25],[9,-40],[-7,-18]],[[2591,13892],[-13,-5]],[[2578,13887],[-93,113],[-70,131]],[[2415,14131],[60,30],[29,0]],[[2504,14161],[82,-4],[97,-10],[116,7],[21,-11]],[[7549,9995],[66,17]],[[7615,10012],[-18,-33],[-45,-218]],[[8352,10068],[-56,-4]],[[8296,10064],[-264,115]],[[8032,10179],[48,94]],[[7409,10195],[90,-73],[19,67],[13,21]],[[7531,10210],[201,-103]],[[7732,10107],[-29,-50]],[[7703,10057],[-8,-10]],[[7695,10047],[-58,42],[-25,-42],[3,-35]],[[6697,11399],[20,2],[58,-17],[24,5],[12,21],[-11,66],[7,56],[40,36],[34,-16],[102,-2]],[[6983,11550],[27,-16],[2,-29],[41,-7],[89,-72],[43,-44],[-12,-9],[-162,-161],[1,-42],[61,-51],[36,-17]],[[6783,11084],[-57,63],[-43,73],[-64,50],[-11,22],[3,46],[44,1],[11,41],[31,19]],[[8032,10179],[-14,6],[-146,38],[-89,17],[-22,-37],[105,-26],[-71,-117],[-63,47]],[[7531,10210],[79,129],[121,-18],[-6,33]],[[2415,14131],[13,64],[-9,50],[-85,156]],[[2357,14513],[51,-52],[14,-25],[48,17]],[[2470,14453],[5,-26],[52,-88],[97,-88],[-18,-18],[-45,-24],[-56,-4],[-1,-44]],[[3670,14355],[105,-27]],[[2807,14261],[-16,31],[-88,-9],[25,39],[-102,69],[-39,31],[-3,22],[33,9],[29,45]],[[2646,14498],[-16,18],[32,30]],[[3622,13776],[-53,-7],[-56,-25],[50,-96]],[[3563,13648],[-184,-79],[-44,-12],[-20,-14]],[[3180,13684],[-53,54],[-23,38],[-20,50]],[[3560,13898],[62,-122]],[[3563,13648],[82,-138]],[[3645,13510],[-246,-126]],[[7242,10373],[18,19],[81,-82],[61,50],[-54,55],[-37,22],[-53,65],[-41,38]],[[7376,10223],[-40,40],[-28,-2],[-92,84],[26,28]],[[6983,11550],[-9,97],[34,87],[28,24]],[[7036,11758],[110,105],[25,34]],[[8352,10068],[10,-32]],[[8362,10036],[-32,-8],[-55,-109],[-53,24],[-23,-40],[-19,3],[-76,35],[-38,-58]],[[8066,9883],[-51,10],[-165,124],[-10,-3]],[[7840,10014],[16,17],[199,14],[16,-11],[225,30]],[[7242,10373],[-99,77]],[[2591,13892],[97,32],[81,-51],[49,-35],[66,-40],[25,-5],[32,33],[51,-46],[92,46]],[[3770,12989],[158,103],[31,-2]],[[3959,13090],[76,-64],[-16,-11],[77,-70],[32,-41]],[[4128,12904],[-105,-70],[-56,-17]],[[3967,12817],[-29,36],[-26,-17],[-33,42],[1,22],[-17,20],[-55,28],[5,14],[-43,27]],[[3728,12961],[42,28]],[[3967,12817],[-22,-25],[-51,1],[-25,-20],[-40,-12],[-27,-44],[-12,-35],[-42,-6],[-45,10],[-24,-17]],[[3604,12757],[33,21],[-18,24],[47,40],[25,14],[8,27],[30,-13],[-1,91]],[[3826,13194],[44,-53],[27,16],[62,-67]],[[3728,12961],[-38,7],[-72,-24],[-26,2],[-21,39],[24,10],[2,31],[-41,74],[-43,48],[-23,8],[-57,-22]],[[3433,13134],[41,23],[15,31],[30,16],[9,-18],[29,13],[123,83],[31,13],[60,-37],[-49,-73],[-7,-31],[39,-4],[72,44]],[[3645,13510],[83,-129],[52,-60]],[[3780,13321],[14,-29],[-5,-42],[39,-46],[-2,-10]],[[3433,13134],[-20,-20],[-60,-32],[-31,-1]],[[2459,13843],[4,18],[-15,55],[-38,21],[-10,16],[-153,76],[-41,-2],[-46,11]],[[2160,14038],[-16,23],[13,58],[64,-6],[22,5],[-29,37],[5,36]],[[2219,14191],[-13,31],[44,35],[19,26],[3,71],[34,42],[28,5]],[[7695,10047],[50,-46],[-33,-55],[98,-81]],[[7810,9865],[-43,-70],[-37,-39],[-22,5],[-31,-62]],[[7456,8793],[31,0],[51,-18],[106,115],[17,28],[28,-24]],[[7689,8894],[12,-26],[43,46],[6,21],[31,6],[27,-14],[37,-2],[29,18],[34,-11],[40,6],[17,-19],[34,9],[52,-32],[-2,-26],[60,-34],[16,-38],[33,-18],[73,62],[28,57]],[[8259,8899],[14,-13]],[[8273,8886],[4,-25],[-30,-32],[10,-43],[44,-33],[11,-61],[-18,-23],[-30,-14],[20,-29],[43,-17],[-9,-42],[-98,-21]],[[8220,8546],[-31,-27],[-117,-47],[-34,7],[-120,43],[-54,35],[-57,63],[-61,31],[-91,14],[-72,26],[-49,34],[-78,68]],[[7942,9758],[-132,107]],[[7703,10057],[97,-23],[40,-20]],[[8066,9883],[-54,-66],[-20,15],[-50,-74]],[[8235,9427],[85,115]],[[8320,9542],[121,-69],[23,18],[214,-154]],[[8678,9337],[-29,-10],[-58,-55],[-13,-34]],[[8578,9238],[-25,24],[-89,55],[-48,-66],[-33,28],[-83,50],[30,40],[-95,58]],[[8964,9867],[26,-17]],[[8729,9918],[-33,24],[-98,57],[-54,21],[-74,12],[-108,4]],[[2470,14453],[3,42],[93,-30],[33,-1],[26,11],[21,23]],[[2394,14765],[11,30],[15,143]],[[2099,14936],[45,7],[26,62],[47,-2]],[[2100,15349],[36,-81],[-27,-20]],[[6995,11811],[-153,97]],[[6842,11908],[28,11],[21,23],[9,50],[-2,34],[-23,49]],[[6875,12075],[24,12],[24,-49],[26,5],[2,38],[71,31],[32,0]],[[7054,12112],[81,30]],[[7036,11758],[-41,53]],[[6650,12146],[-44,29],[161,167],[194,-131],[26,-15],[41,-63],[26,-21]],[[6875,12075],[-15,-6],[-37,39],[-45,25],[-79,4],[-49,9]],[[6842,11908],[-215,139],[19,28],[4,71]],[[6803,11708],[78,6],[8,-37],[-67,-13],[-15,-45],[-75,-64],[-70,-52],[-56,11],[-3,-52],[-69,-9],[-51,8],[-25,-23],[-15,29],[-17,-2]],[[6421,11674],[13,8],[48,-33],[27,3],[73,34],[29,6]],[[6611,11692],[3,-106],[14,-8],[80,-3],[71,54],[24,37],[0,42]],[[6803,11708],[2,37]],[[6805,11745],[122,-2],[32,17],[36,51]],[[6697,11399],[-112,4],[-116,0]],[[6842,11908],[-61,-30],[-54,-12]],[[6727,11866],[-46,16],[-71,38],[-75,-8],[-34,-26],[97,-131],[-9,-12],[22,-51]],[[2431,15457],[-4,-71],[-9,-12]],[[2418,15374],[1,-34]],[[2470,15533],[317,0],[37,-2]],[[2616,15413],[-14,0],[-11,-45],[-61,0],[-66,16],[-46,-10]],[[3412,15533],[181,0],[39,2],[166,-1]],[[4821,12454],[-6,4],[116,92]],[[4931,12550],[250,-120]],[[6727,11866],[15,-46],[-11,-75],[74,0]],[[7224,9522],[-19,-17],[-29,-6],[-28,-27],[-63,61],[-149,-132],[-30,-42],[-87,-4],[-38,17],[-11,-12],[-35,-1],[1,35],[-35,16],[-71,50],[29,17],[19,24],[-24,44]],[[5181,12430],[164,130],[-82,87]],[[6103,10878],[217,71],[33,34],[69,9],[19,13],[15,41],[47,-39],[40,41]],[[6543,11048],[17,-16]],[[4931,12550],[-221,106]],[[4710,12656],[-39,19],[53,58],[13,42],[92,99]],[[4430,12709],[109,-74]],[[4539,12635],[-36,-64],[-11,-61]],[[4304,12430],[16,32],[-62,40],[57,83],[-57,37],[11,21],[35,-3],[38,30],[38,3],[17,27],[33,9]],[[4710,12656],[-56,-97],[-115,76]],[[4430,12709],[-118,76],[33,46],[-64,32],[-51,44]],[[4230,12907],[119,90],[91,75]],[[4128,12904],[47,-43]],[[4175,12861],[-25,-42],[-37,-33],[36,-29],[-30,-63],[-23,17],[-50,-53],[-53,-43],[-75,-24],[-85,-63],[-39,46],[-24,11]],[[4175,12861],[55,46]],[[5944,11145],[24,-25],[33,-9],[22,-19],[42,-84],[-12,-41],[13,-46],[28,-12],[9,-31]],[[6253,11290],[113,-89],[148,-142],[29,-11]],[[8060,9188],[175,239]],[[8578,9238],[-12,-27],[-44,-19],[-38,-1],[-4,-38]],[[8480,9153],[-92,59],[-34,-47],[-120,73],[-78,-108],[-96,58]],[[3780,13321],[89,-101],[29,17],[7,27]],[[3905,13264],[11,-18],[58,29],[7,-6]],[[3905,13264],[-103,157],[5,9],[-54,85],[-131,261]],[[2544,12160],[4,79],[-50,2],[-2,71],[-170,1],[92,133],[-41,37],[-39,-10],[-21,26],[60,83],[-47,24],[-23,37],[0,55],[-49,25],[-26,54],[41,6],[2,34],[-46,16],[-32,53],[-4,56]],[[2193,12942],[20,-2],[129,108],[79,126],[13,14],[58,96],[-73,6],[4,11],[100,84],[58,21],[67,-26],[-11,38]],[[1902,12260],[-39,102],[-65,62],[-58,-29],[-10,50],[14,46],[26,4],[160,8],[40,42],[-107,31],[84,109],[25,10],[3,32],[27,82],[-40,5],[-27,-10],[-29,7],[-15,17],[-6,37],[11,27],[-24,29],[-42,32],[34,47],[-1,93],[11,28],[24,27]],[[1898,13148],[28,-25],[9,-26],[33,-56],[86,-55],[59,-16],[25,-19],[55,-9]],[[1719,13182],[153,-9],[18,49],[17,0],[58,-25],[-67,-49]],[[1847,13673],[166,1],[14,-34],[19,-5],[9,-40],[18,-23],[53,25],[18,-40],[37,-5],[33,10],[35,44],[31,4],[11,21],[-4,28],[26,39],[-16,28],[11,28],[25,11],[65,1]],[[1863,14037],[86,2],[22,-18],[11,39],[56,-7],[2,-16],[65,-46],[25,6],[30,41]],[[2002,14443],[8,-32],[-18,-24],[14,-79],[37,-13],[54,-9],[18,-24],[26,-6],[15,14],[19,-66],[44,-13]],[[8603,9630],[-32,17],[-21,-31],[-65,34],[-16,22],[-63,-84],[-106,60],[47,70],[-37,22],[-26,4],[-60,-79],[-26,18],[-30,-41],[-15,-5]],[[8153,9637],[-211,121]],[[8153,9637],[167,-95]],[[8060,9188],[-37,-51]],[[8023,9137],[-44,9],[-28,30],[-51,-7],[-47,-47],[-18,5],[-49,-66],[18,-12],[-10,-37],[-105,-118]],[[7456,8793],[-6,22],[14,31],[22,18],[44,-12],[18,22],[-34,25],[-9,32],[-37,-16],[-87,45],[-21,27],[1,31],[39,41],[29,46],[-15,14],[5,54],[30,-15],[24,0],[70,102]],[[8836,9495],[-33,-33],[-21,9],[-11,-46],[-29,1],[-7,-42],[-24,-41],[-33,-6]],[[6394,9449],[175,-132],[34,-17],[18,-30],[60,-62],[35,-48],[15,-5],[128,-136],[50,-56],[31,-45],[36,-10],[51,4],[-13,-37],[5,-30],[22,-24],[64,-30],[20,-17],[29,-88]],[[7154,8686],[56,-161],[11,-26],[-64,-63],[-32,-22],[-6,-39],[18,-59],[-11,-42],[132,-47],[127,-76],[-24,-68],[26,-45],[55,-56],[26,-54],[30,-24],[11,-41],[-32,-37],[12,-12],[76,-43],[-35,-24],[-63,51],[-46,11],[1,17],[-67,83],[-19,-60],[-33,37],[-55,82],[-69,-64],[-86,-85],[-12,-61],[-31,-24],[-6,-24],[-20,-13],[3,-20],[-23,-23],[-49,-26],[-5,-14],[55,-97]],[[7456,8793],[-41,1],[-48,19],[-89,-120],[-50,32],[-74,-39]],[[8220,8546],[3,-26],[-29,-26],[-19,-89],[40,-89],[10,-72],[13,-57],[-7,-37],[15,-41],[23,-14],[-3,-48],[12,-37],[-21,-18],[3,-37],[-14,-24],[1,-43],[12,-21],[-11,-21],[-56,-51],[-61,-112],[-8,-28],[-48,-46],[3,-33],[-31,-25],[-12,-37],[-7,-57],[6,-23],[-6,-39],[-22,-56],[4,-65],[21,-53],[34,-58],[36,-35],[18,-43],[30,-42],[-2,-54],[14,-30],[35,-48],[44,-36],[23,-36],[90,-78],[15,-53],[57,-90],[68,-68],[86,-96],[-72,-14],[-23,33],[-33,-14],[-37,32],[-64,-114],[-26,-23],[-49,-26],[-58,-39]],[[8023,9137],[-52,-69],[142,-87],[30,6],[4,-24],[112,-64]],[[8480,9153],[-51,-2],[-25,-58],[4,-20],[-23,-44],[-15,-11],[-52,-11],[-16,-29],[-41,-14],[12,-78]]]}
Tract ID Unemployment Rate
600100 9.7%
600200 14.3%
600300 3.4%
600401 6.2%
600402 8%
600500 11%
600600 10.2%
600700 8.9%
600800 10.9%
600900 9.2%
601000 9.2%
601100 9.1%
601200 5.8%
601300 13.1%
601400 8.8%
601501 8.1%
601502 9.8%
601601 6.2%
601603 3.6%
601604 2.3%
601605 5.3%
601700 12.6%
601800 4.2%
601901 5.3%
601902 0.6%
602000 4.7%
602100 10.7%
602200 3.3%
602300 5.9%
602400 8.1%
602500 6.7%
602600 6.7%
602700 5.9%
602800 5.4%
602900 9.1%
603000 7.1%
603100 4.7%
603200 9.5%
603300 5.4%
603400 5.4%
603700 6.4%
603801 5.9%
603802 6.3%
603900 5.7%
604000 1.2%
604101 9.3%
604102 3.3%
604200 14.7%
604400 8.3%
604500 3.9%
604600 7%
604700 4%
604800 4.6%
604900 4.6%
605000 5.3%
605100 4.8%
605200 4.4%
605300 5.8%
605400 9.1%
605500 6.5%
605600 7.5%
605700 3.8%
605800 2.5%
605900 11%
606000 0.6%
606100 2.6%
606200 9.5%
606300 2.6%
606400 2.2%
606500 1.5%
606600 4.6%
606700 4.2%
606800 5.1%
606900 3.6%
607000 5.7%
607100 3.9%
607200 7%
607300 2.2%
607400 3.9%
607500 3.7%
607600 6.1%
607701 8.6%
607702 6%
607800 3.4%
607900 5.9%
608001 5.4%
608002 1.5%
608004 3%
608013 9.7%
608023 11.3%
608100 5.8%
608200 5.1%
608300 5.4%
608400 6.4%
608501 8.1%
608502 5.7%
608600 9.3%
608700 4%
608800 5.4%
608900 5.7%
609000 5.4%
609100 6.6%
609201 6.8%
609202 6.7%
609300 6.1%
609400 4.3%
609500 6.8%
609601 4.6%
609602 2.3%
609603 3.8%
609700 4.3%
609800 4.4%
609900 4.1%
610000 3.3%
610100 6.5%
610201 6.4%
610202 2.6%
610203 6.6%
610302 1.3%
610303 7.5%
610304 7%
610400 15.7%
610500 9.7%
610601 9.8%
610602 10.6%
610700 5.3%
610800 3.4%
610900 8.2%
611000 5.5%
611100 5.5%
611200 5.8%
611300 3.5%
611400 3.7%
611500 9.6%
611600 3.9%
611700 8.4%
611800 7%
611900 11.3%
612000 12.1%
612100 5.8%
612500 6.8%
612600 4.1%
612700 2.9%
612800 4.6%
612900 5.6%
613000 4.5%
613200 4.7%
613300 8.7%
613400 1.9%
613501 4.7%
613502 5.9%
613600 0.9%
613700 8.4%
613800 2.1%
613900 8.3%
614000 4%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment