Skip to content

Instantly share code, notes, and snippets.

@seemantk
Last active November 16, 2015 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seemantk/55b6723f28ade53f78c2 to your computer and use it in GitHub Desktop.
Save seemantk/55b6723f28ade53f78c2 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<style>
body, html {
width: 100%;
height: 100%;
}
circle.airbnb {
fill: #e00007;
opacity: 0.6;
}
.axis {
font-family: arial;
font-size: 0.7em;
}
text {
fill: none;
}
.label {
font-size: 2em;
}
path {
fill: none;
stroke: none;
stroke-width: 2px;
}
.tick {
fill: none;
stroke: none;
}
circle {
opacity: 0.9;
stroke: none;
fill: red;
}
.line {
fill: none;
stroke: #e00007;
stroke-width: 1px;
}
</style>
<script>
function draw(geo_data) {
"use strict";
/*
D3.js setup code
*/
var margin = 75,
width = 1050 - margin,
height = 1100 - margin;
// https://github.com/mbostock/d3/wiki/Time-Formatting
var format = d3.time.format("%Y-%m-%d");
var projection = d3.geo.mercator()
.center([-122.433701, 37.767683])
.scale(230000)
.translate([width / 1.95, height / 1.74]);
var path = d3.geo.path()
.projection(projection);
var map = d3.select('#map')
.attr("width", 1050)
.attr("height",1100)
.append("g")
.attr("transform", "translate(0,300)")
.selectAll('path')
.data(geo_data.features)
.enter()
.append('path')
.attr('d', path)
.style('fill', '#eee')
.style('stroke', 'black')
.style('stroke-width', 1);
map.datum(function(d) {
var normalized = d.properties.neighbourhood
.replace(/ /g, '_')
.replace(/\//g, '_');
d.properties.neighbourhood = normalized;
return d;
});
map.attr('class', function(d) {
return d.properties.neighbourhood;
});
d3.json("listing_count.json", function(data) {
var listings_extent = d3.extent(d3.values(data));
var bubbles = d3.select('#map').append("g")
.attr("transform", "translate(0,300)")
.attr("class", "bubble")
.selectAll("circle")
.data(geo_data.features)
.enter()
.append("circle")
.attr('class', 'airbnb');
bubbles.datum(function(d) {
d.count = data[d.properties.neighbourhood];
return d;
});
var radius = d3.scale.pow().exponent(1.2)
.domain(listings_extent)
.range([3, 25]);
bubbles
.attr("cx", function(d) { return path.centroid(d.geometry)[0]; })
.attr("cy", function(d) { return path.centroid(d.geometry)[1]; })
.attr("r", function(d) { return radius(d.count); });
d3.csv('neighborhood_reviews_timeseries.csv',
function(timeseries) {
var field = "Mission";
// maximum reviews
var max_y = d3.max(timeseries, function(d) {
var max = 0;
d3.values(d).forEach(function(i) {
if (+i && (+i > max)) {
max = +i;
}
});
return max;
});
// Create y-axis scale mapping price -> pixels
var measure_scale = d3.scale.linear()
.range([height, 100])
.domain([0, max_y]);
// Create D3 axis object from measure_scale for the y-axis
var measure_axis = d3.svg.axis()
.scale(measure_scale)
.orient("left");
// Append SVG to page corresponding to the D3 y-axis
d3.select('#chart')
.attr("width", 1050)
.attr("height", 400)
.append('g')
.attr('class', 'y axis')
.call(measure_axis);
var drawChart = function(field) {
d3.select('#chart').select('.x.axis').remove();
d3.select('#chart').select('#chart path').remove();
// remove missing values
timeseries = timeseries.filter(function(d) {
return d[field];
});
// get min/max dates
var time_extent = d3.extent(timeseries, function(d){
return format.parse(d['timestamp']);
});
// Create x-axis scale mapping dates -> pixels
var time_scale = d3.time.scale()
.range([0, width - 50])
.domain(time_extent);
// Create D3 axis object from time_scale for the x-axis
var time_axis = d3.svg.axis()
.scale(time_scale)
.tickFormat(d3.time.format("%b '%y"));
// Append SVG to page corresponding to the D3 x-axis
d3.select('#chart').append('g')
.attr('class', 'x axis')
.attr('transform', "translate(0," + (height - margin) + ")")
.call(time_axis);
// define the values to map for x and y position of the line
var line = d3.svg.line()
.x(function(d) { return time_scale(format.parse(d['timestamp'])); })
.y(function(d) { return measure_scale(+d[field]); });
// append a SVG path that corresponds to the line chart
d3.select('#chart').append("path")
.datum(timeseries)
.attr("class", "line")
.attr("d", line);
};
drawChart(field);
var index = 0;
setInterval(tourbus, 1000);
var tour = [
"South_of_Market"
, "Downtown_Civic_Center"
, "Castro_Upper_Market"
, "Mission"
, "Potrero_Hill"
, "Western_Addition"
, "Haight_Ashbury"
, "Noe_Valley"
, "Bernal_Heights"
, "Nob_Hill"
]
;
function tourbus() {
d3.select("#map").selectAll("path")
.each(function(d) {
d3.select(this)
.style("fill", d.properties.neighbourhood === tour[index] ? "black" : "#eee");
if(d.properties.neighbourhood === tour[index])
drawChart(tour[index]);
})
;
index++;
if(index === 10)
index = 0;
} // tourbus()
var mover = function(d) {
var neigh = d.properties.neighbourhood;
d3.select('#map path.' + neigh).style('fill', 'black');
drawChart(neigh);
};
var mout = function(d) {
var neigh = d.properties.neighbourhood;
d3.select('path.' + neigh).style('fill', '#eee');
}
map.on("mouseover", mover);
map.on("mouseout", mout);
bubbles.on('mouseover', mover);
bubbles.on('mouseout', mout);
});
});
}
</script>
</head>
<body>
<svg id="map"></svg>
<svg id="chart"></svg>
<script>
d3.json("neighborhoods.geojson", draw);
</script>
</body>
</html>
{"Bayview":67,"Bernal_Heights":286,"Castro_Upper_Market":355,"Chinatown":57,"Crocker_Amazon":28,"Diamond_Heights":10,"Downtown_Civic_Center":197,"Excelsior":64,"Financial_District":63,"Glen_Park":49,"Golden_Gate_Park":24,"Haight_Ashbury":308,"Inner_Richmond":146,"Inner_Sunset":104,"Lakeshore":44,"Marina":242,"Mission":752,"Nob_Hill":232,"Noe_Valley":217,"North_Beach":120,"Ocean_View":56,"Outer_Mission":83,"Outer_Richmond":98,"Outer_Sunset":136,"Pacific_Heights":137,"Parkside":57,"Potrero_Hill":222,"Presidio":7,"Presidio_Heights":35,"Russian_Hill":164,"Seacliff":11,"South_of_Market":400,"Treasure_Island_YBI":8,"Twin_Peaks":58,"Visitacion_Valley":24,"West_of_Twin_Peaks":68,"Western_Addition":496}
timestamp Bayview Bernal_Heights Castro_Upper_Market Chinatown Crocker_Amazon Diamond_Heights Downtown_Civic_Center Excelsior Financial_District Glen_Park Golden_Gate_Park Haight_Ashbury Inner_Richmond Inner_Sunset Lakeshore Marina Mission Nob_Hill Noe_Valley North_Beach Ocean_View Outer_Mission Outer_Richmond Outer_Sunset Pacific_Heights Parkside Potrero_Hill Presidio Presidio_Heights Russian_Hill Seacliff South_of_Market Treasure_Island_YBI Twin_Peaks Visitacion_Valley West_of_Twin_Peaks Western_Addition
2009-03-30 1.0
2009-04-06 0.0
2009-04-13 0.0
2009-04-20 0.0
2009-04-27 0.0
2009-05-04 1.0 0.0
2009-05-11 0.0 0.0
2009-05-18 0.0 0.0
2009-05-25 1.0 0.0
2009-06-01 0.0 0.0
2009-06-08 0.0 0.0
2009-06-15 1.0 0.0
2009-06-22 0.0 0.0
2009-06-29 0.0 0.0
2009-07-06 0.0 0.0
2009-07-13 0.0 0.0
2009-07-20 1.0 1.0 0.0
2009-07-27 0.0 0.0 0.0 1.0
2009-08-03 0.0 0.0 1.0 1.0
2009-08-10 2.0 0.0 0.0 0.0
2009-08-17 2.0 1.0 0.0 0.0
2009-08-24 1.0 1.0 0.0 0.0
2009-08-31 1.0 1.0 3.0 1.0 0.0
2009-09-07 1.0 0.0 0.0 0.0 0.0
2009-09-14 0.0 0.0 1.0 3.0 0.0
2009-09-21 0.0 0.0 0.0 0.0 0.0
2009-09-28 1.0 0.0 0.0 1.0 2.0
2009-10-05 1.0 0.0 0.0 1.0 1.0 0.0
2009-10-12 0.0 0.0 0.0 1.0 0.0 0.0
2009-10-19 0.0 0.0 0.0 0.0 0.0 1.0
2009-10-26 0.0 0.0 0.0 1.0 0.0 1.0 0.0
2009-11-02 1.0 0.0 0.0 0.0 0.0 0.0 0.0
2009-11-09 0.0 0.0 0.0 1.0 0.0 0.0 1.0
2009-11-16 2.0 0.0 0.0 0.0 0.0 0.0 0.0
2009-11-23 1.0 0.0 0.0 0.0 0.0 0.0 0.0
2009-11-30 1.0 0.0 0.0 1.0 1.0 0.0 0.0
2009-12-07 1.0 0.0 0.0 0.0 0.0 0.0 0.0
2009-12-14 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2009-12-21 1.0 0.0 0.0 1.0 1.0 0.0 0.0
2009-12-28 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2010-01-04 1.0 0.0 0.0 1.0 0.0 0.0 0.0
2010-01-11 0.0 0.0 0.0 0.0 1.0 1.0 0.0
2010-01-18 2.0 2.0 0.0 0.0 2.0 0.0 0.0 0.0
2010-01-25 1.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0
2010-02-01 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
2010-02-08 1.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0
2010-02-15 1.0 0.0 0.0 0.0 0.0 0.0 2.0 1.0
2010-02-22 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0
2010-03-01 1.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0
2010-03-08 0.0 0.0 0.0 0.0 3.0 0.0 0.0 0.0
2010-03-15 0.0 0.0 0.0 0.0 2.0 0.0 0.0 1.0
2010-03-22 0.0 0.0 0.0 0.0 3.0 0.0 0.0 0.0
2010-03-29 4.0 1.0 0.0 0.0 3.0 0.0 0.0 0.0
2010-04-05 0.0 0.0 0.0 0.0 3.0 0.0 0.0 1.0
2010-04-12 0.0 1.0 0.0 0.0 2.0 0.0 2.0 0.0 1.0
2010-04-19 1.0 0.0 0.0 0.0 3.0 0.0 1.0 1.0 1.0
2010-04-26 1.0 1.0 0.0 0.0 4.0 1.0 1.0 0.0 0.0 0.0
2010-05-03 2.0 0.0 0.0 0.0 2.0 0.0 0.0 1.0 0.0 0.0
2010-05-10 2.0 1.0 0.0 0.0 3.0 1.0 0.0 0.0 0.0 1.0 0.0
2010-05-17 0.0 1.0 0.0 0.0 3.0 2.0 1.0 1.0 0.0 1.0 0.0
2010-05-24 0.0 2.0 0.0 0.0 4.0 0.0 2.0 0.0 0.0 0.0 0.0
2010-05-31 0.0 0.0 0.0 0.0 0.0 2.0 0.0 1.0 2.0 0.0 0.0
2010-06-07 2.0 1.0 0.0 0.0 4.0 1.0 0.0 2.0 2.0 1.0 1.0
2010-06-14 1.0 2.0 0.0 0.0 1.0 0.0 1.0 1.0 1.0 0.0 0.0
2010-06-21 1.0 0.0 0.0 0.0 3.0 1.0 1.0 2.0 0.0 1.0 0.0
2010-06-28 0.0 1.0 1.0 0.0 0.0 7.0 2.0 1.0 0.0 1.0 0.0 0.0
2010-07-05 2.0 0.0 2.0 0.0 0.0 3.0 0.0 3.0 1.0 1.0 0.0 0.0
2010-07-12 3.0 1.0 0.0 0.0 0.0 1.0 2.0 2.0 1.0 1.0 0.0 0.0
2010-07-19 0.0 2.0 0.0 0.0 0.0 3.0 1.0 1.0 1.0 1.0 0.0 0.0
2010-07-26 1.0 0.0 1.0 1.0 1.0 0.0 3.0 1.0 2.0 2.0 2.0 1.0 0.0 0.0
2010-08-02 1.0 0.0 1.0 2.0 0.0 0.0 0.0 2.0 2.0 2.0 0.0 3.0 1.0 0.0 1.0
2010-08-09 2.0 1.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 2.0 2.0 2.0 2.0 0.0
2010-08-16 3.0 2.0 0.0 1.0 0.0 0.0 0.0 3.0 0.0 2.0 0.0 3.0 1.0 1.0 0.0
2010-08-23 1.0 2.0 0.0 0.0 1.0 1.0 0.0 5.0 1.0 2.0 2.0 3.0 2.0 2.0 0.0
2010-08-30 1.0 3.0 0.0 0.0 0.0 1.0 0.0 4.0 2.0 2.0 1.0 4.0 1.0 1.0 0.0
2010-09-06 2.0 1.0 0.0 2.0 1.0 0.0 0.0 4.0 1.0 0.0 2.0 1.0 2.0 0.0 0.0
2010-09-13 1.0 1.0 0.0 0.0 0.0 0.0 0.0 8.0 1.0 3.0 1.0 0.0 0.0 2.0 1.0 0.0
2010-09-20 2.0 2.0 0.0 0.0 0.0 0.0 0.0 6.0 3.0 2.0 2.0 0.0 1.0 1.0 1.0 0.0 2.0
2010-09-27 2.0 3.0 0.0 0.0 1.0 1.0 0.0 8.0 1.0 1.0 2.0 5.0 2.0 0.0 2.0 3.0 1.0
2010-10-04 5.0 1.0 0.0 1.0 0.0 0.0 0.0 8.0 3.0 3.0 1.0 2.0 1.0 1.0 0.0 0.0 2.0
2010-10-11 3.0 3.0 0.0 0.0 0.0 0.0 0.0 11.0 4.0 1.0 2.0 3.0 0.0 0.0 1.0 1.0 1.0 1.0
2010-10-18 2.0 3.0 0.0 0.0 2.0 0.0 0.0 8.0 2.0 2.0 1.0 5.0 1.0 0.0 3.0 0.0 0.0 1.0
2010-10-25 1.0 4.0 0.0 0.0 0.0 0.0 0.0 9.0 5.0 1.0 2.0 2.0 1.0 0.0 1.0 0.0 1.0 1.0
2010-11-01 1.0 1.0 0.0 0.0 1.0 0.0 0.0 5.0 0.0 0.0 1.0 5.0 1.0 0.0 1.0 0.0 0.0 3.0
2010-11-08 2.0 4.0 0.0 0.0 1.0 0.0 0.0 5.0 3.0 0.0 2.0 0.0 2.0 1.0 0.0 1.0 0.0 0.0
2010-11-15 4.0 3.0 0.0 1.0 0.0 1.0 0.0 5.0 3.0 1.0 3.0 1.0 0.0 1.0 1.0 0.0 0.0 1.0
2010-11-22 1.0 1.0 0.0 0.0 1.0 0.0 0.0 2.0 4.0 1.0 1.0 1.0 0.0 1.0 1.0 1.0 0.0 1.0
2010-11-29 1.0 2.0 0.0 0.0 2.0 0.0 0.0 9.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
2010-12-06 4.0 1.0 0.0 1.0 0.0 0.0 0.0 6.0 3.0 1.0 3.0 2.0 0.0 0.0 0.0 0.0 0.0 0.0
2010-12-13 1.0 1.0 0.0 0.0 1.0 0.0 0.0 5.0 3.0 2.0 2.0 2.0 0.0 2.0 0.0 0.0 0.0 1.0
2010-12-20 0.0 1.0 0.0 0.0 0.0 0.0 0.0 6.0 1.0 0.0 2.0 1.0 0.0 0.0 0.0 0.0 0.0 4.0
2010-12-27 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0 3.0 1.0 1.0 1.0 0.0 2.0 0.0 0.0 1.0 0.0
2011-01-03 2.0 0.0 0.0 0.0 2.0 2.0 1.0 4.0 0.0 2.0 0.0 1.0 1.0 2.0 0.0 0.0 1.0 1.0
2011-01-10 0.0 1.0 0.0 0.0 0.0 0.0 0.0 4.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
2011-01-17 1.0 2.0 1.0 0.0 2.0 0.0 0.0 7.0 3.0 1.0 1.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0
2011-01-24 1.0 1.0 0.0 0.0 2.0 1.0 0.0 9.0 0.0 0.0 1.0 1.0 4.0 0.0 0.0 0.0 1.0 0.0 0.0
2011-01-31 2.0 2.0 0.0 0.0 2.0 1.0 0.0 0.0 6.0 0.0 1.0 0.0 1.0 2.0 1.0 1.0 0.0 1.0 0.0 1.0
2011-02-07 3.0 4.0 0.0 0.0 0.0 0.0 1.0 0.0 2.0 1.0 2.0 0.0 2.0 3.0 0.0 0.0 1.0 0.0 1.0 1.0
2011-02-14 0.0 3.0 0.0 1.0 2.0 1.0 0.0 0.0 7.0 3.0 1.0 0.0 0.0 2.0 0.0 0.0 1.0 0.0 0.0 0.0
2011-02-21 1.0 4.0 0.0 1.0 2.0 0.0 1.0 0.0 10.0 4.0 0.0 0.0 0.0 2.0 0.0 0.0 1.0 0.0 0.0 1.0
2011-02-28 2.0 1.0 0.0 2.0 2.0 1.0 1.0 0.0 8.0 5.0 3.0 0.0 2.0 3.0 0.0 2.0 0.0 0.0 0.0 2.0
2011-03-07 4.0 4.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 10.0 5.0 0.0 0.0 1.0 2.0 0.0 1.0 1.0 0.0 0.0 1.0
2011-03-14 2.0 2.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 10.0 3.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
2011-03-21 1.0 1.0 0.0 0.0 1.0 0.0 2.0 1.0 1.0 10.0 1.0 1.0 0.0 1.0 1.0 0.0 2.0 2.0 0.0 0.0 1.0
2011-03-28 1.0 2.0 0.0 0.0 1.0 2.0 3.0 0.0 1.0 10.0 2.0 0.0 0.0 2.0 2.0 0.0 2.0 1.0 1.0 0.0 3.0
2011-04-04 0.0 3.0 0.0 0.0 1.0 2.0 3.0 1.0 1.0 1.0 9.0 4.0 0.0 1.0 1.0 3.0 0.0 2.0 2.0 0.0 0.0 2.0
2011-04-11 4.0 3.0 0.0 1.0 3.0 0.0 0.0 0.0 0.0 0.0 7.0 4.0 1.0 0.0 1.0 2.0 0.0 1.0 2.0 0.0 0.0 4.0
2011-04-18 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 8.0 2.0 3.0 0.0 3.0 4.0 0.0 1.0 1.0 0.0 0.0 2.0
2011-04-25 2.0 2.0 0.0 1.0 1.0 1.0 0.0 2.0 1.0 0.0 7.0 3.0 1.0 1.0 2.0 2.0 0.0 3.0 1.0 0.0 1.0 2.0
2011-05-02 1.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 10.0 2.0 3.0 0.0 0.0 3.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0
2011-05-09 3.0 3.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 7.0 3.0 2.0 0.0 5.0 2.0 0.0 1.0 1.0 1.0 1.0 1.0 2.0
2011-05-16 4.0 5.0 0.0 1.0 1.0 5.0 1.0 0.0 2.0 1.0 8.0 4.0 2.0 0.0 4.0 7.0 1.0 1.0 2.0 5.0 2.0 0.0 2.0
2011-05-23 3.0 5.0 0.0 2.0 1.0 1.0 1.0 0.0 0.0 1.0 10.0 3.0 2.0 0.0 1.0 5.0 8.0 2.0 0.0 3.0 4.0 1.0 1.0 5.0
2011-05-30 3.0 2.0 0.0 1.0 2.0 0.0 0.0 0.0 2.0 0.0 9.0 3.0 4.0 1.0 0.0 3.0 8.0 0.0 1.0 2.0 1.0 1.0 0.0 6.0
2011-06-06 6.0 7.0 0.0 0.0 1.0 2.0 1.0 0.0 0.0 1.0 10.0 2.0 4.0 0.0 0.0 2.0 6.0 2.0 0.0 2.0 2.0 1.0 0.0 5.0
2011-06-13 4.0 6.0 0.0 2.0 1.0 0.0 1.0 0.0 1.0 1.0 8.0 2.0 1.0 2.0 1.0 0.0 7.0 5.0 1.0 1.0 1.0 1.0 1.0 0.0 2.0
2011-06-20 7.0 10.0 1.0 1.0 3.0 0.0 0.0 0.0 0.0 1.0 0.0 5.0 2.0 1.0 0.0 0.0 0.0 3.0 5.0 0.0 0.0 6.0 0.0 0.0 1.0 3.0
2011-06-27 5.0 7.0 0.0 2.0 1.0 2.0 1.0 1.0 0.0 0.0 0.0 11.0 2.0 2.0 0.0 0.0 0.0 2.0 9.0 0.0 2.0 0.0 0.0 1.0 1.0 3.0
2011-07-04 6.0 8.0 0.0 2.0 3.0 1.0 0.0 0.0 1.0 0.0 0.0 11.0 2.0 3.0 0.0 1.0 0.0 3.0 6.0 0.0 2.0 4.0 1.0 2.0 2.0 4.0
2011-07-11 2.0 6.0 0.0 1.0 1.0 3.0 0.0 2.0 1.0 1.0 0.0 1.0 16.0 4.0 2.0 0.0 0.0 1.0 3.0 5.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0
2011-07-18 5.0 10.0 0.0 3.0 1.0 3.0 0.0 0.0 1.0 2.0 0.0 0.0 19.0 1.0 1.0 1.0 1.0 0.0 0.0 6.0 0.0 4.0 2.0 3.0 1.0 2.0 5.0
2011-07-25 6.0 7.0 1.0 1.0 2.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 12.0 5.0 2.0 1.0 0.0 0.0 0.0 8.0 1.0 4.0 1.0 0.0 3.0 3.0 1.0
2011-08-01 7.0 9.0 0.0 0.0 0.0 4.0 0.0 1.0 0.0 4.0 1.0 0.0 8.0 5.0 4.0 0.0 2.0 1.0 1.0 12.0 2.0 1.0 4.0 1.0 3.0 4.0 4.0
2011-08-08 10.0 6.0 0.0 3.0 0.0 0.0 0.0 2.0 0.0 4.0 1.0 0.0 11.0 3.0 3.0 0.0 3.0 1.0 2.0 9.0 2.0 4.0 5.0 2.0 2.0 2.0 1.0
2011-08-15 10.0 10.0 0.0 1.0 1.0 0.0 5.0 0.0 1.0 2.0 5.0 0.0 0.0 14.0 4.0 5.0 1.0 4.0 0.0 1.0 7.0 2.0 3.0 1.0 1.0 5.0 4.0 4.0
2011-08-22 11.0 7.0 0.0 0.0 1.0 2.0 2.0 0.0 0.0 2.0 1.0 2.0 1.0 17.0 3.0 5.0 2.0 4.0 0.0 3.0 9.0 2.0 4.0 3.0 4.0 2.0 3.0 4.0
2011-08-29 3.0 13.0 7.0 0.0 1.0 2.0 0.0 4.0 0.0 1.0 2.0 3.0 2.0 0.0 14.0 2.0 4.0 0.0 3.0 1.0 3.0 16.0 1.0 3.0 2.0 3.0 2.0 4.0 5.0
2011-09-05 2.0 16.0 13.0 2.0 0.0 2.0 1.0 4.0 1.0 1.0 3.0 2.0 5.0 1.0 19.0 6.0 4.0 0.0 6.0 0.0 5.0 9.0 2.0 4.0 3.0 2.0 0.0 3.0 9.0
2011-09-12 3.0 10.0 10.0 0.0 0.0 0.0 0.0 3.0 0.0 1.0 4.0 0.0 4.0 0.0 18.0 5.0 2.0 2.0 4.0 1.0 3.0 9.0 2.0 1.0 5.0 1.0 1.0 2.0 10.0
2011-09-19 2.0 9.0 10.0 1.0 1.0 0.0 0.0 1.0 0.0 1.0 11.0 3.0 4.0 0.0 18.0 0.0 4.0 2.0 3.0 1.0 2.0 8.0 2.0 4.0 4.0 2.0 1.0 2.0 6.0
2011-09-26 3.0 12.0 7.0 1.0 0.0 1.0 1.0 3.0 1.0 2.0 4.0 1.0 2.0 0.0 13.0 4.0 5.0 0.0 4.0 0.0 4.0 4.0 0.0 4.0 4.0 3.0 2.0 2.0 5.0
2011-10-03 0.0 15.0 8.0 0.0 0.0 1.0 2.0 2.0 3.0 1.0 7.0 2.0 4.0 1.0 21.0 4.0 0.0 1.0 6.0 0.0 6.0 10.0 3.0 4.0 3.0 1.0 2.0 3.0 7.0
2011-10-10 2.0 13.0 12.0 1.0 0.0 3.0 2.0 3.0 1.0 0.0 6.0 0.0 2.0 1.0 20.0 5.0 6.0 1.0 3.0 0.0 5.0 12.0 0.0 6.0 5.0 3.0 2.0 4.0 9.0
2011-10-17 0.0 10.0 10.0 1.0 0.0 0.0 0.0 0.0 2.0 2.0 7.0 1.0 1.0 1.0 16.0 2.0 6.0 2.0 4.0 0.0 6.0 12.0 2.0 5.0 1.0 4.0 5.0 1.0 3.0 5.0
2011-10-24 1.0 9.0 4.0 0.0 0.0 1.0 1.0 1.0 1.0 0.0 7.0 0.0 1.0 2.0 17.0 3.0 4.0 1.0 7.0 1.0 4.0 2.0 14.0 2.0 4.0 0.0 4.0 3.0 1.0 4.0 6.0
2011-10-31 1.0 6.0 6.0 0.0 0.0 2.0 4.0 0.0 2.0 0.0 4.0 0.0 1.0 0.0 12.0 3.0 2.0 0.0 2.0 0.0 2.0 0.0 8.0 2.0 2.0 0.0 2.0 3.0 1.0 1.0 3.0
2011-11-07 1.0 6.0 10.0 0.0 0.0 2.0 2.0 1.0 4.0 1.0 3.0 0.0 1.0 2.0 17.0 2.0 7.0 2.0 0.0 0.0 4.0 0.0 9.0 2.0 5.0 0.0 4.0 2.0 1.0 3.0 11.0
2011-11-14 0.0 6.0 9.0 0.0 0.0 1.0 3.0 0.0 1.0 2.0 0.0 2.0 0.0 1.0 8.0 2.0 2.0 3.0 7.0 0.0 4.0 1.0 9.0 2.0 5.0 0.0 1.0 1.0 2.0 5.0 3.0
2011-11-21 0.0 7.0 5.0 0.0 0.0 0.0 1.0 2.0 5.0 0.0 4.0 2.0 1.0 1.0 18.0 0.0 3.0 0.0 3.0 0.0 2.0 1.0 8.0 1.0 2.0 0.0 4.0 2.0 1.0 1.0 5.0
2011-11-28 0.0 4.0 4.0 0.0 0.0 1.0 1.0 0.0 1.0 1.0 4.0 1.0 1.0 0.0 11.0 0.0 4.0 0.0 2.0 1.0 1.0 1.0 2.0 1.0 1.0 0.0 3.0 0.0 0.0 2.0 6.0
2011-12-05 0.0 3.0 0.0 1.0 0.0 0.0 1.0 3.0 1.0 0.0 2.0 2.0 1.0 0.0 8.0 0.0 3.0 0.0 1.0 0.0 1.0 0.0 6.0 0.0 4.0 1.0 3.0 0.0 1.0 2.0 4.0
2011-12-12 0.0 8.0 5.0 1.0 0.0 1.0 3.0 1.0 4.0 1.0 3.0 0.0 2.0 2.0 16.0 2.0 6.0 1.0 2.0 0.0 1.0 0.0 10.0 0.0 1.0 0.0 4.0 1.0 0.0 2.0 5.0
2011-12-19 0.0 5.0 5.0 1.0 0.0 1.0 3.0 1.0 1.0 0.0 1.0 1.0 0.0 1.0 11.0 3.0 3.0 0.0 1.0 0.0 1.0 0.0 4.0 0.0 3.0 0.0 3.0 1.0 0.0 2.0 3.0
2011-12-26 0.0 5.0 3.0 0.0 0.0 1.0 0.0 1.0 1.0 1.0 1.0 0.0 0.0 0.0 7.0 1.0 2.0 1.0 2.0 0.0 0.0 0.0 7.0 0.0 1.0 0.0 3.0 0.0 3.0 1.0 6.0
2012-01-02 0.0 7.0 1.0 0.0 0.0 0.0 3.0 1.0 1.0 2.0 3.0 2.0 2.0 0.0 17.0 1.0 4.0 0.0 3.0 1.0 2.0 0.0 5.0 0.0 3.0 0.0 2.0 0.0 2.0 1.0 5.0
2012-01-09 1.0 5.0 4.0 0.0 0.0 1.0 1.0 2.0 2.0 0.0 4.0 1.0 0.0 1.0 17.0 0.0 3.0 0.0 1.0 1.0 2.0 0.0 6.0 2.0 5.0 0.0 3.0 1.0 1.0 3.0 4.0
2012-01-16 1.0 6.0 10.0 1.0 0.0 0.0 1.0 0.0 3.0 1.0 2.0 0.0 0.0 0.0 11.0 2.0 3.0 0.0 1.0 2.0 0.0 2.0 0.0 4.0 1.0 3.0 0.0 4.0 2.0 0.0 3.0 10.0
2012-01-23 3.0 8.0 7.0 1.0 0.0 1.0 2.0 1.0 2.0 0.0 3.0 1.0 2.0 1.0 15.0 4.0 2.0 0.0 0.0 2.0 0.0 2.0 0.0 3.0 0.0 2.0 0.0 4.0 1.0 1.0 3.0 4.0
2012-01-30 2.0 4.0 6.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 14.0 2.0 3.0 0.0 0.0 1.0 0.0 1.0 0.0 10.0 1.0 1.0 0.0 2.0 0.0 0.0 3.0 7.0
2012-02-06 1.0 4.0 9.0 0.0 0.0 1.0 0.0 4.0 3.0 0.0 2.0 1.0 2.0 1.0 10.0 2.0 5.0 0.0 0.0 2.0 1.0 5.0 1.0 5.0 0.0 3.0 0.0 2.0 2.0 1.0 2.0 2.0
2012-02-13 0.0 7.0 12.0 2.0 0.0 2.0 4.0 0.0 3.0 0.0 2.0 2.0 4.0 0.0 19.0 4.0 3.0 0.0 0.0 3.0 0.0 1.0 0.0 8.0 1.0 2.0 0.0 9.0 0.0 1.0 4.0 5.0
2012-02-20 1.0 5.0 10.0 1.0 0.0 1.0 2.0 0.0 5.0 1.0 1.0 1.0 1.0 0.0 14.0 2.0 3.0 1.0 1.0 0.0 0.0 1.0 0.0 8.0 0.0 5.0 0.0 1.0 1.0 2.0 1.0 5.0
2012-02-27 1.0 4.0 9.0 0.0 0.0 2.0 1.0 0.0 2.0 2.0 6.0 2.0 2.0 0.0 15.0 1.0 4.0 0.0 1.0 0.0 0.0 2.0 0.0 7.0 1.0 4.0 0.0 4.0 2.0 0.0 1.0 6.0
2012-03-05 0.0 5.0 6.0 0.0 0.0 0.0 2.0 1.0 3.0 0.0 4.0 1.0 5.0 1.0 20.0 1.0 6.0 2.0 0.0 3.0 1.0 4.0 0.0 9.0 0.0 4.0 0.0 1.0 2.0 2.0 1.0 9.0
2012-03-12 0.0 9.0 11.0 2.0 0.0 0.0 1.0 1.0 6.0 0.0 5.0 1.0 1.0 2.0 22.0 1.0 6.0 1.0 2.0 1.0 0.0 1.0 0.0 9.0 1.0 3.0 0.0 7.0 4.0 1.0 3.0 7.0
2012-03-19 1.0 6.0 15.0 1.0 0.0 1.0 3.0 1.0 3.0 1.0 1.0 5.0 2.0 1.0 23.0 1.0 7.0 1.0 1.0 0.0 0.0 1.0 0.0 12.0 1.0 6.0 0.0 4.0 4.0 0.0 2.0 11.0
2012-03-26 1.0 7.0 4.0 0.0 0.0 0.0 2.0 0.0 3.0 1.0 3.0 0.0 4.0 6.0 12.0 4.0 4.0 1.0 0.0 2.0 0.0 2.0 0.0 10.0 2.0 5.0 0.0 2.0 3.0 2.0 2.0 6.0
2012-04-02 2.0 8.0 10.0 0.0 0.0 1.0 1.0 4.0 1.0 1.0 2.0 3.0 4.0 1.0 11.0 3.0 4.0 0.0 2.0 5.0 0.0 3.0 2.0 3.0 3.0 5.0 0.0 4.0 1.0 3.0 3.0 7.0
2012-04-09 0.0 9.0 11.0 0.0 0.0 1.0 2.0 0.0 3.0 0.0 3.0 0.0 0.0 1.0 18.0 2.0 3.0 3.0 0.0 4.0 0.0 5.0 0.0 7.0 1.0 5.0 0.0 3.0 3.0 1.0 5.0 6.0
2012-04-16 2.0 7.0 7.0 0.0 0.0 1.0 1.0 1.0 1.0 2.0 6.0 3.0 2.0 1.0 26.0 3.0 4.0 0.0 3.0 4.0 0.0 3.0 0.0 7.0 1.0 2.0 0.0 4.0 0.0 3.0 3.0 10.0
2012-04-23 2.0 10.0 6.0 1.0 0.0 2.0 2.0 0.0 3.0 1.0 5.0 1.0 2.0 1.0 15.0 3.0 1.0 0.0 0.0 3.0 0.0 1.0 1.0 6.0 1.0 7.0 0.0 5.0 0.0 1.0 3.0 7.0
2012-04-30 3.0 10.0 15.0 0.0 0.0 2.0 3.0 1.0 1.0 0.0 6.0 0.0 3.0 2.0 19.0 2.0 8.0 0.0 1.0 1.0 0.0 0.0 0.0 6.0 0.0 1.0 0.0 7.0 0.0 2.0 4.0 9.0
2012-05-07 1.0 9.0 10.0 0.0 0.0 1.0 2.0 2.0 2.0 2.0 3.0 3.0 5.0 2.0 17.0 2.0 7.0 0.0 1.0 5.0 0.0 4.0 0.0 9.0 0.0 6.0 0.0 5.0 0.0 0.0 2.0 15.0
2012-05-14 1.0 5.0 6.0 0.0 0.0 2.0 3.0 1.0 5.0 1.0 5.0 2.0 1.0 1.0 15.0 0.0 5.0 0.0 1.0 3.0 0.0 3.0 1.0 9.0 1.0 4.0 0.0 3.0 2.0 2.0 4.0 12.0
2012-05-21 1.0 9.0 12.0 0.0 0.0 1.0 1.0 3.0 0.0 0.0 9.0 3.0 1.0 3.0 27.0 2.0 8.0 0.0 2.0 4.0 0.0 6.0 1.0 10.0 3.0 8.0 0.0 2.0 5.0 1.0 1.0 10.0
2012-05-28 4.0 15.0 13.0 1.0 0.0 0.0 5.0 1.0 4.0 1.0 7.0 5.0 2.0 8.0 29.0 2.0 9.0 2.0 1.0 5.0 1.0 5.0 0.0 6.0 1.0 12.0 0.0 12.0 3.0 2.0 3.0 14.0
2012-06-04 2.0 9.0 12.0 0.0 0.0 1.0 3.0 2.0 3.0 2.0 14.0 1.0 2.0 4.0 15.0 1.0 4.0 1.0 0.0 6.0 0.0 4.0 2.0 7.0 3.0 7.0 0.0 6.0 5.0 2.0 1.0 12.0
2012-06-11 3.0 12.0 14.0 1.0 0.0 0.0 4.0 1.0 0.0 2.0 10.0 2.0 0.0 4.0 26.0 2.0 10.0 3.0 2.0 3.0 0.0 1.0 0.0 6.0 1.0 1.0 0.0 4.0 5.0 1.0 4.0 9.0
2012-06-18 1.0 26.0 14.0 2.0 0.0 1.0 5.0 2.0 3.0 2.0 14.0 3.0 0.0 4.0 33.0 3.0 12.0 2.0 1.0 2.0 2.0 2.0 1.0 7.0 1.0 9.0 0.0 9.0 7.0 2.0 1.0 7.0
2012-06-25 1.0 15.0 9.0 2.0 0.0 2.0 2.0 1.0 3.0 0.0 10.0 2.0 3.0 5.0 25.0 1.0 11.0 0.0 1.0 0.0 2.0 2.0 3.0 2.0 6.0 1.0 6.0 0.0 7.0 3.0 3.0 1.0 16.0
2012-07-02 1.0 20.0 19.0 0.0 0.0 1.0 6.0 3.0 2.0 2.0 11.0 4.0 1.0 4.0 28.0 2.0 10.0 1.0 0.0 0.0 10.0 1.0 5.0 3.0 14.0 0.0 4.0 0.0 3.0 3.0 1.0 3.0 11.0
2012-07-09 3.0 10.0 13.0 0.0 0.0 0.0 3.0 2.0 3.0 2.0 8.0 4.0 2.0 4.0 15.0 3.0 10.0 0.0 0.0 0.0 4.0 1.0 2.0 5.0 11.0 1.0 6.0 0.0 8.0 3.0 1.0 3.0 13.0
2012-07-16 1.0 18.0 9.0 0.0 0.0 2.0 3.0 1.0 2.0 2.0 13.0 1.0 2.0 8.0 21.0 2.0 8.0 3.0 1.0 0.0 5.0 1.0 6.0 2.0 12.0 1.0 5.0 0.0 5.0 2.0 1.0 5.0 8.0
2012-07-23 1.0 17.0 8.0 0.0 0.0 0.0 4.0 0.0 0.0 1.0 11.0 4.0 2.0 7.0 26.0 0.0 9.0 2.0 1.0 1.0 4.0 0.0 2.0 5.0 8.0 3.0 9.0 0.0 7.0 2.0 1.0 3.0 13.0
2012-07-30 2.0 18.0 7.0 2.0 0.0 3.0 6.0 2.0 1.0 1.0 11.0 3.0 2.0 8.0 24.0 2.0 8.0 4.0 0.0 1.0 2.0 0.0 3.0 6.0 11.0 5.0 5.0 1.0 7.0 5.0 0.0 4.0 12.0
2012-08-06 2.0 17.0 16.0 0.0 0.0 2.0 4.0 0.0 4.0 2.0 17.0 2.0 3.0 7.0 30.0 2.0 16.0 1.0 0.0 3.0 5.0 3.0 7.0 2.0 14.0 4.0 4.0 0.0 5.0 3.0 2.0 7.0 16.0
2012-08-13 1.0 16.0 20.0 1.0 0.0 0.0 3.0 5.0 2.0 3.0 16.0 4.0 1.0 4.0 22.0 2.0 13.0 2.0 0.0 5.0 7.0 4.0 7.0 1.0 20.0 6.0 10.0 0.0 6.0 2.0 2.0 6.0 18.0
2012-08-20 2.0 21.0 20.0 1.0 0.0 1.0 6.0 1.0 1.0 4.0 28.0 5.0 2.0 10.0 39.0 6.0 11.0 1.0 1.0 2.0 4.0 3.0 2.0 3.0 12.0 5.0 8.0 0.0 6.0 4.0 2.0 4.0 29.0
2012-08-27 2.0 16.0 14.0 1.0 0.0 0.0 3.0 2.0 2.0 3.0 15.0 3.0 4.0 7.0 35.0 2.0 20.0 1.0 0.0 3.0 6.0 3.0 7.0 5.0 13.0 2.0 2.0 0.0 6.0 3.0 1.0 4.0 20.0
2012-09-03 1.0 24.0 14.0 3.0 0.0 0.0 4.0 3.0 3.0 1.0 12.0 2.0 5.0 7.0 29.0 5.0 17.0 0.0 1.0 4.0 5.0 2.0 6.0 6.0 14.0 4.0 9.0 0.0 6.0 3.0 2.0 5.0 15.0
2012-09-10 5.0 15.0 15.0 1.0 0.0 1.0 3.0 0.0 1.0 1.0 1.0 9.0 5.0 5.0 5.0 29.0 5.0 9.0 1.0 0.0 3.0 6.0 1.0 4.0 6.0 11.0 1.0 5.0 0.0 1.0 1.0 1.0 0.0 2.0 22.0
2012-09-17 4.0 16.0 14.0 3.0 0.0 1.0 5.0 4.0 0.0 2.0 0.0 20.0 7.0 8.0 7.0 37.0 1.0 26.0 1.0 0.0 3.0 3.0 3.0 2.0 6.0 16.0 3.0 8.0 0.0 11.0 1.0 4.0 0.0 10.0 26.0
2012-09-24 2.0 27.0 14.0 2.0 0.0 1.0 3.0 6.0 3.0 4.0 0.0 15.0 6.0 9.0 2.0 10.0 50.0 6.0 24.0 3.0 0.0 1.0 5.0 5.0 3.0 6.0 19.0 4.0 13.0 1.0 9.0 2.0 3.0 4.0 8.0 24.0
2012-10-01 1.0 11.0 9.0 1.0 0.0 1.0 5.0 1.0 3.0 3.0 0.0 10.0 5.0 5.0 1.0 11.0 23.0 2.0 12.0 1.0 0.0 2.0 5.0 4.0 5.0 2.0 11.0 2.0 9.0 0.0 7.0 0.0 1.0 3.0 6.0 14.0
2012-10-08 11.0 33.0 16.0 2.0 0.0 1.0 2.0 2.0 4.0 4.0 0.0 23.0 4.0 8.0 0.0 14.0 35.0 6.0 22.0 6.0 1.0 3.0 7.0 5.0 5.0 4.0 18.0 2.0 10.0 0.0 11.0 2.0 6.0 4.0 2.0 21.0
2012-10-15 4.0 22.0 14.0 1.0 0.0 0.0 5.0 0.0 6.0 2.0 0.0 13.0 5.0 6.0 0.0 8.0 28.0 5.0 17.0 2.0 1.0 0.0 5.0 5.0 4.0 3.0 21.0 0.0 7.0 0.0 10.0 2.0 3.0 5.0 5.0 17.0
2012-10-22 2.0 13.0 16.0 2.0 0.0 3.0 5.0 2.0 8.0 2.0 0.0 17.0 6.0 6.0 0.0 9.0 35.0 3.0 23.0 5.0 0.0 2.0 5.0 6.0 6.0 1.0 14.0 4.0 12.0 0.0 13.0 0.0 3.0 0.0 8.0 19.0
2012-10-29 3.0 10.0 14.0 2.0 0.0 0.0 6.0 0.0 2.0 2.0 0.0 5.0 7.0 5.0 0.0 5.0 33.0 3.0 11.0 3.0 2.0 3.0 10.0 4.0 5.0 2.0 12.0 3.0 6.0 0.0 9.0 4.0 2.0 1.0 4.0 12.0
2012-11-05 5.0 12.0 14.0 2.0 0.0 0.0 2.0 0.0 6.0 2.0 0.0 12.0 3.0 4.0 0.0 3.0 31.0 4.0 18.0 2.0 0.0 3.0 3.0 3.0 8.0 2.0 10.0 1.0 2.0 0.0 4.0 2.0 4.0 0.0 3.0 19.0
2012-11-12 2.0 9.0 13.0 3.0 0.0 0.0 5.0 2.0 4.0 1.0 0.0 5.0 1.0 2.0 0.0 7.0 32.0 4.0 9.0 1.0 0.0 2.0 0.0 2.0 7.0 0.0 14.0 0.0 7.0 0.0 8.0 0.0 4.0 0.0 4.0 15.0
2012-11-19 4.0 13.0 15.0 3.0 0.0 1.0 4.0 0.0 10.0 1.0 1.0 13.0 4.0 4.0 0.0 2.0 27.0 3.0 10.0 3.0 0.0 1.0 2.0 2.0 2.0 2.0 11.0 0.0 7.0 0.0 11.0 1.0 5.0 1.0 7.0 12.0
2012-11-26 0.0 7.0 10.0 0.0 0.0 2.0 2.0 1.0 6.0 1.0 0.0 12.0 0.0 1.0 0.0 6.0 21.0 2.0 7.0 2.0 2.0 1.0 2.0 3.0 7.0 1.0 6.0 0.0 5.0 0.0 6.0 1.0 1.0 1.0 2.0 9.0
2012-12-03 0.0 6.0 11.0 1.0 0.0 0.0 6.0 0.0 4.0 0.0 0.0 8.0 2.0 3.0 0.0 3.0 26.0 1.0 5.0 2.0 0.0 2.0 1.0 1.0 2.0 1.0 6.0 1.0 1.0 0.0 4.0 1.0 1.0 0.0 5.0 8.0
2012-12-10 0.0 11.0 8.0 0.0 0.0 1.0 3.0 0.0 3.0 0.0 0.0 11.0 4.0 2.0 0.0 3.0 25.0 2.0 8.0 2.0 0.0 1.0 4.0 2.0 3.0 0.0 7.0 0.0 3.0 0.0 6.0 1.0 2.0 0.0 3.0 12.0
2012-12-17 2.0 8.0 14.0 2.0 0.0 2.0 3.0 1.0 4.0 1.0 0.0 5.0 2.0 5.0 0.0 2.0 19.0 4.0 7.0 3.0 0.0 4.0 6.0 1.0 8.0 0.0 6.0 3.0 6.0 0.0 9.0 0.0 3.0 0.0 2.0 12.0
2012-12-24 0.0 6.0 13.0 1.0 0.0 0.0 1.0 1.0 2.0 0.0 0.0 7.0 1.0 4.0 0.0 2.0 25.0 1.0 5.0 3.0 0.0 2.0 3.0 1.0 3.0 1.0 9.0 0.0 4.0 0.0 6.0 3.0 0.0 1.0 7.0 11.0
2012-12-31 0.0 6.0 7.0 0.0 0.0 0.0 2.0 0.0 1.0 2.0 1.0 8.0 2.0 1.0 0.0 4.0 14.0 1.0 9.0 2.0 1.0 0.0 6.0 3.0 6.0 1.0 9.0 0.0 4.0 0.0 7.0 2.0 1.0 1.0 6.0 4.0
2013-01-07 0.0 7.0 18.0 1.0 0.0 2.0 3.0 0.0 2.0 2.0 0.0 11.0 1.0 4.0 0.0 8.0 38.0 2.0 10.0 4.0 2.0 3.0 4.0 2.0 7.0 3.0 9.0 0.0 7.0 0.0 5.0 2.0 1.0 2.0 6.0 15.0
2013-01-14 2.0 9.0 12.0 1.0 1.0 0.0 2.0 2.0 6.0 2.0 0.0 9.0 3.0 3.0 0.0 7.0 11.0 4.0 7.0 3.0 0.0 2.0 3.0 0.0 4.0 0.0 4.0 0.0 9.0 0.0 3.0 2.0 3.0 1.0 3.0 11.0
2013-01-21 2.0 7.0 8.0 1.0 1.0 0.0 2.0 1.0 5.0 0.0 1.0 6.0 0.0 1.0 0.0 3.0 18.0 2.0 5.0 2.0 2.0 2.0 3.0 1.0 3.0 1.0 11.0 0.0 5.0 0.0 5.0 0.0 2.0 1.0 2.0 13.0
2013-01-28 0.0 12.0 12.0 1.0 1.0 1.0 2.0 0.0 2.0 0.0 0.0 11.0 2.0 3.0 0.0 1.0 25.0 1.0 7.0 2.0 0.0 2.0 4.0 1.0 4.0 0.0 10.0 1.0 12.0 0.0 8.0 0.0 3.0 1.0 4.0 7.0
2013-02-04 2.0 11.0 8.0 1.0 1.0 0.0 5.0 0.0 6.0 0.0 1.0 8.0 5.0 3.0 0.0 4.0 29.0 4.0 10.0 3.0 0.0 1.0 2.0 2.0 4.0 1.0 7.0 0.0 9.0 0.0 5.0 1.0 1.0 2.0 3.0 11.0
2013-02-11 1.0 15.0 19.0 2.0 0.0 2.0 2.0 0.0 5.0 0.0 0.0 10.0 0.0 3.0 0.0 7.0 21.0 9.0 14.0 0.0 0.0 0.0 6.0 3.0 3.0 1.0 11.0 0.0 5.0 0.0 7.0 0.0 3.0 0.0 7.0 11.0
2013-02-18 3.0 15.0 11.0 2.0 2.0 1.0 8.0 0.0 6.0 0.0 0.0 6.0 1.0 4.0 0.0 9.0 28.0 2.0 5.0 1.0 1.0 2.0 3.0 2.0 5.0 3.0 11.0 1.0 6.0 0.0 5.0 0.0 2.0 1.0 2.0 13.0
2013-02-25 0.0 13.0 9.0 1.0 1.0 0.0 2.0 0.0 5.0 0.0 0.0 5.0 0.0 2.0 0.0 3.0 16.0 3.0 2.0 3.0 1.0 0.0 3.0 2.0 4.0 1.0 7.0 0.0 4.0 0.0 6.0 0.0 4.0 0.0 0.0 4.0
2013-03-04 3.0 16.0 21.0 2.0 1.0 2.0 4.0 1.0 7.0 3.0 0.0 19.0 5.0 5.0 0.0 9.0 52.0 3.0 17.0 2.0 0.0 1.0 5.0 5.0 7.0 1.0 17.0 2.0 7.0 0.0 13.0 1.0 3.0 0.0 4.0 19.0
2013-03-11 0.0 13.0 20.0 3.0 4.0 0.0 3.0 2.0 6.0 2.0 0.0 12.0 4.0 4.0 0.0 5.0 30.0 3.0 14.0 3.0 2.0 3.0 3.0 2.0 4.0 0.0 13.0 0.0 7.0 0.0 6.0 0.0 2.0 0.0 6.0 14.0
2013-03-18 1.0 18.0 15.0 3.0 1.0 2.0 9.0 0.0 8.0 4.0 1.0 14.0 5.0 7.0 0.0 9.0 28.0 1.0 15.0 3.0 2.0 3.0 8.0 2.0 8.0 2.0 8.0 1.0 13.0 0.0 13.0 0.0 2.0 0.0 4.0 17.0
2013-03-25 1.0 12.0 22.0 1.0 4.0 0.0 5.0 0.0 6.0 1.0 1.0 10.0 2.0 4.0 0.0 5.0 36.0 7.0 11.0 3.0 2.0 1.0 5.0 1.0 6.0 2.0 12.0 1.0 8.0 0.0 12.0 0.0 2.0 1.0 4.0 15.0
2013-04-01 5.0 24.0 25.0 1.0 3.0 1.0 6.0 0.0 9.0 2.0 0.0 31.0 7.0 3.0 0.0 13.0 40.0 5.0 13.0 4.0 1.0 5.0 5.0 3.0 5.0 5.0 11.0 3.0 13.0 0.0 14.0 0.0 2.0 0.0 8.0 22.0
2013-04-08 1.0 21.0 16.0 4.0 4.0 1.0 5.0 0.0 11.0 1.0 0.0 14.0 1.0 5.0 0.0 7.0 52.0 3.0 16.0 3.0 1.0 4.0 7.0 5.0 6.0 1.0 19.0 2.0 9.0 0.0 18.0 0.0 1.0 0.0 4.0 21.0
2013-04-15 1.0 21.0 17.0 3.0 3.0 2.0 7.0 0.0 9.0 1.0 2.0 23.0 4.0 6.0 0.0 7.0 47.0 8.0 21.0 4.0 1.0 2.0 9.0 2.0 2.0 2.0 13.0 2.0 11.0 0.0 9.0 0.0 4.0 0.0 4.0 26.0
2013-04-22 4.0 25.0 15.0 1.0 2.0 3.0 5.0 0.0 10.0 3.0 0.0 18.0 4.0 5.0 0.0 11.0 46.0 2.0 10.0 4.0 2.0 3.0 3.0 4.0 8.0 2.0 14.0 1.0 11.0 0.0 13.0 0.0 2.0 0.0 8.0 17.0
2013-04-29 3.0 22.0 27.0 5.0 1.0 1.0 5.0 1.0 6.0 1.0 0.0 22.0 8.0 8.0 0.0 6.0 51.0 8.0 17.0 3.0 1.0 3.0 7.0 6.0 7.0 1.0 19.0 1.0 10.0 0.0 16.0 0.0 2.0 0.0 7.0 31.0
2013-05-06 2.0 25.0 35.0 4.0 4.0 2.0 8.0 1.0 10.0 2.0 1.0 34.0 1.0 7.0 0.0 8.0 66.0 9.0 20.0 3.0 2.0 5.0 4.0 7.0 7.0 0.0 24.0 1.0 14.0 0.0 15.0 0.0 3.0 1.0 9.0 31.0
2013-05-13 2.0 24.0 21.0 4.0 1.0 0.0 7.0 1.0 4.0 1.0 0.0 21.0 4.0 4.0 0.0 5.0 43.0 7.0 16.0 6.0 1.0 0.0 3.0 7.0 8.0 2.0 12.0 0.0 8.0 0.0 13.0 1.0 1.0 0.0 9.0 20.0
2013-05-20 4.0 29.0 30.0 4.0 2.0 1.0 3.0 2.0 9.0 2.0 0.0 40.0 7.0 10.0 0.0 13.0 65.0 9.0 20.0 9.0 2.0 2.0 4.0 9.0 9.0 1.0 22.0 2.0 13.0 0.0 16.0 0.0 4.0 2.0 9.0 17.0
2013-05-27 6.0 35.0 35.0 3.0 3.0 1.0 4.0 2.0 10.0 2.0 1.0 34.0 11.0 9.0 1.0 13.0 71.0 6.0 13.0 6.0 3.0 3.0 9.0 8.0 5.0 3.0 24.0 1.0 15.0 0.0 23.0 0.0 3.0 1.0 9.0 20.0
2013-06-03 5.0 21.0 35.0 1.0 1.0 0.0 6.0 4.0 6.0 2.0 1.0 23.0 6.0 5.0 0.0 15.0 57.0 7.0 22.0 8.0 0.0 4.0 5.0 10.0 7.0 0.0 16.0 0.0 14.0 0.0 19.0 1.0 2.0 0.0 8.0 29.0
2013-06-10 6.0 15.0 32.0 1.0 1.0 3.0 5.0 2.0 5.0 1.0 0.0 23.0 7.0 9.0 0.0 10.0 47.0 6.0 19.0 2.0 2.0 5.0 3.0 7.0 6.0 1.0 13.0 1.0 4.0 0.0 13.0 0.0 3.0 1.0 6.0 28.0
2013-06-17 8.0 22.0 32.0 5.0 2.0 1.0 7.0 6.0 8.0 2.0 0.0 32.0 10.0 6.0 0.0 14.0 69.0 6.0 27.0 5.0 2.0 3.0 6.0 4.0 6.0 3.0 18.0 2.0 15.0 0.0 24.0 0.0 6.0 2.0 8.0 34.0
2013-06-24 5.0 25.0 28.0 4.0 0.0 0.0 6.0 2.0 6.0 2.0 2.0 36.0 10.0 10.0 0.0 10.0 62.0 6.0 20.0 7.0 4.0 3.0 12.0 12.0 4.0 1.0 20.0 1.0 16.0 0.0 28.0 0.0 3.0 0.0 12.0 36.0
2013-07-01 5.0 31.0 42.0 6.0 1.0 0.0 9.0 2.0 10.0 5.0 4.0 41.0 9.0 11.0 0.0 19.0 74.0 9.0 29.0 7.0 1.0 6.0 5.0 10.0 7.0 2.0 16.0 5.0 12.0 0.0 19.0 3.0 11.0 1.0 8.0 33.0
2013-07-08 4.0 43.0 50.0 2.0 2.0 2.0 10.0 1.0 11.0 7.0 2.0 48.0 13.0 9.0 0.0 12.0 58.0 7.0 22.0 9.0 3.0 6.0 11.0 9.0 11.0 5.0 14.0 0.0 12.0 0.0 15.0 1.0 8.0 2.0 12.0 33.0
2013-07-15 3.0 26.0 39.0 2.0 2.0 1.0 8.0 2.0 11.0 2.0 1.0 39.0 8.0 8.0 1.0 11.0 72.0 10.0 24.0 8.0 0.0 5.0 6.0 9.0 12.0 4.0 18.0 2.0 12.0 0.0 19.0 1.0 4.0 2.0 13.0 43.0
2013-07-22 8.0 32.0 33.0 6.0 4.0 2.0 11.0 3.0 6.0 3.0 3.0 40.0 15.0 8.0 1.0 18.0 63.0 14.0 26.0 9.0 1.0 8.0 12.0 9.0 13.0 4.0 15.0 3.0 14.0 0.0 22.0 1.0 4.0 1.0 12.0 38.0
2013-07-29 9.0 34.0 47.0 2.0 3.0 1.0 6.0 4.0 7.0 8.0 4.0 50.0 11.0 12.0 0.0 16.0 80.0 9.0 26.0 5.0 2.0 4.0 10.0 11.0 10.0 1.0 21.0 4.0 15.0 0.0 18.0 1.0 4.0 2.0 7.0 44.0
2013-08-05 6.0 39.0 52.0 4.0 4.0 0.0 10.0 6.0 7.0 9.0 2.0 55.0 17.0 12.0 1.0 15.0 88.0 16.0 29.0 8.0 2.0 8.0 10.0 12.0 9.0 0.0 20.0 4.0 12.0 1.0 19.0 0.0 8.0 3.0 10.0 41.0
2013-08-12 8.0 50.0 44.0 3.0 10.0 0.0 9.0 7.0 9.0 5.0 4.0 62.0 19.0 16.0 0.0 20.0 100.0 7.0 31.0 12.0 1.0 6.0 11.0 16.0 13.0 6.0 26.0 1.0 4.0 14.0 0.0 24.0 1.0 7.0 0.0 10.0 60.0
2013-08-19 8.0 46.0 64.0 4.0 9.0 2.0 13.0 5.0 9.0 7.0 4.0 51.0 14.0 25.0 1.0 17.0 93.0 13.0 28.0 13.0 1.0 7.0 14.0 20.0 17.0 6.0 35.0 0.0 3.0 16.0 0.0 27.0 1.0 7.0 1.0 18.0 63.0
2013-08-26 10.0 44.0 58.0 7.0 13.0 1.0 13.0 5.0 11.0 7.0 2.0 41.0 25.0 11.0 0.0 21.0 97.0 13.0 31.0 12.0 5.0 4.0 7.0 17.0 14.0 4.0 36.0 0.0 3.0 19.0 0.0 34.0 0.0 8.0 2.0 9.0 57.0
2013-09-02 9.0 38.0 43.0 4.0 10.0 2.0 15.0 6.0 6.0 8.0 2.0 41.0 15.0 17.0 1.0 27.0 90.0 9.0 26.0 10.0 5.0 1.0 11.0 20.0 10.0 6.0 27.0 0.0 2.0 10.0 0.0 25.0 0.0 8.0 1.0 14.0 37.0
2013-09-09 8.0 38.0 52.0 2.0 9.0 0.0 12.0 8.0 5.0 6.0 6.0 55.0 17.0 11.0 1.0 27.0 71.0 12.0 23.0 6.0 1.0 10.0 8.0 17.0 14.0 6.0 22.0 1.0 5.0 12.0 0.0 26.0 1.0 4.0 2.0 9.0 50.0
2013-09-16 7.0 42.0 67.0 5.0 13.0 2.0 14.0 3.0 8.0 8.0 3.0 56.0 15.0 15.0 2.0 17.0 85.0 13.0 30.0 10.0 4.0 8.0 11.0 17.0 11.0 6.0 28.0 0.0 4.0 12.0 0.0 21.0 1.0 10.0 2.0 8.0 64.0
2013-09-23 5.0 35.0 52.0 3.0 10.0 3.0 17.0 0.0 9.0 6.0 3.0 53.0 12.0 14.0 1.0 21.0 82.0 7.0 27.0 7.0 4.0 5.0 10.0 16.0 12.0 7.0 30.0 0.0 4.0 16.0 0.0 29.0 1.0 5.0 3.0 10.0 48.0
2013-09-30 10.0 46.0 50.0 4.0 7.0 2.0 21.0 3.0 8.0 8.0 4.0 64.0 16.0 15.0 0.0 27.0 102.0 22.0 30.0 13.0 6.0 7.0 13.0 12.0 16.0 8.0 40.0 2.0 6.0 23.0 0.0 31.0 0.0 10.0 3.0 14.0 69.0
2013-10-07 7.0 41.0 74.0 6.0 8.0 1.0 16.0 6.0 12.0 9.0 3.0 49.0 17.0 17.0 1.0 26.0 101.0 15.0 35.0 9.0 6.0 7.0 14.0 12.0 13.0 7.0 32.0 0.0 5.0 12.0 0.0 32.0 0.0 9.0 7.0 7.0 58.0
2013-10-14 5.0 38.0 57.0 4.0 7.0 1.0 13.0 5.0 6.0 4.0 2.0 50.0 14.0 12.0 0.0 15.0 94.0 12.0 34.0 15.0 6.0 8.0 11.0 16.0 15.0 1.0 21.0 1.0 6.0 12.0 0.0 31.0 0.0 5.0 3.0 12.0 59.0
2013-10-21 7.0 37.0 58.0 9.0 11.0 2.0 15.0 8.0 16.0 7.0 2.0 53.0 17.0 14.0 1.0 25.0 89.0 16.0 32.0 20.0 2.0 14.0 12.0 15.0 6.0 6.0 38.0 1.0 4.0 13.0 0.0 30.0 1.0 10.0 2.0 6.0 64.0
2013-10-28 6.0 44.0 57.0 6.0 15.0 1.0 13.0 6.0 8.0 7.0 1.0 41.0 17.0 15.0 0.0 10.0 81.0 9.0 29.0 13.0 4.0 5.0 8.0 8.0 13.0 6.0 25.0 1.0 4.0 17.0 0.0 30.0 1.0 4.0 1.0 12.0 51.0
2013-11-04 4.0 41.0 58.0 5.0 4.0 0.0 12.0 5.0 15.0 7.0 2.0 36.0 6.0 11.0 1.0 15.0 70.0 13.0 22.0 13.0 1.0 8.0 10.0 12.0 8.0 5.0 32.0 1.0 1.0 14.0 0.0 24.0 0.0 8.0 0.0 7.0 55.0
2013-11-11 2.0 31.0 37.0 4.0 6.0 0.0 12.0 2.0 17.0 3.0 1.0 42.0 11.0 15.0 0.0 19.0 78.0 7.0 20.0 6.0 0.0 7.0 11.0 11.0 11.0 4.0 33.0 0.0 2.0 16.0 0.0 28.0 1.0 8.0 2.0 4.0 50.0
2013-11-18 3.0 22.0 39.0 4.0 4.0 1.0 13.0 3.0 14.0 3.0 1.0 32.0 6.0 10.0 1.0 7.0 82.0 14.0 19.0 12.0 5.0 2.0 5.0 13.0 14.0 4.0 29.0 0.0 0.0 9.0 0.0 29.0 0.0 4.0 1.0 4.0 40.0
2013-11-25 4.0 43.0 55.0 7.0 2.0 1.0 17.0 1.0 13.0 4.0 2.0 33.0 11.0 23.0 0.0 25.0 90.0 14.0 24.0 13.0 0.0 10.0 8.0 16.0 12.0 4.0 33.0 0.0 5.0 19.0 0.0 39.0 0.0 3.0 1.0 3.0 58.0
2013-12-02 0.0 24.0 38.0 3.0 2.0 1.0 6.0 3.0 8.0 3.0 1.0 25.0 10.0 10.0 1.0 14.0 47.0 6.0 22.0 5.0 2.0 4.0 4.0 11.0 7.0 2.0 16.0 0.0 0.0 6.0 0.0 22.0 0.0 6.0 1.0 7.0 32.0
2013-12-09 2.0 18.0 31.0 0.0 1.0 1.0 13.0 1.0 9.0 4.0 0.0 21.0 10.0 10.0 0.0 4.0 42.0 7.0 9.0 6.0 0.0 4.0 7.0 5.0 10.0 2.0 22.0 0.0 4.0 4.0 0.0 17.0 0.0 1.0 1.0 3.0 28.0
2013-12-16 4.0 27.0 44.0 6.0 1.0 0.0 18.0 4.0 13.0 7.0 3.0 22.0 10.0 7.0 1.0 15.0 76.0 14.0 22.0 7.0 0.0 9.0 6.0 8.0 14.0 3.0 36.0 0.0 3.0 15.0 0.0 38.0 1.0 7.0 0.0 7.0 55.0
2013-12-23 0.0 17.0 31.0 2.0 3.0 0.0 8.0 2.0 7.0 2.0 0.0 21.0 5.0 7.0 0.0 7.0 48.0 5.0 16.0 8.0 1.0 5.0 7.0 9.0 6.0 3.0 22.0 0.0 1.0 10.0 0.0 14.0 0.0 6.0 1.0 3.0 26.0
2013-12-30 1.0 23.0 26.0 2.0 3.0 0.0 8.0 3.0 8.0 3.0 3.0 24.0 7.0 6.0 1.0 8.0 42.0 9.0 14.0 6.0 1.0 7.0 7.0 11.0 8.0 4.0 17.0 0.0 2.0 8.0 0.0 6.0 0.0 2.0 1.0 2.0 33.0
2014-01-06 0.0 36.0 50.0 4.0 5.0 1.0 12.0 3.0 12.0 4.0 2.0 41.0 11.0 13.0 2.0 16.0 83.0 15.0 30.0 9.0 2.0 20.0 9.0 21.0 11.0 3.0 19.0 0.0 1.0 13.0 0.0 36.0 0.0 6.0 2.0 4.0 51.0
2014-01-13 1.0 14.0 28.0 4.0 2.0 0.0 9.0 5.0 9.0 3.0 0.0 18.0 5.0 9.0 1.0 8.0 40.0 5.0 16.0 8.0 1.0 8.0 5.0 13.0 7.0 3.0 14.0 0.0 1.0 5.0 0.0 16.0 0.0 3.0 0.0 8.0 35.0
2014-01-20 3.0 22.0 46.0 4.0 4.0 0.0 20.0 6.0 18.0 3.0 3.0 34.0 13.0 9.0 2.0 16.0 67.0 19.0 13.0 14.0 3.0 11.0 5.0 15.0 15.0 4.0 19.0 1.0 3.0 16.0 0.0 30.0 0.0 2.0 1.0 7.0 51.0
2014-01-27 3.0 28.0 40.0 2.0 4.0 1.0 12.0 1.0 10.0 6.0 2.0 28.0 9.0 14.0 2.0 13.0 84.0 7.0 14.0 10.0 2.0 8.0 10.0 11.0 13.0 4.0 19.0 0.0 1.0 10.0 2.0 23.0 1.0 4.0 1.0 4.0 48.0
2014-02-03 3.0 22.0 38.0 5.0 3.0 2.0 9.0 5.0 11.0 5.0 2.0 33.0 12.0 13.0 1.0 16.0 53.0 8.0 17.0 7.0 1.0 5.0 5.0 19.0 7.0 4.0 18.0 0.0 1.0 9.0 1.0 18.0 0.0 2.0 4.0 3.0 47.0
2014-02-10 2.0 28.0 47.0 8.0 4.0 3.0 22.0 4.0 14.0 6.0 2.0 38.0 9.0 9.0 3.0 18.0 70.0 14.0 25.0 14.0 1.0 10.0 4.0 16.0 5.0 3.0 21.0 0.0 2.0 19.0 0.0 28.0 0.0 3.0 1.0 0.0 36.0
2014-02-17 2.0 21.0 67.0 5.0 6.0 3.0 17.0 6.0 13.0 1.0 3.0 33.0 14.0 10.0 1.0 7.0 70.0 11.0 25.0 14.0 4.0 9.0 7.0 17.0 7.0 4.0 26.0 0.0 2.0 16.0 1.0 32.0 0.0 3.0 3.0 3.0 56.0
2014-02-24 1.0 33.0 65.0 5.0 3.0 2.0 22.0 4.0 14.0 4.0 4.0 39.0 15.0 14.0 1.0 22.0 94.0 16.0 23.0 13.0 8.0 10.0 9.0 13.0 13.0 3.0 16.0 0.0 1.0 16.0 4.0 32.0 0.0 3.0 2.0 5.0 51.0
2014-03-03 2.0 31.0 48.0 11.0 5.0 6.0 26.0 5.0 14.0 5.0 4.0 48.0 18.0 13.0 3.0 19.0 103.0 14.0 27.0 20.0 5.0 12.0 10.0 18.0 10.0 5.0 27.0 0.0 2.0 13.0 1.0 37.0 0.0 3.0 0.0 2.0 56.0
2014-03-10 4.0 21.0 36.0 4.0 2.0 1.0 17.0 4.0 11.0 5.0 1.0 34.0 9.0 8.0 1.0 13.0 78.0 7.0 26.0 11.0 3.0 10.0 5.0 13.0 13.0 3.0 21.0 0.0 2.0 9.0 3.0 16.0 1.0 4.0 1.0 6.0 45.0
2014-03-17 7.0 26.0 43.0 4.0 7.0 1.0 21.0 5.0 13.0 4.0 3.0 35.0 11.0 15.0 1.0 21.0 91.0 21.0 27.0 15.0 4.0 11.0 7.0 19.0 12.0 5.0 21.0 1.0 2.0 17.0 5.0 29.0 0.0 8.0 0.0 5.0 63.0
2014-03-24 9.0 49.0 73.0 12.0 11.0 4.0 29.0 0.0 15.0 8.0 4.0 57.0 27.0 23.0 1.0 27.0 109.0 20.0 39.0 19.0 6.0 17.0 12.0 23.0 21.0 3.0 47.0 0.0 6.0 20.0 6.0 43.0 0.0 3.0 2.0 11.0 82.0
2014-03-31 5.0 36.0 74.0 3.0 9.0 2.0 20.0 4.0 10.0 8.0 5.0 45.0 18.0 20.0 2.0 18.0 91.0 23.0 36.0 6.0 4.0 14.0 11.0 23.0 11.0 4.0 27.0 0.0 3.0 19.0 4.0 44.0 0.0 4.0 2.0 14.0 67.0
2014-04-07 6.0 38.0 57.0 4.0 7.0 4.0 25.0 4.0 19.0 7.0 5.0 42.0 18.0 21.0 2.0 19.0 86.0 16.0 30.0 14.0 6.0 16.0 13.0 32.0 8.0 6.0 29.0 0.0 6.0 17.0 3.0 33.0 0.0 3.0 0.0 12.0 53.0
2014-04-14 5.0 29.0 67.0 6.0 4.0 2.0 19.0 3.0 10.0 7.0 4.0 41.0 16.0 17.0 1.0 14.0 107.0 23.0 30.0 15.0 4.0 11.0 13.0 21.0 11.0 8.0 33.0 0.0 5.0 20.0 3.0 37.0 0.0 6.0 2.0 13.0 59.0
2014-04-21 8.0 38.0 72.0 2.0 6.0 5.0 25.0 6.0 14.0 9.0 6.0 58.0 18.0 21.0 4.0 25.0 94.0 15.0 23.0 19.0 5.0 16.0 13.0 22.0 13.0 8.0 43.0 0.0 4.0 25.0 2.0 45.0 0.0 9.0 4.0 19.0 71.0
2014-04-28 7.0 53.0 71.0 6.0 8.0 3.0 20.0 4.0 19.0 5.0 2.0 52.0 21.0 14.0 4.0 23.0 109.0 24.0 27.0 16.0 3.0 15.0 14.0 20.0 16.0 4.0 23.0 0.0 4.0 27.0 3.0 27.0 0.0 12.0 1.0 12.0 75.0
2014-05-05 14.0 51.0 81.0 3.0 9.0 1.0 23.0 2.0 18.0 6.0 3.0 50.0 21.0 16.0 2.0 25.0 88.0 28.0 34.0 21.0 3.0 17.0 15.0 20.0 18.0 6.0 40.0 0.0 7.0 27.0 2.0 48.0 0.0 7.0 3.0 19.0 80.0
2014-05-12 5.0 47.0 74.0 4.0 6.0 3.0 36.0 6.0 24.0 8.0 4.0 41.0 15.0 21.0 4.0 28.0 106.0 19.0 45.0 20.0 4.0 23.0 13.0 21.0 14.0 6.0 34.0 0.0 8.0 23.0 2.0 38.0 0.0 11.0 0.0 16.0 86.0
2014-05-19 9.0 45.0 70.0 3.0 5.0 5.0 31.0 5.0 20.0 9.0 8.0 55.0 19.0 26.0 4.0 30.0 111.0 22.0 41.0 10.0 3.0 10.0 17.0 19.0 9.0 7.0 43.0 1.0 2.0 24.0 1.0 36.0 0.0 11.0 2.0 14.0 89.0
2014-05-26 16.0 66.0 89.0 5.0 7.0 7.0 33.0 6.0 24.0 8.0 6.0 64.0 31.0 22.0 1.0 55.0 128.0 39.0 48.0 17.0 11.0 25.0 19.0 29.0 31.0 9.0 50.0 2.0 6.0 37.0 1.0 53.0 3.0 16.0 4.0 18.0 96.0
2014-06-02 17.0 55.0 92.0 3.0 14.0 3.0 28.0 6.0 20.0 16.0 3.0 64.0 29.0 16.0 1.0 31.0 121.0 25.0 56.0 17.0 4.0 30.0 26.0 28.0 17.0 10.0 39.0 0.0 7.0 15.0 2.0 29.0 0.0 12.0 1.0 18.0 99.0
2014-06-09 10.0 50.0 93.0 5.0 14.0 4.0 30.0 7.0 22.0 11.0 3.0 70.0 24.0 16.0 0.0 30.0 97.0 22.0 39.0 13.0 3.0 25.0 16.0 32.0 17.0 11.0 39.0 0.0 6.0 20.0 3.0 36.0 0.0 11.0 2.0 22.0 93.0
2014-06-16 8.0 63.0 83.0 8.0 9.0 4.0 30.0 9.0 15.0 14.0 4.0 57.0 19.0 16.0 1.0 30.0 122.0 16.0 43.0 16.0 4.0 23.0 17.0 34.0 16.0 12.0 46.0 0.0 9.0 23.0 3.0 51.0 0.0 14.0 3.0 19.0 78.0
2014-06-23 17.0 63.0 91.0 9.0 13.0 5.0 41.0 7.0 17.0 11.0 4.0 69.0 19.0 13.0 2.0 36.0 131.0 30.0 43.0 24.0 5.0 30.0 21.0 37.0 17.0 9.0 46.0 1.0 7.0 24.0 1.0 51.0 0.0 15.0 0.0 21.0 104.0
2014-06-30 15.0 71.0 102.0 8.0 12.0 7.0 30.0 8.0 26.0 16.0 7.0 74.0 24.0 19.0 1.0 28.0 134.0 29.0 42.0 21.0 7.0 25.0 19.0 28.0 24.0 13.0 38.0 1.0 12.0 22.0 4.0 71.0 1.0 12.0 2.0 19.0 80.0
2014-07-07 9.0 69.0 100.0 4.0 13.0 8.0 36.0 3.0 10.0 14.0 4.0 64.0 22.0 11.0 3.0 31.0 126.0 24.0 47.0 17.0 8.0 26.0 22.0 35.0 13.0 14.0 45.0 2.0 6.0 33.0 3.0 49.0 2.0 12.0 3.0 23.0 97.0
2014-07-14 15.0 72.0 90.0 7.0 7.0 6.0 30.0 10.0 19.0 11.0 7.0 76.0 29.0 21.0 2.0 37.0 151.0 26.0 43.0 12.0 11.0 21.0 20.0 35.0 12.0 13.0 47.0 0.0 5.0 28.0 1.0 64.0 3.0 17.0 3.0 13.0 103.0
2014-07-21 9.0 62.0 91.0 3.0 9.0 3.0 32.0 4.0 16.0 14.0 2.0 76.0 24.0 20.0 3.0 38.0 120.0 27.0 51.0 20.0 7.0 18.0 21.0 32.0 16.0 10.0 45.0 1.0 2.0 30.0 2.0 44.0 4.0 19.0 1.0 16.0 91.0
2014-07-28 17.0 95.0 116.0 6.0 11.0 7.0 46.0 15.0 27.0 15.0 10.0 107.0 35.0 25.0 3.0 41.0 179.0 37.0 53.0 22.0 12.0 30.0 34.0 40.0 15.0 13.0 63.0 1.0 13.0 35.0 1.0 69.0 4.0 21.0 4.0 29.0 112.0
2014-08-04 18.0 82.0 133.0 7.0 18.0 9.0 45.0 4.0 23.0 10.0 5.0 114.0 40.0 38.0 6.0 56.0 178.0 42.0 68.0 33.0 16.0 27.0 30.0 55.0 17.0 14.0 66.0 1.0 9.0 37.0 1.0 79.0 1.0 19.0 6.0 17.0 150.0
2014-08-11 16.0 93.0 115.0 9.0 15.0 6.0 38.0 14.0 19.0 16.0 4.0 109.0 40.0 34.0 3.0 52.0 193.0 39.0 74.0 34.0 16.0 32.0 44.0 47.0 32.0 17.0 54.0 1.0 10.0 44.0 3.0 77.0 2.0 17.0 2.0 28.0 139.0
2014-08-18 28.0 109.0 140.0 13.0 15.0 8.0 62.0 13.0 24.0 17.0 11.0 139.0 53.0 40.0 10.0 65.0 201.0 49.0 80.0 42.0 13.0 33.0 46.0 56.0 30.0 18.0 76.0 1.0 14.0 43.0 4.0 88.0 2.0 25.0 5.0 30.0 151.0
2014-08-25 27.0 88.0 131.0 13.0 18.0 4.0 57.0 17.0 16.0 17.0 9.0 104.0 44.0 35.0 8.0 49.0 186.0 43.0 58.0 32.0 24.0 40.0 39.0 53.0 36.0 14.0 65.0 1.0 10.0 35.0 5.0 86.0 3.0 15.0 8.0 21.0 149.0
2014-09-01 42.0 94.0 157.0 10.0 16.0 9.0 41.0 13.0 29.0 17.0 9.0 125.0 44.0 40.0 7.0 54.0 219.0 45.0 68.0 33.0 9.0 30.0 41.0 61.0 31.0 13.0 88.0 1.0 14.0 31.0 9.0 89.0 1.0 19.0 5.0 30.0 164.0
2014-09-08 23.0 81.0 99.0 9.0 16.0 6.0 40.0 12.0 15.0 21.0 6.0 90.0 33.0 22.0 5.0 45.0 177.0 42.0 53.0 26.0 12.0 33.0 30.0 42.0 17.0 16.0 53.0 1.0 11.0 30.0 3.0 56.0 2.0 20.0 6.0 22.0 107.0
2014-09-15 26.0 93.0 133.0 16.0 17.0 6.0 35.0 14.0 19.0 24.0 11.0 123.0 47.0 41.0 2.0 52.0 207.0 47.0 60.0 32.0 16.0 27.0 34.0 49.0 29.0 14.0 80.0 4.0 10.0 37.0 3.0 92.0 3.0 22.0 6.0 22.0 131.0
2014-09-22 27.0 95.0 141.0 13.0 19.0 7.0 58.0 15.0 27.0 17.0 10.0 118.0 59.0 36.0 2.0 55.0 196.0 53.0 66.0 48.0 11.0 26.0 37.0 51.0 32.0 14.0 83.0 1.0 11.0 42.0 0.0 122.0 1.0 21.0 11.0 27.0 150.0
2014-09-29 29.0 88.0 140.0 13.0 21.0 2.0 47.0 12.0 22.0 23.0 11.0 124.0 39.0 33.0 3.0 60.0 205.0 39.0 71.0 38.0 16.0 45.0 29.0 46.0 25.0 13.0 73.0 0.0 14.0 34.0 4.0 95.0 1.0 19.0 6.0 16.0 129.0
2014-10-06 26.0 98.0 157.0 13.0 10.0 3.0 64.0 15.0 33.0 24.0 11.0 126.0 62.0 45.0 5.0 60.0 231.0 51.0 78.0 44.0 17.0 42.0 45.0 63.0 26.0 11.0 76.0 3.0 14.0 44.0 4.0 109.0 4.0 28.0 9.0 22.0 161.0
2014-10-13 27.0 85.0 129.0 9.0 12.0 7.0 37.0 14.0 22.0 24.0 8.0 80.0 36.0 32.0 5.0 44.0 182.0 45.0 64.0 32.0 14.0 37.0 32.0 43.0 21.0 17.0 73.0 2.0 11.0 39.0 6.0 73.0 2.0 21.0 7.0 20.0 114.0
2014-10-20 33.0 109.0 156.0 19.0 16.0 6.0 57.0 21.0 23.0 23.0 14.0 127.0 62.0 32.0 7.0 53.0 235.0 72.0 87.0 49.0 15.0 35.0 39.0 65.0 41.0 17.0 91.0 2.0 15.0 40.0 5.0 119.0 3.0 26.0 9.0 25.0 172.0
2014-10-27 25.0 85.0 111.0 12.0 14.0 2.0 36.0 15.0 16.0 16.0 10.0 79.0 42.0 33.0 5.0 43.0 173.0 43.0 58.0 43.0 14.0 26.0 35.0 43.0 21.0 11.0 77.0 1.0 11.0 28.0 8.0 73.0 3.0 17.0 5.0 19.0 124.0
2014-11-03 14.0 48.0 119.0 10.0 6.0 4.0 51.0 8.0 27.0 23.0 6.0 73.0 37.0 26.0 3.0 37.0 144.0 46.0 52.0 35.0 11.0 21.0 26.0 38.0 22.0 8.0 57.0 0.0 3.0 22.0 7.0 73.0 0.0 9.0 4.0 13.0 99.0
2014-11-10 13.0 54.0 82.0 7.0 10.0 5.0 34.0 11.0 27.0 13.0 6.0 57.0 40.0 23.0 3.0 33.0 138.0 32.0 43.0 22.0 8.0 18.0 18.0 35.0 21.0 4.0 46.0 1.0 10.0 22.0 3.0 51.0 0.0 9.0 2.0 6.0 108.0
2014-11-17 17.0 53.0 91.0 10.0 6.0 2.0 35.0 9.0 19.0 10.0 6.0 85.0 33.0 17.0 1.0 30.0 138.0 41.0 44.0 21.0 3.0 14.0 21.0 34.0 21.0 5.0 51.0 1.0 4.0 19.0 3.0 65.0 1.0 5.0 1.0 8.0 98.0
2014-11-24 13.0 35.0 74.0 7.0 10.0 1.0 41.0 8.0 19.0 8.0 4.0 68.0 35.0 24.0 4.0 39.0 125.0 31.0 36.0 20.0 6.0 18.0 13.0 29.0 26.0 8.0 55.0 1.0 4.0 21.0 1.0 61.0 1.0 8.0 1.0 10.0 83.0
2014-12-01 10.0 53.0 70.0 1.0 5.0 1.0 19.0 3.0 19.0 13.0 6.0 58.0 31.0 22.0 3.0 26.0 118.0 29.0 29.0 12.0 5.0 24.0 22.0 42.0 22.0 12.0 31.0 0.0 6.0 21.0 2.0 39.0 1.0 13.0 2.0 8.0 82.0
2014-12-08 12.0 48.0 80.0 8.0 4.0 1.0 31.0 7.0 18.0 15.0 5.0 63.0 32.0 18.0 8.0 33.0 129.0 45.0 45.0 23.0 7.0 19.0 19.0 27.0 29.0 7.0 45.0 1.0 4.0 24.0 1.0 63.0 0.0 5.0 1.0 10.0 98.0
2014-12-15 18.0 47.0 89.0 6.0 8.0 1.0 48.0 6.0 29.0 8.0 1.0 71.0 28.0 17.0 3.0 29.0 152.0 52.0 34.0 24.0 7.0 21.0 18.0 33.0 22.0 10.0 50.0 2.0 7.0 24.0 2.0 88.0 0.0 6.0 3.0 10.0 93.0
2014-12-22 15.0 47.0 94.0 12.0 12.0 1.0 42.0 6.0 28.0 9.0 10.0 52.0 32.0 12.0 2.0 24.0 150.0 45.0 41.0 13.0 7.0 22.0 21.0 32.0 13.0 8.0 36.0 1.0 9.0 23.0 6.0 85.0 0.0 6.0 2.0 13.0 91.0
2014-12-29 12.0 40.0 63.0 4.0 14.0 2.0 27.0 9.0 15.0 8.0 2.0 55.0 18.0 17.0 4.0 29.0 122.0 25.0 33.0 20.0 7.0 14.0 20.0 28.0 9.0 7.0 38.0 0.0 5.0 13.0 2.0 36.0 0.0 7.0 1.0 15.0 69.0
2015-01-05 13.0 64.0 105.0 7.0 10.0 3.0 49.0 9.0 23.0 16.0 8.0 83.0 32.0 26.0 4.0 48.0 176.0 46.0 58.0 29.0 12.0 24.0 29.0 36.0 28.0 10.0 52.0 0.0 8.0 32.0 4.0 65.0 0.0 9.0 3.0 19.0 126.0
2015-01-12 16.0 36.0 70.0 7.0 11.0 5.0 30.0 9.0 15.0 14.0 5.0 49.0 23.0 20.0 3.0 10.0 119.0 22.0 25.0 17.0 10.0 11.0 11.0 37.0 8.0 8.0 32.0 0.0 5.0 13.0 3.0 41.0 0.0 11.0 2.0 7.0 64.0
2015-01-19 18.0 72.0 122.0 8.0 8.0 4.0 69.0 14.0 27.0 22.0 7.0 105.0 36.0 22.0 0.0 60.0 232.0 75.0 59.0 43.0 12.0 28.0 26.0 36.0 34.0 11.0 63.0 0.0 9.0 37.0 3.0 98.0 2.0 19.0 4.0 13.0 140.0
2015-01-26 13.0 51.0 95.0 11.0 11.0 0.0 41.0 6.0 20.0 14.0 2.0 68.0 28.0 17.0 6.0 35.0 174.0 38.0 43.0 34.0 10.0 12.0 21.0 29.0 14.0 8.0 43.0 1.0 8.0 30.0 5.0 79.0 0.0 10.0 4.0 13.0 104.0
2015-02-02 15.0 46.0 90.0 6.0 5.0 2.0 47.0 9.0 10.0 7.0 4.0 54.0 20.0 23.0 5.0 30.0 150.0 31.0 24.0 15.0 12.0 15.0 19.0 31.0 10.0 7.0 38.0 1.0 4.0 23.0 4.0 53.0 1.0 11.0 1.0 8.0 86.0
2015-02-09 17.0 54.0 110.0 11.0 4.0 1.0 30.0 5.0 21.0 15.0 2.0 62.0 28.0 11.0 1.0 27.0 153.0 36.0 39.0 31.0 11.0 12.0 16.0 35.0 21.0 7.0 44.0 0.0 3.0 25.0 3.0 83.0 2.0 8.0 2.0 10.0 91.0
2015-02-16 17.0 76.0 143.0 16.0 7.0 4.0 55.0 13.0 25.0 15.0 6.0 79.0 42.0 17.0 4.0 44.0 177.0 58.0 46.0 35.0 14.0 21.0 24.0 47.0 14.0 6.0 79.0 1.0 10.0 34.0 9.0 94.0 3.0 13.0 6.0 11.0 116.0
2015-02-23 13.0 52.0 110.0 11.0 10.0 3.0 44.0 10.0 21.0 10.0 4.0 66.0 27.0 17.0 2.0 35.0 159.0 39.0 41.0 33.0 12.0 23.0 15.0 47.0 23.0 12.0 51.0 2.0 4.0 21.0 8.0 61.0 1.0 9.0 1.0 13.0 111.0
2015-03-02 14.0 57.0 104.0 10.0 10.0 5.0 43.0 11.0 19.0 11.0 5.0 57.0 37.0 20.0 6.0 42.0 150.0 41.0 41.0 27.0 15.0 13.0 26.0 41.0 11.0 10.0 48.0 0.0 4.0 24.0 3.0 75.0 0.0 7.0 2.0 13.0 108.0
2015-03-09 13.0 69.0 114.0 19.0 12.0 5.0 65.0 14.0 25.0 19.0 5.0 80.0 41.0 30.0 4.0 51.0 213.0 48.0 46.0 43.0 22.0 23.0 21.0 52.0 27.0 9.0 62.0 0.0 8.0 42.0 5.0 119.0 0.0 13.0 3.0 15.0 159.0
2015-03-16 12.0 51.0 81.0 11.0 12.0 1.0 48.0 11.0 17.0 12.0 6.0 72.0 35.0 23.0 3.0 31.0 178.0 46.0 48.0 37.0 12.0 18.0 22.0 48.0 15.0 9.0 45.0 0.0 6.0 29.0 5.0 69.0 0.0 12.0 4.0 10.0 125.0
2015-03-23 16.0 76.0 106.0 7.0 9.0 5.0 56.0 11.0 24.0 18.0 6.0 87.0 47.0 20.0 5.0 41.0 203.0 47.0 61.0 37.0 18.0 19.0 24.0 54.0 18.0 11.0 73.0 2.0 8.0 27.0 6.0 79.0 1.0 8.0 2.0 19.0 132.0
2015-03-30 15.0 88.0 124.0 9.0 12.0 3.0 73.0 16.0 29.0 12.0 3.0 81.0 43.0 25.0 5.0 50.0 202.0 64.0 70.0 40.0 26.0 20.0 26.0 74.0 19.0 6.0 64.0 1.0 12.0 35.0 5.0 109.0 1.0 15.0 5.0 23.0 147.0
2015-04-06 12.0 78.0 113.0 8.0 10.0 5.0 68.0 18.0 25.0 17.0 4.0 95.0 41.0 17.0 6.0 45.0 218.0 49.0 74.0 37.0 25.0 17.0 19.0 46.0 16.0 12.0 57.0 1.0 5.0 29.0 2.0 93.0 0.0 18.0 4.0 12.0 152.0
2015-04-13 10.0 83.0 101.0 14.0 7.0 4.0 51.0 15.0 22.0 13.0 4.0 86.0 35.0 24.0 8.0 38.0 226.0 41.0 61.0 34.0 17.0 18.0 21.0 57.0 16.0 13.0 60.0 1.0 5.0 27.0 3.0 79.0 0.0 7.0 4.0 20.0 144.0
2015-04-20 21.0 75.0 132.0 11.0 11.0 2.0 57.0 14.0 26.0 16.0 3.0 74.0 47.0 30.0 7.0 42.0 202.0 62.0 58.0 37.0 18.0 22.0 24.0 50.0 17.0 11.0 60.0 2.0 8.0 32.0 8.0 96.0 0.0 16.0 3.0 24.0 131.0
2015-04-27 11.0 89.0 118.0 12.0 9.0 3.0 70.0 10.0 19.0 13.0 11.0 99.0 48.0 33.0 5.0 52.0 223.0 63.0 74.0 40.0 23.0 29.0 25.0 61.0 25.0 13.0 68.0 0.0 10.0 37.0 3.0 120.0 0.0 15.0 5.0 19.0 142.0
2015-05-04 8.0 28.0 67.0 4.0 5.0 32.0 8.0 11.0 10.0 1.0 26.0 24.0 14.0 2.0 17.0 90.0 23.0 27.0 9.0 13.0 10.0 15.0 27.0 11.0 4.0 29.0 2.0 1.0 22.0 1.0 38.0 1.0 12.0 2.0 8.0 68.0
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.484089,37.78791],[-122.484346,37.787654],[-122.487434,37.787491],[-122.487123,37.78376],[-122.492526,37.783501],[-122.492407,37.781663],[-122.505317,37.780998],[-122.505144,37.779774],[-122.5062,37.779868],[-122.507818,37.779952],[-122.509504,37.779923],[-122.509342,37.779145],[-122.509095,37.77519],[-122.513169,37.775046],[-122.51317,37.775109],[-122.51315,37.775202],[-122.513168,37.775295],[-122.513139,37.775383],[-122.513155,37.775413],[-122.513118,37.775495],[-122.513116,37.775992],[-122.51322,37.776643],[-122.513262,37.776766],[-122.513273,37.776853],[-122.513301,37.776996],[-122.513337,37.777197],[-122.513351,37.77733],[-122.513419,37.777443],[-122.513485,37.777542],[-122.513512,37.777603],[-122.513606,37.777634],[-122.51379,37.777711],[-122.51397,37.777743],[-122.51413,37.777902],[-122.514272,37.778125],[-122.514414,37.778271],[-122.514604,37.778476],[-122.51463,37.778506],[-122.514662,37.778644],[-122.514636,37.778748],[-122.514565,37.778846],[-122.514579,37.778978],[-122.514499,37.779154],[-122.514494,37.779243],[-122.514568,37.779418],[-122.514671,37.779446],[-122.514854,37.779525],[-122.514948,37.779719],[-122.514897,37.779848],[-122.51475,37.779872],[-122.514641,37.779821],[-122.514565,37.779897],[-122.514535,37.780082],[-122.514512,37.780269],[-122.514475,37.780426],[-122.514467,37.780603],[-122.514648,37.780861],[-122.514724,37.781134],[-122.514586,37.781301],[-122.514468,37.781303],[-122.514294,37.781279],[-122.514303,37.781352],[-122.514285,37.781429],[-122.514242,37.781465],[-122.513868,37.781428],[-122.513759,37.781477],[-122.513883,37.781615],[-122.513812,37.781738],[-122.513697,37.781892],[-122.513671,37.781982],[-122.513523,37.782081],[-122.513467,37.782192],[-122.513546,37.782286],[-122.51359,37.782397],[-122.513504,37.782433],[-122.51346,37.782521],[-122.51349,37.782577],[-122.513499,37.782634],[-122.513499,37.782701],[-122.513444,37.782781],[-122.513313,37.782817],[-122.513178,37.782749],[-122.513099,37.782774],[-122.513082,37.782896],[-122.512986,37.783036],[-122.51302,37.783139],[-122.513026,37.7832],[-122.512879,37.783237],[-122.512854,37.783353],[-122.512806,37.783475],[-122.512706,37.783554],[-122.512519,37.78362],[-122.512466,37.783743],[-122.512646,37.783874],[-122.512714,37.783931],[-122.512652,37.784021],[-122.512681,37.78412],[-122.512566,37.784153],[-122.512295,37.783942],[-122.512112,37.783793],[-122.511916,37.783949],[-122.511936,37.784103],[-122.512002,37.784162],[-122.512011,37.784237],[-122.511977,37.784291],[-122.511911,37.784326],[-122.511796,37.784312],[-122.511643,37.784335],[-122.511486,37.784289],[-122.511302,37.784284],[-122.511334,37.784425],[-122.511306,37.784554],[-122.511229,37.784589],[-122.511025,37.784485],[-122.510971,37.784497],[-122.510839,37.784585],[-122.510747,37.784672],[-122.510492,37.784697],[-122.510371,37.784699],[-122.510237,37.784734],[-122.510169,37.784703],[-122.509994,37.784727],[-122.509808,37.784816],[-122.509716,37.784903],[-122.509665,37.785],[-122.509575,37.785129],[-122.509483,37.785227],[-122.509351,37.785315],[-122.509271,37.785338],[-122.509233,37.785445],[-122.509118,37.785591],[-122.508797,37.785745],[-122.508662,37.785745],[-122.508566,37.785795],[-122.508486,37.785855],[-122.508452,37.785939],[-122.508259,37.786074],[-122.508243,37.786095],[-122.508218,37.786119],[-122.508134,37.786157],[-122.508103,37.786145],[-122.508035,37.786136],[-122.507964,37.786167],[-122.507919,37.786239],[-122.507886,37.786273],[-122.507811,37.786355],[-122.507791,37.786386],[-122.507787,37.786417],[-122.507753,37.786414],[-122.507724,37.786435],[-122.507687,37.786503],[-122.507715,37.786587],[-122.507634,37.786727],[-122.507531,37.786843],[-122.507417,37.786882],[-122.507338,37.786944],[-122.507251,37.78704],[-122.507198,37.787149],[-122.507108,37.787272],[-122.507053,37.787277],[-122.506972,37.787454],[-122.506897,37.787495],[-122.506739,37.787495],[-122.506717,37.787444],[-122.506653,37.787462],[-122.506526,37.787478],[-122.506493,37.787519],[-122.506427,37.787595],[-122.506344,37.78765],[-122.506286,37.787712],[-122.506271,37.787747],[-122.506259,37.787774],[-122.506241,37.787794],[-122.50622,37.787804],[-122.506178,37.787842],[-122.506132,37.787856],[-122.506163,37.78791],[-122.506122,37.787975],[-122.50612,37.788052],[-122.506089,37.788171],[-122.506052,37.788192],[-122.505853,37.788229],[-122.505747,37.788248],[-122.505658,37.788259],[-122.505606,37.788243],[-122.505521,37.788248],[-122.505423,37.788236],[-122.50533,37.788251],[-122.505202,37.78826],[-122.505107,37.788215],[-122.50502,37.788152],[-122.504981,37.788148],[-122.504941,37.788143],[-122.504883,37.788136],[-122.504857,37.788135],[-122.504831,37.788136],[-122.504801,37.788139],[-122.504776,37.788134],[-122.504758,37.788122],[-122.504743,37.788106],[-122.504723,37.788092],[-122.504703,37.788083],[-122.504682,37.788078],[-122.504651,37.788077],[-122.504624,37.788078],[-122.504596,37.788077],[-122.504569,37.788072],[-122.504546,37.788066],[-122.504521,37.788062],[-122.504498,37.788059],[-122.504471,37.78806],[-122.50415,37.788096],[-122.504066,37.788121],[-122.504049,37.788108],[-122.503998,37.788107],[-122.503846,37.788092],[-122.503714,37.788063],[-122.503613,37.788039],[-122.503526,37.78804],[-122.503485,37.78805],[-122.503463,37.78802],[-122.503374,37.788018],[-122.503335,37.788022],[-122.503264,37.788043],[-122.503239,37.788064],[-122.503209,37.788085],[-122.503179,37.788079],[-122.503145,37.788076],[-122.503078,37.788097],[-122.503048,37.788115],[-122.503007,37.788146],[-122.502962,37.788143],[-122.502926,37.788157],[-122.502903,37.788146],[-122.502865,37.788096],[-122.502836,37.78805],[-122.502789,37.788036],[-122.502705,37.78804],[-122.50259,37.788066],[-122.502516,37.788086],[-122.502426,37.788098],[-122.502376,37.788127],[-122.502316,37.788112],[-122.502255,37.788131],[-122.50217,37.788104],[-122.502106,37.788111],[-122.502074,37.788154],[-122.502071,37.788182],[-122.50199,37.788183],[-122.501952,37.788181],[-122.501913,37.788141],[-122.501912,37.788117],[-122.501878,37.788114],[-122.501878,37.788138],[-122.501858,37.788182],[-122.501842,37.788223],[-122.501801,37.788247],[-122.501766,37.788228],[-122.501757,37.788207],[-122.501726,37.788151],[-122.5017,37.788168],[-122.501679,37.788162],[-122.50162,37.788169],[-122.501569,37.788197],[-122.501591,37.788227],[-122.501532,37.788248],[-122.501514,37.788205],[-122.501459,37.788213],[-122.501439,37.78824],[-122.501336,37.788225],[-122.501268,37.78825],[-122.501159,37.788295],[-122.501091,37.788313],[-122.501014,37.788288],[-122.500972,37.788298],[-122.500994,37.788332],[-122.500948,37.78835],[-122.500879,37.78832],[-122.500861,37.788304],[-122.500827,37.788308],[-122.500806,37.788318],[-122.500755,37.788319],[-122.500738,37.788299],[-122.500713,37.78832],[-122.500641,37.788338],[-122.500594,37.788332],[-122.500551,37.788316],[-122.500539,37.788336],[-122.500489,37.788374],[-122.500459,37.788368],[-122.500446,37.788385],[-122.500341,37.788434],[-122.500273,37.788428],[-122.500257,37.788479],[-122.500251,37.788574],[-122.500192,37.788592],[-122.500175,37.788569],[-122.500177,37.788518],[-122.500131,37.788536],[-122.500092,37.788509],[-122.5001,37.788472],[-122.500066,37.788476],[-122.50001,37.788477],[-122.499967,37.78844],[-122.499879,37.788489],[-122.499811,37.78849],[-122.499786,37.788523],[-122.499761,37.78855],[-122.499798,37.788568],[-122.499804,37.788608],[-122.499762,37.788662],[-122.499733,37.788642],[-122.499727,37.78861],[-122.499687,37.788663],[-122.499634,37.788693],[-122.499578,37.788704],[-122.499554,37.788688],[-122.499512,37.788624],[-122.499481,37.78853],[-122.499433,37.788462],[-122.499337,37.788425],[-122.499267,37.78841],[-122.499203,37.788415],[-122.499128,37.788402],[-122.499099,37.788368],[-122.499042,37.78834],[-122.498955,37.788352],[-122.49892,37.788391],[-122.49889,37.788414],[-122.498846,37.788415],[-122.498829,37.788358],[-122.498858,37.788274],[-122.498811,37.788232],[-122.49878,37.788241],[-122.498722,37.788283],[-122.498685,37.788326],[-122.49861,37.788329],[-122.498598,37.788266],[-122.49862,37.788215],[-122.498603,37.78816],[-122.498538,37.788135],[-122.498508,37.788148],[-122.498481,37.788181],[-122.498393,37.788164],[-122.498358,37.78812],[-122.498367,37.788048],[-122.498258,37.788032],[-122.498204,37.787931],[-122.498141,37.787883],[-122.498021,37.787875],[-122.497965,37.787908],[-122.497937,37.787836],[-122.497862,37.787816],[-122.497833,37.787872],[-122.497859,37.787931],[-122.497838,37.78796],[-122.497779,37.787985],[-122.497727,37.787935],[-122.49768,37.787929],[-122.497621,37.787947],[-122.497601,37.787923],[-122.497543,37.787891],[-122.497503,37.787854],[-122.497545,37.787816],[-122.497527,37.787779],[-122.4975,37.787746],[-122.497516,37.787705],[-122.497508,37.787674],[-122.497486,37.787616],[-122.497459,37.787587],[-122.497407,37.787575],[-122.497357,37.787575],[-122.497316,37.787596],[-122.497275,37.787592],[-122.497216,37.787593],[-122.497169,37.787553],[-122.497137,37.787515],[-122.497106,37.787481],[-122.497045,37.78746],[-122.497,37.787456],[-122.496924,37.787437],[-122.496895,37.787401],[-122.496857,37.787368],[-122.496812,37.787352],[-122.496752,37.787368],[-122.496729,37.787343],[-122.496686,37.787358],[-122.496639,37.787314],[-122.496583,37.787296],[-122.496546,37.787287],[-122.496517,37.787302],[-122.496468,37.787305],[-122.496445,37.787311],[-122.496383,37.787321],[-122.496337,37.787328],[-122.496277,37.787329],[-122.496248,37.787346],[-122.496198,37.787367],[-122.496142,37.78739],[-122.496087,37.787416],[-122.496068,37.787442],[-122.496017,37.787449],[-122.495972,37.787467],[-122.49594,37.787486],[-122.495906,37.787503],[-122.495881,37.787507],[-122.495825,37.787504],[-122.495792,37.787525],[-122.495771,37.787542],[-122.495716,37.787547],[-122.49569,37.787551],[-122.495622,37.787557],[-122.495603,37.787571],[-122.495573,37.787583],[-122.49554,37.787599],[-122.495513,37.787618],[-122.495484,37.787625],[-122.495438,37.787653],[-122.495389,37.787664],[-122.49537,37.787671],[-122.495333,37.787715],[-122.495282,37.78774],[-122.495193,37.787745],[-122.495147,37.787752],[-122.495108,37.787753],[-122.495082,37.787762],[-122.49505,37.787781],[-122.494943,37.787793],[-122.494936,37.787823],[-122.494876,37.787838],[-122.494851,37.787828],[-122.494804,37.787832],[-122.494754,37.787894],[-122.494747,37.787951],[-122.494723,37.788003],[-122.494687,37.788081],[-122.494701,37.788138],[-122.494642,37.788136],[-122.494554,37.788053],[-122.494515,37.788016],[-122.494535,37.787958],[-122.494512,37.787912],[-122.494514,37.78783],[-122.494492,37.787804],[-122.494463,37.787808],[-122.494427,37.787818],[-122.494408,37.787839],[-122.494413,37.787876],[-122.494397,37.787903],[-122.49435,37.787891],[-122.494344,37.787823],[-122.49431,37.78781],[-122.494267,37.787811],[-122.49416,37.787796],[-122.494129,37.787746],[-122.494107,37.787733],[-122.49408,37.787672],[-122.494004,37.787581],[-122.49398,37.787585],[-122.493937,37.787604],[-122.493903,37.787627],[-122.493854,37.787634],[-122.493777,37.787627],[-122.493744,37.787614],[-122.493682,37.787607],[-122.493586,37.787619],[-122.493496,37.78763],[-122.493462,37.787628],[-122.493419,37.78765],[-122.493385,37.787643],[-122.493336,37.787656],[-122.493294,37.78768],[-122.493241,37.787684],[-122.493194,37.787693],[-122.493182,37.787713],[-122.493127,37.787734],[-122.49309,37.787726],[-122.493056,37.78774],[-122.493005,37.787743],[-122.492971,37.787742],[-122.492956,37.787768],[-122.492914,37.787783],[-122.492855,37.787786],[-122.49286,37.787853],[-122.49283,37.787883],[-122.492771,37.787884],[-122.492769,37.78783],[-122.492736,37.787857],[-122.492687,37.78777],[-122.492679,37.787751],[-122.492628,37.787765],[-122.492565,37.787768],[-122.492506,37.787773],[-122.492447,37.787778],[-122.492381,37.787789],[-122.492306,37.787816],[-122.492216,37.78784],[-122.492179,37.787853],[-122.492119,37.787875],[-122.49208,37.7879],[-122.492058,37.787925],[-122.491876,37.788002],[-122.491813,37.788026],[-122.491771,37.788056],[-122.49172,37.788105],[-122.49165,37.788124],[-122.491614,37.788164],[-122.491501,37.788222],[-122.491448,37.788217],[-122.491406,37.788237],[-122.491282,37.788281],[-122.491218,37.78832],[-122.491191,37.788358],[-122.491137,37.788385],[-122.491062,37.788424],[-122.490946,37.7885],[-122.490859,37.788554],[-122.490843,37.788591],[-122.490818,37.788633],[-122.490696,37.788732],[-122.490605,37.788812],[-122.490528,37.788886],[-122.490413,37.788952],[-122.490407,37.788979],[-122.490354,37.789005],[-122.490307,37.789033],[-122.490252,37.789071],[-122.490219,37.789102],[-122.490046,37.789222],[-122.489919,37.789352],[-122.489829,37.789482],[-122.489701,37.789483],[-122.489592,37.789454],[-122.489301,37.789412],[-122.489192,37.78934],[-122.488991,37.789283],[-122.488482,37.789442],[-122.4881,37.789429],[-122.488028,37.78953],[-122.487864,37.789588],[-122.487737,37.789574],[-122.487584,37.789499],[-122.487564,37.789473],[-122.487564,37.789435],[-122.487464,37.789473],[-122.487447,37.789431],[-122.487369,37.78943],[-122.487297,37.789481],[-122.487121,37.789611],[-122.487052,37.789709],[-122.486938,37.78984],[-122.486809,37.789964],[-122.486729,37.790042],[-122.486554,37.79015],[-122.486429,37.790237],[-122.486335,37.790356],[-122.486245,37.790414],[-122.486237,37.790495],[-122.486226,37.790509],[-122.485465,37.790089],[-122.484401,37.789717],[-122.483687,37.789283],[-122.483662,37.788335],[-122.484089,37.78791]]]]},"properties":{"neighbourhood":"Seacliff","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435964,37.769038],[-122.436851,37.768982],[-122.437345,37.769086],[-122.438395,37.768957],[-122.438733,37.76845],[-122.440051,37.767814],[-122.44066,37.766912],[-122.441763,37.766113],[-122.441967,37.765831],[-122.442742,37.76593],[-122.443361,37.765418],[-122.444121,37.764959],[-122.443975,37.764738],[-122.444105,37.764346],[-122.444316,37.764342],[-122.444572,37.76339],[-122.445396,37.762652],[-122.445808,37.76231],[-122.4463,37.762302],[-122.446499,37.761853],[-122.446779,37.761848],[-122.446408,37.761074],[-122.446438,37.761036],[-122.446816,37.760565],[-122.446946,37.760172],[-122.447215,37.759722],[-122.447487,37.759383],[-122.448252,37.759091],[-122.449722,37.7589],[-122.451436,37.758735],[-122.451889,37.76115],[-122.452938,37.766319],[-122.453014,37.766373],[-122.454691,37.774696],[-122.454635,37.774767],[-122.446457,37.775805],[-122.440491,37.776562],[-122.438251,37.776878],[-122.437287,37.772265],[-122.436887,37.770376],[-122.436599,37.770102],[-122.436094,37.769608],[-122.435964,37.769038]]]]},"properties":{"neighbourhood":"Haight Ashbury","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.454284,37.708222],[-122.45456,37.708221],[-122.455565,37.708216],[-122.455902,37.70822],[-122.457916,37.708243],[-122.459123,37.708218],[-122.455853,37.711233],[-122.454442,37.71257],[-122.453561,37.713131],[-122.452543,37.713695],[-122.451807,37.714528],[-122.449535,37.717193],[-122.448924,37.717531],[-122.448125,37.718584],[-122.446597,37.720743],[-122.451678,37.722738],[-122.452239,37.723112],[-122.452524,37.723167],[-122.452545,37.723983],[-122.452215,37.726767],[-122.452431,37.729862],[-122.453375,37.729954],[-122.453465,37.733372],[-122.452534,37.733815],[-122.44823,37.733886],[-122.448376,37.734311],[-122.446894,37.734229],[-122.445672,37.733822],[-122.445288,37.734576],[-122.44206,37.734629],[-122.441746,37.735902],[-122.441551,37.735874],[-122.440637,37.735178],[-122.440285,37.73491],[-122.439862,37.734872],[-122.439249,37.734818],[-122.43841,37.734339],[-122.432493,37.733201],[-122.435572,37.731768],[-122.433848,37.731711],[-122.432247,37.73225],[-122.429988,37.732287],[-122.428147,37.731889],[-122.428255,37.731785],[-122.430038,37.730063],[-122.432867,37.72711],[-122.434434,37.725289],[-122.434737,37.724514],[-122.435681,37.723558],[-122.438284,37.720181],[-122.440824,37.716455],[-122.44129,37.715771],[-122.445078,37.712459],[-122.445175,37.71203],[-122.446344,37.711498],[-122.448249,37.71027],[-122.450596,37.709461],[-122.454011,37.708379],[-122.454284,37.708222]]]]},"properties":{"neighbourhood":"Outer Mission","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408912,37.790132],[-122.408797,37.790161],[-122.408789,37.790145],[-122.408767,37.790163],[-122.408797,37.790161],[-122.408805,37.790184],[-122.408623,37.790194],[-122.408393,37.790227],[-122.407156,37.790357],[-122.406326,37.786213],[-122.406223,37.785713],[-122.405863,37.785755],[-122.405844,37.785687],[-122.409664,37.782642],[-122.416141,37.777686],[-122.422213,37.772905],[-122.424298,37.783408],[-122.421637,37.78373],[-122.421008,37.783852],[-122.421954,37.788488],[-122.418609,37.78891],[-122.411745,37.789802],[-122.409094,37.790105],[-122.408912,37.790132]]]]},"properties":{"neighbourhood":"Downtown/Civic Center","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.435527,37.74146],[-122.435632,37.741443],[-122.435548,37.740843],[-122.436003,37.739796],[-122.436462,37.738913],[-122.43693,37.738358],[-122.43755,37.738348],[-122.438656,37.738494],[-122.439557,37.738698],[-122.439628,37.738751],[-122.439896,37.738473],[-122.440164,37.738195],[-122.439945,37.737706],[-122.439727,37.737272],[-122.439685,37.735686],[-122.439862,37.734872],[-122.440285,37.73491],[-122.440637,37.735178],[-122.441551,37.735874],[-122.441746,37.735902],[-122.442242,37.735972],[-122.443403,37.73557],[-122.443894,37.73589],[-122.443836,37.736329],[-122.443429,37.736555],[-122.442549,37.737171],[-122.442355,37.737667],[-122.442655,37.738592],[-122.442397,37.739253],[-122.442685,37.73974],[-122.443867,37.740159],[-122.444575,37.740858],[-122.445124,37.740795],[-122.446101,37.741271],[-122.44619,37.742036],[-122.446685,37.74252],[-122.447515,37.742616],[-122.449176,37.742916],[-122.449805,37.743234],[-122.450947,37.744748],[-122.451701,37.745454],[-122.450699,37.745791],[-122.447754,37.746497],[-122.444804,37.746983],[-122.444771,37.746921],[-122.444659,37.746712],[-122.443901,37.746724],[-122.443346,37.746569],[-122.443003,37.74663],[-122.441226,37.747206],[-122.440607,37.747216],[-122.440179,37.746676],[-122.440165,37.746129],[-122.440214,37.745362],[-122.439859,37.744985],[-122.439084,37.744341],[-122.437126,37.743225],[-122.435931,37.742314],[-122.435635,37.741553],[-122.435527,37.74146]]]]},"properties":{"neighbourhood":"Diamond Heights","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.471051,37.708198],[-122.472829,37.708203],[-122.475752,37.708182],[-122.478975,37.708192],[-122.481682,37.708183],[-122.482449,37.708182],[-122.48564,37.708149],[-122.502774,37.708089],[-122.502795,37.708342],[-122.50287,37.70852],[-122.502919,37.708765],[-122.502953,37.708965],[-122.502971,37.70911],[-122.503182,37.709643],[-122.503221,37.710045],[-122.503285,37.710323],[-122.503378,37.710624],[-122.503455,37.710902],[-122.503388,37.711026],[-122.50348,37.711281],[-122.503539,37.711392],[-122.503607,37.711816],[-122.503925,37.711977],[-122.503988,37.712137],[-122.504019,37.712338],[-122.504051,37.712566],[-122.504083,37.712821],[-122.504156,37.713008],[-122.504155,37.713277],[-122.504262,37.713483],[-122.50431,37.713718],[-122.504341,37.713905],[-122.504416,37.714173],[-122.504527,37.714547],[-122.50462,37.714855],[-122.504734,37.71516],[-122.504842,37.715397],[-122.504984,37.715738],[-122.505016,37.715944],[-122.505065,37.716122],[-122.505278,37.716713],[-122.505378,37.71692],[-122.505449,37.717112],[-122.505534,37.717303],[-122.505551,37.717538],[-122.505628,37.717813],[-122.505733,37.718088],[-122.505795,37.71833],[-122.505758,37.718519],[-122.505847,37.718705],[-122.505948,37.718836],[-122.506038,37.719089],[-122.506046,37.719354],[-122.506067,37.719619],[-122.506099,37.719753],[-122.506085,37.719904],[-122.506072,37.719973],[-122.506059,37.720136],[-122.506067,37.720287],[-122.506093,37.720455],[-122.50612,37.720658],[-122.506216,37.720896],[-122.506291,37.721023],[-122.506402,37.721384],[-122.506522,37.721659],[-122.507656,37.728424],[-122.507664,37.728466],[-122.507704,37.728548],[-122.507749,37.728627],[-122.507758,37.728738],[-122.507784,37.728866],[-122.507786,37.728934],[-122.507795,37.729046],[-122.507815,37.729164],[-122.507862,37.729293],[-122.5079,37.729436],[-122.507937,37.729543],[-122.507979,37.729608],[-122.508001,37.729647],[-122.50803,37.729655],[-122.508028,37.729699],[-122.508047,37.729755],[-122.508054,37.729814],[-122.508054,37.72991],[-122.508061,37.729979],[-122.508063,37.73004],[-122.508076,37.73009],[-122.508078,37.730168],[-122.508086,37.730243],[-122.508102,37.730327],[-122.508101,37.730402],[-122.508119,37.730525],[-122.508154,37.730636],[-122.50816,37.730757],[-122.508147,37.730821],[-122.508157,37.730883],[-122.508177,37.730953],[-122.508155,37.731001],[-122.50807,37.73106],[-122.508063,37.731103],[-122.508038,37.731142],[-122.508011,37.731193],[-122.508021,37.731243],[-122.508043,37.731311],[-122.508041,37.731357],[-122.508006,37.731439],[-122.508021,37.731473],[-122.508034,37.731532],[-122.508027,37.731585],[-122.508026,37.731638],[-122.508039,37.731724],[-122.508058,37.731781],[-122.508063,37.731867],[-122.508092,37.731972],[-122.508116,37.732008],[-122.508158,37.732057],[-122.508171,37.732119],[-122.508181,37.732191],[-122.508206,37.73226],[-122.508251,37.732336],[-122.508248,37.732418],[-122.508261,37.732487],[-122.508297,37.732554],[-122.50832,37.732629],[-122.50835,37.732684],[-122.50838,37.732756],[-122.508402,37.732815],[-122.508413,37.732888],[-122.508377,37.73293],[-122.508343,37.732967],[-122.508313,37.733017],[-122.508294,37.733061],[-122.508293,37.733123],[-122.508303,37.733189],[-122.508287,37.733223],[-122.508288,37.733266],[-122.508283,37.73331],[-122.508258,37.733338],[-122.508254,37.73339],[-122.508261,37.733447],[-122.508261,37.733547],[-122.508268,37.733586],[-122.508273,37.733668],[-122.508265,37.733709],[-122.508287,37.733748],[-122.508296,37.733782],[-122.5083,37.733814],[-122.508286,37.733834],[-122.508267,37.73386],[-122.508247,37.733883],[-122.508238,37.734298],[-122.508237,37.734351],[-122.508247,37.734394],[-122.508256,37.734423],[-122.508245,37.734453],[-122.508264,37.73451],[-122.508256,37.734528],[-122.508257,37.734563],[-122.508281,37.734596],[-122.50827,37.734635],[-122.508267,37.734708],[-122.508268,37.73477],[-122.508272,37.734816],[-122.508315,37.734913],[-122.508325,37.734949],[-122.50835,37.735024],[-122.508408,37.735055],[-122.508455,37.735102],[-122.508462,37.735125],[-122.508477,37.735152],[-122.508478,37.735184],[-122.508497,37.735257],[-122.508536,37.735327],[-122.508537,37.735361],[-122.507132,37.735432],[-122.505274,37.735518],[-122.503067,37.735446],[-122.502034,37.735464],[-122.500439,37.735053],[-122.499107,37.7342],[-122.497304,37.733793],[-122.493931,37.733905],[-122.491247,37.734005],[-122.491402,37.737231],[-122.490318,37.737906],[-122.489904,37.737913],[-122.489062,37.737325],[-122.488432,37.736953],[-122.487399,37.73697],[-122.486222,37.736771],[-122.485535,37.736837],[-122.484717,37.737179],[-122.48369,37.737416],[-122.482589,37.737489],[-122.481408,37.737126],[-122.471019,37.737683],[-122.470607,37.737745],[-122.469641,37.738545],[-122.469028,37.737935],[-122.470443,37.736762],[-122.47104,37.735877],[-122.471352,37.734668],[-122.471507,37.732695],[-122.47171,37.731043],[-122.47179,37.730392],[-122.471885,37.726178],[-122.472308,37.721355],[-122.472507,37.718452],[-122.47262,37.71752],[-122.472389,37.716593],[-122.471635,37.714143],[-122.471181,37.712619],[-122.471053,37.710378],[-122.471051,37.708198]]]]},"properties":{"neighbourhood":"Lakeshore","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.420952,37.808967],[-122.420614,37.806666],[-122.419633,37.806794],[-122.416774,37.804944],[-122.408255,37.798892],[-122.40671,37.79785],[-122.408153,37.797667],[-122.410257,37.7974],[-122.423435,37.795722],[-122.423822,37.797606],[-122.424788,37.802304],[-122.425599,37.806473],[-122.426032,37.806912],[-122.426762,37.80796],[-122.42682,37.808122],[-122.426718,37.808169],[-122.42675,37.80833],[-122.426816,37.808624],[-122.426812,37.808702],[-122.426831,37.808796],[-122.426826,37.808824],[-122.426828,37.80886],[-122.426829,37.808897],[-122.42683,37.808933],[-122.426829,37.80897],[-122.426848,37.809019],[-122.426824,37.809066],[-122.426821,37.809102],[-122.426817,37.809139],[-122.426812,37.809175],[-122.426806,37.809211],[-122.426799,37.809248],[-122.426792,37.809284],[-122.426784,37.80932],[-122.426775,37.809356],[-122.426765,37.809392],[-122.426754,37.809427],[-122.426743,37.809463],[-122.426731,37.809498],[-122.426718,37.809533],[-122.426704,37.809568],[-122.42669,37.809603],[-122.426675,37.809637],[-122.426659,37.809672],[-122.426642,37.809706],[-122.426625,37.80974],[-122.426607,37.809774],[-122.426588,37.809807],[-122.426568,37.80984],[-122.426548,37.809873],[-122.426527,37.809905],[-122.426505,37.809938],[-122.426482,37.80997],[-122.426459,37.810001],[-122.426435,37.810033],[-122.42641,37.810064],[-122.426385,37.810094],[-122.426359,37.810124],[-122.426333,37.810154],[-122.426305,37.810184],[-122.426277,37.810213],[-122.426249,37.810242],[-122.42622,37.81027],[-122.426166,37.810313],[-122.426148,37.810335],[-122.426125,37.810354],[-122.426102,37.810372],[-122.426078,37.81039],[-122.426054,37.810407],[-122.42603,37.810425],[-122.426005,37.810442],[-122.42598,37.810458],[-122.425954,37.810475],[-122.425928,37.810491],[-122.425902,37.810506],[-122.425875,37.810521],[-122.425848,37.810536],[-122.425821,37.810551],[-122.425794,37.810565],[-122.425766,37.810578],[-122.425737,37.810592],[-122.425709,37.810604],[-122.42568,37.810617],[-122.425651,37.810629],[-122.425622,37.810641],[-122.425593,37.810652],[-122.425563,37.810663],[-122.425533,37.810673],[-122.425503,37.810683],[-122.425472,37.810693],[-122.425441,37.810702],[-122.425411,37.810711],[-122.42538,37.810719],[-122.425348,37.810727],[-122.425317,37.810735],[-122.425285,37.810742],[-122.425254,37.810749],[-122.425222,37.810755],[-122.42519,37.81076],[-122.425158,37.810766],[-122.425126,37.810771],[-122.425093,37.810775],[-122.425061,37.810779],[-122.425029,37.810782],[-122.424996,37.810785],[-122.424963,37.810788],[-122.424931,37.81079],[-122.424898,37.810792],[-122.424876,37.810799],[-122.424848,37.810794],[-122.424826,37.810794],[-122.424803,37.810794],[-122.424781,37.810793],[-122.424751,37.810791],[-122.424721,37.810789],[-122.424699,37.810786],[-122.424677,37.810783],[-122.424655,37.81078],[-122.424633,37.810776],[-122.424611,37.810772],[-122.42459,37.810767],[-122.424561,37.81076],[-122.424533,37.810753],[-122.424512,37.810746],[-122.424491,37.81074],[-122.424464,37.81073],[-122.424437,37.81072],[-122.424408,37.81072],[-122.424394,37.810699],[-122.42437,37.810683],[-122.424348,37.810662],[-122.424332,37.810642],[-122.424319,37.810619],[-122.424309,37.810592],[-122.424301,37.810571],[-122.424299,37.810555],[-122.424299,37.810538],[-122.424304,37.810512],[-122.424314,37.810487],[-122.424325,37.810469],[-122.424337,37.810455],[-122.424355,37.810439],[-122.424373,37.810426],[-122.424392,37.810415],[-122.424415,37.810406],[-122.424435,37.8104],[-122.424462,37.810395],[-122.424492,37.810393],[-122.424522,37.810395],[-122.424549,37.8104],[-122.424585,37.810412],[-122.424611,37.810425],[-122.424631,37.81044],[-122.424651,37.810458],[-122.424665,37.810477],[-122.424675,37.810496],[-122.424683,37.810521],[-122.424688,37.810543],[-122.424686,37.810562],[-122.42469,37.810578],[-122.424699,37.810594],[-122.424715,37.810609],[-122.424745,37.810623],[-122.42479,37.810627],[-122.424815,37.810628],[-122.424847,37.810628],[-122.424884,37.810628],[-122.424913,37.810626],[-122.424942,37.810624],[-122.424971,37.810622],[-122.425,37.810619],[-122.425029,37.810616],[-122.425058,37.810613],[-122.425086,37.810609],[-122.425115,37.810604],[-122.425144,37.8106],[-122.425172,37.810595],[-122.4252,37.810589],[-122.425229,37.810583],[-122.425257,37.810577],[-122.425285,37.810571],[-122.425312,37.810564],[-122.42534,37.810556],[-122.425367,37.810548],[-122.425395,37.81054],[-122.425422,37.810532],[-122.425449,37.810523],[-122.425475,37.810513],[-122.425502,37.810504],[-122.425528,37.810494],[-122.425554,37.810483],[-122.42558,37.810473],[-122.425606,37.810462],[-122.425631,37.81045],[-122.425656,37.810438],[-122.425681,37.810426],[-122.425705,37.810414],[-122.42573,37.810401],[-122.425753,37.810388],[-122.425777,37.810374],[-122.425801,37.810361],[-122.425824,37.810346],[-122.425846,37.810332],[-122.425869,37.810317],[-122.425891,37.810302],[-122.425913,37.810287],[-122.425934,37.810271],[-122.425955,37.810255],[-122.425976,37.810239],[-122.426033,37.810212],[-122.426044,37.81018],[-122.426071,37.810154],[-122.426098,37.810128],[-122.426124,37.810101],[-122.426149,37.810074],[-122.426174,37.810047],[-122.426199,37.810019],[-122.426222,37.809991],[-122.426245,37.809963],[-122.426268,37.809934],[-122.426289,37.809905],[-122.426311,37.809876],[-122.426331,37.809846],[-122.426351,37.809816],[-122.42637,37.809786],[-122.426388,37.809756],[-122.426406,37.809725],[-122.426423,37.809694],[-122.42644,37.809663],[-122.426456,37.809632],[-122.426471,37.8096],[-122.426485,37.809569],[-122.426499,37.809537],[-122.426512,37.809505],[-122.426524,37.809472],[-122.426536,37.80944],[-122.426547,37.809407],[-122.426557,37.809375],[-122.426566,37.809342],[-122.426575,37.809309],[-122.426583,37.809275],[-122.42659,37.809242],[-122.426597,37.809209],[-122.426602,37.809175],[-122.426607,37.809142],[-122.426612,37.809108],[-122.426615,37.809075],[-122.426618,37.809041],[-122.42662,37.809007],[-122.426622,37.808974],[-122.426622,37.80894],[-122.426622,37.808906],[-122.426636,37.808794],[-122.426618,37.808824],[-122.426616,37.808798],[-122.426608,37.808713],[-122.426597,37.808627],[-122.426584,37.808542],[-122.426569,37.808456],[-122.426553,37.808371],[-122.426535,37.808287],[-122.426522,37.808151],[-122.426486,37.808164],[-122.426482,37.808127],[-122.426478,37.808089],[-122.426472,37.808052],[-122.426465,37.808015],[-122.426458,37.807978],[-122.42645,37.807941],[-122.426441,37.807905],[-122.426431,37.807868],[-122.426421,37.807832],[-122.426409,37.807795],[-122.426397,37.807759],[-122.426384,37.807723],[-122.426371,37.807687],[-122.426356,37.807652],[-122.426341,37.807616],[-122.426325,37.807581],[-122.426289,37.807546],[-122.426118,37.807641],[-122.426005,37.807512],[-122.425948,37.807541],[-122.426073,37.80768],[-122.426045,37.807693],[-122.425788,37.807406],[-122.425811,37.807394],[-122.425842,37.807428],[-122.42586,37.807417],[-122.425902,37.807474],[-122.425932,37.807524],[-122.42597,37.8075],[-122.425934,37.807458],[-122.426103,37.807366],[-122.426126,37.80735],[-122.426091,37.807318],[-122.426055,37.807289],[-122.426018,37.807259],[-122.425981,37.80723],[-122.425943,37.807202],[-122.425904,37.807174],[-122.425865,37.807147],[-122.425825,37.807121],[-122.425785,37.807094],[-122.425744,37.807069],[-122.425702,37.807044],[-122.42566,37.80702],[-122.425618,37.806996],[-122.425574,37.806973],[-122.425531,37.80695],[-122.425487,37.806928],[-122.425442,37.806907],[-122.425397,37.806886],[-122.425351,37.806866],[-122.425305,37.806846],[-122.425259,37.806827],[-122.425212,37.806809],[-122.425165,37.806792],[-122.425117,37.806775],[-122.425069,37.806758],[-122.425021,37.806743],[-122.424973,37.806728],[-122.424924,37.806714],[-122.424874,37.8067],[-122.424802,37.806681],[-122.424773,37.806674],[-122.424745,37.806666],[-122.424717,37.80666],[-122.424689,37.806653],[-122.42466,37.806647],[-122.424632,37.806641],[-122.424603,37.806636],[-122.424574,37.806631],[-122.424545,37.806627],[-122.424516,37.806623],[-122.424487,37.806619],[-122.424458,37.806616],[-122.424429,37.806613],[-122.4244,37.806611],[-122.424371,37.806609],[-122.424341,37.806607],[-122.424312,37.806606],[-122.424282,37.806605],[-122.424253,37.806605],[-122.424224,37.806605],[-122.424194,37.806605],[-122.424165,37.806606],[-122.424136,37.806607],[-122.424106,37.806609],[-122.424077,37.806611],[-122.424048,37.806613],[-122.424018,37.806616],[-122.423989,37.806619],[-122.42396,37.806623],[-122.423931,37.806627],[-122.423903,37.806631],[-122.423874,37.806636],[-122.423845,37.806641],[-122.423817,37.806647],[-122.423788,37.806653],[-122.42376,37.806659],[-122.423706,37.806673],[-122.423654,37.806694],[-122.42359,37.806719],[-122.423526,37.806745],[-122.423463,37.806771],[-122.4234,37.806799],[-122.423338,37.806827],[-122.423277,37.806857],[-122.423216,37.806887],[-122.423156,37.806918],[-122.423096,37.80695],[-122.423038,37.806983],[-122.42298,37.807016],[-122.422923,37.80705],[-122.422866,37.807085],[-122.422808,37.807118],[-122.422669,37.807211],[-122.422539,37.807296],[-122.422411,37.807382],[-122.422284,37.807471],[-122.42216,37.807561],[-122.422038,37.807653],[-122.421917,37.807747],[-122.421799,37.807842],[-122.421683,37.807939],[-122.421535,37.808067],[-122.42179,37.808374],[-122.421759,37.808395],[-122.421493,37.80811],[-122.421324,37.808279],[-122.421367,37.808321],[-122.421409,37.808345],[-122.421539,37.808468],[-122.421521,37.80848],[-122.421585,37.808543],[-122.421559,37.80856],[-122.421489,37.808502],[-122.421366,37.80839],[-122.421341,37.80835],[-122.421301,37.808302],[-122.421055,37.808557],[-122.421102,37.808804],[-122.421495,37.809133],[-122.421448,37.809163],[-122.422886,37.810219],[-122.422844,37.810256],[-122.421366,37.809161],[-122.42121,37.80919],[-122.421036,37.808957],[-122.420952,37.808967]]]]},"properties":{"neighbourhood":"Russian Hill","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.425578,37.756617],[-122.424949,37.749725],[-122.424756,37.747849],[-122.424183,37.742262],[-122.425454,37.742212],[-122.429924,37.741865],[-122.4313,37.741788],[-122.432333,37.741771],[-122.432889,37.741926],[-122.433299,37.74181],[-122.435527,37.74146],[-122.435635,37.741553],[-122.435931,37.742314],[-122.437126,37.743225],[-122.439084,37.744341],[-122.439859,37.744985],[-122.440214,37.745362],[-122.440165,37.746129],[-122.440179,37.746676],[-122.440607,37.747216],[-122.441226,37.747206],[-122.443003,37.74663],[-122.443346,37.746569],[-122.443901,37.746724],[-122.444659,37.746712],[-122.444771,37.746921],[-122.444668,37.74704],[-122.444122,37.747268],[-122.444138,37.74787],[-122.444221,37.748415],[-122.443621,37.749191],[-122.443185,37.75095],[-122.442753,37.752872],[-122.442368,37.753973],[-122.441699,37.75475],[-122.441171,37.755634],[-122.440979,37.756184],[-122.441045,37.756229],[-122.440501,37.756356],[-122.438988,37.756491],[-122.438892,37.755452],[-122.43779,37.755471],[-122.437801,37.755908],[-122.432366,37.756271],[-122.425578,37.756617]]]]},"properties":{"neighbourhood":"Noe Valley","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.451436,37.758735],[-122.451399,37.758537],[-122.452724,37.758181],[-122.453416,37.757779],[-122.454105,37.757266],[-122.454087,37.756597],[-122.454902,37.755524],[-122.455223,37.754403],[-122.455485,37.753674],[-122.45596,37.753053],[-122.456079,37.752214],[-122.456206,37.75171],[-122.45683,37.751421],[-122.458103,37.751734],[-122.458881,37.751944],[-122.460354,37.751864],[-122.46142,37.751562],[-122.461609,37.751509],[-122.462757,37.752438],[-122.463332,37.75293],[-122.46663,37.752819],[-122.46632,37.749088],[-122.469506,37.748954],[-122.476014,37.748679],[-122.477206,37.765426],[-122.467467,37.765854],[-122.459538,37.766209],[-122.458555,37.766226],[-122.456858,37.765808],[-122.453014,37.766373],[-122.452938,37.766319],[-122.451889,37.76115],[-122.451436,37.758735]]]]},"properties":{"neighbourhood":"Inner Sunset","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.373133,37.832253],[-122.368622,37.831148],[-122.367779,37.830014],[-122.367684,37.829848],[-122.367443,37.829492],[-122.365179,37.826109],[-122.362837,37.822594],[-122.363436,37.821036],[-122.363583,37.820871],[-122.360458,37.820124],[-122.360585,37.819801],[-122.363642,37.820541],[-122.363686,37.820356],[-122.364024,37.819601],[-122.364173,37.819017],[-122.364256,37.818855],[-122.364351,37.818777],[-122.364399,37.818768],[-122.364357,37.818677],[-122.364472,37.818622],[-122.36452,37.818627],[-122.36483,37.818497],[-122.364755,37.818403],[-122.364923,37.818333],[-122.365049,37.818513],[-122.365094,37.818464],[-122.366486,37.817878],[-122.368418,37.817063],[-122.368525,37.816995],[-122.36862,37.816974],[-122.371019,37.815999],[-122.371054,37.81595],[-122.371052,37.815855],[-122.370773,37.815285],[-122.370528,37.814657],[-122.370384,37.814229],[-122.369804,37.813402],[-122.369402,37.813034],[-122.368765,37.812701],[-122.368487,37.81266],[-122.368306,37.812559],[-122.368141,37.812543],[-122.368018,37.812454],[-122.367558,37.812325],[-122.367288,37.812323],[-122.367003,37.812347],[-122.366809,37.812421],[-122.366719,37.812416],[-122.36643,37.812589],[-122.366213,37.812683],[-122.366036,37.812815],[-122.365898,37.81283],[-122.365672,37.812944],[-122.36556,37.813017],[-122.365165,37.813198],[-122.365086,37.813296],[-122.365014,37.813324],[-122.364991,37.813466],[-122.364889,37.813604],[-122.364824,37.813624],[-122.364744,37.813697],[-122.364658,37.813763],[-122.364593,37.813796],[-122.364552,37.813842],[-122.364447,37.81387],[-122.364383,37.813929],[-122.364241,37.813923],[-122.364021,37.814048],[-122.363949,37.814024],[-122.363899,37.814082],[-122.363817,37.814059],[-122.363805,37.814018],[-122.363297,37.814026],[-122.363104,37.814078],[-122.363014,37.814152],[-122.362676,37.814109],[-122.362298,37.814107],[-122.362065,37.814143],[-122.361934,37.814234],[-122.361877,37.814365],[-122.361827,37.814366],[-122.361716,37.814456],[-122.361646,37.814457],[-122.361584,37.814491],[-122.361401,37.814501],[-122.361219,37.814553],[-122.361036,37.81458],[-122.360824,37.81464],[-122.360743,37.814706],[-122.3606,37.814684],[-122.360396,37.814688],[-122.359906,37.814824],[-122.359725,37.814925],[-122.359502,37.815017],[-122.35938,37.815027],[-122.359276,37.814964],[-122.359163,37.814893],[-122.358914,37.814767],[-122.35885,37.814599],[-122.358927,37.814452],[-122.358906,37.814412],[-122.359048,37.813956],[-122.359195,37.813735],[-122.359203,37.813639],[-122.35915,37.813615],[-122.35918,37.813566],[-122.35925,37.8135],[-122.359279,37.813443],[-122.359412,37.813417],[-122.359532,37.813366],[-122.359574,37.81339],[-122.359715,37.813348],[-122.360601,37.812848],[-122.360941,37.812608],[-122.361059,37.812484],[-122.361112,37.812306],[-122.361126,37.812047],[-122.361099,37.811805],[-122.361114,37.81157],[-122.361202,37.811415],[-122.361306,37.811122],[-122.361271,37.810904],[-122.361317,37.810742],[-122.361274,37.810605],[-122.361195,37.810371],[-122.361172,37.810226],[-122.360715,37.810298],[-122.360373,37.810926],[-122.360354,37.810935],[-122.36024,37.81088],[-122.360549,37.810204],[-122.361149,37.810113],[-122.36097,37.808085],[-122.361307,37.808064],[-122.361474,37.807811],[-122.361689,37.80771],[-122.361738,37.807564],[-122.361853,37.807343],[-122.361801,37.807263],[-122.361849,37.807166],[-122.361921,37.807132],[-122.361898,37.807068],[-122.36201,37.807026],[-122.362061,37.807066],[-122.36209,37.807],[-122.362162,37.807023],[-122.362264,37.807014],[-122.362469,37.807043],[-122.362622,37.807072],[-122.362718,37.807241],[-122.362791,37.807345],[-122.362882,37.807311],[-122.363039,37.807422],[-122.363121,37.807421],[-122.363224,37.807476],[-122.363397,37.807481],[-122.36363,37.807453],[-122.363958,37.807481],[-122.364123,37.807551],[-122.364356,37.807547],[-122.364623,37.807535],[-122.364732,37.807492],[-122.364803,37.807418],[-122.364976,37.807407],[-122.365069,37.807471],[-122.365152,37.807518],[-122.365143,37.807591],[-122.365215,37.80763],[-122.365307,37.807629],[-122.365796,37.807613],[-122.365927,37.807554],[-122.365989,37.807553],[-122.366094,37.807471],[-122.366174,37.807429],[-122.366286,37.807378],[-122.366408,37.807409],[-122.366682,37.807397],[-122.366846,37.807354],[-122.367112,37.80739],[-122.367254,37.807388],[-122.367318,37.80754],[-122.36734,37.807605],[-122.367404,37.807644],[-122.367455,37.807708],[-122.367673,37.807834],[-122.367785,37.807881],[-122.367879,37.807879],[-122.367926,37.807773],[-122.367957,37.807773],[-122.368007,37.807764],[-122.368163,37.807907],[-122.368216,37.807923],[-122.368532,37.807958],[-122.368616,37.808005],[-122.36878,37.808075],[-122.369018,37.808233],[-122.36904,37.808274],[-122.369186,37.808376],[-122.369235,37.808335],[-122.369267,37.808351],[-122.369226,37.808392],[-122.369279,37.808439],[-122.369629,37.808588],[-122.369783,37.808626],[-122.370118,37.80862],[-122.370304,37.808626],[-122.370459,37.808728],[-122.37061,37.808912],[-122.370725,37.808999],[-122.37091,37.809036],[-122.371085,37.809147],[-122.371107,37.809179],[-122.371281,37.809225],[-122.371603,37.809438],[-122.371686,37.809486],[-122.371929,37.80987],[-122.372026,37.810063],[-122.372162,37.810157],[-122.372255,37.810213],[-122.372287,37.810269],[-122.372372,37.810389],[-122.372558,37.810515],[-122.372652,37.810586],[-122.372819,37.81077],[-122.372843,37.810874],[-122.372825,37.811004],[-122.372844,37.811109],[-122.372856,37.811182],[-122.372805,37.811231],[-122.372509,37.811244],[-122.372267,37.811328],[-122.372166,37.811354],[-122.372099,37.811525],[-122.372041,37.811623],[-122.372015,37.811818],[-122.371952,37.811916],[-122.371907,37.812006],[-122.37186,37.812112],[-122.371875,37.812306],[-122.371786,37.812428],[-122.371793,37.812695],[-122.371722,37.812769],[-122.371695,37.81285],[-122.371666,37.812948],[-122.371606,37.812989],[-122.371566,37.813039],[-122.371649,37.813118],[-122.371753,37.813165],[-122.371728,37.813222],[-122.371793,37.81331],[-122.371784,37.813375],[-122.371768,37.813569],[-122.371574,37.813564],[-122.371437,37.81356],[-122.371365,37.813917],[-122.371246,37.814436],[-122.371266,37.814713],[-122.371466,37.815264],[-122.374798,37.820243],[-122.374907,37.820212],[-122.375228,37.819567],[-122.375397,37.819612],[-122.375399,37.819679],[-122.375054,37.820297],[-122.374908,37.82027],[-122.374836,37.8203],[-122.374856,37.820338],[-122.375063,37.820631],[-122.37546,37.821131],[-122.37556,37.821245],[-122.375587,37.821369],[-122.375862,37.821776],[-122.376136,37.822145],[-122.376248,37.822257],[-122.376364,37.822533],[-122.376536,37.822674],[-122.376635,37.822758],[-122.376786,37.822986],[-122.376827,37.823166],[-122.377023,37.823537],[-122.378859,37.826272],[-122.379125,37.826784],[-122.379103,37.82689],[-122.378958,37.827323],[-122.378878,37.827496],[-122.378242,37.829188],[-122.378142,37.829404],[-122.378021,37.829627],[-122.377693,37.830436],[-122.37756,37.830515],[-122.377266,37.830649],[-122.376836,37.830855],[-122.376625,37.830936],[-122.376254,37.831102],[-122.375179,37.83154],[-122.374903,37.831667],[-122.374608,37.831847],[-122.374353,37.832012],[-122.374209,37.83206],[-122.374084,37.832062],[-122.373787,37.832159],[-122.373434,37.83231],[-122.37332,37.832396],[-122.373257,37.832573],[-122.373176,37.832796],[-122.373036,37.832997],[-122.3728,37.833193],[-122.372589,37.833288],[-122.372455,37.833298],[-122.372415,37.833229],[-122.372443,37.833167],[-122.372499,37.833151],[-122.372577,37.833135],[-122.372719,37.833072],[-122.372843,37.832993],[-122.372993,37.83283],[-122.373093,37.832591],[-122.373172,37.832299],[-122.373133,37.832253]]]]},"properties":{"neighbourhood":"Treasure Island/YBI","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.478735,37.786898],[-122.477816,37.77287],[-122.479593,37.772789],[-122.488715,37.772357],[-122.505415,37.771628],[-122.513128,37.771214],[-122.513141,37.771331],[-122.513104,37.771429],[-122.513117,37.771539],[-122.513111,37.771707],[-122.513102,37.771742],[-122.513109,37.771801],[-122.513097,37.771902],[-122.513158,37.772238],[-122.513146,37.772257],[-122.513142,37.772283],[-122.513146,37.772307],[-122.513158,37.772328],[-122.51317,37.772346],[-122.513177,37.772365],[-122.51318,37.772389],[-122.513179,37.772408],[-122.513173,37.772427],[-122.513159,37.77245],[-122.513143,37.772472],[-122.513135,37.772493],[-122.513134,37.77252],[-122.513143,37.772547],[-122.513128,37.772863],[-122.513144,37.772918],[-122.513135,37.772953],[-122.513142,37.773052],[-122.513131,37.773072],[-122.513122,37.773095],[-122.513116,37.773113],[-122.513113,37.773129],[-122.51311,37.773148],[-122.513109,37.77317],[-122.51311,37.773191],[-122.513113,37.77321],[-122.513117,37.773227],[-122.513123,37.773245],[-122.513133,37.77327],[-122.513138,37.773293],[-122.513139,37.77331],[-122.513139,37.773327],[-122.513139,37.773344],[-122.513139,37.773361],[-122.513138,37.773379],[-122.513137,37.773396],[-122.513136,37.773413],[-122.513134,37.77343],[-122.513132,37.773447],[-122.513129,37.773464],[-122.513125,37.773488],[-122.513124,37.773511],[-122.513127,37.773531],[-122.51313,37.773555],[-122.513132,37.773574],[-122.513134,37.773592],[-122.513135,37.773611],[-122.513136,37.77363],[-122.513137,37.773648],[-122.513137,37.773667],[-122.513136,37.773685],[-122.513136,37.773704],[-122.513134,37.773722],[-122.513133,37.773741],[-122.513131,37.773759],[-122.513128,37.773778],[-122.513126,37.773796],[-122.513122,37.773815],[-122.513119,37.773833],[-122.513115,37.773851],[-122.51311,37.773869],[-122.513105,37.773888],[-122.513099,37.77391],[-122.513116,37.77455],[-122.513136,37.774699],[-122.513165,37.774891],[-122.513169,37.775046],[-122.509095,37.77519],[-122.509342,37.779145],[-122.509504,37.779923],[-122.507818,37.779952],[-122.5062,37.779868],[-122.505144,37.779774],[-122.505317,37.780998],[-122.492407,37.781663],[-122.492526,37.783501],[-122.487123,37.78376],[-122.487434,37.787491],[-122.484346,37.787654],[-122.484089,37.78791],[-122.483853,37.787607],[-122.48131,37.787092],[-122.478735,37.786898]]]]},"properties":{"neighbourhood":"Outer Richmond","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42085,37.708335],[-122.423878,37.708342],[-122.427675,37.708286],[-122.429105,37.708326],[-122.431295,37.708298],[-122.444787,37.708275],[-122.445691,37.70825],[-122.454284,37.708222],[-122.454011,37.708379],[-122.450596,37.709461],[-122.448249,37.71027],[-122.446344,37.711498],[-122.445175,37.71203],[-122.445078,37.712459],[-122.44129,37.715771],[-122.440824,37.716455],[-122.440548,37.716211],[-122.437606,37.714806],[-122.433579,37.713076],[-122.433488,37.713254],[-122.432823,37.713003],[-122.431741,37.712764],[-122.431095,37.712775],[-122.428707,37.711959],[-122.426535,37.711225],[-122.424899,37.710397],[-122.423799,37.709475],[-122.42085,37.708335]]]]},"properties":{"neighbourhood":"Crocker Amazon","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.440824,37.716455],[-122.438284,37.720181],[-122.435681,37.723558],[-122.434737,37.724514],[-122.434434,37.725289],[-122.432867,37.72711],[-122.430038,37.730063],[-122.428255,37.731785],[-122.427174,37.731734],[-122.425231,37.73151],[-122.422969,37.731461],[-122.420931,37.731751],[-122.419108,37.732037],[-122.415017,37.732018],[-122.413629,37.732468],[-122.411818,37.733182],[-122.408728,37.734429],[-122.406703,37.735178],[-122.406262,37.734811],[-122.40346,37.730495],[-122.401734,37.726163],[-122.401091,37.724311],[-122.410983,37.721653],[-122.423507,37.71897],[-122.423621,37.719224],[-122.423421,37.719826],[-122.425692,37.720216],[-122.425777,37.71936],[-122.42651,37.718579],[-122.426076,37.718415],[-122.426069,37.718158],[-122.426354,37.7167],[-122.426112,37.715678],[-122.431088,37.716623],[-122.432657,37.714887],[-122.433488,37.713254],[-122.433579,37.713076],[-122.437606,37.714806],[-122.440548,37.716211],[-122.440824,37.716455]]]]},"properties":{"neighbourhood":"Excelsior","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.469641,37.738545],[-122.470607,37.737745],[-122.471019,37.737683],[-122.481408,37.737126],[-122.482589,37.737489],[-122.48369,37.737416],[-122.484717,37.737179],[-122.485535,37.736837],[-122.486222,37.736771],[-122.487399,37.73697],[-122.488432,37.736953],[-122.489062,37.737325],[-122.489904,37.737913],[-122.490318,37.737906],[-122.491402,37.737231],[-122.491247,37.734005],[-122.493931,37.733905],[-122.497304,37.733793],[-122.499107,37.7342],[-122.500439,37.735053],[-122.502034,37.735464],[-122.503067,37.735446],[-122.505274,37.735518],[-122.507132,37.735432],[-122.508537,37.735361],[-122.508538,37.735402],[-122.508518,37.735491],[-122.508502,37.735571],[-122.50851,37.735594],[-122.508534,37.735605],[-122.508525,37.735624],[-122.508511,37.735643],[-122.508507,37.735662],[-122.508509,37.735748],[-122.508517,37.735778],[-122.508511,37.735801],[-122.508478,37.735805],[-122.508464,37.735828],[-122.50847,37.735855],[-122.508475,37.735877],[-122.508462,37.735938],[-122.508465,37.736075],[-122.50845,37.73613],[-122.508449,37.736218],[-122.508451,37.736317],[-122.50849,37.736474],[-122.508516,37.736663],[-122.508604,37.736824],[-122.508663,37.73696],[-122.508679,37.737056],[-122.50872,37.73716],[-122.508735,37.737317],[-122.508766,37.737443],[-122.508786,37.737552],[-122.508771,37.737638],[-122.508787,37.737709],[-122.508761,37.737789],[-122.508764,37.737875],[-122.508742,37.737969],[-122.508748,37.738191],[-122.508757,37.738392],[-122.508804,37.738614],[-122.508804,37.73871],[-122.508865,37.738916],[-122.508895,37.739003],[-122.508898,37.739127],[-122.508891,37.73924],[-122.508823,37.739425],[-122.508792,37.739563],[-122.50878,37.739716],[-122.508775,37.739755],[-122.508764,37.739774],[-122.508753,37.739788],[-122.508748,37.739826],[-122.508778,37.739858],[-122.508779,37.7399],[-122.508763,37.739933],[-122.508763,37.739965],[-122.50877,37.739998],[-122.508777,37.740016],[-122.508748,37.740054],[-122.508749,37.740077],[-122.508738,37.74011],[-122.508739,37.740129],[-122.508745,37.740161],[-122.50874,37.740194],[-122.508724,37.740231],[-122.508724,37.740255],[-122.508732,37.740306],[-122.508744,37.740319],[-122.508774,37.740361],[-122.508808,37.740402],[-122.508829,37.740434],[-122.508813,37.740491],[-122.508861,37.740536],[-122.508851,37.740583],[-122.508857,37.740616],[-122.50887,37.740657],[-122.508871,37.740695],[-122.508867,37.740741],[-122.508879,37.74076],[-122.508914,37.740773],[-122.508933,37.740815],[-122.508928,37.740857],[-122.508929,37.74088],[-122.508936,37.740917],[-122.508954,37.740935],[-122.508984,37.740963],[-122.509009,37.741],[-122.509027,37.741037],[-122.509023,37.741088],[-122.509036,37.741139],[-122.509054,37.741171],[-122.509067,37.741199],[-122.509097,37.741222],[-122.509133,37.741258],[-122.509186,37.741257],[-122.509204,37.741299],[-122.509247,37.741345],[-122.509242,37.741401],[-122.509226,37.741457],[-122.509227,37.741499],[-122.509216,37.741522],[-122.509199,37.741541],[-122.509177,37.741602],[-122.509208,37.741662],[-122.509186,37.741709],[-122.509189,37.741798],[-122.509155,37.741845],[-122.50915,37.741873],[-122.509151,37.741919],[-122.509123,37.741971],[-122.509101,37.742027],[-122.509102,37.742051],[-122.509091,37.742107],[-122.509063,37.742131],[-122.509052,37.742168],[-122.509053,37.742215],[-122.509066,37.742256],[-122.509073,37.742307],[-122.509057,37.742359],[-122.509052,37.742405],[-122.509054,37.742457],[-122.509073,37.742522],[-122.509092,37.742549],[-122.50911,37.742595],[-122.509106,37.742642],[-122.509124,37.742665],[-122.509131,37.742707],[-122.509144,37.742739],[-122.509168,37.742762],[-122.509192,37.742808],[-122.509182,37.742841],[-122.509159,37.74286],[-122.509186,37.74299],[-122.50918,37.743013],[-122.509193,37.74306],[-122.509209,37.74309],[-122.509236,37.743106],[-122.509246,37.743145],[-122.50925,37.743203],[-122.509269,37.743236],[-122.509301,37.743337],[-122.509303,37.743431],[-122.509335,37.743519],[-122.509353,37.743551],[-122.509366,37.743593],[-122.509378,37.743606],[-122.50939,37.74362],[-122.509397,37.743662],[-122.50941,37.743685],[-122.509422,37.743703],[-122.509417,37.743736],[-122.509418,37.743773],[-122.509442,37.743791],[-122.50946,37.743824],[-122.509467,37.743847],[-122.509479,37.743861],[-122.509498,37.743907],[-122.509505,37.743944],[-122.509523,37.743967],[-122.509535,37.743986],[-122.509566,37.744022],[-122.509567,37.744087],[-122.50958,37.744106],[-122.509605,37.744161],[-122.509617,37.744184],[-122.509639,37.744233],[-122.509631,37.744282],[-122.509638,37.74431],[-122.509656,37.744333],[-122.509651,37.744365],[-122.509652,37.744403],[-122.509683,37.744439],[-122.509684,37.744495],[-122.509662,37.744538],[-122.509657,37.74457],[-122.509652,37.744598],[-122.509635,37.744631],[-122.509636,37.744659],[-122.509631,37.744687],[-122.509608,37.744739],[-122.509616,37.744785],[-122.509593,37.744818],[-122.50953,37.744866],[-122.509507,37.74488],[-122.509466,37.7449],[-122.509443,37.744928],[-122.509462,37.744956],[-122.509463,37.744988],[-122.509458,37.745026],[-122.509441,37.745058],[-122.509436,37.745091],[-122.509432,37.745161],[-122.509404,37.745267],[-122.506604,37.745398],[-122.495451,37.745922],[-122.481842,37.746486],[-122.475881,37.746809],[-122.476014,37.748679],[-122.469506,37.748954],[-122.46941,37.747176],[-122.470509,37.747049],[-122.469959,37.739288],[-122.470022,37.739068],[-122.469948,37.73885],[-122.469641,37.738545]]]]},"properties":{"neighbourhood":"Parkside","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.394252,37.800074],[-122.394244,37.799994],[-122.394306,37.799956],[-122.39434,37.799987],[-122.394406,37.799984],[-122.39442,37.799998],[-122.395383,37.799442],[-122.395444,37.799408],[-122.395461,37.799349],[-122.395565,37.799287],[-122.395651,37.799284],[-122.396138,37.799011],[-122.396526,37.798778],[-122.396509,37.798757],[-122.396512,37.79874],[-122.396562,37.798709],[-122.396529,37.798675],[-122.396574,37.79865],[-122.396523,37.798594],[-122.396499,37.798568],[-122.396467,37.798586],[-122.396357,37.798472],[-122.396393,37.798452],[-122.395861,37.797871],[-122.395833,37.797874],[-122.395798,37.797879],[-122.395769,37.797884],[-122.395744,37.797889],[-122.395719,37.797895],[-122.395694,37.797901],[-122.39567,37.797908],[-122.395646,37.797916],[-122.395614,37.797928],[-122.395588,37.797939],[-122.395565,37.797949],[-122.39554,37.797961],[-122.39551,37.797977],[-122.39383,37.798941],[-122.39381,37.798938],[-122.393554,37.798652],[-122.393558,37.798636],[-122.395455,37.797549],[-122.395493,37.79747],[-122.395423,37.797393],[-122.395304,37.797394],[-122.395132,37.797495],[-122.394996,37.797341],[-122.395177,37.797236],[-122.395204,37.797153],[-122.395175,37.797121],[-122.395016,37.797124],[-122.394842,37.797228],[-122.394877,37.797258],[-122.393207,37.79825],[-122.393186,37.798249],[-122.39292,37.797971],[-122.392923,37.797954],[-122.392933,37.797938],[-122.393023,37.797892],[-122.393418,37.797664],[-122.393495,37.797595],[-122.393616,37.797493],[-122.393796,37.797347],[-122.393858,37.797294],[-122.394535,37.796891],[-122.394518,37.796875],[-122.394797,37.796709],[-122.394686,37.796587],[-122.394273,37.796819],[-122.393517,37.797258],[-122.393551,37.797294],[-122.393169,37.797508],[-122.393092,37.797426],[-122.393469,37.797208],[-122.393491,37.797233],[-122.394127,37.796863],[-122.393932,37.796649],[-122.39385,37.796688],[-122.393743,37.796575],[-122.393881,37.796507],[-122.393598,37.796198],[-122.393524,37.796237],[-122.393397,37.796098],[-122.393482,37.796057],[-122.393263,37.795831],[-122.393199,37.795863],[-122.393014,37.795655],[-122.393055,37.795628],[-122.392998,37.795561],[-122.39159,37.796205],[-122.391196,37.795779],[-122.392411,37.79482],[-122.392267,37.794668],[-122.391941,37.794854],[-122.391649,37.794547],[-122.391828,37.794445],[-122.391802,37.794417],[-122.391946,37.794335],[-122.39179,37.794171],[-122.391734,37.794203],[-122.391667,37.794132],[-122.391722,37.794101],[-122.391673,37.794048],[-122.391982,37.793872],[-122.391589,37.793528],[-122.391724,37.793429],[-122.389334,37.79142],[-122.391297,37.789797],[-122.396671,37.785584],[-122.401146,37.781999],[-122.405808,37.785716],[-122.405844,37.785687],[-122.405863,37.785755],[-122.406223,37.785713],[-122.406326,37.786213],[-122.407156,37.790357],[-122.406364,37.79045],[-122.40628,37.790461],[-122.406205,37.790471],[-122.405901,37.790502],[-122.404041,37.790763],[-122.404911,37.795038],[-122.40504,37.79574],[-122.405319,37.797246],[-122.405445,37.798012],[-122.40311,37.798306],[-122.399679,37.798808],[-122.398275,37.798886],[-122.397223,37.799369],[-122.397071,37.799198],[-122.396741,37.798834],[-122.396702,37.798856],[-122.39667,37.798822],[-122.396613,37.79885],[-122.396593,37.798846],[-122.396579,37.798833],[-122.39571,37.799334],[-122.395682,37.799401],[-122.395581,37.799459],[-122.395492,37.799462],[-122.395204,37.799626],[-122.394471,37.800049],[-122.394486,37.800063],[-122.394463,37.80011],[-122.394496,37.800144],[-122.394437,37.800182],[-122.394338,37.800158],[-122.394252,37.800074]],[[-122.392772,37.794535],[-122.392528,37.794327],[-122.392238,37.794495],[-122.392491,37.794757],[-122.392772,37.794535]]]]},"properties":{"neighbourhood":"Financial District","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.459123,37.708218],[-122.459728,37.708206],[-122.460029,37.708193],[-122.461085,37.708202],[-122.46139,37.708194],[-122.461951,37.7082],[-122.462236,37.708188],[-122.462765,37.708187],[-122.463939,37.708203],[-122.464812,37.708213],[-122.469251,37.708202],[-122.469299,37.708202],[-122.470832,37.708197],[-122.471051,37.708198],[-122.471053,37.710378],[-122.471181,37.712619],[-122.471635,37.714143],[-122.472389,37.716593],[-122.47262,37.71752],[-122.472507,37.718452],[-122.472308,37.721355],[-122.471885,37.726178],[-122.47179,37.730392],[-122.47171,37.731043],[-122.470206,37.730419],[-122.468529,37.729517],[-122.4681,37.728922],[-122.467593,37.728],[-122.466468,37.727144],[-122.465623,37.726446],[-122.461521,37.725037],[-122.456948,37.724019],[-122.452524,37.723167],[-122.452239,37.723112],[-122.451678,37.722738],[-122.446597,37.720743],[-122.448125,37.718584],[-122.448924,37.717531],[-122.449535,37.717193],[-122.451807,37.714528],[-122.452543,37.713695],[-122.453561,37.713131],[-122.454442,37.71257],[-122.455853,37.711233],[-122.459123,37.708218]]]]},"properties":{"neighbourhood":"Ocean View","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.424756,37.747849],[-122.424949,37.749725],[-122.425578,37.756617],[-122.426761,37.769577],[-122.426329,37.769601],[-122.423302,37.772048],[-122.423269,37.772074],[-122.42269,37.770624],[-122.421172,37.770221],[-122.419768,37.770073],[-122.415771,37.769625],[-122.412755,37.769588],[-122.40876,37.769225],[-122.407029,37.768911],[-122.40528,37.767914],[-122.405032,37.766635],[-122.405014,37.765952],[-122.404982,37.76467],[-122.405465,37.762525],[-122.406285,37.760887],[-122.406249,37.759519],[-122.405147,37.758511],[-122.403943,37.757761],[-122.403271,37.756746],[-122.402891,37.754529],[-122.403019,37.751107],[-122.403576,37.749388],[-122.404159,37.749379],[-122.405767,37.749097],[-122.407579,37.748383],[-122.411344,37.748237],[-122.415005,37.748263],[-122.418126,37.748212],[-122.420171,37.748179],[-122.421568,37.74807],[-122.423181,37.747959],[-122.424756,37.747849]]]]},"properties":{"neighbourhood":"Mission","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.452524,37.723167],[-122.456948,37.724019],[-122.461521,37.725037],[-122.465623,37.726446],[-122.466468,37.727144],[-122.467593,37.728],[-122.4681,37.728922],[-122.468529,37.729517],[-122.470206,37.730419],[-122.47171,37.731043],[-122.471507,37.732695],[-122.471352,37.734668],[-122.47104,37.735877],[-122.470443,37.736762],[-122.469028,37.737935],[-122.469641,37.738545],[-122.469948,37.73885],[-122.470022,37.739068],[-122.469959,37.739288],[-122.470509,37.747049],[-122.46941,37.747176],[-122.469506,37.748954],[-122.46632,37.749088],[-122.46663,37.752819],[-122.463332,37.75293],[-122.462757,37.752438],[-122.461609,37.751509],[-122.46142,37.751562],[-122.461391,37.751414],[-122.460814,37.750439],[-122.460664,37.750003],[-122.459744,37.749088],[-122.458754,37.74812],[-122.458745,37.747792],[-122.459077,37.747294],[-122.458648,37.746699],[-122.457963,37.746875],[-122.4563,37.746519],[-122.454774,37.746161],[-122.453797,37.745685],[-122.452418,37.745653],[-122.451866,37.745608],[-122.451701,37.745454],[-122.450947,37.744748],[-122.449805,37.743234],[-122.449176,37.742916],[-122.447515,37.742616],[-122.446685,37.74252],[-122.44619,37.742036],[-122.446101,37.741271],[-122.445124,37.740795],[-122.444575,37.740858],[-122.443867,37.740159],[-122.442685,37.73974],[-122.442397,37.739253],[-122.442655,37.738592],[-122.442355,37.737667],[-122.442549,37.737171],[-122.443429,37.736555],[-122.443836,37.736329],[-122.443894,37.73589],[-122.443403,37.73557],[-122.442242,37.735972],[-122.441746,37.735902],[-122.44206,37.734629],[-122.445288,37.734576],[-122.445672,37.733822],[-122.446894,37.734229],[-122.448376,37.734311],[-122.44823,37.733886],[-122.452534,37.733815],[-122.453465,37.733372],[-122.453375,37.729954],[-122.452431,37.729862],[-122.452215,37.726767],[-122.452545,37.723983],[-122.452524,37.723167]]]]},"properties":{"neighbourhood":"West of Twin Peaks","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.446457,37.775805],[-122.454635,37.774767],[-122.454691,37.774696],[-122.454706,37.774766],[-122.465068,37.773423],[-122.46991,37.77323],[-122.477816,37.77287],[-122.478735,37.786898],[-122.478282,37.786864],[-122.475543,37.78691],[-122.465782,37.787129],[-122.465955,37.788353],[-122.4626,37.789041],[-122.462539,37.786737],[-122.45924,37.786848],[-122.45888,37.781221],[-122.455721,37.781329],[-122.452852,37.781767],[-122.450611,37.782028],[-122.448931,37.782278],[-122.447378,37.782383],[-122.447519,37.782023],[-122.447642,37.781352],[-122.447164,37.779185],[-122.446457,37.775805]]]]},"properties":{"neighbourhood":"Inner Richmond","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.446806,37.805401],[-122.44678,37.805405],[-122.446462,37.805444],[-122.445989,37.805505],[-122.445995,37.805521],[-122.445969,37.805508],[-122.445278,37.805602],[-122.44449,37.805698],[-122.443752,37.805792],[-122.443026,37.805886],[-122.442516,37.805951],[-122.442428,37.806051],[-122.442522,37.806508],[-122.442586,37.806579],[-122.443139,37.806512],[-122.4435,37.806469],[-122.443668,37.806463],[-122.443849,37.806442],[-122.443967,37.806433],[-122.444009,37.806429],[-122.444015,37.806454],[-122.443976,37.806459],[-122.443855,37.806474],[-122.443859,37.806494],[-122.443718,37.806527],[-122.443664,37.806537],[-122.443642,37.806542],[-122.44361,37.806549],[-122.443569,37.806553],[-122.442907,37.806633],[-122.442904,37.806721],[-122.442884,37.806645],[-122.442865,37.806656],[-122.44262,37.806691],[-122.442578,37.806706],[-122.44256,37.806712],[-122.442535,37.806724],[-122.442513,37.806741],[-122.442505,37.806755],[-122.442502,37.806773],[-122.442505,37.806802],[-122.442506,37.806841],[-122.4425,37.806873],[-122.442514,37.806886],[-122.442546,37.807048],[-122.442553,37.807065],[-122.442548,37.807084],[-122.442538,37.807099],[-122.442522,37.807114],[-122.442503,37.807125],[-122.44248,37.807131],[-122.44246,37.807134],[-122.442439,37.807132],[-122.442418,37.807127],[-122.442399,37.807119],[-122.44238,37.807104],[-122.442364,37.807085],[-122.442356,37.807067],[-122.442353,37.807048],[-122.442354,37.80703],[-122.442326,37.806851],[-122.442321,37.806832],[-122.44231,37.806812],[-122.442296,37.806798],[-122.442276,37.806785],[-122.442252,37.806779],[-122.442261,37.806815],[-122.442335,37.807192],[-122.442575,37.807155],[-122.44258,37.807182],[-122.442316,37.807223],[-122.442297,37.80712],[-122.44225,37.80713],[-122.442201,37.807247],[-122.442224,37.807141],[-122.442177,37.807146],[-122.442129,37.807262],[-122.442156,37.807164],[-122.442142,37.807154],[-122.442111,37.80716],[-122.442063,37.807276],[-122.442089,37.80718],[-122.442074,37.807168],[-122.441952,37.807195],[-122.441902,37.807314],[-122.441931,37.807213],[-122.441916,37.807203],[-122.44183,37.807221],[-122.441794,37.807305],[-122.441803,37.807234],[-122.441714,37.807247],[-122.441678,37.807328],[-122.441686,37.807259],[-122.441591,37.807273],[-122.441555,37.807354],[-122.441565,37.807284],[-122.441529,37.807287],[-122.441495,37.807363],[-122.441508,37.807305],[-122.441493,37.807295],[-122.441459,37.807302],[-122.441423,37.807383],[-122.441432,37.807314],[-122.441347,37.807326],[-122.441316,37.807394],[-122.441323,37.807336],[-122.441242,37.807349],[-122.44121,37.807418],[-122.441215,37.807361],[-122.441129,37.807374],[-122.441098,37.807441],[-122.441101,37.807386],[-122.441008,37.8074],[-122.440982,37.807467],[-122.440991,37.80741],[-122.440966,37.807311],[-122.441,37.807376],[-122.441091,37.807358],[-122.441078,37.807281],[-122.441106,37.807346],[-122.441122,37.807355],[-122.441202,37.807334],[-122.441188,37.807256],[-122.441216,37.807319],[-122.441235,37.807331],[-122.441307,37.807309],[-122.441296,37.807234],[-122.441331,37.807306],[-122.441408,37.807289],[-122.441396,37.807213],[-122.441424,37.807277],[-122.44144,37.807286],[-122.441505,37.807272],[-122.441518,37.807259],[-122.441538,37.807265],[-122.441615,37.807244],[-122.441606,37.807181],[-122.441637,37.807238],[-122.441715,37.807227],[-122.441729,37.807212],[-122.44175,37.807219],[-122.441815,37.807205],[-122.44183,37.807191],[-122.441849,37.807197],[-122.441916,37.807178],[-122.441908,37.807116],[-122.441938,37.807174],[-122.442004,37.807164],[-122.442017,37.80715],[-122.442038,37.807156],[-122.442093,37.807144],[-122.442109,37.807129],[-122.44213,37.807136],[-122.442193,37.807119],[-122.442184,37.807058],[-122.442214,37.807112],[-122.442293,37.807101],[-122.442243,37.806837],[-122.442164,37.806849],[-122.442161,37.806912],[-122.442142,37.806853],[-122.442072,37.806856],[-122.442057,37.806868],[-122.442039,37.80686],[-122.441972,37.806872],[-122.441969,37.806936],[-122.441949,37.806876],[-122.441882,37.806878],[-122.441867,37.806891],[-122.441847,37.806882],[-122.441786,37.806889],[-122.441769,37.806902],[-122.44175,37.806893],[-122.441684,37.806901],[-122.441666,37.806915],[-122.441646,37.806905],[-122.441568,37.806919],[-122.441564,37.806983],[-122.441544,37.806921],[-122.441466,37.806925],[-122.44145,37.806939],[-122.44143,37.80693],[-122.441365,37.806941],[-122.441351,37.806955],[-122.441327,37.806946],[-122.441309,37.806954],[-122.441311,37.807032],[-122.441293,37.806965],[-122.441268,37.806956],[-122.441246,37.80697],[-122.441225,37.806962],[-122.441151,37.806972],[-122.441136,37.806985],[-122.441116,37.806977],[-122.441038,37.806988],[-122.441023,37.807001],[-122.441003,37.806993],[-122.440919,37.80701],[-122.440919,37.807081],[-122.440896,37.806988],[-122.441218,37.806943],[-122.441262,37.806937],[-122.441445,37.806909],[-122.442241,37.806818],[-122.442229,37.806781],[-122.442146,37.806785],[-122.442128,37.806792],[-122.442106,37.806799],[-122.442079,37.806806],[-122.442051,37.806812],[-122.442022,37.806816],[-122.441996,37.806819],[-122.441962,37.80682],[-122.441933,37.806819],[-122.441905,37.806824],[-122.441883,37.806829],[-122.441861,37.806833],[-122.441838,37.806837],[-122.44181,37.80684],[-122.441772,37.806841],[-122.441739,37.80684],[-122.441711,37.806845],[-122.441692,37.80685],[-122.441672,37.806854],[-122.441653,37.806858],[-122.441633,37.806861],[-122.441614,37.806863],[-122.441594,37.806865],[-122.441566,37.806867],[-122.441441,37.806882],[-122.441373,37.806885],[-122.441306,37.806883],[-122.441275,37.8069],[-122.441242,37.806896],[-122.441194,37.806917],[-122.44111,37.806924],[-122.441043,37.806926],[-122.440998,37.806934],[-122.440919,37.806937],[-122.4409,37.806947],[-122.440782,37.806951],[-122.440679,37.806957],[-122.440547,37.806968],[-122.440468,37.806989],[-122.440371,37.806996],[-122.440135,37.807017],[-122.439897,37.80705],[-122.439672,37.807088],[-122.439538,37.807116],[-122.43941,37.80713],[-122.43924,37.80714],[-122.439104,37.807152],[-122.438767,37.807201],[-122.438299,37.807257],[-122.437961,37.807297],[-122.437689,37.807345],[-122.437515,37.807372],[-122.437376,37.807394],[-122.437259,37.807408],[-122.437146,37.807412],[-122.437032,37.807433],[-122.436886,37.807471],[-122.436715,37.807492],[-122.436614,37.807523],[-122.436564,37.807532],[-122.436508,37.80752],[-122.436299,37.807544],[-122.43624,37.807559],[-122.436155,37.807557],[-122.435982,37.807557],[-122.435829,37.80757],[-122.435859,37.807692],[-122.433925,37.807945],[-122.433814,37.807913],[-122.433647,37.808184],[-122.43336,37.808074],[-122.433418,37.808091],[-122.433469,37.808109],[-122.433526,37.808129],[-122.433578,37.808147],[-122.433639,37.808165],[-122.433666,37.808117],[-122.433691,37.808075],[-122.433715,37.808034],[-122.433739,37.807993],[-122.433764,37.807952],[-122.433794,37.807907],[-122.433757,37.807889],[-122.433765,37.807874],[-122.433933,37.80793],[-122.435839,37.807681],[-122.435832,37.807653],[-122.435804,37.807573],[-122.435783,37.807571],[-122.435762,37.807564],[-122.435741,37.807551],[-122.435725,37.80753],[-122.43572,37.807514],[-122.435679,37.807411],[-122.435671,37.807321],[-122.435657,37.807254],[-122.435585,37.806914],[-122.435555,37.806907],[-122.435566,37.806995],[-122.435535,37.806906],[-122.435563,37.806888],[-122.435541,37.806876],[-122.435513,37.806869],[-122.435345,37.806882],[-122.435123,37.806899],[-122.434873,37.806933],[-122.434424,37.806994],[-122.43428,37.807005],[-122.43426,37.807004],[-122.43424,37.807002],[-122.434219,37.806997],[-122.434193,37.806988],[-122.434166,37.806973],[-122.434151,37.806961],[-122.434138,37.806947],[-122.434127,37.806932],[-122.434123,37.806902],[-122.434095,37.806848],[-122.434078,37.80682],[-122.434068,37.806798],[-122.43406,37.806777],[-122.434054,37.806758],[-122.43405,37.806738],[-122.433998,37.806744],[-122.433968,37.806765],[-122.43394,37.806753],[-122.433868,37.806762],[-122.433846,37.806781],[-122.433818,37.806768],[-122.433759,37.806775],[-122.433737,37.806794],[-122.433709,37.806781],[-122.433653,37.806788],[-122.433632,37.806807],[-122.433604,37.806795],[-122.433555,37.806801],[-122.433533,37.80682],[-122.433506,37.806807],[-122.43345,37.806814],[-122.433428,37.806833],[-122.4334,37.80682],[-122.433354,37.806826],[-122.433333,37.806844],[-122.433305,37.806832],[-122.433259,37.806837],[-122.433238,37.806856],[-122.43321,37.806844],[-122.433158,37.80685],[-122.433136,37.806869],[-122.433108,37.806856],[-122.433056,37.806863],[-122.433035,37.806882],[-122.433007,37.806869],[-122.432924,37.806879],[-122.43292,37.806863],[-122.433006,37.806852],[-122.433024,37.806834],[-122.433049,37.806847],[-122.433111,37.806839],[-122.43313,37.806821],[-122.433155,37.806834],[-122.433213,37.806827],[-122.433232,37.806808],[-122.433256,37.806821],[-122.433316,37.806814],[-122.433335,37.806796],[-122.433359,37.806808],[-122.433416,37.806801],[-122.433435,37.806783],[-122.433459,37.806796],[-122.433517,37.806789],[-122.433535,37.806771],[-122.43356,37.806783],[-122.433611,37.806777],[-122.43363,37.806759],[-122.433655,37.806772],[-122.433708,37.806765],[-122.433726,37.806747],[-122.433751,37.80676],[-122.433798,37.806754],[-122.433817,37.806736],[-122.433841,37.806748],[-122.433896,37.806741],[-122.433915,37.806723],[-122.433939,37.806736],[-122.434014,37.806726],[-122.434047,37.806718],[-122.434047,37.806698],[-122.434047,37.806677],[-122.434016,37.806489],[-122.434007,37.806474],[-122.433999,37.806456],[-122.433995,37.806441],[-122.433961,37.806431],[-122.43399,37.806416],[-122.433989,37.806393],[-122.433993,37.806367],[-122.433982,37.806335],[-122.433943,37.806226],[-122.433951,37.806183],[-122.433938,37.806124],[-122.433873,37.805817],[-122.433851,37.805719],[-122.433841,37.805704],[-122.43383,37.805689],[-122.433814,37.805673],[-122.433796,37.805656],[-122.433774,37.80564],[-122.433751,37.805626],[-122.433732,37.805617],[-122.433711,37.805608],[-122.43369,37.805601],[-122.433671,37.805596],[-122.433651,37.805592],[-122.43362,37.805588],[-122.433594,37.805587],[-122.433573,37.805587],[-122.43355,37.805588],[-122.433525,37.805592],[-122.433505,37.805596],[-122.43271,37.805725],[-122.432684,37.805738],[-122.432663,37.805751],[-122.432645,37.805767],[-122.432632,37.805782],[-122.43262,37.805798],[-122.432611,37.805814],[-122.432606,37.805829],[-122.432602,37.805845],[-122.432501,37.805941],[-122.432395,37.805972],[-122.432516,37.80596],[-122.432629,37.805873],[-122.432643,37.805884],[-122.432527,37.805974],[-122.432403,37.806],[-122.43239,37.806073],[-122.432403,37.806109],[-122.432491,37.806359],[-122.432449,37.806367],[-122.432521,37.80658],[-122.432498,37.806585],[-122.432425,37.806372],[-122.432402,37.806376],[-122.432302,37.806082],[-122.432369,37.806071],[-122.432381,37.806005],[-122.432353,37.80601],[-122.43235,37.805981],[-122.43232,37.805983],[-122.432302,37.805994],[-122.43228,37.806007],[-122.432257,37.806018],[-122.432227,37.806023],[-122.432194,37.80604],[-122.432179,37.806059],[-122.432171,37.806078],[-122.432165,37.8061],[-122.43217,37.806118],[-122.432186,37.806148],[-122.43221,37.806153],[-122.432227,37.806214],[-122.432208,37.806231],[-122.432203,37.806258],[-122.432206,37.806291],[-122.432221,37.806338],[-122.432307,37.806805],[-122.432383,37.807104],[-122.432565,37.80848],[-122.432611,37.808498],[-122.432595,37.808512],[-122.43234,37.808512],[-122.432079,37.807223],[-122.432,37.807178],[-122.431443,37.807251],[-122.431386,37.807314],[-122.431728,37.809024],[-122.431341,37.809057],[-122.430995,37.807366],[-122.430916,37.80732],[-122.430361,37.807393],[-122.430303,37.807457],[-122.430622,37.809167],[-122.430108,37.809215],[-122.429835,37.807825],[-122.429263,37.807903],[-122.42927,37.80797],[-122.428237,37.808406],[-122.427001,37.808109],[-122.426996,37.808141],[-122.427546,37.808641],[-122.428014,37.80857],[-122.428043,37.808705],[-122.427533,37.808783],[-122.427524,37.808739],[-122.427301,37.808773],[-122.427287,37.808709],[-122.42749,37.808678],[-122.42691,37.808151],[-122.426839,37.808113],[-122.42682,37.808122],[-122.426762,37.80796],[-122.426032,37.806912],[-122.425599,37.806473],[-122.424788,37.802304],[-122.423822,37.797606],[-122.445588,37.794874],[-122.446702,37.79474],[-122.447822,37.801591],[-122.448242,37.801529],[-122.449096,37.801961],[-122.449537,37.802678],[-122.44955,37.80318],[-122.449287,37.803853],[-122.448944,37.804194],[-122.448458,37.804425],[-122.448473,37.804982],[-122.448332,37.804985],[-122.448577,37.806263],[-122.447876,37.80633],[-122.447983,37.806972],[-122.447835,37.807052],[-122.447181,37.807477],[-122.446638,37.807525],[-122.446477,37.807517],[-122.445257,37.807626],[-122.444832,37.807612],[-122.444811,37.80761],[-122.44479,37.807607],[-122.443762,37.807713],[-122.443685,37.807722],[-122.442712,37.807973],[-122.442626,37.808004],[-122.442524,37.808024],[-122.442354,37.808043],[-122.441768,37.808105],[-122.441537,37.808127],[-122.4412,37.808168],[-122.440951,37.808196],[-122.440666,37.808282],[-122.440646,37.808292],[-122.440627,37.808301],[-122.440608,37.808312],[-122.440589,37.808322],[-122.44057,37.808333],[-122.440552,37.808345],[-122.440534,37.808357],[-122.440511,37.808373],[-122.440488,37.80839],[-122.440467,37.808408],[-122.440446,37.808426],[-122.44043,37.80844],[-122.440416,37.808454],[-122.440397,37.808474],[-122.440383,37.808488],[-122.440369,37.808505],[-122.440222,37.808671],[-122.440123,37.808754],[-122.440032,37.808833],[-122.439928,37.808779],[-122.440278,37.808222],[-122.440296,37.808207],[-122.440314,37.808195],[-122.44033,37.808185],[-122.440346,37.808176],[-122.440366,37.808166],[-122.44039,37.808157],[-122.440414,37.808149],[-122.440436,37.808143],[-122.440463,37.808139],[-122.440632,37.808107],[-122.440778,37.808098],[-122.441785,37.807988],[-122.441816,37.807985],[-122.442321,37.807932],[-122.442377,37.807918],[-122.442423,37.80788],[-122.442454,37.807816],[-122.442448,37.807789],[-122.442373,37.807801],[-122.442345,37.807813],[-122.442347,37.807836],[-122.442033,37.807875],[-122.442009,37.807734],[-122.442027,37.807721],[-122.442053,37.807847],[-122.442208,37.807834],[-122.442218,37.807819],[-122.442199,37.807677],[-122.442243,37.807823],[-122.442318,37.807813],[-122.442293,37.807666],[-122.442312,37.807656],[-122.442337,37.80778],[-122.442361,37.807783],[-122.442405,37.807728],[-122.442385,37.807783],[-122.442444,37.807774],[-122.442405,37.807643],[-122.442685,37.807596],[-122.442713,37.807793],[-122.442763,37.807809],[-122.442788,37.807806],[-122.442903,37.807794],[-122.442998,37.807774],[-122.443056,37.807754],[-122.443128,37.807744],[-122.443202,37.807724],[-122.44326,37.807705],[-122.4433,37.807697],[-122.443434,37.807672],[-122.443672,37.807598],[-122.443659,37.807485],[-122.443881,37.807439],[-122.44418,37.807383],[-122.444339,37.807346],[-122.444477,37.807304],[-122.444798,37.807204],[-122.445257,37.807071],[-122.445222,37.807016],[-122.445091,37.807031],[-122.445057,37.807025],[-122.445159,37.807007],[-122.445178,37.806986],[-122.445117,37.806952],[-122.444841,37.806985],[-122.445027,37.806953],[-122.445058,37.806919],[-122.445006,37.806889],[-122.444888,37.8069],[-122.444877,37.806834],[-122.444618,37.806865],[-122.444919,37.806817],[-122.445008,37.806867],[-122.444974,37.8068],[-122.444993,37.806794],[-122.445039,37.806884],[-122.445122,37.806931],[-122.445046,37.806781],[-122.445065,37.806775],[-122.445153,37.806949],[-122.445231,37.806992],[-122.445356,37.806955],[-122.445248,37.806723],[-122.445267,37.806717],[-122.445375,37.80695],[-122.445469,37.806922],[-122.445353,37.806692],[-122.445372,37.806686],[-122.445489,37.806916],[-122.445562,37.806894],[-122.445446,37.806665],[-122.445465,37.806659],[-122.445581,37.806889],[-122.445704,37.806852],[-122.445652,37.806749],[-122.445653,37.806727],[-122.445896,37.806816],[-122.445736,37.806863],[-122.445754,37.806897],[-122.446385,37.806715],[-122.446259,37.806718],[-122.446193,37.806738],[-122.44617,37.806727],[-122.445982,37.806783],[-122.44597,37.806763],[-122.445597,37.806626],[-122.445607,37.806611],[-122.446001,37.806756],[-122.44615,37.806712],[-122.445708,37.80655],[-122.445718,37.806535],[-122.446177,37.806704],[-122.446283,37.806673],[-122.446005,37.8065],[-122.44602,37.806488],[-122.446306,37.806667],[-122.446421,37.806633],[-122.446152,37.806465],[-122.446167,37.806453],[-122.446443,37.806626],[-122.446554,37.806593],[-122.446392,37.806492],[-122.446407,37.806481],[-122.446541,37.806564],[-122.446531,37.806546],[-122.44662,37.80652],[-122.446643,37.806584],[-122.446711,37.806569],[-122.446939,37.806492],[-122.44695,37.806511],[-122.446721,37.806589],[-122.446734,37.806615],[-122.446997,37.806534],[-122.44699,37.806444],[-122.446973,37.806427],[-122.446988,37.806409],[-122.446984,37.806388],[-122.446968,37.806372],[-122.446979,37.806357],[-122.446973,37.806324],[-122.446767,37.806337],[-122.446941,37.806316],[-122.446957,37.806296],[-122.446942,37.806222],[-122.446919,37.806207],[-122.446935,37.806186],[-122.44692,37.806114],[-122.446902,37.8061],[-122.446914,37.806085],[-122.446909,37.806062],[-122.446892,37.806051],[-122.446904,37.806033],[-122.446899,37.806011],[-122.446881,37.805997],[-122.446894,37.805981],[-122.446873,37.805905],[-122.44667,37.805915],[-122.44686,37.805891],[-122.446874,37.80588],[-122.44686,37.805805],[-122.446843,37.805793],[-122.446854,37.805777],[-122.44685,37.805753],[-122.446835,37.805742],[-122.446845,37.805727],[-122.446841,37.805706],[-122.446823,37.805692],[-122.446835,37.805677],[-122.446832,37.805658],[-122.446815,37.805646],[-122.446825,37.805624],[-122.446804,37.805604],[-122.446818,37.805586],[-122.446808,37.805536],[-122.446789,37.805523],[-122.446801,37.8055],[-122.446788,37.805489],[-122.446701,37.805499],[-122.446699,37.805482],[-122.446794,37.805472],[-122.44678,37.805405],[-122.446818,37.805469],[-122.446936,37.806057],[-122.446992,37.80631],[-122.447018,37.806445],[-122.447025,37.806546],[-122.447543,37.8064],[-122.447488,37.806191],[-122.447476,37.806059],[-122.447455,37.805948],[-122.447415,37.805874],[-122.447393,37.805859],[-122.447394,37.805835],[-122.447413,37.805821],[-122.447407,37.805719],[-122.44738,37.80558],[-122.447346,37.805432],[-122.447315,37.805309],[-122.447067,37.805335],[-122.447051,37.805351],[-122.446839,37.805378],[-122.446806,37.805401]],[[-122.445837,37.806813],[-122.445677,37.806754],[-122.445724,37.806846],[-122.445837,37.806813]],[[-122.446588,37.806656],[-122.446564,37.806611],[-122.446287,37.806692],[-122.446416,37.806689],[-122.446458,37.806675],[-122.446473,37.80669],[-122.446502,37.806681],[-122.446588,37.806656]],[[-122.445747,37.806927],[-122.445716,37.806869],[-122.445245,37.807009],[-122.445276,37.807065],[-122.445377,37.807036],[-122.445747,37.806927]]],[[[-122.443352,37.80605],[-122.443328,37.80595],[-122.4433,37.805942],[-122.443275,37.805955],[-122.443253,37.805949],[-122.443232,37.805951],[-122.443214,37.805964],[-122.443183,37.805958],[-122.443156,37.805971],[-122.443135,37.805964],[-122.443059,37.805973],[-122.443044,37.805986],[-122.443017,37.805979],[-122.442988,37.805982],[-122.442949,37.805987],[-122.442933,37.805999],[-122.442909,37.805992],[-122.44284,37.806001],[-122.442823,37.806013],[-122.442799,37.806006],[-122.442734,37.806014],[-122.442715,37.806028],[-122.44269,37.80602],[-122.442636,37.806027],[-122.442618,37.80604],[-122.442592,37.806032],[-122.442552,37.806037],[-122.442548,37.806018],[-122.443037,37.805957],[-122.443388,37.805912],[-122.44376,37.805867],[-122.443958,37.805839],[-122.444499,37.805772],[-122.444669,37.805751],[-122.445293,37.805671],[-122.445999,37.80558],[-122.446546,37.80551],[-122.44655,37.805529],[-122.446519,37.805533],[-122.446496,37.805549],[-122.446465,37.80554],[-122.446444,37.805554],[-122.446411,37.805547],[-122.446384,37.805561],[-122.44636,37.805553],[-122.446336,37.805556],[-122.446319,37.805568],[-122.446296,37.805561],[-122.446276,37.805564],[-122.446256,37.805578],[-122.446233,37.805569],[-122.446149,37.80558],[-122.44613,37.805594],[-122.446104,37.805586],[-122.446082,37.805589],[-122.446064,37.805602],[-122.446039,37.805594],[-122.446018,37.805597],[-122.446001,37.805609],[-122.445977,37.805602],[-122.445951,37.805606],[-122.445935,37.805618],[-122.445909,37.805611],[-122.445885,37.805614],[-122.445868,37.805626],[-122.445845,37.805619],[-122.445814,37.805623],[-122.445798,37.805635],[-122.445773,37.805629],[-122.445751,37.805631],[-122.445732,37.805645],[-122.445709,37.805637],[-122.445683,37.80564],[-122.445663,37.805654],[-122.445638,37.805646],[-122.445605,37.80565],[-122.445589,37.805662],[-122.445566,37.805655],[-122.445532,37.80566],[-122.445513,37.805673],[-122.445489,37.805665],[-122.445463,37.805669],[-122.445443,37.805682],[-122.445421,37.805674],[-122.445392,37.805678],[-122.445369,37.805692],[-122.445347,37.805683],[-122.445312,37.805688],[-122.445297,37.805698],[-122.445276,37.805693],[-122.445243,37.805697],[-122.445225,37.805708],[-122.445204,37.805702],[-122.445167,37.805711],[-122.445178,37.805832],[-122.445143,37.805713],[-122.445101,37.805719],[-122.445113,37.80584],[-122.445077,37.805722],[-122.445034,37.805727],[-122.445046,37.805848],[-122.44501,37.805731],[-122.444904,37.805745],[-122.444915,37.805866],[-122.44488,37.805747],[-122.444843,37.805752],[-122.444855,37.805875],[-122.444819,37.805755],[-122.444782,37.805756],[-122.444767,37.805766],[-122.444747,37.805761],[-122.444709,37.805769],[-122.444719,37.805895],[-122.444685,37.805773],[-122.444649,37.805777],[-122.444658,37.805903],[-122.444625,37.80578],[-122.444585,37.805781],[-122.44457,37.805791],[-122.444549,37.805786],[-122.444518,37.805789],[-122.444502,37.8058],[-122.444482,37.805794],[-122.444452,37.805798],[-122.444436,37.805808],[-122.444413,37.805802],[-122.44439,37.805805],[-122.444374,37.805816],[-122.444353,37.80581],[-122.444323,37.805817],[-122.444332,37.805924],[-122.444307,37.805826],[-122.444289,37.805818],[-122.444266,37.805821],[-122.44425,37.805831],[-122.444229,37.805825],[-122.444207,37.805828],[-122.44419,37.805839],[-122.444167,37.805833],[-122.444146,37.805836],[-122.444129,37.805846],[-122.444109,37.80584],[-122.444026,37.80585],[-122.444008,37.805862],[-122.443987,37.805855],[-122.443961,37.805859],[-122.443943,37.80587],[-122.443912,37.805866],[-122.443887,37.805878],[-122.443864,37.805872],[-122.443782,37.805884],[-122.443764,37.805895],[-122.443743,37.805889],[-122.443715,37.805892],[-122.4437,37.805903],[-122.443677,37.805897],[-122.443654,37.805899],[-122.443637,37.805911],[-122.443614,37.805904],[-122.443593,37.805907],[-122.443576,37.805918],[-122.443544,37.805913],[-122.443518,37.805925],[-122.443495,37.805918],[-122.443472,37.805921],[-122.443457,37.805932],[-122.443434,37.805926],[-122.443405,37.805933],[-122.443412,37.806043],[-122.443388,37.805942],[-122.443369,37.805934],[-122.443344,37.80594],[-122.443352,37.80605]]],[[[-122.442655,37.80647],[-122.442668,37.806457],[-122.442687,37.806467],[-122.442708,37.806465],[-122.442723,37.806447],[-122.442754,37.80646],[-122.442777,37.806441],[-122.4428,37.806456],[-122.442873,37.806448],[-122.44289,37.80643],[-122.44292,37.806443],[-122.442944,37.806424],[-122.442974,37.806438],[-122.442997,37.806419],[-122.443019,37.806433],[-122.443039,37.806431],[-122.443055,37.806413],[-122.443077,37.806427],[-122.443098,37.806425],[-122.443115,37.806407],[-122.443137,37.806421],[-122.443157,37.806419],[-122.443173,37.806403],[-122.443193,37.806416],[-122.443215,37.806413],[-122.443229,37.806399],[-122.443248,37.80641],[-122.44333,37.806402],[-122.443345,37.806385],[-122.443366,37.806398],[-122.443446,37.80639],[-122.443462,37.806374],[-122.44348,37.806386],[-122.443505,37.806384],[-122.44352,37.806369],[-122.443538,37.80638],[-122.443563,37.806378],[-122.443577,37.806362],[-122.443598,37.806374],[-122.443677,37.806366],[-122.443689,37.806353],[-122.443709,37.806363],[-122.443796,37.806354],[-122.44381,37.806338],[-122.443831,37.80635],[-122.443862,37.806347],[-122.443875,37.806332],[-122.443896,37.806344],[-122.443925,37.806336],[-122.44392,37.806229],[-122.44394,37.806322],[-122.443956,37.806338],[-122.443984,37.806335],[-122.443997,37.806319],[-122.444035,37.806329],[-122.444057,37.806313],[-122.444077,37.806324],[-122.444107,37.80632],[-122.444121,37.806306],[-122.444138,37.806316],[-122.444164,37.806313],[-122.444178,37.806297],[-122.444198,37.806309],[-122.444226,37.806305],[-122.444239,37.80629],[-122.444258,37.806301],[-122.444287,37.806297],[-122.444302,37.806285],[-122.444321,37.806293],[-122.444414,37.806276],[-122.444405,37.806167],[-122.444437,37.806272],[-122.444537,37.806265],[-122.444553,37.806252],[-122.444572,37.80626],[-122.444668,37.806244],[-122.444662,37.806143],[-122.444685,37.806233],[-122.444699,37.806244],[-122.444729,37.80624],[-122.444744,37.806226],[-122.444774,37.806234],[-122.444798,37.806219],[-122.44482,37.806228],[-122.444886,37.80622],[-122.4449,37.806208],[-122.44492,37.806216],[-122.444987,37.806207],[-122.445001,37.806194],[-122.445021,37.806203],[-122.445093,37.806193],[-122.445107,37.806181],[-122.445127,37.806189],[-122.445203,37.806179],[-122.445218,37.806166],[-122.445237,37.806175],[-122.445262,37.806166],[-122.44526,37.806087],[-122.445283,37.806167],[-122.445311,37.806165],[-122.445325,37.806152],[-122.445357,37.806159],[-122.445382,37.806145],[-122.4454,37.806154],[-122.445424,37.806151],[-122.445441,37.806137],[-122.445459,37.806146],[-122.445481,37.806143],[-122.445497,37.806129],[-122.445517,37.806139],[-122.445547,37.806129],[-122.445544,37.806058],[-122.445566,37.806166],[-122.445545,37.806155],[-122.445523,37.806157],[-122.445509,37.806171],[-122.445488,37.806162],[-122.445466,37.806165],[-122.44545,37.806178],[-122.445431,37.806169],[-122.445353,37.806179],[-122.445335,37.806194],[-122.445316,37.806184],[-122.445245,37.806193],[-122.445227,37.806208],[-122.445208,37.806198],[-122.445188,37.8062],[-122.445169,37.806218],[-122.44514,37.806207],[-122.445119,37.806221],[-122.4451,37.806212],[-122.445031,37.806221],[-122.445014,37.806236],[-122.444986,37.806227],[-122.444962,37.806243],[-122.444933,37.806233],[-122.444909,37.806249],[-122.444889,37.806239],[-122.444824,37.806247],[-122.444807,37.806263],[-122.444785,37.806252],[-122.444722,37.80626],[-122.444706,37.806277],[-122.444681,37.806266],[-122.44462,37.806274],[-122.444604,37.806289],[-122.444583,37.806278],[-122.444519,37.806287],[-122.444501,37.806302],[-122.44448,37.806292],[-122.444387,37.806304],[-122.444368,37.806322],[-122.444334,37.80631],[-122.444304,37.806331],[-122.44428,37.806317],[-122.444255,37.806321],[-122.44424,37.806336],[-122.444217,37.806326],[-122.444127,37.806337],[-122.444109,37.806354],[-122.444086,37.806342],[-122.444035,37.806349],[-122.443946,37.806358],[-122.443123,37.806442],[-122.442614,37.806494],[-122.442611,37.806475],[-122.442655,37.80647]]],[[[-122.442904,37.806721],[-122.443578,37.806622],[-122.443638,37.806864],[-122.443615,37.806935],[-122.443613,37.80688],[-122.44353,37.806899],[-122.443507,37.806968],[-122.443507,37.806908],[-122.443425,37.806927],[-122.443402,37.806995],[-122.443403,37.806936],[-122.443318,37.806957],[-122.443295,37.807025],[-122.443295,37.806966],[-122.443212,37.806985],[-122.443189,37.807055],[-122.443188,37.806996],[-122.443104,37.807016],[-122.443082,37.807084],[-122.443082,37.807025],[-122.442998,37.807044],[-122.442976,37.807112],[-122.442976,37.807053],[-122.442896,37.807072],[-122.44288,37.807089],[-122.442861,37.807142],[-122.442869,37.807075],[-122.442838,37.806992],[-122.442879,37.807051],[-122.44295,37.807037],[-122.442964,37.807019],[-122.44299,37.807026],[-122.443045,37.807011],[-122.443059,37.806995],[-122.443082,37.807001],[-122.443138,37.806985],[-122.443152,37.806969],[-122.443176,37.806975],[-122.443231,37.80696],[-122.443244,37.806944],[-122.443267,37.80695],[-122.443322,37.806935],[-122.443336,37.80692],[-122.443357,37.806926],[-122.443422,37.806903],[-122.443447,37.806901],[-122.443508,37.806884],[-122.443521,37.80687],[-122.443542,37.806875],[-122.443612,37.806856],[-122.443569,37.806643],[-122.443499,37.806653],[-122.443484,37.806664],[-122.443465,37.806658],[-122.443441,37.806661],[-122.443398,37.806672],[-122.443392,37.806723],[-122.443376,37.806675],[-122.443305,37.806684],[-122.443301,37.806738],[-122.443282,37.806691],[-122.443213,37.806695],[-122.443198,37.806707],[-122.443179,37.8067],[-122.443112,37.806714],[-122.443106,37.806765],[-122.443089,37.806717],[-122.443021,37.806723],[-122.443006,37.806735],[-122.442986,37.806728],[-122.44295,37.806733],[-122.442925,37.806736],[-122.44291,37.806749],[-122.442888,37.806741],[-122.442825,37.806753],[-122.442821,37.806819],[-122.442801,37.806758],[-122.442732,37.806761],[-122.442715,37.806773],[-122.442696,37.806765],[-122.442674,37.806772],[-122.44267,37.806836],[-122.442657,37.806784],[-122.442632,37.806773],[-122.442611,37.806791],[-122.442619,37.806845],[-122.442558,37.806846],[-122.442543,37.806768],[-122.442813,37.806734],[-122.442904,37.806721]]],[[[-122.435535,37.806906],[-122.435473,37.806923],[-122.435453,37.806944],[-122.435426,37.806929],[-122.435369,37.806936],[-122.435348,37.806958],[-122.435321,37.806943],[-122.435266,37.806949],[-122.435246,37.80697],[-122.435218,37.806955],[-122.435164,37.806962],[-122.435144,37.806983],[-122.435116,37.806968],[-122.435062,37.806975],[-122.435041,37.806996],[-122.435014,37.806981],[-122.43496,37.806988],[-122.43494,37.807009],[-122.434913,37.806994],[-122.434858,37.807001],[-122.434837,37.807022],[-122.43481,37.807007],[-122.434755,37.807014],[-122.434735,37.807035],[-122.434707,37.80702],[-122.434652,37.807027],[-122.434631,37.807048],[-122.434604,37.807033],[-122.434548,37.80704],[-122.434527,37.807061],[-122.4345,37.807046],[-122.434441,37.807054],[-122.434421,37.807075],[-122.434393,37.80706],[-122.434334,37.807067],[-122.434314,37.807088],[-122.434286,37.807073],[-122.434223,37.807081],[-122.434202,37.807102],[-122.434175,37.807087],[-122.434109,37.807096],[-122.434089,37.807117],[-122.434061,37.807102],[-122.43401,37.807108],[-122.433989,37.807129],[-122.433962,37.807114],[-122.433894,37.807123],[-122.433874,37.807144],[-122.433847,37.807129],[-122.43378,37.807137],[-122.43376,37.807158],[-122.433732,37.807143],[-122.433667,37.807151],[-122.433646,37.807172],[-122.433619,37.807157],[-122.433554,37.807166],[-122.433533,37.807187],[-122.433506,37.807172],[-122.43344,37.80718],[-122.43342,37.807201],[-122.433392,37.807186],[-122.433327,37.807194],[-122.433307,37.807215],[-122.433279,37.8072],[-122.433213,37.807209],[-122.433193,37.80723],[-122.433166,37.807215],[-122.433073,37.807226],[-122.43307,37.80721],[-122.433163,37.807198],[-122.433182,37.807181],[-122.433207,37.807193],[-122.433277,37.807184],[-122.433296,37.807166],[-122.433321,37.807178],[-122.433382,37.807171],[-122.433401,37.807153],[-122.433426,37.807165],[-122.433488,37.807157],[-122.433507,37.80714],[-122.433532,37.807152],[-122.43359,37.807144],[-122.433609,37.807127],[-122.433634,37.807139],[-122.433689,37.807132],[-122.433708,37.807114],[-122.433733,37.807126],[-122.433797,37.807118],[-122.433816,37.807101],[-122.433844,37.807112],[-122.433867,37.807094],[-122.433896,37.807106],[-122.43392,37.807087],[-122.433944,37.8071],[-122.434016,37.807091],[-122.434035,37.807073],[-122.43406,37.807085],[-122.434426,37.807039],[-122.435535,37.806906]]],[[[-122.435657,37.807254],[-122.435637,37.807266],[-122.435647,37.807362],[-122.435625,37.807285],[-122.435609,37.80727],[-122.435544,37.807278],[-122.435528,37.807298],[-122.435505,37.807283],[-122.435443,37.807291],[-122.435427,37.80731],[-122.435404,37.807296],[-122.435342,37.807304],[-122.435326,37.807323],[-122.435303,37.807309],[-122.435236,37.807317],[-122.435219,37.807336],[-122.435197,37.807322],[-122.435128,37.80733],[-122.435112,37.80735],[-122.435089,37.807335],[-122.43502,37.807344],[-122.435004,37.807363],[-122.434981,37.807349],[-122.434911,37.807358],[-122.434895,37.807377],[-122.434872,37.807363],[-122.434799,37.807372],[-122.434782,37.807391],[-122.43476,37.807377],[-122.434691,37.807385],[-122.434675,37.807405],[-122.434652,37.80739],[-122.434576,37.8074],[-122.43456,37.807419],[-122.434537,37.807405],[-122.434462,37.807414],[-122.434446,37.807433],[-122.434423,37.807419],[-122.434349,37.807428],[-122.434333,37.807447],[-122.43431,37.807433],[-122.434231,37.807443],[-122.434215,37.807462],[-122.434192,37.807448],[-122.434111,37.807458],[-122.434095,37.807477],[-122.434072,37.807463],[-122.433993,37.807473],[-122.433977,37.807492],[-122.433954,37.807478],[-122.433869,37.807488],[-122.433853,37.807507],[-122.43383,37.807493],[-122.433745,37.807504],[-122.433728,37.807523],[-122.433705,37.807509],[-122.433606,37.807521],[-122.433592,37.80754],[-122.433583,37.807492],[-122.433602,37.807505],[-122.433678,37.807496],[-122.433694,37.807478],[-122.433715,37.807491],[-122.433796,37.807481],[-122.433811,37.807463],[-122.433833,37.807476],[-122.433911,37.807466],[-122.433927,37.807449],[-122.433948,37.807462],[-122.434026,37.807452],[-122.434041,37.807434],[-122.434063,37.807447],[-122.434135,37.807438],[-122.43415,37.807421],[-122.434172,37.807434],[-122.434246,37.807424],[-122.434261,37.807407],[-122.434283,37.80742],[-122.434353,37.807411],[-122.434368,37.807393],[-122.43439,37.807406],[-122.434462,37.807397],[-122.434478,37.80738],[-122.434499,37.807393],[-122.434572,37.807383],[-122.434588,37.807366],[-122.43461,37.807379],[-122.434682,37.80737],[-122.434698,37.807352],[-122.434719,37.807365],[-122.434784,37.807357],[-122.4348,37.807339],[-122.434821,37.807352],[-122.434885,37.807344],[-122.4349,37.807327],[-122.434922,37.80734],[-122.434989,37.807331],[-122.435004,37.807314],[-122.435026,37.807327],[-122.435092,37.807318],[-122.435107,37.807301],[-122.435129,37.807314],[-122.435193,37.807306],[-122.435209,37.807288],[-122.43523,37.807301],[-122.435296,37.807293],[-122.435312,37.807275],[-122.435333,37.807288],[-122.435399,37.80728],[-122.435414,37.807262],[-122.435443,37.807274],[-122.435467,37.807256],[-122.435494,37.807268],[-122.435515,37.80725],[-122.435537,37.807263],[-122.435602,37.807254],[-122.435611,37.807238],[-122.435604,37.807172],[-122.435632,37.807251],[-122.435657,37.807254]]],[[[-122.443852,37.807367],[-122.443707,37.807395],[-122.443659,37.807411],[-122.443615,37.807409],[-122.443522,37.807322],[-122.443613,37.80739],[-122.443647,37.807377],[-122.443584,37.807309],[-122.443677,37.807379],[-122.443709,37.807365],[-122.443652,37.807301],[-122.44374,37.807367],[-122.443769,37.807355],[-122.443707,37.807287],[-122.443799,37.807356],[-122.443829,37.807344],[-122.443769,37.807278],[-122.443859,37.807346],[-122.443945,37.80733],[-122.443945,37.807313],[-122.443847,37.807222],[-122.443977,37.807324],[-122.444024,37.807309],[-122.443904,37.807193],[-122.444053,37.80731],[-122.444104,37.807301],[-122.444104,37.807281],[-122.444026,37.807206],[-122.44414,37.807294],[-122.444174,37.807288],[-122.444194,37.807278],[-122.444066,37.807157],[-122.444216,37.807276],[-122.444263,37.807254],[-122.444141,37.807136],[-122.44429,37.807254],[-122.44433,37.807242],[-122.444331,37.807221],[-122.444218,37.807117],[-122.444363,37.807232],[-122.444404,37.80722],[-122.444404,37.8072],[-122.444293,37.807098],[-122.444436,37.807211],[-122.444547,37.807178],[-122.444547,37.807159],[-122.444433,37.807056],[-122.444577,37.807169],[-122.444646,37.807149],[-122.444657,37.807166],[-122.444433,37.807232],[-122.444181,37.807307],[-122.443852,37.807367]]],[[[-122.435737,37.807665],[-122.433917,37.807904],[-122.433902,37.807793],[-122.433928,37.807886],[-122.43404,37.807872],[-122.434051,37.807851],[-122.43407,37.807868],[-122.43416,37.807857],[-122.434171,37.807836],[-122.43419,37.807853],[-122.434285,37.807841],[-122.434296,37.80782],[-122.434314,37.807837],[-122.434408,37.807825],[-122.434419,37.807805],[-122.434437,37.807822],[-122.434522,37.807811],[-122.434533,37.80779],[-122.434551,37.807807],[-122.434636,37.807796],[-122.434647,37.807776],[-122.434666,37.807793],[-122.434751,37.807782],[-122.434762,37.807761],[-122.43478,37.807778],[-122.434871,37.807767],[-122.434882,37.807746],[-122.434901,37.807763],[-122.434976,37.807753],[-122.434987,37.807733],[-122.435006,37.80775],[-122.435085,37.80774],[-122.435097,37.807718],[-122.435116,37.807736],[-122.435192,37.807726],[-122.435204,37.807704],[-122.435223,37.807722],[-122.435302,37.807712],[-122.435314,37.80769],[-122.435334,37.807708],[-122.435402,37.807699],[-122.435414,37.807677],[-122.435434,37.807695],[-122.435509,37.807686],[-122.43552,37.807663],[-122.435541,37.807682],[-122.435609,37.807673],[-122.435621,37.80765],[-122.435642,37.807669],[-122.435711,37.807661],[-122.435716,37.807637],[-122.435708,37.807565],[-122.435737,37.807665]]],[[[-122.433961,37.806431],[-122.433969,37.806503],[-122.433952,37.806446],[-122.433933,37.806436],[-122.433886,37.806443],[-122.433866,37.806459],[-122.433839,37.806449],[-122.433791,37.806455],[-122.433771,37.806471],[-122.433745,37.806461],[-122.433695,37.806468],[-122.433675,37.806484],[-122.433649,37.806474],[-122.433596,37.80648],[-122.433577,37.806497],[-122.43355,37.806486],[-122.433504,37.806493],[-122.433484,37.806509],[-122.433458,37.806499],[-122.433404,37.806506],[-122.433384,37.806522],[-122.433358,37.806512],[-122.433305,37.806519],[-122.433285,37.806535],[-122.433259,37.806525],[-122.433207,37.806531],[-122.433187,37.806548],[-122.433161,37.806537],[-122.433099,37.806546],[-122.433079,37.806562],[-122.433053,37.806552],[-122.432991,37.80656],[-122.432971,37.806576],[-122.432945,37.806566],[-122.432886,37.806573],[-122.432868,37.80659],[-122.432849,37.806491],[-122.432871,37.806553],[-122.43295,37.806548],[-122.432965,37.806534],[-122.432984,37.806544],[-122.433056,37.806534],[-122.43307,37.806522],[-122.433088,37.80653],[-122.433161,37.806521],[-122.433176,37.806506],[-122.433195,37.806516],[-122.43326,37.806508],[-122.433276,37.806493],[-122.433295,37.806503],[-122.433358,37.806495],[-122.433373,37.806481],[-122.433392,37.80649],[-122.433454,37.806482],[-122.43347,37.806468],[-122.433489,37.806478],[-122.433553,37.806469],[-122.433568,37.806455],[-122.433587,37.806465],[-122.433649,37.806457],[-122.433664,37.806442],[-122.433683,37.806452],[-122.433746,37.806444],[-122.433761,37.80643],[-122.43378,37.80644],[-122.433843,37.806431],[-122.433858,37.806417],[-122.433877,37.806427],[-122.433936,37.806413],[-122.433938,37.806348],[-122.433961,37.806431]]],[[[-122.432911,37.806267],[-122.432887,37.806258],[-122.432821,37.806266],[-122.432806,37.80628],[-122.432794,37.806239],[-122.432811,37.806251],[-122.432879,37.806242],[-122.432899,37.806227],[-122.43292,37.806237],[-122.432989,37.806228],[-122.433009,37.806213],[-122.43303,37.806223],[-122.43309,37.806215],[-122.43311,37.8062],[-122.433131,37.80621],[-122.433194,37.806202],[-122.433213,37.806187],[-122.433234,37.806196],[-122.433293,37.806189],[-122.433313,37.806174],[-122.433334,37.806184],[-122.43339,37.806177],[-122.43341,37.806161],[-122.433431,37.806171],[-122.433484,37.806165],[-122.433503,37.806149],[-122.433525,37.806159],[-122.433581,37.806152],[-122.433601,37.806137],[-122.433622,37.806147],[-122.433676,37.80614],[-122.433696,37.806125],[-122.433717,37.806135],[-122.433775,37.806127],[-122.433794,37.806112],[-122.433816,37.806122],[-122.433868,37.806115],[-122.433881,37.806102],[-122.43388,37.806044],[-122.4339,37.806128],[-122.433902,37.806198],[-122.433887,37.806143],[-122.433869,37.806132],[-122.43382,37.806138],[-122.433803,37.806153],[-122.433779,37.806144],[-122.433726,37.80615],[-122.433709,37.806165],[-122.433685,37.806156],[-122.43363,37.806163],[-122.433613,37.806177],[-122.433589,37.806168],[-122.433534,37.806175],[-122.433517,37.80619],[-122.433493,37.80618],[-122.433437,37.806187],[-122.433419,37.806202],[-122.433395,37.806193],[-122.43334,37.8062],[-122.433322,37.806214],[-122.433298,37.806205],[-122.433241,37.806212],[-122.433224,37.806227],[-122.4332,37.806218],[-122.433141,37.806225],[-122.433123,37.80624],[-122.433099,37.80623],[-122.433038,37.806238],[-122.433021,37.806253],[-122.432997,37.806243],[-122.432928,37.806252],[-122.432911,37.806267]]],[[[-122.433873,37.805817],[-122.433813,37.805828],[-122.43379,37.805843],[-122.433764,37.805835],[-122.433744,37.805849],[-122.433715,37.805841],[-122.433691,37.805856],[-122.43367,37.805847],[-122.433612,37.805854],[-122.433596,37.805868],[-122.433574,37.805859],[-122.433516,37.805867],[-122.433499,37.80588],[-122.433478,37.805871],[-122.433425,37.805878],[-122.433409,37.805892],[-122.433387,37.805883],[-122.433327,37.805891],[-122.43331,37.805904],[-122.433289,37.805896],[-122.433228,37.805904],[-122.433211,37.805917],[-122.43319,37.805908],[-122.433125,37.805917],[-122.433109,37.80593],[-122.433087,37.805922],[-122.433022,37.80593],[-122.433005,37.805944],[-122.432984,37.805935],[-122.432914,37.805944],[-122.432897,37.805957],[-122.432876,37.805949],[-122.432806,37.805958],[-122.432791,37.805973],[-122.432771,37.805888],[-122.432794,37.805938],[-122.432871,37.805933],[-122.432888,37.805918],[-122.432909,37.805928],[-122.432977,37.805919],[-122.432994,37.805905],[-122.433015,37.805914],[-122.433078,37.805906],[-122.433095,37.805892],[-122.433116,37.805901],[-122.433177,37.805893],[-122.433194,37.805879],[-122.433215,37.805889],[-122.433273,37.805881],[-122.43329,37.805867],[-122.433311,37.805876],[-122.433368,37.805869],[-122.433385,37.805855],[-122.433406,37.805864],[-122.433464,37.805856],[-122.433481,37.805842],[-122.433502,37.805852],[-122.43356,37.805844],[-122.433577,37.80583],[-122.433598,37.805839],[-122.433657,37.805832],[-122.433674,37.805818],[-122.433695,37.805827],[-122.433811,37.805812],[-122.433829,37.8058],[-122.433851,37.805813],[-122.433873,37.805817]]],[[[-122.441977,37.807878],[-122.441978,37.807895],[-122.441808,37.807912],[-122.44149,37.807944],[-122.441481,37.807923],[-122.441399,37.807833],[-122.441414,37.807823],[-122.441512,37.807923],[-122.441628,37.807907],[-122.441552,37.80781],[-122.441659,37.807909],[-122.441784,37.80789],[-122.441711,37.807792],[-122.44182,37.807893],[-122.44194,37.807874],[-122.441867,37.807776],[-122.441977,37.807878]]],[[[-122.444,37.806781],[-122.444011,37.806763],[-122.443995,37.806743],[-122.444004,37.806724],[-122.443984,37.806702],[-122.443996,37.806682],[-122.443978,37.806662],[-122.443988,37.806641],[-122.443971,37.806619],[-122.44398,37.806598],[-122.443964,37.806578],[-122.443973,37.806558],[-122.443952,37.80654],[-122.443853,37.806546],[-122.443985,37.806526],[-122.444127,37.806516],[-122.444013,37.806534],[-122.443998,37.806547],[-122.444007,37.806569],[-122.444136,37.806564],[-122.44401,37.806587],[-122.444008,37.806607],[-122.444027,37.806624],[-122.444016,37.806649],[-122.444032,37.80667],[-122.444022,37.806685],[-122.444026,37.806708],[-122.444043,37.806724],[-122.444031,37.80674],[-122.444036,37.806764],[-122.444053,37.806775],[-122.444173,37.80676],[-122.444176,37.806777],[-122.443903,37.806809],[-122.4439,37.806793],[-122.444,37.806781]]],[[[-122.443406,37.807642],[-122.443293,37.807661],[-122.443152,37.807671],[-122.443267,37.807648],[-122.44327,37.807623],[-122.443261,37.807604],[-122.443256,37.807576],[-122.443135,37.807579],[-122.443242,37.807562],[-122.443255,37.80755],[-122.443252,37.807533],[-122.443236,37.807518],[-122.443245,37.807496],[-122.443228,37.807475],[-122.443238,37.807458],[-122.443234,37.807441],[-122.443218,37.807427],[-122.443361,37.80741],[-122.443262,37.807431],[-122.443265,37.807454],[-122.443369,37.807452],[-122.44327,37.807474],[-122.443274,37.807504],[-122.443379,37.807502],[-122.44328,37.807523],[-122.443278,37.807545],[-122.443292,37.807558],[-122.443284,37.807575],[-122.443287,37.807592],[-122.443301,37.807606],[-122.443294,37.807629],[-122.443311,37.807647],[-122.443406,37.807642]]],[[[-122.442797,37.807767],[-122.442788,37.807806],[-122.442772,37.807774],[-122.442733,37.807529],[-122.442885,37.807525],[-122.442773,37.807539],[-122.442757,37.807552],[-122.442759,37.807569],[-122.442777,37.807582],[-122.442765,37.807605],[-122.442785,37.807626],[-122.44277,37.807644],[-122.442773,37.807663],[-122.442792,37.807677],[-122.442779,37.807701],[-122.442796,37.80772],[-122.442784,37.807736],[-122.442786,37.807752],[-122.442797,37.807767]]],[[[-122.442405,37.807643],[-122.442405,37.807728],[-122.442384,37.807657],[-122.442405,37.807643]]],[[[-122.43293,37.807925],[-122.432906,37.807927],[-122.432916,37.807909],[-122.43293,37.807925]]]]},"properties":{"neighbourhood":"Marina","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.388108,37.747803],[-122.3881,37.747712],[-122.388148,37.747711],[-122.388153,37.747826],[-122.388277,37.747817],[-122.388494,37.747808],[-122.38852,37.747812],[-122.388545,37.747815],[-122.388573,37.747816],[-122.388596,37.747816],[-122.388616,37.747815],[-122.388636,37.747813],[-122.388659,37.74781],[-122.388686,37.747805],[-122.388713,37.747798],[-122.388747,37.747788],[-122.388773,37.747781],[-122.388797,37.747776],[-122.388818,37.747772],[-122.38884,37.74777],[-122.388865,37.747768],[-122.38889,37.747768],[-122.388916,37.747769],[-122.388938,37.74777],[-122.388974,37.747774],[-122.389003,37.747776],[-122.389032,37.747777],[-122.389061,37.747778],[-122.38909,37.747778],[-122.389128,37.747777],[-122.389166,37.747776],[-122.389196,37.747774],[-122.389265,37.747776],[-122.389335,37.747777],[-122.389404,37.747777],[-122.389473,37.747776],[-122.389542,37.747774],[-122.389611,37.747772],[-122.38968,37.747768],[-122.389749,37.747764],[-122.389818,37.747758],[-122.389887,37.747751],[-122.389955,37.747744],[-122.390053,37.747734],[-122.390085,37.747733],[-122.390113,37.747732],[-122.390145,37.747728],[-122.390182,37.747723],[-122.390213,37.747716],[-122.390235,37.74771],[-122.390262,37.747703],[-122.390288,37.747699],[-122.390315,37.747699],[-122.390341,37.747703],[-122.390369,37.747707],[-122.390406,37.747712],[-122.390432,37.747717],[-122.390456,37.747725],[-122.390484,37.747736],[-122.390513,37.747742],[-122.390654,37.747824],[-122.390648,37.747758],[-122.390672,37.747767],[-122.390693,37.747784],[-122.390708,37.74781],[-122.390717,37.74783],[-122.390724,37.747846],[-122.390734,37.747861],[-122.390749,37.747881],[-122.390766,37.747901],[-122.390783,37.747918],[-122.390802,37.747933],[-122.39082,37.747946],[-122.390843,37.74796],[-122.390873,37.74797],[-122.390904,37.747978],[-122.390936,37.747985],[-122.39096,37.74799],[-122.390984,37.747994],[-122.391016,37.747999],[-122.391041,37.748002],[-122.391065,37.748005],[-122.39109,37.748007],[-122.391125,37.748009],[-122.391154,37.748015],[-122.391175,37.748025],[-122.391193,37.748039],[-122.391205,37.748055],[-122.391241,37.748083],[-122.391297,37.748116],[-122.391962,37.748398],[-122.391986,37.748402],[-122.392012,37.748407],[-122.392032,37.748413],[-122.392056,37.74842],[-122.392082,37.748431],[-122.392108,37.748443],[-122.392129,37.748456],[-122.392145,37.748467],[-122.392165,37.748475],[-122.39219,37.748479],[-122.39221,37.748481],[-122.39223,37.748482],[-122.39225,37.748482],[-122.392273,37.748482],[-122.392303,37.748481],[-122.392333,37.748479],[-122.392361,37.748476],[-122.392388,37.748471],[-122.392425,37.748466],[-122.392463,37.748464],[-122.392492,37.748464],[-122.392516,37.748465],[-122.392544,37.748468],[-122.392577,37.74847],[-122.392606,37.748469],[-122.392634,37.74847],[-122.39266,37.748473],[-122.392682,37.748476],[-122.392704,37.748481],[-122.392726,37.748487],[-122.39275,37.748495],[-122.39277,37.748504],[-122.392792,37.748515],[-122.392823,37.74853],[-122.39285,37.748539],[-122.392872,37.748543],[-122.392896,37.748546],[-122.392925,37.748546],[-122.392957,37.74854],[-122.392984,37.748527],[-122.393001,37.748516],[-122.393019,37.748499],[-122.393033,37.748479],[-122.393043,37.748456],[-122.393046,37.748433],[-122.393053,37.748284],[-122.393077,37.748129],[-122.39298,37.747588],[-122.392907,37.747545],[-122.392911,37.747441],[-122.392848,37.747437],[-122.39281,37.74745],[-122.392769,37.747457],[-122.392736,37.747442],[-122.392709,37.74744],[-122.392612,37.74743],[-122.392589,37.747429],[-122.392563,37.747422],[-122.392544,37.747412],[-122.392528,37.747399],[-122.392518,37.747385],[-122.392371,37.747285],[-122.39231,37.747223],[-122.391564,37.747006],[-122.391516,37.747108],[-122.391549,37.747117],[-122.39154,37.747141],[-122.391633,37.747168],[-122.391611,37.747227],[-122.391285,37.747136],[-122.391305,37.747081],[-122.3914,37.747106],[-122.391414,37.747082],[-122.39145,37.747086],[-122.391498,37.746975],[-122.390841,37.746788],[-122.390692,37.746745],[-122.390584,37.746707],[-122.390492,37.746694],[-122.389167,37.746772],[-122.389008,37.746805],[-122.388863,37.746836],[-122.388798,37.746834],[-122.388745,37.746852],[-122.388651,37.746863],[-122.388569,37.74689],[-122.388501,37.74691],[-122.38843,37.746902],[-122.388404,37.746923],[-122.388365,37.746924],[-122.388206,37.746945],[-122.388204,37.746983],[-122.388121,37.746993],[-122.388117,37.746949],[-122.387894,37.746946],[-122.387874,37.746942],[-122.387857,37.746932],[-122.387705,37.746939],[-122.387599,37.746969],[-122.387589,37.747026],[-122.387551,37.747035],[-122.387542,37.747052],[-122.387524,37.747071],[-122.387494,37.747086],[-122.387462,37.747102],[-122.387103,37.74711],[-122.387074,37.747108],[-122.387049,37.747098],[-122.387032,37.747085],[-122.387021,37.747065],[-122.387006,37.746912],[-122.385923,37.746978],[-122.382765,37.747153],[-122.382709,37.747165],[-122.382642,37.74716],[-122.382019,37.747062],[-122.379659,37.747208],[-122.379608,37.74698],[-122.379559,37.74699],[-122.379534,37.746995],[-122.379509,37.746999],[-122.379484,37.747003],[-122.379459,37.747006],[-122.379434,37.747009],[-122.379408,37.747012],[-122.379383,37.747015],[-122.379358,37.747017],[-122.379332,37.747019],[-122.379307,37.74702],[-122.379281,37.747021],[-122.379256,37.747022],[-122.37923,37.747022],[-122.379145,37.747022],[-122.379072,37.747022],[-122.378998,37.747024],[-122.378925,37.747027],[-122.378852,37.747031],[-122.378778,37.747035],[-122.378705,37.747041],[-122.378632,37.747048],[-122.378559,37.747056],[-122.378487,37.747065],[-122.378414,37.747074],[-122.378342,37.747085],[-122.37827,37.747097],[-122.378198,37.74711],[-122.378127,37.747124],[-122.377701,37.747142],[-122.377452,37.747149],[-122.377202,37.747151],[-122.376953,37.747151],[-122.376703,37.747146],[-122.376632,37.747152],[-122.376587,37.747155],[-122.376542,37.747157],[-122.376497,37.747159],[-122.376452,37.747159],[-122.376407,37.74716],[-122.376362,37.747159],[-122.376317,37.747158],[-122.376272,37.747157],[-122.376227,37.747155],[-122.376182,37.747152],[-122.376137,37.747148],[-122.376092,37.747144],[-122.376047,37.74714],[-122.376002,37.747134],[-122.375958,37.747128],[-122.375913,37.747122],[-122.375869,37.747115],[-122.375825,37.747107],[-122.375781,37.747098],[-122.375737,37.747089],[-122.375694,37.74708],[-122.375651,37.747069],[-122.375608,37.747059],[-122.375565,37.747047],[-122.375522,37.747035],[-122.375485,37.747023],[-122.375466,37.747017],[-122.375447,37.74701],[-122.375428,37.747003],[-122.37541,37.746996],[-122.375391,37.746988],[-122.375373,37.746981],[-122.375355,37.746973],[-122.375337,37.746964],[-122.375319,37.746956],[-122.375301,37.746947],[-122.375284,37.746938],[-122.375267,37.746929],[-122.37525,37.746919],[-122.375233,37.746909],[-122.375217,37.746899],[-122.3752,37.746889],[-122.375184,37.746879],[-122.375169,37.746868],[-122.375153,37.746857],[-122.375138,37.746846],[-122.375122,37.746835],[-122.375108,37.746824],[-122.375093,37.746812],[-122.375079,37.7468],[-122.375064,37.746788],[-122.375051,37.746776],[-122.375037,37.746763],[-122.375024,37.74675],[-122.375011,37.746738],[-122.374998,37.746725],[-122.374986,37.746711],[-122.374974,37.746698],[-122.374962,37.746685],[-122.37495,37.746671],[-122.374939,37.746657],[-122.374928,37.746643],[-122.374917,37.746629],[-122.374907,37.746615],[-122.374897,37.7466],[-122.374887,37.746586],[-122.374878,37.746571],[-122.374869,37.746556],[-122.37486,37.746541],[-122.37484,37.746518],[-122.374819,37.746501],[-122.374802,37.746483],[-122.374787,37.746462],[-122.374775,37.746433],[-122.37477,37.746411],[-122.37477,37.746385],[-122.374773,37.746363],[-122.374781,37.746341],[-122.374791,37.746323],[-122.374924,37.74589],[-122.374941,37.745869],[-122.374952,37.745846],[-122.374955,37.745824],[-122.374953,37.745803],[-122.374946,37.745783],[-122.374933,37.745763],[-122.374166,37.745009],[-122.37415,37.744995],[-122.374126,37.744978],[-122.374103,37.744966],[-122.374075,37.744957],[-122.374045,37.744951],[-122.374023,37.744949],[-122.373992,37.744951],[-122.373961,37.744956],[-122.373931,37.744966],[-122.373902,37.744982],[-122.373876,37.745001],[-122.373859,37.745021],[-122.373846,37.74504],[-122.373854,37.745086],[-122.373454,37.745317],[-122.373437,37.745328],[-122.373422,37.745339],[-122.373405,37.745348],[-122.373382,37.745361],[-122.373361,37.745371],[-122.373342,37.745378],[-122.373324,37.745385],[-122.373305,37.745391],[-122.373278,37.745399],[-122.373251,37.745405],[-122.373227,37.745409],[-122.373199,37.745413],[-122.373175,37.745415],[-122.373151,37.745416],[-122.373122,37.745416],[-122.373094,37.745415],[-122.373069,37.745412],[-122.373049,37.74541],[-122.373029,37.745406],[-122.37301,37.745402],[-122.37299,37.745398],[-122.372964,37.74539],[-122.372762,37.745505],[-122.369079,37.741644],[-122.367631,37.740134],[-122.367868,37.739994],[-122.368286,37.739976],[-122.368274,37.739828],[-122.371253,37.739664],[-122.371264,37.739793],[-122.37341,37.739653],[-122.37342,37.739638],[-122.373434,37.739627],[-122.37346,37.739618],[-122.373518,37.739607],[-122.373542,37.739603],[-122.373567,37.739598],[-122.373591,37.739594],[-122.373616,37.73959],[-122.373641,37.739587],[-122.373666,37.739584],[-122.373691,37.739581],[-122.373716,37.739579],[-122.373741,37.739577],[-122.373766,37.739575],[-122.373791,37.739574],[-122.373816,37.739573],[-122.373841,37.739572],[-122.373866,37.739572],[-122.373891,37.739572],[-122.373927,37.739572],[-122.37395,37.739568],[-122.373972,37.739559],[-122.373989,37.739547],[-122.374005,37.739526],[-122.374012,37.739505],[-122.374011,37.739486],[-122.374003,37.739467],[-122.373978,37.73944],[-122.373964,37.739426],[-122.37395,37.739412],[-122.373937,37.739398],[-122.373924,37.739383],[-122.373911,37.739369],[-122.373899,37.739354],[-122.373887,37.739339],[-122.373874,37.739322],[-122.373863,37.739307],[-122.373852,37.739291],[-122.373841,37.739275],[-122.373831,37.73926],[-122.373821,37.739244],[-122.373811,37.739228],[-122.373802,37.739211],[-122.373793,37.739195],[-122.373785,37.739178],[-122.373777,37.739162],[-122.373769,37.739145],[-122.373761,37.739128],[-122.373754,37.739111],[-122.373748,37.739094],[-122.373741,37.739077],[-122.373731,37.739046],[-122.373724,37.739028],[-122.373716,37.73901],[-122.373708,37.738993],[-122.3737,37.738975],[-122.373692,37.738957],[-122.373683,37.73894],[-122.373674,37.738922],[-122.373664,37.738905],[-122.373654,37.738888],[-122.373643,37.738871],[-122.373633,37.738854],[-122.373621,37.738838],[-122.37361,37.738821],[-122.373598,37.738805],[-122.373586,37.738789],[-122.373573,37.738773],[-122.37356,37.738757],[-122.373547,37.738741],[-122.373533,37.738726],[-122.373519,37.738711],[-122.373505,37.738696],[-122.37349,37.738681],[-122.373475,37.738666],[-122.37346,37.738652],[-122.373445,37.738637],[-122.373429,37.738623],[-122.373412,37.73861],[-122.373396,37.738596],[-122.373379,37.738583],[-122.373362,37.73857],[-122.373345,37.738557],[-122.373327,37.738544],[-122.373309,37.738532],[-122.373291,37.73852],[-122.373272,37.738508],[-122.373254,37.738496],[-122.373235,37.738485],[-122.373215,37.738474],[-122.373196,37.738463],[-122.373176,37.738452],[-122.373156,37.738442],[-122.373136,37.738432],[-122.373116,37.738422],[-122.373095,37.738413],[-122.373074,37.738404],[-122.373054,37.738395],[-122.373032,37.738387],[-122.373011,37.738378],[-122.372989,37.73837],[-122.372968,37.738363],[-122.372946,37.738355],[-122.372924,37.738348],[-122.372902,37.738341],[-122.372879,37.738335],[-122.372857,37.738329],[-122.372834,37.738323],[-122.372812,37.738318],[-122.372789,37.738312],[-122.372766,37.738308],[-122.372743,37.738303],[-122.37272,37.738299],[-122.372696,37.738295],[-122.372673,37.738291],[-122.37265,37.738288],[-122.372626,37.738285],[-122.372603,37.738282],[-122.372579,37.73828],[-122.372555,37.738278],[-122.372532,37.738277],[-122.372508,37.738275],[-122.372484,37.738274],[-122.372461,37.738274],[-122.372437,37.738273],[-122.372413,37.738273],[-122.372389,37.738274],[-122.372366,37.738274],[-122.372342,37.738275],[-122.371418,37.738198],[-122.371337,37.738188],[-122.371293,37.738184],[-122.371248,37.73818],[-122.371204,37.738177],[-122.37116,37.738175],[-122.371116,37.738173],[-122.371072,37.738172],[-122.371027,37.738171],[-122.370983,37.738171],[-122.370939,37.738172],[-122.370894,37.738173],[-122.37085,37.738175],[-122.370806,37.738178],[-122.370762,37.738181],[-122.370718,37.738185],[-122.370674,37.738189],[-122.37063,37.738194],[-122.370586,37.738199],[-122.370542,37.738153],[-122.370404,37.738203],[-122.370323,37.738202],[-122.370242,37.738203],[-122.370161,37.738205],[-122.37008,37.738209],[-122.37,37.738213],[-122.369919,37.738218],[-122.369839,37.738225],[-122.369758,37.738233],[-122.369678,37.738241],[-122.369598,37.738251],[-122.36957,37.738256],[-122.369542,37.738261],[-122.369513,37.738265],[-122.369485,37.738268],[-122.369447,37.738271],[-122.369409,37.738273],[-122.36938,37.738275],[-122.369352,37.738275],[-122.369314,37.738275],[-122.369275,37.738273],[-122.369247,37.738271],[-122.369218,37.738269],[-122.369181,37.738265],[-122.369152,37.738261],[-122.369067,37.738262],[-122.368994,37.738251],[-122.368911,37.738248],[-122.368828,37.738246],[-122.368744,37.738246],[-122.368661,37.738246],[-122.368578,37.738248],[-122.368495,37.73825],[-122.368412,37.738254],[-122.368329,37.738259],[-122.368246,37.738266],[-122.368163,37.738273],[-122.36808,37.738281],[-122.367798,37.738312],[-122.367512,37.738341],[-122.367485,37.738335],[-122.367463,37.738327],[-122.36744,37.738315],[-122.367422,37.7383],[-122.36741,37.738285],[-122.367402,37.738271],[-122.367396,37.738255],[-122.367394,37.738234],[-122.367395,37.738218],[-122.3674,37.738203],[-122.367425,37.738175],[-122.367446,37.738159],[-122.367466,37.738145],[-122.367488,37.738132],[-122.36751,37.73812],[-122.367534,37.738109],[-122.367558,37.738099],[-122.367592,37.738088],[-122.367619,37.738081],[-122.367645,37.738075],[-122.367767,37.738051],[-122.367844,37.738036],[-122.367921,37.738023],[-122.367999,37.738011],[-122.368076,37.738],[-122.368154,37.73799],[-122.368232,37.737982],[-122.368311,37.737974],[-122.368389,37.737967],[-122.368446,37.737957],[-122.368502,37.737959],[-122.368527,37.737956],[-122.368551,37.737953],[-122.368584,37.737948],[-122.368616,37.737943],[-122.36864,37.737938],[-122.368664,37.737932],[-122.368696,37.737924],[-122.368727,37.737916],[-122.368758,37.737906],[-122.368781,37.737898],[-122.368803,37.73789],[-122.368825,37.737881],[-122.368847,37.737872],[-122.368876,37.737859],[-122.368904,37.737845],[-122.368932,37.73783],[-122.368958,37.73781],[-122.36897,37.737796],[-122.368989,37.737782],[-122.36901,37.737771],[-122.36903,37.737765],[-122.369055,37.737761],[-122.369085,37.737761],[-122.369105,37.737765],[-122.369162,37.737765],[-122.369191,37.737764],[-122.36922,37.737762],[-122.369249,37.737759],[-122.369279,37.737757],[-122.369308,37.737753],[-122.369337,37.73775],[-122.369365,37.737746],[-122.369394,37.737741],[-122.369423,37.737737],[-122.369451,37.737731],[-122.36948,37.737726],[-122.369508,37.73772],[-122.369536,37.737714],[-122.369564,37.737707],[-122.369592,37.7377],[-122.36962,37.737692],[-122.369648,37.737684],[-122.369675,37.737676],[-122.369702,37.737667],[-122.369729,37.737658],[-122.369756,37.737649],[-122.369783,37.737639],[-122.369809,37.737629],[-122.369835,37.737618],[-122.369867,37.737604],[-122.369892,37.737589],[-122.369917,37.737577],[-122.369938,37.737568],[-122.369958,37.737562],[-122.369978,37.737557],[-122.370008,37.737552],[-122.370061,37.737545],[-122.37008,37.737542],[-122.370099,37.737539],[-122.370119,37.737536],[-122.370138,37.737533],[-122.370157,37.737529],[-122.370176,37.737525],[-122.370195,37.737521],[-122.370214,37.737516],[-122.370233,37.737511],[-122.370251,37.737506],[-122.37027,37.737501],[-122.370288,37.737495],[-122.370307,37.73749],[-122.370325,37.737483],[-122.370343,37.737477],[-122.370361,37.737471],[-122.370379,37.737464],[-122.370396,37.737457],[-122.370414,37.737449],[-122.370431,37.737442],[-122.370448,37.737434],[-122.370465,37.737426],[-122.370482,37.737418],[-122.370498,37.737409],[-122.370519,37.737395],[-122.370534,37.737382],[-122.370558,37.73737],[-122.370588,37.737365],[-122.370613,37.737366],[-122.370637,37.737371],[-122.370667,37.737376],[-122.3707,37.737378],[-122.370731,37.737376],[-122.370763,37.737372],[-122.370787,37.737365],[-122.37081,37.737357],[-122.370834,37.737346],[-122.370858,37.737332],[-122.370878,37.737317],[-122.370894,37.737301],[-122.370908,37.737284],[-122.370919,37.73727],[-122.37093,37.737256],[-122.370942,37.737243],[-122.370955,37.73723],[-122.37097,37.737216],[-122.370989,37.737199],[-122.371004,37.737187],[-122.371019,37.737176],[-122.371034,37.737165],[-122.37105,37.737154],[-122.371067,37.737144],[-122.371086,37.737134],[-122.371112,37.73712],[-122.371139,37.737108],[-122.371164,37.737098],[-122.371183,37.737091],[-122.371202,37.737085],[-122.371224,37.737079],[-122.371254,37.737071],[-122.371282,37.737065],[-122.371304,37.737061],[-122.37134,37.737057],[-122.371381,37.73708],[-122.371382,37.737061],[-122.371415,37.737067],[-122.371439,37.737071],[-122.371463,37.737074],[-122.371488,37.737077],[-122.371515,37.737079],[-122.371549,37.737081],[-122.371573,37.737081],[-122.371598,37.73708],[-122.371622,37.737079],[-122.371647,37.737078],[-122.371671,37.737075],[-122.371695,37.737072],[-122.371719,37.737068],[-122.371743,37.737064],[-122.371767,37.737059],[-122.371792,37.737052],[-122.371822,37.737043],[-122.371851,37.737038],[-122.37188,37.737035],[-122.37191,37.737033],[-122.371941,37.737035],[-122.371962,37.737037],[-122.371986,37.737041],[-122.372018,37.737055],[-122.372038,37.737067],[-122.372057,37.737081],[-122.372074,37.737096],[-122.372091,37.737112],[-122.372105,37.737129],[-122.372118,37.737147],[-122.372131,37.737161],[-122.372153,37.737161],[-122.372178,37.737158],[-122.372207,37.737152],[-122.372235,37.737145],[-122.37226,37.737137],[-122.372291,37.737121],[-122.372301,37.737098],[-122.372374,37.737078],[-122.372419,37.737072],[-122.372464,37.737066],[-122.372509,37.737062],[-122.372555,37.737057],[-122.3726,37.737054],[-122.372645,37.737051],[-122.372691,37.737049],[-122.372737,37.737047],[-122.372782,37.737046],[-122.372808,37.737045],[-122.372831,37.737044],[-122.372854,37.737043],[-122.372877,37.737042],[-122.3729,37.737042],[-122.372923,37.737043],[-122.372946,37.737043],[-122.372969,37.737044],[-122.372992,37.737045],[-122.373015,37.737047],[-122.373037,37.737049],[-122.37306,37.737051],[-122.373083,37.737053],[-122.373106,37.737056],[-122.373128,37.737059],[-122.373151,37.737062],[-122.373173,37.737066],[-122.373196,37.73707],[-122.373218,37.737075],[-122.37324,37.737079],[-122.373263,37.737084],[-122.373285,37.737089],[-122.373306,37.737095],[-122.373328,37.737101],[-122.37335,37.737107],[-122.373371,37.737113],[-122.373393,37.73712],[-122.373414,37.737127],[-122.373435,37.737135],[-122.373456,37.737142],[-122.373476,37.73715],[-122.373497,37.737158],[-122.373517,37.737167],[-122.373537,37.737176],[-122.373777,37.737373],[-122.37395,37.73751],[-122.374126,37.737644],[-122.374309,37.737779],[-122.374333,37.737793],[-122.374362,37.737806],[-122.374395,37.737816],[-122.374421,37.737821],[-122.374441,37.737823],[-122.374463,37.737824],[-122.374488,37.737823],[-122.374513,37.737819],[-122.37465,37.737876],[-122.374739,37.737918],[-122.374827,37.737962],[-122.374914,37.738007],[-122.375,37.738053],[-122.375049,37.738088],[-122.375079,37.738109],[-122.375109,37.738128],[-122.37514,37.738148],[-122.375171,37.738167],[-122.375202,37.738186],[-122.375234,37.738204],[-122.375266,37.738222],[-122.375299,37.738239],[-122.375332,37.738256],[-122.375365,37.738273],[-122.375399,37.738288],[-122.375433,37.738304],[-122.375468,37.738319],[-122.375503,37.738334],[-122.375538,37.738348],[-122.375573,37.738361],[-122.375609,37.738374],[-122.375645,37.738387],[-122.375681,37.738399],[-122.375717,37.73841],[-122.375754,37.738422],[-122.375791,37.738432],[-122.375828,37.738442],[-122.375866,37.738452],[-122.375903,37.738461],[-122.375941,37.738469],[-122.375987,37.738478],[-122.376017,37.738478],[-122.376038,37.738478],[-122.376063,37.738477],[-122.376092,37.738474],[-122.376113,37.738471],[-122.376137,37.738466],[-122.376162,37.738461],[-122.376186,37.738454],[-122.376213,37.738446],[-122.376232,37.738439],[-122.37625,37.738431],[-122.376269,37.738422],[-122.37629,37.738411],[-122.37631,37.7384],[-122.376327,37.738389],[-122.376343,37.738378],[-122.376358,37.738367],[-122.376378,37.73835],[-122.376397,37.738332],[-122.37641,37.738319],[-122.376421,37.738305],[-122.376437,37.738285],[-122.376452,37.738261],[-122.376018,37.737991],[-122.375987,37.737995],[-122.375963,37.737997],[-122.37594,37.737999],[-122.375916,37.738001],[-122.375892,37.738002],[-122.375869,37.738003],[-122.375845,37.738004],[-122.375822,37.738004],[-122.375798,37.738004],[-122.375774,37.738004],[-122.375751,37.738003],[-122.375727,37.738002],[-122.375704,37.738001],[-122.37568,37.738],[-122.375656,37.737998],[-122.375633,37.737996],[-122.37561,37.737993],[-122.375586,37.73799],[-122.375563,37.737987],[-122.37554,37.737983],[-122.375507,37.737977],[-122.37548,37.73797],[-122.37546,37.737965],[-122.375439,37.737959],[-122.375413,37.737951],[-122.375393,37.737945],[-122.375374,37.737937],[-122.375354,37.73793],[-122.375335,37.737922],[-122.375311,37.737911],[-122.375286,37.737899],[-122.375262,37.737887],[-122.375239,37.737873],[-122.375222,37.737863],[-122.375205,37.737853],[-122.375183,37.737838],[-122.375162,37.737823],[-122.375147,37.737811],[-122.375132,37.737799],[-122.375113,37.737782],[-122.375099,37.737769],[-122.375085,37.737756],[-122.375068,37.737738],[-122.375051,37.737719],[-122.375039,37.737705],[-122.375028,37.737691],[-122.375013,37.737671],[-122.374999,37.737652],[-122.37499,37.737636],[-122.37498,37.737621],[-122.374969,37.7376],[-122.374958,37.737579],[-122.374949,37.737558],[-122.374942,37.737542],[-122.374936,37.737525],[-122.374929,37.737503],[-122.374924,37.737487],[-122.37492,37.73747],[-122.37492,37.737453],[-122.374909,37.737426],[-122.374903,37.737408],[-122.374897,37.737385],[-122.374892,37.737361],[-122.374888,37.737337],[-122.374884,37.737313],[-122.374882,37.737289],[-122.374881,37.737265],[-122.374881,37.737247],[-122.374882,37.737229],[-122.374883,37.737211],[-122.374885,37.737193],[-122.374888,37.737169],[-122.374892,37.737145],[-122.374896,37.737127],[-122.3749,37.73711],[-122.374907,37.737086],[-122.374915,37.737063],[-122.374924,37.73704],[-122.374934,37.737017],[-122.374945,37.736995],[-122.374957,37.736973],[-122.37497,37.736951],[-122.37498,37.736935],[-122.374991,37.736919],[-122.375006,37.736898],[-122.375022,37.736878],[-122.375039,37.736858],[-122.375048,37.736837],[-122.375038,37.736822],[-122.375031,37.736803],[-122.375027,37.736786],[-122.375026,37.736764],[-122.375029,37.736743],[-122.375035,37.736727],[-122.375044,37.736708],[-122.375061,37.736688],[-122.37508,37.736671],[-122.375098,37.736655],[-122.375113,37.73664],[-122.375128,37.73662],[-122.375142,37.736598],[-122.37515,37.736581],[-122.375156,37.736563],[-122.375163,37.736539],[-122.375166,37.736519],[-122.375168,37.736495],[-122.375169,37.736474],[-122.375167,37.736449],[-122.375163,37.736427],[-122.37522,37.736299],[-122.375237,37.736225],[-122.375493,37.736054],[-122.375565,37.735998],[-122.375665,37.735884],[-122.375737,37.735829],[-122.375805,37.735812],[-122.375902,37.735838],[-122.375948,37.735843],[-122.375966,37.735816],[-122.375965,37.735773],[-122.375937,37.735722],[-122.375905,37.735653],[-122.375881,37.735629],[-122.375899,37.735586],[-122.37591,37.735561],[-122.375898,37.735531],[-122.375855,37.73552],[-122.375828,37.735493],[-122.375873,37.735477],[-122.37585,37.735453],[-122.375876,37.735437],[-122.375902,37.735416],[-122.375928,37.735385],[-122.375965,37.735305],[-122.37599,37.735241],[-122.376,37.735186],[-122.375917,37.735087],[-122.375874,37.735048],[-122.375833,37.735088],[-122.375791,37.735095],[-122.37573,37.735121],[-122.375697,37.735182],[-122.375629,37.735207],[-122.375572,37.735239],[-122.375535,37.735285],[-122.375502,37.735331],[-122.375461,37.735359],[-122.375408,37.735384],[-122.375373,37.735397],[-122.37532,37.735394],[-122.375254,37.73538],[-122.375204,37.735348],[-122.375165,37.735324],[-122.375126,37.735291],[-122.375075,37.735265],[-122.375063,37.735222],[-122.375054,37.735198],[-122.375042,37.735165],[-122.375038,37.735135],[-122.375037,37.735098],[-122.375058,37.735043],[-122.375008,37.735029],[-122.374966,37.735029],[-122.374935,37.735015],[-122.374908,37.735003],[-122.374877,37.734976],[-122.374871,37.734924],[-122.374893,37.734857],[-122.374914,37.734808],[-122.374947,37.734741],[-122.374988,37.734704],[-122.37503,37.734682],[-122.375071,37.734654],[-122.375105,37.734629],[-122.375116,37.734586],[-122.375146,37.734562],[-122.375129,37.734522],[-122.37509,37.734496],[-122.375036,37.734454],[-122.374981,37.734427],[-122.374939,37.734419],[-122.374913,37.734435],[-122.374893,37.734423],[-122.374893,37.734398],[-122.374907,37.734359],[-122.374894,37.73431],[-122.374882,37.73428],[-122.374877,37.734244],[-122.374869,37.734207],[-122.374868,37.734171],[-122.374927,37.734073],[-122.374952,37.734015],[-122.374954,37.733966],[-122.374957,37.733926],[-122.374964,37.73389],[-122.374982,37.733862],[-122.375013,37.733843],[-122.37507,37.733836],[-122.375123,37.733826],[-122.375154,37.73382],[-122.375172,37.733795],[-122.375171,37.733765],[-122.375229,37.733624],[-122.375289,37.733553],[-122.375325,37.733486],[-122.375362,37.733424],[-122.375376,37.733376],[-122.375382,37.733312],[-122.375464,37.733228],[-122.37551,37.7332],[-122.375523,37.733139],[-122.375507,37.733106],[-122.375652,37.732934],[-122.375686,37.732903],[-122.375685,37.73288],[-122.375651,37.732897],[-122.37555,37.732829],[-122.375617,37.732755],[-122.375574,37.732716],[-122.375197,37.732959],[-122.375009,37.732774],[-122.37499,37.73278],[-122.37497,37.732753],[-122.374891,37.7328],[-122.374867,37.732773],[-122.374833,37.732786],[-122.374805,37.732756],[-122.374609,37.73288],[-122.374558,37.73282],[-122.374905,37.732605],[-122.374823,37.73253],[-122.374676,37.732639],[-122.374394,37.73254],[-122.37431,37.732548],[-122.37423,37.732576],[-122.374177,37.732586],[-122.37412,37.732621],[-122.374113,37.732657],[-122.374052,37.732667],[-122.374003,37.732674],[-122.373912,37.732712],[-122.373893,37.732737],[-122.373883,37.732773],[-122.373791,37.732775],[-122.373761,37.7328],[-122.373754,37.732827],[-122.373747,37.732855],[-122.373725,37.732885],[-122.373694,37.732895],[-122.373637,37.732893],[-122.37361,37.732899],[-122.373568,37.732909],[-122.373542,37.732928],[-122.373512,37.732949],[-122.373501,37.73298],[-122.373503,37.733044],[-122.3735,37.733071],[-122.373481,37.733087],[-122.373436,37.733106],[-122.373412,37.7331],[-122.37339,37.733128],[-122.373372,37.733155],[-122.373327,37.733186],[-122.373292,37.733199],[-122.373255,37.733221],[-122.373217,37.733255],[-122.373184,37.733313],[-122.373146,37.733335],[-122.373109,37.733357],[-122.373056,37.733385],[-122.373026,37.733416],[-122.372988,37.733444],[-122.372947,37.73349],[-122.372903,37.733543],[-122.372843,37.733616],[-122.372787,37.733675],[-122.37266,37.73379],[-122.372616,37.733847],[-122.372571,37.7339],[-122.372542,37.733965],[-122.372516,37.733999],[-122.372467,37.734021],[-122.372391,37.734046],[-122.372338,37.734074],[-122.372264,37.734164],[-122.37223,37.734198],[-122.3722,37.734207],[-122.372135,37.73422],[-122.372066,37.734218],[-122.372024,37.734213],[-122.371977,37.734199],[-122.371922,37.734209],[-122.371893,37.734188],[-122.37185,37.73417],[-122.371815,37.734143],[-122.371784,37.734123],[-122.371757,37.734099],[-122.371718,37.734075],[-122.371659,37.734043],[-122.37159,37.734007],[-122.371531,37.733947],[-122.371503,37.733917],[-122.371452,37.733867],[-122.371413,37.733822],[-122.371366,37.733789],[-122.371306,37.733699],[-122.371248,37.733663],[-122.371182,37.733631],[-122.371143,37.733604],[-122.371119,37.733565],[-122.371069,37.733544],[-122.371041,37.733514],[-122.371009,37.733463],[-122.37097,37.733415],[-122.370946,37.733385],[-122.370907,37.733349],[-122.370883,37.733301],[-122.370855,37.733256],[-122.370812,37.733242],[-122.370763,37.733251],[-122.370739,37.733237],[-122.370742,37.733209],[-122.370734,37.733167],[-122.370713,37.733112],[-122.370604,37.733035],[-122.370511,37.733006],[-122.370445,37.73295],[-122.370337,37.732909],[-122.370232,37.732868],[-122.370174,37.732838],[-122.370077,37.732788],[-122.369991,37.732714],[-122.369929,37.732672],[-122.36989,37.732639],[-122.369823,37.732595],[-122.369765,37.732571],[-122.369665,37.732527],[-122.369587,37.732477],[-122.369536,37.732432],[-122.369523,37.732368],[-122.369525,37.732299],[-122.369528,37.732253],[-122.369515,37.732201],[-122.369459,37.732156],[-122.369436,37.732144],[-122.369413,37.732131],[-122.369391,37.732118],[-122.36937,37.732105],[-122.369348,37.732092],[-122.369327,37.732078],[-122.369306,37.732064],[-122.369285,37.73205],[-122.369265,37.732036],[-122.369245,37.732021],[-122.369201,37.731994],[-122.369177,37.731996],[-122.369153,37.731997],[-122.369132,37.731996],[-122.36911,37.731993],[-122.369083,37.731987],[-122.369059,37.731979],[-122.369039,37.731971],[-122.369021,37.731961],[-122.368981,37.731993],[-122.368997,37.73195],[-122.368979,37.731945],[-122.368959,37.73194],[-122.368932,37.731936],[-122.368907,37.731932],[-122.368882,37.731931],[-122.368851,37.73193],[-122.368827,37.731931],[-122.368804,37.731933],[-122.368778,37.731937],[-122.368752,37.731942],[-122.368733,37.731947],[-122.368715,37.731953],[-122.368686,37.731968],[-122.368662,37.731992],[-122.368647,37.732014],[-122.368638,37.732031],[-122.368631,37.732049],[-122.368627,37.732067],[-122.368625,37.732089],[-122.368627,37.732112],[-122.368633,37.732135],[-122.368642,37.732164],[-122.368643,37.732191],[-122.368638,37.73221],[-122.368627,37.732231],[-122.368611,37.73225],[-122.368591,37.732264],[-122.368567,37.732276],[-122.368547,37.732281],[-122.368525,37.732285],[-122.368496,37.732287],[-122.368467,37.73229],[-122.368438,37.732291],[-122.368417,37.732292],[-122.368395,37.732292],[-122.368373,37.732291],[-122.368352,37.73229],[-122.36833,37.732289],[-122.368309,37.732287],[-122.36828,37.732285],[-122.368259,37.732282],[-122.368237,37.732279],[-122.368216,37.732275],[-122.368195,37.732271],[-122.368168,37.732265],[-122.368141,37.732258],[-122.368114,37.732239],[-122.368087,37.73222],[-122.368059,37.732202],[-122.368031,37.732184],[-122.368003,37.732166],[-122.367974,37.732149],[-122.367945,37.732132],[-122.367916,37.732115],[-122.367886,37.732099],[-122.367826,37.732066],[-122.367803,37.732045],[-122.367784,37.73203],[-122.367767,37.732019],[-122.36775,37.732008],[-122.367727,37.731996],[-122.367704,37.731985],[-122.367684,37.731977],[-122.367656,37.731968],[-122.367621,37.731958],[-122.367591,37.731952],[-122.367566,37.731949],[-122.367538,37.731946],[-122.367509,37.731945],[-122.367483,37.731946],[-122.367458,37.731947],[-122.367433,37.73195],[-122.367408,37.731954],[-122.36738,37.73196],[-122.367356,37.731967],[-122.36733,37.731976],[-122.3673,37.731988],[-122.367278,37.731998],[-122.367266,37.732011],[-122.36725,37.732028],[-122.367232,37.732044],[-122.367219,37.732056],[-122.367205,37.732067],[-122.367186,37.732082],[-122.367166,37.732097],[-122.367151,37.732107],[-122.367136,37.732117],[-122.367115,37.73213],[-122.367082,37.732144],[-122.367054,37.73215],[-122.367022,37.73216],[-122.366988,37.732175],[-122.366962,37.73219],[-122.366939,37.732199],[-122.366922,37.732219],[-122.366905,37.732249],[-122.366892,37.73227],[-122.366876,37.732285],[-122.366859,37.732295],[-122.366839,37.732301],[-122.366818,37.732304],[-122.366794,37.732303],[-122.366765,37.732295],[-122.366678,37.732215],[-122.365835,37.73314],[-122.365857,37.733197],[-122.36532,37.733798],[-122.365294,37.733804],[-122.365268,37.733804],[-122.365242,37.733798],[-122.365219,37.733785],[-122.365205,37.733771],[-122.365196,37.733756],[-122.365192,37.73374],[-122.366542,37.732184],[-122.366457,37.732144],[-122.366314,37.732287],[-122.36623,37.732239],[-122.36556,37.732995],[-122.365446,37.733055],[-122.36533,37.732999],[-122.365348,37.732891],[-122.366182,37.731991],[-122.36615,37.731975],[-122.36619,37.731916],[-122.366,37.731828],[-122.365157,37.732769],[-122.365013,37.73283],[-122.364938,37.732756],[-122.364967,37.732665],[-122.36578,37.731773],[-122.36581,37.731715],[-122.365651,37.731626],[-122.364828,37.732543],[-122.364733,37.732486],[-122.365108,37.732066],[-122.363701,37.731284],[-122.36299,37.732074],[-122.362876,37.732143],[-122.362623,37.732006],[-122.363404,37.731115],[-122.362853,37.730801],[-122.362061,37.731675],[-122.361776,37.731539],[-122.362458,37.730761],[-122.362568,37.730643],[-122.361976,37.730329],[-122.362086,37.73021],[-122.3619,37.730088],[-122.36187,37.730082],[-122.361847,37.730078],[-122.361824,37.730074],[-122.361794,37.73007],[-122.361763,37.730067],[-122.361732,37.730064],[-122.361701,37.730062],[-122.36167,37.730062],[-122.361639,37.730062],[-122.361608,37.730063],[-122.361577,37.730064],[-122.361547,37.730067],[-122.361516,37.73007],[-122.361482,37.730075],[-122.36146,37.730079],[-122.361438,37.730082],[-122.361416,37.730085],[-122.361394,37.730086],[-122.361372,37.730088],[-122.36135,37.730088],[-122.361328,37.730088],[-122.361305,37.730088],[-122.361283,37.730086],[-122.361261,37.730085],[-122.361239,37.730082],[-122.361214,37.730079],[-122.361184,37.730073],[-122.361163,37.730069],[-122.361139,37.730063],[-122.361108,37.730054],[-122.361077,37.730044],[-122.361049,37.730033],[-122.36103,37.730025],[-122.36101,37.730016],[-122.360991,37.730007],[-122.360879,37.729906],[-122.360759,37.729968],[-122.360774,37.729979],[-122.360787,37.72999],[-122.360803,37.730008],[-122.360816,37.730027],[-122.360826,37.730047],[-122.360832,37.730068],[-122.360835,37.730085],[-122.360835,37.730103],[-122.360831,37.730127],[-122.360823,37.730151],[-122.360814,37.730168],[-122.360802,37.730184],[-122.36079,37.730198],[-122.360777,37.73021],[-122.360755,37.730225],[-122.360703,37.730243],[-122.360665,37.730253],[-122.360627,37.730262],[-122.360588,37.730271],[-122.36055,37.730279],[-122.360511,37.730286],[-122.360472,37.730293],[-122.360432,37.730299],[-122.360393,37.730305],[-122.360354,37.73031],[-122.360314,37.730315],[-122.360274,37.730319],[-122.360235,37.730323],[-122.360195,37.730326],[-122.360155,37.730329],[-122.360115,37.730331],[-122.360075,37.730332],[-122.360035,37.730333],[-122.359995,37.730333],[-122.359955,37.730333],[-122.359915,37.730332],[-122.359855,37.730305],[-122.359236,37.73001],[-122.35879,37.729783],[-122.358957,37.729712],[-122.358844,37.72966],[-122.358969,37.729518],[-122.361421,37.728953],[-122.361895,37.728828],[-122.361919,37.728822],[-122.361942,37.728817],[-122.361967,37.728809],[-122.362001,37.728798],[-122.362031,37.728787],[-122.362055,37.728777],[-122.362084,37.728764],[-122.362107,37.728752],[-122.362134,37.728737],[-122.362153,37.728725],[-122.362172,37.728713],[-122.36219,37.7287],[-122.362209,37.728685],[-122.362233,37.728666],[-122.362256,37.728646],[-122.362269,37.728634],[-122.362279,37.72862],[-122.362288,37.728604],[-122.362294,37.728584],[-122.362295,37.728562],[-122.362288,37.728533],[-122.362268,37.728514],[-122.362249,37.728505],[-122.362226,37.728496],[-122.362198,37.728486],[-122.362177,37.728479],[-122.362156,37.728472],[-122.362132,37.728466],[-122.362102,37.728459],[-122.36208,37.728455],[-122.362049,37.72845],[-122.362024,37.728447],[-122.362002,37.728445],[-122.361971,37.728444],[-122.361937,37.728443],[-122.361912,37.728443],[-122.361889,37.728444],[-122.361858,37.728447],[-122.361831,37.72845],[-122.361449,37.728524],[-122.359254,37.729046],[-122.35887,37.729172],[-122.357731,37.729443],[-122.357479,37.729245],[-122.357875,37.72895],[-122.360026,37.728454],[-122.360047,37.72845],[-122.360067,37.728444],[-122.360087,37.728439],[-122.360107,37.728432],[-122.360129,37.728425],[-122.360155,37.728414],[-122.360174,37.728406],[-122.360192,37.728398],[-122.36021,37.728388],[-122.360228,37.728379],[-122.360247,37.728367],[-122.360269,37.728353],[-122.360287,37.72834],[-122.36031,37.728322],[-122.360335,37.7283],[-122.36036,37.728281],[-122.360386,37.728263],[-122.3604,37.728243],[-122.360407,37.72822],[-122.360407,37.728203],[-122.360402,37.728183],[-122.360391,37.728166],[-122.36037,37.728157],[-122.360347,37.728153],[-122.360317,37.728148],[-122.360286,37.728144],[-122.360255,37.728141],[-122.360224,37.728138],[-122.360192,37.728137],[-122.360161,37.728136],[-122.360138,37.728137],[-122.360114,37.728137],[-122.360091,37.728138],[-122.360067,37.72814],[-122.360036,37.728143],[-122.360005,37.728147],[-122.359973,37.728152],[-122.357158,37.728825],[-122.35712,37.728661],[-122.356967,37.72871],[-122.3577,37.726282],[-122.358014,37.726039],[-122.361641,37.725219],[-122.361256,37.724165],[-122.357962,37.724944],[-122.357838,37.724624],[-122.361524,37.723775],[-122.362006,37.724061],[-122.362085,37.723987],[-122.364139,37.725245],[-122.364909,37.725702],[-122.364934,37.72571],[-122.364961,37.725717],[-122.364983,37.725721],[-122.365012,37.725724],[-122.365046,37.725725],[-122.365068,37.725724],[-122.365088,37.725721],[-122.365108,37.725718],[-122.365133,37.725712],[-122.36516,37.725703],[-122.365178,37.725695],[-122.365199,37.725685],[-122.365224,37.72567],[-122.365247,37.725652],[-122.365262,37.725639],[-122.365275,37.725624],[-122.365287,37.725609],[-122.365296,37.725595],[-122.365304,37.72558],[-122.365313,37.72556],[-122.36532,37.725538],[-122.365323,37.725522],[-122.365324,37.725504],[-122.365324,37.725484],[-122.365321,37.725461],[-122.365316,37.72544],[-122.36531,37.725425],[-122.365304,37.72541],[-122.365295,37.725395],[-122.365053,37.725226],[-122.362367,37.723679],[-122.36275,37.723259],[-122.359976,37.721629],[-122.360235,37.721358],[-122.362998,37.722979],[-122.36381,37.722102],[-122.359221,37.719407],[-122.359181,37.719395],[-122.359162,37.719379],[-122.359145,37.719358],[-122.359136,37.719341],[-122.359131,37.719321],[-122.359129,37.719298],[-122.359133,37.719277],[-122.35914,37.719258],[-122.359152,37.719238],[-122.359822,37.718515],[-122.359845,37.718498],[-122.359876,37.718483],[-122.359899,37.718477],[-122.359922,37.718473],[-122.359942,37.718472],[-122.359962,37.718474],[-122.359983,37.718477],[-122.360005,37.718484],[-122.360025,37.718493],[-122.362714,37.720071],[-122.363043,37.7197],[-122.36306,37.719689],[-122.36308,37.719681],[-122.363108,37.719674],[-122.36314,37.719673],[-122.363167,37.71964],[-122.363157,37.719617],[-122.363156,37.719592],[-122.363161,37.719574],[-122.363171,37.719558],[-122.363657,37.719055],[-122.362553,37.718432],[-122.362531,37.718418],[-122.362512,37.718402],[-122.362496,37.718385],[-122.36248,37.718363],[-122.362468,37.718339],[-122.362461,37.71832],[-122.362458,37.718304],[-122.362456,37.718282],[-122.362459,37.718252],[-122.362466,37.718226],[-122.362477,37.718202],[-122.362493,37.718178],[-122.362508,37.718162],[-122.358584,37.715883],[-122.358723,37.715731],[-122.362646,37.718021],[-122.362786,37.717866],[-122.363866,37.716727],[-122.35992,37.714426],[-122.360037,37.714298],[-122.363975,37.716581],[-122.364255,37.716297],[-122.36427,37.716287],[-122.364291,37.716279],[-122.364313,37.716274],[-122.364336,37.716273],[-122.364359,37.716277],[-122.364396,37.716278],[-122.365216,37.715352],[-122.365238,37.715301],[-122.36524,37.715235],[-122.365193,37.715177],[-122.364773,37.714933],[-122.364736,37.714971],[-122.36458,37.714864],[-122.364553,37.714804],[-122.364269,37.714639],[-122.364189,37.714637],[-122.364014,37.71455],[-122.364049,37.71451],[-122.363306,37.714078],[-122.363269,37.714116],[-122.363112,37.71401],[-122.363086,37.71395],[-122.362802,37.713784],[-122.362722,37.713782],[-122.362547,37.713695],[-122.362582,37.713656],[-122.36185,37.713229],[-122.361812,37.713267],[-122.361656,37.713161],[-122.36163,37.713101],[-122.361345,37.712935],[-122.361265,37.712933],[-122.361092,37.712851],[-122.361125,37.712807],[-122.36114,37.712789],[-122.361171,37.712752],[-122.361344,37.712845],[-122.361366,37.712893],[-122.361675,37.713073],[-122.361738,37.713075],[-122.361918,37.713159],[-122.361884,37.713194],[-122.362613,37.71362],[-122.362645,37.713583],[-122.362801,37.713694],[-122.362822,37.713741],[-122.363131,37.713921],[-122.363194,37.713924],[-122.363375,37.714008],[-122.36334,37.714043],[-122.36408,37.714474],[-122.364112,37.714438],[-122.364268,37.714549],[-122.364289,37.714596],[-122.364598,37.714776],[-122.364661,37.714778],[-122.364842,37.714863],[-122.364807,37.714898],[-122.365388,37.715237],[-122.36442,37.716319],[-122.364429,37.716343],[-122.36443,37.71636],[-122.364447,37.716373],[-122.364465,37.716381],[-122.364483,37.716389],[-122.3645,37.716397],[-122.364517,37.716406],[-122.364534,37.716414],[-122.364551,37.716423],[-122.364568,37.716433],[-122.364584,37.716442],[-122.364625,37.716466],[-122.364654,37.716478],[-122.364684,37.716484],[-122.364708,37.716485],[-122.364734,37.716482],[-122.364762,37.716475],[-122.36478,37.716468],[-122.364799,37.716458],[-122.364818,37.716448],[-122.364835,37.716437],[-122.364854,37.716423],[-122.364872,37.716408],[-122.364886,37.716394],[-122.364902,37.716376],[-122.364918,37.716349],[-122.364922,37.716325],[-122.364931,37.716299],[-122.364939,37.71628],[-122.36495,37.716263],[-122.364965,37.716242],[-122.36498,37.716225],[-122.364994,37.716211],[-122.365013,37.716196],[-122.365035,37.71618],[-122.36506,37.716167],[-122.365088,37.716154],[-122.365111,37.716138],[-122.365115,37.716121],[-122.365122,37.716104],[-122.36513,37.716088],[-122.365142,37.716071],[-122.365161,37.716051],[-122.365183,37.716034],[-122.365203,37.716021],[-122.365237,37.716004],[-122.365263,37.715993],[-122.365287,37.715985],[-122.365312,37.715979],[-122.365335,37.715974],[-122.365355,37.715972],[-122.365381,37.715969],[-122.365407,37.715969],[-122.365427,37.71597],[-122.365447,37.715971],[-122.365479,37.715976],[-122.365507,37.715982],[-122.365531,37.71599],[-122.365552,37.715997],[-122.365573,37.716006],[-122.365592,37.716016],[-122.365613,37.716029],[-122.365633,37.716043],[-122.365651,37.716057],[-122.365666,37.716072],[-122.365679,37.716087],[-122.365723,37.716142],[-122.365761,37.716188],[-122.3658,37.716234],[-122.36584,37.716279],[-122.365881,37.716324],[-122.365923,37.716368],[-122.365966,37.716411],[-122.36601,37.716454],[-122.36606,37.716501],[-122.36607,37.716517],[-122.36608,37.716534],[-122.366091,37.71655],[-122.366102,37.716566],[-122.366113,37.716582],[-122.366125,37.716597],[-122.366137,37.716613],[-122.36615,37.716628],[-122.366162,37.716643],[-122.366175,37.716658],[-122.366189,37.716673],[-122.366203,37.716688],[-122.366217,37.716702],[-122.366231,37.716716],[-122.366246,37.71673],[-122.366261,37.716744],[-122.366276,37.716758],[-122.366291,37.716771],[-122.366307,37.716784],[-122.366323,37.716797],[-122.36634,37.71681],[-122.366356,37.716823],[-122.366373,37.716835],[-122.366391,37.716847],[-122.366408,37.716859],[-122.366426,37.71687],[-122.366444,37.716882],[-122.366462,37.716893],[-122.366493,37.716911],[-122.366623,37.716994],[-122.366755,37.717076],[-122.36701,37.717225],[-122.367368,37.717432],[-122.367728,37.717647],[-122.367747,37.717658],[-122.367767,37.717669],[-122.367793,37.717683],[-122.367821,37.717696],[-122.367848,37.717708],[-122.367877,37.717719],[-122.367898,37.717727],[-122.367925,37.717736],[-122.36796,37.717742],[-122.367995,37.717748],[-122.36803,37.717753],[-122.368062,37.717757],[-122.368255,37.717777],[-122.368448,37.717797],[-122.368468,37.7178],[-122.368488,37.717801],[-122.368509,37.717803],[-122.368529,37.717804],[-122.368549,37.717805],[-122.36857,37.717806],[-122.36859,37.717806],[-122.36861,37.717806],[-122.368631,37.717806],[-122.368651,37.717806],[-122.368671,37.717805],[-122.368692,37.717804],[-122.368712,37.717802],[-122.368732,37.717801],[-122.368752,37.717799],[-122.368774,37.717797],[-122.368818,37.717792],[-122.368862,37.717788],[-122.368906,37.717784],[-122.36895,37.717781],[-122.368994,37.717779],[-122.369038,37.717777],[-122.369082,37.717776],[-122.369126,37.717776],[-122.369171,37.717776],[-122.369203,37.7178],[-122.369244,37.717779],[-122.369277,37.717784],[-122.369311,37.717789],[-122.369344,37.717795],[-122.369377,37.717802],[-122.369409,37.71781],[-122.369434,37.717817],[-122.369458,37.717824],[-122.369489,37.717834],[-122.36952,37.717845],[-122.369543,37.717854],[-122.369566,37.717863],[-122.369596,37.717876],[-122.369625,37.71789],[-122.369654,37.717905],[-122.369681,37.717921],[-122.369709,37.717937],[-122.369735,37.717954],[-122.369761,37.717972],[-122.369786,37.71799],[-122.36981,37.718009],[-122.369833,37.718029],[-122.369855,37.71805],[-122.369877,37.718071],[-122.369897,37.718092],[-122.369917,37.718115],[-122.369931,37.718132],[-122.369944,37.718149],[-122.369957,37.718167],[-122.369967,37.718181],[-122.369971,37.718199],[-122.369975,37.718217],[-122.36998,37.718235],[-122.369985,37.718253],[-122.36999,37.718271],[-122.369996,37.718289],[-122.370002,37.718307],[-122.370009,37.718324],[-122.370016,37.718342],[-122.370023,37.718359],[-122.370031,37.718376],[-122.370039,37.718393],[-122.370048,37.718411],[-122.370056,37.718427],[-122.370066,37.718444],[-122.370075,37.718461],[-122.370085,37.718477],[-122.370098,37.718498],[-122.370113,37.718512],[-122.370132,37.71853],[-122.370153,37.718548],[-122.370169,37.718561],[-122.370185,37.718573],[-122.370208,37.718589],[-122.370231,37.718605],[-122.370249,37.718616],[-122.370267,37.718627],[-122.370292,37.718641],[-122.370317,37.718654],[-122.370343,37.718666],[-122.370363,37.718675],[-122.370383,37.718683],[-122.37041,37.718694],[-122.370431,37.718701],[-122.370452,37.718708],[-122.37048,37.718717],[-122.370509,37.718725],[-122.370538,37.718732],[-122.370567,37.718738],[-122.370596,37.718744],[-122.370626,37.718748],[-122.370656,37.718752],[-122.370686,37.718755],[-122.370716,37.718757],[-122.370739,37.718758],[-122.370762,37.718759],[-122.370792,37.718759],[-122.370815,37.718758],[-122.370837,37.718757],[-122.370867,37.718755],[-122.370904,37.718748],[-122.370927,37.718741],[-122.370952,37.718736],[-122.370979,37.718733],[-122.371002,37.718732],[-122.371027,37.718734],[-122.371055,37.718738],[-122.371087,37.718748],[-122.371106,37.718755],[-122.371126,37.718766],[-122.37115,37.718782],[-122.371164,37.718794],[-122.371178,37.718806],[-122.371194,37.71882],[-122.371218,37.718835],[-122.371245,37.718849],[-122.371271,37.71886],[-122.371302,37.71887],[-122.371331,37.718876],[-122.371358,37.71888],[-122.371378,37.718882],[-122.371408,37.718882],[-122.371444,37.718876],[-122.371464,37.718869],[-122.371487,37.718864],[-122.371523,37.718863],[-122.371556,37.718869],[-122.371576,37.718876],[-122.371598,37.718896],[-122.371621,37.718918],[-122.371639,37.718935],[-122.371657,37.718951],[-122.371683,37.718972],[-122.371714,37.718993],[-122.371737,37.718998],[-122.371756,37.719002],[-122.371779,37.719005],[-122.371807,37.719008],[-122.371834,37.719009],[-122.371866,37.719009],[-122.371889,37.719008],[-122.371913,37.719006],[-122.371936,37.719003],[-122.371956,37.719],[-122.371979,37.718995],[-122.372005,37.718992],[-122.372028,37.718997],[-122.372055,37.719002],[-122.372082,37.719006],[-122.37211,37.719007],[-122.372134,37.719008],[-122.37216,37.719007],[-122.372186,37.719004],[-122.372206,37.719002],[-122.372238,37.718995],[-122.372229,37.719038],[-122.372274,37.718994],[-122.372302,37.719001],[-122.37234,37.719008],[-122.372373,37.719013],[-122.372402,37.719016],[-122.372431,37.719018],[-122.372465,37.719018],[-122.372504,37.719017],[-122.372538,37.719013],[-122.372571,37.719009],[-122.372604,37.719002],[-122.372628,37.718997],[-122.37265,37.718991],[-122.372685,37.71898],[-122.372716,37.718974],[-122.372742,37.718971],[-122.372762,37.718971],[-122.372786,37.718974],[-122.372806,37.718978],[-122.372827,37.718981],[-122.372855,37.718983],[-122.372876,37.718982],[-122.3729,37.718978],[-122.372926,37.718971],[-122.372949,37.718961],[-122.372969,37.718949],[-122.372988,37.718934],[-122.373248,37.718852],[-122.373273,37.718845],[-122.373299,37.718838],[-122.373333,37.71883],[-122.373368,37.718823],[-122.373403,37.718817],[-122.373439,37.718811],[-122.373465,37.718808],[-122.373492,37.718806],[-122.373528,37.718803],[-122.373564,37.718801],[-122.3736,37.7188],[-122.373627,37.7188],[-122.373654,37.718801],[-122.37369,37.718803],[-122.373726,37.718806],[-122.373753,37.718808],[-122.373791,37.718814],[-122.373821,37.718822],[-122.373841,37.718828],[-122.373862,37.718835],[-122.37389,37.718846],[-122.373925,37.718862],[-122.373947,37.718874],[-122.373965,37.718885],[-122.373982,37.718896],[-122.374002,37.71891],[-122.374018,37.718923],[-122.374033,37.718936],[-122.374055,37.718958],[-122.374071,37.718975],[-122.374088,37.718996],[-122.374103,37.719018],[-122.374115,37.719037],[-122.374127,37.71906],[-122.374136,37.71908],[-122.374143,37.7191],[-122.374151,37.719124],[-122.374155,37.719145],[-122.374158,37.719166],[-122.37416,37.719184],[-122.374161,37.719202],[-122.37416,37.719227],[-122.374156,37.719253],[-122.374151,37.719279],[-122.374149,37.719303],[-122.374149,37.719325],[-122.374151,37.719347],[-122.374156,37.719373],[-122.374163,37.719396],[-122.374169,37.719411],[-122.374178,37.719431],[-122.374192,37.719455],[-122.374203,37.71947],[-122.374215,37.719485],[-122.374227,37.719499],[-122.374241,37.719513],[-122.374255,37.719526],[-122.374269,37.719539],[-122.374285,37.719551],[-122.374301,37.719562],[-122.374325,37.719578],[-122.37442,37.719673],[-122.374424,37.71969],[-122.374432,37.719713],[-122.374447,37.71974],[-122.374459,37.719757],[-122.374475,37.719773],[-122.374495,37.71979],[-122.374521,37.719807],[-122.374544,37.719818],[-122.374571,37.719828],[-122.374599,37.719836],[-122.374624,37.719846],[-122.374647,37.719858],[-122.374664,37.719871],[-122.374682,37.719889],[-122.374697,37.719911],[-122.374715,37.719937],[-122.374727,37.719949],[-122.37474,37.719961],[-122.374753,37.719972],[-122.374766,37.719984],[-122.374779,37.719995],[-122.374793,37.720007],[-122.374807,37.720018],[-122.374821,37.720029],[-122.374835,37.720039],[-122.37485,37.72005],[-122.374865,37.72006],[-122.37488,37.72007],[-122.374895,37.72008],[-122.37491,37.72009],[-122.374926,37.720099],[-122.374942,37.720108],[-122.374958,37.720117],[-122.374974,37.720126],[-122.374991,37.720134],[-122.375007,37.720143],[-122.375024,37.720151],[-122.375041,37.720159],[-122.375058,37.720166],[-122.375076,37.720174],[-122.375093,37.720181],[-122.375111,37.720187],[-122.375129,37.720194],[-122.375147,37.7202],[-122.375169,37.72021],[-122.375205,37.720218],[-122.375233,37.720227],[-122.375254,37.720233],[-122.375276,37.720242],[-122.375303,37.720253],[-122.375323,37.720262],[-122.375341,37.720271],[-122.37536,37.72028],[-122.375378,37.720291],[-122.375395,37.720301],[-122.375412,37.720313],[-122.375429,37.720324],[-122.375445,37.720337],[-122.37546,37.720349],[-122.375475,37.720362],[-122.375491,37.720377],[-122.375512,37.720398],[-122.375529,37.720418],[-122.375542,37.720435],[-122.375557,37.720454],[-122.375592,37.720553],[-122.375625,37.720653],[-122.375656,37.720753],[-122.375684,37.720853],[-122.375711,37.720953],[-122.375755,37.721124],[-122.375767,37.721138],[-122.375779,37.72115],[-122.375793,37.721161],[-122.375815,37.721174],[-122.37584,37.721189],[-122.375858,37.721207],[-122.375869,37.721224],[-122.375878,37.721244],[-122.375883,37.72127],[-122.375875,37.721299],[-122.375864,37.721327],[-122.375854,37.721355],[-122.375847,37.721376],[-122.375842,37.721397],[-122.375835,37.721426],[-122.37583,37.721455],[-122.375826,37.721484],[-122.375823,37.721513],[-122.375822,37.721535],[-122.375821,37.721556],[-122.375821,37.721585],[-122.375823,37.721614],[-122.375825,37.721636],[-122.375828,37.721658],[-122.375833,37.721687],[-122.375839,37.721715],[-122.375847,37.721746],[-122.375854,37.721775],[-122.375861,37.721803],[-122.375867,37.721832],[-122.375873,37.721861],[-122.375878,37.72189],[-122.375882,37.721919],[-122.375886,37.721948],[-122.375889,37.721978],[-122.375891,37.722007],[-122.375893,37.722036],[-122.375895,37.722072],[-122.375903,37.722091],[-122.375912,37.722118],[-122.375917,37.722141],[-122.37592,37.722161],[-122.375923,37.722184],[-122.375923,37.722208],[-122.375922,37.722231],[-122.375919,37.722253],[-122.375914,37.722274],[-122.375911,37.72229],[-122.375908,37.722306],[-122.375906,37.722322],[-122.375904,37.722339],[-122.375902,37.722355],[-122.375901,37.722371],[-122.3759,37.722387],[-122.375899,37.722404],[-122.375898,37.72242],[-122.375898,37.722436],[-122.375899,37.722453],[-122.3759,37.722469],[-122.375901,37.722485],[-122.375902,37.722501],[-122.375904,37.722518],[-122.375906,37.722534],[-122.375909,37.72255],[-122.375911,37.722566],[-122.375915,37.722582],[-122.375918,37.722599],[-122.375922,37.722615],[-122.375926,37.72263],[-122.375931,37.722646],[-122.375936,37.722662],[-122.375941,37.722678],[-122.375947,37.722694],[-122.375953,37.722709],[-122.375959,37.722725],[-122.375966,37.72274],[-122.375973,37.722756],[-122.375981,37.722771],[-122.375988,37.722786],[-122.375996,37.722801],[-122.376005,37.722816],[-122.376013,37.722831],[-122.37603,37.722858],[-122.37604,37.722874],[-122.37605,37.722891],[-122.37606,37.722907],[-122.37607,37.722924],[-122.376081,37.72294],[-122.376092,37.722956],[-122.376104,37.722971],[-122.376116,37.722987],[-122.376128,37.723003],[-122.376141,37.723018],[-122.376154,37.723033],[-122.376167,37.723048],[-122.376181,37.723063],[-122.376194,37.723077],[-122.376209,37.723092],[-122.376223,37.723106],[-122.376238,37.72312],[-122.376253,37.723133],[-122.376269,37.723147],[-122.376285,37.72316],[-122.376301,37.723173],[-122.376317,37.723186],[-122.376334,37.723199],[-122.37635,37.723211],[-122.376368,37.723224],[-122.376385,37.723236],[-122.376403,37.723247],[-122.376421,37.723259],[-122.376439,37.72327],[-122.376457,37.723281],[-122.376476,37.723292],[-122.376495,37.723302],[-122.376514,37.723312],[-122.376564,37.723336],[-122.376591,37.723349],[-122.376609,37.72336],[-122.376631,37.723374],[-122.376651,37.72339],[-122.376668,37.723405],[-122.376683,37.723421],[-122.376699,37.72344],[-122.376714,37.723462],[-122.37672,37.723483],[-122.376715,37.723506],[-122.376706,37.723528],[-122.376697,37.723543],[-122.376684,37.723561],[-122.376665,37.72358],[-122.377085,37.724237],[-122.377101,37.724225],[-122.377121,37.724211],[-122.377143,37.724198],[-122.377169,37.724186],[-122.377194,37.724177],[-122.377221,37.72417],[-122.377254,37.724164],[-122.377286,37.724161],[-122.377324,37.724163],[-122.377346,37.724165],[-122.377368,37.724166],[-122.37739,37.724168],[-122.377411,37.724169],[-122.377433,37.72417],[-122.377455,37.72417],[-122.377477,37.72417],[-122.377499,37.72417],[-122.377521,37.72417],[-122.377543,37.724169],[-122.377565,37.724168],[-122.377587,37.724167],[-122.377609,37.724165],[-122.37763,37.724163],[-122.377652,37.724161],[-122.377674,37.724158],[-122.377696,37.724155],[-122.377717,37.724152],[-122.377739,37.724149],[-122.37776,37.724145],[-122.377781,37.724141],[-122.377803,37.724137],[-122.377824,37.724132],[-122.377861,37.724092],[-122.377904,37.724109],[-122.377953,37.724094],[-122.378002,37.72408],[-122.378052,37.724067],[-122.378102,37.724054],[-122.378152,37.724042],[-122.378203,37.72403],[-122.378253,37.72402],[-122.378304,37.72401],[-122.378386,37.723996],[-122.378422,37.723992],[-122.378459,37.723987],[-122.378495,37.72398],[-122.378531,37.723973],[-122.378557,37.723967],[-122.378584,37.723961],[-122.378618,37.723951],[-122.378644,37.723943],[-122.37867,37.723935],[-122.378703,37.723923],[-122.378728,37.723913],[-122.378753,37.723903],[-122.378785,37.723889],[-122.378817,37.723874],[-122.37884,37.723862],[-122.378863,37.72385],[-122.378892,37.723832],[-122.378914,37.723819],[-122.378936,37.723805],[-122.378963,37.723786],[-122.37899,37.723766],[-122.379016,37.723745],[-122.379035,37.723729],[-122.37905,37.723716],[-122.379063,37.723699],[-122.379075,37.723681],[-122.379087,37.723664],[-122.379099,37.723646],[-122.37911,37.723628],[-122.379121,37.72361],[-122.379131,37.723592],[-122.379141,37.723573],[-122.379151,37.723555],[-122.37916,37.723536],[-122.379169,37.723517],[-122.379177,37.723498],[-122.379185,37.723479],[-122.379193,37.72346],[-122.3792,37.723441],[-122.379206,37.723422],[-122.379213,37.723402],[-122.379219,37.723383],[-122.379224,37.723363],[-122.379229,37.723344],[-122.379234,37.723324],[-122.379238,37.723304],[-122.379241,37.723285],[-122.379245,37.723265],[-122.379247,37.723245],[-122.37925,37.723225],[-122.379252,37.723205],[-122.379253,37.723185],[-122.379254,37.723153],[-122.379254,37.723137],[-122.379258,37.723113],[-122.379267,37.723087],[-122.379278,37.723067],[-122.379293,37.723048],[-122.379316,37.723026],[-122.379339,37.72301],[-122.379363,37.722998],[-122.379384,37.722989],[-122.379406,37.722983],[-122.379429,37.722978],[-122.379459,37.722975],[-122.379491,37.722972],[-122.379523,37.722966],[-122.379549,37.72296],[-122.37958,37.722951],[-122.379606,37.722941],[-122.379627,37.722932],[-122.379653,37.72292],[-122.37968,37.722905],[-122.379708,37.722886],[-122.379731,37.722868],[-122.379753,37.722848],[-122.379769,37.722831],[-122.379789,37.722807],[-122.379805,37.722784],[-122.379818,37.722761],[-122.379814,37.7227],[-122.379868,37.722594],[-122.379936,37.722365],[-122.379943,37.722338],[-122.379952,37.722311],[-122.379965,37.722286],[-122.379977,37.722266],[-122.379992,37.722244],[-122.380007,37.722226],[-122.380023,37.722209],[-122.38004,37.722194],[-122.380055,37.722181],[-122.380074,37.722167],[-122.380101,37.72215],[-122.380127,37.722136],[-122.380149,37.722125],[-122.380173,37.722115],[-122.380201,37.722099],[-122.380221,37.722086],[-122.380241,37.722072],[-122.380261,37.722058],[-122.38028,37.722044],[-122.380299,37.72203],[-122.380318,37.722015],[-122.380336,37.722],[-122.380354,37.721984],[-122.380372,37.721969],[-122.380389,37.721953],[-122.380406,37.721937],[-122.380423,37.721921],[-122.380439,37.721904],[-122.380455,37.721888],[-122.38047,37.721871],[-122.380509,37.721831],[-122.380535,37.721816],[-122.380554,37.721807],[-122.380574,37.721798],[-122.380598,37.721789],[-122.380627,37.721779],[-122.380661,37.721771],[-122.380687,37.721766],[-122.380709,37.721762],[-122.380735,37.72176],[-122.380758,37.721759],[-122.38078,37.721759],[-122.380816,37.72176],[-122.380848,37.721763],[-122.380873,37.721768],[-122.380899,37.721773],[-122.380929,37.721781],[-122.380962,37.721793],[-122.38121,37.721933],[-122.381598,37.722142],[-122.381622,37.722152],[-122.381646,37.722161],[-122.381676,37.722171],[-122.381701,37.722178],[-122.381735,37.722186],[-122.381766,37.722193],[-122.381789,37.722197],[-122.381813,37.7222],[-122.381839,37.722203],[-122.381871,37.722206],[-122.381895,37.722207],[-122.381919,37.722207],[-122.381942,37.722207],[-122.381969,37.722206],[-122.38201,37.722202],[-122.382132,37.722161],[-122.382053,37.722202],[-122.382074,37.722208],[-122.382094,37.722215],[-122.382115,37.722222],[-122.382134,37.722229],[-122.382154,37.722237],[-122.382174,37.722245],[-122.382193,37.722253],[-122.382212,37.722262],[-122.382232,37.722272],[-122.382254,37.722281],[-122.382275,37.722287],[-122.382299,37.722292],[-122.382322,37.722295],[-122.382342,37.722298],[-122.382362,37.722304],[-122.382379,37.722311],[-122.382399,37.722323],[-122.382415,37.722335],[-122.382427,37.722348],[-122.382442,37.722365],[-122.382466,37.722377],[-122.382491,37.72238],[-122.382511,37.722379],[-122.382533,37.722382],[-122.382555,37.72239],[-122.38257,37.7224],[-122.382583,37.722418],[-122.382589,37.722446],[-122.382593,37.722467],[-122.382611,37.722484],[-122.382642,37.722502],[-122.382658,37.722513],[-122.382675,37.722524],[-122.382692,37.722534],[-122.382709,37.722545],[-122.382727,37.722555],[-122.382745,37.722565],[-122.382763,37.722575],[-122.382781,37.722584],[-122.3828,37.722593],[-122.382825,37.722608],[-122.382839,37.722619],[-122.382863,37.722627],[-122.382887,37.72263],[-122.382915,37.722631],[-122.382937,37.722647],[-122.382949,37.72267],[-122.382965,37.722687],[-122.382983,37.722701],[-122.383003,37.722714],[-122.383026,37.722725],[-122.383048,37.722734],[-122.383077,37.722744],[-122.383103,37.722755],[-122.383128,37.722767],[-122.383153,37.72278],[-122.383176,37.722795],[-122.383194,37.722808],[-122.383212,37.722822],[-122.383229,37.722837],[-122.383248,37.722853],[-122.383269,37.722867],[-122.383291,37.72288],[-122.383314,37.722893],[-122.383337,37.722905],[-122.383354,37.722913],[-122.383372,37.722921],[-122.383396,37.722932],[-122.383423,37.722942],[-122.383518,37.722983],[-122.383614,37.723029],[-122.38363,37.72304],[-122.383646,37.723056],[-122.383657,37.723073],[-122.383664,37.723089],[-122.38367,37.723109],[-122.383679,37.723127],[-122.383694,37.723144],[-122.383712,37.723156],[-122.383732,37.723171],[-122.383751,37.72319],[-122.383773,37.723194],[-122.383798,37.723188],[-122.38382,37.723193],[-122.383834,37.723215],[-122.383845,37.723238],[-122.383853,37.723258],[-122.383861,37.723282],[-122.383867,37.72331],[-122.383871,37.723334],[-122.383873,37.723352],[-122.383878,37.723374],[-122.383886,37.723398],[-122.383899,37.723428],[-122.383916,37.723444],[-122.383955,37.723455],[-122.383982,37.723459],[-122.384009,37.723462],[-122.384036,37.723465],[-122.384063,37.723468],[-122.38409,37.72347],[-122.384148,37.723474],[-122.384174,37.723477],[-122.384196,37.723481],[-122.384227,37.723487],[-122.384254,37.723495],[-122.384275,37.723502],[-122.384295,37.72351],[-122.384319,37.72352],[-122.384341,37.723532],[-122.384371,37.723552],[-122.38439,37.723572],[-122.384405,37.723586],[-122.38442,37.723598],[-122.384444,37.723609],[-122.384472,37.723621],[-122.384492,37.723631],[-122.384512,37.723644],[-122.384529,37.723657],[-122.384548,37.723675],[-122.384565,37.723696],[-122.384578,37.723711],[-122.384594,37.723727],[-122.384615,37.723744],[-122.384637,37.723758],[-122.384661,37.723771],[-122.384679,37.723779],[-122.384696,37.723787],[-122.384715,37.723797],[-122.384731,37.723808],[-122.384746,37.723822],[-122.384758,37.723836],[-122.384769,37.723853],[-122.384784,37.723869],[-122.384799,37.723881],[-122.384819,37.723892],[-122.384843,37.723901],[-122.384886,37.723911],[-122.384904,37.723922],[-122.384917,37.723933],[-122.384932,37.723954],[-122.384944,37.723973],[-122.384955,37.723993],[-122.384966,37.724013],[-122.384982,37.724031],[-122.384998,37.724051],[-122.38501,37.724071],[-122.385022,37.724094],[-122.385041,37.724109],[-122.38506,37.724115],[-122.38508,37.724114],[-122.385109,37.724107],[-122.385136,37.724102],[-122.385164,37.7241],[-122.385193,37.724101],[-122.385219,37.724104],[-122.385248,37.724112],[-122.385274,37.724122],[-122.385301,37.724134],[-122.385324,37.724142],[-122.385348,37.724149],[-122.385376,37.724153],[-122.385409,37.724155],[-122.385443,37.724154],[-122.385466,37.72415],[-122.385518,37.724143],[-122.385578,37.724136],[-122.385611,37.724146],[-122.385629,37.724163],[-122.385643,37.724177],[-122.385659,37.724191],[-122.385673,37.724202],[-122.385691,37.724214],[-122.385707,37.724224],[-122.385727,37.724234],[-122.385744,37.724242],[-122.385768,37.72425],[-122.385799,37.72426],[-122.385827,37.72427],[-122.385851,37.72428],[-122.385873,37.724292],[-122.385897,37.724306],[-122.385921,37.724324],[-122.385948,37.724346],[-122.38597,37.72436],[-122.385998,37.724371],[-122.386021,37.724378],[-122.386042,37.724385],[-122.386067,37.724395],[-122.386092,37.724409],[-122.386113,37.724425],[-122.386155,37.724396],[-122.386135,37.724441],[-122.386152,37.72445],[-122.386174,37.72446],[-122.386195,37.724466],[-122.386217,37.724471],[-122.386239,37.724473],[-122.386268,37.724474],[-122.386302,37.724476],[-122.386334,37.724478],[-122.386363,37.724479],[-122.386388,37.724478],[-122.386412,37.724476],[-122.386441,37.724473],[-122.386469,37.724468],[-122.386497,37.724462],[-122.386524,37.724455],[-122.386556,37.724447],[-122.386591,37.72444],[-122.386617,37.724433],[-122.386639,37.724425],[-122.386659,37.724417],[-122.386677,37.724407],[-122.386695,37.724397],[-122.386714,37.724384],[-122.386733,37.724368],[-122.386748,37.724355],[-122.386758,37.724339],[-122.386772,37.724321],[-122.386799,37.724306],[-122.386832,37.724298],[-122.38686,37.724294],[-122.386885,37.724292],[-122.386908,37.724285],[-122.386924,37.724273],[-122.386933,37.724256],[-122.386935,37.724236],[-122.386932,37.724217],[-122.386933,37.724196],[-122.386928,37.724172],[-122.386918,37.724155],[-122.386903,37.72414],[-122.386875,37.724125],[-122.386838,37.72411],[-122.386815,37.7241],[-122.386793,37.724089],[-122.38677,37.724078],[-122.386748,37.724067],[-122.386726,37.724055],[-122.386704,37.724043],[-122.386683,37.724031],[-122.386662,37.724018],[-122.386641,37.724006],[-122.38662,37.723992],[-122.3866,37.723979],[-122.38658,37.723965],[-122.386544,37.72394],[-122.386298,37.723802],[-122.386051,37.723663],[-122.386026,37.723653],[-122.385999,37.723644],[-122.385973,37.723635],[-122.385924,37.723619],[-122.385903,37.723608],[-122.385885,37.723591],[-122.385867,37.723564],[-122.385849,37.72355],[-122.385828,37.723544],[-122.385809,37.723539],[-122.38578,37.723529],[-122.385755,37.723518],[-122.385735,37.723502],[-122.385722,37.723488],[-122.385704,37.723477],[-122.385673,37.72346],[-122.385652,37.723446],[-122.385631,37.723432],[-122.385602,37.723415],[-122.38558,37.723402],[-122.385557,37.72339],[-122.385534,37.723379],[-122.385496,37.723365],[-122.385469,37.723364],[-122.385441,37.723359],[-122.385411,37.723344],[-122.385389,37.723329],[-122.385371,37.723319],[-122.385352,37.72331],[-122.385329,37.7233],[-122.385309,37.723292],[-122.385288,37.723285],[-122.38527,37.723275],[-122.385248,37.723263],[-122.385229,37.723254],[-122.385205,37.723244],[-122.385177,37.723233],[-122.385148,37.723224],[-122.385114,37.723216],[-122.385088,37.723211],[-122.385063,37.723206],[-122.385039,37.723199],[-122.385008,37.723188],[-122.384977,37.723172],[-122.384946,37.723153],[-122.384926,37.72314],[-122.384906,37.723128],[-122.384885,37.723117],[-122.384864,37.723105],[-122.384843,37.723094],[-122.384822,37.723083],[-122.384801,37.723073],[-122.384779,37.723063],[-122.384733,37.723041],[-122.384709,37.723026],[-122.384695,37.723014],[-122.384675,37.722994],[-122.384657,37.72297],[-122.384641,37.722955],[-122.384619,37.722943],[-122.384592,37.722928],[-122.384575,37.722915],[-122.384559,37.722901],[-122.384537,37.722882],[-122.384519,37.722863],[-122.384434,37.722807],[-122.384348,37.722752],[-122.384239,37.722685],[-122.384208,37.722671],[-122.384176,37.722657],[-122.384145,37.722642],[-122.384114,37.722627],[-122.384083,37.722611],[-122.384053,37.722595],[-122.384023,37.722579],[-122.383992,37.722561],[-122.383974,37.722546],[-122.383956,37.722532],[-122.383937,37.722517],[-122.383919,37.722503],[-122.383877,37.722476],[-122.383858,37.722468],[-122.383835,37.722457],[-122.383813,37.722445],[-122.383796,37.722435],[-122.383779,37.722424],[-122.383762,37.722412],[-122.383747,37.7224],[-122.383732,37.722387],[-122.383715,37.722362],[-122.383684,37.722349],[-122.383661,37.722336],[-122.383642,37.722327],[-122.383622,37.722319],[-122.383601,37.722313],[-122.383574,37.722305],[-122.383557,37.722296],[-122.383541,37.722286],[-122.383526,37.722276],[-122.38351,37.722266],[-122.383495,37.722255],[-122.383479,37.722242],[-122.383461,37.722226],[-122.383438,37.722204],[-122.38342,37.722192],[-122.383401,37.722182],[-122.383374,37.722174],[-122.383344,37.722161],[-122.383318,37.722144],[-122.383294,37.722127],[-122.38327,37.722111],[-122.383251,37.7221],[-122.383228,37.72209],[-122.383205,37.722082],[-122.383185,37.722076],[-122.383165,37.722071],[-122.383132,37.722062],[-122.3831,37.722051],[-122.383076,37.722042],[-122.383052,37.722032],[-122.38302,37.722019],[-122.382997,37.722008],[-122.382975,37.721997],[-122.382952,37.721986],[-122.38293,37.721973],[-122.38289,37.721948],[-122.38287,37.72193],[-122.382853,37.721913],[-122.382838,37.721896],[-122.382822,37.721875],[-122.382812,37.721859],[-122.382802,37.721842],[-122.382791,37.721818],[-122.382781,37.721801],[-122.38277,37.721784],[-122.382758,37.721768],[-122.382745,37.721752],[-122.382729,37.721733],[-122.382721,37.721715],[-122.382721,37.721696],[-122.382728,37.72167],[-122.382732,37.721649],[-122.382732,37.721629],[-122.382732,37.721612],[-122.382734,37.721587],[-122.382738,37.721559],[-122.382743,37.721535],[-122.382751,37.721511],[-122.38276,37.721488],[-122.382769,37.721459],[-122.382776,37.721438],[-122.382782,37.721416],[-122.38279,37.721395],[-122.382798,37.721374],[-122.382806,37.721353],[-122.382815,37.721332],[-122.382824,37.721311],[-122.382834,37.72129],[-122.382844,37.72127],[-122.382854,37.721249],[-122.382866,37.721229],[-122.382877,37.721209],[-122.382904,37.721162],[-122.38291,37.721147],[-122.382918,37.721132],[-122.382926,37.721118],[-122.382936,37.721104],[-122.382946,37.72109],[-122.382958,37.721077],[-122.382974,37.72106],[-122.382992,37.721044],[-122.383015,37.721026],[-122.383037,37.721011],[-122.383056,37.721],[-122.383083,37.720987],[-122.38311,37.720971],[-122.383134,37.720952],[-122.383152,37.720935],[-122.383168,37.720917],[-122.383199,37.720872],[-122.383227,37.720832],[-122.383257,37.720793],[-122.383306,37.72073],[-122.383317,37.720714],[-122.383326,37.720699],[-122.383336,37.720683],[-122.383345,37.720667],[-122.383353,37.72065],[-122.383363,37.720629],[-122.383372,37.720606],[-122.38338,37.720584],[-122.383386,37.720567],[-122.383391,37.72055],[-122.383396,37.720527],[-122.383401,37.720504],[-122.383405,37.720481],[-122.383408,37.720452],[-122.383408,37.720437],[-122.383407,37.720421],[-122.383405,37.7204],[-122.383403,37.720382],[-122.3834,37.720367],[-122.383389,37.720343],[-122.383357,37.720336],[-122.383333,37.720353],[-122.383308,37.720348],[-122.383307,37.720323],[-122.383287,37.72031],[-122.383263,37.720299],[-122.383246,37.720281],[-122.383241,37.720257],[-122.383249,37.720233],[-122.383256,37.720216],[-122.383259,37.720197],[-122.383258,37.720174],[-122.383248,37.720146],[-122.383235,37.720126],[-122.383219,37.72011],[-122.3832,37.720096],[-122.383075,37.720032],[-122.382844,37.719922],[-122.382825,37.719917],[-122.382806,37.719912],[-122.382788,37.719907],[-122.382769,37.719901],[-122.382751,37.719895],[-122.382733,37.719888],[-122.382709,37.719879],[-122.382686,37.719869],[-122.382669,37.719861],[-122.382652,37.719853],[-122.382635,37.719845],[-122.382619,37.719836],[-122.382598,37.719823],[-122.382577,37.71981],[-122.382557,37.719797],[-122.382537,37.719783],[-122.382518,37.719768],[-122.38233,37.719659],[-122.382141,37.719552],[-122.382084,37.719527],[-122.382018,37.719499],[-122.381988,37.719486],[-122.381964,37.719474],[-122.381936,37.719458],[-122.381909,37.719441],[-122.381888,37.719425],[-122.381868,37.71941],[-122.381852,37.7194],[-122.38183,37.71939],[-122.381811,37.719384],[-122.381794,37.719377],[-122.381772,37.719366],[-122.381753,37.719353],[-122.381733,37.719337],[-122.381718,37.719319],[-122.381706,37.719302],[-122.381692,37.719278],[-122.381681,37.71926],[-122.38167,37.719246],[-122.381659,37.719232],[-122.381642,37.719214],[-122.381627,37.719198],[-122.38161,37.719183],[-122.381596,37.719168],[-122.381583,37.719149],[-122.381572,37.719129],[-122.381567,37.719114],[-122.38156,37.719095],[-122.381551,37.719077],[-122.381539,37.719052],[-122.381525,37.719028],[-122.38151,37.719004],[-122.381495,37.718981],[-122.381478,37.718958],[-122.38146,37.718936],[-122.381446,37.718919],[-122.381432,37.718903],[-122.381417,37.718887],[-122.381401,37.718871],[-122.38138,37.718851],[-122.381363,37.718836],[-122.381346,37.718822],[-122.381322,37.718803],[-122.381279,37.718779],[-122.381249,37.718771],[-122.381224,37.718765],[-122.381199,37.718761],[-122.381164,37.718758],[-122.381132,37.718757],[-122.381106,37.718758],[-122.381085,37.718759],[-122.381042,37.71876],[-122.380998,37.718762],[-122.380955,37.718765],[-122.380912,37.718768],[-122.380819,37.718777],[-122.380792,37.71878],[-122.380769,37.718781],[-122.380746,37.718781],[-122.380719,37.71878],[-122.380692,37.718778],[-122.380669,37.718776],[-122.380647,37.718772],[-122.380621,37.718767],[-122.380594,37.718761],[-122.380565,37.718753],[-122.380515,37.718742],[-122.380456,37.71873],[-122.380436,37.718726],[-122.380416,37.718719],[-122.380389,37.718709],[-122.380343,37.718684],[-122.380325,37.718669],[-122.380313,37.718655],[-122.380295,37.718635],[-122.380274,37.718613],[-122.380257,37.718588],[-122.380243,37.718565],[-122.380229,37.718546],[-122.380216,37.718533],[-122.380201,37.718522],[-122.380184,37.71851],[-122.380165,37.718501],[-122.380142,37.718492],[-122.380117,37.718485],[-122.380095,37.718481],[-122.380071,37.71848],[-122.380044,37.71848],[-122.380014,37.718475],[-122.379987,37.718467],[-122.379969,37.71846],[-122.379951,37.71845],[-122.37993,37.718435],[-122.379938,37.718419],[-122.379912,37.718416],[-122.379897,37.718403],[-122.379873,37.718387],[-122.379847,37.718375],[-122.379823,37.718368],[-122.3798,37.718363],[-122.379778,37.718361],[-122.379758,37.718361],[-122.379735,37.718361],[-122.379713,37.718356],[-122.379696,37.718345],[-122.379684,37.718331],[-122.379676,37.718311],[-122.379658,37.71829],[-122.379638,37.718279],[-122.379619,37.718272],[-122.379603,37.718261],[-122.379586,37.71824],[-122.379562,37.718215],[-122.379537,37.718194],[-122.379517,37.718179],[-122.379498,37.718167],[-122.37947,37.718149],[-122.379453,37.718132],[-122.379439,37.718112],[-122.379428,37.71809],[-122.379421,37.718066],[-122.379412,37.718048],[-122.379399,37.718032],[-122.379383,37.718019],[-122.379364,37.718004],[-122.379349,37.717987],[-122.379329,37.717969],[-122.379314,37.717957],[-122.379295,37.717943],[-122.379267,37.717921],[-122.37925,37.717904],[-122.379233,37.717889],[-122.379214,37.717875],[-122.379193,37.717862],[-122.379165,37.717843],[-122.379146,37.717829],[-122.379123,37.717818],[-122.379103,37.717806],[-122.379088,37.717793],[-122.379068,37.717781],[-122.379035,37.717774],[-122.379018,37.717755],[-122.379008,37.717742],[-122.378984,37.717733],[-122.378961,37.717726],[-122.378943,37.717718],[-122.37892,37.717707],[-122.378898,37.717694],[-122.378877,37.717682],[-122.378844,37.717665],[-122.378823,37.717655],[-122.378803,37.717646],[-122.37878,37.717637],[-122.378762,37.717629],[-122.378744,37.717621],[-122.378727,37.717613],[-122.37871,37.717605],[-122.378693,37.717597],[-122.378676,37.717588],[-122.378659,37.717579],[-122.378643,37.71757],[-122.378627,37.71756],[-122.378611,37.71755],[-122.378595,37.71754],[-122.378579,37.71753],[-122.378551,37.717511],[-122.378491,37.71748],[-122.378431,37.717449],[-122.378373,37.717417],[-122.378315,37.717384],[-122.378221,37.717328],[-122.378163,37.717302],[-122.378105,37.717277],[-122.378046,37.717252],[-122.377987,37.717228],[-122.377883,37.717189],[-122.377451,37.716962],[-122.377409,37.716936],[-122.377367,37.71691],[-122.377324,37.716885],[-122.37728,37.71686],[-122.377192,37.716851],[-122.377174,37.716801],[-122.377155,37.71679],[-122.377136,37.716779],[-122.377117,37.716768],[-122.377098,37.716757],[-122.377078,37.716747],[-122.377058,37.716736],[-122.377036,37.716725],[-122.377004,37.716708],[-122.376973,37.716691],[-122.376943,37.716673],[-122.376912,37.716655],[-122.376883,37.716637],[-122.376853,37.716618],[-122.376824,37.716599],[-122.376796,37.716579],[-122.376768,37.716559],[-122.37674,37.716538],[-122.376713,37.716518],[-122.376686,37.716496],[-122.37664,37.716459],[-122.376622,37.716447],[-122.376603,37.716437],[-122.376582,37.716427],[-122.376562,37.716415],[-122.376544,37.7164],[-122.376529,37.716384],[-122.376515,37.716367],[-122.376499,37.716352],[-122.376479,37.716337],[-122.37646,37.716324],[-122.376434,37.71631],[-122.376365,37.716277],[-122.376305,37.716247],[-122.376222,37.716202],[-122.376201,37.716186],[-122.376183,37.716172],[-122.376169,37.716158],[-122.376156,37.716143],[-122.376141,37.716124],[-122.376129,37.7161],[-122.376125,37.716083],[-122.376123,37.716065],[-122.376122,37.716046],[-122.376123,37.716026],[-122.376127,37.716004],[-122.376135,37.715978],[-122.376145,37.715956],[-122.376155,37.715934],[-122.376167,37.71591],[-122.376177,37.715893],[-122.376187,37.715877],[-122.376198,37.71586],[-122.376212,37.715842],[-122.376231,37.715819],[-122.37625,37.715798],[-122.376266,37.715783],[-122.376284,37.715766],[-122.376297,37.715754],[-122.37631,37.715741],[-122.376322,37.715729],[-122.376335,37.715716],[-122.376347,37.715703],[-122.376358,37.71569],[-122.37637,37.715677],[-122.376381,37.715663],[-122.376391,37.71565],[-122.376402,37.715636],[-122.376412,37.715622],[-122.376422,37.715608],[-122.376431,37.715594],[-122.376441,37.71558],[-122.376454,37.715557],[-122.37647,37.715544],[-122.376485,37.71553],[-122.3765,37.715517],[-122.376515,37.715503],[-122.376529,37.715488],[-122.376543,37.715474],[-122.376557,37.715459],[-122.37657,37.715445],[-122.376583,37.71543],[-122.376596,37.715414],[-122.376608,37.715399],[-122.37662,37.715384],[-122.376632,37.715368],[-122.376643,37.715352],[-122.376654,37.715336],[-122.376665,37.71532],[-122.376688,37.715279],[-122.37669,37.715258],[-122.376678,37.715241],[-122.376648,37.715231],[-122.376642,37.715214],[-122.376656,37.715198],[-122.376683,37.71519],[-122.376699,37.715174],[-122.376716,37.715164],[-122.376736,37.715149],[-122.376758,37.71513],[-122.376777,37.715111],[-122.376794,37.71509],[-122.376822,37.71506],[-122.376847,37.715036],[-122.376871,37.71501],[-122.376894,37.714985],[-122.376917,37.714959],[-122.376939,37.714933],[-122.376961,37.714907],[-122.377001,37.714857],[-122.377017,37.714845],[-122.377033,37.714832],[-122.377048,37.714818],[-122.377068,37.714798],[-122.377089,37.714774],[-122.377108,37.714749],[-122.377123,37.714718],[-122.377132,37.714697],[-122.377141,37.714677],[-122.377151,37.714656],[-122.377161,37.714636],[-122.377172,37.714616],[-122.377183,37.714596],[-122.377195,37.714576],[-122.377207,37.714556],[-122.377219,37.714537],[-122.377232,37.714518],[-122.377245,37.714498],[-122.377259,37.71448],[-122.377278,37.714453],[-122.377287,37.714433],[-122.377299,37.714411],[-122.377313,37.71439],[-122.377328,37.714371],[-122.377342,37.714354],[-122.377356,37.714341],[-122.377373,37.714326],[-122.377389,37.714313],[-122.377407,37.714298],[-122.377422,37.714286],[-122.377437,37.714273],[-122.377453,37.714261],[-122.377469,37.714249],[-122.377486,37.714238],[-122.377502,37.714226],[-122.377519,37.714215],[-122.37755,37.714195],[-122.3776,37.714156],[-122.377651,37.714117],[-122.377703,37.714079],[-122.377755,37.714041],[-122.377809,37.714005],[-122.377878,37.713959],[-122.378038,37.713839],[-122.378317,37.713639],[-122.378338,37.713622],[-122.37836,37.713601],[-122.378375,37.713585],[-122.378388,37.713568],[-122.3784,37.713552],[-122.37841,37.713534],[-122.378419,37.713516],[-122.378426,37.713498],[-122.378437,37.713475],[-122.378451,37.713454],[-122.378463,37.713437],[-122.378479,37.713419],[-122.378495,37.713403],[-122.378545,37.713358],[-122.378587,37.713317],[-122.378667,37.713242],[-122.378693,37.71323],[-122.378718,37.713218],[-122.378742,37.713205],[-122.378766,37.713191],[-122.378789,37.713177],[-122.378812,37.713162],[-122.378834,37.713147],[-122.378855,37.713131],[-122.378894,37.713094],[-122.378903,37.713077],[-122.378914,37.713061],[-122.378924,37.713044],[-122.378935,37.713027],[-122.378944,37.713009],[-122.378954,37.712992],[-122.378963,37.712975],[-122.378972,37.712957],[-122.37898,37.712939],[-122.378988,37.712921],[-122.378995,37.712904],[-122.379003,37.712885],[-122.379013,37.712859],[-122.379023,37.712842],[-122.379036,37.712825],[-122.379051,37.712809],[-122.379087,37.71276],[-122.379115,37.71272],[-122.379143,37.712681],[-122.379173,37.712642],[-122.379203,37.712603],[-122.37926,37.712535],[-122.379271,37.712521],[-122.379281,37.712507],[-122.379292,37.71249],[-122.379305,37.71247],[-122.379313,37.712455],[-122.37932,37.712439],[-122.379328,37.712421],[-122.379337,37.7124],[-122.379346,37.712378],[-122.379356,37.712357],[-122.379366,37.712336],[-122.379377,37.712315],[-122.379388,37.712295],[-122.3794,37.712274],[-122.379412,37.712254],[-122.379446,37.712208],[-122.379462,37.712188],[-122.379472,37.712169],[-122.379484,37.712152],[-122.379495,37.712138],[-122.379508,37.712117],[-122.37952,37.712094],[-122.379528,37.71207],[-122.379536,37.712047],[-122.379545,37.712027],[-122.379555,37.712012],[-122.379574,37.71199],[-122.379592,37.711975],[-122.379604,37.711962],[-122.379622,37.71194],[-122.379634,37.711922],[-122.379645,37.711903],[-122.379654,37.711883],[-122.37966,37.711864],[-122.379669,37.711843],[-122.37968,37.711825],[-122.379691,37.711807],[-122.379704,37.711789],[-122.379717,37.711772],[-122.37973,37.711756],[-122.379746,37.711738],[-122.37976,37.711718],[-122.379773,37.711703],[-122.379787,37.71169],[-122.379803,37.711678],[-122.379822,37.711668],[-122.379847,37.711659],[-122.37987,37.711652],[-122.379893,37.711645],[-122.379922,37.711632],[-122.379948,37.711618],[-122.379964,37.711607],[-122.37998,37.711595],[-122.379998,37.711577],[-122.380015,37.711556],[-122.380031,37.711534],[-122.380041,37.711519],[-122.380052,37.711499],[-122.380063,37.711476],[-122.38007,37.711457],[-122.380076,37.711437],[-122.38008,37.711417],[-122.380082,37.711401],[-122.380091,37.711348],[-122.380099,37.711295],[-122.380106,37.711241],[-122.380111,37.711188],[-122.380115,37.711134],[-122.380119,37.711081],[-122.380121,37.711027],[-122.380121,37.710973],[-122.380121,37.71092],[-122.380121,37.710903],[-122.38012,37.710887],[-122.380119,37.710871],[-122.380117,37.710855],[-122.380115,37.710839],[-122.380113,37.710823],[-122.38011,37.710807],[-122.380107,37.710791],[-122.380104,37.710775],[-122.3801,37.710759],[-122.380096,37.710743],[-122.380092,37.710728],[-122.380087,37.710712],[-122.380082,37.710696],[-122.380077,37.710681],[-122.380071,37.710665],[-122.380065,37.71065],[-122.380059,37.710635],[-122.380043,37.710607],[-122.380027,37.71059],[-122.380011,37.710575],[-122.379995,37.710562],[-122.379978,37.710549],[-122.37996,37.710536],[-122.379938,37.710523],[-122.379915,37.71051],[-122.379894,37.710501],[-122.379864,37.71049],[-122.379839,37.710489],[-122.379808,37.710499],[-122.379778,37.710504],[-122.379755,37.710501],[-122.379732,37.710492],[-122.379713,37.710478],[-122.379701,37.710463],[-122.379688,37.710448],[-122.379674,37.710435],[-122.379659,37.710422],[-122.379641,37.710408],[-122.379614,37.710392],[-122.379587,37.710379],[-122.379556,37.710367],[-122.379528,37.710359],[-122.379505,37.710353],[-122.379475,37.710343],[-122.379456,37.710336],[-122.379438,37.710328],[-122.379421,37.71032],[-122.3794,37.710309],[-122.379374,37.710294],[-122.379356,37.710281],[-122.379335,37.710266],[-122.379319,37.710251],[-122.3793,37.710234],[-122.379286,37.710218],[-122.379273,37.710204],[-122.379259,37.710189],[-122.379242,37.710172],[-122.379214,37.710147],[-122.379195,37.710132],[-122.379177,37.710118],[-122.379157,37.710104],[-122.379131,37.710088],[-122.379104,37.710072],[-122.379074,37.710056],[-122.37905,37.710041],[-122.379031,37.710027],[-122.379016,37.710014],[-122.378998,37.709999],[-122.378979,37.70998],[-122.378961,37.70996],[-122.378948,37.709942],[-122.378937,37.709927],[-122.378925,37.709908],[-122.378917,37.70989],[-122.37891,37.709866],[-122.378907,37.709842],[-122.378907,37.709818],[-122.3789,37.70979],[-122.378882,37.709765],[-122.378855,37.70976],[-122.37883,37.709756],[-122.378815,37.709746],[-122.3788,37.709725],[-122.378791,37.709709],[-122.378781,37.709693],[-122.378773,37.709677],[-122.378764,37.709661],[-122.378756,37.709645],[-122.378748,37.709628],[-122.378741,37.709612],[-122.378734,37.709595],[-122.378727,37.709579],[-122.378713,37.709548],[-122.378702,37.709534],[-122.378694,37.709517],[-122.378688,37.709498],[-122.37867,37.709481],[-122.378647,37.709473],[-122.378626,37.70946],[-122.378609,37.709442],[-122.378598,37.709421],[-122.378586,37.709399],[-122.378568,37.709382],[-122.378547,37.709369],[-122.378523,37.709357],[-122.378502,37.709341],[-122.378486,37.709325],[-122.378471,37.709306],[-122.37846,37.709288],[-122.378454,37.709272],[-122.378448,37.709253],[-122.378445,37.709229],[-122.378446,37.709195],[-122.378447,37.70917],[-122.378446,37.709151],[-122.378445,37.709132],[-122.378443,37.709106],[-122.378439,37.709081],[-122.378436,37.709062],[-122.378432,37.709043],[-122.378426,37.709018],[-122.378418,37.708993],[-122.37841,37.708969],[-122.378403,37.70895],[-122.378395,37.708932],[-122.378378,37.708898],[-122.378361,37.708873],[-122.378347,37.708853],[-122.378327,37.70883],[-122.378313,37.708813],[-122.378297,37.708797],[-122.378281,37.708781],[-122.378262,37.708764],[-122.37824,37.708754],[-122.378217,37.708744],[-122.378194,37.708734],[-122.378171,37.708724],[-122.378147,37.708715],[-122.378102,37.708698],[-122.378077,37.708686],[-122.378054,37.708673],[-122.378038,37.708662],[-122.378021,37.708649],[-122.377994,37.708634],[-122.377968,37.708619],[-122.377939,37.708607],[-122.377907,37.708596],[-122.377876,37.708588],[-122.377848,37.708582],[-122.377819,37.708579],[-122.377791,37.708577],[-122.377762,37.708577],[-122.377734,37.708581],[-122.377715,37.708587],[-122.377689,37.708598],[-122.377661,37.708613],[-122.377644,37.708623],[-122.377619,37.708635],[-122.377599,37.708644],[-122.37758,37.708652],[-122.377562,37.708659],[-122.377542,37.708666],[-122.377516,37.708675],[-122.377493,37.708681],[-122.377473,37.708685],[-122.377453,37.70869],[-122.377432,37.708694],[-122.377361,37.708714],[-122.37729,37.708734],[-122.37722,37.708756],[-122.377123,37.708789],[-122.3771,37.7088],[-122.377077,37.708813],[-122.377054,37.708825],[-122.377032,37.708838],[-122.376983,37.708866],[-122.376963,37.708873],[-122.376943,37.708878],[-122.376889,37.708891],[-122.376871,37.708897],[-122.376852,37.708907],[-122.376837,37.708917],[-122.376822,37.708931],[-122.376797,37.708953],[-122.376779,37.708967],[-122.376762,37.708982],[-122.376739,37.709002],[-122.376717,37.709029],[-122.376712,37.709046],[-122.37671,37.709063],[-122.376701,37.709084],[-122.376681,37.709103],[-122.376659,37.709117],[-122.376649,37.70913],[-122.376642,37.709152],[-122.376635,37.709172],[-122.376629,37.709187],[-122.376621,37.709202],[-122.376612,37.709217],[-122.3766,37.709233],[-122.376585,37.70925],[-122.376567,37.709274],[-122.376557,37.709288],[-122.376546,37.709303],[-122.37653,37.709322],[-122.376514,37.709341],[-122.376497,37.709359],[-122.376466,37.70942],[-122.376433,37.709481],[-122.376388,37.709564],[-122.37639,37.709581],[-122.376399,37.709598],[-122.376402,37.709615],[-122.376392,37.709639],[-122.376369,37.709653],[-122.37634,37.709661],[-122.37632,37.709665],[-122.376301,37.709669],[-122.376281,37.709672],[-122.376262,37.709675],[-122.376242,37.709678],[-122.376222,37.709681],[-122.376202,37.709683],[-122.376182,37.709685],[-122.376162,37.709687],[-122.376142,37.709689],[-122.376122,37.70969],[-122.376102,37.709691],[-122.376082,37.709692],[-122.376062,37.709692],[-122.376042,37.709692],[-122.376022,37.709692],[-122.375988,37.709691],[-122.375955,37.709688],[-122.37593,37.709686],[-122.375905,37.709682],[-122.37588,37.709679],[-122.375855,37.709675],[-122.375823,37.709668],[-122.375799,37.709663],[-122.375775,37.709657],[-122.375743,37.709649],[-122.375711,37.709639],[-122.375688,37.709632],[-122.375665,37.709623],[-122.375635,37.709612],[-122.375613,37.709603],[-122.375581,37.709588],[-122.375562,37.709577],[-122.375544,37.709564],[-122.37553,37.709554],[-122.375516,37.709542],[-122.3755,37.709528],[-122.375488,37.709516],[-122.375476,37.709504],[-122.37546,37.709484],[-122.375443,37.709465],[-122.375427,37.709449],[-122.375413,37.709437],[-122.375395,37.709422],[-122.375379,37.709411],[-122.375361,37.7094],[-122.375341,37.709389],[-122.375322,37.709379],[-122.3753,37.70937],[-122.375277,37.709361],[-122.375258,37.709355],[-122.375235,37.709345],[-122.375204,37.70933],[-122.375173,37.709315],[-122.375151,37.709303],[-122.375129,37.709291],[-122.375107,37.709278],[-122.375086,37.709265],[-122.375066,37.709251],[-122.375047,37.709238],[-122.37499,37.709214],[-122.374933,37.70919],[-122.374823,37.709142],[-122.37479,37.709132],[-122.374767,37.709124],[-122.374744,37.709116],[-122.374722,37.709107],[-122.374697,37.709096],[-122.374668,37.709082],[-122.374639,37.709067],[-122.374617,37.709053],[-122.374595,37.709039],[-122.374567,37.709019],[-122.37454,37.708998],[-122.374516,37.708978],[-122.3745,37.708963],[-122.374479,37.708941],[-122.374463,37.708923],[-122.374446,37.708903],[-122.37441,37.708836],[-122.374374,37.708758],[-122.374372,37.708736],[-122.374374,37.708717],[-122.374378,37.7087],[-122.374386,37.708682],[-122.374398,37.708662],[-122.374412,37.708646],[-122.374425,37.708634],[-122.374447,37.708617],[-122.374464,37.708605],[-122.374482,37.708593],[-122.374499,37.708581],[-122.374517,37.70857],[-122.374536,37.708559],[-122.374563,37.708542],[-122.374587,37.708536],[-122.374611,37.70853],[-122.374634,37.708524],[-122.374658,37.708518],[-122.374683,37.708513],[-122.374707,37.708508],[-122.374733,37.708503],[-122.374853,37.7085],[-122.374919,37.70849],[-122.374985,37.708482],[-122.375051,37.708475],[-122.375117,37.708469],[-122.375184,37.708463],[-122.375306,37.708456],[-122.375372,37.708447],[-122.375437,37.708437],[-122.375502,37.708426],[-122.375604,37.708408],[-122.375632,37.708405],[-122.375661,37.708404],[-122.375684,37.708403],[-122.375705,37.708404],[-122.375747,37.708403],[-122.375789,37.708402],[-122.375831,37.708401],[-122.375873,37.708398],[-122.375914,37.708396],[-122.375956,37.708392],[-122.376026,37.708385],[-122.376053,37.708385],[-122.37609,37.708384],[-122.376118,37.708385],[-122.376146,37.708386],[-122.376183,37.708389],[-122.376222,37.708392],[-122.376289,37.708397],[-122.376357,37.708401],[-122.376425,37.708405],[-122.376492,37.708407],[-122.37656,37.708408],[-122.376628,37.708409],[-122.376758,37.708405],[-122.376794,37.7084],[-122.376826,37.708399],[-122.37685,37.7084],[-122.37688,37.708403],[-122.376907,37.708407],[-122.376936,37.708411],[-122.376972,37.708414],[-122.376998,37.708416],[-122.377027,37.708417],[-122.377066,37.708417],[-122.377103,37.708416],[-122.37714,37.708418],[-122.37717,37.70842],[-122.377199,37.708422],[-122.377229,37.708423],[-122.377259,37.708424],[-122.377289,37.708425],[-122.377319,37.708425],[-122.377349,37.708424],[-122.377378,37.708424],[-122.377421,37.708422],[-122.377622,37.708419],[-122.377643,37.70842],[-122.377663,37.708421],[-122.377684,37.708422],[-122.377704,37.708423],[-122.377724,37.708425],[-122.377745,37.708427],[-122.377768,37.708427],[-122.378001,37.708437],[-122.378306,37.708441],[-122.378327,37.708438],[-122.378356,37.708435],[-122.378384,37.708432],[-122.378413,37.708431],[-122.378442,37.70843],[-122.378463,37.70843],[-122.378485,37.70843],[-122.378514,37.708432],[-122.378542,37.708434],[-122.378571,37.708437],[-122.378599,37.70844],[-122.378628,37.708445],[-122.378656,37.70845],[-122.378692,37.708457],[-122.37872,37.708462],[-122.378749,37.708465],[-122.378778,37.708467],[-122.378803,37.708467],[-122.378832,37.708467],[-122.378866,37.708465],[-122.37889,37.708463],[-122.378919,37.708459],[-122.37895,37.708454],[-122.378976,37.708449],[-122.379002,37.708444],[-122.379028,37.708439],[-122.379055,37.708435],[-122.379081,37.708432],[-122.379108,37.708429],[-122.379134,37.708426],[-122.379161,37.708423],[-122.379201,37.70842],[-122.379267,37.708418],[-122.379363,37.708418],[-122.379387,37.708419],[-122.379407,37.708421],[-122.37943,37.708425],[-122.379455,37.708431],[-122.379475,37.708437],[-122.379493,37.708444],[-122.379516,37.708454],[-122.379543,37.708469],[-122.379567,37.708484],[-122.379588,37.708493],[-122.379614,37.7085],[-122.379648,37.708507],[-122.379673,37.708512],[-122.379699,37.708518],[-122.379723,37.708525],[-122.379787,37.708523],[-122.379763,37.708537],[-122.379781,37.708543],[-122.379799,37.70855],[-122.379816,37.708557],[-122.379839,37.708567],[-122.379856,37.708574],[-122.379888,37.70859],[-122.379916,37.708599],[-122.379948,37.708606],[-122.379981,37.708615],[-122.380009,37.708624],[-122.380035,37.708635],[-122.380061,37.708647],[-122.380092,37.708665],[-122.38012,37.70868],[-122.38015,37.708694],[-122.38018,37.708708],[-122.380211,37.708721],[-122.380243,37.708733],[-122.380275,37.708744],[-122.380299,37.708752],[-122.380324,37.708759],[-122.380357,37.708768],[-122.38039,37.708776],[-122.380424,37.708783],[-122.380458,37.708789],[-122.380493,37.708795],[-122.380519,37.708798],[-122.380545,37.708801],[-122.380571,37.708803],[-122.380597,37.708804],[-122.380623,37.708805],[-122.38065,37.708806],[-122.380676,37.708806],[-122.380699,37.708805],[-122.380745,37.708807],[-122.380791,37.70881],[-122.380837,37.708813],[-122.380883,37.708817],[-122.380929,37.708822],[-122.380975,37.708827],[-122.381021,37.708833],[-122.381066,37.70884],[-122.381111,37.708847],[-122.38119,37.708861],[-122.381211,37.708864],[-122.381235,37.708867],[-122.381267,37.708869],[-122.381296,37.70887],[-122.381318,37.708871],[-122.381342,37.70887],[-122.381404,37.708868],[-122.381506,37.708893],[-122.381585,37.708864],[-122.381777,37.708864],[-122.381811,37.708869],[-122.381835,37.708874],[-122.381862,37.70888],[-122.381889,37.70889],[-122.381912,37.708901],[-122.381932,37.708913],[-122.381951,37.708927],[-122.381968,37.708942],[-122.381986,37.708957],[-122.382008,37.708973],[-122.382025,37.708984],[-122.382046,37.708997],[-122.382067,37.709008],[-122.382093,37.709021],[-122.38212,37.709032],[-122.382148,37.709042],[-122.382181,37.709051],[-122.382214,37.709059],[-122.382239,37.709064],[-122.382261,37.709067],[-122.382287,37.709069],[-122.382321,37.709071],[-122.382348,37.709071],[-122.382371,37.709069],[-122.382397,37.709068],[-122.38243,37.709068],[-122.382456,37.709069],[-122.382488,37.70907],[-122.382511,37.709073],[-122.382537,37.709076],[-122.382568,37.709081],[-122.382591,37.709085],[-122.382613,37.70909],[-122.382638,37.709097],[-122.38267,37.709106],[-122.382701,37.709114],[-122.382724,37.709118],[-122.382748,37.709123],[-122.382771,37.709127],[-122.382795,37.709131],[-122.382818,37.709134],[-122.382842,37.709138],[-122.382866,37.70914],[-122.38289,37.709143],[-122.382914,37.709145],[-122.382938,37.709147],[-122.382962,37.709148],[-122.382987,37.70915],[-122.383008,37.70915],[-122.38303,37.70915],[-122.383051,37.70915],[-122.383073,37.709151],[-122.383094,37.709152],[-122.383116,37.709154],[-122.383137,37.709155],[-122.383159,37.709157],[-122.38318,37.70916],[-122.383202,37.709162],[-122.383223,37.709165],[-122.383244,37.709168],[-122.383265,37.709172],[-122.38331,37.70918],[-122.383346,37.709185],[-122.383381,37.709189],[-122.383417,37.709192],[-122.383444,37.709193],[-122.383471,37.709194],[-122.383498,37.709195],[-122.383526,37.709195],[-122.383562,37.709194],[-122.383609,37.709191],[-122.383632,37.70919],[-122.383658,37.70919],[-122.383689,37.709191],[-122.383712,37.709192],[-122.383738,37.709194],[-122.383769,37.709198],[-122.3838,37.709203],[-122.383834,37.70921],[-122.383858,37.709215],[-122.383881,37.709222],[-122.383919,37.709231],[-122.38395,37.709238],[-122.383981,37.709245],[-122.384012,37.709251],[-122.384043,37.709257],[-122.384075,37.709262],[-122.384106,37.709267],[-122.384138,37.709271],[-122.38417,37.709275],[-122.384201,37.709279],[-122.384233,37.709282],[-122.384265,37.709284],[-122.384297,37.709287],[-122.384329,37.709288],[-122.384361,37.70929],[-122.384394,37.70929],[-122.384457,37.709291],[-122.384487,37.709292],[-122.384519,37.709296],[-122.384538,37.709301],[-122.3846,37.709328],[-122.384651,37.709349],[-122.384702,37.70937],[-122.384754,37.70939],[-122.384807,37.70941],[-122.38486,37.709428],[-122.384913,37.709446],[-122.384967,37.709463],[-122.385033,37.709484],[-122.385058,37.709494],[-122.385082,37.709505],[-122.385105,37.709517],[-122.385128,37.709533],[-122.385161,37.709552],[-122.385187,37.709566],[-122.385213,37.70958],[-122.38524,37.709593],[-122.385266,37.709606],[-122.385294,37.709619],[-122.385321,37.709631],[-122.385349,37.709643],[-122.385377,37.709654],[-122.385427,37.709674],[-122.385474,37.709698],[-122.38552,37.709724],[-122.385566,37.70975],[-122.385612,37.709777],[-122.385657,37.709804],[-122.38572,37.709852],[-122.385741,37.709862],[-122.385763,37.709879],[-122.385785,37.709896],[-122.385807,37.709913],[-122.385829,37.709929],[-122.385852,37.709944],[-122.385907,37.709978],[-122.385937,37.709988],[-122.385974,37.709996],[-122.386009,37.709999],[-122.386044,37.709998],[-122.386065,37.709997],[-122.386085,37.709996],[-122.386106,37.709995],[-122.386127,37.709993],[-122.386148,37.70999],[-122.386169,37.709988],[-122.38619,37.709985],[-122.386211,37.709982],[-122.386231,37.709979],[-122.386252,37.709975],[-122.386272,37.709972],[-122.386293,37.709967],[-122.386313,37.709963],[-122.386333,37.709958],[-122.386353,37.709953],[-122.386373,37.709948],[-122.386393,37.709942],[-122.386413,37.709936],[-122.386432,37.70993],[-122.386452,37.709924],[-122.386471,37.709917],[-122.38649,37.70991],[-122.386509,37.709903],[-122.386528,37.709896],[-122.386547,37.709888],[-122.386565,37.70988],[-122.386584,37.709872],[-122.386602,37.709864],[-122.38663,37.70985],[-122.386648,37.709844],[-122.386666,37.709837],[-122.386689,37.709827],[-122.386711,37.709817],[-122.386728,37.709809],[-122.386744,37.7098],[-122.38676,37.709791],[-122.386776,37.709782],[-122.386792,37.709773],[-122.386818,37.709753],[-122.386828,37.709728],[-122.38682,37.7097],[-122.386819,37.709678],[-122.386828,37.709663],[-122.386844,37.709653],[-122.386875,37.709643],[-122.386902,37.709636],[-122.386922,37.70963],[-122.386942,37.709624],[-122.386969,37.709614],[-122.386988,37.709607],[-122.387007,37.709599],[-122.387026,37.709591],[-122.387045,37.709582],[-122.387069,37.70957],[-122.387093,37.709557],[-122.387116,37.709544],[-122.387133,37.709534],[-122.38715,37.709523],[-122.387172,37.709508],[-122.387192,37.709496],[-122.387212,37.709484],[-122.387232,37.709472],[-122.387251,37.70946],[-122.387271,37.709447],[-122.38729,37.709434],[-122.387308,37.709421],[-122.387327,37.709408],[-122.387345,37.709394],[-122.387363,37.70938],[-122.38738,37.709366],[-122.387397,37.709352],[-122.387414,37.709337],[-122.387431,37.709322],[-122.387447,37.709307],[-122.387463,37.709292],[-122.387478,37.709276],[-122.387512,37.709243],[-122.387534,37.709224],[-122.387552,37.709207],[-122.387574,37.709183],[-122.387589,37.709165],[-122.387601,37.709149],[-122.387614,37.709129],[-122.387636,37.709098],[-122.387659,37.709078],[-122.387678,37.709063],[-122.387696,37.709052],[-122.387716,37.70904],[-122.38774,37.709026],[-122.387759,37.709011],[-122.387774,37.708999],[-122.387789,37.708985],[-122.387803,37.708969],[-122.387815,37.708953],[-122.387828,37.708935],[-122.387841,37.708913],[-122.387855,37.708894],[-122.387867,37.708874],[-122.387875,37.708858],[-122.387883,37.70884],[-122.387894,37.708824],[-122.387909,37.708809],[-122.387925,37.708798],[-122.387947,37.708789],[-122.387971,37.708774],[-122.387987,37.70876],[-122.387999,37.708745],[-122.388008,37.708728],[-122.388015,37.708712],[-122.388026,37.708695],[-122.388049,37.708679],[-122.388077,37.708672],[-122.38811,37.708675],[-122.388142,37.708687],[-122.388164,37.708696],[-122.388181,37.708705],[-122.388201,37.708716],[-122.388218,37.708726],[-122.388233,37.708737],[-122.388248,37.708748],[-122.388271,37.708766],[-122.388294,37.708782],[-122.388318,37.708796],[-122.388339,37.708806],[-122.38836,37.708814],[-122.388391,37.708824],[-122.388426,37.708833],[-122.388455,37.708838],[-122.388476,37.70884],[-122.3885,37.708841],[-122.388529,37.708841],[-122.388553,37.708844],[-122.388583,37.708851],[-122.388611,37.708863],[-122.388635,37.708873],[-122.388666,37.708888],[-122.388689,37.7089],[-122.388712,37.708912],[-122.388741,37.708929],[-122.388763,37.708943],[-122.388784,37.708957],[-122.388804,37.708971],[-122.388825,37.708985],[-122.388851,37.709006],[-122.38887,37.709021],[-122.388888,37.709037],[-122.388911,37.709058],[-122.388973,37.709108],[-122.389081,37.709191],[-122.389101,37.709202],[-122.389121,37.709213],[-122.389142,37.709223],[-122.389163,37.709233],[-122.389183,37.709243],[-122.389224,37.709261],[-122.389314,37.709317],[-122.38948,37.70943],[-122.389498,37.709448],[-122.389515,37.709462],[-122.389537,37.709477],[-122.389558,37.709493],[-122.389572,37.709505],[-122.389586,37.709518],[-122.389599,37.70953],[-122.389612,37.709543],[-122.389625,37.709557],[-122.389651,37.709583],[-122.389667,37.709597],[-122.38969,37.709609],[-122.389713,37.709618],[-122.389743,37.709624],[-122.389773,37.709624],[-122.389792,37.709622],[-122.389812,37.709617],[-122.389835,37.70961],[-122.389856,37.709603],[-122.389877,37.709595],[-122.389898,37.709587],[-122.389925,37.709576],[-122.389951,37.709564],[-122.389977,37.709551],[-122.390002,37.709537],[-122.390021,37.709527],[-122.390039,37.709516],[-122.390057,37.709505],[-122.390074,37.709493],[-122.390091,37.709481],[-122.390108,37.709468],[-122.390124,37.709456],[-122.390145,37.70944],[-122.390165,37.70943],[-122.390184,37.709419],[-122.390205,37.709406],[-122.390232,37.709388],[-122.390256,37.70937],[-122.390273,37.709356],[-122.390289,37.709342],[-122.390304,37.709328],[-122.390319,37.709313],[-122.390338,37.709292],[-122.390358,37.709275],[-122.390375,37.709259],[-122.3904,37.709237],[-122.390423,37.709221],[-122.390446,37.709209],[-122.390469,37.7092],[-122.39049,37.709195],[-122.390512,37.709191],[-122.390532,37.70919],[-122.390552,37.709191],[-122.390584,37.709195],[-122.390619,37.709207],[-122.390646,37.70923],[-122.39066,37.709242],[-122.390679,37.709255],[-122.390702,37.709268],[-122.390734,37.709282],[-122.390755,37.709289],[-122.39082,37.709327],[-122.39088,37.709362],[-122.390956,37.709404],[-122.390985,37.709425],[-122.391014,37.709446],[-122.391043,37.709465],[-122.391074,37.709485],[-122.391104,37.709504],[-122.391135,37.709523],[-122.391166,37.709541],[-122.391198,37.709559],[-122.39123,37.709576],[-122.391263,37.709593],[-122.391296,37.709609],[-122.391329,37.709625],[-122.391383,37.70965],[-122.391403,37.709662],[-122.391424,37.709672],[-122.391444,37.709683],[-122.391481,37.709697],[-122.391502,37.709697],[-122.391539,37.709684],[-122.391567,37.709673],[-122.391596,37.709662],[-122.391624,37.70965],[-122.391716,37.709607],[-122.391877,37.709454],[-122.392093,37.709271],[-122.392106,37.709258],[-122.39212,37.709243],[-122.392131,37.709229],[-122.392141,37.709215],[-122.392152,37.709197],[-122.39216,37.70918],[-122.392166,37.709164],[-122.39219,37.709127],[-122.392215,37.70909],[-122.392241,37.709053],[-122.392292,37.708991],[-122.392319,37.708975],[-122.39234,37.708964],[-122.392362,37.708954],[-122.392389,37.708943],[-122.392408,37.708936],[-122.392435,37.708927],[-122.392462,37.708915],[-122.392483,37.708902],[-122.392503,37.708886],[-122.392524,37.708864],[-122.392542,37.708845],[-122.39256,37.708827],[-122.392579,37.70881],[-122.392604,37.708787],[-122.392631,37.708764],[-122.392652,37.708748],[-122.392673,37.708732],[-122.392703,37.708712],[-122.392733,37.708693],[-122.392764,37.708674],[-122.392799,37.708654],[-122.392826,37.708636],[-122.392847,37.708623],[-122.392868,37.708611],[-122.392897,37.708596],[-122.392919,37.708584],[-122.392943,37.708573],[-122.392978,37.708549],[-122.393012,37.708524],[-122.393046,37.708499],[-122.39308,37.708473],[-122.393113,37.708447],[-122.393167,37.708402],[-122.393583,37.708418],[-122.394984,37.70841],[-122.395156,37.708827],[-122.395654,37.71147],[-122.396899,37.713844],[-122.39856,37.715698],[-122.399991,37.721147],[-122.401091,37.724311],[-122.401734,37.726163],[-122.40346,37.730495],[-122.406262,37.734811],[-122.406703,37.735178],[-122.407472,37.735817],[-122.408073,37.738287],[-122.408001,37.739656],[-122.407709,37.740857],[-122.407311,37.742146],[-122.405848,37.74388],[-122.404915,37.745263],[-122.403576,37.749388],[-122.40136,37.749424],[-122.382547,37.750581],[-122.382792,37.751774],[-122.379963,37.752061],[-122.37996,37.75203],[-122.376087,37.752249],[-122.375771,37.748707],[-122.384914,37.748145],[-122.384921,37.748185],[-122.384651,37.748202],[-122.384676,37.748304],[-122.38471,37.748305],[-122.384744,37.748303],[-122.384774,37.748298],[-122.384798,37.748293],[-122.38482,37.748287],[-122.384843,37.748279],[-122.384863,37.74827],[-122.384889,37.748256],[-122.384916,37.74824],[-122.38494,37.748229],[-122.384963,37.748221],[-122.384987,37.748215],[-122.385014,37.748208],[-122.385034,37.748196],[-122.385051,37.748178],[-122.385062,37.748151],[-122.385078,37.748127],[-122.385101,37.748113],[-122.38512,37.748109],[-122.385143,37.748109],[-122.38517,37.748118],[-122.385193,37.748136],[-122.385212,37.748148],[-122.38523,37.748157],[-122.385258,37.748164],[-122.385289,37.748166],[-122.385314,37.748159],[-122.385333,37.748151],[-122.385351,37.748142],[-122.385383,37.748126],[-122.385405,37.748119],[-122.385424,37.748114],[-122.385446,37.74811],[-122.385472,37.748108],[-122.385497,37.748107],[-122.385521,37.748109],[-122.385543,37.748112],[-122.385583,37.748118],[-122.385617,37.748123],[-122.385652,37.748127],[-122.385686,37.748131],[-122.385721,37.748134],[-122.385786,37.748142],[-122.385825,37.748146],[-122.385853,37.748141],[-122.385872,37.748132],[-122.385891,37.748118],[-122.385901,37.748098],[-122.385907,37.748082],[-122.385924,37.748069],[-122.385945,37.748065],[-122.385963,37.748072],[-122.385981,37.74808],[-122.386004,37.748087],[-122.386029,37.748092],[-122.38605,37.748093],[-122.386077,37.74809],[-122.386106,37.748084],[-122.386129,37.748077],[-122.386155,37.748064],[-122.386172,37.748052],[-122.386189,37.748032],[-122.386201,37.748011],[-122.386205,37.747991],[-122.386207,37.747974],[-122.386213,37.747959],[-122.386223,37.747942],[-122.38624,37.747925],[-122.386258,37.747913],[-122.386278,37.747904],[-122.386301,37.747898],[-122.386325,37.747896],[-122.38636,37.747901],[-122.386387,37.747911],[-122.386408,37.747922],[-122.386423,37.747935],[-122.386437,37.747946],[-122.386463,37.747949],[-122.38679,37.747885],[-122.386836,37.747835],[-122.386856,37.747824],[-122.386875,37.747813],[-122.386896,37.747799],[-122.386921,37.747781],[-122.38694,37.747766],[-122.386976,37.747738],[-122.387003,37.747721],[-122.387027,37.747703],[-122.38705,37.747683],[-122.387072,37.747662],[-122.387095,37.747639],[-122.38711,37.747627],[-122.387128,37.747616],[-122.387146,37.747608],[-122.387172,37.747603],[-122.387199,37.747599],[-122.387236,37.747596],[-122.387273,37.747593],[-122.387301,37.747592],[-122.387329,37.747591],[-122.387357,37.747591],[-122.387385,37.747592],[-122.387413,37.747593],[-122.387441,37.747594],[-122.387477,37.747597],[-122.387505,37.7476],[-122.387532,37.747605],[-122.387547,37.747618],[-122.387565,37.747635],[-122.387578,37.747649],[-122.387591,37.747666],[-122.387604,37.747685],[-122.387617,37.747708],[-122.387627,37.747731],[-122.387633,37.747753],[-122.387659,37.747758],[-122.387636,37.74778],[-122.387641,37.747802],[-122.387654,37.747821],[-122.387671,37.747834],[-122.387692,37.747841],[-122.387715,37.747846],[-122.387736,37.747849],[-122.387757,37.747851],[-122.387779,37.747851],[-122.387809,37.747851],[-122.387846,37.747847],[-122.387873,37.747842],[-122.387899,37.747836],[-122.387926,37.747835],[-122.387958,37.747844],[-122.387984,37.747848],[-122.388007,37.74785],[-122.388028,37.74785],[-122.388051,37.747848],[-122.388073,37.747844],[-122.388095,37.747838],[-122.388108,37.747803]]],[[[-122.388108,37.747803],[-122.388078,37.747811],[-122.388075,37.747796],[-122.388108,37.747803]]]]},"properties":{"neighbourhood":"Bayview","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.394984,37.70841],[-122.399685,37.708385],[-122.405103,37.708362],[-122.405523,37.70835],[-122.406476,37.708342],[-122.40729,37.708344],[-122.407754,37.708342],[-122.408112,37.708327],[-122.41334,37.708329],[-122.414374,37.70833],[-122.41533,37.708329],[-122.417093,37.708327],[-122.418048,37.708327],[-122.419017,37.70833],[-122.419237,37.708332],[-122.419704,37.708332],[-122.42085,37.708335],[-122.423799,37.709475],[-122.424899,37.710397],[-122.426535,37.711225],[-122.428707,37.711959],[-122.431095,37.712775],[-122.431741,37.712764],[-122.432823,37.713003],[-122.433488,37.713254],[-122.432657,37.714887],[-122.431088,37.716623],[-122.426112,37.715678],[-122.426354,37.7167],[-122.426069,37.718158],[-122.426076,37.718415],[-122.42651,37.718579],[-122.425777,37.71936],[-122.425692,37.720216],[-122.423421,37.719826],[-122.423621,37.719224],[-122.423507,37.71897],[-122.410983,37.721653],[-122.401091,37.724311],[-122.399991,37.721147],[-122.39856,37.715698],[-122.396899,37.713844],[-122.395654,37.71147],[-122.395156,37.708827],[-122.394984,37.70841]]]]},"properties":{"neighbourhood":"Visitacion Valley","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.446825,37.787251],[-122.447228,37.789667],[-122.447656,37.791649],[-122.446231,37.791859],[-122.446702,37.79474],[-122.445588,37.794874],[-122.423822,37.797606],[-122.423435,37.795722],[-122.422697,37.792133],[-122.422333,37.79035],[-122.445745,37.787412],[-122.446825,37.787251]]]]},"properties":{"neighbourhood":"Pacific Heights","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.4626,37.789041],[-122.460923,37.789385],[-122.454351,37.790665],[-122.447656,37.791649],[-122.447228,37.789667],[-122.446825,37.787251],[-122.446811,37.787165],[-122.446648,37.786331],[-122.447333,37.785651],[-122.447676,37.78531],[-122.447439,37.784311],[-122.447124,37.783033],[-122.447378,37.782383],[-122.448931,37.782278],[-122.450611,37.782028],[-122.452852,37.781767],[-122.455721,37.781329],[-122.45888,37.781221],[-122.45924,37.786848],[-122.462539,37.786737],[-122.4626,37.789041]]]]},"properties":{"neighbourhood":"Presidio Heights","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.387425,37.7805],[-122.387407,37.780493],[-122.387331,37.780498],[-122.387315,37.780507],[-122.387297,37.7805],[-122.387208,37.780505],[-122.387191,37.780514],[-122.387173,37.780507],[-122.387083,37.780512],[-122.387066,37.780522],[-122.387048,37.780514],[-122.386965,37.780519],[-122.386949,37.780529],[-122.386931,37.780521],[-122.386853,37.780526],[-122.386836,37.780535],[-122.386818,37.780528],[-122.386736,37.780533],[-122.38672,37.780542],[-122.386702,37.780535],[-122.386619,37.78054],[-122.386602,37.780549],[-122.386584,37.780542],[-122.3865,37.780547],[-122.386483,37.780556],[-122.386465,37.780549],[-122.386384,37.780554],[-122.386368,37.780563],[-122.38635,37.780556],[-122.386267,37.780561],[-122.38625,37.78057],[-122.386232,37.780563],[-122.386143,37.780568],[-122.386126,37.780577],[-122.386109,37.78057],[-122.386023,37.780575],[-122.386007,37.780584],[-122.385989,37.780577],[-122.385901,37.780582],[-122.385885,37.780592],[-122.385867,37.780584],[-122.385785,37.780589],[-122.385768,37.780599],[-122.385751,37.780591],[-122.385669,37.780596],[-122.385652,37.780605],[-122.385634,37.780598],[-122.385555,37.780603],[-122.385539,37.780612],[-122.385521,37.780605],[-122.385434,37.78061],[-122.385418,37.780619],[-122.3854,37.780612],[-122.385311,37.780617],[-122.385295,37.780627],[-122.385277,37.780619],[-122.385192,37.780624],[-122.385175,37.780634],[-122.385157,37.780626],[-122.38508,37.780631],[-122.385063,37.78064],[-122.385045,37.780633],[-122.38496,37.780638],[-122.384944,37.780647],[-122.384926,37.78064],[-122.384841,37.780649],[-122.384843,37.780757],[-122.384818,37.780759],[-122.384804,37.780526],[-122.384828,37.780524],[-122.384839,37.780619],[-122.384924,37.780619],[-122.38494,37.780609],[-122.384958,37.780617],[-122.385043,37.780612],[-122.38506,37.780602],[-122.385078,37.78061],[-122.385156,37.780605],[-122.385172,37.780596],[-122.38519,37.780603],[-122.385275,37.780598],[-122.385292,37.780589],[-122.38531,37.780596],[-122.385398,37.780591],[-122.385414,37.780582],[-122.385432,37.780589],[-122.385519,37.780584],[-122.385535,37.780575],[-122.385553,37.780582],[-122.385633,37.780577],[-122.385649,37.780568],[-122.385667,37.780575],[-122.385749,37.78057],[-122.385765,37.780561],[-122.385783,37.780568],[-122.385865,37.780564],[-122.385881,37.780554],[-122.385899,37.780562],[-122.385987,37.780557],[-122.386003,37.780547],[-122.386021,37.780555],[-122.386107,37.78055],[-122.386123,37.78054],[-122.386141,37.780548],[-122.38623,37.780542],[-122.386247,37.780533],[-122.386265,37.78054],[-122.386348,37.780536],[-122.386364,37.780526],[-122.386382,37.780534],[-122.386464,37.780529],[-122.38648,37.78052],[-122.386498,37.780527],[-122.386582,37.780522],[-122.386599,37.780513],[-122.386617,37.78052],[-122.3867,37.780515],[-122.386717,37.780506],[-122.386735,37.780513],[-122.386816,37.780508],[-122.386833,37.780499],[-122.386851,37.780506],[-122.386929,37.780502],[-122.386945,37.780492],[-122.386963,37.7805],[-122.387046,37.780495],[-122.387063,37.780486],[-122.387081,37.780493],[-122.387172,37.780487],[-122.387188,37.780478],[-122.387206,37.780485],[-122.387295,37.78048],[-122.387312,37.780471],[-122.38733,37.780478],[-122.387406,37.780474],[-122.387422,37.780465],[-122.38744,37.780472],[-122.387532,37.780462],[-122.387494,37.780053],[-122.387401,37.780054],[-122.387385,37.780063],[-122.387367,37.780056],[-122.387291,37.78006],[-122.387274,37.780069],[-122.387256,37.780062],[-122.387167,37.780067],[-122.387151,37.780076],[-122.387133,37.780069],[-122.387042,37.780074],[-122.387025,37.780083],[-122.387007,37.780076],[-122.386919,37.780086],[-122.386916,37.780194],[-122.386895,37.780087],[-122.386812,37.780087],[-122.386795,37.780096],[-122.386777,37.780089],[-122.386696,37.780094],[-122.386679,37.780103],[-122.386661,37.780096],[-122.386578,37.7801],[-122.386561,37.78011],[-122.386543,37.780102],[-122.386459,37.780107],[-122.386442,37.780116],[-122.386424,37.780109],[-122.386343,37.780114],[-122.386327,37.780123],[-122.386309,37.780116],[-122.386226,37.78012],[-122.386209,37.780129],[-122.386191,37.780122],[-122.386102,37.780127],[-122.386085,37.780136],[-122.386067,37.780129],[-122.385982,37.780134],[-122.385966,37.780143],[-122.385948,37.780136],[-122.38586,37.780141],[-122.385843,37.78015],[-122.385825,37.780143],[-122.385744,37.780147],[-122.385727,37.780157],[-122.385709,37.780149],[-122.385628,37.780154],[-122.385611,37.780163],[-122.385593,37.780156],[-122.385514,37.78016],[-122.385497,37.78017],[-122.385479,37.780162],[-122.385393,37.780167],[-122.385376,37.780176],[-122.385359,37.780169],[-122.38527,37.780174],[-122.385254,37.780183],[-122.385236,37.780176],[-122.385151,37.780181],[-122.385134,37.78019],[-122.385116,37.780183],[-122.385039,37.780187],[-122.385022,37.780196],[-122.385004,37.780189],[-122.384919,37.780194],[-122.384902,37.780203],[-122.384884,37.780196],[-122.3848,37.780205],[-122.384801,37.780313],[-122.384777,37.780314],[-122.384763,37.780081],[-122.384787,37.78008],[-122.384798,37.780175],[-122.384883,37.780174],[-122.384899,37.780165],[-122.384917,37.780172],[-122.385002,37.780168],[-122.385019,37.780158],[-122.385037,37.780166],[-122.385114,37.780161],[-122.385131,37.780152],[-122.385149,37.78016],[-122.385234,37.780155],[-122.38525,37.780146],[-122.385268,37.780153],[-122.385357,37.780148],[-122.385373,37.780139],[-122.385391,37.780146],[-122.385478,37.780141],[-122.385494,37.780132],[-122.385512,37.780139],[-122.385592,37.780135],[-122.385608,37.780126],[-122.385626,37.780133],[-122.385708,37.780129],[-122.385724,37.780119],[-122.385742,37.780127],[-122.385824,37.780122],[-122.38584,37.780113],[-122.385858,37.78012],[-122.385946,37.780115],[-122.385963,37.780106],[-122.38598,37.780113],[-122.386066,37.780109],[-122.386082,37.780099],[-122.3861,37.780107],[-122.386189,37.780102],[-122.386206,37.780093],[-122.386224,37.7801],[-122.386307,37.780095],[-122.386323,37.780086],[-122.386341,37.780093],[-122.386423,37.780089],[-122.386439,37.78008],[-122.386457,37.780087],[-122.386542,37.780082],[-122.386558,37.780073],[-122.386576,37.78008],[-122.386659,37.780076],[-122.386676,37.780067],[-122.386694,37.780074],[-122.386776,37.780069],[-122.386792,37.78006],[-122.38681,37.780067],[-122.386888,37.780063],[-122.386905,37.780054],[-122.386923,37.780061],[-122.387006,37.780056],[-122.387022,37.780047],[-122.38704,37.780055],[-122.387131,37.78005],[-122.387148,37.78004],[-122.387166,37.780048],[-122.387255,37.780043],[-122.387271,37.780033],[-122.387289,37.780041],[-122.387365,37.780037],[-122.387382,37.780027],[-122.3874,37.780035],[-122.387491,37.780025],[-122.387457,37.77966],[-122.387379,37.77966],[-122.387363,37.779669],[-122.387345,37.779662],[-122.387276,37.779666],[-122.38726,37.779675],[-122.387242,37.779668],[-122.387174,37.779672],[-122.387157,37.779681],[-122.387139,37.779674],[-122.387067,37.779678],[-122.387051,37.779687],[-122.387033,37.77968],[-122.386969,37.779684],[-122.386953,37.779693],[-122.386935,37.779686],[-122.386868,37.77969],[-122.386852,37.779699],[-122.386834,37.779692],[-122.386765,37.779696],[-122.386748,37.779705],[-122.38673,37.779698],[-122.38666,37.779702],[-122.386643,37.779711],[-122.386625,37.779704],[-122.386556,37.779708],[-122.38654,37.779717],[-122.386522,37.77971],[-122.386452,37.779714],[-122.386435,37.779723],[-122.386417,37.779716],[-122.386354,37.779719],[-122.386338,37.779728],[-122.38632,37.779721],[-122.386246,37.779726],[-122.386229,37.779735],[-122.386211,37.779728],[-122.386152,37.779731],[-122.386135,37.77974],[-122.386117,37.779733],[-122.386049,37.779737],[-122.386033,37.779746],[-122.386014,37.779739],[-122.385946,37.779743],[-122.385929,37.779752],[-122.385911,37.779745],[-122.385843,37.779749],[-122.385826,37.779758],[-122.385808,37.779751],[-122.385742,37.779755],[-122.385725,37.779764],[-122.385707,37.779757],[-122.385635,37.779761],[-122.385618,37.77977],[-122.3856,37.779763],[-122.385528,37.779767],[-122.385511,37.779776],[-122.385493,37.779769],[-122.385423,37.779773],[-122.385407,37.779782],[-122.385389,37.779775],[-122.38532,37.779779],[-122.385303,37.779788],[-122.385285,37.779781],[-122.385226,37.779784],[-122.385209,37.779794],[-122.385191,37.779786],[-122.385121,37.77979],[-122.385105,37.7798],[-122.385087,37.779792],[-122.38502,37.779796],[-122.385003,37.779806],[-122.384985,37.779798],[-122.384917,37.779802],[-122.3849,37.779811],[-122.384882,37.779804],[-122.384807,37.779813],[-122.384811,37.779899],[-122.384783,37.7799],[-122.384762,37.779694],[-122.384789,37.779692],[-122.384804,37.779783],[-122.38488,37.779782],[-122.384896,37.779773],[-122.384915,37.77978],[-122.384983,37.779776],[-122.385,37.779767],[-122.385018,37.779774],[-122.385084,37.779771],[-122.385101,37.779761],[-122.385119,37.779769],[-122.385189,37.779765],[-122.385206,37.779755],[-122.385224,37.779763],[-122.385283,37.779759],[-122.3853,37.77975],[-122.385318,37.779757],[-122.385386,37.779753],[-122.385403,37.779744],[-122.385421,37.779751],[-122.385491,37.779747],[-122.385508,37.779738],[-122.385526,37.779745],[-122.385598,37.779741],[-122.385614,37.779732],[-122.385633,37.779739],[-122.385705,37.779735],[-122.385721,37.779726],[-122.385739,37.779733],[-122.385806,37.779729],[-122.385823,37.77972],[-122.385841,37.779727],[-122.385909,37.779723],[-122.385926,37.779714],[-122.385944,37.779721],[-122.386012,37.779717],[-122.386029,37.779708],[-122.386047,37.779715],[-122.386115,37.779711],[-122.386132,37.779702],[-122.38615,37.779709],[-122.386209,37.779706],[-122.386226,37.779696],[-122.386244,37.779704],[-122.386318,37.779699],[-122.386334,37.77969],[-122.386352,37.779697],[-122.386415,37.779694],[-122.386432,37.779684],[-122.38645,37.779692],[-122.38652,37.779688],[-122.386536,37.779678],[-122.386554,37.779686],[-122.386623,37.779682],[-122.38664,37.779672],[-122.386658,37.77968],[-122.386728,37.779676],[-122.386745,37.779666],[-122.386763,37.779674],[-122.386831,37.77967],[-122.386848,37.77966],[-122.386866,37.779668],[-122.386933,37.779664],[-122.386949,37.779655],[-122.386967,37.779662],[-122.387036,37.779654],[-122.387039,37.779562],[-122.387055,37.779657],[-122.387137,37.779652],[-122.387153,37.779643],[-122.387172,37.77965],[-122.38724,37.779646],[-122.387256,37.779637],[-122.387274,37.779644],[-122.387343,37.77964],[-122.387359,37.779631],[-122.387377,37.779638],[-122.387454,37.77963],[-122.387423,37.779292],[-122.38734,37.779292],[-122.387324,37.779302],[-122.387306,37.779294],[-122.387236,37.779299],[-122.387219,37.779308],[-122.387201,37.779301],[-122.387132,37.779305],[-122.387115,37.779314],[-122.387097,37.779307],[-122.387028,37.779311],[-122.387011,37.77932],[-122.386994,37.779313],[-122.386933,37.779316],[-122.386916,37.779325],[-122.386898,37.779318],[-122.386829,37.779322],[-122.386812,37.779331],[-122.386794,37.779324],[-122.386727,37.779328],[-122.38671,37.779337],[-122.386692,37.77933],[-122.386625,37.779334],[-122.386608,37.779343],[-122.38659,37.779336],[-122.386521,37.77934],[-122.386504,37.779349],[-122.386486,37.779342],[-122.386417,37.779346],[-122.3864,37.779355],[-122.386383,37.779348],[-122.386319,37.779351],[-122.386303,37.779361],[-122.386285,37.779353],[-122.386211,37.779358],[-122.386194,37.779367],[-122.386176,37.77936],[-122.386113,37.779363],[-122.386096,37.779373],[-122.386079,37.779365],[-122.386011,37.779369],[-122.385994,37.779378],[-122.385977,37.779371],[-122.385909,37.779375],[-122.385893,37.779384],[-122.385875,37.779377],[-122.385801,37.779381],[-122.385785,37.779391],[-122.385767,37.779383],[-122.385699,37.779387],[-122.385682,37.779396],[-122.385664,37.779389],[-122.385598,37.779393],[-122.385581,37.779402],[-122.385564,37.779395],[-122.385495,37.779399],[-122.385478,37.779408],[-122.38546,37.779401],[-122.38539,37.779405],[-122.385373,37.779414],[-122.385355,37.779407],[-122.385285,37.779411],[-122.385268,37.77942],[-122.385251,37.779413],[-122.38519,37.779417],[-122.385174,37.779426],[-122.385156,37.779419],[-122.385088,37.779423],[-122.385072,37.779432],[-122.385054,37.779425],[-122.384985,37.779428],[-122.384968,37.779438],[-122.38495,37.77943],[-122.384881,37.779434],[-122.384865,37.779444],[-122.384847,37.779436],[-122.38477,37.779445],[-122.384771,37.779536],[-122.384747,37.779537],[-122.384732,37.779329],[-122.384757,37.779328],[-122.384768,37.779418],[-122.384845,37.779417],[-122.384862,37.779408],[-122.38488,37.779415],[-122.384949,37.779411],[-122.384966,37.779402],[-122.384984,37.779409],[-122.385052,37.779405],[-122.385069,37.779396],[-122.385087,37.779403],[-122.385155,37.779399],[-122.385171,37.77939],[-122.385189,37.779397],[-122.385249,37.779394],[-122.385266,37.779385],[-122.385284,37.779392],[-122.385354,37.779388],[-122.385371,37.779379],[-122.385389,37.779386],[-122.385459,37.779382],[-122.385475,37.779373],[-122.385493,37.77938],[-122.385562,37.779376],[-122.385579,37.779367],[-122.385597,37.779374],[-122.385663,37.77937],[-122.38568,37.779361],[-122.385698,37.779368],[-122.385766,37.779364],[-122.385782,37.779355],[-122.3858,37.779362],[-122.385873,37.779358],[-122.38589,37.779349],[-122.385908,37.779356],[-122.385975,37.779352],[-122.385992,37.779343],[-122.38601,37.77935],[-122.386077,37.779346],[-122.386094,37.779337],[-122.386112,37.779344],[-122.386175,37.77934],[-122.386192,37.779331],[-122.38621,37.779339],[-122.386284,37.779334],[-122.3863,37.779325],[-122.386318,37.779332],[-122.386381,37.779329],[-122.386398,37.779319],[-122.386416,37.779327],[-122.386485,37.779323],[-122.386502,37.779313],[-122.38652,37.779321],[-122.386589,37.779317],[-122.386606,37.779307],[-122.386624,37.779315],[-122.386691,37.779311],[-122.386708,37.779301],[-122.386726,37.779309],[-122.386793,37.779305],[-122.38681,37.779296],[-122.386827,37.779303],[-122.386897,37.779299],[-122.386913,37.77929],[-122.386931,37.779297],[-122.386992,37.779293],[-122.387009,37.779284],[-122.387027,37.779291],[-122.387096,37.779287],[-122.387113,37.779278],[-122.387131,37.779285],[-122.3872,37.779281],[-122.387217,37.779272],[-122.387234,37.779279],[-122.387305,37.779275],[-122.387321,37.779266],[-122.387339,37.779273],[-122.38742,37.779264],[-122.38739,37.778937],[-122.387316,37.778937],[-122.387299,37.778946],[-122.387281,37.778939],[-122.387219,37.778942],[-122.387203,37.778951],[-122.387185,37.778944],[-122.387123,37.778948],[-122.387107,37.778957],[-122.387089,37.77895],[-122.387026,37.778953],[-122.387009,37.778962],[-122.386991,37.778955],[-122.38693,37.778959],[-122.386914,37.778968],[-122.386896,37.778961],[-122.386836,37.778964],[-122.38682,37.778973],[-122.386802,37.778966],[-122.386736,37.77897],[-122.386719,37.778979],[-122.386701,37.778972],[-122.386638,37.778975],[-122.386622,37.778985],[-122.386604,37.778977],[-122.38655,37.77898],[-122.386534,37.77899],[-122.386516,37.778982],[-122.38645,37.778986],[-122.386433,37.778995],[-122.386415,37.778988],[-122.386356,37.778991],[-122.386339,37.779001],[-122.386321,37.778993],[-122.386256,37.778997],[-122.38624,37.779006],[-122.386222,37.778999],[-122.386164,37.779002],[-122.386148,37.779012],[-122.38613,37.779004],[-122.386067,37.779008],[-122.386051,37.779017],[-122.386033,37.77901],[-122.385962,37.779014],[-122.385946,37.779023],[-122.385928,37.779016],[-122.385865,37.77902],[-122.385848,37.779029],[-122.385831,37.779021],[-122.385768,37.779025],[-122.385752,37.779034],[-122.385734,37.779027],[-122.385675,37.77903],[-122.385658,37.77904],[-122.38564,37.779032],[-122.385578,37.779036],[-122.385561,37.779045],[-122.385543,37.779038],[-122.385481,37.779042],[-122.385464,37.779051],[-122.385446,37.779043],[-122.385385,37.779047],[-122.385369,37.779056],[-122.385351,37.779049],[-122.385286,37.779053],[-122.38527,37.779062],[-122.385252,37.779055],[-122.385195,37.779058],[-122.385178,37.779067],[-122.38516,37.77906],[-122.385094,37.779064],[-122.385078,37.779073],[-122.38506,37.779065],[-122.385002,37.779069],[-122.384986,37.779078],[-122.384968,37.779071],[-122.384907,37.779074],[-122.384891,37.779083],[-122.384873,37.779076],[-122.384801,37.779084],[-122.384802,37.779159],[-122.384781,37.77916],[-122.384766,37.778979],[-122.384787,37.778978],[-122.384799,37.779057],[-122.384871,37.779057],[-122.384888,37.779048],[-122.384906,37.779055],[-122.384966,37.779052],[-122.384983,37.779042],[-122.385001,37.77905],[-122.385058,37.779046],[-122.385075,37.779037],[-122.385093,37.779044],[-122.385159,37.779041],[-122.385175,37.779031],[-122.385193,37.779039],[-122.38525,37.779035],[-122.385267,37.779026],[-122.385285,37.779033],[-122.385349,37.77903],[-122.385366,37.77902],[-122.385384,37.779028],[-122.385445,37.779024],[-122.385461,37.779015],[-122.385479,37.779022],[-122.385542,37.779019],[-122.385558,37.779009],[-122.385576,37.779017],[-122.385639,37.779013],[-122.385655,37.779004],[-122.385673,37.779011],[-122.385732,37.779008],[-122.385749,37.778999],[-122.385767,37.779006],[-122.385829,37.779002],[-122.385846,37.778993],[-122.385864,37.779],[-122.385926,37.778997],[-122.385943,37.778988],[-122.385961,37.778995],[-122.386031,37.778991],[-122.386048,37.778982],[-122.386066,37.778989],[-122.386128,37.778985],[-122.386145,37.778976],[-122.386163,37.778983],[-122.38622,37.77898],[-122.386237,37.778971],[-122.386255,37.778978],[-122.38632,37.778974],[-122.386336,37.778965],[-122.386354,37.778972],[-122.386414,37.778969],[-122.38643,37.77896],[-122.386448,37.778967],[-122.386514,37.778963],[-122.386531,37.778954],[-122.386549,37.778961],[-122.386602,37.778958],[-122.386619,37.778949],[-122.386637,37.778956],[-122.3867,37.778953],[-122.386716,37.778943],[-122.386734,37.778951],[-122.3868,37.778947],[-122.386817,37.778938],[-122.386835,37.778945],[-122.386894,37.778941],[-122.386911,37.778932],[-122.386929,37.778939],[-122.38699,37.778936],[-122.387006,37.778927],[-122.387024,37.778934],[-122.387087,37.77893],[-122.387104,37.778921],[-122.387122,37.778928],[-122.387183,37.778925],[-122.3872,37.778916],[-122.387218,37.778923],[-122.38728,37.778919],[-122.387296,37.77891],[-122.387314,37.778917],[-122.387387,37.778909],[-122.387359,37.778609],[-122.387286,37.778609],[-122.38727,37.778618],[-122.387252,37.778611],[-122.387186,37.778615],[-122.38717,37.778624],[-122.387152,37.778617],[-122.387093,37.77862],[-122.387077,37.778629],[-122.387059,37.778622],[-122.386995,37.778626],[-122.386978,37.778635],[-122.38696,37.778628],[-122.3869,37.778631],[-122.386884,37.778641],[-122.386866,37.778633],[-122.386799,37.778637],[-122.386782,37.778646],[-122.386764,37.778639],[-122.386707,37.778642],[-122.38669,37.778652],[-122.386672,37.778644],[-122.386614,37.778648],[-122.386597,37.778657],[-122.386579,37.77865],[-122.38651,37.778654],[-122.386494,37.778663],[-122.386476,37.778656],[-122.386417,37.778659],[-122.386401,37.778668],[-122.386383,37.778661],[-122.386317,37.778665],[-122.386301,37.778674],[-122.386283,37.778667],[-122.386221,37.77867],[-122.386204,37.77868],[-122.386186,37.778672],[-122.386126,37.778676],[-122.386109,37.778685],[-122.386091,37.778678],[-122.386028,37.778682],[-122.386012,37.778691],[-122.385994,37.778684],[-122.385932,37.778687],[-122.385916,37.778696],[-122.385898,37.778689],[-122.385834,37.778693],[-122.385818,37.778702],[-122.3858,37.778695],[-122.385741,37.778698],[-122.385725,37.778707],[-122.385707,37.7787],[-122.385643,37.778704],[-122.385626,37.778713],[-122.385608,37.778706],[-122.38555,37.778709],[-122.385533,37.778718],[-122.385515,37.778711],[-122.385452,37.778715],[-122.385435,37.778724],[-122.385417,37.778717],[-122.385355,37.77872],[-122.385338,37.77873],[-122.38532,37.778722],[-122.385258,37.778726],[-122.385242,37.778735],[-122.385224,37.778728],[-122.385152,37.778736],[-122.385154,37.778814],[-122.38513,37.778815],[-122.385114,37.778634],[-122.385138,37.778633],[-122.38515,37.778709],[-122.385222,37.778709],[-122.385239,37.7787],[-122.385257,37.778707],[-122.385319,37.778703],[-122.385335,37.778694],[-122.385353,37.778701],[-122.385415,37.778698],[-122.385432,37.778688],[-122.38545,37.778696],[-122.385514,37.778692],[-122.38553,37.778683],[-122.385548,37.77869],[-122.385607,37.778687],[-122.385623,37.778677],[-122.385641,37.778685],[-122.385705,37.778681],[-122.385722,37.778672],[-122.38574,37.778679],[-122.385798,37.778676],[-122.385815,37.778666],[-122.385833,37.778674],[-122.385896,37.77867],[-122.385913,37.778661],[-122.385931,37.778668],[-122.385992,37.778664],[-122.386009,37.778655],[-122.386027,37.778662],[-122.38609,37.778659],[-122.386106,37.77865],[-122.386124,37.778657],[-122.386189,37.778649],[-122.386195,37.778572],[-122.386209,37.778652],[-122.386281,37.778648],[-122.386297,37.778639],[-122.386315,37.778646],[-122.386381,37.778642],[-122.386398,37.778633],[-122.386416,37.77864],[-122.386474,37.778637],[-122.386491,37.778627],[-122.386509,37.778635],[-122.386578,37.778631],[-122.386594,37.778621],[-122.386612,37.778629],[-122.386671,37.778625],[-122.386687,37.778616],[-122.386705,37.778623],[-122.386762,37.77862],[-122.386779,37.778611],[-122.386797,37.778618],[-122.386864,37.778614],[-122.386881,37.778605],[-122.386899,37.778612],[-122.386959,37.778609],[-122.386975,37.778599],[-122.386993,37.778607],[-122.387057,37.778603],[-122.387074,37.778594],[-122.387092,37.778601],[-122.38715,37.778598],[-122.387167,37.778588],[-122.387185,37.778596],[-122.38725,37.778592],[-122.387267,37.778583],[-122.387285,37.77859],[-122.387356,37.778582],[-122.387341,37.77836],[-122.385336,37.77848],[-122.385293,37.778451],[-122.385333,37.778412],[-122.385371,37.778438],[-122.387505,37.778316],[-122.387507,37.778336],[-122.387692,37.778337],[-122.387624,37.77821],[-122.390411,37.777142],[-122.390349,37.777093],[-122.389857,37.7765],[-122.389811,37.776503],[-122.389821,37.776591],[-122.387678,37.776716],[-122.387617,37.776748],[-122.387586,37.776747],[-122.387555,37.776744],[-122.387526,37.776739],[-122.387495,37.776731],[-122.387473,37.776723],[-122.387446,37.776711],[-122.387415,37.776693],[-122.387387,37.776673],[-122.387368,37.776656],[-122.387352,37.776639],[-122.387334,37.776614],[-122.387323,37.776595],[-122.387312,37.776572],[-122.387305,37.776548],[-122.387302,37.776531],[-122.3873,37.776509],[-122.3873,37.776485],[-122.387311,37.776319],[-122.387103,37.776326],[-122.387082,37.776104],[-122.385018,37.776334],[-122.384994,37.776321],[-122.385026,37.776275],[-122.384828,37.775394],[-122.384881,37.775389],[-122.384877,37.77533],[-122.386996,37.775082],[-122.386923,37.774328],[-122.381814,37.774615],[-122.381456,37.771917],[-122.384679,37.773344],[-122.384712,37.773356],[-122.384738,37.773363],[-122.38477,37.77337],[-122.384797,37.773374],[-122.384818,37.773375],[-122.384839,37.773376],[-122.38486,37.773376],[-122.38676,37.773273],[-122.386574,37.772844],[-122.386578,37.772821],[-122.386596,37.772804],[-122.386717,37.772771],[-122.386709,37.772756],[-122.386703,37.772741],[-122.386698,37.772725],[-122.386691,37.772704],[-122.386687,37.772682],[-122.386684,37.77266],[-122.386683,37.77264],[-122.386683,37.772625],[-122.386684,37.772605],[-122.386687,37.772586],[-122.38666,37.772482],[-122.386673,37.772457],[-122.386714,37.77244],[-122.386679,37.772362],[-122.386645,37.772369],[-122.386631,37.772337],[-122.386621,37.77231],[-122.386611,37.772282],[-122.386602,37.772255],[-122.386593,37.772228],[-122.386585,37.7722],[-122.386577,37.772172],[-122.38657,37.772145],[-122.386564,37.772117],[-122.386559,37.772089],[-122.386554,37.772061],[-122.386549,37.772033],[-122.386545,37.772004],[-122.386542,37.771976],[-122.38654,37.771948],[-122.386439,37.771943],[-122.386459,37.771679],[-122.386414,37.771677],[-122.386417,37.771634],[-122.386369,37.77163],[-122.38637,37.771591],[-122.386346,37.771591],[-122.386349,37.771562],[-122.386374,37.771562],[-122.386384,37.771459],[-122.386277,37.771448],[-122.386286,37.771405],[-122.386249,37.771396],[-122.386214,37.771392],[-122.386168,37.771343],[-122.386148,37.77134],[-122.386127,37.771332],[-122.38611,37.77132],[-122.386099,37.771306],[-122.386092,37.771291],[-122.386142,37.771266],[-122.386086,37.771183],[-122.386041,37.771201],[-122.386018,37.771195],[-122.386041,37.771174],[-122.385895,37.770994],[-122.38592,37.770818],[-122.385838,37.770683],[-122.385818,37.770676],[-122.385798,37.770681],[-122.385784,37.770696],[-122.385798,37.77125],[-122.385622,37.772162],[-122.385554,37.772154],[-122.385681,37.771444],[-122.385515,37.77143],[-122.385468,37.771531],[-122.385336,37.771652],[-122.385286,37.771634],[-122.385643,37.770848],[-122.385684,37.770764],[-122.38572,37.770637],[-122.385724,37.770592],[-122.385559,37.770637],[-122.383155,37.769709],[-122.383376,37.769333],[-122.385569,37.77018],[-122.385493,37.769991],[-122.385475,37.769837],[-122.385019,37.768857],[-122.384894,37.768882],[-122.384788,37.768657],[-122.385006,37.768586],[-122.385007,37.76853],[-122.385038,37.768497],[-122.385008,37.768429],[-122.38508,37.768406],[-122.385043,37.768341],[-122.385107,37.768318],[-122.385168,37.768296],[-122.385148,37.768167],[-122.385146,37.768147],[-122.384701,37.768171],[-122.384624,37.768075],[-122.383882,37.768122],[-122.383843,37.767745],[-122.382457,37.767833],[-122.38244,37.767692],[-122.384901,37.767536],[-122.384858,37.767119],[-122.405014,37.765952],[-122.405032,37.766635],[-122.40528,37.767914],[-122.407029,37.768911],[-122.40876,37.769225],[-122.412755,37.769588],[-122.415771,37.769625],[-122.419768,37.770073],[-122.421172,37.770221],[-122.42269,37.770624],[-122.423269,37.772074],[-122.422213,37.772905],[-122.416141,37.777686],[-122.409664,37.782642],[-122.405844,37.785687],[-122.405808,37.785716],[-122.401146,37.781999],[-122.396671,37.785584],[-122.391297,37.789797],[-122.389334,37.79142],[-122.388808,37.790978],[-122.38893,37.79088],[-122.388612,37.790313],[-122.388049,37.790508],[-122.388012,37.790431],[-122.388369,37.790308],[-122.388287,37.790161],[-122.388321,37.790151],[-122.388244,37.790007],[-122.388219,37.789996],[-122.388076,37.790038],[-122.385728,37.790972],[-122.385706,37.790964],[-122.385507,37.790549],[-122.385514,37.790533],[-122.385687,37.790452],[-122.387607,37.789787],[-122.387348,37.789311],[-122.385354,37.78979],[-122.385326,37.789788],[-122.385301,37.789777],[-122.385286,37.789762],[-122.385107,37.789321],[-122.385109,37.789304],[-122.385119,37.789291],[-122.385134,37.78928],[-122.385148,37.78922],[-122.387188,37.788774],[-122.387049,37.788229],[-122.385261,37.788519],[-122.385237,37.788513],[-122.385218,37.788497],[-122.385126,37.788143],[-122.385135,37.788122],[-122.385156,37.788107],[-122.387123,37.787786],[-122.387161,37.78778],[-122.387198,37.787773],[-122.387233,37.787765],[-122.387269,37.787756],[-122.387295,37.787749],[-122.387321,37.787741],[-122.387347,37.787732],[-122.387373,37.787724],[-122.387407,37.787241],[-122.38702,37.787247],[-122.384551,37.7874],[-122.384524,37.787391],[-122.384503,37.787369],[-122.384342,37.785742],[-122.384346,37.785726],[-122.38436,37.785711],[-122.384382,37.7857],[-122.387218,37.785525],[-122.387243,37.785525],[-122.387263,37.785524],[-122.38729,37.785522],[-122.387316,37.78552],[-122.387343,37.785517],[-122.387369,37.785513],[-122.387389,37.785509],[-122.387409,37.785505],[-122.387434,37.7855],[-122.387454,37.785495],[-122.387473,37.78549],[-122.387498,37.785482],[-122.387516,37.785476],[-122.387535,37.785469],[-122.387559,37.78546],[-122.387581,37.785438],[-122.387631,37.784865],[-122.385459,37.784994],[-122.385415,37.784607],[-122.387222,37.784502],[-122.387418,37.784479],[-122.387444,37.784475],[-122.387467,37.784471],[-122.387493,37.784465],[-122.387523,37.784457],[-122.387545,37.784451],[-122.387567,37.784443],[-122.387588,37.784436],[-122.387609,37.784427],[-122.387629,37.784418],[-122.387649,37.784409],[-122.387669,37.784399],[-122.387678,37.78435],[-122.38771,37.783876],[-122.386288,37.783959],[-122.386237,37.783406],[-122.387533,37.78333],[-122.387696,37.783279],[-122.387752,37.783246],[-122.387777,37.782868],[-122.387543,37.7828],[-122.38752,37.782797],[-122.387499,37.782794],[-122.387478,37.782792],[-122.38745,37.78279],[-122.387426,37.78279],[-122.387397,37.78279],[-122.387373,37.782791],[-122.387353,37.782792],[-122.384754,37.78294],[-122.384734,37.782928],[-122.384681,37.782546],[-122.384697,37.78253],[-122.387509,37.782347],[-122.387535,37.782344],[-122.38756,37.782342],[-122.387788,37.782275],[-122.387755,37.781796],[-122.38555,37.781933],[-122.385532,37.781921],[-122.385512,37.781779],[-122.384922,37.78181],[-122.384901,37.781826],[-122.384858,37.781799],[-122.384893,37.781763],[-122.384916,37.781777],[-122.385508,37.781742],[-122.385494,37.781593],[-122.38551,37.781579],[-122.387629,37.781451],[-122.387584,37.780965],[-122.387472,37.780975],[-122.38747,37.781103],[-122.387444,37.780977],[-122.387342,37.780982],[-122.38734,37.781111],[-122.387314,37.780984],[-122.387211,37.78099],[-122.387209,37.781118],[-122.387183,37.780992],[-122.387074,37.780998],[-122.387072,37.781126],[-122.387046,37.780999],[-122.386942,37.781005],[-122.38694,37.781134],[-122.386914,37.781007],[-122.386817,37.781013],[-122.386815,37.781141],[-122.386789,37.781014],[-122.386681,37.78102],[-122.38668,37.781148],[-122.386654,37.781022],[-122.386548,37.781028],[-122.386546,37.781156],[-122.38652,37.781029],[-122.386416,37.781035],[-122.386414,37.781164],[-122.386389,37.781037],[-122.386287,37.781042],[-122.386284,37.781171],[-122.386259,37.781044],[-122.386152,37.781051],[-122.38615,37.781179],[-122.386124,37.781052],[-122.386024,37.781058],[-122.386022,37.781186],[-122.385996,37.781059],[-122.385884,37.781066],[-122.385882,37.781194],[-122.385856,37.781067],[-122.38576,37.781073],[-122.385758,37.781201],[-122.385732,37.781075],[-122.385626,37.781081],[-122.385625,37.781209],[-122.385599,37.781082],[-122.385493,37.781088],[-122.385491,37.781216],[-122.385465,37.78109],[-122.385357,37.781096],[-122.385356,37.781224],[-122.38533,37.781098],[-122.385225,37.781104],[-122.385223,37.781232],[-122.385197,37.781105],[-122.385092,37.781111],[-122.38509,37.781239],[-122.385064,37.781113],[-122.38496,37.781119],[-122.384958,37.781247],[-122.384933,37.78112],[-122.384829,37.781126],[-122.384827,37.781254],[-122.384801,37.780979],[-122.384826,37.781099],[-122.38493,37.781093],[-122.384932,37.780971],[-122.384958,37.781091],[-122.385062,37.781085],[-122.385064,37.780964],[-122.385089,37.781084],[-122.385195,37.781078],[-122.385197,37.780956],[-122.385222,37.781076],[-122.385327,37.78107],[-122.385329,37.780949],[-122.385355,37.781069],[-122.385463,37.781062],[-122.385465,37.780941],[-122.38549,37.781061],[-122.385596,37.781055],[-122.385599,37.780933],[-122.385624,37.781053],[-122.385729,37.781047],[-122.385732,37.780925],[-122.385757,37.781046],[-122.385854,37.78104],[-122.385856,37.780918],[-122.385881,37.781039],[-122.385994,37.781032],[-122.385996,37.78091],[-122.386021,37.781031],[-122.386122,37.781025],[-122.386124,37.780903],[-122.386149,37.781023],[-122.386256,37.781017],[-122.386258,37.780895],[-122.386284,37.781016],[-122.386386,37.78101],[-122.386388,37.780888],[-122.386414,37.781008],[-122.386518,37.781002],[-122.38652,37.78088],[-122.386545,37.781001],[-122.386651,37.780994],[-122.386654,37.780873],[-122.386679,37.780993],[-122.386787,37.780987],[-122.386789,37.780865],[-122.386814,37.780985],[-122.386912,37.78098],[-122.386914,37.780858],[-122.386939,37.780978],[-122.387044,37.780972],[-122.387046,37.78085],[-122.387071,37.78097],[-122.38718,37.780964],[-122.387183,37.780842],[-122.387208,37.780963],[-122.387312,37.780957],[-122.387314,37.780835],[-122.387339,37.780955],[-122.387441,37.780949],[-122.387444,37.780828],[-122.387469,37.780948],[-122.387582,37.780945],[-122.387534,37.78049],[-122.387442,37.780491],[-122.387425,37.7805]]]]},"properties":{"neighbourhood":"South of Market","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.424183,37.742262],[-122.423941,37.739909],[-122.424756,37.738101],[-122.426541,37.736362],[-122.429507,37.734518],[-122.431956,37.733452],[-122.432493,37.733201],[-122.43841,37.734339],[-122.439249,37.734818],[-122.439862,37.734872],[-122.439685,37.735686],[-122.439727,37.737272],[-122.439945,37.737706],[-122.440164,37.738195],[-122.439896,37.738473],[-122.439628,37.738751],[-122.439557,37.738698],[-122.438656,37.738494],[-122.43755,37.738348],[-122.43693,37.738358],[-122.436462,37.738913],[-122.436003,37.739796],[-122.435548,37.740843],[-122.435632,37.741443],[-122.435527,37.74146],[-122.433299,37.74181],[-122.432889,37.741926],[-122.432333,37.741771],[-122.4313,37.741788],[-122.429924,37.741865],[-122.425454,37.742212],[-122.424183,37.742262]]]]},"properties":{"neighbourhood":"Glen Park","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.379963,37.752061],[-122.382792,37.751774],[-122.382547,37.750581],[-122.40136,37.749424],[-122.403576,37.749388],[-122.403019,37.751107],[-122.402891,37.754529],[-122.403271,37.756746],[-122.403943,37.757761],[-122.405147,37.758511],[-122.406249,37.759519],[-122.406285,37.760887],[-122.405465,37.762525],[-122.404982,37.76467],[-122.405014,37.765952],[-122.384858,37.767119],[-122.384847,37.767013],[-122.382855,37.767139],[-122.382801,37.766784],[-122.385861,37.766599],[-122.385895,37.766523],[-122.385924,37.766412],[-122.385934,37.766361],[-122.385915,37.766285],[-122.385992,37.76617],[-122.386292,37.76569],[-122.386373,37.765598],[-122.38652,37.765412],[-122.386542,37.765286],[-122.38647,37.765278],[-122.386436,37.765059],[-122.386447,37.764929],[-122.386484,37.764908],[-122.386501,37.764815],[-122.386491,37.764617],[-122.386448,37.764613],[-122.386451,37.7644],[-122.386482,37.764399],[-122.386482,37.764367],[-122.386604,37.764322],[-122.38659,37.764257],[-122.386569,37.764249],[-122.386558,37.764236],[-122.386555,37.764219],[-122.386721,37.7641],[-122.386736,37.764018],[-122.386727,37.764003],[-122.38671,37.763989],[-122.386688,37.763979],[-122.386666,37.763976],[-122.386644,37.763974],[-122.386625,37.763965],[-122.386609,37.763948],[-122.386601,37.763929],[-122.386601,37.763913],[-122.386606,37.763898],[-122.386739,37.763809],[-122.386835,37.763736],[-122.386855,37.763718],[-122.38687,37.763707],[-122.386888,37.763694],[-122.386909,37.763681],[-122.386933,37.763669],[-122.386961,37.763657],[-122.386991,37.763646],[-122.387014,37.763639],[-122.387034,37.763635],[-122.38706,37.76363],[-122.387272,37.763605],[-122.387241,37.76351],[-122.386905,37.76355],[-122.386894,37.763479],[-122.386775,37.763415],[-122.386725,37.763471],[-122.38663,37.763443],[-122.386635,37.763427],[-122.386503,37.763388],[-122.386597,37.763185],[-122.386314,37.763102],[-122.386214,37.763316],[-122.38551,37.76333],[-122.385503,37.763234],[-122.385279,37.76324],[-122.385288,37.76337],[-122.385182,37.763373],[-122.385104,37.76232],[-122.384681,37.762111],[-122.384292,37.762135],[-122.384462,37.764047],[-122.384304,37.764057],[-122.384132,37.762257],[-122.383427,37.762301],[-122.383451,37.762466],[-122.383631,37.762457],[-122.383669,37.762553],[-122.383744,37.762544],[-122.383905,37.764144],[-122.383833,37.764148],[-122.38381,37.764236],[-122.383582,37.764254],[-122.383539,37.764164],[-122.383463,37.764168],[-122.38346,37.764131],[-122.383299,37.76414],[-122.383109,37.762321],[-122.38229,37.762372],[-122.382514,37.764606],[-122.382344,37.764612],[-122.382122,37.762382],[-122.381748,37.762405],[-122.381695,37.764738],[-122.381632,37.764741],[-122.381631,37.764801],[-122.381492,37.764806],[-122.38145,37.764935],[-122.381173,37.764933],[-122.381124,37.764799],[-122.380984,37.764799],[-122.381029,37.762224],[-122.383307,37.762082],[-122.382177,37.760882],[-122.382144,37.760889],[-122.382114,37.760888],[-122.38209,37.760881],[-122.382071,37.760872],[-122.382052,37.760856],[-122.382028,37.76083],[-122.382013,37.76081],[-122.382003,37.760794],[-122.381995,37.760779],[-122.381988,37.760762],[-122.381984,37.760746],[-122.381981,37.76073],[-122.38198,37.760712],[-122.381981,37.760691],[-122.381985,37.76067],[-122.381992,37.760649],[-122.381696,37.760647],[-122.381838,37.762119],[-122.381336,37.762148],[-122.381148,37.760158],[-122.380611,37.760188],[-122.380913,37.763336],[-122.380702,37.763342],[-122.3804,37.7602],[-122.379507,37.76025],[-122.379808,37.763457],[-122.379779,37.763485],[-122.379566,37.763494],[-122.379533,37.763466],[-122.379202,37.759938],[-122.381256,37.759668],[-122.381257,37.759583],[-122.381469,37.759573],[-122.381447,37.759305],[-122.381389,37.759311],[-122.381304,37.759309],[-122.381202,37.758322],[-122.3812,37.758303],[-122.381198,37.75828],[-122.381197,37.75826],[-122.381198,37.758237],[-122.381199,37.75822],[-122.381202,37.758201],[-122.381208,37.758172],[-122.381212,37.758153],[-122.381218,37.758135],[-122.381227,37.758112],[-122.381233,37.758096],[-122.381241,37.75808],[-122.381249,37.758065],[-122.381263,37.758047],[-122.381277,37.758029],[-122.38129,37.758011],[-122.381303,37.757993],[-122.381315,37.757974],[-122.381327,37.757955],[-122.381339,37.757936],[-122.38135,37.757917],[-122.38136,37.757898],[-122.381371,37.757878],[-122.381381,37.757859],[-122.38139,37.757838],[-122.381399,37.757819],[-122.381408,37.757799],[-122.381416,37.757779],[-122.381424,37.757758],[-122.381431,37.757738],[-122.381438,37.757718],[-122.381444,37.757697],[-122.38145,37.757677],[-122.381455,37.757656],[-122.38146,37.757635],[-122.381465,37.757615],[-122.381469,37.757594],[-122.381472,37.757573],[-122.381476,37.757552],[-122.381478,37.757531],[-122.381481,37.757509],[-122.381428,37.757519],[-122.381406,37.757343],[-122.381469,37.7573],[-122.381447,37.757115],[-122.381324,37.757117],[-122.381324,37.757089],[-122.381364,37.757079],[-122.381322,37.756555],[-122.381325,37.756533],[-122.381333,37.756513],[-122.381343,37.756497],[-122.381357,37.756483],[-122.381372,37.756472],[-122.381393,37.756462],[-122.381392,37.756405],[-122.381369,37.756401],[-122.381344,37.756394],[-122.38132,37.756383],[-122.381299,37.756368],[-122.381284,37.756354],[-122.381272,37.756338],[-122.381263,37.75632],[-122.381258,37.756301],[-122.381256,37.756285],[-122.381238,37.755877],[-122.381227,37.755859],[-122.381209,37.755848],[-122.381189,37.755843],[-122.381023,37.755831],[-122.381004,37.755799],[-122.38094,37.7558],[-122.380939,37.755753],[-122.381032,37.755743],[-122.38101,37.75573],[-122.380988,37.755718],[-122.380966,37.755704],[-122.380945,37.755691],[-122.380924,37.755678],[-122.380903,37.755664],[-122.380882,37.75565],[-122.380862,37.755635],[-122.380842,37.75562],[-122.380823,37.755605],[-122.380803,37.75559],[-122.380784,37.755574],[-122.380753,37.755542],[-122.380744,37.755523],[-122.380738,37.755506],[-122.380732,37.755489],[-122.380728,37.755472],[-122.380724,37.755452],[-122.380721,37.755431],[-122.380719,37.755414],[-122.380719,37.755397],[-122.38072,37.755376],[-122.380722,37.755352],[-122.380726,37.755331],[-122.380731,37.755311],[-122.380739,37.755287],[-122.380748,37.755264],[-122.380759,37.755242],[-122.380776,37.75522],[-122.380798,37.755203],[-122.380815,37.755192],[-122.380838,37.755181],[-122.380864,37.755171],[-122.380894,37.755164],[-122.380925,37.75516],[-122.380947,37.755159],[-122.380973,37.755157],[-122.381013,37.755152],[-122.381047,37.755147],[-122.381072,37.755142],[-122.381095,37.755136],[-122.381125,37.755128],[-122.381149,37.75512],[-122.38117,37.755113],[-122.381191,37.755105],[-122.381214,37.755096],[-122.381247,37.755104],[-122.381254,37.75508],[-122.381285,37.755074],[-122.381317,37.75507],[-122.381345,37.755068],[-122.381374,37.755069],[-122.381394,37.75507],[-122.381417,37.755073],[-122.38144,37.755077],[-122.381462,37.755083],[-122.381489,37.755091],[-122.381517,37.755103],[-122.381548,37.755119],[-122.381571,37.75513],[-122.381596,37.75514],[-122.381626,37.755148],[-122.381652,37.755153],[-122.381677,37.755156],[-122.381707,37.755156],[-122.382834,37.755036],[-122.383675,37.754969],[-122.383694,37.754962],[-122.383717,37.754954],[-122.383744,37.754947],[-122.383771,37.754942],[-122.383793,37.754939],[-122.383815,37.754937],[-122.383846,37.754937],[-122.383877,37.754938],[-122.383897,37.75494],[-122.384072,37.754951],[-122.384101,37.754914],[-122.384077,37.754659],[-122.384,37.754618],[-122.383899,37.754647],[-122.383798,37.754675],[-122.383696,37.754701],[-122.383562,37.754733],[-122.383525,37.754737],[-122.383493,37.754739],[-122.383461,37.75474],[-122.383437,37.75474],[-122.383416,37.754739],[-122.383386,37.754737],[-122.383355,37.754734],[-122.383323,37.754729],[-122.383292,37.754723],[-122.383269,37.754717],[-122.383249,37.754712],[-122.383229,37.754706],[-122.38321,37.754699],[-122.383188,37.754691],[-122.383162,37.754681],[-122.383143,37.754672],[-122.383125,37.754663],[-122.383108,37.754654],[-122.38309,37.754644],[-122.383073,37.754634],[-122.383057,37.754623],[-122.383041,37.754612],[-122.383023,37.754597],[-122.382993,37.754566],[-122.382971,37.75454],[-122.38295,37.754514],[-122.382929,37.754488],[-122.382909,37.754461],[-122.38289,37.754434],[-122.382871,37.754407],[-122.382852,37.754379],[-122.382834,37.754351],[-122.382817,37.754323],[-122.382795,37.754283],[-122.382787,37.754266],[-122.382783,37.754248],[-122.382782,37.754227],[-122.382785,37.754204],[-122.382792,37.754184],[-122.382804,37.754163],[-122.382822,37.754141],[-122.38284,37.754126],[-122.382865,37.754112],[-122.382891,37.754101],[-122.382897,37.754067],[-122.382891,37.754036],[-122.382886,37.754005],[-122.382881,37.753975],[-122.382877,37.753944],[-122.382873,37.753913],[-122.382871,37.753882],[-122.382868,37.753851],[-122.382867,37.75382],[-122.382866,37.753789],[-122.382866,37.753758],[-122.382867,37.753727],[-122.382869,37.753669],[-122.382866,37.753646],[-122.38286,37.753616],[-122.382852,37.753591],[-122.382843,37.753571],[-122.382833,37.753551],[-122.382824,37.753534],[-122.382811,37.753515],[-122.382797,37.753497],[-122.382783,37.753482],[-122.382767,37.753466],[-122.382746,37.753447],[-122.382727,37.753433],[-122.382702,37.753416],[-122.382679,37.753402],[-122.382656,37.753391],[-122.382636,37.753382],[-122.382615,37.753374],[-122.382591,37.753365],[-122.382565,37.753358],[-122.38253,37.75335],[-122.382502,37.753346],[-122.382479,37.753343],[-122.382447,37.753341],[-122.382408,37.753341],[-122.382379,37.753343],[-122.382355,37.753346],[-122.382334,37.753347],[-122.382305,37.753349],[-122.382276,37.75335],[-122.382247,37.75335],[-122.382218,37.753349],[-122.382189,37.753348],[-122.38216,37.753346],[-122.382131,37.753343],[-122.38211,37.75334],[-122.382089,37.753336],[-122.382067,37.753333],[-122.382046,37.753329],[-122.382025,37.753324],[-122.382004,37.753319],[-122.381977,37.753312],[-122.38195,37.753303],[-122.381923,37.753295],[-122.381897,37.753285],[-122.381871,37.753275],[-122.381845,37.753264],[-122.38182,37.753252],[-122.381796,37.753239],[-122.381772,37.753226],[-122.381749,37.753212],[-122.381726,37.753198],[-122.381697,37.753178],[-122.381676,37.753162],[-122.381656,37.753146],[-122.381641,37.753133],[-122.381627,37.75312],[-122.381613,37.753107],[-122.381597,37.753094],[-122.38158,37.753076],[-122.381569,37.753061],[-122.381551,37.753041],[-122.381534,37.753026],[-122.381515,37.753011],[-122.381495,37.752997],[-122.381475,37.752984],[-122.381456,37.752974],[-122.381434,37.752963],[-122.381407,37.752952],[-122.381383,37.752943],[-122.381362,37.752937],[-122.381337,37.752931],[-122.381311,37.752926],[-122.381285,37.752922],[-122.381259,37.75292],[-122.381233,37.752918],[-122.381203,37.752918],[-122.381176,37.75292],[-122.381154,37.752922],[-122.381126,37.752926],[-122.38109,37.752934],[-122.381068,37.752939],[-122.381045,37.752943],[-122.381022,37.752947],[-122.380999,37.75295],[-122.380976,37.752952],[-122.380953,37.752954],[-122.38093,37.752955],[-122.380907,37.752955],[-122.380884,37.752955],[-122.380861,37.752954],[-122.380837,37.752952],[-122.380806,37.752949],[-122.38078,37.752946],[-122.380757,37.752942],[-122.380735,37.752938],[-122.380712,37.752933],[-122.38069,37.752927],[-122.380668,37.752921],[-122.380648,37.752917],[-122.380629,37.752914],[-122.380609,37.752911],[-122.380589,37.752908],[-122.380569,37.752906],[-122.380548,37.752904],[-122.380528,37.752902],[-122.380508,37.752901],[-122.380488,37.752901],[-122.380461,37.752901],[-122.380434,37.752901],[-122.380238,37.75291],[-122.380028,37.752922],[-122.37999,37.752921],[-122.379956,37.752915],[-122.379928,37.752907],[-122.379905,37.752899],[-122.379881,37.752886],[-122.379863,37.752869],[-122.379852,37.752846],[-122.379852,37.752824],[-122.379861,37.752805],[-122.37989,37.752786],[-122.379911,37.752778],[-122.379932,37.75277],[-122.379954,37.752763],[-122.379988,37.752752],[-122.380009,37.752739],[-122.380022,37.752721],[-122.380025,37.752704],[-122.380007,37.752458],[-122.379963,37.752061]],[[-122.383377,37.762304],[-122.383271,37.76231],[-122.383299,37.762578],[-122.383384,37.762562],[-122.383403,37.762483],[-122.383377,37.762304]]]]},"properties":{"neighbourhood":"Potrero Hill","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.446438,37.761036],[-122.446408,37.761074],[-122.446779,37.761848],[-122.446499,37.761853],[-122.4463,37.762302],[-122.445808,37.76231],[-122.445396,37.762652],[-122.444572,37.76339],[-122.444316,37.764342],[-122.444105,37.764346],[-122.443975,37.764738],[-122.444121,37.764959],[-122.443361,37.765418],[-122.442742,37.76593],[-122.441967,37.765831],[-122.441763,37.766113],[-122.44066,37.766912],[-122.440051,37.767814],[-122.438733,37.76845],[-122.438395,37.768957],[-122.437345,37.769086],[-122.436851,37.768982],[-122.435964,37.769038],[-122.432081,37.769284],[-122.426761,37.769577],[-122.425578,37.756617],[-122.432366,37.756271],[-122.437801,37.755908],[-122.43779,37.755471],[-122.438892,37.755452],[-122.438988,37.756491],[-122.440501,37.756356],[-122.441045,37.756229],[-122.44161,37.756612],[-122.442163,37.756657],[-122.442586,37.757033],[-122.443085,37.757682],[-122.443578,37.758057],[-122.444206,37.758374],[-122.444548,37.758259],[-122.444894,37.758308],[-122.446079,37.758836],[-122.446494,37.758884],[-122.446309,37.759708],[-122.446403,37.760691],[-122.446412,37.761019],[-122.446438,37.761036]]]]},"properties":{"neighbourhood":"Castro/Upper Market","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.46142,37.751562],[-122.460354,37.751864],[-122.458881,37.751944],[-122.458103,37.751734],[-122.45683,37.751421],[-122.456206,37.75171],[-122.456079,37.752214],[-122.45596,37.753053],[-122.455485,37.753674],[-122.455223,37.754403],[-122.454902,37.755524],[-122.454087,37.756597],[-122.454105,37.757266],[-122.453416,37.757779],[-122.452724,37.758181],[-122.451399,37.758537],[-122.451436,37.758735],[-122.449722,37.7589],[-122.448252,37.759091],[-122.447487,37.759383],[-122.447215,37.759722],[-122.446946,37.760172],[-122.446816,37.760565],[-122.446438,37.761036],[-122.446412,37.761019],[-122.446403,37.760691],[-122.446309,37.759708],[-122.446494,37.758884],[-122.446079,37.758836],[-122.444894,37.758308],[-122.444548,37.758259],[-122.444206,37.758374],[-122.443578,37.758057],[-122.443085,37.757682],[-122.442586,37.757033],[-122.442163,37.756657],[-122.44161,37.756612],[-122.441045,37.756229],[-122.440979,37.756184],[-122.441171,37.755634],[-122.441699,37.75475],[-122.442368,37.753973],[-122.442753,37.752872],[-122.443185,37.75095],[-122.443621,37.749191],[-122.444221,37.748415],[-122.444138,37.74787],[-122.444122,37.747268],[-122.444668,37.74704],[-122.444771,37.746921],[-122.444804,37.746983],[-122.447754,37.746497],[-122.450699,37.745791],[-122.451701,37.745454],[-122.451866,37.745608],[-122.452418,37.745653],[-122.453797,37.745685],[-122.454774,37.746161],[-122.4563,37.746519],[-122.457963,37.746875],[-122.458648,37.746699],[-122.459077,37.747294],[-122.458745,37.747792],[-122.458754,37.74812],[-122.459744,37.749088],[-122.460664,37.750003],[-122.460814,37.750439],[-122.461391,37.751414],[-122.46142,37.751562]]]]},"properties":{"neighbourhood":"Twin Peaks","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.428255,37.731785],[-122.428147,37.731889],[-122.429988,37.732287],[-122.432247,37.73225],[-122.433848,37.731711],[-122.435572,37.731768],[-122.432493,37.733201],[-122.431956,37.733452],[-122.429507,37.734518],[-122.426541,37.736362],[-122.424756,37.738101],[-122.423941,37.739909],[-122.424183,37.742262],[-122.424756,37.747849],[-122.423181,37.747959],[-122.421568,37.74807],[-122.420171,37.748179],[-122.418126,37.748212],[-122.415005,37.748263],[-122.411344,37.748237],[-122.407579,37.748383],[-122.405767,37.749097],[-122.404159,37.749379],[-122.403576,37.749388],[-122.404915,37.745263],[-122.405848,37.74388],[-122.407311,37.742146],[-122.407709,37.740857],[-122.408001,37.739656],[-122.408073,37.738287],[-122.407472,37.735817],[-122.406703,37.735178],[-122.408728,37.734429],[-122.411818,37.733182],[-122.413629,37.732468],[-122.415017,37.732018],[-122.419108,37.732037],[-122.420931,37.731751],[-122.422969,37.731461],[-122.425231,37.73151],[-122.427174,37.731734],[-122.428255,37.731785]]]]},"properties":{"neighbourhood":"Bernal Heights","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.408767,37.790163],[-122.408797,37.790161],[-122.408805,37.790184],[-122.409062,37.791429],[-122.410257,37.7974],[-122.408153,37.797667],[-122.40671,37.79785],[-122.405445,37.798012],[-122.405319,37.797246],[-122.405195,37.796514],[-122.40504,37.79574],[-122.404041,37.790763],[-122.406205,37.790471],[-122.40628,37.790461],[-122.406364,37.79045],[-122.406565,37.790418],[-122.407156,37.790357],[-122.408069,37.790247],[-122.408429,37.790204],[-122.408743,37.790165],[-122.408767,37.790163]]]]},"properties":{"neighbourhood":"Chinatown","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.410635,37.809724],[-122.410898,37.810188],[-122.410976,37.81016],[-122.410909,37.810028],[-122.410991,37.810143],[-122.411042,37.810124],[-122.410985,37.81],[-122.411067,37.810115],[-122.411115,37.810098],[-122.411058,37.809974],[-122.41114,37.810089],[-122.411192,37.81007],[-122.411135,37.809946],[-122.411217,37.810061],[-122.41126,37.810046],[-122.411203,37.809921],[-122.411285,37.810036],[-122.411335,37.810018],[-122.411278,37.809894],[-122.41136,37.810009],[-122.411403,37.809994],[-122.411346,37.80987],[-122.411428,37.809985],[-122.411474,37.809968],[-122.411417,37.809844],[-122.411499,37.809959],[-122.41155,37.809941],[-122.411493,37.809817],[-122.411575,37.809932],[-122.411621,37.809915],[-122.411564,37.809791],[-122.411646,37.809906],[-122.411693,37.809889],[-122.411636,37.809765],[-122.411719,37.80988],[-122.411761,37.809865],[-122.411704,37.809741],[-122.411873,37.81003],[-122.411776,37.80989],[-122.411722,37.809909],[-122.411794,37.810058],[-122.411697,37.809918],[-122.411647,37.809936],[-122.411719,37.810085],[-122.411622,37.809946],[-122.411566,37.809966],[-122.411637,37.810115],[-122.41154,37.809975],[-122.411488,37.809994],[-122.411559,37.810143],[-122.411463,37.810003],[-122.411412,37.810022],[-122.411483,37.81017],[-122.411386,37.810031],[-122.41133,37.810051],[-122.411401,37.8102],[-122.411305,37.81006],[-122.411251,37.81008],[-122.411322,37.810228],[-122.411226,37.810089],[-122.411178,37.810106],[-122.41125,37.810255],[-122.411153,37.810115],[-122.411106,37.810132],[-122.411177,37.810281],[-122.41108,37.810141],[-122.41102,37.810163],[-122.411091,37.810312],[-122.410997,37.810175],[-122.410906,37.810203],[-122.411219,37.810756],[-122.411323,37.81094],[-122.411245,37.811117],[-122.41095,37.811221],[-122.410929,37.811279],[-122.410682,37.811367],[-122.410614,37.811353],[-122.410417,37.811418],[-122.410149,37.811506],[-122.408512,37.811284],[-122.407585,37.808796],[-122.408535,37.811269],[-122.410153,37.811487],[-122.410406,37.811399],[-122.410398,37.811385],[-122.410199,37.811328],[-122.410034,37.811397],[-122.410029,37.811424],[-122.408569,37.811218],[-122.408613,37.811066],[-122.408597,37.811198],[-122.408646,37.811205],[-122.408681,37.811076],[-122.408701,37.811079],[-122.408677,37.811209],[-122.408729,37.811217],[-122.408763,37.811088],[-122.408783,37.81109],[-122.408759,37.811221],[-122.408809,37.811228],[-122.408843,37.811099],[-122.408863,37.811102],[-122.408839,37.811232],[-122.408887,37.811239],[-122.408921,37.81111],[-122.408941,37.811113],[-122.408917,37.811243],[-122.408971,37.811251],[-122.409005,37.811122],[-122.409025,37.811125],[-122.409002,37.811255],[-122.409048,37.811262],[-122.409083,37.811133],[-122.409103,37.811136],[-122.409079,37.811266],[-122.409132,37.811273],[-122.409166,37.811144],[-122.409186,37.811147],[-122.409162,37.811278],[-122.409217,37.811285],[-122.409251,37.811157],[-122.409271,37.811159],[-122.409248,37.81129],[-122.409286,37.811295],[-122.40932,37.811166],[-122.40934,37.811169],[-122.409316,37.811299],[-122.409371,37.811307],[-122.409405,37.811178],[-122.409425,37.811181],[-122.409402,37.811311],[-122.409447,37.811318],[-122.409481,37.811189],[-122.409501,37.811192],[-122.409477,37.811322],[-122.409533,37.81133],[-122.409567,37.811201],[-122.409588,37.811204],[-122.409564,37.811334],[-122.409613,37.811341],[-122.409647,37.811212],[-122.409667,37.811215],[-122.409643,37.811346],[-122.409694,37.811353],[-122.409729,37.811224],[-122.409749,37.811227],[-122.409725,37.811357],[-122.409773,37.811364],[-122.409807,37.811235],[-122.409827,37.811238],[-122.409803,37.811368],[-122.409855,37.811375],[-122.40989,37.811247],[-122.40991,37.811249],[-122.409886,37.81138],[-122.40994,37.811387],[-122.409982,37.811259],[-122.410045,37.811353],[-122.410082,37.811342],[-122.41004,37.811242],[-122.41006,37.811237],[-122.410112,37.811346],[-122.410186,37.811316],[-122.410002,37.811],[-122.410015,37.810934],[-122.410036,37.810916],[-122.410047,37.810862],[-122.410057,37.810818],[-122.410043,37.810795],[-122.410054,37.810739],[-122.410078,37.810724],[-122.410095,37.810623],[-122.410082,37.810597],[-122.410092,37.810546],[-122.410117,37.810527],[-122.410136,37.810423],[-122.41012,37.810401],[-122.410131,37.810357],[-122.410155,37.810331],[-122.410176,37.810233],[-122.410158,37.81021],[-122.410179,37.810102],[-122.410077,37.80992],[-122.410053,37.809917],[-122.410035,37.809923],[-122.410019,37.809913],[-122.409992,37.809909],[-122.409973,37.809915],[-122.409957,37.809904],[-122.409933,37.809901],[-122.409915,37.809907],[-122.409899,37.809897],[-122.409868,37.809893],[-122.40985,37.809899],[-122.409834,37.809888],[-122.409809,37.809885],[-122.40979,37.809891],[-122.409774,37.80988],[-122.409749,37.809877],[-122.40973,37.809883],[-122.409715,37.809873],[-122.409685,37.809869],[-122.409667,37.809875],[-122.409651,37.809864],[-122.409623,37.80986],[-122.409605,37.809866],[-122.409589,37.809856],[-122.409564,37.809853],[-122.409545,37.809858],[-122.40953,37.809848],[-122.409501,37.809844],[-122.409483,37.80985],[-122.409467,37.80984],[-122.409439,37.809836],[-122.409421,37.809842],[-122.409405,37.809832],[-122.409375,37.809828],[-122.409356,37.809834],[-122.40934,37.809823],[-122.409316,37.80982],[-122.409298,37.809826],[-122.409282,37.809815],[-122.409251,37.809811],[-122.409233,37.809817],[-122.409217,37.809807],[-122.409195,37.809804],[-122.409177,37.80981],[-122.409161,37.809799],[-122.40913,37.809795],[-122.409112,37.809801],[-122.409096,37.809791],[-122.409073,37.809788],[-122.409055,37.809794],[-122.409039,37.809783],[-122.409014,37.80978],[-122.408995,37.809786],[-122.40898,37.809776],[-122.408951,37.809772],[-122.408933,37.809778],[-122.408917,37.809767],[-122.408884,37.809763],[-122.408866,37.809769],[-122.40885,37.809758],[-122.408824,37.809755],[-122.408805,37.809761],[-122.40879,37.80975],[-122.40876,37.809746],[-122.408741,37.809752],[-122.408725,37.809742],[-122.4087,37.809739],[-122.408681,37.809745],[-122.408666,37.809734],[-122.408639,37.809731],[-122.40862,37.809736],[-122.408605,37.809726],[-122.40858,37.809723],[-122.408562,37.809729],[-122.408546,37.809718],[-122.408515,37.809714],[-122.408496,37.80972],[-122.408481,37.80971],[-122.408454,37.809706],[-122.408436,37.809712],[-122.40842,37.809702],[-122.408397,37.809699],[-122.408379,37.809705],[-122.408363,37.809694],[-122.408331,37.80969],[-122.408312,37.809696],[-122.408297,37.809685],[-122.408261,37.809685],[-122.408237,37.809791],[-122.408217,37.809788],[-122.408256,37.809563],[-122.408276,37.809566],[-122.408265,37.80966],[-122.408287,37.809667],[-122.408306,37.809662],[-122.408321,37.809672],[-122.408343,37.809675],[-122.408361,37.809669],[-122.408386,37.80968],[-122.408413,37.809676],[-122.408429,37.809686],[-122.408451,37.809689],[-122.40847,37.809683],[-122.408494,37.809695],[-122.408522,37.80969],[-122.408538,37.809701],[-122.408558,37.809703],[-122.408577,37.809697],[-122.408592,37.809708],[-122.408615,37.809711],[-122.408633,37.809705],[-122.408656,37.809716],[-122.408682,37.809711],[-122.408697,37.809722],[-122.408723,37.809725],[-122.408742,37.809719],[-122.408757,37.809729],[-122.408777,37.809732],[-122.408795,37.809726],[-122.408811,37.809737],[-122.408846,37.809736],[-122.408874,37.809645],[-122.40887,37.80974],[-122.408892,37.809747],[-122.40891,37.809741],[-122.408926,37.809752],[-122.408947,37.809754],[-122.408965,37.809749],[-122.408981,37.809759],[-122.409002,37.809762],[-122.409021,37.809756],[-122.409044,37.809767],[-122.409071,37.809763],[-122.409087,37.809773],[-122.409107,37.809776],[-122.409126,37.80977],[-122.409141,37.80978],[-122.409162,37.809783],[-122.40918,37.809777],[-122.409205,37.809789],[-122.409233,37.809784],[-122.409249,37.809794],[-122.409269,37.809797],[-122.409288,37.809791],[-122.409303,37.809801],[-122.409325,37.809804],[-122.409344,37.809799],[-122.409369,37.80981],[-122.409397,37.809806],[-122.409413,37.809816],[-122.409432,37.809819],[-122.409451,37.809813],[-122.409466,37.809823],[-122.409489,37.809826],[-122.409507,37.80982],[-122.409523,37.80983],[-122.409544,37.809833],[-122.409563,37.809827],[-122.409578,37.809838],[-122.409599,37.809841],[-122.409618,37.809835],[-122.409641,37.809846],[-122.409668,37.809841],[-122.409683,37.809852],[-122.40971,37.809855],[-122.409728,37.809849],[-122.409744,37.80986],[-122.409764,37.809862],[-122.409782,37.809856],[-122.409806,37.809868],[-122.409833,37.809863],[-122.409848,37.809873],[-122.409878,37.809873],[-122.409903,37.809781],[-122.409902,37.809838],[-122.409928,37.809869],[-122.410058,37.809886],[-122.409785,37.809405],[-122.409759,37.809359],[-122.409646,37.809089],[-122.409583,37.809065],[-122.409522,37.80906],[-122.409492,37.809167],[-122.4095,37.809075],[-122.409477,37.809068],[-122.409459,37.809074],[-122.409443,37.809063],[-122.409422,37.809061],[-122.409404,37.809066],[-122.409388,37.809056],[-122.409369,37.809046],[-122.409397,37.809039],[-122.409429,37.808946],[-122.409422,37.809012],[-122.409466,37.809036],[-122.409563,37.809047],[-122.40955,37.809026],[-122.40955,37.808997],[-122.409387,37.80872],[-122.409343,37.808707],[-122.409309,37.808695],[-122.409263,37.80877],[-122.409244,37.808762],[-122.409287,37.808681],[-122.409258,37.808674],[-122.409212,37.808749],[-122.409193,37.808741],[-122.409232,37.808668],[-122.409219,37.808653],[-122.409189,37.808648],[-122.409161,37.808635],[-122.409137,37.808633],[-122.409111,37.808621],[-122.409087,37.808618],[-122.409059,37.808605],[-122.409035,37.808603],[-122.409008,37.80859],[-122.408984,37.808587],[-122.408953,37.808574],[-122.408929,37.808571],[-122.408891,37.808555],[-122.408867,37.808553],[-122.40883,37.808542],[-122.408772,37.808649],[-122.408753,37.808644],[-122.408801,37.808533],[-122.408763,37.808522],[-122.408704,37.80863],[-122.408685,37.808624],[-122.408734,37.808513],[-122.408692,37.808501],[-122.408633,37.808609],[-122.408614,37.808604],[-122.408663,37.808492],[-122.408625,37.808481],[-122.408565,37.80859],[-122.408546,37.808584],[-122.408595,37.808472],[-122.408557,37.808461],[-122.408495,37.808576],[-122.408475,37.80857],[-122.408528,37.808452],[-122.408481,37.808438],[-122.408419,37.808554],[-122.408399,37.808548],[-122.408452,37.80843],[-122.408409,37.808417],[-122.408346,37.808533],[-122.408326,37.808527],[-122.408379,37.808408],[-122.408334,37.808395],[-122.408271,37.808511],[-122.408252,37.808506],[-122.408325,37.808356],[-122.408307,37.808307],[-122.408234,37.808277],[-122.408191,37.80829],[-122.408103,37.808474],[-122.40807,37.808466],[-122.408166,37.808253],[-122.408046,37.808199],[-122.408025,37.808206],[-122.407919,37.808427],[-122.407887,37.808418],[-122.407994,37.808182],[-122.407919,37.808151],[-122.407807,37.808398],[-122.407787,37.808393],[-122.407869,37.808202],[-122.40791,37.808111],[-122.407859,37.80809],[-122.40783,37.8081],[-122.407869,37.808202],[-122.40766,37.808254],[-122.407706,37.808376],[-122.407614,37.808397],[-122.407507,37.808115],[-122.407548,37.808106],[-122.407537,37.808072],[-122.407463,37.808043],[-122.407446,37.808007],[-122.407487,37.80793],[-122.407432,37.807904],[-122.407355,37.808049],[-122.406644,37.807818],[-122.406816,37.809995],[-122.406787,37.810017],[-122.406179,37.810069],[-122.406138,37.810043],[-122.406122,37.81003],[-122.405904,37.80716],[-122.405322,37.806867],[-122.404399,37.808855],[-122.404383,37.808867],[-122.404357,37.808873],[-122.404317,37.808819],[-122.403925,37.808755],[-122.40391,37.808741],[-122.403907,37.808724],[-122.404717,37.806971],[-122.403956,37.806579],[-122.402764,37.808012],[-122.402745,37.808021],[-122.402717,37.808022],[-122.402347,37.807827],[-122.40234,37.807804],[-122.402344,37.807786],[-122.403422,37.806471],[-122.402804,37.806023],[-122.400939,37.807639],[-122.400916,37.807639],[-122.400399,37.807262],[-122.400964,37.803564],[-122.400843,37.803429],[-122.40048,37.803466],[-122.398541,37.804605],[-122.398518,37.804602],[-122.398559,37.804526],[-122.398224,37.804272],[-122.398228,37.804254],[-122.399972,37.803225],[-122.399602,37.802808],[-122.39782,37.803812],[-122.397797,37.803811],[-122.397513,37.803487],[-122.397516,37.80347],[-122.399616,37.802282],[-122.399724,37.802176],[-122.399402,37.801825],[-122.399377,37.801828],[-122.399345,37.801832],[-122.39932,37.801837],[-122.399297,37.801842],[-122.399267,37.801849],[-122.399242,37.801856],[-122.39922,37.801863],[-122.399199,37.80187],[-122.399178,37.801878],[-122.399157,37.801887],[-122.397111,37.803023],[-122.397088,37.803022],[-122.396144,37.801956],[-122.396146,37.80194],[-122.396156,37.80192],[-122.398384,37.800673],[-122.398279,37.800555],[-122.397989,37.80023],[-122.395759,37.801475],[-122.395739,37.801473],[-122.395441,37.801159],[-122.395446,37.80114],[-122.397528,37.799968],[-122.397545,37.799956],[-122.397561,37.799942],[-122.397576,37.799928],[-122.397598,37.799905],[-122.397616,37.799883],[-122.397627,37.799867],[-122.397637,37.79985],[-122.397582,37.799774],[-122.397382,37.799549],[-122.397363,37.79956],[-122.397257,37.799442],[-122.396973,37.79961],[-122.396897,37.799633],[-122.396944,37.799579],[-122.397251,37.799401],[-122.397223,37.799369],[-122.398275,37.798886],[-122.399679,37.798808],[-122.40311,37.798306],[-122.405445,37.798012],[-122.40671,37.79785],[-122.408255,37.798892],[-122.416774,37.804944],[-122.419633,37.806794],[-122.420614,37.806666],[-122.420952,37.808967],[-122.420911,37.808797],[-122.420858,37.808796],[-122.420717,37.8089],[-122.42076,37.809085],[-122.420694,37.80908],[-122.420677,37.809022],[-122.420416,37.809021],[-122.420361,37.809004],[-122.420385,37.808934],[-122.420668,37.808958],[-122.420635,37.808756],[-122.420541,37.808769],[-122.420462,37.808303],[-122.419104,37.808468],[-122.419122,37.808545],[-122.418981,37.808562],[-122.418966,37.808484],[-122.417886,37.808615],[-122.417923,37.808825],[-122.417844,37.80883],[-122.417811,37.808647],[-122.417726,37.808646],[-122.417731,37.808593],[-122.417625,37.808592],[-122.417602,37.808579],[-122.417489,37.808584],[-122.417485,37.808421],[-122.417587,37.808408],[-122.417577,37.808385],[-122.417669,37.808376],[-122.417654,37.808292],[-122.417376,37.808325],[-122.417345,37.808141],[-122.416346,37.80826],[-122.416355,37.808329],[-122.416305,37.808335],[-122.416339,37.808476],[-122.417185,37.808497],[-122.417182,37.808533],[-122.416327,37.808506],[-122.416282,37.808488],[-122.41615,37.808503],[-122.416144,37.80854],[-122.416207,37.808544],[-122.416187,37.808854],[-122.417428,37.808927],[-122.417413,37.809166],[-122.419291,37.810403],[-122.419315,37.810381],[-122.419834,37.810735],[-122.419808,37.810754],[-122.420595,37.811267],[-122.420353,37.81151],[-122.420002,37.811281],[-122.419846,37.81132],[-122.419952,37.811563],[-122.419916,37.811574],[-122.419724,37.811135],[-122.419215,37.810894],[-122.419186,37.810925],[-122.419098,37.810915],[-122.418988,37.810835],[-122.418936,37.810883],[-122.419125,37.811023],[-122.419049,37.811094],[-122.419466,37.811382],[-122.419351,37.811487],[-122.418846,37.811473],[-122.416831,37.810133],[-122.415352,37.809161],[-122.4152,37.809167],[-122.4152,37.809195],[-122.415152,37.809231],[-122.415172,37.809244],[-122.415195,37.809228],[-122.415413,37.809363],[-122.41537,37.809407],[-122.415149,37.80926],[-122.415135,37.809243],[-122.41504,37.809186],[-122.414889,37.809241],[-122.414973,37.809299],[-122.414994,37.809318],[-122.415007,37.809304],[-122.415222,37.809438],[-122.41518,37.809481],[-122.414964,37.809348],[-122.414981,37.809331],[-122.414956,37.809318],[-122.414846,37.809257],[-122.41478,37.809281],[-122.414775,37.809372],[-122.415341,37.809755],[-122.415289,37.809838],[-122.414563,37.809564],[-122.414024,37.809471],[-122.41342,37.809236],[-122.413374,37.809318],[-122.413396,37.809338],[-122.413411,37.809351],[-122.413426,37.809363],[-122.413441,37.809375],[-122.413457,37.809387],[-122.413472,37.809399],[-122.413488,37.809411],[-122.413505,37.809422],[-122.413521,37.809433],[-122.413538,37.809444],[-122.413555,37.809455],[-122.413572,37.809466],[-122.41359,37.809476],[-122.413607,37.809486],[-122.413625,37.809495],[-122.414282,37.809946],[-122.414201,37.810022],[-122.414027,37.810139],[-122.41378,37.809907],[-122.413857,37.809846],[-122.412617,37.809079],[-122.412498,37.809066],[-122.412398,37.809137],[-122.412389,37.809159],[-122.41244,37.809213],[-122.412629,37.809393],[-122.412575,37.809427],[-122.412396,37.809241],[-122.412413,37.809225],[-122.412351,37.809179],[-122.412316,37.809176],[-122.412099,37.809297],[-122.412088,37.809321],[-122.412138,37.809376],[-122.412315,37.809562],[-122.412253,37.809597],[-122.412094,37.809404],[-122.412111,37.809388],[-122.41205,37.809342],[-122.412014,37.809338],[-122.411895,37.809389],[-122.412862,37.810522],[-122.412718,37.810599],[-122.412705,37.810584],[-122.41151,37.811238],[-122.411489,37.811219],[-122.412687,37.810562],[-122.411453,37.809105],[-122.411424,37.809119],[-122.411249,37.80892],[-122.411091,37.808903],[-122.411283,37.809135],[-122.411256,37.809149],[-122.411029,37.808897],[-122.410954,37.808886],[-122.410766,37.808851],[-122.410737,37.808846],[-122.410731,37.808873],[-122.410649,37.808862],[-122.410652,37.808835],[-122.410546,37.808819],[-122.410442,37.809325],[-122.410408,37.80929],[-122.410402,37.809312],[-122.410635,37.809724]]],[[[-122.41897,37.809397],[-122.418931,37.809449],[-122.417897,37.809029],[-122.41794,37.80894],[-122.417947,37.80887],[-122.417987,37.808869],[-122.417987,37.808838],[-122.418011,37.808841],[-122.418895,37.808836],[-122.418894,37.80876],[-122.418932,37.808758],[-122.418935,37.808881],[-122.419948,37.808902],[-122.419938,37.809126],[-122.419083,37.809091],[-122.419077,37.809157],[-122.418887,37.809084],[-122.418359,37.809069],[-122.418314,37.809145],[-122.41897,37.809397]]],[[[-122.409932,37.810869],[-122.409881,37.810862],[-122.409841,37.810978],[-122.409856,37.810846],[-122.4098,37.810839],[-122.40976,37.810967],[-122.409773,37.810835],[-122.409719,37.810828],[-122.409677,37.810955],[-122.409692,37.810824],[-122.40964,37.810817],[-122.4096,37.810945],[-122.409613,37.810813],[-122.409558,37.810805],[-122.409519,37.810934],[-122.40953,37.810802],[-122.409476,37.810794],[-122.409436,37.810922],[-122.409448,37.81079],[-122.409394,37.810783],[-122.409352,37.81091],[-122.409367,37.810779],[-122.409313,37.810772],[-122.409271,37.810899],[-122.409286,37.810768],[-122.409229,37.81076],[-122.409186,37.810888],[-122.409201,37.810756],[-122.409147,37.810749],[-122.409105,37.810876],[-122.40912,37.810745],[-122.409068,37.810738],[-122.409026,37.810865],[-122.409041,37.810734],[-122.408988,37.810727],[-122.408946,37.810855],[-122.408961,37.810723],[-122.408904,37.810715],[-122.408862,37.810843],[-122.408877,37.810711],[-122.408821,37.810704],[-122.408779,37.810831],[-122.408794,37.8107],[-122.408737,37.810692],[-122.408695,37.81082],[-122.40871,37.810688],[-122.408657,37.810681],[-122.408614,37.810809],[-122.408629,37.810677],[-122.408556,37.810663],[-122.408597,37.810513],[-122.408582,37.810646],[-122.408635,37.810653],[-122.408677,37.810524],[-122.408662,37.810657],[-122.408715,37.810664],[-122.408757,37.810535],[-122.408742,37.810668],[-122.408799,37.810676],[-122.408842,37.810547],[-122.408827,37.810679],[-122.408882,37.810687],[-122.408925,37.810559],[-122.40891,37.810691],[-122.408966,37.810699],[-122.409009,37.81057],[-122.408994,37.810702],[-122.409046,37.81071],[-122.409088,37.810581],[-122.409073,37.810713],[-122.409126,37.810721],[-122.409168,37.810592],[-122.409153,37.810724],[-122.409207,37.810732],[-122.409249,37.810603],[-122.409234,37.810736],[-122.409291,37.810743],[-122.409333,37.810615],[-122.409318,37.810747],[-122.409372,37.810755],[-122.409414,37.810626],[-122.409399,37.810758],[-122.409453,37.810766],[-122.409493,37.810637],[-122.409481,37.81077],[-122.409535,37.810777],[-122.409574,37.810648],[-122.409562,37.810781],[-122.409618,37.810788],[-122.409658,37.81066],[-122.409645,37.810792],[-122.409697,37.810799],[-122.409739,37.810671],[-122.409724,37.810803],[-122.409778,37.810811],[-122.409819,37.810682],[-122.409806,37.810814],[-122.409861,37.810822],[-122.409904,37.810694],[-122.409891,37.810814],[-122.409943,37.810818],[-122.409982,37.810705],[-122.409959,37.81085],[-122.40992,37.810989],[-122.409932,37.810869]]],[[[-122.410066,37.810369],[-122.410043,37.81036],[-122.410024,37.810366],[-122.410009,37.810355],[-122.409965,37.810352],[-122.409931,37.810454],[-122.409944,37.810336],[-122.409902,37.810326],[-122.409883,37.810332],[-122.409868,37.810321],[-122.409831,37.810317],[-122.409812,37.810322],[-122.409797,37.810312],[-122.409756,37.810306],[-122.409737,37.810312],[-122.409722,37.810302],[-122.409687,37.810297],[-122.409668,37.810303],[-122.409652,37.810293],[-122.409619,37.810288],[-122.409601,37.810294],[-122.409585,37.810284],[-122.409541,37.810278],[-122.409523,37.810283],[-122.409507,37.810273],[-122.409468,37.810268],[-122.409449,37.810274],[-122.409434,37.810263],[-122.409395,37.810258],[-122.409376,37.810264],[-122.409361,37.810253],[-122.409313,37.810251],[-122.409292,37.810368],[-122.409289,37.810248],[-122.40925,37.810237],[-122.409231,37.810244],[-122.409216,37.810234],[-122.409177,37.810229],[-122.409158,37.810234],[-122.409143,37.810224],[-122.409106,37.810219],[-122.409088,37.810225],[-122.409072,37.810215],[-122.409029,37.810209],[-122.40901,37.810215],[-122.408995,37.810204],[-122.40896,37.8102],[-122.408942,37.810205],[-122.408926,37.810195],[-122.408886,37.81019],[-122.408867,37.810195],[-122.408852,37.810185],[-122.408816,37.81018],[-122.408798,37.810186],[-122.408782,37.810176],[-122.408738,37.81017],[-122.408719,37.810175],[-122.408704,37.810165],[-122.408665,37.81016],[-122.408646,37.810166],[-122.408631,37.810155],[-122.408595,37.810151],[-122.408577,37.810156],[-122.408561,37.810146],[-122.408522,37.810141],[-122.408503,37.810146],[-122.408487,37.810136],[-122.40845,37.810131],[-122.408431,37.810137],[-122.408415,37.810126],[-122.408357,37.810119],[-122.408382,37.809996],[-122.408379,37.810101],[-122.408409,37.810109],[-122.408427,37.810103],[-122.408443,37.810113],[-122.408468,37.810117],[-122.408487,37.810111],[-122.408503,37.810121],[-122.40853,37.810125],[-122.408549,37.810119],[-122.408564,37.81013],[-122.408587,37.810133],[-122.408606,37.810127],[-122.408621,37.810137],[-122.40865,37.810141],[-122.408669,37.810135],[-122.408684,37.810146],[-122.408707,37.810149],[-122.408726,37.810143],[-122.408741,37.810153],[-122.408768,37.810157],[-122.408786,37.810151],[-122.408802,37.810162],[-122.408826,37.810165],[-122.408844,37.810159],[-122.40886,37.810169],[-122.408887,37.810173],[-122.408906,37.810167],[-122.408921,37.810178],[-122.408942,37.81018],[-122.408961,37.810175],[-122.408976,37.810185],[-122.409008,37.810189],[-122.409027,37.810183],[-122.409042,37.810194],[-122.409068,37.810197],[-122.409086,37.810191],[-122.409102,37.810202],[-122.409125,37.810205],[-122.409144,37.810199],[-122.40916,37.81021],[-122.409188,37.810213],[-122.409207,37.810208],[-122.409222,37.810218],[-122.409246,37.810221],[-122.409265,37.810215],[-122.40928,37.810226],[-122.409304,37.810229],[-122.409323,37.810223],[-122.409338,37.810234],[-122.409365,37.810237],[-122.409383,37.810231],[-122.409399,37.810242],[-122.409425,37.810245],[-122.409444,37.810239],[-122.409459,37.81025],[-122.409482,37.810253],[-122.409501,37.810247],[-122.409516,37.810257],[-122.409544,37.810261],[-122.409563,37.810255],[-122.409578,37.810266],[-122.409605,37.810269],[-122.409624,37.810264],[-122.409639,37.810274],[-122.409664,37.810277],[-122.409683,37.810272],[-122.409698,37.810282],[-122.409725,37.810286],[-122.409744,37.81028],[-122.409759,37.81029],[-122.409783,37.810293],[-122.409802,37.810288],[-122.409817,37.810298],[-122.409839,37.810301],[-122.409858,37.810295],[-122.409874,37.810306],[-122.409901,37.810309],[-122.40992,37.810303],[-122.409935,37.810314],[-122.409969,37.810314],[-122.410003,37.810214],[-122.409995,37.810307],[-122.410017,37.810315],[-122.410044,37.810313],[-122.410077,37.810316],[-122.410108,37.810228],[-122.410089,37.810351],[-122.410056,37.810471],[-122.410066,37.810369]]],[[[-122.412116,37.810455],[-122.412091,37.810456],[-122.411309,37.810722],[-122.411223,37.810556],[-122.411318,37.810696],[-122.411369,37.810678],[-122.411299,37.810529],[-122.411397,37.810673],[-122.411526,37.810627],[-122.411454,37.810474],[-122.411549,37.810614],[-122.411679,37.810568],[-122.411609,37.810419],[-122.411705,37.810559],[-122.411743,37.810545],[-122.411694,37.810389],[-122.411765,37.810542],[-122.411839,37.810516],[-122.411919,37.810483],[-122.411849,37.810334],[-122.411944,37.810472],[-122.412075,37.810427],[-122.412004,37.810278],[-122.412116,37.810455]]],[[[-122.410742,37.809699],[-122.410635,37.809724],[-122.410709,37.809689],[-122.41064,37.809552],[-122.410722,37.809669],[-122.410759,37.809656],[-122.41072,37.809561],[-122.410784,37.809647],[-122.410825,37.809632],[-122.410786,37.809536],[-122.410851,37.809623],[-122.410891,37.809609],[-122.410851,37.809511],[-122.410916,37.8096],[-122.410954,37.809587],[-122.410913,37.809488],[-122.410979,37.809578],[-122.411028,37.809561],[-122.410986,37.80946],[-122.411053,37.809552],[-122.411092,37.809538],[-122.411049,37.809436],[-122.411187,37.809678],[-122.411109,37.809567],[-122.411053,37.809587],[-122.411106,37.809708],[-122.411028,37.809596],[-122.41098,37.809613],[-122.411034,37.809735],[-122.410954,37.809623],[-122.41091,37.809639],[-122.410964,37.809761],[-122.410885,37.809648],[-122.410837,37.809665],[-122.410892,37.809788],[-122.410812,37.809674],[-122.410767,37.80969],[-122.410822,37.809814],[-122.410742,37.809699]]],[[[-122.409785,37.809405],[-122.409693,37.809452],[-122.409749,37.809483],[-122.409727,37.809495],[-122.409711,37.809485],[-122.40969,37.809482],[-122.409672,37.809488],[-122.409649,37.809477],[-122.409625,37.809482],[-122.409609,37.809471],[-122.409583,37.809461],[-122.409628,37.80946],[-122.409651,37.809361],[-122.409646,37.809433],[-122.409673,37.809444],[-122.409785,37.809405]]],[[[-122.407918,37.80885],[-122.407868,37.80885],[-122.407899,37.808739],[-122.407891,37.808835],[-122.407918,37.80885]]],[[[-122.408082,37.809258],[-122.40804,37.809259],[-122.408065,37.809147],[-122.408062,37.809244],[-122.408082,37.809258]]],[[[-122.409583,37.809461],[-122.409566,37.809474],[-122.409542,37.809462],[-122.409516,37.809467],[-122.4095,37.809456],[-122.409473,37.809446],[-122.409523,37.809446],[-122.409583,37.809461]]],[[[-122.409773,37.809497],[-122.409749,37.809483],[-122.409795,37.809482],[-122.40977,37.80959],[-122.409773,37.809497]]],[[[-122.408679,37.809338],[-122.408657,37.809342],[-122.408639,37.809348],[-122.408615,37.809333],[-122.408636,37.809326],[-122.408655,37.80932],[-122.408679,37.809338]]],[[[-122.409112,37.809397],[-122.409087,37.809401],[-122.409069,37.809406],[-122.409047,37.809388],[-122.40907,37.809384],[-122.409089,37.809379],[-122.409112,37.809397]]],[[[-122.408349,37.809294],[-122.408328,37.809298],[-122.408309,37.809304],[-122.408286,37.809285],[-122.408308,37.809281],[-122.408326,37.809275],[-122.408349,37.809294]]],[[[-122.408286,37.809285],[-122.408257,37.809297],[-122.408241,37.809286],[-122.408225,37.809277],[-122.408254,37.809274],[-122.408272,37.809268],[-122.408286,37.809285]]],[[[-122.408777,37.808966],[-122.408747,37.808977],[-122.408725,37.808959],[-122.408754,37.808948],[-122.408777,37.808966]]],[[[-122.408123,37.808878],[-122.408094,37.808889],[-122.408071,37.808871],[-122.4081,37.808859],[-122.408123,37.808878]]],[[[-122.408725,37.808959],[-122.408696,37.808971],[-122.408674,37.808952],[-122.408702,37.808941],[-122.408725,37.808959]]],[[[-122.408513,37.809316],[-122.408494,37.80932],[-122.408475,37.809326],[-122.408465,37.80931],[-122.40849,37.809298],[-122.408513,37.809316]]],[[[-122.4088,37.808985],[-122.408777,37.808966],[-122.408807,37.808955],[-122.408821,37.808972],[-122.4088,37.808985]]],[[[-122.408835,37.80936],[-122.408802,37.80937],[-122.408791,37.809354],[-122.408815,37.809341],[-122.408835,37.80936]]],[[[-122.408856,37.809378],[-122.408835,37.80936],[-122.408867,37.809349],[-122.408879,37.809365],[-122.408856,37.809378]]],[[[-122.408147,37.808896],[-122.408123,37.808878],[-122.408153,37.808866],[-122.408167,37.808883],[-122.408147,37.808896]]],[[[-122.408478,37.808941],[-122.408455,37.808922],[-122.408484,37.808911],[-122.408498,37.808928],[-122.408478,37.808941]]],[[[-122.408455,37.808922],[-122.408425,37.808934],[-122.408411,37.808917],[-122.408432,37.808904],[-122.408455,37.808922]]],[[[-122.408615,37.809333],[-122.408584,37.809341],[-122.408573,37.809324],[-122.408596,37.809312],[-122.408615,37.809333]]],[[[-122.409293,37.809051],[-122.40927,37.809033],[-122.409299,37.809022],[-122.409313,37.809039],[-122.409293,37.809051]]],[[[-122.40927,37.809033],[-122.409241,37.809044],[-122.409227,37.809027],[-122.409247,37.809015],[-122.40927,37.809033]]],[[[-122.409348,37.809444],[-122.409329,37.809426],[-122.409362,37.809416],[-122.409372,37.809432],[-122.409348,37.809444]]],[[[-122.409329,37.809426],[-122.409298,37.809437],[-122.409287,37.809421],[-122.409309,37.809408],[-122.409329,37.809426]]],[[[-122.408071,37.808871],[-122.408042,37.808882],[-122.408028,37.808865],[-122.408049,37.808852],[-122.408071,37.808871]]],[[[-122.407983,37.808874],[-122.407961,37.808856],[-122.40799,37.808844],[-122.408003,37.808861],[-122.407983,37.808874]]],[[[-122.407961,37.808856],[-122.407932,37.808867],[-122.407918,37.80885],[-122.407939,37.808837],[-122.407961,37.808856]]],[[[-122.408674,37.808952],[-122.408645,37.808964],[-122.408632,37.808946],[-122.408652,37.808934],[-122.408674,37.808952]]],[[[-122.409127,37.809414],[-122.409112,37.809397],[-122.409141,37.809386],[-122.409151,37.809402],[-122.409127,37.809414]]],[[[-122.409433,37.80944],[-122.409406,37.809452],[-122.409395,37.809435],[-122.409417,37.809423],[-122.409433,37.80944]]],[[[-122.408695,37.809356],[-122.408679,37.809338],[-122.408706,37.809327],[-122.408718,37.809344],[-122.408695,37.809356]]],[[[-122.408529,37.809333],[-122.408513,37.809316],[-122.408539,37.809304],[-122.408551,37.809321],[-122.408529,37.809333]]],[[[-122.408365,37.809311],[-122.408349,37.809294],[-122.408376,37.809282],[-122.408387,37.809299],[-122.408365,37.809311]]],[[[-122.409047,37.809388],[-122.40902,37.8094],[-122.409009,37.809383],[-122.409032,37.809371],[-122.409047,37.809388]]],[[[-122.408333,37.808906],[-122.408313,37.808919],[-122.408299,37.808901],[-122.408319,37.808889],[-122.408333,37.808906]]],[[[-122.409041,37.809002],[-122.40902,37.809014],[-122.409006,37.808997],[-122.409027,37.808985],[-122.409041,37.809002]]],[[[-122.408279,37.808899],[-122.408259,37.808911],[-122.408245,37.808894],[-122.408265,37.808882],[-122.408279,37.808899]]],[[[-122.408878,37.80898],[-122.408858,37.808992],[-122.408844,37.808975],[-122.408864,37.808963],[-122.408878,37.80898]]],[[[-122.409154,37.809017],[-122.409134,37.80903],[-122.40912,37.809013],[-122.40914,37.809],[-122.409154,37.809017]]],[[[-122.408553,37.808936],[-122.408532,37.808948],[-122.408519,37.808931],[-122.408539,37.808919],[-122.408553,37.808936]]],[[[-122.40861,37.808943],[-122.408589,37.808956],[-122.408575,37.808939],[-122.408596,37.808926],[-122.40861,37.808943]]],[[[-122.409208,37.809024],[-122.409187,37.809037],[-122.409173,37.80902],[-122.409194,37.809007],[-122.409208,37.809024]]],[[[-122.409369,37.809046],[-122.409349,37.809059],[-122.409335,37.809042],[-122.409355,37.809029],[-122.409369,37.809046]]],[[[-122.408932,37.808987],[-122.408912,37.809],[-122.408898,37.808983],[-122.408918,37.80897],[-122.408932,37.808987]]],[[[-122.408389,37.808914],[-122.408369,37.808926],[-122.408355,37.808909],[-122.408376,37.808896],[-122.408389,37.808914]]],[[[-122.408222,37.808891],[-122.408201,37.808903],[-122.408188,37.808886],[-122.408208,37.808874],[-122.408222,37.808891]]],[[[-122.408986,37.808994],[-122.408965,37.809007],[-122.408951,37.80899],[-122.408972,37.808977],[-122.408986,37.808994]]],[[[-122.409097,37.80901],[-122.409077,37.809022],[-122.409063,37.809005],[-122.409083,37.808992],[-122.409097,37.80901]]],[[[-122.40817,37.80927],[-122.408149,37.809282],[-122.408136,37.809265],[-122.408157,37.809253],[-122.40817,37.80927]]],[[[-122.408225,37.809277],[-122.408202,37.809289],[-122.408191,37.809272],[-122.408215,37.80926],[-122.408225,37.809277]]],[[[-122.408989,37.80938],[-122.408967,37.809393],[-122.408955,37.809376],[-122.408977,37.809363],[-122.408989,37.80938]]],[[[-122.408771,37.809351],[-122.40875,37.809363],[-122.408737,37.809346],[-122.408759,37.809334],[-122.408771,37.809351]]],[[[-122.408933,37.809373],[-122.408911,37.809385],[-122.408899,37.809368],[-122.408921,37.809356],[-122.408933,37.809373]]],[[[-122.408442,37.809306],[-122.40842,37.809319],[-122.408408,37.809302],[-122.408431,37.80929],[-122.408442,37.809306]]],[[[-122.409209,37.80941],[-122.409185,37.809422],[-122.409175,37.809406],[-122.409199,37.809393],[-122.409209,37.80941]]],[[[-122.408094,37.809275],[-122.408082,37.809258],[-122.408105,37.809246],[-122.408117,37.809262],[-122.408094,37.809275]]],[[[-122.409266,37.809418],[-122.409246,37.80943],[-122.409232,37.809413],[-122.409252,37.809401],[-122.409266,37.809418]]],[[[-122.409473,37.809446],[-122.409458,37.809459],[-122.409433,37.80944],[-122.409473,37.809446]]]]},"properties":{"neighbourhood":"North Beach","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.447983,37.806972],[-122.447876,37.80633],[-122.448577,37.806263],[-122.448332,37.804985],[-122.448473,37.804982],[-122.448458,37.804425],[-122.448944,37.804194],[-122.449287,37.803853],[-122.44955,37.80318],[-122.449537,37.802678],[-122.449096,37.801961],[-122.448242,37.801529],[-122.447822,37.801591],[-122.446702,37.79474],[-122.446231,37.791859],[-122.447656,37.791649],[-122.454351,37.790665],[-122.460923,37.789385],[-122.4626,37.789041],[-122.465955,37.788353],[-122.465782,37.787129],[-122.475543,37.78691],[-122.478282,37.786864],[-122.478735,37.786898],[-122.48131,37.787092],[-122.483853,37.787607],[-122.484089,37.78791],[-122.483662,37.788335],[-122.483687,37.789283],[-122.484401,37.789717],[-122.485465,37.790089],[-122.486226,37.790509],[-122.486197,37.790545],[-122.486148,37.790606],[-122.486109,37.790688],[-122.486035,37.790762],[-122.48596,37.79082],[-122.485895,37.790894],[-122.485741,37.791022],[-122.485583,37.791239],[-122.485411,37.791468],[-122.485285,37.791713],[-122.484996,37.791948],[-122.484753,37.792215],[-122.484542,37.792522],[-122.484364,37.79274],[-122.484184,37.793062],[-122.484073,37.793295],[-122.483858,37.793646],[-122.483593,37.794035],[-122.483294,37.794671],[-122.483518,37.79473],[-122.483088,37.795612],[-122.482999,37.795903],[-122.482851,37.796178],[-122.482765,37.796485],[-122.482667,37.796814],[-122.482505,37.797149],[-122.48235,37.797496],[-122.48218,37.797833],[-122.482169,37.797996],[-122.482136,37.79813],[-122.482085,37.798234],[-122.482122,37.79829],[-122.482129,37.798329],[-122.482112,37.798372],[-122.482102,37.798405],[-122.482088,37.798443],[-122.482079,37.798472],[-122.482042,37.798509],[-122.481958,37.798535],[-122.48187,37.798535],[-122.481831,37.798574],[-122.481914,37.798729],[-122.481933,37.798775],[-122.481895,37.79878],[-122.481783,37.798686],[-122.481759,37.798795],[-122.481736,37.798806],[-122.481729,37.798846],[-122.481698,37.798857],[-122.481554,37.798748],[-122.481545,37.798792],[-122.481675,37.798888],[-122.481685,37.79893],[-122.481643,37.798933],[-122.48162,37.798952],[-122.481602,37.798977],[-122.481583,37.799007],[-122.481562,37.799036],[-122.481553,37.799086],[-122.481537,37.79914],[-122.481507,37.799211],[-122.481472,37.799267],[-122.481416,37.799334],[-122.48138,37.799367],[-122.481394,37.799401],[-122.481388,37.79945],[-122.481312,37.799517],[-122.4812,37.799556],[-122.481106,37.799613],[-122.481069,37.799704],[-122.481064,37.799823],[-122.481041,37.799871],[-122.480987,37.799938],[-122.48098,37.800014],[-122.480978,37.800225],[-122.480974,37.800331],[-122.48086,37.800385],[-122.480757,37.800443],[-122.480678,37.800582],[-122.480655,37.800648],[-122.480593,37.800725],[-122.480538,37.800815],[-122.480468,37.80095],[-122.480375,37.801095],[-122.480296,37.801293],[-122.480202,37.801417],[-122.480181,37.801558],[-122.480072,37.801845],[-122.480027,37.802059],[-122.480044,37.802235],[-122.480005,37.802388],[-122.479967,37.802605],[-122.479927,37.80275],[-122.479899,37.802898],[-122.479814,37.803058],[-122.479734,37.803209],[-122.479678,37.803311],[-122.479612,37.803428],[-122.479497,37.803573],[-122.479357,37.803861],[-122.479173,37.804332],[-122.479146,37.804483],[-122.479061,37.804693],[-122.478953,37.804882],[-122.478814,37.805291],[-122.478729,37.805493],[-122.478723,37.805679],[-122.478697,37.805843],[-122.478686,37.805962],[-122.478628,37.806008],[-122.478654,37.80609],[-122.478632,37.80612],[-122.47866,37.806171],[-122.478639,37.806277],[-122.478627,37.806353],[-122.478624,37.80647],[-122.478577,37.806638],[-122.478562,37.806787],[-122.478545,37.80696],[-122.478527,37.807067],[-122.478527,37.807185],[-122.478521,37.807253],[-122.478489,37.807311],[-122.478484,37.807411],[-122.478496,37.80755],[-122.478476,37.807833],[-122.478405,37.808093],[-122.478061,37.808278],[-122.477896,37.808449],[-122.477886,37.808531],[-122.477924,37.808669],[-122.477956,37.809252],[-122.477923,37.809783],[-122.477957,37.810111],[-122.477925,37.810324],[-122.477976,37.810543],[-122.477691,37.810628],[-122.477738,37.810943],[-122.477669,37.81096],[-122.477314,37.811025],[-122.476952,37.810983],[-122.476622,37.810877],[-122.476561,37.810893],[-122.476466,37.810836],[-122.476399,37.810758],[-122.476244,37.810424],[-122.476193,37.810243],[-122.476155,37.809859],[-122.476049,37.80964],[-122.475968,37.809575],[-122.47579,37.809485],[-122.475541,37.809387],[-122.474949,37.80926],[-122.474802,37.809179],[-122.474477,37.809144],[-122.474059,37.809107],[-122.473248,37.8091],[-122.472666,37.809034],[-122.472248,37.80897],[-122.471807,37.808865],[-122.471577,37.808857],[-122.471241,37.808797],[-122.470932,37.808717],[-122.47066,37.808614],[-122.470601,37.808599],[-122.470033,37.80943],[-122.46999,37.809452],[-122.469923,37.809435],[-122.469403,37.809204],[-122.469387,37.809167],[-122.469446,37.809068],[-122.469513,37.809054],[-122.470047,37.809289],[-122.470537,37.808583],[-122.47042,37.808453],[-122.470228,37.808354],[-122.470098,37.808266],[-122.470014,37.808202],[-122.469816,37.808099],[-122.469586,37.807953],[-122.469304,37.807727],[-122.469234,37.807569],[-122.469112,37.807371],[-122.468869,37.807067],[-122.46879,37.807003],[-122.468642,37.806925],[-122.468442,37.806861],[-122.468303,37.806818],[-122.468149,37.806981],[-122.468042,37.806913],[-122.468205,37.806743],[-122.468155,37.8067],[-122.467927,37.806564],[-122.467767,37.806455],[-122.467356,37.806141],[-122.467204,37.806012],[-122.466996,37.80591],[-122.466671,37.805803],[-122.466474,37.805989],[-122.466058,37.806416],[-122.465889,37.806308],[-122.465954,37.806241],[-122.466061,37.806296],[-122.466124,37.806325],[-122.466652,37.805791],[-122.466074,37.805582],[-122.465896,37.805571],[-122.465649,37.805488],[-122.465461,37.805394],[-122.464552,37.805114],[-122.46423,37.805004],[-122.463987,37.80494],[-122.463579,37.80488],[-122.463272,37.804888],[-122.462953,37.804917],[-122.46243,37.805014],[-122.462213,37.805019],[-122.462027,37.804955],[-122.461897,37.80493],[-122.461602,37.804957],[-122.461272,37.805023],[-122.461008,37.805087],[-122.459773,37.805253],[-122.459578,37.805293],[-122.45954,37.805305],[-122.459501,37.805317],[-122.459463,37.805328],[-122.459424,37.805339],[-122.459385,37.80535],[-122.459346,37.805359],[-122.459306,37.805368],[-122.459267,37.805377],[-122.459227,37.805385],[-122.459187,37.805393],[-122.459146,37.8054],[-122.459106,37.805406],[-122.459066,37.805412],[-122.459025,37.805417],[-122.458984,37.805422],[-122.458944,37.805426],[-122.458903,37.805429],[-122.458862,37.805433],[-122.458788,37.805437],[-122.458736,37.80544],[-122.458683,37.805444],[-122.458631,37.80545],[-122.458579,37.805455],[-122.458527,37.805462],[-122.458475,37.805469],[-122.458423,37.805477],[-122.458371,37.805486],[-122.45832,37.805495],[-122.458269,37.805505],[-122.458218,37.805516],[-122.458167,37.805528],[-122.458117,37.80554],[-122.458067,37.805553],[-122.457989,37.805574],[-122.457937,37.805594],[-122.457883,37.805614],[-122.45783,37.805633],[-122.457775,37.805651],[-122.457721,37.805668],[-122.457666,37.805684],[-122.457611,37.8057],[-122.457555,37.805715],[-122.457499,37.805729],[-122.457443,37.805743],[-122.457387,37.805755],[-122.45733,37.805767],[-122.457273,37.805778],[-122.457187,37.805794],[-122.457078,37.805804],[-122.45697,37.805815],[-122.456863,37.805828],[-122.456755,37.805843],[-122.456648,37.805859],[-122.456541,37.805877],[-122.456435,37.805896],[-122.456329,37.805916],[-122.456224,37.805938],[-122.456119,37.805962],[-122.456014,37.805987],[-122.455911,37.806013],[-122.455807,37.806041],[-122.455705,37.80607],[-122.455565,37.806112],[-122.455307,37.806196],[-122.454483,37.806469],[-122.454354,37.806478],[-122.454308,37.806459],[-122.454294,37.806376],[-122.454078,37.806357],[-122.453816,37.806293],[-122.453296,37.806259],[-122.452782,37.80627],[-122.452439,37.806267],[-122.451654,37.806353],[-122.450906,37.806532],[-122.450459,37.806646],[-122.449912,37.806721],[-122.449819,37.806724],[-122.44972,37.806719],[-122.449631,37.806734],[-122.449554,37.806768],[-122.449479,37.8068],[-122.4494,37.806822],[-122.449304,37.806837],[-122.449171,37.806837],[-122.449108,37.806831],[-122.449049,37.80682],[-122.449012,37.806784],[-122.448891,37.806726],[-122.448806,37.806712],[-122.448728,37.806702],[-122.448566,37.806755],[-122.448402,37.806792],[-122.448357,37.806802],[-122.44832,37.806811],[-122.448293,37.80682],[-122.448269,37.806828],[-122.448245,37.806836],[-122.448213,37.806849],[-122.448188,37.806861],[-122.448157,37.806876],[-122.448133,37.806889],[-122.448111,37.806903],[-122.447983,37.806972]]]]},"properties":{"neighbourhood":"Presidio","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.418609,37.78891],[-122.421954,37.788488],[-122.422333,37.79035],[-122.422697,37.792133],[-122.423435,37.795722],[-122.410257,37.7974],[-122.409062,37.791429],[-122.408805,37.790184],[-122.408797,37.790161],[-122.408789,37.790145],[-122.408912,37.790132],[-122.409094,37.790105],[-122.411745,37.789802],[-122.418609,37.78891]]]]},"properties":{"neighbourhood":"Nob Hill","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.476014,37.748679],[-122.475881,37.746809],[-122.481842,37.746486],[-122.495451,37.745922],[-122.506604,37.745398],[-122.509404,37.745267],[-122.509397,37.745292],[-122.509354,37.745698],[-122.509336,37.745938],[-122.509426,37.746369],[-122.509461,37.746453],[-122.509476,37.746496],[-122.509491,37.746539],[-122.509505,37.746582],[-122.509518,37.746625],[-122.50953,37.746669],[-122.509541,37.746713],[-122.509551,37.746756],[-122.50956,37.7468],[-122.509568,37.746844],[-122.509575,37.746888],[-122.509581,37.746933],[-122.509587,37.746977],[-122.509591,37.747021],[-122.509594,37.747066],[-122.509596,37.74711],[-122.509598,37.747155],[-122.509772,37.747496],[-122.509783,37.747525],[-122.509789,37.747545],[-122.509795,37.747564],[-122.509801,37.747584],[-122.509806,37.747604],[-122.509811,37.747625],[-122.509816,37.747645],[-122.509819,37.747665],[-122.509823,37.747685],[-122.509826,37.747706],[-122.509829,37.747726],[-122.509831,37.747746],[-122.509832,37.747767],[-122.509834,37.747787],[-122.509834,37.747808],[-122.509835,37.747828],[-122.509835,37.747849],[-122.509834,37.747869],[-122.509833,37.74789],[-122.509832,37.74791],[-122.50983,37.747931],[-122.509827,37.747951],[-122.509825,37.747971],[-122.509778,37.748298],[-122.509718,37.748715],[-122.509712,37.748764],[-122.509709,37.748796],[-122.509707,37.748828],[-122.509705,37.74886],[-122.509704,37.748892],[-122.509704,37.748924],[-122.509704,37.748956],[-122.509705,37.748988],[-122.509707,37.74902],[-122.50971,37.749052],[-122.509713,37.749084],[-122.509729,37.749111],[-122.509729,37.749168],[-122.509736,37.749194],[-122.509743,37.749221],[-122.509751,37.749247],[-122.50976,37.749273],[-122.509769,37.749298],[-122.509779,37.749324],[-122.509789,37.74935],[-122.5098,37.749375],[-122.509811,37.7494],[-122.509823,37.749425],[-122.509836,37.74945],[-122.509849,37.749475],[-122.509862,37.7495],[-122.509876,37.749524],[-122.509891,37.749548],[-122.509906,37.749572],[-122.509922,37.749596],[-122.509938,37.749619],[-122.509955,37.749643],[-122.509972,37.749666],[-122.50999,37.749689],[-122.510008,37.749711],[-122.510075,37.749792],[-122.510113,37.74984],[-122.51015,37.749889],[-122.510186,37.749938],[-122.510221,37.749988],[-122.510255,37.750038],[-122.510288,37.750089],[-122.510319,37.75014],[-122.51035,37.750191],[-122.510379,37.750243],[-122.510407,37.750296],[-122.510435,37.750349],[-122.510451,37.750393],[-122.510464,37.75043],[-122.510476,37.750467],[-122.510487,37.750504],[-122.510497,37.750542],[-122.510506,37.750579],[-122.510515,37.750617],[-122.510523,37.750655],[-122.51053,37.750693],[-122.510536,37.750731],[-122.510541,37.750769],[-122.510546,37.750807],[-122.510549,37.750845],[-122.510552,37.750883],[-122.510554,37.750921],[-122.510555,37.75096],[-122.510556,37.750998],[-122.510555,37.751036],[-122.510554,37.751074],[-122.510551,37.751113],[-122.510548,37.751151],[-122.510544,37.751189],[-122.510539,37.751227],[-122.510534,37.751248],[-122.510529,37.751269],[-122.510523,37.751299],[-122.510518,37.751328],[-122.510515,37.751358],[-122.510513,37.751387],[-122.510512,37.751417],[-122.510513,37.751439],[-122.510514,37.751461],[-122.510516,37.751483],[-122.510518,37.751505],[-122.510523,37.751535],[-122.510527,37.751557],[-122.510532,37.751579],[-122.510538,37.7516],[-122.510544,37.751622],[-122.510554,37.751651],[-122.510565,37.751679],[-122.510577,37.751707],[-122.51059,37.751735],[-122.510601,37.751755],[-122.510612,37.751775],[-122.510629,37.751802],[-122.510646,37.751828],[-122.51067,37.751855],[-122.510687,37.751873],[-122.510698,37.75189],[-122.510706,37.751909],[-122.51071,37.751935],[-122.510724,37.751989],[-122.510731,37.752014],[-122.510738,37.752039],[-122.510744,37.752065],[-122.510826,37.752223],[-122.510879,37.75232],[-122.510893,37.752342],[-122.510905,37.752356],[-122.51092,37.752372],[-122.510938,37.752389],[-122.51096,37.752407],[-122.510985,37.752435],[-122.510997,37.752456],[-122.511004,37.752472],[-122.511011,37.752488],[-122.511018,37.752507],[-122.511024,37.752529],[-122.511029,37.752552],[-122.511031,37.752569],[-122.511032,37.752585],[-122.511033,37.752609],[-122.511031,37.752635],[-122.51103,37.752813],[-122.511028,37.752907],[-122.511023,37.753002],[-122.511017,37.753096],[-122.511008,37.753189],[-122.511045,37.753427],[-122.511071,37.753569],[-122.5111,37.753711],[-122.51111,37.753738],[-122.511122,37.753764],[-122.511135,37.75379],[-122.511168,37.753851],[-122.511191,37.753896],[-122.511214,37.753941],[-122.511235,37.753986],[-122.511255,37.754032],[-122.511275,37.754078],[-122.511287,37.75413],[-122.511275,37.754143],[-122.511263,37.75416],[-122.511252,37.754181],[-122.511248,37.754201],[-122.511247,37.75422],[-122.511251,37.754243],[-122.511259,37.754263],[-122.51127,37.754281],[-122.51129,37.754305],[-122.511301,37.754327],[-122.511304,37.75435],[-122.5113,37.754376],[-122.51129,37.754393],[-122.511271,37.754414],[-122.511246,37.754429],[-122.511205,37.754494],[-122.511174,37.754504],[-122.511189,37.754579],[-122.511196,37.754623],[-122.511172,37.754668],[-122.511187,37.754748],[-122.511164,37.754817],[-122.511168,37.754966],[-122.511187,37.754986],[-122.511182,37.755041],[-122.511153,37.755096],[-122.511141,37.755116],[-122.51113,37.7552],[-122.511137,37.755225],[-122.511152,37.755314],[-122.511173,37.755368],[-122.511186,37.755408],[-122.511212,37.755447],[-122.51122,37.755502],[-122.511246,37.755536],[-122.511247,37.755571],[-122.511273,37.755605],[-122.511268,37.755665],[-122.511303,37.755793],[-122.511291,37.755813],[-122.511298,37.755858],[-122.511331,37.755897],[-122.511344,37.755917],[-122.511351,37.755971],[-122.511359,37.756011],[-122.511372,37.75605],[-122.51138,37.75611],[-122.511388,37.756174],[-122.511415,37.756238],[-122.511442,37.756327],[-122.511451,37.756401],[-122.511445,37.756431],[-122.511466,37.756496],[-122.511475,37.7566],[-122.51149,37.756684],[-122.511511,37.756768],[-122.511506,37.756823],[-122.511508,37.756882],[-122.511541,37.756976],[-122.511511,37.756996],[-122.511537,37.757036],[-122.511551,37.75709],[-122.511552,37.757135],[-122.511535,37.7572],[-122.511545,37.757328],[-122.511565,37.757373],[-122.511548,37.757462],[-122.51157,37.757566],[-122.51159,37.757606],[-122.511636,37.757689],[-122.511626,37.757804],[-122.511646,37.757853],[-122.511694,37.75823],[-122.511744,37.758437],[-122.511847,37.759012],[-122.511858,37.759137],[-122.511865,37.759261],[-122.51187,37.759384],[-122.511867,37.759469],[-122.511887,37.759537],[-122.511894,37.759554],[-122.5119,37.75957],[-122.511907,37.759587],[-122.511913,37.759604],[-122.511918,37.759621],[-122.511924,37.759637],[-122.511928,37.759654],[-122.511933,37.759671],[-122.511937,37.759689],[-122.511941,37.759706],[-122.511944,37.759723],[-122.511947,37.75974],[-122.51195,37.759757],[-122.511952,37.759775],[-122.511954,37.759792],[-122.511955,37.759809],[-122.511957,37.759827],[-122.511957,37.759844],[-122.511958,37.759861],[-122.511958,37.759879],[-122.511957,37.759896],[-122.511956,37.759914],[-122.511955,37.759931],[-122.511954,37.759948],[-122.511904,37.760441],[-122.511896,37.760466],[-122.51189,37.760488],[-122.511884,37.760509],[-122.511879,37.760531],[-122.511874,37.760553],[-122.51187,37.760575],[-122.511866,37.760596],[-122.511863,37.760618],[-122.51186,37.76064],[-122.511857,37.760663],[-122.511856,37.760685],[-122.511854,37.760707],[-122.511853,37.760729],[-122.511853,37.760751],[-122.511853,37.760773],[-122.511853,37.760795],[-122.511854,37.760817],[-122.511856,37.760839],[-122.511858,37.760861],[-122.51186,37.760884],[-122.511863,37.760906],[-122.511867,37.760928],[-122.51187,37.760949],[-122.511875,37.760971],[-122.51188,37.760993],[-122.511885,37.761015],[-122.511891,37.761036],[-122.511897,37.761058],[-122.511904,37.761079],[-122.511911,37.761101],[-122.511919,37.761122],[-122.511927,37.761143],[-122.511936,37.761164],[-122.511945,37.761185],[-122.511954,37.761206],[-122.511965,37.761227],[-122.511975,37.761247],[-122.511986,37.761268],[-122.511997,37.761288],[-122.512026,37.761324],[-122.512065,37.761354],[-122.512085,37.76142],[-122.512126,37.761532],[-122.512146,37.761569],[-122.512203,37.761605],[-122.512204,37.761627],[-122.512287,37.761909],[-122.512329,37.762102],[-122.51236,37.762176],[-122.5124,37.76228],[-122.512413,37.762407],[-122.512472,37.762518],[-122.51242,37.762682],[-122.512395,37.762787],[-122.512326,37.763005],[-122.512318,37.763065],[-122.512275,37.763199],[-122.512347,37.763452],[-122.51237,37.763586],[-122.512457,37.763703],[-122.512503,37.763858],[-122.510197,37.764018],[-122.494901,37.764668],[-122.477711,37.765404],[-122.477206,37.765426],[-122.476014,37.748679]]]]},"properties":{"neighbourhood":"Outer Sunset","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.422213,37.772905],[-122.423269,37.772074],[-122.423302,37.772048],[-122.426329,37.769601],[-122.426761,37.769577],[-122.432081,37.769284],[-122.435964,37.769038],[-122.436094,37.769608],[-122.436599,37.770102],[-122.436887,37.770376],[-122.437287,37.772265],[-122.438251,37.776878],[-122.440491,37.776562],[-122.446457,37.775805],[-122.447164,37.779185],[-122.447642,37.781352],[-122.447519,37.782023],[-122.447378,37.782383],[-122.447124,37.783033],[-122.447439,37.784311],[-122.447676,37.78531],[-122.447333,37.785651],[-122.446648,37.786331],[-122.446811,37.787165],[-122.446825,37.787251],[-122.445745,37.787412],[-122.422333,37.79035],[-122.421954,37.788488],[-122.421008,37.783852],[-122.421637,37.78373],[-122.424298,37.783408],[-122.422213,37.772905]]]]},"properties":{"neighbourhood":"Western Addition","neighbourhood_group":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.454691,37.774696],[-122.453014,37.766373],[-122.456858,37.765808],[-122.458555,37.766226],[-122.459538,37.766209],[-122.467467,37.765854],[-122.477206,37.765426],[-122.477711,37.765404],[-122.494901,37.764668],[-122.510197,37.764018],[-122.512503,37.763858],[-122.512548,37.763933],[-122.512647,37.764118],[-122.512695,37.764147],[-122.512734,37.764183],[-122.512736,37.764288],[-122.512776,37.764362],[-122.512778,37.764421],[-122.512752,37.764519],[-122.512782,37.764585],[-122.512775,37.76466],[-122.512786,37.764734],[-122.512762,37.764869],[-122.512744,37.764922],[-122.512717,37.764967],[-122.512685,37.765161],[-122.51267,37.765311],[-122.512655,37.765453],[-122.512646,37.765475],[-122.512639,37.765542],[-122.512632,37.765632],[-122.512652,37.765684],[-122.512693,37.765802],[-122.512705,37.765899],[-122.512725,37.765951],[-122.5127,37.766071],[-122.512768,37.766137],[-122.512789,37.766218],[-122.512783,37.766338],[-122.512803,37.76639],[-122.512832,37.766441],[-122.512881,37.766515],[-122.512889,37.766783],[-122.512893,37.766962],[-122.512932,37.766999],[-122.51296,37.767006],[-122.513017,37.76702],[-122.513066,37.767079],[-122.513078,37.767198],[-122.513108,37.767242],[-122.513081,37.767302],[-122.513103,37.767399],[-122.513124,37.76751],[-122.513079,37.767556],[-122.513071,37.767608],[-122.513091,37.767652],[-122.513076,37.767794],[-122.513059,37.767854],[-122.513041,37.767892],[-122.513051,37.767936],[-122.513081,37.767981],[-122.513073,37.768048],[-122.513084,37.768801],[-122.513105,37.768883],[-122.513112,37.769136],[-122.513087,37.769233],[-122.513126,37.769292],[-122.513091,37.769397],[-122.513086,37.769554],[-122.513146,37.77003],[-122.513104,37.770232],[-122.513083,37.770501],[-122.513147,37.770761],[-122.513128,37.771214],[-122.505415,37.771628],[-122.488715,37.772357],[-122.479593,37.772789],[-122.477816,37.77287],[-122.46991,37.77323],[-122.465068,37.773423],[-122.454706,37.774766],[-122.454691,37.774696]]]]},"properties":{"neighbourhood":"Golden Gate Park","neighbourhood_group":null}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment