Skip to content

Instantly share code, notes, and snippets.

@johan
Forked from johan/README.md
Created November 6, 2011 22:37
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save johan/1343714 to your computer and use it in GitHub Desktop.
Save johan/1343714 to your computer and use it in GitHub Desktop.
Bay Area earthquake responses by zip code
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>USGS responses by zip to the 2011-11-05 3.2 earthquake near Piedmont, CA</title>
<script src="http://mbostock.github.com/d3/d3.js?2.5.0"></script>
<script src="http://mbostock.github.com/d3/d3.geo.js?2.5.0"></script>
<script src="http://mbostock.github.com/d3/d3.csv.js?2.5.0"></script>
<link href="http://mbostock.github.com/d3/talk/20111018/style.css" rel="stylesheet"/>
<link href="http://mbostock.github.com/d3/talk/20111018/colorbrewer/colorbrewer.css" rel="stylesheet"/>
<style type="text/css">
#ca-zipcodes path {
stroke: #fff;
stroke-width: .0125px;
}
</style>
</head>
<body>
<div id="body">
<div id="footer">
USGS Earthquake comments, 2011
<div class="hint">use the menu to change the color scale</div>
<div><select>
<optgroup label="Colors by Cynthia Brewer.">
<option value="YlGn">YlGn</option>
<option value="YlGnBu">YlGnBu</option>
<option value="GnBu">GnBu</option>
<option value="BuGn">BuGn</option>
<option value="PuBuGn">PuBuGn</option>
<option value="PuBu">PuBu</option>
<option value="BuPu">BuPu</option>
<option value="RdPu">RdPu</option>
<option value="PuRd">PuRd</option>
<option value="OrRd">OrRd</option>
<option value="YlOrRd" selected>YlOrRd</option>
<option value="YlOrBr">YlOrBr</option>
<option value="Purples">Purples</option>
<option value="Blues">Blues</option>
<option value="Greens">Greens</option>
<option value="Oranges">Oranges</option>
<option value="Reds">Reds</option>
<option value="Greys">Greys</option>
</optgroup>
</select></div>
</div>
</div>
<script src="y_pipes.js"></script>
<script src="index.js"></script>
</body>
</html>
var usgs_dir = 'http://earthquake.usgs.gov/earthquakes/dyfi/events/nc/'
, usgs_evt = '71676251' // 2011-11-05 3.2 quake near Piedmont, CA, USA
, usgs_csv = '/us/cdi_zip.txt'
, usgs_url = usgs_dir + usgs_evt + usgs_csv
;
var path = d3.geo.path()
.projection(d3.geo.albersUsa()
.scale(1400)
.translate([680, 360]));
var svg = d3.select("#body").append("svg:svg")
.attr("class", "YlOrRd")
.attr("width", 960)
.attr("height", 500)
.append('svg:g')
.attr("transform", "scale(45) translate(-210 -299)") // Berkeley
//.attr("transform", "scale(20) translate(-200 -292)") // Bay Area
;
var zipcodes = svg.append("svg:g")
.attr("id", "ca-zipcodes");
load_csv(usgs_url, show, { header_cb: parse_header, line_cb: parse_line });
function parse_header(name, n) {
return ({ '# Columns: ZIP/Location': 'zip'
, 'CDI': 'cdi'
, 'No. of responses': 'responses'
, 'Epicentral distance': 'dist'
, 'Latitude': 'lat'
, 'Longitude': 'lng'
, 'Suspect?': 'suspect'
, 'City': 'city'
, 'State': 'state'
})[name];
}
function parse_line(val, n) {
return ([ String // zip
, String // cdi
, Number // responses
, Number // dist
, Number // lat
, Number // lng
, Number // suspect
, String // city
, String // state
])[n](val);
}
function show(csv) {
function sum(arr) { return d3.sum(arr, function(d){ return d.responses; }); }
function padded_zip(d) { return pad(d.zip); }
var pad = d3.format("05d")
, data = d3.nest().key(padded_zip).rollup(sum).map(csv)
, max = d3.max(d3.values(data))
, quantize = d3.scale.linear().domain([0, max]).rangeRound([0, 8]);
window.data = data; // for ease of inspection
d3.json("zips-bay-area.json", function(json) {
zipcodes.selectAll("path")
.data(json.features)
.enter().append("svg:path")
.attr("class", function(d) {
return "q" + quantize(data[pad(d.id)] || 0) + "-9";
})
.attr("d", path)
.append("svg:title")
.text(function(d) {
var no = data[pad(d.id)] || 0, s = no === 1 ? '' : 's';
return d.properties.name +" "+ d.id +": "+ no +" response"+ s;
});
});
}
d3.select("select").on("change", function() {
d3.selectAll("svg").attr("class", this.value);
});
// Loads a csv file cross-domain from anywhere via Yahoo! Pipes
function load_csv(url, cb, opts) {
function format(raw) {
// Y| rows are listed as objects with col_1, ... col_n properties; arrayify
function rollup(row) {
for (var c = 1, col, arr = []; row.hasOwnProperty(col = 'col_'+ c); c++)
arr.push(row[col]);
return col_cb ? arr.map(col_cb) : arr;
}
function object(arr) {
function stow(val, idx) { data[headers[idx]] = val; }
var data = {};
arr.forEach(stow);
return data;
}
var col_cb = opts.header_cb
, headers = rollup(raw.value.items[0]);
col_cb = opts.line_cb;
return raw.value.items.slice(1).map(rollup).map(object);
}
var pipe = 'a1aa6137151bc86851b7b65373f95bce'
, nth = load_csv.nth = (load_csv.nth || 0) + 1
, name = 'cb' + nth.toString(36)
, skip = encodeURIComponent(opts.skip_lines || 0)
, head = encodeURIComponent(opts.hdr_line_no || 0)
, purl = 'http://pipes.yahoo.com/pipes/pipe.run?_id='+ pipe
+ '&_render=json&_callback=load_csv.' + name
+ '&u=' + encodeURIComponent(url) +'&x='+ skip +'&c='+ head
, load = document.createElement('script');
load_csv[name] = function(json) {
delete load_csv[name];
document.head.removeChild(load);
cb(format(json));
};
load.src = purl;
document.head.appendChild(load);
}
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection"
,"features":
[{"id":94601,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.223549,37.795840],[-122.222608,37.796154],[-122.222765,37.795213],[-122.222138,37.795213],[-122.222138,37.794899],[-122.220569,37.794272],[-122.220569,37.794115],[-122.220569,37.793331],[-122.220726,37.792704],[-122.219315,37.792390],[-122.219001,37.793331],[-122.218844,37.793174],[-122.218844,37.792860],[-122.215394,37.791449],[-122.215707,37.790978],[-122.215550,37.790978],[-122.215394,37.791135],[-122.215080,37.790978],[-122.214766,37.791292],[-122.212257,37.789880],[-122.211943,37.790037],[-122.211473,37.789567],[-122.211159,37.789724],[-122.209904,37.788312],[-122.210375,37.787998],[-122.207395,37.785332],[-122.207865,37.785018],[-122.204728,37.782038],[-122.204101,37.782509],[-122.202376,37.780940],[-122.202689,37.780784],[-122.202219,37.780470],[-122.202846,37.779999],[-122.202376,37.779686],[-122.201905,37.780156],[-122.201435,37.779686],[-122.201278,37.779999],[-122.199553,37.778431],[-122.198612,37.777176],[-122.194534,37.773569],[-122.197357,37.771687],[-122.200807,37.769177],[-122.203787,37.766982],[-122.205042,37.767609],[-122.208336,37.765413],[-122.209747,37.764315],[-122.208806,37.763531],[-122.209904,37.762433],[-122.213355,37.765256],[-122.214139,37.764472],[-122.215550,37.762276],[-122.214923,37.761492],[-122.218060,37.759610],[-122.223706,37.754434],[-122.224020,37.759453],[-122.225118,37.764315],[-122.227000,37.766668],[-122.230293,37.768864],[-122.236410,37.771687],[-122.234842,37.773412],[-122.235940,37.773883],[-122.236253,37.776706],[-122.236096,37.776706],[-122.236567,37.777490],[-122.236724,37.779058],[-122.236253,37.779058],[-122.236253,37.779529],[-122.235940,37.779843],[-122.237038,37.780784],[-122.237351,37.782195],[-122.238606,37.783136],[-122.238606,37.783607],[-122.238606,37.783764],[-122.235626,37.782038],[-122.234842,37.782666],[-122.235940,37.783293],[-122.232489,37.786587],[-122.232019,37.787214],[-122.231862,37.788155],[-122.231705,37.788626],[-122.230137,37.790194],[-122.229039,37.790821],[-122.228568,37.790351],[-122.226059,37.793331],[-122.226529,37.793488],[-122.225902,37.794742],[-122.223706,37.794899],[-122.223549,37.795840]]]}}
,{"id":94501,"type":"Feature","properties":{"name":"Alameda"},"geometry":{"type":"Polygon","coordinates":[[[-122.340239,37.800702],[-122.314674,37.794742],[-122.294755,37.792547],[-122.284246,37.793801],[-122.276248,37.792390],[-122.274679,37.791606],[-122.268406,37.787998],[-122.257897,37.784234],[-122.255545,37.786273],[-122.254760,37.786744],[-122.250526,37.786116],[-122.246134,37.783450],[-122.245036,37.780940],[-122.244880,37.779058],[-122.244880,37.777333],[-122.240645,37.774353],[-122.236410,37.771687],[-122.230293,37.768864],[-122.227000,37.766668],[-122.225118,37.764315],[-122.224020,37.759453],[-122.223706,37.754434],[-122.224647,37.753023],[-122.225902,37.749729],[-122.236253,37.748475],[-122.253349,37.749102],[-122.250683,37.753650],[-122.252722,37.754591],[-122.255858,37.755689],[-122.257113,37.756160],[-122.259466,37.752552],[-122.266837,37.755376],[-122.282208,37.760238],[-122.291775,37.763061],[-122.306675,37.766982],[-122.321575,37.771216],[-122.336631,37.795056],[-122.340239,37.800702]]]}}
,{"id":94560,"type":"Feature","properties":{"name":"Newark"},"geometry":{"type":"Polygon","coordinates":[[[-122.038478,37.563403],[-122.028753,37.554149],[-122.017304,37.539093],[-122.016049,37.537681],[-122.013697,37.535956],[-122.002404,37.529839],[-121.998640,37.527800],[-121.987818,37.522467],[-121.989700,37.520429],[-121.994719,37.513998],[-121.995346,37.511018],[-121.998013,37.503960],[-121.993308,37.499412],[-121.994249,37.499412],[-121.997072,37.500353],[-121.998483,37.499255],[-121.999267,37.498000],[-121.999895,37.496746],[-122.000365,37.494864],[-122.005071,37.495177],[-122.005071,37.494707],[-122.005384,37.494707],[-122.006325,37.494864],[-122.006953,37.494236],[-122.008051,37.494236],[-122.009933,37.493609],[-122.010246,37.493295],[-122.010717,37.492825],[-122.010717,37.492354],[-122.009776,37.488904],[-122.011972,37.485610],[-122.012913,37.483101],[-122.013854,37.481689],[-122.014324,37.481375],[-122.015265,37.481846],[-122.016520,37.483101],[-122.017931,37.483885],[-122.019814,37.484512],[-122.021539,37.484826],[-122.023107,37.484669],[-122.024832,37.483257],[-122.025303,37.482473],[-122.025303,37.480591],[-122.025930,37.479023],[-122.027028,37.478552],[-122.028126,37.478709],[-122.029694,37.480121],[-122.030792,37.481532],[-122.031106,37.485139],[-122.031577,37.486865],[-122.031420,37.488433],[-122.031106,37.489060],[-122.030949,37.490158],[-122.032047,37.490786],[-122.032674,37.490629],[-122.035341,37.494707],[-122.039262,37.495020],[-122.043340,37.495805],[-122.052593,37.499255],[-122.052436,37.500196],[-122.057769,37.501137],[-122.055573,37.507097],[-122.057298,37.511802],[-122.057612,37.511646],[-122.058239,37.515723],[-122.063258,37.515723],[-122.063101,37.514939],[-122.067179,37.513528],[-122.069061,37.517762],[-122.070159,37.517919],[-122.070630,37.517449],[-122.072512,37.516821],[-122.072982,37.518233],[-122.071885,37.519017],[-122.062631,37.521213],[-122.062788,37.522311],[-122.061219,37.522781],[-122.063101,37.524350],[-122.069061,37.524506],[-122.068905,37.525291],[-122.067493,37.530153],[-122.066395,37.529996],[-122.064356,37.529055],[-122.062788,37.528898],[-122.063415,37.529525],[-122.063886,37.530153],[-122.064513,37.534231],[-122.067336,37.540190],[-122.052436,37.551483],[-122.047261,37.554777],[-122.044594,37.556502],[-122.041771,37.559325],[-122.038478,37.563403]]]}}
,{"id":94587,"type":"Feature","properties":{"name":"Union City"},"geometry":{"type":"Polygon","coordinates":[[[-122.013854,37.631628],[-122.008364,37.628648],[-122.007737,37.628178],[-122.007423,37.627394],[-122.006639,37.627080],[-122.005384,37.627551],[-122.003502,37.627080],[-122.002091,37.627237],[-122.001463,37.628021],[-121.999895,37.628335],[-121.999267,37.628805],[-121.999111,37.628962],[-121.999267,37.629746],[-121.998797,37.630531],[-121.996601,37.631472],[-121.995817,37.631472],[-121.994405,37.631158],[-121.993464,37.630687],[-121.991739,37.630374],[-121.991425,37.630531],[-121.991425,37.631472],[-121.990641,37.633040],[-121.990014,37.633824],[-121.986877,37.634138],[-121.984681,37.634765],[-121.983113,37.634608],[-121.981231,37.635863],[-121.960842,37.635706],[-121.960998,37.628805],[-121.955979,37.628648],[-121.955979,37.632413],[-121.950804,37.631942],[-121.950804,37.628492],[-121.949863,37.628962],[-121.949235,37.627707],[-121.948451,37.626923],[-121.947353,37.627864],[-121.946883,37.626766],[-121.946099,37.625668],[-121.945001,37.626139],[-121.944373,37.624100],[-121.944216,37.622218],[-121.945001,37.621904],[-121.945001,37.620806],[-121.943589,37.620806],[-121.943746,37.619552],[-121.943432,37.618454],[-121.944060,37.617670],[-121.945001,37.617042],[-121.945158,37.616572],[-121.944216,37.615003],[-121.943589,37.614690],[-121.942178,37.614846],[-121.941080,37.613905],[-121.940923,37.613592],[-121.941236,37.612023],[-121.941550,37.611710],[-121.941393,37.611239],[-121.942334,37.611239],[-121.942334,37.611082],[-121.942334,37.610455],[-121.942491,37.610298],[-121.943903,37.610141],[-121.945314,37.609357],[-121.945471,37.609043],[-121.945158,37.608573],[-121.945471,37.607632],[-121.945471,37.606691],[-121.946569,37.605593],[-121.950490,37.605750],[-121.951588,37.597594],[-121.952215,37.596967],[-121.953000,37.595712],[-121.954725,37.593987],[-121.956921,37.591634],[-121.957548,37.590223],[-121.967586,37.596653],[-121.981701,37.604652],[-121.988445,37.599947],[-121.988759,37.599006],[-121.992994,37.596026],[-122.001306,37.589595],[-122.005855,37.586458],[-122.006639,37.582224],[-122.008051,37.579714],[-122.009462,37.580185],[-122.009933,37.580812],[-122.010560,37.581439],[-122.013383,37.580969],[-122.015422,37.577989],[-122.018245,37.574382],[-122.021225,37.575636],[-122.023891,37.577048],[-122.025303,37.578460],[-122.032047,37.585047],[-122.033459,37.586145],[-122.034557,37.586615],[-122.038007,37.587713],[-122.040830,37.588027],[-122.042242,37.588027],[-122.044908,37.587399],[-122.046476,37.586772],[-122.048515,37.585674],[-122.050397,37.583478],[-122.056671,37.592418],[-122.060278,37.591791],[-122.064356,37.586772],[-122.062474,37.585674],[-122.062945,37.584890],[-122.062160,37.582851],[-122.060278,37.574068],[-122.062631,37.571402],[-122.066709,37.566540],[-122.067807,37.565442],[-122.068905,37.564344],[-122.069689,37.563717],[-122.070944,37.563089],[-122.072512,37.562775],[-122.079413,37.561521],[-122.080981,37.561364],[-122.089608,37.562148],[-122.089451,37.562148],[-122.089137,37.564344],[-122.088666,37.564344],[-122.088039,37.564658],[-122.086000,37.566540],[-122.085530,37.568265],[-122.085373,37.568265],[-122.088039,37.573597],[-122.082863,37.575166],[-122.083020,37.575793],[-122.088196,37.574539],[-122.088196,37.578773],[-122.088823,37.578930],[-122.089764,37.578773],[-122.095724,37.579871],[-122.096038,37.582067],[-122.096509,37.582537],[-122.096509,37.582851],[-122.096038,37.583322],[-122.094940,37.583478],[-122.091019,37.584890],[-122.090862,37.590066],[-122.091490,37.590066],[-122.091490,37.591007],[-122.091960,37.592105],[-122.091960,37.593359],[-122.092431,37.593673],[-122.091490,37.594771],[-122.091490,37.599476],[-122.091960,37.599947],[-122.091803,37.601201],[-122.088980,37.606691],[-122.088353,37.607475],[-122.086784,37.608573],[-122.085530,37.609357],[-122.081138,37.611082],[-122.079727,37.611867],[-122.078942,37.612808],[-122.078158,37.613435],[-122.071414,37.613278],[-122.073923,37.616729],[-122.073453,37.617199],[-122.073767,37.617513],[-122.069846,37.617513],[-122.069689,37.616572],[-122.064984,37.616729],[-122.064513,37.616572],[-122.063886,37.616101],[-122.065611,37.614690],[-122.066395,37.613278],[-122.068591,37.605750],[-122.066395,37.605279],[-122.065768,37.604966],[-122.063258,37.604652],[-122.059337,37.603868],[-122.058710,37.606063],[-122.037850,37.606063],[-122.034870,37.605907],[-122.033929,37.605750],[-122.030949,37.605907],[-122.034400,37.608887],[-122.023264,37.609043],[-122.028126,37.613278],[-122.023891,37.615944],[-122.027342,37.618454],[-122.027185,37.618768],[-122.027812,37.619238],[-122.028126,37.619081],[-122.029694,37.620493],[-122.027812,37.622061],[-122.027969,37.622218],[-122.026558,37.623002],[-122.025617,37.623943],[-122.014010,37.631628],[-122.013854,37.631628]]]}}
,{"id":94580,"type":"Feature","properties":{"name":"San Lorenzo"},"geometry":{"type":"Polygon","coordinates":[[[-122.130072,37.690914],[-122.127877,37.690914],[-122.129759,37.692483],[-122.129759,37.692639],[-122.129445,37.692639],[-122.129445,37.697501],[-122.128661,37.697972],[-122.128190,37.698286],[-122.124740,37.695933],[-122.124897,37.698129],[-122.124740,37.698286],[-122.121132,37.698756],[-122.121132,37.698442],[-122.118937,37.698286],[-122.118937,37.698442],[-122.118937,37.695933],[-122.115486,37.695933],[-122.113918,37.694992],[-122.114231,37.694678],[-122.114231,37.693110],[-122.113447,37.693110],[-122.113290,37.692326],[-122.111879,37.692326],[-122.111565,37.692012],[-122.111565,37.691071],[-122.111722,37.690914],[-122.111879,37.688718],[-122.114231,37.688875],[-122.114231,37.688561],[-122.114702,37.688718],[-122.108428,37.684484],[-122.110467,37.684484],[-122.111722,37.685582],[-122.113447,37.686366],[-122.116270,37.685425],[-122.117682,37.686052],[-122.119407,37.685738],[-122.121289,37.685738],[-122.119721,37.684484],[-122.119407,37.684797],[-122.116741,37.684797],[-122.116741,37.685111],[-122.116741,37.684327],[-122.119407,37.684013],[-122.119721,37.683699],[-122.114075,37.678681],[-122.114388,37.678367],[-122.114075,37.678053],[-122.115329,37.677112],[-122.115957,37.677112],[-122.123328,37.674289],[-122.121603,37.671466],[-122.121760,37.671466],[-122.120662,37.669584],[-122.123642,37.668643],[-122.123485,37.668172],[-122.128033,37.667859],[-122.128033,37.666604],[-122.126308,37.664251],[-122.128818,37.662997],[-122.130543,37.663310],[-122.131798,37.661271],[-122.132268,37.661271],[-122.137287,37.658919],[-122.138385,37.658605],[-122.138385,37.658291],[-122.138071,37.657664],[-122.138228,37.657507],[-122.141835,37.661428],[-122.144502,37.661585],[-122.147011,37.664408],[-122.160813,37.664408],[-122.162695,37.667231],[-122.161754,37.667702],[-122.157990,37.669741],[-122.157833,37.669427],[-122.154383,37.671466],[-122.155637,37.673818],[-122.155324,37.674289],[-122.154539,37.674916],[-122.154696,37.675230],[-122.144502,37.679465],[-122.144031,37.681504],[-122.141992,37.682602],[-122.141051,37.683699],[-122.140267,37.684327],[-122.138385,37.684797],[-122.136346,37.684484],[-122.134150,37.684327],[-122.133523,37.684484],[-122.133052,37.684954],[-122.131484,37.685111],[-122.129916,37.684484],[-122.128974,37.684327],[-122.132425,37.686679],[-122.130072,37.686679],[-122.130072,37.690914]]]}}
,{"id":94514,"type":"Feature","properties":{"name":"Byron"},"geometry":{"type":"Polygon","coordinates":[[[-121.556977,37.799134],[-121.556977,37.798820],[-121.556977,37.771373],[-121.557291,37.771373],[-121.558389,37.770589],[-121.560742,37.772314],[-121.561055,37.772942],[-121.564506,37.774667],[-121.564663,37.775608],[-121.564976,37.775922],[-121.566388,37.775922],[-121.567486,37.776235],[-121.569054,37.776392],[-121.572818,37.776549],[-121.573603,37.776706],[-121.574700,37.777333],[-121.576896,37.777804],[-121.577837,37.778274],[-121.577994,37.776235],[-121.578465,37.775608],[-121.582072,37.772471],[-121.584268,37.770903],[-121.585052,37.770119],[-121.585209,37.769334],[-121.586150,37.768707],[-121.587405,37.768550],[-121.587718,37.768236],[-121.588502,37.768080],[-121.589130,37.767609],[-121.588816,37.765256],[-121.592110,37.765100],[-121.596188,37.765727],[-121.596815,37.766197],[-121.597599,37.767609],[-121.599638,37.769177],[-121.601363,37.771373],[-121.601363,37.772157],[-121.600736,37.773098],[-121.601206,37.773569],[-121.601206,37.774040],[-121.601520,37.774510],[-121.602304,37.774510],[-121.602775,37.774981],[-121.602932,37.775451],[-121.603402,37.775608],[-121.603873,37.776235],[-121.604814,37.776863],[-121.605441,37.777961],[-121.605912,37.778431],[-121.606069,37.778902],[-121.606539,37.779215],[-121.606853,37.779843],[-121.608107,37.780156],[-121.609048,37.780784],[-121.610460,37.781882],[-121.610931,37.782038],[-121.611401,37.782038],[-121.615949,37.781254],[-121.616420,37.780940],[-121.616891,37.780940],[-121.617518,37.781254],[-121.618929,37.782509],[-121.618302,37.782979],[-121.618302,37.783607],[-121.619870,37.784548],[-121.620184,37.784391],[-121.620498,37.784548],[-121.620655,37.784391],[-121.620968,37.783450],[-121.621282,37.783607],[-121.622066,37.784548],[-121.622380,37.785489],[-121.622066,37.786587],[-121.621282,37.787685],[-121.620968,37.788783],[-121.621282,37.789410],[-121.622694,37.791292],[-121.624733,37.792390],[-121.625517,37.793645],[-121.625517,37.795840],[-121.625360,37.796938],[-121.623791,37.798507],[-121.623948,37.798663],[-121.623321,37.799448],[-121.624105,37.799134],[-121.666295,37.790351],[-121.670373,37.789410],[-121.697193,37.782666],[-121.694683,37.790821],[-121.693899,37.791919],[-121.693115,37.792390],[-121.692331,37.792704],[-121.689821,37.792860],[-121.688723,37.793174],[-121.687782,37.793801],[-121.686371,37.795683],[-121.685116,37.796468],[-121.678529,37.797566],[-121.677117,37.798036],[-121.676333,37.798820],[-121.675863,37.799605],[-121.675706,37.800232],[-121.675549,37.802114],[-121.675078,37.803369],[-121.672726,37.806035],[-121.671941,37.806662],[-121.668491,37.808701],[-121.666452,37.810740],[-121.664413,37.811681],[-121.663315,37.812465],[-121.662688,37.813093],[-121.661904,37.815132],[-121.660963,37.816386],[-121.659708,37.817327],[-121.656728,37.818582],[-121.655944,37.819366],[-121.655316,37.820151],[-121.655003,37.821562],[-121.655316,37.829091],[-121.654219,37.833325],[-121.653591,37.834423],[-121.652807,37.835207],[-121.649043,37.836776],[-121.648259,37.837403],[-121.647474,37.838344],[-121.647004,37.839442],[-121.646690,37.848696],[-121.646847,37.849793],[-121.647631,37.851048],[-121.652180,37.855753],[-121.653591,37.856851],[-121.663786,37.862498],[-121.669746,37.866732],[-121.676647,37.870496],[-121.677901,37.871281],[-121.679470,37.872849],[-121.688723,37.883044],[-121.677588,37.882887],[-121.678215,37.881005],[-121.674451,37.880848],[-121.673980,37.881005],[-121.673039,37.881475],[-121.670687,37.881475],[-121.670687,37.881789],[-121.671314,37.881946],[-121.671157,37.886651],[-121.669275,37.886337],[-121.668962,37.885710],[-121.668648,37.885553],[-121.660022,37.885553],[-121.659865,37.885867],[-121.659865,37.889945],[-121.658924,37.889631],[-121.658453,37.889160],[-121.658296,37.889160],[-121.651866,37.882103],[-121.651239,37.882416],[-121.650925,37.889160],[-121.650298,37.896532],[-121.641358,37.896532],[-121.641358,37.889160],[-121.632261,37.889317],[-121.628810,37.889474],[-121.613911,37.889317],[-121.613911,37.885553],[-121.609362,37.885553],[-121.609362,37.878338],[-121.613754,37.878338],[-121.613597,37.847284],[-121.612499,37.846186],[-121.612813,37.845872],[-121.614224,37.845559],[-121.618773,37.845559],[-121.609990,37.835835],[-121.607794,37.834266],[-121.607323,37.833168],[-121.607010,37.831286],[-121.606225,37.830188],[-121.604500,37.829247],[-121.602304,37.827208],[-121.600109,37.825640],[-121.596815,37.823601],[-121.596658,37.823758],[-121.596031,37.824228],[-121.595403,37.824228],[-121.595090,37.824699],[-121.594149,37.825954],[-121.593364,37.827836],[-121.592894,37.827208],[-121.593051,37.826267],[-121.592737,37.825640],[-121.587561,37.821719],[-121.586934,37.821248],[-121.585836,37.820935],[-121.583954,37.820778],[-121.581445,37.821719],[-121.580660,37.822190],[-121.577680,37.824856],[-121.577367,37.816073],[-121.576426,37.816700],[-121.567486,37.816700],[-121.567486,37.816543],[-121.562310,37.818582],[-121.561683,37.818896],[-121.559173,37.818896],[-121.579406,37.812779],[-121.559173,37.800232],[-121.559016,37.800389],[-121.556977,37.799134]]]}}
,{"id":94703,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.281580,37.880691],[-122.280482,37.881162],[-122.281267,37.881946],[-122.275620,37.884769],[-122.275620,37.884612],[-122.275150,37.884612],[-122.274993,37.883514],[-122.274366,37.883514],[-122.274366,37.883200],[-122.275463,37.883044],[-122.275307,37.881318],[-122.274209,37.881318],[-122.273268,37.873320],[-122.272954,37.870653],[-122.272327,37.865164],[-122.272797,37.865164],[-122.272797,37.864536],[-122.272797,37.864536],[-122.272797,37.863439],[-122.272327,37.863439],[-122.272327,37.863282],[-122.272170,37.863282],[-122.271699,37.859831],[-122.267151,37.860302],[-122.267151,37.859674],[-122.266994,37.859204],[-122.266053,37.851989],[-122.268876,37.851676],[-122.268406,37.848696],[-122.269660,37.848539],[-122.269660,37.848068],[-122.269190,37.847284],[-122.271072,37.846970],[-122.271072,37.846657],[-122.271229,37.846500],[-122.272797,37.846500],[-122.275463,37.846029],[-122.275620,37.847284],[-122.276718,37.847127],[-122.276718,37.847755],[-122.277816,37.847598],[-122.277816,37.847911],[-122.277659,37.847911],[-122.278287,37.850421],[-122.278443,37.850421],[-122.278443,37.850578],[-122.278287,37.850578],[-122.279384,37.854969],[-122.279541,37.854969],[-122.280953,37.861400],[-122.280796,37.861400],[-122.280953,37.862027],[-122.281267,37.864066],[-122.281423,37.864066],[-122.281580,37.865791],[-122.280482,37.865948],[-122.280639,37.867673],[-122.281737,37.867360],[-122.283149,37.879907],[-122.281580,37.880691]]]}}
,{"id":95669,"type":"Feature","properties":{"name":"Plymouth"},"geometry":{"type":"Polygon","coordinates":[[[-120.943575,38.527501],[-120.942477,38.528128],[-120.941222,38.528599],[-120.939967,38.528442],[-120.939026,38.527815],[-120.938242,38.527187],[-120.937458,38.525305],[-120.937458,38.524835],[-120.937771,38.523423],[-120.937144,38.522796],[-120.936360,38.520914],[-120.936360,38.520600],[-120.936674,38.520129],[-120.936517,38.519502],[-120.935576,38.519032],[-120.934164,38.518561],[-120.931655,38.518561],[-120.930557,38.518247],[-120.929459,38.517463],[-120.928361,38.516208],[-120.927577,38.515267],[-120.926950,38.514954],[-120.925695,38.515110],[-120.924911,38.515581],[-120.924597,38.516052],[-120.923813,38.516208],[-120.923656,38.516993],[-120.923656,38.517934],[-120.923185,38.518875],[-120.922401,38.519345],[-120.919578,38.519659],[-120.916912,38.520443],[-120.915500,38.520600],[-120.911893,38.520443],[-120.910795,38.520600],[-120.909540,38.522325],[-120.909383,38.523109],[-120.908756,38.523894],[-120.908129,38.524050],[-120.906090,38.524050],[-120.905462,38.524364],[-120.905149,38.524835],[-120.904835,38.525932],[-120.903580,38.528599],[-120.903423,38.529853],[-120.902796,38.530951],[-120.902326,38.531265],[-120.901385,38.531108],[-120.899659,38.530638],[-120.894797,38.528128],[-120.893856,38.528285],[-120.893072,38.528912],[-120.892131,38.528756],[-120.891033,38.528128],[-120.890249,38.527344],[-120.889935,38.526560],[-120.889935,38.525305],[-120.889621,38.524835],[-120.887739,38.524521],[-120.886328,38.524678],[-120.885073,38.525148],[-120.884289,38.525776],[-120.883348,38.526089],[-120.881466,38.528285],[-120.880682,38.529540],[-120.880682,38.531422],[-120.881779,38.532990],[-120.883818,38.535186],[-120.883818,38.535813],[-120.883662,38.536598],[-120.882564,38.537539],[-120.878956,38.539107],[-120.878172,38.539578],[-120.877702,38.540048],[-120.877388,38.541617],[-120.876917,38.542558],[-120.876290,38.543342],[-120.875976,38.543342],[-120.875035,38.543342],[-120.874251,38.543028],[-120.873624,38.542401],[-120.873310,38.541773],[-120.873310,38.540519],[-120.873937,38.539107],[-120.873781,38.538637],[-120.873624,38.538323],[-120.870957,38.536284],[-120.870016,38.535970],[-120.868919,38.535813],[-120.865154,38.535343],[-120.863586,38.535343],[-120.863115,38.535657],[-120.862959,38.535970],[-120.862802,38.538009],[-120.863115,38.540205],[-120.862488,38.543185],[-120.862331,38.543342],[-120.861861,38.543499],[-120.860920,38.543812],[-120.858410,38.542714],[-120.856842,38.542558],[-120.856214,38.543028],[-120.855744,38.543655],[-120.855430,38.544440],[-120.855587,38.544910],[-120.856528,38.546322],[-120.856528,38.547420],[-120.856058,38.548674],[-120.855117,38.549302],[-120.853391,38.550243],[-120.852450,38.550556],[-120.850411,38.550556],[-120.849313,38.550713],[-120.848529,38.552282],[-120.847275,38.553850],[-120.845706,38.554164],[-120.843197,38.555575],[-120.841471,38.556046],[-120.840530,38.555889],[-120.838178,38.554477],[-120.837864,38.553850],[-120.837394,38.551968],[-120.836609,38.551497],[-120.835982,38.551497],[-120.835198,38.551811],[-120.834570,38.552282],[-120.834257,38.552909],[-120.833943,38.554948],[-120.832845,38.555889],[-120.831904,38.556203],[-120.830806,38.556360],[-120.829552,38.556360],[-120.826728,38.555889],[-120.825474,38.555889],[-120.824533,38.556360],[-120.824062,38.557144],[-120.824062,38.557771],[-120.824062,38.558869],[-120.823749,38.559496],[-120.822337,38.559653],[-120.820925,38.559496],[-120.820925,38.559339],[-120.819357,38.558398],[-120.818416,38.558085],[-120.817161,38.558085],[-120.816691,38.558242],[-120.816063,38.558712],[-120.815593,38.560751],[-120.815436,38.561222],[-120.814809,38.561849],[-120.813554,38.562163],[-120.812927,38.562163],[-120.810417,38.561849],[-120.809947,38.561222],[-120.810103,38.560751],[-120.810417,38.560751],[-120.811515,38.560751],[-120.812613,38.559653],[-120.812456,38.559339],[-120.811515,38.558712],[-120.810417,38.557771],[-120.807123,38.557928],[-120.805084,38.558242],[-120.804614,38.558712],[-120.804771,38.559026],[-120.805084,38.559339],[-120.805084,38.559653],[-120.804614,38.559810],[-120.803202,38.559339],[-120.801791,38.559026],[-120.801320,38.558712],[-120.800850,38.557771],[-120.800850,38.556360],[-120.800536,38.556046],[-120.799438,38.556203],[-120.798184,38.555889],[-120.797713,38.556046],[-120.797399,38.557144],[-120.797086,38.557301],[-120.796301,38.557614],[-120.794106,38.557614],[-120.793635,38.557457],[-120.793165,38.556987],[-120.793165,38.556516],[-120.793321,38.555418],[-120.793008,38.554948],[-120.792380,38.554634],[-120.790498,38.554634],[-120.788459,38.554164],[-120.787362,38.553380],[-120.785636,38.551341],[-120.784538,38.551027],[-120.783597,38.550870],[-120.782656,38.551184],[-120.781872,38.551968],[-120.781402,38.552752],[-120.780147,38.553380],[-120.779363,38.554164],[-120.779049,38.554321],[-120.778578,38.554477],[-120.775755,38.553850],[-120.774187,38.554007],[-120.772462,38.553223],[-120.770423,38.553223],[-120.769482,38.552752],[-120.769011,38.552595],[-120.768384,38.552752],[-120.767443,38.553536],[-120.766972,38.553693],[-120.766502,38.553693],[-120.764933,38.553380],[-120.763992,38.553380],[-120.763051,38.553693],[-120.762267,38.554321],[-120.761483,38.554791],[-120.759914,38.554948],[-120.759444,38.554791],[-120.758032,38.553850],[-120.755680,38.551654],[-120.754739,38.551184],[-120.751759,38.551497],[-120.750661,38.552909],[-120.749563,38.553223],[-120.748622,38.553380],[-120.746897,38.552909],[-120.746583,38.552595],[-120.746740,38.552125],[-120.748622,38.550870],[-120.748465,38.549772],[-120.747838,38.549459],[-120.747210,38.548518],[-120.747681,38.547733],[-120.748151,38.547890],[-120.748936,38.547576],[-120.751445,38.547890],[-120.752857,38.546949],[-120.754425,38.546635],[-120.761483,38.546949],[-120.761483,38.544596],[-120.752386,38.544440],[-120.752229,38.543028],[-120.746897,38.542871],[-120.745799,38.540989],[-120.747524,38.538950],[-120.747681,38.535813],[-120.748151,38.534716],[-120.748936,38.533931],[-120.750190,38.533147],[-120.751759,38.532833],[-120.754582,38.532833],[-120.757091,38.533618],[-120.758032,38.533775],[-120.761326,38.533304],[-120.763522,38.533304],[-120.765718,38.532990],[-120.765561,38.532677],[-120.765247,38.532363],[-120.763365,38.531265],[-120.762738,38.529069],[-120.762738,38.528128],[-120.761953,38.527815],[-120.761326,38.527658],[-120.761953,38.526246],[-120.762110,38.525305],[-120.762424,38.523580],[-120.763679,38.523266],[-120.764777,38.522796],[-120.766815,38.522482],[-120.767286,38.522168],[-120.768698,38.522325],[-120.769795,38.521227],[-120.771677,38.520600],[-120.773716,38.518404],[-120.776226,38.517620],[-120.777167,38.516365],[-120.778578,38.515581],[-120.780461,38.514954],[-120.781872,38.515110],[-120.783441,38.514954],[-120.784695,38.514326],[-120.785636,38.513385],[-120.787048,38.512131],[-120.787832,38.510562],[-120.788930,38.509778],[-120.790655,38.508994],[-120.791283,38.508523],[-120.792067,38.506484],[-120.792694,38.505543],[-120.793478,38.503975],[-120.794419,38.503191],[-120.795047,38.502093],[-120.795204,38.501779],[-120.795204,38.501309],[-120.795517,38.500838],[-120.796772,38.500211],[-120.797086,38.499897],[-120.797713,38.499426],[-120.799595,38.498642],[-120.799909,38.498329],[-120.799909,38.497388],[-120.800066,38.497074],[-120.802418,38.495976],[-120.804143,38.494721],[-120.805241,38.493310],[-120.806339,38.493153],[-120.806810,38.492525],[-120.807594,38.492055],[-120.807908,38.491271],[-120.807908,38.490643],[-120.808064,38.490330],[-120.809633,38.489389],[-120.810888,38.489232],[-120.811985,38.488604],[-120.812927,38.488604],[-120.812770,38.482958],[-120.808378,38.484056],[-120.806026,38.486095],[-120.802732,38.487977],[-120.801948,38.488134],[-120.799909,38.488134],[-120.798027,38.489859],[-120.795517,38.490487],[-120.792851,38.491898],[-120.790812,38.492996],[-120.790655,38.492839],[-120.790655,38.492525],[-120.791910,38.491741],[-120.792851,38.490957],[-120.793478,38.490487],[-120.794576,38.490016],[-120.796301,38.489859],[-120.797242,38.489546],[-120.797870,38.488918],[-120.798184,38.487350],[-120.798811,38.486566],[-120.799438,38.486409],[-120.799909,38.486722],[-120.800379,38.486722],[-120.801791,38.485311],[-120.802889,38.484997],[-120.804300,38.484213],[-120.804771,38.483586],[-120.805712,38.482017],[-120.806182,38.480449],[-120.806339,38.477939],[-120.806182,38.477312],[-120.805555,38.476841],[-120.805241,38.475900],[-120.805398,38.475587],[-120.805869,38.474959],[-120.806653,38.474803],[-120.809947,38.474646],[-120.810888,38.474332],[-120.811044,38.473861],[-120.811044,38.472607],[-120.811515,38.471509],[-120.811515,38.469940],[-120.811985,38.469470],[-120.813240,38.469156],[-120.813711,38.468686],[-120.815436,38.468215],[-120.816377,38.469470],[-120.817789,38.470254],[-120.819043,38.470568],[-120.819984,38.470725],[-120.820455,38.470568],[-120.821082,38.470097],[-120.822023,38.470097],[-120.822494,38.469784],[-120.822337,38.468686],[-120.822337,38.468372],[-120.825474,38.465549],[-120.825631,38.464608],[-120.826258,38.464294],[-120.826572,38.463510],[-120.826885,38.463353],[-120.829552,38.461942],[-120.830806,38.461785],[-120.831434,38.461628],[-120.831591,38.460530],[-120.832688,38.459903],[-120.833473,38.458491],[-120.834570,38.457393],[-120.834884,38.457080],[-120.835982,38.456923],[-120.837394,38.456609],[-120.838648,38.456923],[-120.839589,38.456923],[-120.840217,38.455825],[-120.839903,38.454570],[-120.840844,38.453786],[-120.841315,38.452845],[-120.841315,38.451276],[-120.841942,38.450649],[-120.842099,38.450179],[-120.842413,38.449081],[-120.843354,38.446728],[-120.843354,38.446258],[-120.845236,38.445944],[-120.846334,38.447355],[-120.847118,38.447669],[-120.847431,38.448140],[-120.847745,38.448296],[-120.848372,38.448767],[-120.849000,38.449708],[-120.849470,38.450022],[-120.849784,38.449865],[-120.850411,38.449081],[-120.849941,38.448453],[-120.849941,38.447042],[-120.849470,38.446258],[-120.849784,38.445944],[-120.850725,38.445787],[-120.850725,38.446885],[-120.851980,38.448924],[-120.852921,38.450963],[-120.853078,38.451904],[-120.854176,38.453786],[-120.860920,38.453943],[-120.861233,38.454570],[-120.862018,38.454727],[-120.862488,38.455197],[-120.862488,38.455511],[-120.868448,38.454727],[-120.870173,38.454570],[-120.872683,38.453786],[-120.872996,38.451120],[-120.873153,38.450179],[-120.872526,38.446885],[-120.872683,38.445160],[-120.873310,38.443905],[-120.876447,38.439827],[-120.877231,38.438102],[-120.877388,38.437161],[-120.877388,38.435906],[-120.876290,38.425868],[-120.876290,38.424300],[-120.876917,38.422418],[-120.878172,38.420536],[-120.889151,38.408616],[-120.890563,38.406577],[-120.892601,38.406420],[-120.894954,38.406106],[-120.897464,38.406420],[-120.898248,38.405950],[-120.898875,38.405950],[-120.900287,38.406577],[-120.902326,38.406577],[-120.904678,38.406106],[-120.906090,38.405165],[-120.907344,38.404695],[-120.907972,38.404224],[-120.908442,38.404224],[-120.908129,38.405636],[-120.907501,38.407204],[-120.908913,38.407832],[-120.909697,38.409871],[-120.912050,38.410341],[-120.912520,38.408930],[-120.912207,38.408302],[-120.912207,38.407832],[-120.911422,38.405009],[-120.912363,38.402970],[-120.912520,38.401401],[-120.912207,38.400617],[-120.912520,38.400146],[-120.912520,38.399519],[-120.912207,38.398892],[-120.915343,38.396069],[-120.915971,38.395912],[-120.916284,38.395598],[-120.916284,38.394971],[-120.915971,38.394187],[-120.915500,38.392148],[-120.915657,38.390579],[-120.915030,38.389324],[-120.915030,38.387286],[-120.915186,38.386188],[-120.914716,38.385560],[-120.914245,38.384149],[-120.913775,38.383051],[-120.913932,38.381482],[-120.912834,38.379757],[-120.912834,38.379287],[-120.912991,38.378973],[-120.912677,38.378032],[-120.916598,38.375366],[-120.917069,38.375836],[-120.919107,38.376307],[-120.920362,38.375993],[-120.921617,38.376150],[-120.922401,38.376464],[-120.923185,38.376464],[-120.923499,38.376307],[-120.924126,38.374425],[-120.925852,38.371602],[-120.926008,38.370504],[-120.926793,38.370033],[-120.927263,38.370033],[-120.927263,38.371758],[-120.926950,38.371758],[-120.926636,38.383051],[-120.944672,38.383208],[-120.951417,38.383835],[-120.952044,38.380385],[-120.953769,38.380228],[-120.952985,38.376620],[-120.954083,38.373484],[-120.954083,38.373327],[-120.957847,38.374268],[-120.959572,38.368935],[-120.959572,38.368778],[-120.959886,38.368778],[-120.961611,38.369719],[-120.968983,38.374268],[-120.971022,38.375052],[-120.969924,38.376934],[-120.970081,38.378502],[-120.969924,38.379130],[-120.968355,38.380228],[-120.966003,38.380698],[-120.964434,38.381796],[-120.963336,38.382894],[-120.963336,38.383521],[-120.963650,38.384462],[-120.965532,38.385403],[-120.965846,38.385874],[-120.966003,38.386658],[-120.965689,38.390893],[-120.964591,38.393716],[-120.964434,38.395128],[-120.964121,38.395441],[-120.963650,38.395441],[-120.961925,38.394657],[-120.960827,38.394500],[-120.958004,38.395284],[-120.957847,38.395598],[-120.958004,38.398892],[-120.957690,38.399362],[-120.956749,38.399833],[-120.956279,38.400146],[-120.956122,38.401558],[-120.955024,38.405165],[-120.954867,38.406734],[-120.953926,38.410184],[-120.954240,38.411125],[-120.955181,38.412694],[-120.956279,38.414105],[-120.956436,38.414576],[-120.956436,38.415046],[-120.955651,38.416301],[-120.955651,38.417869],[-120.955181,38.419908],[-120.955338,38.422575],[-120.955181,38.425555],[-120.955181,38.431985],[-120.954553,38.446258],[-120.964121,38.448296],[-120.963807,38.454570],[-121.008663,38.454413],[-121.008663,38.458021],[-121.027327,38.458021],[-121.027327,38.489232],[-121.027641,38.500054],[-121.027484,38.503504],[-121.027484,38.508366],[-121.025602,38.508680],[-121.023093,38.508837],[-121.021838,38.509151],[-121.019329,38.508994],[-121.018544,38.509307],[-121.016976,38.510405],[-121.014780,38.511346],[-121.013212,38.513072],[-121.012271,38.512444],[-121.011643,38.512287],[-121.011330,38.512444],[-121.011016,38.512758],[-121.010702,38.513385],[-121.009448,38.514640],[-121.009761,38.516208],[-121.009604,38.517620],[-121.008820,38.518404],[-121.007409,38.519188],[-121.004899,38.519502],[-121.004272,38.519345],[-121.002703,38.519188],[-121.001292,38.518718],[-121.000037,38.518090],[-120.999410,38.517620],[-120.997371,38.514954],[-120.996116,38.514013],[-120.994861,38.513699],[-120.994234,38.513699],[-120.992352,38.514483],[-120.990784,38.515895],[-120.990313,38.516052],[-120.987176,38.516522],[-120.985137,38.516365],[-120.982471,38.515267],[-120.981059,38.515424],[-120.980118,38.515110],[-120.978079,38.515738],[-120.976511,38.515738],[-120.975413,38.515895],[-120.974629,38.515895],[-120.974158,38.516052],[-120.973061,38.516993],[-120.972276,38.518247],[-120.970237,38.520757],[-120.969767,38.521070],[-120.968355,38.521070],[-120.964278,38.520286],[-120.962866,38.520757],[-120.960827,38.521855],[-120.959259,38.522168],[-120.958474,38.522639],[-120.957847,38.522796],[-120.955494,38.522325],[-120.954083,38.520914],[-120.952985,38.520914],[-120.951887,38.521227],[-120.947809,38.522953],[-120.946711,38.523109],[-120.945770,38.523737],[-120.944516,38.525148],[-120.944045,38.526089],[-120.943888,38.526874],[-120.943575,38.527501]]]}}
,{"id":94549,"type":"Feature","properties":{"name":"Lafayette"},"geometry":{"type":"Polygon","coordinates":[[[-122.081452,37.897316],[-122.083020,37.897630],[-122.083020,37.897002],[-122.082236,37.896375],[-122.082393,37.895748],[-122.082550,37.894493],[-122.082079,37.894022],[-122.082079,37.892925],[-122.083648,37.892140],[-122.083648,37.891356],[-122.084118,37.891199],[-122.084589,37.891670],[-122.087098,37.890258],[-122.087412,37.888219],[-122.087882,37.887749],[-122.088039,37.887121],[-122.088353,37.886494],[-122.087882,37.886180],[-122.087412,37.886024],[-122.086628,37.886180],[-122.086471,37.885710],[-122.086157,37.885867],[-122.086000,37.885710],[-122.086471,37.885553],[-122.086314,37.885396],[-122.086314,37.885083],[-122.089294,37.885867],[-122.090862,37.886024],[-122.091176,37.886180],[-122.091803,37.885710],[-122.091333,37.885553],[-122.090549,37.884612],[-122.089451,37.883671],[-122.088980,37.882730],[-122.088980,37.882259],[-122.088039,37.881789],[-122.089764,37.881318],[-122.089451,37.875515],[-122.089294,37.875358],[-122.089294,37.871124],[-122.088980,37.871124],[-122.085530,37.867360],[-122.080040,37.860145],[-122.078942,37.856694],[-122.078472,37.854969],[-122.077060,37.854969],[-122.075335,37.853558],[-122.071257,37.851989],[-122.067964,37.849480],[-122.067493,37.849480],[-122.061690,37.845872],[-122.061533,37.843049],[-122.061533,37.838187],[-122.063101,37.837089],[-122.064827,37.837089],[-122.064827,37.837403],[-122.065140,37.837560],[-122.066709,37.837717],[-122.067964,37.838030],[-122.068748,37.838344],[-122.070316,37.839442],[-122.070630,37.839599],[-122.071100,37.839442],[-122.071885,37.838971],[-122.072982,37.837874],[-122.072982,37.843834],[-122.081922,37.843834],[-122.081922,37.848068],[-122.088510,37.848225],[-122.088666,37.847911],[-122.089608,37.848225],[-122.089921,37.848696],[-122.089921,37.849166],[-122.091019,37.850264],[-122.091960,37.851989],[-122.105448,37.852146],[-122.106703,37.851519],[-122.107174,37.851048],[-122.107958,37.849793],[-122.108115,37.847911],[-122.108272,37.847441],[-122.108742,37.847441],[-122.108272,37.848696],[-122.108272,37.849950],[-122.108899,37.849950],[-122.103096,37.857635],[-122.106389,37.857635],[-122.106546,37.862654],[-122.109997,37.864223],[-122.110154,37.865948],[-122.108742,37.866575],[-122.108585,37.867673],[-122.107330,37.867673],[-122.107487,37.868771],[-122.106860,37.870967],[-122.108272,37.871751],[-122.115957,37.874104],[-122.116270,37.873476],[-122.119407,37.873163],[-122.120505,37.872692],[-122.123956,37.872692],[-122.124269,37.873320],[-122.127092,37.872692],[-122.128504,37.873633],[-122.128033,37.874261],[-122.128347,37.874888],[-122.133680,37.875202],[-122.133680,37.875986],[-122.136032,37.876143],[-122.136503,37.872535],[-122.141992,37.872692],[-122.142149,37.870810],[-122.142463,37.870967],[-122.143561,37.870810],[-122.144188,37.870967],[-122.144815,37.871437],[-122.145286,37.872065],[-122.146070,37.873006],[-122.148266,37.873790],[-122.149207,37.873790],[-122.150932,37.874261],[-122.152657,37.874417],[-122.153128,37.874261],[-122.155324,37.873790],[-122.155167,37.881005],[-122.155324,37.881005],[-122.155794,37.881475],[-122.155324,37.881475],[-122.154853,37.882416],[-122.153755,37.882416],[-122.153128,37.882887],[-122.152971,37.883357],[-122.155010,37.883671],[-122.155794,37.882103],[-122.156108,37.881946],[-122.156265,37.882103],[-122.156735,37.881946],[-122.156578,37.881318],[-122.158147,37.881632],[-122.158304,37.881318],[-122.163636,37.881475],[-122.162068,37.883200],[-122.162695,37.883357],[-122.163479,37.883828],[-122.163479,37.883985],[-122.164420,37.884455],[-122.165518,37.884612],[-122.165361,37.885396],[-122.165361,37.886808],[-122.165675,37.889160],[-122.165989,37.889474],[-122.166930,37.889474],[-122.167087,37.890258],[-122.165675,37.892297],[-122.165361,37.892297],[-122.165989,37.892611],[-122.165361,37.892925],[-122.165361,37.893552],[-122.165989,37.895748],[-122.166146,37.898414],[-122.165518,37.899355],[-122.165675,37.899512],[-122.166302,37.899198],[-122.165518,37.903433],[-122.166146,37.904060],[-122.166146,37.904531],[-122.166459,37.905158],[-122.165518,37.905629],[-122.165832,37.906256],[-122.166146,37.909550],[-122.164264,37.909550],[-122.164420,37.909863],[-122.162538,37.910020],[-122.162538,37.910804],[-122.162852,37.911275],[-122.163009,37.911745],[-122.162852,37.912059],[-122.161911,37.912686],[-122.162381,37.913627],[-122.163009,37.913941],[-122.162695,37.914098],[-122.162538,37.914569],[-122.161911,37.914882],[-122.160343,37.914255],[-122.159402,37.914569],[-122.158304,37.914882],[-122.158304,37.915353],[-122.159558,37.916451],[-122.160029,37.917235],[-122.159715,37.917549],[-122.157990,37.917549],[-122.157990,37.917705],[-122.159245,37.917862],[-122.160186,37.917862],[-122.160656,37.918176],[-122.161127,37.918646],[-122.161284,37.919431],[-122.161911,37.920372],[-122.164577,37.921313],[-122.166302,37.923038],[-122.165205,37.923352],[-122.163323,37.923508],[-122.162695,37.924606],[-122.162695,37.925704],[-122.162381,37.925861],[-122.162381,37.924920],[-122.162225,37.924606],[-122.161127,37.923822],[-122.159558,37.923195],[-122.157519,37.923195],[-122.152814,37.923508],[-122.150618,37.924136],[-122.149677,37.924136],[-122.148266,37.923822],[-122.146541,37.922881],[-122.144659,37.921313],[-122.141208,37.919274],[-122.137287,37.918019],[-122.132425,37.917235],[-122.128818,37.917549],[-122.125681,37.918333],[-122.125367,37.919587],[-122.126465,37.923038],[-122.125367,37.923665],[-122.124740,37.923822],[-122.123485,37.923665],[-122.122544,37.923979],[-122.120976,37.923979],[-122.120976,37.923822],[-122.119721,37.924136],[-122.118152,37.924136],[-122.117525,37.927900],[-122.117996,37.929782],[-122.113447,37.931507],[-122.113290,37.932448],[-122.110781,37.934801],[-122.110938,37.934958],[-122.112820,37.934487],[-122.114231,37.934487],[-122.114388,37.934644],[-122.114075,37.935115],[-122.114075,37.935428],[-122.114388,37.935899],[-122.115957,37.937467],[-122.116114,37.938565],[-122.116427,37.939036],[-122.116114,37.939977],[-122.116427,37.940134],[-122.117211,37.940604],[-122.117839,37.941075],[-122.118466,37.940918],[-122.119250,37.941388],[-122.109526,37.945152],[-122.110781,37.945152],[-122.111252,37.944996],[-122.112036,37.945152],[-122.113604,37.946093],[-122.115173,37.946721],[-122.116270,37.946878],[-122.116584,37.946564],[-122.116741,37.946564],[-122.117211,37.947191],[-122.116741,37.951426],[-122.117839,37.951426],[-122.117839,37.952367],[-122.118937,37.952367],[-122.120348,37.953465],[-122.116114,37.953622],[-122.115957,37.955347],[-122.114545,37.955347],[-122.114231,37.954877],[-122.113290,37.954877],[-122.113134,37.955190],[-122.112663,37.955190],[-122.112663,37.955347],[-122.111565,37.955347],[-122.111565,37.956602],[-122.110938,37.957072],[-122.109213,37.957856],[-122.108115,37.956759],[-122.108115,37.958798],[-122.107644,37.959268],[-122.107330,37.958327],[-122.104821,37.958641],[-122.103096,37.955033],[-122.101684,37.955033],[-122.100586,37.952838],[-122.098861,37.951897],[-122.099488,37.951269],[-122.099802,37.951269],[-122.100586,37.950799],[-122.100743,37.950956],[-122.100900,37.950956],[-122.100743,37.950328],[-122.098861,37.948603],[-122.098547,37.948132],[-122.098547,37.947505],[-122.098234,37.947662],[-122.097606,37.947819],[-122.097450,37.947035],[-122.096665,37.947035],[-122.096822,37.947191],[-122.096352,37.947191],[-122.096352,37.946250],[-122.098547,37.946250],[-122.098547,37.945937],[-122.098391,37.942486],[-122.093058,37.942486],[-122.092431,37.940761],[-122.089608,37.940918],[-122.089608,37.939820],[-122.089451,37.937938],[-122.089608,37.936683],[-122.090078,37.935899],[-122.090705,37.935428],[-122.089608,37.933703],[-122.089764,37.932919],[-122.088510,37.932919],[-122.088353,37.931821],[-122.086784,37.931821],[-122.086471,37.927900],[-122.088823,37.927273],[-122.088666,37.926175],[-122.088039,37.926332],[-122.088039,37.925234],[-122.089451,37.924920],[-122.089451,37.921470],[-122.091019,37.920685],[-122.091176,37.921156],[-122.092431,37.920842],[-122.093215,37.922567],[-122.093842,37.922411],[-122.094783,37.921783],[-122.096038,37.921626],[-122.096352,37.921156],[-122.096509,37.920528],[-122.096195,37.920372],[-122.095567,37.920372],[-122.094783,37.919274],[-122.092587,37.920372],[-122.092274,37.919117],[-122.092274,37.918646],[-122.091803,37.917235],[-122.099959,37.917392],[-122.099645,37.914882],[-122.098704,37.913314],[-122.098391,37.912843],[-122.098547,37.911902],[-122.099018,37.910177],[-122.090392,37.910020],[-122.086628,37.910648],[-122.086784,37.910334],[-122.086314,37.909706],[-122.085687,37.909393],[-122.084745,37.908138],[-122.083648,37.907511],[-122.082863,37.907354],[-122.082236,37.907354],[-122.082236,37.906413],[-122.080981,37.906413],[-122.080981,37.906099],[-122.081138,37.905629],[-122.081922,37.904844],[-122.081922,37.904374],[-122.082236,37.904531],[-122.082393,37.903903],[-122.083961,37.904060],[-122.083961,37.903119],[-122.084118,37.903119],[-122.083648,37.902806],[-122.084589,37.901551],[-122.083804,37.900923],[-122.080981,37.899669],[-122.081452,37.898257],[-122.081452,37.897316]]]}}
,{"id":94595,"type":"Feature","properties":{"name":"Walnut Creek"},"geometry":{"type":"Polygon","coordinates":[[[-122.078942,37.856694],[-122.080040,37.860145],[-122.085530,37.867360],[-122.088980,37.871124],[-122.089294,37.871124],[-122.089294,37.875358],[-122.089451,37.875515],[-122.089764,37.881318],[-122.088039,37.881789],[-122.088980,37.882259],[-122.088980,37.882730],[-122.089451,37.883671],[-122.090549,37.884612],[-122.091333,37.885553],[-122.091803,37.885710],[-122.091176,37.886180],[-122.090862,37.886024],[-122.089294,37.885867],[-122.086314,37.885083],[-122.086314,37.885396],[-122.086471,37.885553],[-122.086000,37.885710],[-122.086157,37.885867],[-122.086471,37.885710],[-122.086628,37.886180],[-122.087412,37.886024],[-122.087882,37.886180],[-122.088353,37.886494],[-122.088039,37.887121],[-122.087882,37.887749],[-122.087412,37.888219],[-122.087098,37.890258],[-122.084589,37.891670],[-122.084118,37.891199],[-122.083648,37.891356],[-122.083648,37.892140],[-122.082079,37.892925],[-122.082079,37.894022],[-122.082550,37.894493],[-122.082393,37.895748],[-122.082236,37.896375],[-122.083020,37.897002],[-122.083020,37.897630],[-122.081452,37.897316],[-122.077060,37.896061],[-122.075178,37.895905],[-122.072982,37.896218],[-122.071728,37.896846],[-122.071571,37.896532],[-122.070630,37.896532],[-122.070002,37.895591],[-122.069061,37.894963],[-122.066081,37.893395],[-122.065454,37.893238],[-122.060122,37.890729],[-122.058553,37.889945],[-122.057612,37.889160],[-122.055416,37.886024],[-122.050868,37.881946],[-122.049143,37.879279],[-122.049770,37.878652],[-122.050241,37.879279],[-122.050868,37.880691],[-122.051652,37.881789],[-122.052750,37.881475],[-122.053221,37.881632],[-122.054318,37.881318],[-122.054632,37.880848],[-122.054318,37.880064],[-122.054946,37.880220],[-122.055103,37.880064],[-122.054475,37.878025],[-122.054946,37.877868],[-122.054789,37.877397],[-122.055259,37.877397],[-122.055259,37.876927],[-122.054789,37.876927],[-122.054789,37.876456],[-122.054632,37.876456],[-122.054005,37.875986],[-122.054005,37.875829],[-122.053691,37.875515],[-122.052750,37.875986],[-122.052280,37.876143],[-122.051809,37.874574],[-122.053377,37.873790],[-122.053534,37.873476],[-122.053848,37.873320],[-122.053691,37.873163],[-122.054475,37.873006],[-122.054632,37.873163],[-122.055573,37.873163],[-122.055259,37.872065],[-122.055103,37.872222],[-122.054946,37.871124],[-122.055259,37.871124],[-122.055103,37.870653],[-122.054789,37.870496],[-122.054632,37.869712],[-122.054475,37.869712],[-122.054475,37.868457],[-122.053691,37.868457],[-122.053691,37.866732],[-122.053064,37.865634],[-122.054005,37.864223],[-122.053848,37.863909],[-122.053221,37.863282],[-122.052593,37.849950],[-122.052593,37.849950],[-122.052280,37.842422],[-122.061533,37.843049],[-122.061690,37.845872],[-122.067493,37.849480],[-122.067964,37.849480],[-122.071257,37.851989],[-122.075335,37.853558],[-122.077060,37.854969],[-122.078472,37.854969],[-122.078942,37.856694]]]}}
,{"id":94506,"type":"Feature","properties":{"name":"Danville"},"geometry":{"type":"Polygon","coordinates":[[[-121.866737,37.764159],[-121.867208,37.762433],[-121.867835,37.759297],[-121.868149,37.756003],[-121.868619,37.755376],[-121.869874,37.754748],[-121.871129,37.752709],[-121.871286,37.752082],[-121.871599,37.749416],[-121.874893,37.749572],[-121.875834,37.749416],[-121.876461,37.748788],[-121.877559,37.747220],[-121.878187,37.746436],[-121.880539,37.745024],[-121.881637,37.743612],[-121.883049,37.742985],[-121.884147,37.742985],[-121.883206,37.743769],[-121.884617,37.749102],[-121.884617,37.750670],[-121.882264,37.754121],[-121.880853,37.757728],[-121.880539,37.759924],[-121.881323,37.760865],[-121.884774,37.762590],[-121.885244,37.763061],[-121.885872,37.763845],[-121.885872,37.764472],[-121.885715,37.767923],[-121.884931,37.769491],[-121.884303,37.769805],[-121.884303,37.771844],[-121.885558,37.772942],[-121.884931,37.774981],[-121.884303,37.775451],[-121.884147,37.778745],[-121.885088,37.779215],[-121.883362,37.781882],[-121.891518,37.781725],[-121.891675,37.788626],[-121.892302,37.788626],[-121.892616,37.788312],[-121.893243,37.788312],[-121.893871,37.787841],[-121.894184,37.787214],[-121.894184,37.786587],[-121.894341,37.786273],[-121.894341,37.785959],[-121.894655,37.785175],[-121.895753,37.783450],[-121.896223,37.783136],[-121.896694,37.782979],[-121.897792,37.782195],[-121.898105,37.781568],[-121.898419,37.781411],[-121.898890,37.781411],[-121.898733,37.781725],[-121.900615,37.781882],[-121.900772,37.788783],[-121.912692,37.788939],[-121.913005,37.789410],[-121.913319,37.789253],[-121.915201,37.789253],[-121.915828,37.788939],[-121.923200,37.789096],[-121.923357,37.792233],[-121.925552,37.792233],[-121.933081,37.792390],[-121.933081,37.788626],[-121.938257,37.788469],[-121.941236,37.788783],[-121.941550,37.791606],[-121.948765,37.795840],[-121.950961,37.796938],[-121.950961,37.798820],[-121.953313,37.801330],[-121.953470,37.801330],[-121.952843,37.802584],[-121.952843,37.803526],[-121.952215,37.804937],[-121.952215,37.805721],[-121.951902,37.806035],[-121.951117,37.805564],[-121.950804,37.805408],[-121.950647,37.805878],[-121.950804,37.806035],[-121.949549,37.807447],[-121.951745,37.808701],[-121.951117,37.809485],[-121.950490,37.809642],[-121.951274,37.812309],[-121.951117,37.818896],[-121.952215,37.819053],[-121.952529,37.819366],[-121.951745,37.819837],[-121.951588,37.820151],[-121.951902,37.820621],[-121.952686,37.820778],[-121.953470,37.821562],[-121.954725,37.821876],[-121.955195,37.822033],[-121.955195,37.822974],[-121.954568,37.823444],[-121.954568,37.823601],[-121.955038,37.824072],[-121.955509,37.824385],[-121.955979,37.825640],[-121.956450,37.825954],[-121.957391,37.826424],[-121.957862,37.827522],[-121.959116,37.828934],[-121.959273,37.829875],[-121.959116,37.830502],[-121.959273,37.830659],[-121.960685,37.831443],[-121.962253,37.831757],[-121.963351,37.831600],[-121.964606,37.831914],[-121.965704,37.831914],[-121.968840,37.831443],[-121.969625,37.830659],[-121.970252,37.830659],[-121.971036,37.831757],[-121.971820,37.831757],[-121.972291,37.832384],[-121.972291,37.833012],[-121.972448,37.833325],[-121.972291,37.833796],[-121.971036,37.834737],[-121.971036,37.835050],[-121.971507,37.835521],[-121.972918,37.835364],[-121.973075,37.835521],[-121.970722,37.835835],[-121.968684,37.835678],[-121.967272,37.835364],[-121.966017,37.833953],[-121.965233,37.833639],[-121.963822,37.833796],[-121.962253,37.833012],[-121.961783,37.833168],[-121.960842,37.833482],[-121.959430,37.833325],[-121.958646,37.833012],[-121.956450,37.831914],[-121.951902,37.831914],[-121.952058,37.832384],[-121.951588,37.835207],[-121.950647,37.835678],[-121.949549,37.837403],[-121.948294,37.838344],[-121.947510,37.840383],[-121.947667,37.841010],[-121.949079,37.840854],[-121.949549,37.841167],[-121.949706,37.841481],[-121.949549,37.842579],[-121.949706,37.842579],[-121.950020,37.842422],[-121.950176,37.842579],[-121.950176,37.843677],[-121.950020,37.844147],[-121.949079,37.843834],[-121.947824,37.843206],[-121.947824,37.843049],[-121.948294,37.842736],[-121.948137,37.842265],[-121.947981,37.842265],[-121.947353,37.842422],[-121.946099,37.843363],[-121.945001,37.842579],[-121.943746,37.841951],[-121.943432,37.842108],[-121.941707,37.843363],[-121.941550,37.843363],[-121.941550,37.843049],[-121.941080,37.842892],[-121.940766,37.842892],[-121.940295,37.843206],[-121.940295,37.842892],[-121.940766,37.842265],[-121.940766,37.841951],[-121.940295,37.841481],[-121.938727,37.841010],[-121.938100,37.841167],[-121.937472,37.841795],[-121.937159,37.842736],[-121.937159,37.843206],[-121.937315,37.843834],[-121.937315,37.844304],[-121.937159,37.844304],[-121.935904,37.843677],[-121.934492,37.843520],[-121.934022,37.843990],[-121.933708,37.843990],[-121.933394,37.843677],[-121.933394,37.843363],[-121.933238,37.842736],[-121.932610,37.842265],[-121.932453,37.841638],[-121.932297,37.841481],[-121.931983,37.841481],[-121.931669,37.842108],[-121.931356,37.842265],[-121.929944,37.842265],[-121.929160,37.841795],[-121.928376,37.842108],[-121.928062,37.842422],[-121.927278,37.842579],[-121.926964,37.842892],[-121.926337,37.842579],[-121.926180,37.842108],[-121.925239,37.841167],[-121.923514,37.840854],[-121.922886,37.840854],[-121.922416,37.841010],[-121.921945,37.841481],[-121.922416,37.842579],[-121.921318,37.842736],[-121.921004,37.843049],[-121.909241,37.840383],[-121.895910,37.838187],[-121.862973,37.833639],[-121.863130,37.832698],[-121.863757,37.832070],[-121.864228,37.831129],[-121.864071,37.829718],[-121.864855,37.827679],[-121.866110,37.826111],[-121.866110,37.825483],[-121.867365,37.824542],[-121.868776,37.822033],[-121.869560,37.821248],[-121.871599,37.819994],[-121.871599,37.818739],[-121.872070,37.816857],[-121.872697,37.816230],[-121.873011,37.815445],[-121.873638,37.814504],[-121.874736,37.813093],[-121.875834,37.810740],[-121.875991,37.810426],[-121.876305,37.810426],[-121.876618,37.809799],[-121.876618,37.809485],[-121.876305,37.808858],[-121.877089,37.807760],[-121.877559,37.807447],[-121.877873,37.799291],[-121.872384,37.798507],[-121.867051,37.796468],[-121.865953,37.795840],[-121.865012,37.794899],[-121.864385,37.793645],[-121.864071,37.792704],[-121.863757,37.790821],[-121.864071,37.788939],[-121.864228,37.788155],[-121.863130,37.784077],[-121.862503,37.779215],[-121.861875,37.777490],[-121.861718,37.775765],[-121.862032,37.774353],[-121.862973,37.772157],[-121.866267,37.765570],[-121.866737,37.764159]]]}}
,{"id":94806,"type":"Feature","properties":{"name":"San Pablo"},"geometry":{"type":"Polygon","coordinates":[[[-122.364392,38.012594],[-122.363921,38.012437],[-122.363608,38.011810],[-122.363608,38.010869],[-122.362824,38.009614],[-122.360785,38.008516],[-122.358903,38.008045],[-122.358118,38.008045],[-122.357491,38.008045],[-122.357334,38.008359],[-122.357020,38.008359],[-122.356864,38.008045],[-122.356236,38.008202],[-122.354511,38.008673],[-122.351531,38.008045],[-122.351217,38.008045],[-122.351217,38.007261],[-122.350904,38.006791],[-122.350276,38.006320],[-122.349492,38.005850],[-122.347767,38.005379],[-122.346198,38.005379],[-122.345257,38.005065],[-122.344160,38.004595],[-122.342591,38.003183],[-122.341650,38.002870],[-122.339141,38.002399],[-122.336631,38.001615],[-122.335533,38.001458],[-122.334435,38.001615],[-122.332867,38.001301],[-122.331612,38.001615],[-122.331612,38.001929],[-122.330828,38.002085],[-122.330514,38.001929],[-122.330044,38.002085],[-122.330985,38.003811],[-122.330671,38.003968],[-122.331299,38.006477],[-122.329103,38.007418],[-122.327378,38.008673],[-122.326437,38.009771],[-122.317026,38.011496],[-122.316712,38.011653],[-122.316399,38.012123],[-122.316085,38.012123],[-122.315615,38.011653],[-122.313732,38.011653],[-122.313732,38.011339],[-122.313262,38.011339],[-122.313732,38.008359],[-122.314046,38.006791],[-122.314360,38.004752],[-122.317653,38.003654],[-122.317183,38.003340],[-122.316712,38.003183],[-122.316556,38.003183],[-122.315928,38.002713],[-122.318595,38.001615],[-122.317497,37.999890],[-122.317497,37.999106],[-122.316242,37.997694],[-122.315928,37.996910],[-122.315144,37.997067],[-122.315301,37.997851],[-122.314674,37.997851],[-122.314203,37.997380],[-122.312007,37.998478],[-122.311380,37.997851],[-122.311537,37.997694],[-122.310125,37.996282],[-122.309498,37.995341],[-122.308400,37.994243],[-122.307459,37.993146],[-122.313889,37.990322],[-122.311694,37.989852],[-122.313889,37.987970],[-122.315615,37.985617],[-122.316242,37.984049],[-122.317026,37.980285],[-122.321104,37.968208],[-122.321575,37.967424],[-122.322202,37.966483],[-122.323143,37.965699],[-122.327848,37.963346],[-122.329260,37.962248],[-122.329887,37.961464],[-122.330358,37.960523],[-122.330828,37.959582],[-122.330985,37.958170],[-122.330514,37.957072],[-122.330828,37.958327],[-122.330671,37.959582],[-122.329887,37.955974],[-122.329417,37.956445],[-122.329260,37.957072],[-122.329417,37.958641],[-122.329260,37.959425],[-122.329103,37.960209],[-122.328475,37.960836],[-122.327691,37.961307],[-122.327064,37.960523],[-122.323457,37.962091],[-122.323770,37.963189],[-122.319849,37.963816],[-122.319692,37.963816],[-122.319222,37.963816],[-122.318281,37.960366],[-122.317810,37.960680],[-122.317340,37.961150],[-122.316712,37.959111],[-122.316399,37.957072],[-122.315458,37.956915],[-122.315301,37.956602],[-122.315458,37.956445],[-122.316242,37.956288],[-122.316399,37.956445],[-122.316085,37.953151],[-122.316242,37.952838],[-122.318908,37.954092],[-122.323927,37.954092],[-122.324084,37.953935],[-122.324554,37.953308],[-122.323613,37.952524],[-122.322359,37.951897],[-122.322359,37.951269],[-122.322986,37.949701],[-122.323613,37.949387],[-122.323770,37.949387],[-122.323927,37.949544],[-122.326123,37.949544],[-122.325652,37.948760],[-122.326123,37.948603],[-122.327378,37.951269],[-122.327848,37.951112],[-122.329417,37.951112],[-122.330514,37.951426],[-122.330671,37.951269],[-122.331455,37.951112],[-122.332710,37.953465],[-122.333651,37.953308],[-122.332710,37.951426],[-122.333494,37.951269],[-122.333494,37.951740],[-122.335063,37.951897],[-122.335690,37.952210],[-122.337259,37.952367],[-122.338513,37.953151],[-122.338827,37.952838],[-122.339297,37.953151],[-122.339925,37.952681],[-122.347453,37.951740],[-122.347453,37.949701],[-122.347924,37.949544],[-122.357177,37.949544],[-122.357177,37.950328],[-122.358746,37.950328],[-122.358589,37.951740],[-122.358903,37.951740],[-122.358589,37.952524],[-122.358275,37.953622],[-122.357805,37.958798],[-122.359216,37.958641],[-122.358903,37.960680],[-122.359373,37.960836],[-122.359216,37.961307],[-122.359530,37.961307],[-122.359059,37.965542],[-122.357020,37.964601],[-122.353099,37.979344],[-122.353413,37.979500],[-122.353570,37.979030],[-122.354354,37.979030],[-122.358118,37.976834],[-122.356707,37.992205],[-122.357491,37.992989],[-122.359216,37.993930],[-122.359687,37.994400],[-122.360157,37.995341],[-122.359844,37.995028],[-122.359530,37.995028],[-122.359059,37.995498],[-122.358589,37.996439],[-122.359216,37.997223],[-122.360157,38.000047],[-122.360628,38.000674],[-122.360157,38.000988],[-122.361098,38.004281],[-122.362039,38.005693],[-122.363137,38.006791],[-122.364706,38.008830],[-122.364549,38.010241],[-122.364706,38.010555],[-122.364392,38.010712],[-122.364549,38.011810],[-122.364392,38.012594]]]}}
,{"id":94801,"type":"Feature","properties":{"name":"Richmond"},"geometry":{"type":"Polygon","coordinates":[[[-122.364392,38.012594],[-122.364549,38.011810],[-122.364392,38.010712],[-122.364706,38.010555],[-122.364549,38.010241],[-122.364706,38.008830],[-122.363137,38.006791],[-122.362039,38.005693],[-122.361098,38.004281],[-122.360157,38.000988],[-122.360628,38.000674],[-122.360157,38.000047],[-122.359216,37.997223],[-122.358589,37.996439],[-122.359059,37.995498],[-122.359530,37.995028],[-122.359844,37.995028],[-122.360157,37.995341],[-122.359687,37.994400],[-122.359216,37.993930],[-122.357491,37.992989],[-122.356707,37.992205],[-122.358118,37.976834],[-122.354354,37.979030],[-122.353570,37.979030],[-122.353413,37.979500],[-122.353099,37.979344],[-122.357020,37.964601],[-122.359059,37.965542],[-122.359530,37.961307],[-122.359216,37.961307],[-122.359373,37.960836],[-122.358903,37.960680],[-122.359216,37.958641],[-122.357805,37.958798],[-122.358275,37.953622],[-122.358589,37.952524],[-122.358903,37.951740],[-122.358589,37.951740],[-122.358746,37.950328],[-122.357177,37.950328],[-122.357177,37.949544],[-122.347924,37.949544],[-122.347453,37.949701],[-122.347453,37.943898],[-122.348394,37.943898],[-122.348394,37.941388],[-122.347453,37.941388],[-122.347610,37.940918],[-122.347924,37.940604],[-122.347453,37.940604],[-122.347610,37.933860],[-122.347767,37.933233],[-122.347924,37.932448],[-122.347924,37.932292],[-122.347610,37.932448],[-122.347453,37.932135],[-122.345728,37.930880],[-122.346198,37.930880],[-122.347139,37.931350],[-122.348081,37.931507],[-122.375057,37.931350],[-122.370979,37.928370],[-122.369254,37.927273],[-122.378037,37.927273],[-122.378037,37.928214],[-122.378194,37.928214],[-122.378194,37.928998],[-122.378508,37.929468],[-122.379292,37.929939],[-122.382115,37.926802],[-122.380233,37.926645],[-122.380703,37.926175],[-122.380703,37.925704],[-122.380233,37.925547],[-122.379919,37.925547],[-122.379919,37.925234],[-122.380703,37.925234],[-122.380703,37.923822],[-122.379292,37.923038],[-122.379135,37.923195],[-122.378194,37.923195],[-122.378194,37.921470],[-122.378037,37.920999],[-122.377723,37.920528],[-122.374587,37.918803],[-122.374430,37.918960],[-122.372077,37.917549],[-122.370979,37.916451],[-122.371293,37.916451],[-122.369097,37.913627],[-122.366588,37.911118],[-122.365960,37.909236],[-122.365019,37.905158],[-122.364549,37.902021],[-122.375998,37.902806],[-122.376939,37.901394],[-122.375057,37.898257],[-122.366901,37.896689],[-122.359844,37.896532],[-122.359373,37.891199],[-122.362667,37.893081],[-122.363294,37.893866],[-122.364078,37.895120],[-122.364549,37.895277],[-122.369097,37.895748],[-122.371607,37.894963],[-122.373018,37.894650],[-122.374430,37.894650],[-122.375998,37.894963],[-122.378821,37.896532],[-122.379605,37.897159],[-122.381017,37.898728],[-122.381801,37.899982],[-122.381958,37.901080],[-122.381958,37.903119],[-122.382115,37.903433],[-122.383056,37.903590],[-122.387761,37.903747],[-122.390898,37.904531],[-122.392780,37.905158],[-122.393721,37.905785],[-122.395133,37.906570],[-122.396544,37.907668],[-122.396858,37.909079],[-122.394035,37.913784],[-122.393094,37.917549],[-122.393407,37.918176],[-122.397799,37.922097],[-122.399054,37.923038],[-122.402661,37.923665],[-122.404543,37.924920],[-122.405641,37.926175],[-122.406425,37.926645],[-122.410974,37.927429],[-122.412071,37.928057],[-122.413012,37.928998],[-122.415208,37.930409],[-122.416463,37.931664],[-122.417875,37.932448],[-122.419286,37.934487],[-122.419913,37.936056],[-122.419286,37.939506],[-122.419757,37.940290],[-122.421168,37.941075],[-122.424619,37.942329],[-122.425560,37.942957],[-122.427755,37.944525],[-122.428383,37.945937],[-122.428383,37.947819],[-122.428069,37.948917],[-122.426501,37.951112],[-122.426501,37.951740],[-122.429010,37.953779],[-122.430422,37.955504],[-122.433402,37.958327],[-122.435441,37.961150],[-122.435911,37.962562],[-122.435597,37.965699],[-122.435127,37.967110],[-122.434186,37.967737],[-122.403288,37.967737],[-122.402504,37.969306],[-122.400465,37.971972],[-122.399838,37.972599],[-122.399054,37.973070],[-122.392623,37.974482],[-122.390898,37.975736],[-122.386977,37.979187],[-122.384938,37.980285],[-122.383683,37.980598],[-122.383840,37.980442],[-122.382115,37.980598],[-122.381331,37.980598],[-122.378037,37.980128],[-122.377253,37.980442],[-122.376782,37.981226],[-122.374273,37.984363],[-122.369411,37.989695],[-122.368313,37.991264],[-122.368313,37.992048],[-122.369097,37.993616],[-122.370979,37.995969],[-122.371450,37.997380],[-122.371763,38.000360],[-122.372861,38.004124],[-122.373332,38.006477],[-122.373332,38.008516],[-122.370822,38.014319],[-122.369881,38.015574],[-122.368783,38.016358],[-122.367842,38.016985],[-122.366901,38.017299],[-122.365176,38.017299],[-122.337729,38.007732],[-122.331926,38.008986],[-122.331299,38.006477],[-122.330671,38.003968],[-122.330985,38.003811],[-122.330044,38.002085],[-122.330514,38.001929],[-122.330828,38.002085],[-122.331612,38.001929],[-122.331612,38.001615],[-122.332867,38.001301],[-122.334435,38.001615],[-122.335533,38.001458],[-122.336631,38.001615],[-122.339141,38.002399],[-122.341650,38.002870],[-122.342591,38.003183],[-122.344160,38.004595],[-122.345257,38.005065],[-122.346198,38.005379],[-122.347767,38.005379],[-122.349492,38.005850],[-122.350276,38.006320],[-122.350904,38.006791],[-122.351217,38.007261],[-122.351217,38.008045],[-122.351531,38.008045],[-122.354511,38.008673],[-122.356236,38.008202],[-122.356864,38.008045],[-122.357020,38.008359],[-122.357334,38.008359],[-122.357491,38.008045],[-122.358118,38.008045],[-122.358903,38.008045],[-122.360785,38.008516],[-122.362824,38.009614],[-122.363608,38.010869],[-122.363608,38.011810],[-122.363921,38.012437],[-122.364392,38.012594]]]}}
,{"id":94803,"type":"Feature","properties":{"name":"El Sobrante"},"geometry":{"type":"Polygon","coordinates":[[[-122.317026,37.980285],[-122.316242,37.984049],[-122.315615,37.985617],[-122.312791,37.984049],[-122.312007,37.983892],[-122.309968,37.985774],[-122.309498,37.985774],[-122.309498,37.986245],[-122.308557,37.986872],[-122.308243,37.987499],[-122.308086,37.987499],[-122.307459,37.987813],[-122.308400,37.988597],[-122.307616,37.988754],[-122.307616,37.989381],[-122.306988,37.989538],[-122.301028,37.989538],[-122.300872,37.989068],[-122.300401,37.988284],[-122.300715,37.986558],[-122.300244,37.986245],[-122.300401,37.985931],[-122.299460,37.985774],[-122.298048,37.986245],[-122.298048,37.986401],[-122.296010,37.987029],[-122.295853,37.986245],[-122.294912,37.986558],[-122.294284,37.988284],[-122.293657,37.989068],[-122.292089,37.988911],[-122.291932,37.989695],[-122.290677,37.989381],[-122.286285,37.986715],[-122.287854,37.984990],[-122.288481,37.984363],[-122.288011,37.984049],[-122.288011,37.983892],[-122.288167,37.983735],[-122.287697,37.983421],[-122.286285,37.983108],[-122.283933,37.983108],[-122.283933,37.982010],[-122.281894,37.982010],[-122.282364,37.983421],[-122.281110,37.983578],[-122.280639,37.983421],[-122.279541,37.983578],[-122.279855,37.984363],[-122.278287,37.983108],[-122.279071,37.982480],[-122.278914,37.982324],[-122.278757,37.981226],[-122.273581,37.978403],[-122.274209,37.978246],[-122.268406,37.974795],[-122.266367,37.974795],[-122.266837,37.973854],[-122.265582,37.973697],[-122.265269,37.973227],[-122.264641,37.973384],[-122.262916,37.973227],[-122.261661,37.972913],[-122.261348,37.972129],[-122.260250,37.971188],[-122.258681,37.971031],[-122.260093,37.972129],[-122.260720,37.972913],[-122.260250,37.972913],[-122.256172,37.975109],[-122.256015,37.976364],[-122.256015,37.975893],[-122.255702,37.975736],[-122.254133,37.975893],[-122.253819,37.976207],[-122.251153,37.975109],[-122.250212,37.973384],[-122.248801,37.972913],[-122.247703,37.972286],[-122.245507,37.972129],[-122.244095,37.971188],[-122.243154,37.971031],[-122.242997,37.970404],[-122.242997,37.968835],[-122.243154,37.967894],[-122.245507,37.964601],[-122.246762,37.963973],[-122.246605,37.963816],[-122.245664,37.963816],[-122.243625,37.962719],[-122.242841,37.961934],[-122.240488,37.960680],[-122.238920,37.958954],[-122.237822,37.958484],[-122.237665,37.958170],[-122.238606,37.957856],[-122.239076,37.957856],[-122.241272,37.956915],[-122.241429,37.956602],[-122.241115,37.955974],[-122.241115,37.955347],[-122.242997,37.954720],[-122.243468,37.954563],[-122.245193,37.954563],[-122.246448,37.955190],[-122.246762,37.955190],[-122.247075,37.954563],[-122.248801,37.952994],[-122.249114,37.952367],[-122.250683,37.951740],[-122.252251,37.951583],[-122.252408,37.950799],[-122.253663,37.950328],[-122.254447,37.949701],[-122.254760,37.949230],[-122.256015,37.948917],[-122.256015,37.948289],[-122.254917,37.947819],[-122.254447,37.946721],[-122.253663,37.945780],[-122.254447,37.945623],[-122.255231,37.946093],[-122.255231,37.944996],[-122.256015,37.944368],[-122.257740,37.944368],[-122.258525,37.944839],[-122.259152,37.944368],[-122.259466,37.944368],[-122.259779,37.944525],[-122.259152,37.944839],[-122.259779,37.945152],[-122.261818,37.944682],[-122.262289,37.944368],[-122.263230,37.943427],[-122.263700,37.943270],[-122.264171,37.943584],[-122.266053,37.942329],[-122.271072,37.939820],[-122.268249,37.936840],[-122.254604,37.920528],[-122.255858,37.920528],[-122.260564,37.920842],[-122.263700,37.920999],[-122.263230,37.921470],[-122.264171,37.921470],[-122.266680,37.922411],[-122.268092,37.923508],[-122.270915,37.925077],[-122.272327,37.926018],[-122.273111,37.926332],[-122.274522,37.927586],[-122.275934,37.928057],[-122.276404,37.928998],[-122.276718,37.929312],[-122.277346,37.929155],[-122.278600,37.929625],[-122.279384,37.930409],[-122.280169,37.931037],[-122.280639,37.931507],[-122.281737,37.932292],[-122.282992,37.932605],[-122.283462,37.933233],[-122.284246,37.933389],[-122.284403,37.933233],[-122.284874,37.933233],[-122.285815,37.933076],[-122.286756,37.933233],[-122.287383,37.933703],[-122.290677,37.934644],[-122.290206,37.935428],[-122.289109,37.936056],[-122.288952,37.936997],[-122.289109,37.937781],[-122.288952,37.937938],[-122.288795,37.938408],[-122.288952,37.939349],[-122.303224,37.939192],[-122.307616,37.942800],[-122.309027,37.942957],[-122.309811,37.943741],[-122.310909,37.943584],[-122.311537,37.944055],[-122.311380,37.944368],[-122.312164,37.944839],[-122.311380,37.945623],[-122.311380,37.948760],[-122.309655,37.948132],[-122.309498,37.951740],[-122.307929,37.951740],[-122.308086,37.952681],[-122.308400,37.952681],[-122.308243,37.954877],[-122.308870,37.955190],[-122.309655,37.956131],[-122.309968,37.955974],[-122.310125,37.955504],[-122.310282,37.955504],[-122.311066,37.955661],[-122.311223,37.956131],[-122.311850,37.956445],[-122.312164,37.956759],[-122.313419,37.957072],[-122.315458,37.956915],[-122.316399,37.957072],[-122.316712,37.959111],[-122.317340,37.961150],[-122.317810,37.960680],[-122.318281,37.960366],[-122.319222,37.963816],[-122.319692,37.963816],[-122.319849,37.963816],[-122.323770,37.963189],[-122.323457,37.962091],[-122.327064,37.960523],[-122.327691,37.961307],[-122.328475,37.960836],[-122.329103,37.960209],[-122.329260,37.959425],[-122.329417,37.958641],[-122.329260,37.957072],[-122.329417,37.956445],[-122.329887,37.955974],[-122.330671,37.959582],[-122.330828,37.958327],[-122.330514,37.957072],[-122.330985,37.958170],[-122.330828,37.959582],[-122.330358,37.960523],[-122.329887,37.961464],[-122.329260,37.962248],[-122.327848,37.963346],[-122.323143,37.965699],[-122.322202,37.966483],[-122.321575,37.967424],[-122.321104,37.968208],[-122.317026,37.980285]]]}}
,{"id":94553,"type":"Feature","properties":{"name":"Martinez"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.177909,38.017456],[-122.178066,38.018397],[-122.178066,38.019181],[-122.179163,38.020593],[-122.179477,38.021534],[-122.180418,38.022004],[-122.181673,38.022945],[-122.182928,38.025612],[-122.183398,38.025768],[-122.186849,38.026082],[-122.186692,38.026866],[-122.187790,38.028748],[-122.187790,38.029376],[-122.189044,38.030003],[-122.189358,38.030787],[-122.190142,38.030630],[-122.191083,38.030944],[-122.191397,38.031571],[-122.191240,38.032356],[-122.191711,38.032513],[-122.194220,38.034395],[-122.194377,38.034708],[-122.194377,38.035492],[-122.195004,38.036120],[-122.194220,38.037845],[-122.193593,38.038786],[-122.192495,38.041139],[-122.190926,38.041609],[-122.190142,38.041452],[-122.189672,38.041766],[-122.188731,38.042080],[-122.186535,38.040982],[-122.185908,38.040982],[-122.184967,38.041139],[-122.183869,38.040825],[-122.183712,38.040511],[-122.183869,38.039884],[-122.182928,38.039727],[-122.182457,38.039414],[-122.182771,38.039100],[-122.183398,38.038943],[-122.183398,38.038629],[-122.183241,38.038472],[-122.181673,38.038472],[-122.181045,38.038159],[-122.180575,38.037845],[-122.180104,38.037061],[-122.180575,38.035649],[-122.180418,38.035336],[-122.179007,38.035022],[-122.178850,38.035336],[-122.178066,38.035492],[-122.177909,38.035806],[-122.177124,38.035963],[-122.175242,38.035336],[-122.175086,38.034865],[-122.175086,38.034708],[-122.176497,38.034395],[-122.176654,38.033924],[-122.175713,38.033610],[-122.175713,38.033140],[-122.175556,38.032826],[-122.174615,38.032983],[-122.173831,38.032669],[-122.172890,38.032199],[-122.172419,38.031728],[-122.172576,38.031415],[-122.174301,38.030944],[-122.171008,38.030944],[-122.170694,38.031101],[-122.170067,38.030160],[-122.169282,38.029533],[-122.162225,38.026082],[-122.163323,38.026396],[-122.163479,38.026082],[-122.164107,38.026082],[-122.165205,38.025141],[-122.165832,38.024200],[-122.174458,38.024200],[-122.174145,38.022632],[-122.175242,38.021691],[-122.176183,38.021063],[-122.176968,38.019338],[-122.176968,38.018240],[-122.177124,38.017770],[-122.177909,38.017456]]],[[[-122.048515,38.031571],[-122.055573,38.026709],[-122.054475,38.025612],[-122.053064,38.024200],[-122.053064,38.023886],[-122.060122,38.019652],[-122.058553,38.016828],[-122.059494,38.016515],[-122.059965,38.016515],[-122.061847,38.015887],[-122.056514,38.007261],[-122.053221,38.002399],[-122.056201,38.001929],[-122.056671,38.003340],[-122.058710,38.003183],[-122.066709,38.012437],[-122.067964,38.014476],[-122.068434,38.016201],[-122.068591,38.017142],[-122.069218,38.016201],[-122.068748,38.014790],[-122.067179,38.011810],[-122.067179,38.011653],[-122.061063,38.004752],[-122.061219,38.004438],[-122.061690,38.004124],[-122.065454,37.996126],[-122.063415,37.996910],[-122.059180,37.999262],[-122.056985,38.000047],[-122.056514,38.000203],[-122.055887,37.999419],[-122.056514,37.999262],[-122.056357,37.998949],[-122.061376,37.997223],[-122.062631,37.996596],[-122.063101,37.996126],[-122.063258,37.995341],[-122.062945,37.987499],[-122.063572,37.983892],[-122.064043,37.983735],[-122.063729,37.982167],[-122.065611,37.980912],[-122.065768,37.981853],[-122.067650,37.981539],[-122.068905,37.981696],[-122.074080,37.981226],[-122.074865,37.981226],[-122.074865,37.981853],[-122.077060,37.981853],[-122.077217,37.982324],[-122.078158,37.982167],[-122.078786,37.981696],[-122.078942,37.981539],[-122.077217,37.981539],[-122.077060,37.979814],[-122.075806,37.979814],[-122.075806,37.979344],[-122.076433,37.979344],[-122.076433,37.978716],[-122.077060,37.979344],[-122.077060,37.978089],[-122.077844,37.977932],[-122.077844,37.975893],[-122.080197,37.976050],[-122.090392,37.975893],[-122.099959,37.975893],[-122.100430,37.975736],[-122.104351,37.972756],[-122.104194,37.972443],[-122.102939,37.971815],[-122.103096,37.971502],[-122.102312,37.971188],[-122.102625,37.969933],[-122.103723,37.970090],[-122.103723,37.970090],[-122.101998,37.969620],[-122.101998,37.969776],[-122.100743,37.969149],[-122.098861,37.967110],[-122.096352,37.963189],[-122.093842,37.959582],[-122.092117,37.959739],[-122.091960,37.959268],[-122.091960,37.958327],[-122.092587,37.957856],[-122.091333,37.956602],[-122.091490,37.956288],[-122.091803,37.956288],[-122.091803,37.955974],[-122.092274,37.955504],[-122.092744,37.955190],[-122.101684,37.955033],[-122.103096,37.955033],[-122.104821,37.958641],[-122.107330,37.958327],[-122.107644,37.959268],[-122.108115,37.958798],[-122.108115,37.956759],[-122.109213,37.957856],[-122.110938,37.957072],[-122.111565,37.956602],[-122.111565,37.955347],[-122.112663,37.955347],[-122.112663,37.955190],[-122.113134,37.955190],[-122.113290,37.954877],[-122.114231,37.954877],[-122.114545,37.955347],[-122.115957,37.955347],[-122.116114,37.953622],[-122.120348,37.953465],[-122.120819,37.954249],[-122.121132,37.953465],[-122.125524,37.953465],[-122.125210,37.954877],[-122.123956,37.956131],[-122.124269,37.956131],[-122.125053,37.955347],[-122.126151,37.953779],[-122.126151,37.953151],[-122.127563,37.950799],[-122.127877,37.949230],[-122.127563,37.948132],[-122.127877,37.947505],[-122.127720,37.946878],[-122.128033,37.946093],[-122.128347,37.945780],[-122.128190,37.945309],[-122.128504,37.945152],[-122.128347,37.944525],[-122.128661,37.943898],[-122.130386,37.945309],[-122.130700,37.947035],[-122.131170,37.947505],[-122.131641,37.947662],[-122.132111,37.947191],[-122.132268,37.946564],[-122.133052,37.945937],[-122.133523,37.945780],[-122.134307,37.946093],[-122.134778,37.945780],[-122.135405,37.943898],[-122.136816,37.942800],[-122.136973,37.942329],[-122.138228,37.942800],[-122.138699,37.943741],[-122.139169,37.944055],[-122.139640,37.944055],[-122.140267,37.943741],[-122.140894,37.943898],[-122.141679,37.943741],[-122.142306,37.943741],[-122.143090,37.944055],[-122.144345,37.945309],[-122.144815,37.945152],[-122.145286,37.945309],[-122.145443,37.944839],[-122.146541,37.943898],[-122.147795,37.943741],[-122.148580,37.943270],[-122.149677,37.943270],[-122.150305,37.942643],[-122.150305,37.942329],[-122.151089,37.940761],[-122.151403,37.939820],[-122.151403,37.938722],[-122.152814,37.937624],[-122.153128,37.935271],[-122.152814,37.935115],[-122.151559,37.935115],[-122.150775,37.935585],[-122.149207,37.935742],[-122.148893,37.935585],[-122.148109,37.933703],[-122.148266,37.933703],[-122.148109,37.932605],[-122.148580,37.931978],[-122.149050,37.931194],[-122.149521,37.930566],[-122.152344,37.928527],[-122.153285,37.928214],[-122.154383,37.928214],[-122.156108,37.927273],[-122.157206,37.927273],[-122.158304,37.926959],[-122.159558,37.927116],[-122.160656,37.926645],[-122.161127,37.926018],[-122.162381,37.925861],[-122.162695,37.925704],[-122.163009,37.927586],[-122.163323,37.928370],[-122.163950,37.928998],[-122.165675,37.930253],[-122.166930,37.930566],[-122.169126,37.930253],[-122.170380,37.930253],[-122.173831,37.931350],[-122.176027,37.932919],[-122.177909,37.933389],[-122.178693,37.933860],[-122.179320,37.934330],[-122.179948,37.935585],[-122.180575,37.936213],[-122.181673,37.936526],[-122.184182,37.936526],[-122.185123,37.936683],[-122.186064,37.937310],[-122.186378,37.938251],[-122.188260,37.938408],[-122.188103,37.938722],[-122.201748,37.939036],[-122.201592,37.938408],[-122.201905,37.938251],[-122.202219,37.938565],[-122.203003,37.938565],[-122.203003,37.939506],[-122.203160,37.939192],[-122.203317,37.938879],[-122.203787,37.938251],[-122.203944,37.938251],[-122.204258,37.937624],[-122.204885,37.937467],[-122.205669,37.937467],[-122.206454,37.937154],[-122.204728,37.939820],[-122.208649,37.947976],[-122.219471,37.947976],[-122.219471,37.957072],[-122.207708,37.956915],[-122.206767,37.966012],[-122.221353,37.984519],[-122.230607,37.995655],[-122.230293,37.996439],[-122.223236,37.996282],[-122.223392,37.997067],[-122.224177,37.998164],[-122.225431,37.998478],[-122.226216,37.998164],[-122.227000,37.998321],[-122.229195,37.999106],[-122.231862,37.999733],[-122.234371,38.002713],[-122.234528,38.003340],[-122.234371,38.003811],[-122.234528,38.003968],[-122.234842,38.004438],[-122.236567,38.003811],[-122.239076,38.007261],[-122.248016,38.008673],[-122.252408,38.012907],[-122.251153,38.014633],[-122.246448,38.015260],[-122.242056,38.015103],[-122.237351,38.013535],[-122.236096,38.012907],[-122.234371,38.012280],[-122.232960,38.011182],[-122.231705,38.010555],[-122.228725,38.010084],[-122.224647,38.008359],[-122.222138,38.007889],[-122.219942,38.007889],[-122.217903,38.007418],[-122.216178,38.007261],[-122.213355,38.007104],[-122.205356,38.008830],[-122.196102,38.012907],[-122.190456,38.015574],[-122.188574,38.016201],[-122.186535,38.016358],[-122.180104,38.015731],[-122.178693,38.015417],[-122.177595,38.015103],[-122.176340,38.014319],[-122.166459,38.007104],[-122.165518,38.006477],[-122.163166,38.005850],[-122.157363,38.005536],[-122.155010,38.004752],[-122.152344,38.002870],[-122.147638,38.000203],[-122.146384,37.999106],[-122.145286,37.997067],[-122.142306,37.998008],[-122.139796,37.997851],[-122.140424,37.998164],[-122.140738,37.998478],[-122.141522,37.998164],[-122.141992,37.998321],[-122.142306,37.998635],[-122.142463,37.999419],[-122.143090,37.999419],[-122.143874,38.000360],[-122.144345,38.000203],[-122.145286,38.000674],[-122.145286,38.000988],[-122.144972,38.001929],[-122.144815,38.002713],[-122.144188,38.005850],[-122.143090,38.005850],[-122.143717,38.006477],[-122.144188,38.006634],[-122.144188,38.007104],[-122.144502,38.007575],[-122.144972,38.007732],[-122.147325,38.007889],[-122.147952,38.008045],[-122.148109,38.008673],[-122.148423,38.008830],[-122.150932,38.009771],[-122.151089,38.010241],[-122.151716,38.010712],[-122.151873,38.011182],[-122.152030,38.011496],[-122.150932,38.011496],[-122.150932,38.011966],[-122.150305,38.012437],[-122.150775,38.012751],[-122.151873,38.012751],[-122.153128,38.012280],[-122.154226,38.012594],[-122.155010,38.013378],[-122.154696,38.014005],[-122.152344,38.014633],[-122.150775,38.016358],[-122.150618,38.016515],[-122.150462,38.016201],[-122.150148,38.016201],[-122.149050,38.017299],[-122.148580,38.017613],[-122.148580,38.018397],[-122.147482,38.019024],[-122.147952,38.019338],[-122.148580,38.019181],[-122.148423,38.020906],[-122.158460,38.024827],[-122.156422,38.024827],[-122.151559,38.023573],[-122.146697,38.023573],[-122.146854,38.031728],[-122.143090,38.031728],[-122.139326,38.032199],[-122.131484,38.034551],[-122.123956,38.035649],[-122.122544,38.036590],[-122.121760,38.037531],[-122.120976,38.038002],[-122.119250,38.038629],[-122.118152,38.039414],[-122.102782,38.045844],[-122.098704,38.047412],[-122.093058,38.049294],[-122.088823,38.050079],[-122.084118,38.051804],[-122.077374,38.054000],[-122.076119,38.054627],[-122.067336,38.060116],[-122.064984,38.061057],[-122.061063,38.062155],[-122.050868,38.060273],[-122.036282,38.060273],[-122.029224,38.059332],[-122.029224,38.056509],[-122.033145,38.052588],[-122.033459,38.051804],[-122.033459,38.050706],[-122.033772,38.050549],[-122.032204,38.048824],[-122.032204,38.048197],[-122.032518,38.047256],[-122.032361,38.046785],[-122.030792,38.043805],[-122.048515,38.031571]]]]}}
,{"id":94530,"type":"Feature","properties":{"name":"El Cerrito"},"geometry":{"type":"Polygon","coordinates":[[[-122.312164,37.938251],[-122.303538,37.938251],[-122.303224,37.939192],[-122.288952,37.939349],[-122.288795,37.938408],[-122.288952,37.937938],[-122.289109,37.937781],[-122.288952,37.936997],[-122.289109,37.936056],[-122.290206,37.935428],[-122.290677,37.934644],[-122.287383,37.933703],[-122.286756,37.933233],[-122.285815,37.933076],[-122.284874,37.933233],[-122.284403,37.933233],[-122.284246,37.933389],[-122.283462,37.933233],[-122.282992,37.932605],[-122.281737,37.932292],[-122.280639,37.931507],[-122.280169,37.931037],[-122.279384,37.930409],[-122.278600,37.929625],[-122.277346,37.929155],[-122.276718,37.929312],[-122.276404,37.928998],[-122.275934,37.928057],[-122.274522,37.927586],[-122.273111,37.926332],[-122.272327,37.926018],[-122.270915,37.925077],[-122.268092,37.923508],[-122.266680,37.922411],[-122.264171,37.921470],[-122.270601,37.921313],[-122.270601,37.923979],[-122.279384,37.919587],[-122.277659,37.917705],[-122.276404,37.918019],[-122.275934,37.917549],[-122.276091,37.917078],[-122.275620,37.916607],[-122.275463,37.916137],[-122.272170,37.915039],[-122.271229,37.914098],[-122.271229,37.913784],[-122.270915,37.913627],[-122.273268,37.911118],[-122.273424,37.911118],[-122.273738,37.911432],[-122.274052,37.911275],[-122.277973,37.914725],[-122.279071,37.915823],[-122.278757,37.915980],[-122.279228,37.916451],[-122.279071,37.916607],[-122.279071,37.916921],[-122.279384,37.917078],[-122.280169,37.917705],[-122.280953,37.917862],[-122.281267,37.917392],[-122.281267,37.917235],[-122.281737,37.917705],[-122.281894,37.918176],[-122.282364,37.918333],[-122.282835,37.918646],[-122.288952,37.914412],[-122.287383,37.910491],[-122.287226,37.909863],[-122.289109,37.909079],[-122.288481,37.905942],[-122.290050,37.905158],[-122.291147,37.904217],[-122.290363,37.903747],[-122.289109,37.903747],[-122.288638,37.903590],[-122.288638,37.902178],[-122.288011,37.900139],[-122.288011,37.899355],[-122.288167,37.898100],[-122.288481,37.897943],[-122.289422,37.897787],[-122.291147,37.897943],[-122.293657,37.898571],[-122.296010,37.898884],[-122.297735,37.898884],[-122.298833,37.898414],[-122.300244,37.898257],[-122.301499,37.898571],[-122.303538,37.898571],[-122.305263,37.898414],[-122.306204,37.898257],[-122.306832,37.899355],[-122.307145,37.901080],[-122.306988,37.901551],[-122.306988,37.902178],[-122.307145,37.902335],[-122.307616,37.902335],[-122.307773,37.901864],[-122.307773,37.901394],[-122.308714,37.901237],[-122.308557,37.900923],[-122.309027,37.900923],[-122.309811,37.902021],[-122.305890,37.903747],[-122.306047,37.904060],[-122.304479,37.904688],[-122.305420,37.906570],[-122.307929,37.910334],[-122.308870,37.910020],[-122.308870,37.910177],[-122.311223,37.913471],[-122.310282,37.913784],[-122.312007,37.916137],[-122.313105,37.917078],[-122.313732,37.917862],[-122.314203,37.918803],[-122.320633,37.919274],[-122.320633,37.920999],[-122.321261,37.920999],[-122.321261,37.922411],[-122.320633,37.922411],[-122.320633,37.923038],[-122.321261,37.923038],[-122.321104,37.924449],[-122.321261,37.924763],[-122.320633,37.927116],[-122.323457,37.931037],[-122.322045,37.930409],[-122.320320,37.930409],[-122.320163,37.938251],[-122.317340,37.938408],[-122.312164,37.938251]]]}}
,{"id":94572,"type":"Feature","properties":{"name":"Rodeo"},"geometry":{"type":"Polygon","coordinates":[[[-122.269974,38.058391],[-122.248173,38.058391],[-122.248173,38.056666],[-122.248801,38.056352],[-122.251153,38.054470],[-122.251781,38.053372],[-122.251781,38.052902],[-122.254290,38.052588],[-122.254760,38.052431],[-122.255545,38.051333],[-122.256956,38.051333],[-122.257427,38.051490],[-122.257427,38.051177],[-122.255074,38.049765],[-122.253035,38.049294],[-122.252094,38.048981],[-122.250839,38.048197],[-122.250996,38.047883],[-122.245507,38.044432],[-122.241743,38.042864],[-122.242527,38.042237],[-122.238292,38.045217],[-122.235312,38.044746],[-122.234058,38.044276],[-122.234214,38.023416],[-122.234371,38.021847],[-122.229509,38.021691],[-122.229666,38.014633],[-122.229352,38.014319],[-122.225118,38.014005],[-122.225118,38.011810],[-122.225588,38.011810],[-122.225431,38.011182],[-122.225745,38.011025],[-122.224177,38.010084],[-122.219785,38.008830],[-122.218687,38.008830],[-122.216178,38.008986],[-122.216178,38.007261],[-122.217903,38.007418],[-122.219942,38.007889],[-122.222138,38.007889],[-122.224647,38.008359],[-122.228725,38.010084],[-122.231705,38.010555],[-122.232960,38.011182],[-122.234371,38.012280],[-122.236096,38.012907],[-122.237351,38.013535],[-122.242056,38.015103],[-122.246448,38.015260],[-122.251153,38.014633],[-122.252408,38.012907],[-122.253192,38.012437],[-122.258054,38.010712],[-122.258525,38.010869],[-122.259152,38.011182],[-122.261034,38.010712],[-122.262603,38.010712],[-122.263387,38.010869],[-122.265896,38.011966],[-122.266994,38.012280],[-122.272170,38.011810],[-122.269347,38.014946],[-122.264485,38.013535],[-122.261661,38.013221],[-122.258995,38.013221],[-122.256799,38.013535],[-122.256643,38.013849],[-122.253663,38.014162],[-122.261034,38.021377],[-122.264171,38.024514],[-122.266367,38.026396],[-122.267308,38.027494],[-122.267465,38.027337],[-122.270131,38.030160],[-122.270288,38.030630],[-122.274209,38.034395],[-122.275777,38.035963],[-122.276091,38.043491],[-122.274366,38.043962],[-122.270758,38.044119],[-122.269660,38.044432],[-122.269503,38.044432],[-122.268876,38.045373],[-122.268562,38.047099],[-122.268406,38.049608],[-122.268406,38.051333],[-122.269190,38.053215],[-122.270131,38.056039],[-122.270131,38.057293],[-122.269974,38.058391]]]}}
,{"id":94949,"type":"Feature","properties":{"name":"Novato"},"geometry":{"type":"Polygon","coordinates":[[[-122.603730,38.076114],[-122.599966,38.076428],[-122.597457,38.079251],[-122.596045,38.079878],[-122.594006,38.080349],[-122.593222,38.081290],[-122.593536,38.082545],[-122.593379,38.083643],[-122.592752,38.083956],[-122.592438,38.084427],[-122.591026,38.084897],[-122.590242,38.085525],[-122.588987,38.085838],[-122.586948,38.085368],[-122.586635,38.085525],[-122.585851,38.078624],[-122.585223,38.078310],[-122.584125,38.078153],[-122.583341,38.077683],[-122.582557,38.077055],[-122.581145,38.076585],[-122.580204,38.076114],[-122.576597,38.075800],[-122.576127,38.075800],[-122.575813,38.076428],[-122.574401,38.076114],[-122.572362,38.076114],[-122.571421,38.075800],[-122.569853,38.075173],[-122.568284,38.074859],[-122.568128,38.075487],[-122.568284,38.075957],[-122.569069,38.077055],[-122.566246,38.077055],[-122.563736,38.075173],[-122.558560,38.076742],[-122.552444,38.073918],[-122.552444,38.071409],[-122.539896,38.071409],[-122.542092,38.075644],[-122.543033,38.076742],[-122.543817,38.077526],[-122.543661,38.077683],[-122.546170,38.080035],[-122.545543,38.080663],[-122.544602,38.081133],[-122.544602,38.081447],[-122.542092,38.082545],[-122.543347,38.081760],[-122.537857,38.084740],[-122.534564,38.087250],[-122.533623,38.084427],[-122.529231,38.081604],[-122.525938,38.081760],[-122.527349,38.083799],[-122.527349,38.083956],[-122.528133,38.084897],[-122.528447,38.086309],[-122.528133,38.087250],[-122.527663,38.087564],[-122.526722,38.087564],[-122.525153,38.087250],[-122.523585,38.087093],[-122.522017,38.087250],[-122.521703,38.087407],[-122.520919,38.088661],[-122.519978,38.089916],[-122.518409,38.090857],[-122.516841,38.091328],[-122.515900,38.091328],[-122.514802,38.090700],[-122.514645,38.090230],[-122.514959,38.088348],[-122.514488,38.087407],[-122.514802,38.087407],[-122.514331,38.086466],[-122.514175,38.086779],[-122.512136,38.085054],[-122.510724,38.084584],[-122.508999,38.083956],[-122.506646,38.084113],[-122.503823,38.085368],[-122.503509,38.085995],[-122.503196,38.086936],[-122.502568,38.088191],[-122.501157,38.089759],[-122.499745,38.090700],[-122.498177,38.091485],[-122.497236,38.091641],[-122.495354,38.091641],[-122.494413,38.091955],[-122.493628,38.092269],[-122.491433,38.093994],[-122.489551,38.095092],[-122.488923,38.095719],[-122.487198,38.099327],[-122.482650,38.099170],[-122.482806,38.097288],[-122.482022,38.095562],[-122.480768,38.091955],[-122.479670,38.071723],[-122.479826,38.068586],[-122.482179,38.062626],[-122.486100,38.053529],[-122.487355,38.050079],[-122.487512,38.047412],[-122.491590,38.047256],[-122.495040,38.047569],[-122.497706,38.047726],[-122.498334,38.047412],[-122.506646,38.047726],[-122.506489,38.046942],[-122.507430,38.045844],[-122.508058,38.045217],[-122.514018,38.044432],[-122.514175,38.048667],[-122.515429,38.051177],[-122.520605,38.052588],[-122.519821,38.048353],[-122.520291,38.047883],[-122.519350,38.041452],[-122.519193,38.039884],[-122.521076,38.038472],[-122.526094,38.039727],[-122.527192,38.040041],[-122.527506,38.040511],[-122.527506,38.040825],[-122.529074,38.040982],[-122.530486,38.041296],[-122.534564,38.040041],[-122.535662,38.040982],[-122.536760,38.040668],[-122.536760,38.041766],[-122.538642,38.042237],[-122.539583,38.043178],[-122.554326,38.046785],[-122.571108,38.046314],[-122.571421,38.046001],[-122.572205,38.045844],[-122.572990,38.045373],[-122.573931,38.045844],[-122.575029,38.046471],[-122.583341,38.049922],[-122.585851,38.050392],[-122.587105,38.050235],[-122.589301,38.050549],[-122.590242,38.052274],[-122.590399,38.052902],[-122.591340,38.052902],[-122.591811,38.053215],[-122.593379,38.053372],[-122.594163,38.053843],[-122.596829,38.053529],[-122.606240,38.058078],[-122.604358,38.059175],[-122.600594,38.062940],[-122.597457,38.067174],[-122.601221,38.070468],[-122.603730,38.076114]]]}}
,{"id":94939,"type":"Feature","properties":{"name":"Larkspur"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.513704,37.944682],[-122.513704,37.944839],[-122.514802,37.944682],[-122.514331,37.945466],[-122.511665,37.950014],[-122.509469,37.951897],[-122.508058,37.951269],[-122.506176,37.951740],[-122.505705,37.950485],[-122.504607,37.949387],[-122.501784,37.947819],[-122.502098,37.943898],[-122.502412,37.942957],[-122.504294,37.943427],[-122.504607,37.943898],[-122.506803,37.944368],[-122.508215,37.945466],[-122.508371,37.945780],[-122.509626,37.946407],[-122.509940,37.946250],[-122.510097,37.945937],[-122.509312,37.945309],[-122.508999,37.945309],[-122.508528,37.945152],[-122.508685,37.944839],[-122.508058,37.944368],[-122.508842,37.944211],[-122.508999,37.944055],[-122.508685,37.943741],[-122.507744,37.943898],[-122.507274,37.943113],[-122.510410,37.942957],[-122.513547,37.943898],[-122.513704,37.944682]]],[[[-122.519193,37.939349],[-122.521546,37.938408],[-122.521076,37.937154],[-122.520762,37.934487],[-122.527035,37.933860],[-122.527035,37.931821],[-122.525624,37.931664],[-122.525153,37.931194],[-122.526408,37.930409],[-122.526251,37.930096],[-122.527035,37.930096],[-122.527192,37.929312],[-122.531898,37.929312],[-122.531584,37.928684],[-122.530643,37.927743],[-122.531898,37.927743],[-122.532839,37.927429],[-122.533780,37.926959],[-122.534407,37.927116],[-122.534250,37.926959],[-122.534407,37.926802],[-122.535034,37.926802],[-122.535348,37.926332],[-122.534721,37.925861],[-122.535505,37.924606],[-122.536132,37.924136],[-122.537073,37.923822],[-122.538171,37.924136],[-122.538171,37.925077],[-122.538642,37.925077],[-122.539112,37.924920],[-122.539740,37.925234],[-122.539583,37.922097],[-122.540210,37.921940],[-122.541308,37.922097],[-122.541465,37.922724],[-122.542876,37.923195],[-122.543033,37.923665],[-122.543817,37.923508],[-122.544602,37.923508],[-122.544758,37.923822],[-122.544602,37.924293],[-122.544915,37.924763],[-122.545386,37.924920],[-122.546170,37.924763],[-122.546484,37.925077],[-122.546484,37.925234],[-122.546013,37.925391],[-122.546484,37.925861],[-122.547268,37.926018],[-122.548366,37.925391],[-122.548679,37.925077],[-122.548366,37.924606],[-122.548366,37.924136],[-122.549150,37.923822],[-122.549150,37.924136],[-122.549620,37.924920],[-122.550405,37.925077],[-122.551503,37.925547],[-122.552600,37.925547],[-122.552914,37.925704],[-122.553071,37.926018],[-122.553228,37.927743],[-122.553071,37.930096],[-122.552287,37.933389],[-122.551346,37.933703],[-122.550405,37.934487],[-122.543817,37.935271],[-122.546484,37.940290],[-122.546327,37.941075],[-122.546641,37.941702],[-122.546484,37.941702],[-122.546484,37.942172],[-122.546954,37.942016],[-122.547582,37.942643],[-122.548052,37.942957],[-122.548209,37.943427],[-122.548052,37.943898],[-122.548523,37.944211],[-122.548366,37.944525],[-122.548366,37.944839],[-122.548993,37.944839],[-122.549620,37.944839],[-122.549464,37.945466],[-122.550091,37.945937],[-122.549620,37.945937],[-122.550405,37.946721],[-122.551032,37.947976],[-122.549307,37.948603],[-122.549620,37.949073],[-122.549620,37.950799],[-122.549150,37.950799],[-122.549150,37.950171],[-122.545856,37.951583],[-122.544915,37.949073],[-122.544602,37.948603],[-122.543974,37.948289],[-122.541935,37.947505],[-122.539583,37.947191],[-122.538955,37.946407],[-122.538485,37.944525],[-122.537544,37.943113],[-122.534877,37.942329],[-122.533466,37.942329],[-122.532211,37.942486],[-122.529388,37.943741],[-122.528918,37.943741],[-122.528447,37.943898],[-122.525467,37.943113],[-122.521232,37.941859],[-122.518723,37.941859],[-122.518252,37.942172],[-122.515900,37.942172],[-122.515900,37.943584],[-122.515429,37.942800],[-122.515272,37.942957],[-122.515272,37.942486],[-122.516213,37.941545],[-122.516213,37.941231],[-122.519193,37.939349]]]]}}
,{"id":95655,"type":"Feature","properties":{"name":"Mather"},"geometry":{"type":"Polygon","coordinates":[[[-121.292388,38.535813],[-121.297250,38.537068],[-121.298661,38.537852],[-121.304464,38.538950],[-121.309170,38.539421],[-121.313091,38.540205],[-121.314188,38.540048],[-121.316541,38.538637],[-121.317796,38.538637],[-121.318737,38.539107],[-121.321089,38.541617],[-121.321717,38.548831],[-121.320776,38.548518],[-121.317012,38.550870],[-121.317325,38.561065],[-121.314659,38.562790],[-121.308542,38.565927],[-121.306660,38.566084],[-121.305719,38.566397],[-121.306033,38.566868],[-121.306817,38.567652],[-121.306660,38.568436],[-121.306660,38.570632],[-121.305876,38.570632],[-121.303523,38.571730],[-121.303053,38.571730],[-121.302582,38.571573],[-121.301171,38.569377],[-121.298034,38.570789],[-121.298348,38.571259],[-121.298348,38.573926],[-121.295838,38.574082],[-121.290192,38.573455],[-121.288467,38.567025],[-121.277331,38.567809],[-121.275135,38.569064],[-121.274351,38.567966],[-121.266509,38.568123],[-121.259765,38.568436],[-121.258667,38.568123],[-121.256628,38.568907],[-121.255687,38.562790],[-121.255687,38.559026],[-121.253805,38.559026],[-121.253334,38.558555],[-121.250825,38.558085],[-121.249570,38.557614],[-121.244865,38.554164],[-121.244081,38.553380],[-121.243767,38.552595],[-121.242983,38.552595],[-121.242826,38.527658],[-121.242669,38.525619],[-121.251766,38.525462],[-121.261176,38.528285],[-121.292388,38.535813]]]}}
,{"id":95824,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.407509,38.525148],[-121.402333,38.525148],[-121.402176,38.523894],[-121.402333,38.523737],[-121.402646,38.523737],[-121.402646,38.524678],[-121.403117,38.524835],[-121.406254,38.524835],[-121.406568,38.524678],[-121.406097,38.523423],[-121.404999,38.521384],[-121.403431,38.517463],[-121.402960,38.515424],[-121.401549,38.511660],[-121.400921,38.511189],[-121.399039,38.511033],[-121.399039,38.510562],[-121.423036,38.510562],[-121.422879,38.510248],[-121.426016,38.510092],[-121.426173,38.510248],[-121.426173,38.510562],[-121.435897,38.510562],[-121.438249,38.510405],[-121.438249,38.509935],[-121.440131,38.510092],[-121.441386,38.509935],[-121.441543,38.509307],[-121.443268,38.510092],[-121.443268,38.510405],[-121.460050,38.510405],[-121.458325,38.507582],[-121.456443,38.505700],[-121.456756,38.505700],[-121.459736,38.508680],[-121.460991,38.508680],[-121.461462,38.508837],[-121.461775,38.509621],[-121.462246,38.509464],[-121.462403,38.507739],[-121.464598,38.507739],[-121.464598,38.510405],[-121.475264,38.510405],[-121.479655,38.524835],[-121.457227,38.524991],[-121.457227,38.524207],[-121.456600,38.524207],[-121.456600,38.523580],[-121.455345,38.523580],[-121.455345,38.524991],[-121.407509,38.525148]]]}}
,{"id":94131,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.424776,37.748631],[-122.424776,37.747063],[-122.424619,37.746906],[-122.424462,37.745495],[-122.424619,37.745338],[-122.424619,37.744710],[-122.424305,37.744554],[-122.424305,37.742201],[-122.423991,37.740946],[-122.424305,37.740005],[-122.424148,37.739848],[-122.424776,37.738437],[-122.425560,37.737339],[-122.426658,37.736398],[-122.428540,37.734986],[-122.432461,37.733104],[-122.432147,37.732947],[-122.432304,37.732947],[-122.432304,37.732947],[-122.434500,37.732006],[-122.434970,37.731536],[-122.435284,37.731536],[-122.435127,37.731693],[-122.435911,37.731536],[-122.439519,37.730124],[-122.439519,37.730124],[-122.443596,37.728242],[-122.444224,37.728242],[-122.444224,37.730752],[-122.444381,37.734516],[-122.445322,37.734516],[-122.446263,37.735143],[-122.446419,37.735614],[-122.445949,37.735614],[-122.444694,37.737653],[-122.442342,37.737653],[-122.442655,37.738280],[-122.442498,37.739378],[-122.442812,37.739691],[-122.443910,37.740162],[-122.444694,37.740789],[-122.445949,37.741103],[-122.446106,37.741417],[-122.446263,37.742044],[-122.446733,37.742515],[-122.449086,37.742828],[-122.449870,37.743299],[-122.450654,37.744083],[-122.451595,37.745495],[-122.450811,37.745808],[-122.450811,37.746122],[-122.450654,37.746122],[-122.450184,37.746279],[-122.449399,37.746592],[-122.449870,37.746906],[-122.450811,37.746906],[-122.452066,37.748318],[-122.452066,37.751298],[-122.453007,37.751141],[-122.453164,37.750357],[-122.453007,37.749102],[-122.454105,37.748945],[-122.454105,37.750670],[-122.454418,37.751298],[-122.454575,37.751298],[-122.454575,37.747063],[-122.455516,37.747063],[-122.455830,37.746436],[-122.457869,37.746906],[-122.458653,37.746749],[-122.458653,37.746906],[-122.459124,37.747220],[-122.458653,37.747533],[-122.458653,37.748004],[-122.460535,37.749886],[-122.461476,37.751455],[-122.462104,37.751925],[-122.463358,37.753023],[-122.463829,37.753807],[-122.463515,37.755376],[-122.463672,37.756473],[-122.462574,37.756630],[-122.463201,37.758669],[-122.460065,37.759297],[-122.460535,37.760551],[-122.460849,37.762590],[-122.457555,37.763531],[-122.456457,37.763845],[-122.456928,37.761649],[-122.458183,37.760865],[-122.457085,37.761179],[-122.456144,37.760865],[-122.455830,37.760708],[-122.455987,37.760238],[-122.456771,37.759767],[-122.456771,37.759453],[-122.456614,37.759297],[-122.455830,37.758983],[-122.455203,37.758983],[-122.454889,37.758826],[-122.453948,37.758826],[-122.453634,37.758669],[-122.452850,37.758042],[-122.453791,37.757414],[-122.453634,37.756944],[-122.453320,37.756630],[-122.452379,37.757101],[-122.452066,37.756944],[-122.452066,37.756630],[-122.451125,37.756787],[-122.450340,37.757414],[-122.447988,37.757571],[-122.447047,37.756944],[-122.446890,37.756473],[-122.445949,37.756473],[-122.444694,37.756630],[-122.444224,37.755846],[-122.444224,37.755062],[-122.443910,37.754434],[-122.444067,37.754121],[-122.442969,37.753964],[-122.442498,37.754434],[-122.442342,37.755062],[-122.442498,37.755376],[-122.442969,37.755532],[-122.441244,37.756317],[-122.441087,37.755846],[-122.442498,37.753650],[-122.442655,37.752552],[-122.442498,37.753650],[-122.440930,37.755846],[-122.440930,37.756160],[-122.440146,37.756317],[-122.439989,37.755846],[-122.440460,37.755062],[-122.441244,37.753807],[-122.442498,37.752552],[-122.442498,37.752396],[-122.442812,37.752396],[-122.443596,37.749416],[-122.444224,37.748318],[-122.444224,37.747533],[-122.444381,37.747220],[-122.444851,37.746906],[-122.444537,37.746749],[-122.443910,37.746749],[-122.442498,37.748161],[-122.441401,37.748631],[-122.438264,37.748631],[-122.438107,37.747847],[-122.424776,37.748631]]]}}
,{"id":94124,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.407837,37.737809],[-122.407994,37.739221],[-122.407523,37.741417],[-122.405955,37.743456],[-122.406111,37.743612],[-122.405484,37.744554],[-122.405170,37.744397],[-122.404857,37.745338],[-122.403916,37.748318],[-122.405014,37.749102],[-122.403759,37.749416],[-122.402975,37.749572],[-122.402034,37.749416],[-122.395290,37.749729],[-122.395290,37.750984],[-122.395290,37.751298],[-122.393251,37.751455],[-122.393251,37.749886],[-122.391368,37.750200],[-122.386506,37.750357],[-122.386820,37.752866],[-122.380076,37.753337],[-122.378037,37.753650],[-122.375998,37.752552],[-122.373175,37.745965],[-122.374116,37.745024],[-122.372704,37.745495],[-122.367686,37.740162],[-122.368313,37.740005],[-122.368313,37.739848],[-122.371293,37.739691],[-122.371293,37.739848],[-122.373959,37.739535],[-122.373646,37.738907],[-122.373175,37.738437],[-122.372548,37.738280],[-122.370509,37.738123],[-122.367529,37.738280],[-122.367372,37.738280],[-122.370822,37.737339],[-122.371293,37.737025],[-122.371920,37.737025],[-122.372077,37.737182],[-122.372861,37.737025],[-122.373489,37.737182],[-122.374273,37.737809],[-122.375684,37.738437],[-122.375998,37.738437],[-122.376312,37.738437],[-122.376469,37.738280],[-122.375998,37.737966],[-122.375214,37.737809],[-122.374900,37.737339],[-122.375214,37.736241],[-122.375684,37.735770],[-122.375998,37.735770],[-122.375841,37.735457],[-122.375998,37.735143],[-122.375841,37.734986],[-122.375371,37.735457],[-122.374900,37.734986],[-122.375214,37.734516],[-122.374900,37.734359],[-122.374900,37.733888],[-122.375214,37.733732],[-122.375684,37.732947],[-122.375528,37.732790],[-122.375684,37.732790],[-122.375214,37.732947],[-122.374900,37.732790],[-122.374587,37.732947],[-122.374900,37.732634],[-122.374900,37.732477],[-122.374743,37.732634],[-122.374116,37.732634],[-122.373489,37.732947],[-122.372548,37.734045],[-122.371920,37.734202],[-122.370666,37.733104],[-122.369881,37.732634],[-122.369881,37.732477],[-122.369725,37.732320],[-122.367058,37.735457],[-122.367372,37.735300],[-122.367215,37.735614],[-122.366745,37.735457],[-122.366901,37.734986],[-122.367999,37.733732],[-122.369568,37.732320],[-122.369411,37.732163],[-122.368783,37.732006],[-122.368627,37.732006],[-122.368627,37.732320],[-122.368313,37.732320],[-122.367529,37.732006],[-122.366901,37.732320],[-122.366745,37.732163],[-122.365176,37.733732],[-122.366588,37.732163],[-122.366274,37.732163],[-122.365490,37.732947],[-122.365333,37.732947],[-122.366117,37.731849],[-122.365960,37.731849],[-122.365019,37.732790],[-122.365019,37.732634],[-122.365804,37.731693],[-122.365647,37.731693],[-122.364862,37.732477],[-122.364706,37.732477],[-122.365176,37.732006],[-122.363765,37.731222],[-122.362824,37.732163],[-122.362667,37.732006],[-122.363451,37.731065],[-122.362824,37.730752],[-122.362039,37.731693],[-122.361726,37.731536],[-122.362510,37.730595],[-122.362039,37.730281],[-122.362039,37.730281],[-122.361882,37.730124],[-122.361098,37.730124],[-122.360941,37.729967],[-122.360785,37.729967],[-122.360785,37.730281],[-122.359844,37.730281],[-122.358746,37.729811],[-122.358903,37.729654],[-122.358903,37.729654],[-122.358903,37.729497],[-122.362039,37.728869],[-122.362353,37.728556],[-122.361412,37.728556],[-122.357805,37.729497],[-122.357491,37.729183],[-122.357805,37.729026],[-122.360157,37.728399],[-122.360471,37.728242],[-122.360000,37.728085],[-122.357177,37.728869],[-122.357177,37.728713],[-122.357020,37.728713],[-122.357177,37.727928],[-122.356864,37.727928],[-122.358589,37.715852],[-122.360314,37.708323],[-122.381017,37.708480],[-122.393251,37.708323],[-122.393721,37.708167],[-122.390898,37.710362],[-122.390898,37.711147],[-122.394192,37.711303],[-122.394819,37.710990],[-122.395760,37.710833],[-122.395917,37.711774],[-122.396544,37.712872],[-122.398426,37.715538],[-122.397956,37.715538],[-122.398269,37.716009],[-122.398583,37.717891],[-122.399054,37.719773],[-122.399367,37.719930],[-122.401249,37.724635],[-122.402034,37.727772],[-122.402818,37.729340],[-122.405170,37.733732],[-122.406425,37.735457],[-122.406739,37.736398],[-122.406896,37.737966],[-122.407837,37.737809]]]}}
,{"id":94134,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.415522,37.732163],[-122.414424,37.732477],[-122.412071,37.733418],[-122.409876,37.734673],[-122.408778,37.735770],[-122.408307,37.736712],[-122.408150,37.737653],[-122.407837,37.737809],[-122.406896,37.737966],[-122.406739,37.736398],[-122.406425,37.735457],[-122.405170,37.733732],[-122.402818,37.729340],[-122.402034,37.727772],[-122.401249,37.724635],[-122.399367,37.719930],[-122.399054,37.719773],[-122.398583,37.717891],[-122.398269,37.716009],[-122.397956,37.715538],[-122.398426,37.715538],[-122.396544,37.712872],[-122.395917,37.711774],[-122.395760,37.710833],[-122.394819,37.710990],[-122.394192,37.711303],[-122.390898,37.711147],[-122.390898,37.710362],[-122.393721,37.708167],[-122.395133,37.708323],[-122.405327,37.708323],[-122.423834,37.708167],[-122.428226,37.708480],[-122.428226,37.708637],[-122.428226,37.709264],[-122.429324,37.709578],[-122.430108,37.710833],[-122.429951,37.711617],[-122.427442,37.710676],[-122.427128,37.711460],[-122.426814,37.711303],[-122.425560,37.714440],[-122.427285,37.715068],[-122.426658,37.717106],[-122.426344,37.718518],[-122.425873,37.719302],[-122.425403,37.720243],[-122.424619,37.721655],[-122.424776,37.722125],[-122.423834,37.723694],[-122.422893,37.724007],[-122.423521,37.725733],[-122.424148,37.725890],[-122.423050,37.727301],[-122.423678,37.728713],[-122.420541,37.728869],[-122.420384,37.729340],[-122.420541,37.729340],[-122.420384,37.729654],[-122.420227,37.731536],[-122.421796,37.731065],[-122.421639,37.731849],[-122.419443,37.732006],[-122.416620,37.732006],[-122.415522,37.732163]]]}}
,{"id":94108,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.414895,37.795056],[-122.404386,37.796311],[-122.403288,37.795527],[-122.405014,37.795370],[-122.404543,37.793488],[-122.403916,37.789880],[-122.403445,37.787685],[-122.404543,37.786744],[-122.404857,37.786744],[-122.406425,37.786587],[-122.406739,37.788469],[-122.408464,37.788312],[-122.408621,37.789253],[-122.411915,37.788783],[-122.412228,37.790665],[-122.413954,37.790508],[-122.414895,37.795056]]]}}
,{"id":94130,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.366431,37.807603],[-122.367842,37.807917],[-122.372861,37.811054],[-122.372234,37.811681],[-122.371607,37.815132],[-122.379449,37.826895],[-122.378194,37.830502],[-122.373332,37.832384],[-122.368783,37.831286],[-122.367529,37.830188],[-122.367372,37.829404],[-122.367215,37.829561],[-122.367215,37.829875],[-122.366901,37.829561],[-122.366745,37.829561],[-122.366901,37.830032],[-122.366745,37.830032],[-122.366588,37.829718],[-122.366274,37.829875],[-122.366745,37.830659],[-122.366431,37.830816],[-122.365490,37.829091],[-122.365960,37.828934],[-122.366274,37.829561],[-122.366431,37.829404],[-122.366431,37.829091],[-122.366588,37.829091],[-122.366745,37.829404],[-122.366901,37.829247],[-122.366901,37.828934],[-122.367058,37.829247],[-122.367215,37.829247],[-122.367058,37.828620],[-122.362980,37.822503],[-122.363137,37.822033],[-122.361882,37.821562],[-122.362039,37.821248],[-122.363294,37.821562],[-122.363451,37.821092],[-122.362039,37.820778],[-122.362196,37.820621],[-122.363608,37.820935],[-122.363765,37.820464],[-122.362353,37.820151],[-122.362510,37.819837],[-122.364078,37.820151],[-122.364235,37.819680],[-122.364078,37.819053],[-122.365019,37.818425],[-122.364862,37.818269],[-122.364078,37.818739],[-122.364706,37.818269],[-122.364549,37.818112],[-122.364706,37.817955],[-122.365333,37.818582],[-122.371136,37.816073],[-122.367686,37.812465],[-122.359216,37.814975],[-122.358589,37.814504],[-122.359216,37.813720],[-122.360941,37.812465],[-122.360628,37.811211],[-122.361412,37.810113],[-122.362353,37.807290],[-122.366431,37.807603]]]}}
,{"id":95686,"type":"Feature","properties":{"name":"Thornton"},"geometry":{"type":"Polygon","coordinates":[[[-121.448130,38.255069],[-121.447817,38.255069],[-121.444366,38.246129],[-121.438406,38.246129],[-121.438092,38.246129],[-121.437465,38.246600],[-121.431191,38.246443],[-121.429780,38.244561],[-121.428525,38.241424],[-121.428368,38.231857],[-121.419272,38.232014],[-121.419115,38.227779],[-121.418958,38.226995],[-121.418174,38.226210],[-121.416448,38.225113],[-121.416135,38.224642],[-121.416292,38.224328],[-121.417546,38.222917],[-121.417233,38.222289],[-121.415978,38.219780],[-121.415351,38.219153],[-121.415351,38.218839],[-121.415507,38.218682],[-121.411430,38.211311],[-121.411743,38.211311],[-121.409861,38.208017],[-121.410018,38.207860],[-121.409704,38.206919],[-121.409704,38.204723],[-121.409861,38.204253],[-121.410645,38.203939],[-121.414096,38.203939],[-121.414253,38.203939],[-121.414880,38.203939],[-121.415037,38.204096],[-121.423977,38.204253],[-121.435426,38.204410],[-121.435426,38.204096],[-121.455972,38.204096],[-121.457854,38.204096],[-121.458639,38.202998],[-121.459893,38.201900],[-121.460050,38.200959],[-121.459736,38.199704],[-121.459893,38.197665],[-121.460364,38.197352],[-121.462873,38.196411],[-121.463187,38.195627],[-121.463344,38.195470],[-121.464128,38.195470],[-121.465383,38.195627],[-121.466481,38.195313],[-121.467265,38.194999],[-121.468206,38.194372],[-121.469617,38.194842],[-121.470245,38.194372],[-121.471186,38.194372],[-121.471656,38.194372],[-121.472440,38.194842],[-121.473382,38.194529],[-121.474636,38.194686],[-121.475577,38.194372],[-121.477616,38.194372],[-121.478557,38.193901],[-121.480753,38.192490],[-121.481067,38.191549],[-121.481694,38.190137],[-121.482165,38.189667],[-121.484674,38.188412],[-121.485145,38.187941],[-121.485458,38.186059],[-121.485772,38.185432],[-121.486713,38.184334],[-121.488125,38.182766],[-121.489222,38.181040],[-121.490163,38.180727],[-121.492516,38.180413],[-121.493143,38.179943],[-121.494555,38.178217],[-121.495182,38.177904],[-121.496594,38.177747],[-121.496751,38.177433],[-121.497064,38.176963],[-121.497064,38.176649],[-121.496280,38.174139],[-121.496280,38.172414],[-121.495496,38.171316],[-121.494712,38.169121],[-121.493300,38.167395],[-121.492202,38.165356],[-121.492359,38.165200],[-121.493300,38.163945],[-121.500358,38.161279],[-121.503965,38.157358],[-121.504122,38.157044],[-121.503495,38.155319],[-121.503652,38.150770],[-121.506789,38.146222],[-121.510082,38.147163],[-121.510866,38.146692],[-121.510866,38.144967],[-121.504593,38.143556],[-121.504279,38.141987],[-121.505063,38.140732],[-121.505063,38.140105],[-121.503965,38.137909],[-121.503652,38.136498],[-121.507259,38.133518],[-121.503809,38.130067],[-121.498476,38.128969],[-121.496908,38.128185],[-121.496123,38.126303],[-121.499260,38.123323],[-121.499260,38.122382],[-121.496123,38.119402],[-121.495025,38.117991],[-121.495339,38.117206],[-121.495967,38.116736],[-121.501456,38.116265],[-121.505377,38.116736],[-121.510239,38.119402],[-121.511964,38.121127],[-121.516983,38.123009],[-121.528433,38.121912],[-121.536275,38.119402],[-121.546783,38.117206],[-121.556664,38.117834],[-121.559957,38.120657],[-121.562781,38.130538],[-121.565604,38.132263],[-121.566702,38.132577],[-121.571877,38.131479],[-121.567643,38.133675],[-121.562467,38.136027],[-121.560742,38.136498],[-121.558075,38.136498],[-121.557762,38.136811],[-121.557134,38.137909],[-121.557134,38.138380],[-121.557291,38.139164],[-121.559644,38.141203],[-121.560114,38.142144],[-121.559801,38.143085],[-121.559173,38.143869],[-121.558232,38.144340],[-121.554311,38.145281],[-121.553370,38.145438],[-121.551802,38.145281],[-121.550547,38.145594],[-121.549920,38.146065],[-121.548508,38.147477],[-121.547253,38.148104],[-121.546155,38.147947],[-121.544430,38.147320],[-121.543803,38.147320],[-121.543332,38.147633],[-121.543176,38.148104],[-121.542705,38.150770],[-121.542234,38.151398],[-121.541293,38.151868],[-121.540196,38.152025],[-121.537686,38.151241],[-121.536902,38.151241],[-121.536275,38.151554],[-121.535333,38.153436],[-121.534549,38.155632],[-121.534706,38.156103],[-121.536275,38.157201],[-121.536431,38.157828],[-121.536118,38.158142],[-121.533765,38.160024],[-121.533608,38.160808],[-121.533922,38.162063],[-121.533608,38.162533],[-121.532354,38.163004],[-121.531412,38.163161],[-121.531099,38.163317],[-121.530628,38.165356],[-121.529844,38.166925],[-121.529687,38.168336],[-121.529374,38.168964],[-121.528589,38.169748],[-121.524982,38.171473],[-121.524511,38.171787],[-121.524355,38.172728],[-121.524668,38.174767],[-121.525923,38.176649],[-121.526080,38.177119],[-121.525923,38.178060],[-121.526080,38.178845],[-121.526550,38.179786],[-121.527648,38.180570],[-121.527805,38.181040],[-121.527805,38.181668],[-121.527648,38.182138],[-121.527178,38.182922],[-121.525453,38.183550],[-121.524668,38.184177],[-121.524511,38.184648],[-121.524511,38.185589],[-121.525609,38.186687],[-121.526237,38.188726],[-121.526707,38.189980],[-121.528119,38.191706],[-121.528903,38.192960],[-121.529217,38.193901],[-121.528903,38.195313],[-121.528433,38.195940],[-121.527805,38.196411],[-121.525609,38.197352],[-121.524511,38.199391],[-121.523257,38.200332],[-121.522159,38.201900],[-121.520747,38.202998],[-121.519493,38.203155],[-121.515415,38.202998],[-121.513533,38.202371],[-121.513219,38.202371],[-121.511651,38.203312],[-121.509925,38.204566],[-121.508357,38.207076],[-121.508043,38.209272],[-121.507102,38.210056],[-121.504750,38.211467],[-121.504279,38.212095],[-121.504279,38.212565],[-121.504593,38.213193],[-121.504750,38.213977],[-121.505220,38.215859],[-121.506318,38.217584],[-121.507416,38.221505],[-121.507416,38.222603],[-121.507259,38.223230],[-121.506318,38.224642],[-121.506161,38.224328],[-121.504279,38.224485],[-121.503495,38.225113],[-121.502240,38.225583],[-121.501613,38.226054],[-121.500985,38.226838],[-121.500044,38.227308],[-121.498476,38.227622],[-121.497692,38.227622],[-121.495810,38.227151],[-121.493771,38.227622],[-121.493143,38.227622],[-121.492516,38.227308],[-121.491732,38.227622],[-121.491104,38.228563],[-121.490634,38.229504],[-121.490791,38.232170],[-121.490477,38.232955],[-121.489379,38.233896],[-121.487654,38.234680],[-121.487183,38.235150],[-121.486713,38.235778],[-121.486556,38.236719],[-121.486556,38.237346],[-121.487340,38.238758],[-121.487027,38.239856],[-121.486556,38.240483],[-121.484674,38.241424],[-121.483262,38.242208],[-121.482165,38.244090],[-121.479969,38.245188],[-121.478557,38.246129],[-121.478244,38.248482],[-121.478557,38.251148],[-121.479655,38.252089],[-121.479969,38.252716],[-121.480126,38.253501],[-121.476989,38.256010],[-121.476518,38.256324],[-121.476518,38.257422],[-121.476205,38.257735],[-121.475734,38.258049],[-121.474166,38.258520],[-121.471656,38.259774],[-121.471029,38.259931],[-121.468833,38.259461],[-121.467108,38.259931],[-121.466010,38.259931],[-121.464442,38.259461],[-121.460991,38.259147],[-121.459736,38.258363],[-121.458952,38.257579],[-121.458325,38.257265],[-121.457227,38.257265],[-121.455972,38.257579],[-121.455502,38.257422],[-121.453306,38.255853],[-121.450953,38.254755],[-121.449855,38.254599],[-121.448130,38.255069]]]}}
,{"id":95242,"type":"Feature","properties":{"name":"Lodi"},"geometry":{"type":"Polygon","coordinates":[[[-121.435426,38.204096],[-121.435426,38.204410],[-121.423977,38.204253],[-121.415037,38.204096],[-121.414880,38.203939],[-121.414253,38.203939],[-121.414096,38.203939],[-121.410645,38.203939],[-121.409861,38.204253],[-121.409704,38.204723],[-121.409704,38.206919],[-121.410018,38.207860],[-121.409861,38.208017],[-121.411743,38.211311],[-121.411430,38.211311],[-121.415507,38.218682],[-121.415351,38.218839],[-121.415351,38.219153],[-121.415978,38.219780],[-121.417233,38.222289],[-121.409861,38.222289],[-121.409861,38.225583],[-121.408136,38.225426],[-121.407822,38.225269],[-121.407352,38.224485],[-121.407038,38.224172],[-121.405313,38.224328],[-121.404999,38.224172],[-121.403901,38.223230],[-121.403588,38.222760],[-121.402646,38.222133],[-121.400764,38.221192],[-121.399823,38.221192],[-121.395589,38.221035],[-121.393550,38.219309],[-121.393079,38.218682],[-121.392922,38.216800],[-121.393236,38.215859],[-121.393236,38.214918],[-121.393863,38.214134],[-121.393707,38.213350],[-121.391511,38.211311],[-121.390570,38.210683],[-121.389786,38.210526],[-121.388060,38.210213],[-121.386962,38.210683],[-121.386021,38.210213],[-121.385551,38.210213],[-121.383512,38.210683],[-121.382571,38.210526],[-121.382100,38.210056],[-121.380532,38.210056],[-121.380375,38.210213],[-121.381003,38.210997],[-121.381003,38.211624],[-121.380218,38.212095],[-121.379434,38.212095],[-121.378493,38.211624],[-121.376454,38.209899],[-121.374886,38.210056],[-121.375199,38.209899],[-121.374415,38.210056],[-121.372847,38.209272],[-121.372847,38.209115],[-121.371906,38.208958],[-121.370965,38.209115],[-121.369867,38.209742],[-121.368612,38.209585],[-121.366260,38.210056],[-121.366103,38.209899],[-121.365318,38.208487],[-121.364064,38.208801],[-121.363280,38.208644],[-121.362182,38.208644],[-121.359986,38.210056],[-121.359045,38.210370],[-121.358731,38.210840],[-121.358261,38.212252],[-121.356379,38.212252],[-121.355751,38.212095],[-121.354340,38.210840],[-121.353242,38.210370],[-121.350419,38.209585],[-121.348066,38.209272],[-121.347439,38.208801],[-121.346811,38.207860],[-121.346341,38.207546],[-121.343988,38.206762],[-121.343047,38.207233],[-121.342733,38.207233],[-121.339753,38.205978],[-121.336930,38.205821],[-121.336146,38.205664],[-121.335362,38.205037],[-121.335048,38.204723],[-121.334891,38.204096],[-121.335205,38.203782],[-121.334891,38.203625],[-121.335676,38.202528],[-121.335989,38.201587],[-121.336460,38.200645],[-121.335832,38.199704],[-121.335832,38.198607],[-121.335519,38.198293],[-121.333166,38.198136],[-121.332696,38.197979],[-121.332225,38.197509],[-121.332696,38.196254],[-121.332539,38.195783],[-121.332225,38.195470],[-121.331441,38.195470],[-121.331127,38.195156],[-121.330970,38.194842],[-121.331598,38.193588],[-121.331284,38.193431],[-121.330029,38.192803],[-121.328931,38.191862],[-121.328618,38.191235],[-121.328618,38.190765],[-121.328304,38.190451],[-121.327049,38.190765],[-121.324540,38.190137],[-121.323442,38.190137],[-121.322972,38.189980],[-121.322031,38.189196],[-121.326579,38.189196],[-121.325795,38.167709],[-121.325481,38.167082],[-121.318266,38.159083],[-121.318110,38.158926],[-121.318266,38.158612],[-121.316227,38.158299],[-121.316071,38.153436],[-121.315914,38.153280],[-121.314973,38.153907],[-121.314032,38.153907],[-121.312777,38.153593],[-121.311522,38.152966],[-121.310895,38.151868],[-121.310895,38.149045],[-121.308385,38.148888],[-121.307915,38.149359],[-121.307601,38.150770],[-121.304308,38.151868],[-121.304308,38.151554],[-121.304151,38.151711],[-121.304308,38.150770],[-121.302425,38.150613],[-121.301955,38.149515],[-121.300387,38.149672],[-121.301014,38.150457],[-121.299916,38.150300],[-121.300387,38.150927],[-121.300387,38.151241],[-121.298975,38.150457],[-121.298348,38.149202],[-121.298034,38.148888],[-121.297877,38.149202],[-121.297407,38.150300],[-121.296309,38.150770],[-121.295524,38.148888],[-121.293799,38.149829],[-121.291760,38.149672],[-121.291447,38.149986],[-121.291290,38.150143],[-121.291447,38.150613],[-121.292074,38.152025],[-121.291917,38.152025],[-121.290819,38.151398],[-121.290192,38.151398],[-121.288467,38.149515],[-121.288310,38.149045],[-121.288310,38.148418],[-121.288780,38.147477],[-121.288780,38.146379],[-121.288467,38.145751],[-121.288153,38.126303],[-121.285957,38.126303],[-121.285957,38.124735],[-121.288153,38.124735],[-121.288153,38.122696],[-121.287996,38.113442],[-121.288153,38.113442],[-121.288153,38.112815],[-121.287996,38.112815],[-121.287839,38.107012],[-121.286428,38.104345],[-121.286271,38.103404],[-121.286271,38.101052],[-121.288153,38.100895],[-121.287839,38.100738],[-121.287526,38.087564],[-121.286428,38.087564],[-121.286428,38.086309],[-121.283291,38.083799],[-121.283134,38.077683],[-121.287369,38.075016],[-121.287212,38.057450],[-121.310581,38.057607],[-121.351830,38.057764],[-121.351987,38.072350],[-121.377395,38.072821],[-121.378336,38.072507],[-121.386806,38.072507],[-121.387590,38.072821],[-121.388688,38.072977],[-121.397628,38.072977],[-121.398725,38.072664],[-121.416605,38.072821],[-121.416919,38.072821],[-121.415037,38.075957],[-121.414723,38.076898],[-121.415351,38.083015],[-121.415664,38.083015],[-121.415664,38.082701],[-121.416135,38.082858],[-121.417076,38.084113],[-121.420997,38.085838],[-121.424290,38.085368],[-121.424134,38.084740],[-121.424447,38.084740],[-121.426800,38.084584],[-121.428368,38.084270],[-121.431976,38.084897],[-121.433230,38.084740],[-121.433544,38.084584],[-121.435269,38.082858],[-121.435740,38.082545],[-121.442798,38.082074],[-121.443582,38.080663],[-121.444052,38.080035],[-121.445307,38.079251],[-121.448130,38.076742],[-121.451267,38.075173],[-121.452051,38.073762],[-121.453620,38.071095],[-121.454090,38.070625],[-121.456756,38.069527],[-121.457854,38.068586],[-121.458168,38.067958],[-121.459580,38.067958],[-121.459736,38.068272],[-121.462403,38.070154],[-121.464128,38.070938],[-121.465383,38.072350],[-121.468363,38.073134],[-121.469304,38.073605],[-121.469774,38.074232],[-121.470402,38.075330],[-121.470402,38.075644],[-121.469617,38.079565],[-121.471343,38.082858],[-121.472284,38.084113],[-121.472911,38.084584],[-121.474009,38.084740],[-121.478400,38.085211],[-121.479812,38.085838],[-121.480439,38.087093],[-121.481067,38.089759],[-121.482792,38.091014],[-121.483576,38.091328],[-121.484517,38.091171],[-121.486556,38.090387],[-121.488909,38.089602],[-121.489850,38.089446],[-121.490791,38.089602],[-121.491575,38.090230],[-121.492830,38.091485],[-121.493300,38.091798],[-121.493928,38.091798],[-121.494555,38.091798],[-121.497378,38.090073],[-121.500201,38.089289],[-121.501299,38.088661],[-121.501299,38.087407],[-121.502083,38.085368],[-121.502240,38.084427],[-121.499574,38.080819],[-121.499103,38.079878],[-121.498947,38.078780],[-121.500985,38.076742],[-121.500985,38.075957],[-121.500829,38.074075],[-121.501299,38.072350],[-121.503024,38.072664],[-121.502397,38.073762],[-121.502397,38.075016],[-121.502711,38.076898],[-121.502397,38.077526],[-121.501299,38.079408],[-121.501142,38.079878],[-121.501613,38.080192],[-121.502868,38.080663],[-121.502868,38.081290],[-121.502397,38.082388],[-121.502554,38.082701],[-121.503652,38.083486],[-121.503652,38.083799],[-121.497849,38.105757],[-121.499103,38.106384],[-121.500201,38.107169],[-121.500672,38.107953],[-121.501142,38.109521],[-121.501142,38.110149],[-121.500829,38.110933],[-121.499417,38.112031],[-121.498633,38.113285],[-121.498476,38.114070],[-121.498319,38.115167],[-121.498633,38.115324],[-121.501456,38.115167],[-121.501456,38.116265],[-121.495967,38.116736],[-121.495339,38.117206],[-121.495025,38.117991],[-121.496123,38.119402],[-121.499260,38.122382],[-121.499260,38.123323],[-121.496123,38.126303],[-121.496908,38.128185],[-121.498476,38.128969],[-121.503809,38.130067],[-121.507259,38.133518],[-121.503652,38.136498],[-121.503965,38.137909],[-121.505063,38.140105],[-121.505063,38.140732],[-121.504279,38.141987],[-121.504593,38.143556],[-121.510866,38.144967],[-121.510866,38.146692],[-121.510082,38.147163],[-121.506789,38.146222],[-121.503652,38.150770],[-121.503495,38.155319],[-121.504122,38.157044],[-121.503965,38.157358],[-121.500358,38.161279],[-121.493300,38.163945],[-121.492359,38.165200],[-121.492202,38.165356],[-121.493300,38.167395],[-121.494712,38.169121],[-121.495496,38.171316],[-121.496280,38.172414],[-121.496280,38.174139],[-121.497064,38.176649],[-121.497064,38.176963],[-121.496751,38.177433],[-121.496594,38.177747],[-121.495182,38.177904],[-121.494555,38.178217],[-121.493143,38.179943],[-121.492516,38.180413],[-121.490163,38.180727],[-121.489222,38.181040],[-121.488125,38.182766],[-121.486713,38.184334],[-121.485772,38.185432],[-121.485458,38.186059],[-121.485145,38.187941],[-121.484674,38.188412],[-121.482165,38.189667],[-121.481694,38.190137],[-121.481067,38.191549],[-121.480753,38.192490],[-121.478557,38.193901],[-121.477616,38.194372],[-121.475577,38.194372],[-121.474636,38.194686],[-121.473382,38.194529],[-121.472440,38.194842],[-121.471656,38.194372],[-121.471186,38.194372],[-121.470245,38.194372],[-121.469617,38.194842],[-121.468206,38.194372],[-121.467265,38.194999],[-121.466481,38.195313],[-121.465383,38.195627],[-121.464128,38.195470],[-121.463344,38.195470],[-121.463187,38.195627],[-121.462873,38.196411],[-121.460364,38.197352],[-121.459893,38.197665],[-121.459736,38.199704],[-121.460050,38.200959],[-121.459893,38.201900],[-121.458639,38.202998],[-121.457854,38.204096],[-121.455972,38.204096],[-121.435426,38.204096]]]}}
,{"id":95211,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.318580,37.979814],[-121.317796,37.979814],[-121.315443,37.980598],[-121.309954,37.984363],[-121.309326,37.983265],[-121.306660,37.979814],[-121.313561,37.978089],[-121.313091,37.976677],[-121.315286,37.976207],[-121.316227,37.976364],[-121.316698,37.975736],[-121.317482,37.975423],[-121.318580,37.977932],[-121.318580,37.979814]]]}}
,{"id":95240,"type":"Feature","properties":{"name":"Lodi"},"geometry":{"type":"Polygon","coordinates":[[[-121.288153,38.122696],[-121.288153,38.124735],[-121.285957,38.124735],[-121.285957,38.126303],[-121.288153,38.126303],[-121.288467,38.145751],[-121.288780,38.146379],[-121.288780,38.147477],[-121.288310,38.148418],[-121.288310,38.149045],[-121.288467,38.149515],[-121.290192,38.151398],[-121.289565,38.151711],[-121.289565,38.152182],[-121.289721,38.152495],[-121.290349,38.152809],[-121.290349,38.152966],[-121.289408,38.152809],[-121.288624,38.153280],[-121.288310,38.154691],[-121.287839,38.155005],[-121.287526,38.154691],[-121.287369,38.154221],[-121.286585,38.153593],[-121.285800,38.153123],[-121.285330,38.152339],[-121.284859,38.151711],[-121.283761,38.151554],[-121.282664,38.152652],[-121.282350,38.152809],[-121.282193,38.152652],[-121.282977,38.151868],[-121.283134,38.151554],[-121.283134,38.151084],[-121.282977,38.150770],[-121.282350,38.150300],[-121.281095,38.150770],[-121.280468,38.150613],[-121.280311,38.150457],[-121.279840,38.149359],[-121.279056,38.148418],[-121.278429,38.148261],[-121.277331,38.148574],[-121.277174,38.147633],[-121.277017,38.147320],[-121.276860,38.146692],[-121.274978,38.146692],[-121.276390,38.147006],[-121.277017,38.147633],[-121.277017,38.148261],[-121.276860,38.148418],[-121.276233,38.148418],[-121.275449,38.147947],[-121.274351,38.147477],[-121.274037,38.147790],[-121.274194,38.147947],[-121.275292,38.147947],[-121.276704,38.148888],[-121.277488,38.148888],[-121.278272,38.149359],[-121.278429,38.149672],[-121.278429,38.149986],[-121.277958,38.150457],[-121.277017,38.150300],[-121.275919,38.149672],[-121.274037,38.149045],[-121.272155,38.148574],[-121.271998,38.148574],[-121.271371,38.148888],[-121.270901,38.149672],[-121.270587,38.149986],[-121.270273,38.149986],[-121.269959,38.149829],[-121.269959,38.149045],[-121.269489,38.148574],[-121.268705,38.148418],[-121.268391,38.148574],[-121.267921,38.149045],[-121.267293,38.149045],[-121.266980,38.148888],[-121.266352,38.147947],[-121.265411,38.147633],[-121.264627,38.147790],[-121.264000,38.148574],[-121.263529,38.149045],[-121.261490,38.148888],[-121.261020,38.148731],[-121.260863,38.148261],[-121.260392,38.147790],[-121.257883,38.146536],[-121.257569,38.146692],[-121.257726,38.147633],[-121.257569,38.147947],[-121.257412,38.147947],[-121.256785,38.147633],[-121.256785,38.146692],[-121.256628,38.146379],[-121.256158,38.146065],[-121.255373,38.146065],[-121.255060,38.146379],[-121.254432,38.147320],[-121.253334,38.148104],[-121.253334,38.148574],[-121.253021,38.148888],[-121.252080,38.148888],[-121.251139,38.148418],[-121.250668,38.148418],[-121.250198,38.148731],[-121.250041,38.149515],[-121.249413,38.149986],[-121.248943,38.149829],[-121.247688,38.149045],[-121.247218,38.149045],[-121.246904,38.149515],[-121.247218,38.150300],[-121.247218,38.150927],[-121.246904,38.151241],[-121.246277,38.151398],[-121.245806,38.151084],[-121.244708,38.149202],[-121.243297,38.149359],[-121.243297,38.149672],[-121.242983,38.149829],[-121.242199,38.149515],[-121.241101,38.147790],[-121.240160,38.147320],[-121.239689,38.146379],[-121.238278,38.145594],[-121.237964,38.144967],[-121.237494,38.144810],[-121.237180,38.144967],[-121.236709,38.145908],[-121.235768,38.147006],[-121.235455,38.147006],[-121.234984,38.146692],[-121.234357,38.146379],[-121.233259,38.146692],[-121.232945,38.147006],[-121.232945,38.147947],[-121.232631,38.148574],[-121.231847,38.148888],[-121.229808,38.149045],[-121.229338,38.148731],[-121.229338,38.147477],[-121.229181,38.146692],[-121.226672,38.144183],[-121.226044,38.142928],[-121.225417,38.142771],[-121.222594,38.143556],[-121.221182,38.144497],[-121.221025,38.145751],[-121.220712,38.146065],[-121.219457,38.147477],[-121.218359,38.147790],[-121.218202,38.147947],[-121.218045,38.148261],[-121.218202,38.148418],[-121.218986,38.148261],[-121.219771,38.148731],[-121.220084,38.149045],[-121.220084,38.149359],[-121.219614,38.151084],[-121.219300,38.151398],[-121.218830,38.151554],[-121.218986,38.152652],[-121.218986,38.153123],[-121.217575,38.154378],[-121.217418,38.155162],[-121.216791,38.155319],[-121.215693,38.154534],[-121.215379,38.154378],[-121.213811,38.154691],[-121.213811,38.155005],[-121.214281,38.155475],[-121.214124,38.155946],[-121.213654,38.156260],[-121.213026,38.156416],[-121.212399,38.156887],[-121.211615,38.157358],[-121.211772,38.157985],[-121.211772,38.158612],[-121.210831,38.158926],[-121.209419,38.158612],[-121.209105,38.158612],[-121.208792,38.159083],[-121.209105,38.159553],[-121.208949,38.160494],[-121.208478,38.160808],[-121.207851,38.160808],[-121.207223,38.160651],[-121.206282,38.160024],[-121.206125,38.159553],[-121.204871,38.158612],[-121.204243,38.158455],[-121.203930,38.158612],[-121.203616,38.159083],[-121.203459,38.159553],[-121.202989,38.159710],[-121.202675,38.159553],[-121.202204,38.158769],[-121.201577,38.158455],[-121.200636,38.158299],[-121.199068,38.158612],[-121.196715,38.156416],[-121.194519,38.156260],[-121.194519,38.155946],[-121.194990,38.155005],[-121.194990,38.154378],[-121.194833,38.153593],[-121.194990,38.153123],[-121.195303,38.152809],[-121.196401,38.152495],[-121.196872,38.151868],[-121.196872,38.151554],[-121.196715,38.150927],[-121.195617,38.150613],[-121.194990,38.150143],[-121.194049,38.148731],[-121.193735,38.148418],[-121.192794,38.148261],[-121.191226,38.146379],[-121.178365,38.146692],[-121.178365,38.145594],[-121.178365,38.145438],[-121.187618,38.140262],[-121.187618,38.138066],[-121.172718,38.138066],[-121.172718,38.136184],[-121.164406,38.136184],[-121.164406,38.138380],[-121.162994,38.138850],[-121.161583,38.138693],[-121.161583,38.134459],[-121.153741,38.134459],[-121.153741,38.147006],[-121.133038,38.147320],[-121.133038,38.147947],[-121.133351,38.148261],[-121.138527,38.153123],[-121.138057,38.153280],[-121.137743,38.153907],[-121.137116,38.154221],[-121.136802,38.154691],[-121.135861,38.155162],[-121.134293,38.154534],[-121.133038,38.155005],[-121.131940,38.155475],[-121.131156,38.156260],[-121.130215,38.156730],[-121.130215,38.157044],[-121.130215,38.157671],[-121.129587,38.159710],[-121.129274,38.159867],[-121.128646,38.160024],[-121.128019,38.160181],[-121.126921,38.160965],[-121.125353,38.162690],[-121.124412,38.163317],[-121.124412,38.163788],[-121.123941,38.164258],[-121.123157,38.164415],[-121.122216,38.164258],[-121.121432,38.164729],[-121.120804,38.164886],[-121.118295,38.164886],[-121.117197,38.165356],[-121.115629,38.165513],[-121.114060,38.166611],[-121.111551,38.167395],[-121.112021,38.167552],[-121.114217,38.166768],[-121.114844,38.166925],[-121.115158,38.178374],[-121.096808,38.186059],[-121.097121,38.180413],[-121.096651,38.178374],[-121.096494,38.171316],[-121.094926,38.171473],[-121.092887,38.172101],[-121.088652,38.171787],[-121.081437,38.173198],[-121.078144,38.173198],[-121.077830,38.147947],[-121.040972,38.148574],[-121.040972,38.148888],[-121.036738,38.151868],[-121.025132,38.157044],[-121.023093,38.157671],[-121.019329,38.160181],[-121.017917,38.160494],[-121.017760,38.160965],[-121.016662,38.160808],[-121.016035,38.160494],[-121.015564,38.160651],[-121.012271,38.160651],[-121.012271,38.135714],[-121.016035,38.123166],[-121.016035,38.101522],[-121.031876,38.078624],[-121.048344,38.056980],[-121.077830,38.056980],[-121.077987,38.060273],[-121.077987,38.074859],[-121.123941,38.073762],[-121.123941,38.072193],[-121.125196,38.073291],[-121.125353,38.074389],[-121.125823,38.075016],[-121.126137,38.075173],[-121.127078,38.075016],[-121.128489,38.075173],[-121.128646,38.075016],[-121.128646,38.074389],[-121.128803,38.074232],[-121.132410,38.074232],[-121.133038,38.074389],[-121.133038,38.076585],[-121.133665,38.077369],[-121.133822,38.077369],[-121.133979,38.076742],[-121.134606,38.076114],[-121.134920,38.076114],[-121.135547,38.076271],[-121.136175,38.076114],[-121.136959,38.075800],[-121.137900,38.075016],[-121.139155,38.074859],[-121.139468,38.074389],[-121.139782,38.074389],[-121.140096,38.074703],[-121.141821,38.075016],[-121.142605,38.075644],[-121.142919,38.076271],[-121.143546,38.076428],[-121.143860,38.076271],[-121.144173,38.075487],[-121.144644,38.075016],[-121.145585,38.074703],[-121.146056,38.074389],[-121.146526,38.074389],[-121.147938,38.073605],[-121.148251,38.073762],[-121.148879,38.073448],[-121.149506,38.073762],[-121.150133,38.073605],[-121.150290,38.073134],[-121.152016,38.072977],[-121.152957,38.073291],[-121.156878,38.073134],[-121.159701,38.073291],[-121.160014,38.073448],[-121.159858,38.080192],[-121.163779,38.080035],[-121.180247,38.072664],[-121.187148,38.072507],[-121.179306,38.097915],[-121.180560,38.098072],[-121.181815,38.097601],[-121.184325,38.097131],[-121.185579,38.096503],[-121.185579,38.095876],[-121.184795,38.095249],[-121.184168,38.094464],[-121.184325,38.094151],[-121.185266,38.093680],[-121.185266,38.093367],[-121.184795,38.092896],[-121.184952,38.092582],[-121.186677,38.092426],[-121.188246,38.093053],[-121.193265,38.092896],[-121.196872,38.092269],[-121.201577,38.091171],[-121.202675,38.091171],[-121.203930,38.090700],[-121.204871,38.089759],[-121.205655,38.088348],[-121.207537,38.086936],[-121.209105,38.086779],[-121.211144,38.086309],[-121.212870,38.086466],[-121.213183,38.086309],[-121.213654,38.085995],[-121.213811,38.085525],[-121.214909,38.085054],[-121.214909,38.081760],[-121.214281,38.079565],[-121.212085,38.074075],[-121.214595,38.073448],[-121.217261,38.072507],[-121.218045,38.072036],[-121.218830,38.070782],[-121.219457,38.070311],[-121.220241,38.070154],[-121.226985,38.069997],[-121.228083,38.069684],[-121.230279,38.068429],[-121.235455,38.067331],[-121.242356,38.067331],[-121.242356,38.067017],[-121.245649,38.066861],[-121.247061,38.066390],[-121.249413,38.064978],[-121.250354,38.064665],[-121.253178,38.064508],[-121.255060,38.063253],[-121.257255,38.062155],[-121.259138,38.060901],[-121.259138,38.061057],[-121.259294,38.061057],[-121.259138,38.059175],[-121.257569,38.057450],[-121.259451,38.057450],[-121.259451,38.057607],[-121.259451,38.057607],[-121.262274,38.057607],[-121.277017,38.057607],[-121.277017,38.057450],[-121.277331,38.057450],[-121.287212,38.057450],[-121.287369,38.075016],[-121.283134,38.077683],[-121.283291,38.083799],[-121.286428,38.086309],[-121.286428,38.087564],[-121.287526,38.087564],[-121.287839,38.100738],[-121.288153,38.100895],[-121.286271,38.101052],[-121.286271,38.103404],[-121.286428,38.104345],[-121.287839,38.107012],[-121.287996,38.112815],[-121.288153,38.112815],[-121.288153,38.113442],[-121.287996,38.113442],[-121.288153,38.122696]]]}}
,{"id":95320,"type":"Feature","properties":{"name":"Escalon"},"geometry":{"type":"Polygon","coordinates":[[[-121.117040,37.827052],[-121.107943,37.827052],[-121.108257,37.835521],[-121.108884,37.836148],[-121.109512,37.836148],[-121.113276,37.835678],[-121.115785,37.835207],[-121.116413,37.835364],[-121.117354,37.835364],[-121.119706,37.834894],[-121.126451,37.836462],[-121.131313,37.835991],[-121.135234,37.836462],[-121.137116,37.836933],[-121.138527,37.836305],[-121.140566,37.836305],[-121.141194,37.836462],[-121.141664,37.836776],[-121.143232,37.836776],[-121.144801,37.837560],[-121.145585,37.855753],[-121.140096,37.855910],[-121.139155,37.857008],[-121.138684,37.857322],[-121.138057,37.859361],[-121.136802,37.859518],[-121.133351,37.861556],[-121.132254,37.861400],[-121.130372,37.862184],[-121.128489,37.863282],[-121.109041,37.863595],[-121.109198,37.868928],[-121.099788,37.868928],[-121.094769,37.869242],[-121.093985,37.869712],[-121.093514,37.870810],[-121.092416,37.870810],[-121.092102,37.870653],[-121.090064,37.870967],[-121.088338,37.870967],[-121.087084,37.877397],[-121.087554,37.877868],[-121.086927,37.878495],[-121.054147,37.862498],[-121.055245,37.892768],[-121.045991,37.892925],[-120.999880,37.893709],[-121.000194,37.925391],[-120.999723,37.925547],[-120.999253,37.925861],[-120.999253,37.926959],[-120.998939,37.927429],[-120.998312,37.927743],[-120.997685,37.927743],[-120.994861,37.926018],[-120.993764,37.925704],[-120.991881,37.925547],[-120.990627,37.925077],[-120.989999,37.925234],[-120.988745,37.925861],[-120.986706,37.926175],[-120.984980,37.926018],[-120.982157,37.926018],[-120.980589,37.926488],[-120.979805,37.926488],[-120.979334,37.925861],[-120.978079,37.925234],[-120.977452,37.924606],[-120.977138,37.924606],[-120.975413,37.924763],[-120.974315,37.924763],[-120.972120,37.924136],[-120.969767,37.922411],[-120.967414,37.919901],[-120.966787,37.919117],[-120.966630,37.918646],[-120.965689,37.916451],[-120.962709,37.914098],[-120.961298,37.913627],[-120.961454,37.912843],[-120.961768,37.912373],[-120.961141,37.910648],[-120.960670,37.910020],[-120.959886,37.909706],[-120.959259,37.908765],[-120.957847,37.908765],[-120.956906,37.908922],[-120.955651,37.909706],[-120.954710,37.909550],[-120.953769,37.908609],[-120.953769,37.905629],[-120.952358,37.904217],[-120.951730,37.904374],[-120.950162,37.905785],[-120.947966,37.906883],[-120.947025,37.906883],[-120.946555,37.906570],[-120.946241,37.906099],[-120.945927,37.905001],[-120.945770,37.903903],[-120.945300,37.903276],[-120.944672,37.900296],[-120.944672,37.886651],[-120.943575,37.856694],[-120.961925,37.856694],[-120.960827,37.827522],[-120.942477,37.827679],[-120.940124,37.827679],[-120.939967,37.820307],[-120.942320,37.820307],[-120.942163,37.815602],[-120.923970,37.815445],[-120.923185,37.793645],[-120.922715,37.759453],[-120.923185,37.757728],[-120.922087,37.748788],[-120.922244,37.748318],[-120.922244,37.747847],[-120.921146,37.745965],[-120.921460,37.743299],[-120.920676,37.738437],[-120.922401,37.737496],[-120.926165,37.738437],[-120.926793,37.738594],[-120.929616,37.739221],[-120.933066,37.739535],[-120.935105,37.740319],[-120.939183,37.742044],[-120.942006,37.742358],[-120.944516,37.742201],[-120.947966,37.740476],[-120.954083,37.738280],[-120.956906,37.740476],[-120.958631,37.741417],[-120.961141,37.741574],[-120.961925,37.741887],[-120.965062,37.743769],[-120.970081,37.746436],[-120.973217,37.748004],[-120.974002,37.749572],[-120.975256,37.750984],[-120.977295,37.752709],[-120.978079,37.753180],[-120.979491,37.753493],[-120.980589,37.753964],[-120.981373,37.754591],[-120.981687,37.755219],[-120.981844,37.756317],[-120.982314,37.756630],[-120.983255,37.756787],[-120.986235,37.756473],[-120.987333,37.756630],[-120.989058,37.757885],[-120.992038,37.758983],[-120.992352,37.759610],[-120.992822,37.760708],[-120.993450,37.760865],[-120.994705,37.760708],[-120.995802,37.760081],[-120.998939,37.757101],[-120.997841,37.755376],[-120.997841,37.755062],[-120.999253,37.753650],[-121.001292,37.753023],[-121.002547,37.751925],[-121.003017,37.751768],[-121.003488,37.751768],[-121.004115,37.752396],[-121.004272,37.752396],[-121.005527,37.751768],[-121.006311,37.751455],[-121.006938,37.751141],[-121.007409,37.750513],[-121.007409,37.749729],[-121.008036,37.749102],[-121.009761,37.749102],[-121.011173,37.749886],[-121.012271,37.749572],[-121.012741,37.749729],[-121.012741,37.750200],[-121.012428,37.750670],[-121.010859,37.751141],[-121.010702,37.751611],[-121.011016,37.752082],[-121.012114,37.752552],[-121.012271,37.753023],[-121.012114,37.753807],[-121.013212,37.754121],[-121.013839,37.754121],[-121.013996,37.754278],[-121.013682,37.754591],[-121.013055,37.754905],[-121.011016,37.755062],[-121.010859,37.755219],[-121.011173,37.755689],[-121.013369,37.756473],[-121.013996,37.756473],[-121.016192,37.756003],[-121.017446,37.755376],[-121.018701,37.754121],[-121.019485,37.752082],[-121.019956,37.751455],[-121.021211,37.750357],[-121.021367,37.749729],[-121.021211,37.749102],[-121.020740,37.748631],[-121.020583,37.748004],[-121.020897,37.747690],[-121.022152,37.747063],[-121.024034,37.746592],[-121.024818,37.745338],[-121.024975,37.743926],[-121.025759,37.742358],[-121.026857,37.741417],[-121.028739,37.740633],[-121.031876,37.741887],[-121.032974,37.742828],[-121.033915,37.742985],[-121.036581,37.742985],[-121.037208,37.742515],[-121.037522,37.739691],[-121.037836,37.739221],[-121.038777,37.739221],[-121.039718,37.739535],[-121.040345,37.740162],[-121.041600,37.741730],[-121.042541,37.741730],[-121.043796,37.741574],[-121.043011,37.740005],[-121.042855,37.739064],[-121.043011,37.738594],[-121.043952,37.738750],[-121.044893,37.739064],[-121.045207,37.739378],[-121.045991,37.742044],[-121.046305,37.742671],[-121.046776,37.742828],[-121.047246,37.742985],[-121.048815,37.742671],[-121.050383,37.741730],[-121.051010,37.741730],[-121.051481,37.742044],[-121.051794,37.742515],[-121.051794,37.744240],[-121.051010,37.745024],[-121.050697,37.745651],[-121.052736,37.745651],[-121.053363,37.745651],[-121.053520,37.745808],[-121.053363,37.746749],[-121.052736,37.747377],[-121.051794,37.747847],[-121.051638,37.748161],[-121.052108,37.748475],[-121.054304,37.749416],[-121.055402,37.749259],[-121.056343,37.749572],[-121.056186,37.750357],[-121.056813,37.750513],[-121.056970,37.750043],[-121.057127,37.749102],[-121.058225,37.748788],[-121.060578,37.749416],[-121.060421,37.747847],[-121.061519,37.746279],[-121.062773,37.745965],[-121.064655,37.746749],[-121.064969,37.746122],[-121.064812,37.745495],[-121.063558,37.744867],[-121.063087,37.743926],[-121.063401,37.743769],[-121.066694,37.744867],[-121.067008,37.744710],[-121.067322,37.743769],[-121.067479,37.742671],[-121.067322,37.741574],[-121.066537,37.740162],[-121.067008,37.739691],[-121.068890,37.739535],[-121.068890,37.739691],[-121.068263,37.739848],[-121.067165,37.739848],[-121.066851,37.740162],[-121.067479,37.741103],[-121.067635,37.741730],[-121.067635,37.743769],[-121.067322,37.744554],[-121.067008,37.745024],[-121.067008,37.745965],[-121.065596,37.749102],[-121.065440,37.749416],[-121.064499,37.750043],[-121.064655,37.754121],[-121.051324,37.754121],[-121.049285,37.757728],[-121.051010,37.758199],[-121.051481,37.777804],[-121.054931,37.777490],[-121.069831,37.777490],[-121.070458,37.798193],[-121.088652,37.798036],[-121.089122,37.812622],[-121.107473,37.812465],[-121.107316,37.805721],[-121.107159,37.805564],[-121.116570,37.810583],[-121.117040,37.827052]]]}}
,{"id":94070,"type":"Feature","properties":{"name":"San Carlos"},"geometry":{"type":"Polygon","coordinates":[[[-122.261975,37.521213],[-122.261505,37.520742],[-122.261034,37.521370],[-122.256015,37.517135],[-122.254447,37.516194],[-122.253976,37.516978],[-122.253192,37.516351],[-122.251781,37.517449],[-122.250683,37.517919],[-122.250839,37.518233],[-122.250369,37.518546],[-122.250369,37.519644],[-122.249898,37.520429],[-122.248801,37.521056],[-122.247860,37.519017],[-122.248016,37.518703],[-122.248330,37.518546],[-122.248644,37.517605],[-122.248644,37.516508],[-122.248330,37.515880],[-122.248330,37.514155],[-122.248016,37.512587],[-122.248173,37.512273],[-122.247546,37.511646],[-122.245036,37.508038],[-122.246448,37.507097],[-122.245350,37.505529],[-122.245821,37.504901],[-122.245977,37.504745],[-122.245664,37.504588],[-122.239547,37.499098],[-122.238135,37.498157],[-122.240645,37.497844],[-122.241115,37.498157],[-122.243154,37.496432],[-122.243782,37.496118],[-122.245036,37.495020],[-122.244252,37.494236],[-122.244252,37.494079],[-122.244566,37.493452],[-122.245193,37.492981],[-122.245821,37.492040],[-122.246918,37.491413],[-122.247860,37.490472],[-122.249742,37.487178],[-122.250526,37.486865],[-122.251781,37.486865],[-122.252722,37.486551],[-122.253506,37.485767],[-122.253819,37.484983],[-122.254604,37.484826],[-122.255074,37.484198],[-122.256172,37.484198],[-122.256799,37.483885],[-122.259466,37.485924],[-122.259936,37.485924],[-122.260093,37.485610],[-122.261348,37.485453],[-122.261191,37.485924],[-122.261818,37.486081],[-122.261818,37.485767],[-122.262132,37.485924],[-122.262132,37.484042],[-122.261661,37.484042],[-122.261661,37.484355],[-122.257584,37.484042],[-122.257113,37.483885],[-122.258681,37.483101],[-122.258838,37.481846],[-122.258995,37.481689],[-122.260250,37.481689],[-122.259936,37.482003],[-122.260564,37.482160],[-122.260720,37.481846],[-122.261034,37.481846],[-122.261191,37.481532],[-122.262916,37.481689],[-122.263073,37.480434],[-122.263230,37.480277],[-122.263544,37.480277],[-122.264328,37.480905],[-122.265112,37.481062],[-122.265582,37.479964],[-122.266367,37.480121],[-122.266367,37.480905],[-122.267935,37.482473],[-122.271542,37.481846],[-122.272013,37.482160],[-122.272170,37.481846],[-122.272640,37.482160],[-122.273111,37.481689],[-122.273424,37.481846],[-122.273738,37.481689],[-122.274209,37.481846],[-122.276718,37.480591],[-122.277973,37.479650],[-122.278130,37.479336],[-122.279071,37.478866],[-122.278914,37.478866],[-122.279698,37.478395],[-122.279384,37.477925],[-122.278757,37.477925],[-122.277816,37.476670],[-122.276875,37.476984],[-122.276875,37.476200],[-122.276561,37.474945],[-122.275934,37.474945],[-122.275934,37.474631],[-122.276718,37.474631],[-122.278130,37.474161],[-122.280325,37.474631],[-122.280012,37.475415],[-122.280482,37.475572],[-122.280639,37.475415],[-122.280953,37.475259],[-122.281894,37.475415],[-122.282678,37.476043],[-122.283305,37.476670],[-122.284560,37.479023],[-122.287854,37.480277],[-122.289736,37.481375],[-122.293814,37.483885],[-122.297578,37.481846],[-122.299146,37.482316],[-122.298676,37.484198],[-122.298519,37.487335],[-122.298989,37.489217],[-122.299460,37.490472],[-122.300244,37.491256],[-122.303538,37.493766],[-122.300558,37.495177],[-122.299774,37.495177],[-122.300244,37.496118],[-122.303381,37.498785],[-122.301499,37.500039],[-122.296794,37.497530],[-122.296480,37.497844],[-122.296010,37.498628],[-122.295696,37.498785],[-122.295225,37.498785],[-122.294598,37.498000],[-122.293657,37.498314],[-122.291932,37.498628],[-122.291775,37.498941],[-122.291932,37.499098],[-122.291461,37.499255],[-122.291304,37.499098],[-122.290834,37.499255],[-122.290677,37.499098],[-122.290363,37.499255],[-122.289579,37.499255],[-122.289422,37.499412],[-122.289893,37.500196],[-122.289579,37.500353],[-122.289109,37.500196],[-122.288638,37.499726],[-122.287540,37.499412],[-122.287226,37.499569],[-122.287854,37.500196],[-122.288011,37.500510],[-122.288011,37.500667],[-122.285972,37.500980],[-122.285815,37.501137],[-122.286129,37.501451],[-122.286129,37.501608],[-122.289109,37.502706],[-122.287697,37.504745],[-122.287540,37.504901],[-122.286599,37.506627],[-122.288638,37.507411],[-122.286913,37.510548],[-122.285031,37.509763],[-122.282051,37.510391],[-122.279071,37.512116],[-122.279228,37.512743],[-122.278600,37.513214],[-122.277502,37.512900],[-122.277346,37.512587],[-122.275934,37.511646],[-122.274366,37.511175],[-122.273895,37.510548],[-122.273424,37.510391],[-122.273111,37.510234],[-122.267465,37.514155],[-122.268092,37.514939],[-122.270131,37.516664],[-122.265896,37.520115],[-122.264485,37.521213],[-122.262759,37.519644],[-122.262446,37.519958],[-122.263073,37.520429],[-122.261975,37.521213]]]}}
,{"id":94065,"type":"Feature","properties":{"name":"Redwood City"},"geometry":{"type":"Polygon","coordinates":[[[-122.250369,37.519644],[-122.250369,37.518546],[-122.250839,37.518233],[-122.250683,37.517919],[-122.251781,37.517449],[-122.253192,37.516351],[-122.253976,37.516978],[-122.254447,37.516194],[-122.256015,37.517135],[-122.261034,37.521370],[-122.261505,37.520742],[-122.261975,37.521213],[-122.262132,37.521370],[-122.261348,37.521840],[-122.261348,37.522154],[-122.262446,37.522467],[-122.262446,37.522781],[-122.263544,37.523409],[-122.264014,37.524193],[-122.264171,37.524820],[-122.263700,37.526232],[-122.265112,37.526232],[-122.266210,37.527173],[-122.265269,37.527643],[-122.265112,37.528427],[-122.266367,37.528427],[-122.266524,37.528114],[-122.267465,37.527800],[-122.267935,37.527486],[-122.269503,37.528584],[-122.269974,37.529525],[-122.269817,37.531564],[-122.267778,37.531564],[-122.267465,37.532662],[-122.267151,37.533289],[-122.266367,37.533917],[-122.265739,37.534074],[-122.264955,37.534387],[-122.264798,37.534231],[-122.261975,37.533446],[-122.261348,37.533446],[-122.260877,37.533603],[-122.260250,37.534544],[-122.260250,37.535485],[-122.260720,37.537367],[-122.260720,37.538779],[-122.260407,37.539720],[-122.258525,37.541131],[-122.256799,37.540504],[-122.251937,37.540347],[-122.252408,37.544582],[-122.250683,37.548189],[-122.249428,37.549130],[-122.244095,37.553522],[-122.243468,37.553365],[-122.243154,37.553051],[-122.243938,37.553365],[-122.243625,37.553051],[-122.243468,37.552110],[-122.243468,37.551169],[-122.242841,37.550699],[-122.242370,37.550699],[-122.241900,37.550385],[-122.237979,37.549601],[-122.234528,37.549444],[-122.233901,37.549444],[-122.232803,37.549444],[-122.230137,37.550071],[-122.228725,37.550228],[-122.227784,37.550071],[-122.227627,37.549915],[-122.225588,37.545994],[-122.225745,37.545366],[-122.222922,37.546307],[-122.223549,37.545053],[-122.224647,37.544268],[-122.233273,37.532192],[-122.234685,37.530937],[-122.239861,37.529368],[-122.242997,37.527643],[-122.244252,37.524506],[-122.245821,37.523565],[-122.245821,37.521526],[-122.246918,37.519488],[-122.247703,37.517449],[-122.248644,37.516508],[-122.248644,37.517605],[-122.248330,37.518546],[-122.248016,37.518703],[-122.247860,37.519017],[-122.248801,37.521056],[-122.249898,37.520429],[-122.250369,37.519644]]]}}
,{"id":94019,"type":"Feature","properties":{"name":"Half Moon Bay"},"geometry":{"type":"Polygon","coordinates":[[[-122.395917,37.345395],[-122.394819,37.343826],[-122.394976,37.340219],[-122.392780,37.333475],[-122.392466,37.332691],[-122.391212,37.331436],[-122.391055,37.330652],[-122.391525,37.329711],[-122.392310,37.329083],[-122.393251,37.328926],[-122.394662,37.329083],[-122.395760,37.329083],[-122.396701,37.328613],[-122.397485,37.327985],[-122.400779,37.323123],[-122.401406,37.321398],[-122.402818,37.318732],[-122.403916,37.311674],[-122.404857,37.311674],[-122.404700,37.311988],[-122.404857,37.312772],[-122.404700,37.313556],[-122.404543,37.314183],[-122.404543,37.315124],[-122.404543,37.315281],[-122.404073,37.315438],[-122.404073,37.317007],[-122.403916,37.317477],[-122.403759,37.318261],[-122.403759,37.319830],[-122.403288,37.320614],[-122.403759,37.321869],[-122.404229,37.322182],[-122.404073,37.323123],[-122.403759,37.324064],[-122.404073,37.324221],[-122.404073,37.324849],[-122.403445,37.324849],[-122.403132,37.325319],[-122.403288,37.325633],[-122.403132,37.326417],[-122.403132,37.327044],[-122.402661,37.327672],[-122.402818,37.328299],[-122.402504,37.329240],[-122.402504,37.330024],[-122.402190,37.331279],[-122.402190,37.331906],[-122.401877,37.333161],[-122.401877,37.334416],[-122.401563,37.334886],[-122.401563,37.336141],[-122.401249,37.336455],[-122.401406,37.336925],[-122.401093,37.337709],[-122.401249,37.338337],[-122.401093,37.338494],[-122.400936,37.339592],[-122.401093,37.341944],[-122.401093,37.343356],[-122.401093,37.345238],[-122.401720,37.345708],[-122.401563,37.345865],[-122.401720,37.346179],[-122.401406,37.346649],[-122.401249,37.347120],[-122.401877,37.347434],[-122.402347,37.348218],[-122.402034,37.348688],[-122.401406,37.348688],[-122.400936,37.349159],[-122.400779,37.350727],[-122.400936,37.351982],[-122.400779,37.352609],[-122.400936,37.353707],[-122.400465,37.355119],[-122.400465,37.356060],[-122.400308,37.356530],[-122.399838,37.356844],[-122.400308,37.357158],[-122.400779,37.359510],[-122.401249,37.360138],[-122.401406,37.360608],[-122.402347,37.361236],[-122.404700,37.362177],[-122.405798,37.362020],[-122.405798,37.362490],[-122.406582,37.363118],[-122.407209,37.362961],[-122.407366,37.363274],[-122.407366,37.363745],[-122.408307,37.364059],[-122.407523,37.364843],[-122.407523,37.365000],[-122.407994,37.365313],[-122.407994,37.365627],[-122.408307,37.365941],[-122.409091,37.366411],[-122.408464,37.366882],[-122.408307,37.367352],[-122.408464,37.368137],[-122.408935,37.367980],[-122.408307,37.368450],[-122.408307,37.369234],[-122.408464,37.371273],[-122.408935,37.372999],[-122.408621,37.374410],[-122.408935,37.375665],[-122.410033,37.376606],[-122.411130,37.377233],[-122.410817,37.377547],[-122.410974,37.377861],[-122.410660,37.378488],[-122.410817,37.378959],[-122.411915,37.379429],[-122.412228,37.379272],[-122.412228,37.378802],[-122.412699,37.378802],[-122.413169,37.379115],[-122.413169,37.379900],[-122.413640,37.379429],[-122.413954,37.379900],[-122.414267,37.379743],[-122.414738,37.379900],[-122.414738,37.380213],[-122.414267,37.380213],[-122.414581,37.380527],[-122.414581,37.380841],[-122.415208,37.381625],[-122.415522,37.382409],[-122.416149,37.382880],[-122.415522,37.383036],[-122.415522,37.383664],[-122.415836,37.383821],[-122.416149,37.383821],[-122.416306,37.383977],[-122.415992,37.384291],[-122.415836,37.384762],[-122.415365,37.385232],[-122.415522,37.385546],[-122.415679,37.385703],[-122.416777,37.385703],[-122.418502,37.386801],[-122.419129,37.387742],[-122.419286,37.388526],[-122.420227,37.389310],[-122.420541,37.389937],[-122.421796,37.390878],[-122.422737,37.392290],[-122.422893,37.392604],[-122.422893,37.393074],[-122.423050,37.393231],[-122.422423,37.393388],[-122.422109,37.393702],[-122.422109,37.396211],[-122.422580,37.396681],[-122.423207,37.396838],[-122.423050,37.397309],[-122.423207,37.397779],[-122.423207,37.398877],[-122.422893,37.399661],[-122.423521,37.401544],[-122.424462,37.402328],[-122.425403,37.402798],[-122.426030,37.403896],[-122.426971,37.404523],[-122.427128,37.405151],[-122.427285,37.405935],[-122.427755,37.406249],[-122.427755,37.407033],[-122.428069,37.407660],[-122.427755,37.407660],[-122.427285,37.408758],[-122.427285,37.409386],[-122.427442,37.409699],[-122.427755,37.410170],[-122.428697,37.410170],[-122.429481,37.411111],[-122.430735,37.411738],[-122.431520,37.411268],[-122.431676,37.411268],[-122.431049,37.412052],[-122.431833,37.412052],[-122.431833,37.412366],[-122.431833,37.412993],[-122.432304,37.414404],[-122.433245,37.415345],[-122.434186,37.415659],[-122.434029,37.416443],[-122.434500,37.417071],[-122.434186,37.418325],[-122.434970,37.418953],[-122.435127,37.419580],[-122.435754,37.419894],[-122.435441,37.420678],[-122.435441,37.421462],[-122.435754,37.422246],[-122.436225,37.423031],[-122.436382,37.423658],[-122.436852,37.424129],[-122.438107,37.425070],[-122.439989,37.427579],[-122.440146,37.427893],[-122.439989,37.428991],[-122.440303,37.429618],[-122.440146,37.430245],[-122.441087,37.431814],[-122.441871,37.432441],[-122.442812,37.432755],[-122.443126,37.432912],[-122.442812,37.433853],[-122.442812,37.434951],[-122.443126,37.435421],[-122.444067,37.435892],[-122.444067,37.436205],[-122.443910,37.436676],[-122.444537,37.437617],[-122.444067,37.439342],[-122.444224,37.440283],[-122.444067,37.441695],[-122.444537,37.443734],[-122.444381,37.445459],[-122.444694,37.447027],[-122.445008,37.450478],[-122.445008,37.454085],[-122.445322,37.457849],[-122.445792,37.460045],[-122.445635,37.461457],[-122.446890,37.464907],[-122.447204,37.467260],[-122.447361,37.470396],[-122.447674,37.471338],[-122.448145,37.472906],[-122.449086,37.474945],[-122.449713,37.476670],[-122.450654,37.478395],[-122.451125,37.479493],[-122.452223,37.481062],[-122.452850,37.482630],[-122.453791,37.484042],[-122.454575,37.485767],[-122.455830,37.487963],[-122.457869,37.490472],[-122.461476,37.493766],[-122.463672,37.495648],[-122.469161,37.499412],[-122.470259,37.499882],[-122.470102,37.500353],[-122.470259,37.500667],[-122.471514,37.500980],[-122.471828,37.500824],[-122.472455,37.500980],[-122.473082,37.500824],[-122.479513,37.497059],[-122.487669,37.494550],[-122.484689,37.494079],[-122.484689,37.493923],[-122.488139,37.494393],[-122.493472,37.492981],[-122.495197,37.495805],[-122.495354,37.495491],[-122.497079,37.495491],[-122.497393,37.498314],[-122.498020,37.499255],[-122.497236,37.499726],[-122.497079,37.500039],[-122.497393,37.501294],[-122.496765,37.502235],[-122.496765,37.503647],[-122.496295,37.503960],[-122.495511,37.503960],[-122.494883,37.503490],[-122.494256,37.503176],[-122.492844,37.505058],[-122.511038,37.520429],[-122.512606,37.521213],[-122.511351,37.522938],[-122.510097,37.522624],[-122.508215,37.522781],[-122.506489,37.522154],[-122.505705,37.522781],[-122.505235,37.523095],[-122.503980,37.523565],[-122.502568,37.524350],[-122.501784,37.525918],[-122.500686,37.527330],[-122.500216,37.527486],[-122.499745,37.527643],[-122.498804,37.527643],[-122.497863,37.528741],[-122.495511,37.529525],[-122.493628,37.530780],[-122.492844,37.531721],[-122.491276,37.532662],[-122.490648,37.532819],[-122.488923,37.533603],[-122.488296,37.534074],[-122.486884,37.536269],[-122.485943,37.537367],[-122.483434,37.538779],[-122.482493,37.539877],[-122.481709,37.540034],[-122.480611,37.540190],[-122.480140,37.540818],[-122.479042,37.541288],[-122.478415,37.542229],[-122.477631,37.542386],[-122.476847,37.543170],[-122.475749,37.543641],[-122.475121,37.544582],[-122.474337,37.544896],[-122.473867,37.545209],[-122.473553,37.545523],[-122.473553,37.547405],[-122.473239,37.548189],[-122.473082,37.548974],[-122.472141,37.549915],[-122.472141,37.550856],[-122.471828,37.551483],[-122.472141,37.552110],[-122.471828,37.553365],[-122.470887,37.554463],[-122.470259,37.554777],[-122.469632,37.554620],[-122.469004,37.554620],[-122.468220,37.555090],[-122.466338,37.554777],[-122.465868,37.554620],[-122.465083,37.554933],[-122.464456,37.555090],[-122.462888,37.554463],[-122.461947,37.554306],[-122.461162,37.553992],[-122.460065,37.555090],[-122.458967,37.554933],[-122.458653,37.554620],[-122.458339,37.553992],[-122.458496,37.553365],[-122.458496,37.552581],[-122.458339,37.552424],[-122.457869,37.552581],[-122.457241,37.552110],[-122.456928,37.551640],[-122.457085,37.551326],[-122.456771,37.551169],[-122.456614,37.551169],[-122.456144,37.551797],[-122.455359,37.551640],[-122.455046,37.551953],[-122.454418,37.551483],[-122.453477,37.551797],[-122.452850,37.551640],[-122.452066,37.551797],[-122.451282,37.551797],[-122.450968,37.551640],[-122.450968,37.551326],[-122.449556,37.548346],[-122.449086,37.548189],[-122.448929,37.546778],[-122.446419,37.542543],[-122.434656,37.534074],[-122.402034,37.534074],[-122.399995,37.536269],[-122.397485,37.534701],[-122.396701,37.533917],[-122.390427,37.533917],[-122.390584,37.528584],[-122.388232,37.527486],[-122.386820,37.526545],[-122.384311,37.525918],[-122.383526,37.525604],[-122.382585,37.524663],[-122.382429,37.524036],[-122.382272,37.523722],[-122.379449,37.520899],[-122.378508,37.519331],[-122.377723,37.517762],[-122.376782,37.513841],[-122.376469,37.513371],[-122.371920,37.507881],[-122.372077,37.507568],[-122.373802,37.505999],[-122.373802,37.505686],[-122.372548,37.503176],[-122.371607,37.502078],[-122.370822,37.502078],[-122.370352,37.500980],[-122.369411,37.500667],[-122.368313,37.498157],[-122.368783,37.497844],[-122.369881,37.498000],[-122.369097,37.497216],[-122.369568,37.496589],[-122.368156,37.496118],[-122.368470,37.494864],[-122.367842,37.494079],[-122.366274,37.492668],[-122.365019,37.492354],[-122.364549,37.491884],[-122.364549,37.491413],[-122.364862,37.491099],[-122.366274,37.490786],[-122.366431,37.490472],[-122.366274,37.490158],[-122.365804,37.490002],[-122.363608,37.490002],[-122.363294,37.489845],[-122.362980,37.489531],[-122.363137,37.489060],[-122.363765,37.488590],[-122.363921,37.488119],[-122.363294,37.486081],[-122.362980,37.484512],[-122.362667,37.484355],[-122.362196,37.484355],[-122.360785,37.485139],[-122.360314,37.485139],[-122.360000,37.485139],[-122.358746,37.484042],[-122.358746,37.483257],[-122.359373,37.482003],[-122.359844,37.480905],[-122.359687,37.479807],[-122.359373,37.478709],[-122.360941,37.478238],[-122.361726,37.478238],[-122.362039,37.477768],[-122.361882,37.477611],[-122.362196,37.477454],[-122.362510,37.477454],[-122.363765,37.478238],[-122.365333,37.478082],[-122.366901,37.478238],[-122.367529,37.478709],[-122.368940,37.478709],[-122.369568,37.479023],[-122.370822,37.478395],[-122.371763,37.477454],[-122.372861,37.477454],[-122.373332,37.477611],[-122.373959,37.478552],[-122.374743,37.479023],[-122.374900,37.479807],[-122.375214,37.480277],[-122.377410,37.480591],[-122.378821,37.480277],[-122.378978,37.480277],[-122.379135,37.480591],[-122.378664,37.481062],[-122.377567,37.483101],[-122.378508,37.483885],[-122.379762,37.484198],[-122.381644,37.483414],[-122.384311,37.483571],[-122.384781,37.483257],[-122.385409,37.482473],[-122.386036,37.482003],[-122.386193,37.481532],[-122.387604,37.481218],[-122.389016,37.479807],[-122.389486,37.478238],[-122.390741,37.476827],[-122.391525,37.475102],[-122.394035,37.473533],[-122.394348,37.473063],[-122.395133,37.472435],[-122.395917,37.471494],[-122.396701,37.471181],[-122.397485,37.471181],[-122.398426,37.471338],[-122.398740,37.471024],[-122.399211,37.471024],[-122.399367,37.470553],[-122.400152,37.469769],[-122.400622,37.468985],[-122.400936,37.468828],[-122.401720,37.468828],[-122.402347,37.468985],[-122.402818,37.468985],[-122.402975,37.468671],[-122.402975,37.468358],[-122.402190,37.467573],[-122.402347,37.467103],[-122.402975,37.466632],[-122.404543,37.466005],[-122.406268,37.465691],[-122.407209,37.466005],[-122.407209,37.466162],[-122.406896,37.466946],[-122.407209,37.467103],[-122.409876,37.464750],[-122.410817,37.464907],[-122.411130,37.464907],[-122.409091,37.463182],[-122.393251,37.461143],[-122.392780,37.460672],[-122.392623,37.460359],[-122.391996,37.459731],[-122.391839,37.458790],[-122.390741,37.458006],[-122.388859,37.455810],[-122.388702,37.455026],[-122.389173,37.453928],[-122.389643,37.453458],[-122.390271,37.453301],[-122.390584,37.453144],[-122.390898,37.453144],[-122.391368,37.452674],[-122.391682,37.452674],[-122.393251,37.451732],[-122.393407,37.451576],[-122.392937,37.451105],[-122.392937,37.450791],[-122.394035,37.450948],[-122.394505,37.450791],[-122.395446,37.450635],[-122.395603,37.450321],[-122.395446,37.449694],[-122.395917,37.449537],[-122.397172,37.448596],[-122.398269,37.447968],[-122.399367,37.446870],[-122.400779,37.446086],[-122.403288,37.445459],[-122.403132,37.443734],[-122.402818,37.443106],[-122.400465,37.441538],[-122.400308,37.440910],[-122.399054,37.440126],[-122.398113,37.439656],[-122.394662,37.438715],[-122.393094,37.437460],[-122.391368,37.437460],[-122.391212,37.437146],[-122.390898,37.436989],[-122.390427,37.437146],[-122.390114,37.437774],[-122.388702,37.437460],[-122.388859,37.438401],[-122.388389,37.438715],[-122.387761,37.438872],[-122.387291,37.438244],[-122.386663,37.438244],[-122.385409,37.439342],[-122.385252,37.439813],[-122.385095,37.440126],[-122.384154,37.440283],[-122.383526,37.440283],[-122.383213,37.440597],[-122.382585,37.441224],[-122.381958,37.441224],[-122.380390,37.440754],[-122.379605,37.440126],[-122.378664,37.439499],[-122.378037,37.438558],[-122.378351,37.437931],[-122.377880,37.436833],[-122.378037,37.436362],[-122.377723,37.435892],[-122.377723,37.435264],[-122.377410,37.435107],[-122.375371,37.435421],[-122.374587,37.435264],[-122.373489,37.436362],[-122.373332,37.436519],[-122.372548,37.436676],[-122.372077,37.437146],[-122.371607,37.436833],[-122.371293,37.436833],[-122.370979,37.437460],[-122.370822,37.437617],[-122.359530,37.436362],[-122.354668,37.436519],[-122.350590,37.434323],[-122.344160,37.434009],[-122.337572,37.430716],[-122.338043,37.431814],[-122.336004,37.430088],[-122.330985,37.428677],[-122.320633,37.431186],[-122.320006,37.429775],[-122.318281,37.429461],[-122.317497,37.428834],[-122.316556,37.429618],[-122.315144,37.429461],[-122.313732,37.428520],[-122.313732,37.429461],[-122.313105,37.430088],[-122.310909,37.428050],[-122.310753,37.427579],[-122.310753,37.427109],[-122.310909,37.426481],[-122.311380,37.426167],[-122.312791,37.425383],[-122.314360,37.425070],[-122.315458,37.424285],[-122.317497,37.424599],[-122.318438,37.425226],[-122.319379,37.424599],[-122.320477,37.424285],[-122.320633,37.423972],[-122.320633,37.423031],[-122.320320,37.422560],[-122.320006,37.421305],[-122.320477,37.420521],[-122.320320,37.420364],[-122.320477,37.420051],[-122.321261,37.419737],[-122.321575,37.420051],[-122.321575,37.420992],[-122.321888,37.421305],[-122.322986,37.421462],[-122.323300,37.421776],[-122.323300,37.422403],[-122.323927,37.422717],[-122.325025,37.423658],[-122.325182,37.423658],[-122.325339,37.423031],[-122.325809,37.421619],[-122.326750,37.421619],[-122.328005,37.422717],[-122.328632,37.423031],[-122.329103,37.422874],[-122.328789,37.422403],[-122.328162,37.421619],[-122.328475,37.421462],[-122.329103,37.421305],[-122.329730,37.421305],[-122.330044,37.420992],[-122.330044,37.420364],[-122.330201,37.420051],[-122.330985,37.420521],[-122.331455,37.420521],[-122.331926,37.421149],[-122.332553,37.420835],[-122.333338,37.421149],[-122.334906,37.421149],[-122.335690,37.421462],[-122.337729,37.422090],[-122.338670,37.422874],[-122.339925,37.422717],[-122.340395,37.422874],[-122.341023,37.422717],[-122.342121,37.423188],[-122.342748,37.422874],[-122.335533,37.419580],[-122.337102,37.419737],[-122.338984,37.420208],[-122.339768,37.420521],[-122.341336,37.420835],[-122.342591,37.420051],[-122.343689,37.419737],[-122.346355,37.418639],[-122.347139,37.418482],[-122.348865,37.417855],[-122.349335,37.417541],[-122.349649,37.416600],[-122.349649,37.415502],[-122.350433,37.414561],[-122.350747,37.413620],[-122.350747,37.412993],[-122.350433,37.411268],[-122.350747,37.409699],[-122.350590,37.408601],[-122.350747,37.408131],[-122.351531,37.407660],[-122.353256,37.406092],[-122.354668,37.405621],[-122.355609,37.404994],[-122.357177,37.404680],[-122.358589,37.403896],[-122.359687,37.402485],[-122.360314,37.402171],[-122.360628,37.401387],[-122.361569,37.400289],[-122.362510,37.399505],[-122.364392,37.397466],[-122.364706,37.396838],[-122.364862,37.395740],[-122.365804,37.395270],[-122.366745,37.394015],[-122.366901,37.393545],[-122.366745,37.392917],[-122.367372,37.392133],[-122.367529,37.391349],[-122.367842,37.391035],[-122.368940,37.390878],[-122.369568,37.389780],[-122.370822,37.388996],[-122.371763,37.387428],[-122.371920,37.386644],[-122.373018,37.385075],[-122.372861,37.384605],[-122.373175,37.383664],[-122.373489,37.383350],[-122.373489,37.382409],[-122.373959,37.381782],[-122.374273,37.381468],[-122.374587,37.380684],[-122.374587,37.379429],[-122.374900,37.379115],[-122.374273,37.377704],[-122.374273,37.377076],[-122.374587,37.376606],[-122.375684,37.375665],[-122.377567,37.375037],[-122.380547,37.372528],[-122.382272,37.370175],[-122.384938,37.368607],[-122.388075,37.365313],[-122.389173,37.364686],[-122.391839,37.360922],[-122.392623,37.360138],[-122.394348,37.359353],[-122.397172,37.358883],[-122.397642,37.358569],[-122.397172,37.358256],[-122.397172,37.356060],[-122.397642,37.353080],[-122.397642,37.349629],[-122.397172,37.347120],[-122.395917,37.345395]]]}}
,{"id":94304,"type":"Feature","properties":{"name":"Palo Alto"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.189829,37.428834],[-122.190456,37.431030],[-122.190456,37.431500],[-122.188417,37.432127],[-122.187633,37.433382],[-122.185123,37.433696],[-122.184496,37.434166],[-122.183398,37.435735],[-122.183241,37.436362],[-122.183555,37.436989],[-122.182771,37.437774],[-122.182771,37.438558],[-122.182300,37.439342],[-122.181830,37.439656],[-122.181045,37.439342],[-122.180104,37.439342],[-122.179634,37.439656],[-122.179477,37.439969],[-122.179477,37.440440],[-122.179791,37.440910],[-122.179791,37.441067],[-122.177909,37.441067],[-122.176968,37.441381],[-122.176654,37.441695],[-122.175713,37.441852],[-122.175399,37.442793],[-122.174772,37.443577],[-122.174772,37.443890],[-122.174458,37.444518],[-122.173203,37.445302],[-122.171635,37.446714],[-122.171478,37.446400],[-122.171165,37.446400],[-122.167557,37.443577],[-122.170380,37.441067],[-122.170851,37.439969],[-122.170380,37.439813],[-122.170694,37.439185],[-122.171165,37.439342],[-122.172890,37.435735],[-122.173047,37.435264],[-122.173517,37.434951],[-122.174929,37.430873],[-122.175713,37.431030],[-122.175713,37.431186],[-122.178066,37.431657],[-122.178066,37.433382],[-122.180732,37.434009],[-122.182300,37.434480],[-122.189829,37.428834]]],[[[-122.134778,37.398720],[-122.140894,37.395740],[-122.143717,37.394172],[-122.149991,37.391976],[-122.150618,37.391506],[-122.150932,37.390878],[-122.151559,37.388369],[-122.152030,37.387428],[-122.152501,37.386957],[-122.153442,37.386487],[-122.153755,37.386487],[-122.155167,37.387428],[-122.157049,37.388212],[-122.161127,37.388839],[-122.162695,37.389310],[-122.164107,37.389937],[-122.166773,37.391349],[-122.168341,37.391819],[-122.169753,37.388839],[-122.170224,37.386487],[-122.171949,37.379272],[-122.169910,37.378959],[-122.168341,37.377233],[-122.168185,37.376606],[-122.170851,37.370175],[-122.171321,37.367980],[-122.174301,37.360608],[-122.175086,37.359824],[-122.175556,37.358883],[-122.175399,37.358412],[-122.174929,37.358412],[-122.184025,37.334886],[-122.185437,37.336925],[-122.185751,37.337553],[-122.185908,37.338651],[-122.189829,37.341474],[-122.190299,37.341944],[-122.191397,37.343513],[-122.193593,37.345081],[-122.195161,37.346963],[-122.195945,37.348375],[-122.195945,37.349629],[-122.195788,37.350570],[-122.196102,37.351355],[-122.197200,37.352296],[-122.198141,37.354178],[-122.199239,37.355276],[-122.199710,37.355432],[-122.200494,37.356687],[-122.201435,37.358099],[-122.202533,37.360294],[-122.202376,37.361549],[-122.202689,37.363118],[-122.202219,37.363745],[-122.202219,37.364686],[-122.201435,37.365784],[-122.201278,37.367039],[-122.201592,37.367980],[-122.201278,37.369391],[-122.201278,37.370803],[-122.200651,37.372058],[-122.200180,37.372371],[-122.199396,37.372685],[-122.196886,37.372528],[-122.196730,37.372999],[-122.194063,37.372685],[-122.193593,37.374881],[-122.191711,37.379900],[-122.186849,37.379115],[-122.186221,37.381154],[-122.187162,37.381468],[-122.186849,37.382095],[-122.189044,37.383507],[-122.188260,37.383821],[-122.189358,37.384762],[-122.187476,37.384605],[-122.184496,37.385703],[-122.185437,37.387114],[-122.174301,37.390094],[-122.173988,37.389937],[-122.173047,37.390251],[-122.172419,37.392133],[-122.169126,37.400602],[-122.164734,37.398093],[-122.161911,37.395427],[-122.160970,37.395270],[-122.160970,37.395113],[-122.160343,37.396054],[-122.157833,37.397466],[-122.157990,37.397623],[-122.156892,37.398407],[-122.156422,37.399034],[-122.156422,37.399818],[-122.157049,37.402485],[-122.157206,37.403112],[-122.157049,37.404210],[-122.156578,37.405308],[-122.155794,37.406562],[-122.149677,37.413934],[-122.151716,37.415032],[-122.151559,37.416287],[-122.151873,37.416600],[-122.152657,37.416757],[-122.146541,37.424129],[-122.144659,37.423188],[-122.145286,37.422403],[-122.145286,37.422246],[-122.146070,37.421149],[-122.144345,37.420208],[-122.145443,37.418796],[-122.143404,37.417698],[-122.143561,37.417541],[-122.143247,37.417228],[-122.141679,37.416600],[-122.141365,37.416443],[-122.140738,37.415973],[-122.141208,37.415345],[-122.142776,37.415032],[-122.142776,37.414248],[-122.144659,37.412209],[-122.144815,37.412366],[-122.145756,37.411268],[-122.146070,37.410954],[-122.145756,37.410797],[-122.147168,37.409072],[-122.145443,37.408131],[-122.145286,37.407347],[-122.144815,37.407347],[-122.144972,37.406876],[-122.143561,37.406719],[-122.143090,37.407660],[-122.142149,37.407660],[-122.141679,37.408445],[-122.138385,37.408288],[-122.137444,37.405935],[-122.137130,37.405465],[-122.136816,37.404523],[-122.136503,37.404053],[-122.135562,37.402014],[-122.135875,37.401857],[-122.136032,37.401544],[-122.135562,37.400289],[-122.136032,37.399818],[-122.135091,37.399505],[-122.134307,37.399505],[-122.133993,37.399034],[-122.134778,37.398720]]]]}}
,{"id":95687,"type":"Feature","properties":{"name":"Vacaville"},"geometry":{"type":"Polygon","coordinates":[[[-121.896851,38.366112],[-121.917710,38.366112],[-121.917710,38.359054],[-121.915515,38.359054],[-121.915515,38.358897],[-121.924768,38.358584],[-121.924768,38.353251],[-121.923984,38.352624],[-121.923670,38.351996],[-121.923200,38.351369],[-121.915515,38.350271],[-121.915672,38.349958],[-121.913319,38.349644],[-121.911123,38.348546],[-121.911123,38.348546],[-121.911123,38.348389],[-121.910653,38.348232],[-121.910339,38.347762],[-121.909398,38.347448],[-121.908457,38.346664],[-121.906888,38.347448],[-121.908614,38.348389],[-121.907202,38.350114],[-121.908300,38.350742],[-121.907516,38.351526],[-121.906104,38.351683],[-121.905947,38.354506],[-121.902026,38.358897],[-121.901713,38.358897],[-121.896851,38.364701],[-121.897007,38.337097],[-121.868933,38.337097],[-121.869090,38.331764],[-121.869090,38.329882],[-121.858738,38.329882],[-121.858582,38.329568],[-121.851053,38.329568],[-121.858582,38.329568],[-121.855915,38.315139],[-121.841172,38.315139],[-121.842113,38.278438],[-121.842270,38.278438],[-121.842270,38.278281],[-121.842427,38.271380],[-121.846505,38.269028],[-121.848230,38.268714],[-121.849014,38.268714],[-121.851681,38.269655],[-121.854347,38.269498],[-121.855288,38.269185],[-121.856072,38.269342],[-121.856229,38.269655],[-121.857641,38.270439],[-121.859523,38.271380],[-121.860307,38.271851],[-121.860464,38.272165],[-121.860307,38.286123],[-121.896537,38.286437],[-121.905477,38.279536],[-121.914730,38.273576],[-121.914887,38.279223],[-121.914574,38.286437],[-121.915515,38.300553],[-121.915515,38.308238],[-121.933865,38.308552],[-121.933708,38.301337],[-121.947196,38.301494],[-121.949079,38.301964],[-121.951745,38.297573],[-121.953627,38.295063],[-121.955823,38.292711],[-121.957705,38.291456],[-121.960057,38.289888],[-121.959901,38.290044],[-121.964292,38.287692],[-121.966331,38.286908],[-121.969625,38.286908],[-121.969468,38.296161],[-121.968527,38.296161],[-121.967429,38.297102],[-121.967429,38.299298],[-121.966017,38.299298],[-121.966017,38.297416],[-121.965860,38.297259],[-121.964449,38.298043],[-121.964292,38.298671],[-121.963351,38.298671],[-121.962410,38.300239],[-121.961939,38.301494],[-121.961939,38.302749],[-121.962096,38.303690],[-121.963822,38.306983],[-121.966017,38.302749],[-121.965860,38.303533],[-121.964135,38.306983],[-121.964292,38.306983],[-121.964449,38.307454],[-121.966174,38.310591],[-121.965860,38.311218],[-121.965390,38.311688],[-121.964449,38.313571],[-121.963978,38.315139],[-121.964449,38.315453],[-121.965076,38.315609],[-121.970566,38.315766],[-121.976682,38.315766],[-121.976839,38.315296],[-121.977310,38.314825],[-121.979192,38.313727],[-121.981388,38.313414],[-121.982329,38.312943],[-121.983113,38.313100],[-121.985465,38.312943],[-121.988289,38.313884],[-121.988759,38.314355],[-121.991112,38.313100],[-121.991582,38.312630],[-121.993151,38.311845],[-121.994249,38.311688],[-121.995346,38.311688],[-121.997229,38.312786],[-121.998640,38.312786],[-121.999895,38.312473],[-122.001150,38.312786],[-122.003659,38.312002],[-122.003973,38.312316],[-122.006168,38.313884],[-122.006482,38.314355],[-122.006796,38.315296],[-122.007423,38.315609],[-122.007580,38.315453],[-122.006953,38.315296],[-122.006796,38.314982],[-122.006639,38.312473],[-122.007894,38.311218],[-122.009776,38.310277],[-122.009619,38.315766],[-122.010874,38.315766],[-122.010089,38.324236],[-122.020284,38.324393],[-122.021696,38.324079],[-122.022637,38.324393],[-122.023891,38.325020],[-122.016049,38.337253],[-122.014951,38.338665],[-122.013226,38.340077],[-122.012128,38.340861],[-122.010089,38.341802],[-122.003973,38.343527],[-121.981544,38.352310],[-121.979662,38.353251],[-121.978565,38.354035],[-121.973546,38.358741],[-121.963665,38.365014],[-121.958803,38.368622],[-121.960685,38.367524],[-121.959273,38.368622],[-121.957548,38.370033],[-121.957705,38.369563],[-121.953156,38.373170],[-121.933708,38.388070],[-121.915044,38.402656],[-121.900929,38.413478],[-121.912221,38.405165],[-121.897478,38.416301],[-121.897007,38.416144],[-121.897007,38.416458],[-121.893400,38.419124],[-121.892459,38.418026],[-121.889165,38.417399],[-121.888695,38.416928],[-121.887127,38.413478],[-121.887127,38.410184],[-121.886970,38.410027],[-121.876148,38.409871],[-121.869717,38.409557],[-121.869717,38.409714],[-121.871286,38.412223],[-121.870972,38.412223],[-121.869090,38.409086],[-121.867835,38.407832],[-121.868149,38.407675],[-121.864071,38.403911],[-121.861875,38.402656],[-121.862032,38.390579],[-121.870815,38.390422],[-121.872070,38.391520],[-121.872854,38.391991],[-121.878030,38.385874],[-121.878030,38.385090],[-121.887440,38.384933],[-121.887440,38.380541],[-121.883206,38.380541],[-121.883990,38.379130],[-121.888068,38.374738],[-121.887597,38.374581],[-121.887283,38.374425],[-121.887440,38.374268],[-121.888224,38.374425],[-121.895125,38.366583],[-121.896851,38.366583],[-121.896851,38.366112]]]}}
,{"id":94590,"type":"Feature","properties":{"name":"Vallejo"},"geometry":{"type":"Polygon","coordinates":[[[-122.268876,38.126146],[-122.263387,38.131008],[-122.261975,38.130695],[-122.259309,38.131165],[-122.259466,38.132263],[-122.255858,38.132420],[-122.255388,38.125989],[-122.253819,38.126146],[-122.253819,38.126930],[-122.253506,38.126930],[-122.253506,38.127401],[-122.252722,38.127558],[-122.252722,38.127715],[-122.249898,38.128028],[-122.249585,38.125833],[-122.248801,38.124578],[-122.248487,38.122539],[-122.244095,38.123323],[-122.236567,38.122225],[-122.232803,38.122853],[-122.230921,38.122853],[-122.229823,38.123166],[-122.230137,38.122382],[-122.230293,38.120500],[-122.229509,38.110619],[-122.229666,38.100738],[-122.229823,38.095092],[-122.230137,38.092426],[-122.230450,38.091328],[-122.230764,38.091485],[-122.231548,38.089446],[-122.232019,38.087877],[-122.231391,38.088818],[-122.232960,38.084897],[-122.233273,38.082858],[-122.233273,38.080819],[-122.232803,38.078624],[-122.232175,38.077055],[-122.230764,38.074546],[-122.228725,38.071566],[-122.226686,38.067645],[-122.226372,38.066390],[-122.225902,38.061057],[-122.232019,38.061842],[-122.241115,38.071879],[-122.243468,38.074859],[-122.244409,38.075016],[-122.244409,38.075957],[-122.250683,38.083956],[-122.256643,38.090387],[-122.259779,38.094464],[-122.262916,38.097444],[-122.269033,38.104659],[-122.273895,38.110462],[-122.271856,38.111560],[-122.271072,38.111560],[-122.271856,38.111717],[-122.271856,38.112187],[-122.274366,38.111246],[-122.279384,38.117677],[-122.281423,38.120029],[-122.276875,38.121598],[-122.275620,38.122068],[-122.274993,38.121912],[-122.274836,38.121441],[-122.274522,38.122225],[-122.274209,38.122539],[-122.272640,38.123166],[-122.271699,38.123794],[-122.268876,38.126146]]]}}
,{"id":95476,"type":"Feature","properties":{"name":"Sonoma"},"geometry":{"type":"Polygon","coordinates":[[[-122.453477,38.382424],[-122.447831,38.379287],[-122.450027,38.374895],[-122.450497,38.374738],[-122.452223,38.374895],[-122.452850,38.374738],[-122.453634,38.374111],[-122.455830,38.371602],[-122.456457,38.371288],[-122.457085,38.370504],[-122.457085,38.369249],[-122.457869,38.367994],[-122.457555,38.367210],[-122.456457,38.366739],[-122.455830,38.366269],[-122.455046,38.365955],[-122.454418,38.365642],[-122.454105,38.364387],[-122.453634,38.363603],[-122.452223,38.362034],[-122.451282,38.361407],[-122.448929,38.360623],[-122.447204,38.359054],[-122.444067,38.358741],[-122.443283,38.359054],[-122.442342,38.359054],[-122.440303,38.358427],[-122.439519,38.358113],[-122.438421,38.357172],[-122.437950,38.357172],[-122.437480,38.356702],[-122.436695,38.355133],[-122.433715,38.353879],[-122.431833,38.352467],[-122.430892,38.352153],[-122.429324,38.351055],[-122.429324,38.349958],[-122.429167,38.349487],[-122.427912,38.349330],[-122.426814,38.348703],[-122.426658,38.348232],[-122.426971,38.347762],[-122.427285,38.347605],[-122.427285,38.346037],[-122.426814,38.345880],[-122.425246,38.345409],[-122.423207,38.342586],[-122.422737,38.342429],[-122.422893,38.341802],[-122.422737,38.341488],[-122.421796,38.341018],[-122.421639,38.340390],[-122.421639,38.340077],[-122.421482,38.339449],[-122.420070,38.338351],[-122.419757,38.338508],[-122.419129,38.339449],[-122.418816,38.339606],[-122.417247,38.339763],[-122.417247,38.339292],[-122.417561,38.338351],[-122.417561,38.338038],[-122.416306,38.336940],[-122.414738,38.336469],[-122.414424,38.336312],[-122.413169,38.334744],[-122.412071,38.334273],[-122.411915,38.333960],[-122.412385,38.333332],[-122.412856,38.332705],[-122.413483,38.332078],[-122.413797,38.330666],[-122.412856,38.329882],[-122.412071,38.327843],[-122.411444,38.327059],[-122.409719,38.325961],[-122.409562,38.325804],[-122.409562,38.324863],[-122.409876,38.324079],[-122.409719,38.322354],[-122.409405,38.321099],[-122.409091,38.320628],[-122.408621,38.320158],[-122.408150,38.320158],[-122.407523,38.320472],[-122.407523,38.321099],[-122.407053,38.321569],[-122.405327,38.322040],[-122.405170,38.321256],[-122.403759,38.319687],[-122.403602,38.319217],[-122.403759,38.318433],[-122.402818,38.317492],[-122.402347,38.316080],[-122.402034,38.315766],[-122.401877,38.314198],[-122.400308,38.312473],[-122.398897,38.311845],[-122.397328,38.309806],[-122.396387,38.309179],[-122.396231,38.308865],[-122.396074,38.308238],[-122.395760,38.307924],[-122.395603,38.307140],[-122.394662,38.304787],[-122.394662,38.304631],[-122.397642,38.303533],[-122.399995,38.303376],[-122.401249,38.302749],[-122.402034,38.302121],[-122.402504,38.300866],[-122.403602,38.299925],[-122.403759,38.299612],[-122.403602,38.299141],[-122.402661,38.298043],[-122.402190,38.296318],[-122.401720,38.295691],[-122.401720,38.295220],[-122.402347,38.293966],[-122.401406,38.291613],[-122.401563,38.290672],[-122.400779,38.289574],[-122.401563,38.288319],[-122.401249,38.286908],[-122.402034,38.284398],[-122.402661,38.283928],[-122.402975,38.283144],[-122.403288,38.282987],[-122.403916,38.282830],[-122.404229,38.282516],[-122.404700,38.281889],[-122.404543,38.281418],[-122.403132,38.280164],[-122.401720,38.277654],[-122.401406,38.276399],[-122.400936,38.275772],[-122.400308,38.274517],[-122.399995,38.274204],[-122.398897,38.273576],[-122.398113,38.272792],[-122.397015,38.272165],[-122.395603,38.272165],[-122.394192,38.272165],[-122.393878,38.272478],[-122.393878,38.273106],[-122.393721,38.273263],[-122.391996,38.273419],[-122.390271,38.274204],[-122.389173,38.274360],[-122.388232,38.274204],[-122.387291,38.273263],[-122.387134,38.272792],[-122.387447,38.272322],[-122.388232,38.271851],[-122.388389,38.271537],[-122.388232,38.270910],[-122.388075,38.270596],[-122.387447,38.270126],[-122.387291,38.269969],[-122.388702,38.269028],[-122.389330,38.268244],[-122.389016,38.266518],[-122.389486,38.264950],[-122.389016,38.264323],[-122.389486,38.263382],[-122.389330,38.262597],[-122.389330,38.261813],[-122.389800,38.261343],[-122.389957,38.260715],[-122.388859,38.259931],[-122.388232,38.258363],[-122.385565,38.256637],[-122.384781,38.254755],[-122.383840,38.254285],[-122.382115,38.253971],[-122.381801,38.253187],[-122.380703,38.252873],[-122.379449,38.251148],[-122.378978,38.250678],[-122.378351,38.250050],[-122.377723,38.250050],[-122.377253,38.249893],[-122.377253,38.248482],[-122.373802,38.247384],[-122.374587,38.244561],[-122.370509,38.245345],[-122.370352,38.246913],[-122.366745,38.247070],[-122.360000,38.230445],[-122.358275,38.218525],[-122.358432,38.218212],[-122.357961,38.214761],[-122.358432,38.211467],[-122.359216,38.210370],[-122.359216,38.210056],[-122.358903,38.209429],[-122.357334,38.208644],[-122.357020,38.208174],[-122.356707,38.207233],[-122.356393,38.206762],[-122.354668,38.205978],[-122.354040,38.205351],[-122.352629,38.203782],[-122.352315,38.202684],[-122.351374,38.202371],[-122.350747,38.201900],[-122.350433,38.201273],[-122.350433,38.200489],[-122.350904,38.198920],[-122.350904,38.196881],[-122.350590,38.195940],[-122.349649,38.194529],[-122.349492,38.193901],[-122.349806,38.193901],[-122.350590,38.192333],[-122.350433,38.192647],[-122.350747,38.193117],[-122.352002,38.194058],[-122.353256,38.195470],[-122.355138,38.196881],[-122.356079,38.197195],[-122.357805,38.197665],[-122.359059,38.197509],[-122.360314,38.197038],[-122.360785,38.196254],[-122.360471,38.194999],[-122.358118,38.192803],[-122.357491,38.191862],[-122.357020,38.190608],[-122.356864,38.188726],[-122.357020,38.186216],[-122.357334,38.184020],[-122.357961,38.182609],[-122.358589,38.181981],[-122.359530,38.181825],[-122.360157,38.181981],[-122.362824,38.183393],[-122.364392,38.183707],[-122.366117,38.183864],[-122.366745,38.183864],[-122.367842,38.183393],[-122.368627,38.182609],[-122.369097,38.181825],[-122.369725,38.177590],[-122.369725,38.175865],[-122.369568,38.174453],[-122.368783,38.172885],[-122.366431,38.169434],[-122.365647,38.165984],[-122.366274,38.160808],[-122.367529,38.158769],[-122.371136,38.157671],[-122.372548,38.157671],[-122.374430,38.157985],[-122.375057,38.158612],[-122.379135,38.159867],[-122.381644,38.160494],[-122.384781,38.160965],[-122.396858,38.161435],[-122.401406,38.160965],[-122.404073,38.160337],[-122.406111,38.159396],[-122.407523,38.157828],[-122.406739,38.155632],[-122.408150,38.155789],[-122.407837,38.154221],[-122.407366,38.152966],[-122.406425,38.151868],[-122.406268,38.151398],[-122.405798,38.151084],[-122.405327,38.149672],[-122.405641,38.149359],[-122.404543,38.147790],[-122.404700,38.147633],[-122.404543,38.147477],[-122.405170,38.146849],[-122.405014,38.146692],[-122.405014,38.146379],[-122.405484,38.146379],[-122.405484,38.146065],[-122.405798,38.145438],[-122.405798,38.145124],[-122.406111,38.144967],[-122.405955,38.144653],[-122.406111,38.144026],[-122.406582,38.143712],[-122.406582,38.143085],[-122.406896,38.142615],[-122.407053,38.141830],[-122.407366,38.141046],[-122.407837,38.141046],[-122.407680,38.140419],[-122.407837,38.140105],[-122.408307,38.139635],[-122.408935,38.139478],[-122.409091,38.139007],[-122.409091,38.138850],[-122.409562,38.138537],[-122.409562,38.138223],[-122.410189,38.138066],[-122.410033,38.137752],[-122.410346,38.137125],[-122.410660,38.136968],[-122.410817,38.136655],[-122.411287,38.136341],[-122.411444,38.136027],[-122.412071,38.135714],[-122.412542,38.135243],[-122.412856,38.135243],[-122.413326,38.134616],[-122.414424,38.134145],[-122.414895,38.133518],[-122.415992,38.132890],[-122.416149,38.132577],[-122.416620,38.132420],[-122.416777,38.132106],[-122.417090,38.131949],[-122.418816,38.130851],[-122.420227,38.130067],[-122.421011,38.130067],[-122.421011,38.129597],[-122.421639,38.129754],[-122.421952,38.128813],[-122.422266,38.128813],[-122.422266,38.128342],[-122.422580,38.127715],[-122.423050,38.127715],[-122.423364,38.127401],[-122.423678,38.127244],[-122.424148,38.127401],[-122.424462,38.127244],[-122.424462,38.126930],[-122.425089,38.126617],[-122.425403,38.126146],[-122.425873,38.126303],[-122.426814,38.125833],[-122.427128,38.125989],[-122.427755,38.125676],[-122.428853,38.125676],[-122.429010,38.125519],[-122.429167,38.124892],[-122.429481,38.124892],[-122.429794,38.124264],[-122.430265,38.123794],[-122.433088,38.122068],[-122.433872,38.121755],[-122.434500,38.121912],[-122.436225,38.124892],[-122.436382,38.125989],[-122.436225,38.126460],[-122.435597,38.127401],[-122.435597,38.128499],[-122.436068,38.129440],[-122.437323,38.130851],[-122.438264,38.133361],[-122.440773,38.135870],[-122.440930,38.136655],[-122.440773,38.137909],[-122.440303,38.138537],[-122.437950,38.139791],[-122.431990,38.141203],[-122.431049,38.141830],[-122.430108,38.142928],[-122.430108,38.143242],[-122.431049,38.144183],[-122.433245,38.144967],[-122.437480,38.148104],[-122.438577,38.149672],[-122.438734,38.149986],[-122.440303,38.149045],[-122.440930,38.149202],[-122.443596,38.150143],[-122.445635,38.152182],[-122.447517,38.151554],[-122.447361,38.151398],[-122.448929,38.150770],[-122.449399,38.150927],[-122.449870,38.150770],[-122.452693,38.148888],[-122.451125,38.149045],[-122.452223,38.147006],[-122.450968,38.144497],[-122.450654,38.144183],[-122.447517,38.142144],[-122.445635,38.138850],[-122.446890,38.138223],[-122.453477,38.135557],[-122.452066,38.134616],[-122.451909,38.134459],[-122.452379,38.133831],[-122.452379,38.133518],[-122.458339,38.128656],[-122.459124,38.128342],[-122.460065,38.128342],[-122.464142,38.131008],[-122.464927,38.131165],[-122.472141,38.128342],[-122.473710,38.129597],[-122.473239,38.129910],[-122.480924,38.140262],[-122.491590,38.140262],[-122.491433,38.139948],[-122.491590,38.139791],[-122.496765,38.135714],[-122.498804,38.137439],[-122.499588,38.137752],[-122.498490,38.139635],[-122.496295,38.140419],[-122.495040,38.141360],[-122.494883,38.142144],[-122.494413,38.142771],[-122.494413,38.145751],[-122.500686,38.146692],[-122.500686,38.149202],[-122.501000,38.149829],[-122.500529,38.150770],[-122.499745,38.151241],[-122.499902,38.152339],[-122.499745,38.152966],[-122.498177,38.154691],[-122.496608,38.156103],[-122.498177,38.157358],[-122.497393,38.157985],[-122.497393,38.158926],[-122.496922,38.159396],[-122.497079,38.160181],[-122.497393,38.160494],[-122.498647,38.159867],[-122.500059,38.158769],[-122.499902,38.158926],[-122.501157,38.162220],[-122.518566,38.176178],[-122.519037,38.176335],[-122.519507,38.176178],[-122.523114,38.173355],[-122.523742,38.173669],[-122.529859,38.178688],[-122.536289,38.183079],[-122.538798,38.185589],[-122.537701,38.186687],[-122.537701,38.187000],[-122.540524,38.189039],[-122.542092,38.190294],[-122.544288,38.194529],[-122.540367,38.198763],[-122.539583,38.199391],[-122.535662,38.203782],[-122.533936,38.204096],[-122.532211,38.203939],[-122.531427,38.204096],[-122.529545,38.204880],[-122.527663,38.204410],[-122.525624,38.204410],[-122.522958,38.204880],[-122.521860,38.205351],[-122.521546,38.205351],[-122.520762,38.204566],[-122.516370,38.201900],[-122.512606,38.199704],[-122.511508,38.198607],[-122.510410,38.196411],[-122.509469,38.195470],[-122.508371,38.195156],[-122.504294,38.194686],[-122.503509,38.194372],[-122.502725,38.194215],[-122.501157,38.194529],[-122.501157,38.194686],[-122.500216,38.194215],[-122.499745,38.193588],[-122.498177,38.192176],[-122.497079,38.191706],[-122.496608,38.191078],[-122.496138,38.190608],[-122.494569,38.190137],[-122.493942,38.189353],[-122.491276,38.189353],[-122.490492,38.189196],[-122.488766,38.188412],[-122.487982,38.188412],[-122.487512,38.188098],[-122.487041,38.188098],[-122.486571,38.187785],[-122.485159,38.186530],[-122.484375,38.186687],[-122.482650,38.185589],[-122.481865,38.185432],[-122.481238,38.185432],[-122.480924,38.185118],[-122.480454,38.184961],[-122.480454,38.184491],[-122.480140,38.184491],[-122.479670,38.184648],[-122.479513,38.184177],[-122.479042,38.183864],[-122.478415,38.183864],[-122.477003,38.183236],[-122.476062,38.183079],[-122.474964,38.183079],[-122.474808,38.182766],[-122.474494,38.182766],[-122.474180,38.181825],[-122.472926,38.181668],[-122.472926,38.181511],[-122.473082,38.181197],[-122.472926,38.181040],[-122.471671,38.180727],[-122.470730,38.180256],[-122.470259,38.179472],[-122.470730,38.179158],[-122.470573,38.178688],[-122.470416,38.178217],[-122.469946,38.177904],[-122.469475,38.177276],[-122.468063,38.176649],[-122.467279,38.176022],[-122.467122,38.175551],[-122.466181,38.174924],[-122.465240,38.174767],[-122.464456,38.173669],[-122.464142,38.173983],[-122.463829,38.173826],[-122.462888,38.173198],[-122.462260,38.172257],[-122.461162,38.171473],[-122.460849,38.171316],[-122.460065,38.171316],[-122.459437,38.171316],[-122.459124,38.171003],[-122.458653,38.170532],[-122.457398,38.170062],[-122.456457,38.172101],[-122.453164,38.175394],[-122.452066,38.176022],[-122.448615,38.176492],[-122.447831,38.176806],[-122.447204,38.177119],[-122.446576,38.177747],[-122.445478,38.179472],[-122.445949,38.179629],[-122.446576,38.179001],[-122.448458,38.178217],[-122.450184,38.178217],[-122.452066,38.179158],[-122.453791,38.179629],[-122.455987,38.180727],[-122.456300,38.181197],[-122.457398,38.181825],[-122.457712,38.182452],[-122.458967,38.183393],[-122.460065,38.183864],[-122.461162,38.184805],[-122.461633,38.184961],[-122.462731,38.184961],[-122.463358,38.185118],[-122.463358,38.185902],[-122.462104,38.186373],[-122.462104,38.187000],[-122.461162,38.187941],[-122.460065,38.188098],[-122.459751,38.188412],[-122.459751,38.189039],[-122.458810,38.189353],[-122.457712,38.190294],[-122.457085,38.191078],[-122.464299,38.197195],[-122.498177,38.225740],[-122.506176,38.237973],[-122.508685,38.236562],[-122.509783,38.236562],[-122.510567,38.237032],[-122.511508,38.237032],[-122.511822,38.237503],[-122.512449,38.237817],[-122.511665,38.238287],[-122.515586,38.243620],[-122.514018,38.244874],[-122.521860,38.249893],[-122.524369,38.252246],[-122.526879,38.253814],[-122.530486,38.255383],[-122.534877,38.258049],[-122.539583,38.266989],[-122.542092,38.268401],[-122.543817,38.269969],[-122.545543,38.270753],[-122.545856,38.271224],[-122.545856,38.272165],[-122.546170,38.272635],[-122.548679,38.273733],[-122.549620,38.274360],[-122.551189,38.276399],[-122.553698,38.277968],[-122.556365,38.280477],[-122.558090,38.281575],[-122.559815,38.282516],[-122.561384,38.284398],[-122.563109,38.285182],[-122.563266,38.285496],[-122.562952,38.285653],[-122.561227,38.286594],[-122.559815,38.287692],[-122.558560,38.288162],[-122.556365,38.288319],[-122.555267,38.288476],[-122.554639,38.292240],[-122.553698,38.293024],[-122.553541,38.293809],[-122.567657,38.312786],[-122.569226,38.314198],[-122.572676,38.316237],[-122.573303,38.316864],[-122.573617,38.317492],[-122.573460,38.319530],[-122.573617,38.320785],[-122.573931,38.321569],[-122.574715,38.322667],[-122.574558,38.324863],[-122.574244,38.325961],[-122.573460,38.327529],[-122.573303,38.327373],[-122.572205,38.327216],[-122.569539,38.327059],[-122.569069,38.327216],[-122.568284,38.327686],[-122.567814,38.328000],[-122.567500,38.327843],[-122.567187,38.327529],[-122.566559,38.328314],[-122.566716,38.329098],[-122.566873,38.330509],[-122.567814,38.331450],[-122.569539,38.332391],[-122.570010,38.332705],[-122.570167,38.333332],[-122.569853,38.334744],[-122.569226,38.335371],[-122.563266,38.337724],[-122.563266,38.338195],[-122.562325,38.339292],[-122.559031,38.340077],[-122.559658,38.340547],[-122.559658,38.341331],[-122.558404,38.342586],[-122.557933,38.343684],[-122.556835,38.344782],[-122.555424,38.345252],[-122.551816,38.344311],[-122.551032,38.344311],[-122.549777,38.344468],[-122.546170,38.346507],[-122.542092,38.348075],[-122.541151,38.349173],[-122.540367,38.349487],[-122.538642,38.342900],[-122.537857,38.340077],[-122.537857,38.337567],[-122.538798,38.337253],[-122.538485,38.336469],[-122.537857,38.336156],[-122.537387,38.334587],[-122.535348,38.332705],[-122.535505,38.332235],[-122.535191,38.331294],[-122.534250,38.330823],[-122.533780,38.330196],[-122.534250,38.329882],[-122.534877,38.329725],[-122.535348,38.329255],[-122.534877,38.329255],[-122.534564,38.328314],[-122.534093,38.328000],[-122.534407,38.327059],[-122.535191,38.326431],[-122.535662,38.325647],[-122.535662,38.325490],[-122.535191,38.325177],[-122.534564,38.325177],[-122.533780,38.325647],[-122.533152,38.325647],[-122.533152,38.326118],[-122.532995,38.326118],[-122.531741,38.325334],[-122.531427,38.325177],[-122.531584,38.326431],[-122.531427,38.326745],[-122.531113,38.326745],[-122.530800,38.326118],[-122.530172,38.325961],[-122.529859,38.325490],[-122.529074,38.325490],[-122.528918,38.325647],[-122.529231,38.326118],[-122.529074,38.326275],[-122.525624,38.325177],[-122.525781,38.325804],[-122.525153,38.325804],[-122.524526,38.326902],[-122.524526,38.327843],[-122.524997,38.328470],[-122.524997,38.328784],[-122.524840,38.329725],[-122.524212,38.329882],[-122.525467,38.330980],[-122.524683,38.330980],[-122.523899,38.331764],[-122.523899,38.332235],[-122.523585,38.332705],[-122.522958,38.332862],[-122.522330,38.333332],[-122.521389,38.333489],[-122.520919,38.333803],[-122.520448,38.333646],[-122.519507,38.333803],[-122.518252,38.332705],[-122.518096,38.332548],[-122.516213,38.333176],[-122.514645,38.333176],[-122.513704,38.332862],[-122.513547,38.333176],[-122.513861,38.333646],[-122.512763,38.333646],[-122.512136,38.333332],[-122.511822,38.333019],[-122.510881,38.333176],[-122.510410,38.333489],[-122.511822,38.336783],[-122.512763,38.338665],[-122.509312,38.339763],[-122.508371,38.339920],[-122.508528,38.340390],[-122.507587,38.339920],[-122.506646,38.339920],[-122.502568,38.341645],[-122.496922,38.342743],[-122.497079,38.342900],[-122.495197,38.344154],[-122.493942,38.344154],[-122.493001,38.344625],[-122.492374,38.345409],[-122.491746,38.345880],[-122.490962,38.347134],[-122.490178,38.347919],[-122.488610,38.348232],[-122.485002,38.349801],[-122.483120,38.350271],[-122.481865,38.349958],[-122.480611,38.350585],[-122.480140,38.351055],[-122.479670,38.352938],[-122.479513,38.354192],[-122.479199,38.356074],[-122.478572,38.358584],[-122.478258,38.358897],[-122.477944,38.358584],[-122.477474,38.357486],[-122.477631,38.356545],[-122.477317,38.356388],[-122.477317,38.356074],[-122.477003,38.355447],[-122.476062,38.354820],[-122.475278,38.354506],[-122.474651,38.353722],[-122.474023,38.353722],[-122.473710,38.353722],[-122.473239,38.354506],[-122.473553,38.355290],[-122.472926,38.357172],[-122.472926,38.357800],[-122.472612,38.358270],[-122.472612,38.359525],[-122.471984,38.359525],[-122.471043,38.360466],[-122.470730,38.360623],[-122.468534,38.362034],[-122.468377,38.362034],[-122.465554,38.362975],[-122.464142,38.363132],[-122.463045,38.363759],[-122.462731,38.363603],[-122.462260,38.363759],[-122.461319,38.365328],[-122.461319,38.367053],[-122.460692,38.367681],[-122.460535,38.367994],[-122.460535,38.369406],[-122.461006,38.369249],[-122.461006,38.370817],[-122.460535,38.371915],[-122.460849,38.374895],[-122.461006,38.374895],[-122.461006,38.375993],[-122.461162,38.376150],[-122.460221,38.376934],[-122.459908,38.377405],[-122.459124,38.377718],[-122.458810,38.378502],[-122.458810,38.379287],[-122.458496,38.379600],[-122.458183,38.379757],[-122.456614,38.378973],[-122.455830,38.378816],[-122.455203,38.379444],[-122.454261,38.378816],[-122.452850,38.379130],[-122.452536,38.379600],[-122.452536,38.379914],[-122.453477,38.381796],[-122.453477,38.382424]]]}}
,{"id":94951,"type":"Feature","properties":{"name":"Penngrove"},"geometry":{"type":"Polygon","coordinates":[[[-122.577381,38.344154],[-122.585380,38.335371],[-122.586792,38.335685],[-122.587890,38.336626],[-122.589144,38.336626],[-122.590399,38.337097],[-122.591967,38.337881],[-122.593379,38.337881],[-122.594163,38.338508],[-122.594163,38.337410],[-122.593379,38.335842],[-122.605456,38.334587],[-122.610788,38.333489],[-122.610945,38.332078],[-122.616591,38.332548],[-122.618003,38.327059],[-122.619571,38.325961],[-122.613925,38.322824],[-122.631177,38.305101],[-122.641058,38.310120],[-122.641529,38.309963],[-122.641999,38.309336],[-122.641686,38.309022],[-122.641843,38.308709],[-122.641372,38.307924],[-122.641686,38.307140],[-122.640902,38.305572],[-122.640902,38.305101],[-122.641058,38.304787],[-122.640745,38.304474],[-122.641529,38.304474],[-122.641843,38.304160],[-122.643411,38.304474],[-122.643568,38.304160],[-122.644979,38.302121],[-122.645293,38.300710],[-122.645136,38.300239],[-122.651880,38.292868],[-122.654704,38.294593],[-122.654547,38.293966],[-122.655174,38.293338],[-122.654704,38.293024],[-122.655017,38.293024],[-122.654704,38.292554],[-122.655488,38.292083],[-122.655645,38.291456],[-122.656742,38.291142],[-122.657213,38.290515],[-122.657684,38.290358],[-122.658625,38.290201],[-122.658938,38.289888],[-122.660663,38.289417],[-122.661134,38.289731],[-122.661291,38.289888],[-122.661605,38.289574],[-122.662075,38.289574],[-122.662232,38.289260],[-122.662389,38.289260],[-122.662702,38.289731],[-122.663330,38.289260],[-122.663800,38.289103],[-122.664585,38.285026],[-122.665682,38.284398],[-122.666310,38.283144],[-122.667564,38.283771],[-122.667878,38.282202],[-122.668662,38.282359],[-122.669760,38.282987],[-122.674465,38.277184],[-122.675406,38.276243],[-122.678700,38.278909],[-122.678857,38.278752],[-122.691247,38.288319],[-122.700501,38.294593],[-122.701913,38.295848],[-122.708343,38.303690],[-122.706304,38.305101],[-122.705520,38.304631],[-122.697050,38.308865],[-122.698619,38.310747],[-122.694384,38.314355],[-122.692973,38.312630],[-122.684346,38.312630],[-122.682307,38.307767],[-122.680582,38.307454],[-122.679641,38.307767],[-122.679641,38.307924],[-122.678857,38.308709],[-122.678386,38.308865],[-122.677916,38.308865],[-122.677445,38.309179],[-122.676818,38.309179],[-122.676661,38.309022],[-122.675563,38.308865],[-122.673838,38.309179],[-122.673368,38.309493],[-122.672740,38.309493],[-122.672113,38.310434],[-122.671485,38.310747],[-122.670388,38.311375],[-122.669447,38.311688],[-122.668662,38.312159],[-122.667564,38.312473],[-122.666623,38.312002],[-122.666623,38.314355],[-122.666780,38.321413],[-122.675720,38.321413],[-122.675877,38.330196],[-122.676191,38.336156],[-122.666780,38.336156],[-122.666937,38.338508],[-122.661918,38.338665],[-122.660977,38.338979],[-122.659879,38.339449],[-122.658154,38.339292],[-122.657370,38.339449],[-122.656899,38.339449],[-122.656429,38.338979],[-122.655801,38.338822],[-122.654547,38.338195],[-122.654390,38.332235],[-122.651880,38.332705],[-122.651567,38.333019],[-122.651253,38.334430],[-122.651096,38.334587],[-122.648430,38.334901],[-122.648116,38.335058],[-122.647803,38.336156],[-122.646548,38.337253],[-122.645293,38.340077],[-122.644823,38.340861],[-122.645136,38.341959],[-122.645136,38.342272],[-122.643568,38.344311],[-122.642313,38.345880],[-122.641843,38.346664],[-122.641686,38.347919],[-122.641215,38.348075],[-122.638706,38.348389],[-122.638078,38.349173],[-122.638078,38.350114],[-122.637608,38.350585],[-122.637608,38.351055],[-122.618473,38.351369],[-122.617846,38.355447],[-122.618160,38.356388],[-122.618003,38.357486],[-122.618317,38.357956],[-122.599496,38.357956],[-122.599653,38.356859],[-122.599496,38.355917],[-122.598712,38.355133],[-122.598555,38.354506],[-122.597770,38.353565],[-122.597457,38.352938],[-122.596829,38.352310],[-122.595888,38.352153],[-122.593222,38.350742],[-122.589928,38.350428],[-122.589144,38.350114],[-122.588517,38.350742],[-122.586635,38.351369],[-122.586164,38.351055],[-122.586164,38.350585],[-122.582086,38.350114],[-122.581145,38.349801],[-122.580832,38.347919],[-122.580204,38.346978],[-122.578479,38.345095],[-122.577381,38.344154]]]}}
,{"id":95350,"type":"Feature","properties":{"name":"Modesto"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-120.993764,37.655782],[-120.991097,37.655782],[-120.991097,37.654527],[-120.993764,37.654527],[-120.993764,37.655782]]],[[[-120.993764,37.655782],[-120.997841,37.655625],[-121.003017,37.655625],[-121.003017,37.652959],[-121.002860,37.652959],[-121.002860,37.651547],[-121.005213,37.649351],[-121.002860,37.649351],[-121.002703,37.645901],[-121.008036,37.645901],[-121.008036,37.646842],[-121.008820,37.645901],[-121.009761,37.645901],[-121.009918,37.646058],[-121.031248,37.663938],[-121.040345,37.671309],[-121.053990,37.682915],[-121.053677,37.683072],[-121.049756,37.685268],[-121.040659,37.685738],[-121.038777,37.686209],[-121.037208,37.686993],[-121.035169,37.689032],[-121.034228,37.689503],[-121.033287,37.689659],[-121.035013,37.689659],[-121.031562,37.691071],[-121.031562,37.689659],[-121.029523,37.689503],[-121.017603,37.689346],[-121.017603,37.691855],[-121.018074,37.692796],[-121.018074,37.693424],[-121.014937,37.693267],[-121.013212,37.693737],[-121.013682,37.694678],[-121.013839,37.695149],[-121.012584,37.694992],[-121.012428,37.689346],[-121.003488,37.689189],[-121.003488,37.689816],[-121.001762,37.689816],[-121.001292,37.689659],[-121.000037,37.690757],[-120.998155,37.690757],[-120.997998,37.693267],[-120.994391,37.693110],[-120.994234,37.689032],[-120.982942,37.689032],[-120.976041,37.688875],[-120.976041,37.685111],[-120.975884,37.681661],[-120.978393,37.681661],[-120.978393,37.679935],[-120.977609,37.679935],[-120.977452,37.678053],[-120.975884,37.678053],[-120.975727,37.674446],[-120.975727,37.670995],[-120.977609,37.670995],[-120.977609,37.670211],[-120.975727,37.670211],[-120.975727,37.667231],[-120.976668,37.667074],[-120.978079,37.663467],[-120.975727,37.663467],[-120.975570,37.657193],[-120.977295,37.657193],[-120.977295,37.655782],[-120.975570,37.655782],[-120.975570,37.650920],[-120.975884,37.650920],[-120.975884,37.650606],[-120.976668,37.650606],[-120.976668,37.648724],[-120.975570,37.649038],[-120.974629,37.649038],[-120.974629,37.648410],[-120.978236,37.647469],[-120.983098,37.646528],[-120.984196,37.643548],[-120.984667,37.643548],[-120.984667,37.645430],[-120.987804,37.645430],[-120.987804,37.645901],[-120.985451,37.646842],[-120.985451,37.647626],[-120.986235,37.647626],[-120.986235,37.649665],[-120.986078,37.649665],[-120.986078,37.650763],[-120.986706,37.650763],[-120.986706,37.652802],[-120.984667,37.652645],[-120.984667,37.654527],[-120.986078,37.654527],[-120.986235,37.655311],[-120.987019,37.655782],[-120.986706,37.656096],[-120.986706,37.657193],[-120.989215,37.657193],[-120.989215,37.657664],[-120.993450,37.657821],[-120.993450,37.657350],[-120.993764,37.657350],[-120.993764,37.655782]]]]}}
,{"id":95367,"type":"Feature","properties":{"name":"Riverbank"},"geometry":{"type":"Polygon","coordinates":[[[-120.926793,37.738594],[-120.926165,37.738437],[-120.926165,37.738123],[-120.926008,37.737809],[-120.926165,37.737496],[-120.923028,37.737025],[-120.921774,37.736868],[-120.920519,37.737025],[-120.919735,37.737339],[-120.918794,37.738123],[-120.918323,37.740633],[-120.913618,37.745808],[-120.913148,37.732634],[-120.917539,37.732634],[-120.917539,37.729026],[-120.912991,37.729026],[-120.912991,37.727772],[-120.915186,37.725419],[-120.916598,37.724164],[-120.916912,37.723851],[-120.919892,37.721655],[-120.921931,37.720871],[-120.921931,37.718989],[-120.924754,37.718989],[-120.924754,37.717577],[-120.927577,37.717577],[-120.928518,37.716950],[-120.930871,37.716950],[-120.929929,37.712244],[-120.929302,37.710833],[-120.929616,37.710833],[-120.937144,37.728556],[-120.937771,37.728556],[-120.934007,37.721184],[-120.933223,37.718204],[-120.936674,37.718518],[-120.937458,37.718361],[-120.937144,37.716322],[-120.939654,37.716322],[-120.940124,37.716950],[-120.940124,37.710990],[-120.944045,37.710833],[-120.947339,37.710362],[-120.950476,37.710990],[-120.956279,37.710990],[-120.956436,37.712088],[-120.957847,37.712401],[-120.958318,37.712401],[-120.958474,37.718204],[-120.956279,37.718204],[-120.956279,37.719459],[-120.956279,37.719930],[-120.958474,37.719930],[-120.958631,37.726674],[-120.963336,37.728399],[-120.969924,37.732163],[-120.970081,37.732790],[-120.973217,37.732790],[-120.973845,37.735143],[-120.965062,37.743769],[-120.961925,37.741887],[-120.961141,37.741574],[-120.958631,37.741417],[-120.956906,37.740476],[-120.954083,37.738280],[-120.947966,37.740476],[-120.944516,37.742201],[-120.942006,37.742358],[-120.939183,37.742044],[-120.935105,37.740319],[-120.933066,37.739535],[-120.929616,37.739221],[-120.926793,37.738594]]]}}
,{"id":95319,"type":"Feature","properties":{"name":"Empire"},"geometry":{"type":"Polygon","coordinates":[[[-120.903894,37.637118],[-120.904208,37.638216],[-120.908285,37.638216],[-120.908285,37.640882],[-120.911579,37.639941],[-120.911893,37.652331],[-120.906874,37.650763],[-120.904364,37.640882],[-120.902482,37.640882],[-120.902482,37.638216],[-120.893229,37.638373],[-120.893072,37.631158],[-120.900443,37.628021],[-120.900914,37.628021],[-120.902953,37.635706],[-120.903894,37.637118]]]}}
,{"id":95691,"type":"Feature","properties":{"name":"West Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.643083,38.673206],[-121.643867,38.676186],[-121.644338,38.677440],[-121.645592,38.689517],[-121.645592,38.690772],[-121.645122,38.692811],[-121.639476,38.705985],[-121.639632,38.706926],[-121.635398,38.717435],[-121.634457,38.723081],[-121.634613,38.724492],[-121.634457,38.729668],[-121.634613,38.733276],[-121.634300,38.733432],[-121.634300,38.733589],[-121.634770,38.733746],[-121.634927,38.734530],[-121.634770,38.735471],[-121.635241,38.740020],[-121.634300,38.740020],[-121.634300,38.747391],[-121.634613,38.748646],[-121.634457,38.748489],[-121.635555,38.764016],[-121.638378,38.764644],[-121.650925,38.763546],[-121.657042,38.764173],[-121.658610,38.763859],[-121.660649,38.763075],[-121.661120,38.762605],[-121.661590,38.762605],[-121.664099,38.765271],[-121.664413,38.766683],[-121.664256,38.767780],[-121.663943,38.768094],[-121.663472,38.768408],[-121.661120,38.769035],[-121.657983,38.768878],[-121.657669,38.766839],[-121.657042,38.765898],[-121.655473,38.764800],[-121.654375,38.764330],[-121.653748,38.764330],[-121.652807,38.764173],[-121.649513,38.764644],[-121.648102,38.765114],[-121.647474,38.765428],[-121.645279,38.766055],[-121.642926,38.765898],[-121.641828,38.766055],[-121.641044,38.766526],[-121.638848,38.767153],[-121.638691,38.767310],[-121.639005,38.767780],[-121.643710,38.770133],[-121.644808,38.770447],[-121.646533,38.771231],[-121.648572,38.772799],[-121.648415,38.773427],[-121.648102,38.773740],[-121.646690,38.774054],[-121.645279,38.774054],[-121.642926,38.773584],[-121.641671,38.773270],[-121.640417,38.772799],[-121.638691,38.771545],[-121.637593,38.770604],[-121.636966,38.769819],[-121.636652,38.769035],[-121.636025,38.766996],[-121.635398,38.766839],[-121.634770,38.766839],[-121.634300,38.767310],[-121.633672,38.768251],[-121.632731,38.769662],[-121.632418,38.771545],[-121.632418,38.774211],[-121.631477,38.775622],[-121.630849,38.776093],[-121.628497,38.777505],[-121.628026,38.777975],[-121.628340,38.778446],[-121.628026,38.778916],[-121.628810,38.779857],[-121.631163,38.781269],[-121.631477,38.781582],[-121.631790,38.782367],[-121.631163,38.783151],[-121.630692,38.783621],[-121.628026,38.784876],[-121.625987,38.785347],[-121.624105,38.785190],[-121.620655,38.783935],[-121.617204,38.782680],[-121.615793,38.782210],[-121.613754,38.781739],[-121.608107,38.780798],[-121.606696,38.780328],[-121.604814,38.779387],[-121.603873,38.778602],[-121.603089,38.778132],[-121.599795,38.774838],[-121.595403,38.768251],[-121.593835,38.765741],[-121.592580,38.762918],[-121.592267,38.760252],[-121.592737,38.758997],[-121.592737,38.757115],[-121.593208,38.755704],[-121.593364,38.753978],[-121.593992,38.752724],[-121.595090,38.749744],[-121.595560,38.748803],[-121.600109,38.742372],[-121.601050,38.740647],[-121.602618,38.736883],[-121.603873,38.732648],[-121.604657,38.727472],[-121.604971,38.720885],[-121.605284,38.719474],[-121.605755,38.718376],[-121.607637,38.715553],[-121.608421,38.714612],[-121.614224,38.708965],[-121.620812,38.704103],[-121.625203,38.700966],[-121.628810,38.698927],[-121.630379,38.697516],[-121.631163,38.696732],[-121.632418,38.695006],[-121.633672,38.692340],[-121.633986,38.690615],[-121.634143,38.689047],[-121.633829,38.686223],[-121.631947,38.680577],[-121.630692,38.678225],[-121.628654,38.675401],[-121.628026,38.674774],[-121.609519,38.661129],[-121.603402,38.655169],[-121.596344,38.646543],[-121.593992,38.644033],[-121.589757,38.642465],[-121.587091,38.642779],[-121.576112,38.648582],[-121.574230,38.648582],[-121.570466,38.647641],[-121.566858,38.645131],[-121.565133,38.642308],[-121.562781,38.627095],[-121.561526,38.618625],[-121.558232,38.608274],[-121.549920,38.599334],[-121.547881,38.598706],[-121.548979,38.597295],[-121.550233,38.597922],[-121.555566,38.602784],[-121.561212,38.601373],[-121.565133,38.600118],[-121.572505,38.598236],[-121.576112,38.597609],[-121.575955,38.597138],[-121.573603,38.594315],[-121.573759,38.593844],[-121.570936,38.590551],[-121.572034,38.590237],[-121.571877,38.589767],[-121.572818,38.589767],[-121.572662,38.589453],[-121.570466,38.582709],[-121.582699,38.579415],[-121.582699,38.578788],[-121.542705,38.587728],[-121.538470,38.588512],[-121.536745,38.588512],[-121.532510,38.587100],[-121.516983,38.582866],[-121.516356,38.582552],[-121.515728,38.581925],[-121.514787,38.582081],[-121.513219,38.581925],[-121.508200,38.580513],[-121.511494,38.575024],[-121.519022,38.568750],[-121.520904,38.566240],[-121.519806,38.563731],[-121.516513,38.557928],[-121.514003,38.553066],[-121.511337,38.546322],[-121.512592,38.541617],[-121.513533,38.540205],[-121.520434,38.535343],[-121.528433,38.532049],[-121.530785,38.527971],[-121.525609,38.523109],[-121.524668,38.520914],[-121.525139,38.519032],[-121.533138,38.516836],[-121.547253,38.515267],[-121.551802,38.513856],[-121.556821,38.506484],[-121.558075,38.501936],[-121.560271,38.502093],[-121.560585,38.500054],[-121.560271,38.494408],[-121.560428,38.487193],[-121.559801,38.485468],[-121.556350,38.479351],[-121.566858,38.477469],[-121.584425,38.473861],[-121.584738,38.537225],[-121.584111,38.541460],[-121.583013,38.545381],[-121.582542,38.546322],[-121.582856,38.551027],[-121.583327,38.573141],[-121.582856,38.573455],[-121.582856,38.574082],[-121.582542,38.574396],[-121.583483,38.578631],[-121.586150,38.588825],[-121.586777,38.592590],[-121.587405,38.594158],[-121.587091,38.594629],[-121.587248,38.594942],[-121.589600,38.598079],[-121.590698,38.599020],[-121.591639,38.600432],[-121.612656,38.627722],[-121.615949,38.632898],[-121.619086,38.638230],[-121.625046,38.647327],[-121.629908,38.655169],[-121.636652,38.662384],[-121.638221,38.663952],[-121.640730,38.666932],[-121.641671,38.668344],[-121.643083,38.673206]]]}}
,{"id":94705,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.227157,37.879750],[-122.223863,37.878338],[-122.221353,37.875358],[-122.217432,37.871751],[-122.216335,37.868771],[-122.217903,37.867830],[-122.219628,37.867673],[-122.220412,37.866732],[-122.221197,37.866262],[-122.221824,37.866262],[-122.222295,37.866575],[-122.222451,37.866575],[-122.222765,37.866262],[-122.222608,37.865634],[-122.221981,37.865164],[-122.222138,37.864693],[-122.221981,37.864223],[-122.221667,37.864223],[-122.221353,37.864536],[-122.221040,37.864693],[-122.220256,37.864223],[-122.217432,37.861870],[-122.217119,37.861243],[-122.216491,37.860615],[-122.216178,37.859674],[-122.214923,37.858890],[-122.214139,37.858106],[-122.213511,37.857949],[-122.213668,37.857792],[-122.214296,37.857949],[-122.215080,37.857008],[-122.215394,37.857949],[-122.216335,37.858890],[-122.217903,37.858890],[-122.219315,37.858420],[-122.219628,37.858890],[-122.219315,37.859518],[-122.219942,37.859518],[-122.220256,37.859674],[-122.220726,37.860302],[-122.221040,37.860145],[-122.221353,37.859047],[-122.221981,37.858890],[-122.221981,37.858420],[-122.222608,37.857792],[-122.222295,37.857322],[-122.222295,37.857008],[-122.221667,37.855910],[-122.221667,37.855283],[-122.221824,37.854969],[-122.222608,37.854812],[-122.223549,37.855126],[-122.223079,37.854028],[-122.223392,37.853714],[-122.224020,37.853558],[-122.224804,37.854655],[-122.224490,37.854812],[-122.224647,37.855440],[-122.227000,37.857165],[-122.227941,37.856381],[-122.228568,37.856694],[-122.229195,37.856694],[-122.230293,37.855753],[-122.232175,37.854812],[-122.234214,37.853558],[-122.234214,37.852617],[-122.243782,37.851832],[-122.244566,37.851989],[-122.245036,37.851832],[-122.246134,37.851832],[-122.246134,37.851519],[-122.245664,37.851048],[-122.245977,37.850734],[-122.247389,37.851676],[-122.248644,37.851519],[-122.249742,37.851519],[-122.250996,37.851205],[-122.252251,37.849480],[-122.252565,37.851048],[-122.253035,37.850891],[-122.252878,37.851205],[-122.253349,37.853558],[-122.257740,37.853087],[-122.266053,37.851989],[-122.266994,37.859204],[-122.267151,37.859674],[-122.267151,37.860302],[-122.258995,37.861400],[-122.258054,37.861713],[-122.257427,37.861556],[-122.253506,37.861870],[-122.253506,37.862184],[-122.248801,37.862341],[-122.248801,37.863282],[-122.248173,37.863282],[-122.247075,37.863595],[-122.246762,37.863909],[-122.246762,37.864536],[-122.247389,37.865007],[-122.247546,37.865791],[-122.247703,37.866105],[-122.246134,37.866105],[-122.244880,37.865948],[-122.244566,37.863752],[-122.244409,37.862654],[-122.244095,37.862654],[-122.244409,37.863282],[-122.244409,37.863909],[-122.243782,37.863282],[-122.242370,37.863125],[-122.243311,37.864066],[-122.243311,37.864223],[-122.242370,37.864223],[-122.241586,37.864066],[-122.241429,37.864223],[-122.240802,37.864066],[-122.240488,37.865164],[-122.240488,37.865634],[-122.239233,37.866575],[-122.238920,37.867203],[-122.238449,37.867673],[-122.236567,37.867673],[-122.236096,37.867987],[-122.235626,37.868771],[-122.234685,37.869398],[-122.235155,37.869712],[-122.235626,37.869712],[-122.235940,37.869398],[-122.236096,37.869712],[-122.237194,37.868771],[-122.237351,37.869085],[-122.239076,37.869398],[-122.239547,37.869869],[-122.240174,37.869555],[-122.241586,37.870026],[-122.242213,37.870026],[-122.242997,37.869712],[-122.245036,37.869712],[-122.245350,37.869712],[-122.245193,37.872849],[-122.246291,37.881005],[-122.246605,37.882416],[-122.246605,37.884769],[-122.246605,37.885239],[-122.244095,37.883200],[-122.242056,37.881946],[-122.239861,37.882887],[-122.238606,37.883357],[-122.230921,37.881318],[-122.227157,37.879750]]]}}
,{"id":94602,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.209904,37.788312],[-122.211159,37.789724],[-122.211473,37.789567],[-122.211943,37.790037],[-122.212257,37.789880],[-122.214766,37.791292],[-122.215080,37.790978],[-122.215394,37.791135],[-122.215550,37.790978],[-122.215707,37.790978],[-122.215394,37.791449],[-122.218844,37.792860],[-122.218844,37.793174],[-122.219001,37.793331],[-122.219315,37.792390],[-122.220726,37.792704],[-122.220569,37.793331],[-122.220569,37.794115],[-122.220569,37.794272],[-122.222138,37.794899],[-122.222138,37.795213],[-122.222765,37.795213],[-122.222608,37.796154],[-122.223549,37.795840],[-122.224020,37.795683],[-122.224490,37.796154],[-122.226843,37.796625],[-122.226372,37.798350],[-122.229509,37.798977],[-122.229823,37.798036],[-122.230137,37.797722],[-122.233117,37.796625],[-122.233117,37.798977],[-122.233430,37.799605],[-122.234685,37.799761],[-122.230293,37.803369],[-122.229509,37.803055],[-122.227784,37.802741],[-122.227470,37.803996],[-122.229039,37.804310],[-122.228882,37.804467],[-122.228882,37.804623],[-122.228568,37.804623],[-122.228568,37.804937],[-122.228725,37.804780],[-122.229039,37.805251],[-122.229039,37.805721],[-122.227470,37.806349],[-122.226059,37.807290],[-122.226059,37.807447],[-122.224647,37.808544],[-122.223863,37.807760],[-122.223392,37.808074],[-122.223236,37.807917],[-122.223079,37.808074],[-122.224490,37.809485],[-122.223863,37.809956],[-122.222608,37.810113],[-122.221197,37.811524],[-122.221040,37.812465],[-122.219785,37.813406],[-122.217746,37.812936],[-122.217746,37.812779],[-122.217276,37.812622],[-122.215394,37.811995],[-122.215237,37.812309],[-122.214766,37.812779],[-122.214609,37.812622],[-122.213982,37.813250],[-122.213041,37.814661],[-122.212727,37.816230],[-122.212257,37.817014],[-122.208806,37.819523],[-122.208179,37.820307],[-122.207708,37.821092],[-122.206454,37.819837],[-122.206610,37.819523],[-122.206454,37.819053],[-122.205513,37.818582],[-122.203944,37.817171],[-122.201278,37.813720],[-122.199553,37.811838],[-122.198768,37.810897],[-122.198612,37.810740],[-122.198768,37.811211],[-122.201121,37.813720],[-122.204258,37.817955],[-122.204101,37.818112],[-122.203317,37.817955],[-122.203160,37.817327],[-122.201278,37.814504],[-122.198455,37.816386],[-122.193750,37.813406],[-122.193750,37.812779],[-122.192809,37.812779],[-122.191240,37.812465],[-122.188888,37.812152],[-122.186849,37.811524],[-122.186535,37.811211],[-122.186849,37.810583],[-122.186849,37.810270],[-122.186378,37.809956],[-122.185594,37.809956],[-122.184967,37.810897],[-122.184182,37.810897],[-122.183241,37.809956],[-122.183241,37.809642],[-122.181987,37.809329],[-122.181202,37.808858],[-122.180732,37.808388],[-122.179948,37.806819],[-122.179163,37.805094],[-122.178222,37.803996],[-122.177438,37.803369],[-122.177909,37.803055],[-122.178536,37.803055],[-122.179791,37.803996],[-122.180104,37.804467],[-122.180732,37.804623],[-122.181202,37.804310],[-122.181045,37.801330],[-122.182143,37.801016],[-122.187162,37.804467],[-122.188731,37.802584],[-122.186378,37.800389],[-122.186849,37.799918],[-122.189201,37.801957],[-122.189985,37.801173],[-122.190456,37.800232],[-122.189985,37.799448],[-122.189985,37.798977],[-122.190770,37.798977],[-122.190770,37.798977],[-122.191867,37.798977],[-122.191711,37.798820],[-122.193122,37.798036],[-122.193122,37.798193],[-122.195161,37.797095],[-122.196416,37.796154],[-122.200651,37.793801],[-122.200807,37.793801],[-122.201592,37.793331],[-122.201592,37.793174],[-122.202376,37.792704],[-122.202846,37.792233],[-122.202846,37.792390],[-122.205513,37.790821],[-122.206140,37.791449],[-122.208179,37.790351],[-122.207552,37.789567],[-122.209904,37.788312]]]}}
,{"id":95252,"type":"Feature","properties":{"name":"Valley Springs"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-120.987647,38.207390],[-120.995489,38.225426],[-120.993607,38.225583],[-120.992352,38.225269],[-120.991881,38.224956],[-120.991881,38.224485],[-120.991568,38.224172],[-120.989529,38.223858],[-120.988117,38.222603],[-120.985765,38.221348],[-120.984510,38.221192],[-120.983726,38.221192],[-120.982314,38.221819],[-120.981059,38.221819],[-120.978707,38.221035],[-120.972120,38.217898],[-120.971649,38.218055],[-120.970551,38.219309],[-120.970081,38.219623],[-120.967571,38.220407],[-120.966316,38.220564],[-120.965689,38.219937],[-120.964748,38.219623],[-120.963964,38.219623],[-120.963336,38.219937],[-120.962866,38.220407],[-120.962552,38.221348],[-120.962082,38.221662],[-120.961454,38.221976],[-120.957847,38.222917],[-120.956122,38.224015],[-120.954867,38.225583],[-120.953456,38.226367],[-120.952358,38.226367],[-120.950319,38.225897],[-120.948907,38.225426],[-120.947182,38.224642],[-120.942163,38.223387],[-120.940124,38.222446],[-120.939026,38.221976],[-120.938399,38.221348],[-120.937144,38.220721],[-120.936674,38.220721],[-120.934792,38.221192],[-120.933380,38.221976],[-120.930086,38.224956],[-120.928204,38.225897],[-120.927263,38.226681],[-120.925538,38.227622],[-120.919107,38.229661],[-120.917696,38.229975],[-120.914873,38.229975],[-120.912677,38.229504],[-120.909383,38.227465],[-120.908129,38.226524],[-120.907031,38.225113],[-120.906560,38.224956],[-120.906090,38.224956],[-120.905776,38.224956],[-120.904835,38.224485],[-120.903737,38.223544],[-120.903580,38.222917],[-120.902482,38.222289],[-120.901541,38.221976],[-120.899816,38.221976],[-120.896052,38.221192],[-120.896052,38.221505],[-120.895738,38.221505],[-120.893856,38.221348],[-120.892915,38.221505],[-120.892445,38.221976],[-120.891660,38.223074],[-120.890563,38.224956],[-120.888994,38.227151],[-120.888367,38.226838],[-120.889308,38.225740],[-120.889621,38.224172],[-120.890249,38.222603],[-120.890092,38.222133],[-120.891347,38.220721],[-120.892288,38.220407],[-120.891660,38.220094],[-120.891347,38.219623],[-120.892601,38.219466],[-120.892601,38.219780],[-120.893542,38.219780],[-120.894013,38.218839],[-120.894327,38.218682],[-120.894797,38.217584],[-120.895111,38.217271],[-120.896522,38.218682],[-120.896522,38.218839],[-120.901228,38.215075],[-120.904678,38.213506],[-120.904521,38.213506],[-120.907815,38.212408],[-120.906090,38.209115],[-120.905462,38.207546],[-120.905149,38.205664],[-120.905149,38.202214],[-120.905776,38.197509],[-120.906717,38.197038],[-120.907658,38.196411],[-120.909227,38.196411],[-120.910795,38.198136],[-120.911736,38.198136],[-120.912050,38.198293],[-120.912520,38.198293],[-120.914402,38.199077],[-120.914402,38.199234],[-120.914089,38.199704],[-120.914089,38.200018],[-120.914873,38.199861],[-120.916598,38.200332],[-120.917539,38.200175],[-120.918794,38.200645],[-120.920362,38.200645],[-120.921931,38.201430],[-120.923342,38.204410],[-120.925067,38.209742],[-120.925852,38.210370],[-120.928047,38.213506],[-120.929929,38.214447],[-120.931812,38.214447],[-120.934635,38.213820],[-120.936360,38.214604],[-120.934948,38.213663],[-120.933223,38.208487],[-120.934164,38.207233],[-120.935262,38.206919],[-120.935889,38.206449],[-120.936517,38.205508],[-120.936830,38.205821],[-120.936830,38.206292],[-120.936517,38.207076],[-120.936360,38.207546],[-120.935576,38.208017],[-120.935262,38.208331],[-120.936674,38.208644],[-120.937144,38.208958],[-120.937301,38.209272],[-120.937301,38.210213],[-120.936987,38.210840],[-120.937144,38.211938],[-120.937615,38.212565],[-120.938713,38.212095],[-120.939810,38.212408],[-120.940281,38.212408],[-120.940595,38.212252],[-120.941222,38.211311],[-120.942477,38.210370],[-120.942634,38.210526],[-120.942947,38.211938],[-120.942634,38.212252],[-120.942477,38.213193],[-120.943104,38.214447],[-120.943575,38.214604],[-120.944202,38.214604],[-120.944986,38.214134],[-120.945770,38.213820],[-120.945300,38.211938],[-120.945300,38.211624],[-120.946241,38.211467],[-120.946868,38.210213],[-120.947182,38.210056],[-120.947496,38.210056],[-120.947496,38.210213],[-120.947496,38.211624],[-120.947809,38.212095],[-120.948123,38.212408],[-120.949848,38.212095],[-120.949691,38.212879],[-120.950476,38.212879],[-120.950789,38.212722],[-120.950476,38.211781],[-120.950632,38.211311],[-120.952671,38.208801],[-120.954867,38.208017],[-120.955338,38.208017],[-120.955651,38.207546],[-120.955808,38.207546],[-120.956279,38.208174],[-120.956749,38.208487],[-120.958788,38.208487],[-120.959729,38.208801],[-120.960043,38.208801],[-120.960513,38.208331],[-120.961298,38.208487],[-120.961454,38.207860],[-120.962709,38.208174],[-120.962709,38.208017],[-120.962239,38.207233],[-120.962239,38.206919],[-120.963180,38.206919],[-120.963650,38.206605],[-120.964121,38.206762],[-120.964591,38.206292],[-120.964748,38.206292],[-120.965219,38.206762],[-120.965219,38.206919],[-120.964591,38.208174],[-120.963964,38.208487],[-120.963964,38.209115],[-120.964905,38.210997],[-120.965375,38.210997],[-120.966316,38.210526],[-120.967885,38.210056],[-120.968042,38.209899],[-120.968042,38.209272],[-120.969924,38.209272],[-120.970237,38.209115],[-120.970865,38.208644],[-120.971335,38.208644],[-120.971492,38.208331],[-120.971492,38.208017],[-120.971022,38.207390],[-120.971179,38.207076],[-120.972276,38.207703],[-120.972590,38.207703],[-120.973374,38.207233],[-120.973688,38.206292],[-120.974629,38.206135],[-120.974629,38.205351],[-120.975100,38.205194],[-120.975413,38.204723],[-120.985765,38.207233],[-120.987647,38.207390]]],[[[-120.860292,38.206762],[-120.837080,38.206919],[-120.837080,38.228093],[-120.836609,38.228720],[-120.834570,38.229504],[-120.834570,38.230602],[-120.835041,38.231073],[-120.836296,38.231543],[-120.836923,38.232014],[-120.838178,38.234366],[-120.839433,38.235935],[-120.840217,38.237660],[-120.840374,38.238915],[-120.840530,38.239542],[-120.841785,38.241424],[-120.842883,38.242522],[-120.843354,38.244247],[-120.845392,38.246600],[-120.845863,38.247384],[-120.846334,38.248795],[-120.846177,38.249580],[-120.846334,38.250991],[-120.846334,38.251619],[-120.847431,38.253971],[-120.847745,38.254285],[-120.848686,38.254442],[-120.849157,38.254755],[-120.849157,38.255226],[-120.849000,38.255696],[-120.849000,38.256167],[-120.849313,38.256637],[-120.850098,38.257265],[-120.849000,38.258833],[-120.848686,38.259461],[-120.848686,38.261186],[-120.847275,38.262441],[-120.847588,38.263382],[-120.846804,38.264323],[-120.846177,38.264323],[-120.843824,38.264323],[-120.843197,38.264480],[-120.840687,38.265421],[-120.837394,38.267146],[-120.836609,38.267459],[-120.835355,38.267459],[-120.834884,38.267616],[-120.832061,38.269185],[-120.829708,38.270910],[-120.827983,38.271851],[-120.826885,38.272792],[-120.826415,38.273576],[-120.825631,38.274204],[-120.823749,38.274988],[-120.822023,38.275458],[-120.820925,38.277968],[-120.820925,38.278595],[-120.819984,38.280164],[-120.819514,38.281732],[-120.819200,38.282046],[-120.818573,38.282202],[-120.817632,38.283614],[-120.816848,38.283928],[-120.815750,38.284085],[-120.814965,38.283771],[-120.814338,38.283457],[-120.813711,38.282987],[-120.812927,38.281732],[-120.811358,38.281418],[-120.810574,38.281575],[-120.810103,38.282046],[-120.809162,38.283928],[-120.809162,38.284555],[-120.808378,38.285810],[-120.808378,38.287692],[-120.807751,38.288790],[-120.807280,38.288947],[-120.806810,38.288790],[-120.805712,38.288006],[-120.805398,38.288006],[-120.804614,38.288162],[-120.803987,38.288790],[-120.803359,38.288790],[-120.802105,38.288319],[-120.800693,38.287065],[-120.799909,38.285967],[-120.799281,38.285653],[-120.798497,38.285653],[-120.795674,38.286908],[-120.792537,38.288006],[-120.790498,38.288633],[-120.785323,38.288947],[-120.779049,38.287692],[-120.777637,38.287692],[-120.774814,38.288633],[-120.773403,38.288790],[-120.771521,38.288790],[-120.769795,38.289260],[-120.767286,38.290358],[-120.766345,38.290358],[-120.761797,38.289888],[-120.759601,38.290044],[-120.757719,38.289574],[-120.756307,38.288319],[-120.755680,38.288162],[-120.754896,38.288319],[-120.754425,38.288476],[-120.753170,38.290358],[-120.752700,38.292711],[-120.751759,38.296004],[-120.750347,38.297730],[-120.750034,38.297730],[-120.749720,38.297259],[-120.750347,38.296475],[-120.750504,38.295691],[-120.750661,38.294436],[-120.750347,38.293966],[-120.751131,38.293338],[-120.751288,38.292554],[-120.751288,38.291770],[-120.750661,38.290829],[-120.749563,38.290672],[-120.749406,38.290515],[-120.752229,38.289888],[-120.752543,38.289417],[-120.752229,38.288790],[-120.753013,38.288790],[-120.753484,38.288162],[-120.753484,38.287692],[-120.753641,38.287535],[-120.754268,38.287692],[-120.755366,38.287535],[-120.755993,38.287535],[-120.757719,38.287065],[-120.757405,38.286123],[-120.757405,38.285653],[-120.757248,38.283928],[-120.757405,38.283144],[-120.757248,38.281732],[-120.757405,38.281261],[-120.757248,38.279536],[-120.757876,38.278281],[-120.758032,38.277340],[-120.758346,38.276713],[-120.758346,38.274831],[-120.759130,38.273106],[-120.759444,38.272008],[-120.760071,38.271067],[-120.760699,38.270753],[-120.760855,38.270439],[-120.760542,38.268714],[-120.760385,38.268244],[-120.761012,38.263538],[-120.761169,38.263225],[-120.761326,38.262284],[-120.762267,38.261500],[-120.763365,38.259774],[-120.763365,38.259461],[-120.762581,38.259304],[-120.760071,38.258206],[-120.759444,38.258206],[-120.757562,38.258676],[-120.756150,38.259461],[-120.752386,38.261029],[-120.746740,38.260088],[-120.744230,38.259931],[-120.744074,38.259617],[-120.744858,38.257108],[-120.745485,38.256324],[-120.746112,38.256167],[-120.748151,38.256010],[-120.750034,38.255226],[-120.754582,38.251932],[-120.755680,38.247541],[-120.759601,38.243149],[-120.760071,38.242522],[-120.760542,38.240326],[-120.760228,38.237660],[-120.739996,38.238130],[-120.739212,38.239856],[-120.737800,38.240326],[-120.737486,38.240953],[-120.737329,38.241738],[-120.736232,38.242051],[-120.735447,38.242679],[-120.734663,38.242208],[-120.734193,38.242051],[-120.732311,38.241894],[-120.731370,38.241267],[-120.730115,38.240169],[-120.729801,38.239699],[-120.729644,38.238915],[-120.728703,38.239385],[-120.728076,38.238758],[-120.726664,38.238444],[-120.726507,38.238287],[-120.726507,38.237817],[-120.727135,38.237032],[-120.727135,38.236562],[-120.727292,38.235935],[-120.726821,38.235621],[-120.727448,38.234680],[-120.727135,38.234052],[-120.726507,38.233268],[-120.726507,38.231857],[-120.726978,38.231073],[-120.726507,38.229661],[-120.726664,38.228720],[-120.726507,38.228563],[-120.726037,38.228406],[-120.726821,38.228093],[-120.727292,38.226995],[-120.727448,38.226054],[-120.727292,38.225583],[-120.727448,38.224956],[-120.727605,38.224485],[-120.727292,38.223701],[-120.727448,38.222760],[-120.727919,38.221662],[-120.728546,38.217898],[-120.728703,38.217114],[-120.728546,38.216643],[-120.729017,38.216173],[-120.729017,38.215702],[-120.728703,38.215075],[-120.728233,38.214447],[-120.728546,38.213506],[-120.728076,38.210997],[-120.727135,38.210056],[-120.726664,38.208174],[-120.725253,38.207076],[-120.725880,38.206135],[-120.725880,38.205351],[-120.724782,38.203782],[-120.723527,38.202998],[-120.723057,38.202057],[-120.726351,38.204723],[-120.727448,38.205194],[-120.732467,38.206449],[-120.736859,38.208174],[-120.743133,38.209585],[-120.744544,38.210213],[-120.746897,38.211938],[-120.748622,38.212408],[-120.763522,38.211938],[-120.765718,38.211467],[-120.769795,38.209742],[-120.772775,38.208958],[-120.774501,38.208644],[-120.777010,38.208487],[-120.779049,38.208644],[-120.782186,38.209272],[-120.783441,38.209272],[-120.785166,38.208958],[-120.786891,38.208174],[-120.789871,38.206135],[-120.787989,38.206762],[-120.787675,38.206292],[-120.787675,38.204880],[-120.787362,38.203782],[-120.787048,38.203469],[-120.784852,38.202528],[-120.783597,38.201273],[-120.780931,38.200332],[-120.780461,38.200018],[-120.780304,38.199234],[-120.780461,38.198763],[-120.780774,38.198607],[-120.782499,38.196411],[-120.782343,38.194842],[-120.783911,38.192333],[-120.784538,38.189980],[-120.785950,38.187314],[-120.786107,38.186687],[-120.786577,38.185746],[-120.789871,38.182922],[-120.790969,38.182295],[-120.791126,38.181668],[-120.791753,38.181040],[-120.792224,38.179943],[-120.792067,38.179315],[-120.791439,38.179001],[-120.790969,38.177433],[-120.790498,38.177119],[-120.788773,38.172257],[-120.790341,38.170375],[-120.792694,38.169277],[-120.793949,38.167552],[-120.794419,38.166141],[-120.794106,38.165356],[-120.794106,38.165043],[-120.793792,38.162533],[-120.792851,38.160337],[-120.794263,38.158769],[-120.801320,38.156103],[-120.807594,38.153280],[-120.808378,38.152652],[-120.807123,38.152966],[-120.802418,38.150770],[-120.801477,38.148731],[-120.798497,38.145751],[-120.797242,38.142615],[-120.795360,38.140576],[-120.793635,38.137282],[-120.792851,38.134616],[-120.792851,38.132106],[-120.793008,38.131636],[-120.792380,38.129910],[-120.791753,38.129597],[-120.790969,38.128028],[-120.790498,38.127872],[-120.789557,38.125048],[-120.788930,38.124578],[-120.788616,38.124107],[-120.787675,38.123166],[-120.786891,38.121127],[-120.784695,38.119402],[-120.784382,38.118618],[-120.785636,38.117206],[-120.785479,38.116736],[-120.784852,38.116422],[-120.784068,38.116893],[-120.779833,38.117363],[-120.776226,38.118932],[-120.774814,38.119088],[-120.774030,38.118932],[-120.773403,38.118932],[-120.772148,38.119716],[-120.770580,38.119559],[-120.769482,38.118775],[-120.768070,38.118304],[-120.766815,38.118304],[-120.766031,38.118461],[-120.764463,38.119088],[-120.762738,38.116579],[-120.762581,38.115167],[-120.762424,38.097758],[-120.761797,38.097288],[-120.761326,38.096033],[-120.760228,38.094621],[-120.759914,38.093837],[-120.759287,38.093053],[-120.759130,38.092582],[-120.759758,38.092112],[-120.759758,38.091798],[-120.759444,38.090543],[-120.758817,38.089759],[-120.757248,38.088191],[-120.756934,38.087407],[-120.755366,38.086466],[-120.754582,38.085838],[-120.753641,38.085211],[-120.752857,38.084584],[-120.750661,38.083329],[-120.750190,38.082858],[-120.749406,38.080976],[-120.747367,38.078937],[-120.744858,38.078310],[-120.742348,38.077369],[-120.741564,38.076742],[-120.739682,38.074546],[-120.738741,38.072977],[-120.738741,38.072036],[-120.739682,38.068586],[-120.740153,38.067802],[-120.740466,38.066861],[-120.740466,38.065606],[-120.739996,38.064665],[-120.739996,38.064351],[-120.741094,38.063410],[-120.740466,38.062626],[-120.740153,38.061999],[-120.740466,38.061057],[-120.739996,38.059175],[-120.739212,38.058391],[-120.738427,38.056666],[-120.737173,38.055254],[-120.736388,38.053686],[-120.750347,38.053843],[-120.750661,38.054000],[-120.750504,38.056666],[-120.750818,38.057293],[-120.751288,38.057450],[-120.774030,38.057136],[-120.775285,38.056823],[-120.779990,38.054941],[-120.780147,38.054627],[-120.779520,38.053529],[-120.779676,38.053059],[-120.782656,38.050235],[-120.784068,38.049451],[-120.785793,38.048981],[-120.791910,38.049608],[-120.794263,38.050392],[-120.795047,38.050392],[-120.795517,38.049608],[-120.795988,38.049294],[-120.799281,38.049138],[-120.800222,38.049765],[-120.802105,38.052118],[-120.802105,38.052588],[-120.802105,38.054157],[-120.803359,38.054784],[-120.803830,38.054941],[-120.805555,38.054470],[-120.807280,38.052902],[-120.808064,38.051961],[-120.809476,38.051177],[-120.811672,38.050706],[-120.814652,38.050549],[-120.815593,38.050079],[-120.817318,38.049922],[-120.818102,38.049451],[-120.819984,38.048824],[-120.820455,38.048981],[-120.821239,38.049451],[-120.821553,38.049451],[-120.821866,38.049294],[-120.822023,38.048981],[-120.821866,38.047569],[-120.822337,38.047256],[-120.825787,38.046785],[-120.826572,38.046471],[-120.828297,38.046471],[-120.832375,38.046158],[-120.833786,38.046158],[-120.834570,38.045687],[-120.838335,38.042237],[-120.839433,38.041609],[-120.840844,38.041139],[-120.841315,38.040668],[-120.841471,38.040041],[-120.841785,38.039727],[-120.843824,38.039100],[-120.845549,38.039570],[-120.846647,38.039570],[-120.850098,38.037688],[-120.850568,38.037218],[-120.851352,38.035649],[-120.851980,38.035492],[-120.853078,38.035649],[-120.851980,38.035336],[-120.851666,38.034865],[-120.851980,38.033454],[-120.852607,38.032042],[-120.854019,38.032042],[-120.855273,38.031571],[-120.855273,38.029689],[-120.854176,38.029689],[-120.852607,38.029846],[-120.852764,38.028278],[-120.853548,38.025925],[-120.854646,38.023729],[-120.854803,38.022475],[-120.854646,38.020906],[-120.852764,38.015574],[-120.852764,38.011339],[-120.852450,38.009300],[-120.875976,38.028905],[-120.918794,38.070782],[-120.926479,38.077369],[-120.938869,38.088348],[-120.971179,38.168023],[-120.969767,38.168179],[-120.962709,38.168964],[-120.962552,38.167709],[-120.963650,38.167082],[-120.963807,38.166768],[-120.963807,38.163788],[-120.963650,38.163317],[-120.963180,38.163004],[-120.959886,38.163004],[-120.959415,38.163317],[-120.959259,38.163945],[-120.958945,38.164258],[-120.956436,38.164258],[-120.956749,38.165356],[-120.958474,38.166768],[-120.958004,38.169905],[-120.958004,38.171630],[-120.957377,38.173669],[-120.957533,38.175237],[-120.957690,38.175708],[-120.959572,38.178374],[-120.959572,38.179786],[-120.965532,38.182138],[-120.952358,38.187941],[-120.942163,38.193117],[-120.942006,38.192960],[-120.938399,38.194529],[-120.938399,38.194529],[-120.937615,38.194529],[-120.935889,38.194215],[-120.932439,38.194215],[-120.931184,38.194529],[-120.930557,38.195470],[-120.926950,38.194842],[-120.926636,38.187157],[-120.926165,38.181040],[-120.925695,38.178374],[-120.921303,38.178531],[-120.910638,38.180256],[-120.898561,38.183236],[-120.897150,38.183236],[-120.893699,38.182766],[-120.890563,38.183550],[-120.885387,38.183236],[-120.880682,38.183864],[-120.874094,38.184177],[-120.872369,38.184334],[-120.872526,38.184491],[-120.872212,38.184805],[-120.870801,38.185589],[-120.868134,38.185902],[-120.866880,38.185902],[-120.866566,38.185432],[-120.864213,38.186059],[-120.862959,38.186059],[-120.860292,38.185432],[-120.860135,38.185902],[-120.860135,38.202684],[-120.860292,38.206762]]]]}}
,{"id":94596,"type":"Feature","properties":{"name":"Walnut Creek"},"geometry":{"type":"Polygon","coordinates":[[[-122.060122,37.890729],[-122.065454,37.893238],[-122.066081,37.893395],[-122.069061,37.894963],[-122.070002,37.895591],[-122.070630,37.896532],[-122.070787,37.897159],[-122.070944,37.898100],[-122.069061,37.906883],[-122.066238,37.914569],[-122.065611,37.915666],[-122.064043,37.917235],[-122.062788,37.917235],[-122.063258,37.915510],[-122.063729,37.911745],[-122.062945,37.911745],[-122.061376,37.911745],[-122.060122,37.911589],[-122.059494,37.915353],[-122.058083,37.915353],[-122.057926,37.917078],[-122.056357,37.917078],[-122.056671,37.915666],[-122.058083,37.911118],[-122.057612,37.907197],[-122.054946,37.908138],[-122.054475,37.907197],[-122.052123,37.908138],[-122.051966,37.907824],[-122.052280,37.907354],[-122.051966,37.906727],[-122.051338,37.906883],[-122.051025,37.906256],[-122.051652,37.905942],[-122.050711,37.903903],[-122.050711,37.903433],[-122.050084,37.902178],[-122.050084,37.902021],[-122.050397,37.902021],[-122.050554,37.901237],[-122.049300,37.899512],[-122.041458,37.900139],[-122.038164,37.899826],[-122.037693,37.899669],[-122.036752,37.900139],[-122.035968,37.899669],[-122.035027,37.897943],[-122.033929,37.897002],[-122.032988,37.896061],[-122.032518,37.894807],[-122.032518,37.896218],[-122.032361,37.897002],[-122.031420,37.897943],[-122.030636,37.898884],[-122.030322,37.899355],[-122.030165,37.900453],[-122.030322,37.900767],[-122.030949,37.901080],[-122.033302,37.902021],[-122.033302,37.903433],[-122.029538,37.902492],[-122.027185,37.901080],[-122.024362,37.900296],[-122.017461,37.898100],[-122.014167,37.896689],[-122.012442,37.896375],[-122.009305,37.894963],[-122.006953,37.893238],[-122.006482,37.892140],[-122.006168,37.891042],[-122.005698,37.891356],[-122.006012,37.890886],[-122.006325,37.885083],[-122.007109,37.882416],[-122.013854,37.880534],[-122.011030,37.875202],[-122.011658,37.874574],[-122.010560,37.872222],[-122.017461,37.873163],[-122.019970,37.873633],[-122.020127,37.866419],[-122.023264,37.866419],[-122.023107,37.871908],[-122.024676,37.872849],[-122.024832,37.873006],[-122.025617,37.873476],[-122.026087,37.873476],[-122.026087,37.866419],[-122.026401,37.866419],[-122.026401,37.867203],[-122.026871,37.867203],[-122.026871,37.866262],[-122.028597,37.865791],[-122.028910,37.867830],[-122.035498,37.867830],[-122.035341,37.867203],[-122.036282,37.865634],[-122.037066,37.865634],[-122.038007,37.866262],[-122.038164,37.867830],[-122.038791,37.868614],[-122.039889,37.868144],[-122.044594,37.874417],[-122.048202,37.878025],[-122.049143,37.879279],[-122.050868,37.881946],[-122.055416,37.886024],[-122.057612,37.889160],[-122.058553,37.889945],[-122.060122,37.890729]]]}}
,{"id":94583,"type":"Feature","properties":{"name":"San Ramon"},"geometry":{"type":"Polygon","coordinates":[[[-122.049927,37.816386],[-122.049613,37.816543],[-122.047104,37.815445],[-122.041614,37.810113],[-122.038948,37.808701],[-122.038478,37.809172],[-122.038007,37.808858],[-122.037693,37.808858],[-122.037537,37.809172],[-122.037537,37.809642],[-122.035027,37.806349],[-122.033302,37.804780],[-122.032674,37.803996],[-122.027028,37.803526],[-122.025617,37.803055],[-122.024676,37.804467],[-122.024676,37.805094],[-122.023421,37.805251],[-122.022950,37.805564],[-122.021852,37.805721],[-122.021852,37.806505],[-122.021225,37.806505],[-122.020755,37.806819],[-122.020911,37.807133],[-122.020127,37.807290],[-122.019970,37.807133],[-122.019814,37.806035],[-122.019500,37.805721],[-122.018872,37.805721],[-122.019343,37.805094],[-122.018559,37.804310],[-122.017931,37.805094],[-122.017304,37.805251],[-122.016990,37.805564],[-122.016363,37.805721],[-122.016049,37.806505],[-122.015736,37.806192],[-122.015422,37.805408],[-122.014481,37.804467],[-122.014324,37.803526],[-122.013697,37.803055],[-122.013697,37.802741],[-122.013540,37.801957],[-122.014010,37.801643],[-122.013697,37.801487],[-122.013540,37.801016],[-122.011972,37.800702],[-122.010874,37.800702],[-122.009148,37.799761],[-122.007109,37.798036],[-122.006796,37.797722],[-122.006796,37.797252],[-122.006168,37.797095],[-122.005541,37.796625],[-122.003816,37.795683],[-122.002875,37.795527],[-122.001777,37.795056],[-122.001620,37.794742],[-122.001463,37.793488],[-121.998640,37.793488],[-121.998640,37.790351],[-121.998954,37.786430],[-121.993935,37.786587],[-121.994092,37.786430],[-121.980603,37.786744],[-121.976839,37.779843],[-121.975428,37.780156],[-121.969938,37.782352],[-121.970095,37.782666],[-121.969468,37.782979],[-121.970095,37.783920],[-121.972448,37.783764],[-121.972448,37.784234],[-121.970409,37.784391],[-121.969938,37.784548],[-121.969468,37.784077],[-121.969468,37.783764],[-121.969154,37.783136],[-121.968997,37.782823],[-121.967899,37.783293],[-121.967115,37.782195],[-121.965547,37.781882],[-121.965547,37.781411],[-121.966017,37.781097],[-121.966645,37.781097],[-121.967429,37.781411],[-121.966801,37.780470],[-121.964449,37.781411],[-121.964135,37.780940],[-121.963665,37.779686],[-121.963037,37.779058],[-121.960528,37.779999],[-121.957391,37.777804],[-121.958646,37.777176],[-121.956607,37.774981],[-121.956293,37.774040],[-121.956450,37.773726],[-121.958332,37.772942],[-121.955666,37.769334],[-121.954254,37.767923],[-121.950490,37.764472],[-121.946099,37.761806],[-121.943903,37.759610],[-121.941864,37.758826],[-121.941080,37.758199],[-121.940766,37.757571],[-121.940452,37.756003],[-121.939511,37.754591],[-121.935120,37.750357],[-121.933865,37.748631],[-121.932767,37.747690],[-121.931042,37.744867],[-121.929944,37.745181],[-121.929317,37.744710],[-121.929160,37.744710],[-121.924768,37.737966],[-121.923514,37.738123],[-121.922572,37.737809],[-121.921945,37.737339],[-121.921161,37.736241],[-121.920063,37.735770],[-121.917397,37.729026],[-121.929317,37.726203],[-121.929317,37.726046],[-121.929473,37.726203],[-121.932767,37.725419],[-121.937002,37.724321],[-121.937002,37.724321],[-121.939041,37.723694],[-121.939198,37.723694],[-121.939198,37.723537],[-121.943746,37.722753],[-121.950020,37.721027],[-121.960842,37.718675],[-121.972448,37.728556],[-121.974016,37.729497],[-121.977623,37.729497],[-121.982329,37.730752],[-121.983427,37.730908],[-121.990014,37.733575],[-121.993621,37.738123],[-122.000993,37.739064],[-122.011815,37.747377],[-122.011344,37.753964],[-122.010717,37.755062],[-121.997699,37.763218],[-122.003973,37.769962],[-122.004757,37.770589],[-122.004600,37.770589],[-122.005071,37.771216],[-122.001620,37.771844],[-122.001777,37.772157],[-122.001934,37.772942],[-122.002561,37.773569],[-122.001777,37.773726],[-122.001150,37.773098],[-122.000679,37.772785],[-121.996444,37.773098],[-121.996601,37.773412],[-121.996444,37.773569],[-121.996601,37.773883],[-121.997072,37.775294],[-121.997229,37.775765],[-121.997856,37.776549],[-121.998170,37.776235],[-121.998483,37.776235],[-121.998797,37.776706],[-121.998640,37.777019],[-121.998954,37.777333],[-121.998483,37.777647],[-121.999267,37.779843],[-121.999581,37.779843],[-121.999895,37.779529],[-122.000208,37.779529],[-121.999895,37.779843],[-122.000052,37.779999],[-122.001150,37.780156],[-122.001306,37.780313],[-122.001150,37.780627],[-122.000679,37.780784],[-122.000365,37.781097],[-122.001620,37.781725],[-122.001934,37.782195],[-122.000993,37.782666],[-122.001306,37.782823],[-122.001306,37.783607],[-122.001777,37.783920],[-122.001620,37.784548],[-122.007109,37.787214],[-122.009462,37.787685],[-122.010246,37.787998],[-122.010560,37.788469],[-122.010717,37.789567],[-122.011030,37.790194],[-122.011658,37.790665],[-122.012913,37.790508],[-122.013383,37.790351],[-122.014010,37.790508],[-122.014481,37.791135],[-122.014481,37.791606],[-122.015108,37.792076],[-122.015265,37.792547],[-122.015422,37.792704],[-122.016677,37.792860],[-122.017304,37.792704],[-122.018088,37.793331],[-122.018872,37.793174],[-122.019814,37.794115],[-122.020284,37.795056],[-122.021225,37.795370],[-122.021539,37.795370],[-122.021382,37.794899],[-122.022009,37.795056],[-122.023107,37.795683],[-122.023421,37.796154],[-122.024048,37.796468],[-122.024519,37.796468],[-122.025146,37.796938],[-122.026558,37.797095],[-122.027656,37.798193],[-122.028753,37.798663],[-122.029851,37.798820],[-122.030636,37.799761],[-122.030792,37.800075],[-122.031577,37.800546],[-122.031733,37.801016],[-122.032361,37.801016],[-122.032674,37.801173],[-122.034086,37.802741],[-122.034557,37.803055],[-122.035027,37.803682],[-122.035341,37.804310],[-122.035184,37.804623],[-122.036125,37.805251],[-122.036125,37.805564],[-122.036752,37.805878],[-122.037380,37.806505],[-122.038164,37.806662],[-122.038478,37.806976],[-122.039419,37.807290],[-122.041144,37.809015],[-122.042085,37.809642],[-122.042399,37.809642],[-122.042555,37.810113],[-122.043183,37.810426],[-122.043653,37.811054],[-122.043653,37.811368],[-122.043967,37.811838],[-122.045379,37.812936],[-122.045379,37.813406],[-122.046320,37.814191],[-122.046947,37.814348],[-122.047261,37.814661],[-122.048045,37.814975],[-122.048202,37.815445],[-122.048986,37.815759],[-122.049927,37.816386]]]}}
,{"id":94804,"type":"Feature","properties":{"name":"Richmond"},"geometry":{"type":"Polygon","coordinates":[[[-122.348081,37.931507],[-122.347139,37.931350],[-122.346198,37.930880],[-122.345728,37.930880],[-122.347453,37.932135],[-122.347610,37.932448],[-122.347924,37.932292],[-122.347924,37.932448],[-122.347767,37.933233],[-122.347610,37.933860],[-122.347453,37.940604],[-122.347924,37.940604],[-122.347610,37.940918],[-122.347453,37.941388],[-122.348394,37.941388],[-122.348394,37.943898],[-122.347453,37.943898],[-122.347453,37.949701],[-122.347453,37.951740],[-122.339925,37.952681],[-122.339297,37.953151],[-122.338827,37.952838],[-122.338513,37.953151],[-122.337259,37.952367],[-122.335690,37.952210],[-122.335063,37.951897],[-122.333494,37.951740],[-122.333494,37.951269],[-122.332710,37.951426],[-122.332396,37.950642],[-122.333338,37.950642],[-122.332396,37.949230],[-122.332867,37.949230],[-122.332867,37.947035],[-122.335376,37.947035],[-122.335533,37.943741],[-122.337886,37.934330],[-122.341180,37.934801],[-122.341336,37.934487],[-122.341336,37.931507],[-122.327378,37.931350],[-122.326123,37.931350],[-122.325025,37.931350],[-122.324868,37.931194],[-122.323457,37.931037],[-122.320633,37.927116],[-122.321261,37.924763],[-122.321104,37.924449],[-122.321261,37.923038],[-122.320633,37.923038],[-122.320633,37.922411],[-122.321261,37.922411],[-122.321261,37.920999],[-122.320633,37.920999],[-122.320633,37.919274],[-122.314203,37.918803],[-122.313732,37.917862],[-122.313105,37.917078],[-122.312007,37.916137],[-122.310282,37.913784],[-122.311223,37.913471],[-122.308870,37.910177],[-122.308870,37.910020],[-122.307929,37.910334],[-122.305420,37.906570],[-122.304479,37.904688],[-122.306047,37.904060],[-122.305890,37.903747],[-122.309811,37.902021],[-122.309027,37.900923],[-122.308557,37.900923],[-122.308714,37.901237],[-122.307773,37.901394],[-122.307773,37.901864],[-122.307616,37.902335],[-122.307145,37.902335],[-122.306988,37.902178],[-122.306988,37.901551],[-122.307145,37.901080],[-122.306832,37.899355],[-122.306204,37.898257],[-122.308714,37.898100],[-122.309341,37.897787],[-122.310909,37.897787],[-122.311850,37.897473],[-122.335690,37.892297],[-122.334749,37.900610],[-122.337102,37.903119],[-122.338043,37.903590],[-122.339141,37.903590],[-122.341180,37.903433],[-122.343218,37.902806],[-122.344473,37.902178],[-122.345728,37.900923],[-122.346669,37.899198],[-122.346512,37.897787],[-122.344160,37.894650],[-122.343532,37.893552],[-122.343218,37.892297],[-122.343375,37.891670],[-122.343689,37.891356],[-122.346512,37.890572],[-122.352629,37.889788],[-122.356079,37.889788],[-122.357177,37.890101],[-122.359373,37.891199],[-122.359844,37.896532],[-122.366901,37.896689],[-122.375057,37.898257],[-122.376939,37.901394],[-122.375998,37.902806],[-122.364549,37.902021],[-122.365019,37.905158],[-122.365960,37.909236],[-122.366588,37.911118],[-122.369097,37.913627],[-122.371293,37.916451],[-122.370979,37.916451],[-122.372077,37.917549],[-122.374430,37.918960],[-122.374587,37.918803],[-122.377723,37.920528],[-122.378037,37.920999],[-122.378194,37.921470],[-122.378194,37.923195],[-122.379135,37.923195],[-122.379292,37.923038],[-122.380703,37.923822],[-122.380703,37.925234],[-122.379919,37.925234],[-122.379919,37.925547],[-122.380233,37.925547],[-122.380703,37.925704],[-122.380703,37.926175],[-122.380233,37.926645],[-122.382115,37.926802],[-122.379292,37.929939],[-122.378508,37.929468],[-122.378194,37.928998],[-122.378194,37.928214],[-122.378037,37.928214],[-122.378037,37.927273],[-122.369254,37.927273],[-122.370979,37.928370],[-122.375057,37.931350],[-122.348081,37.931507]],[[-122.320006,37.903903],[-122.316712,37.899669],[-122.314046,37.899982],[-122.319065,37.906099],[-122.320006,37.904531],[-122.319849,37.904217],[-122.320320,37.904374],[-122.320006,37.903903]]]}}
,{"id":94569,"type":"Feature","properties":{"name":"Port Costa"},"geometry":{"type":"Polygon","coordinates":[[[-122.180104,38.037061],[-122.180575,38.037845],[-122.181045,38.038159],[-122.181673,38.038472],[-122.183241,38.038472],[-122.183398,38.038629],[-122.183398,38.038943],[-122.182771,38.039100],[-122.182457,38.039414],[-122.182928,38.039727],[-122.183869,38.039884],[-122.183712,38.040511],[-122.183869,38.040825],[-122.184967,38.041139],[-122.185908,38.040982],[-122.186535,38.040982],[-122.188731,38.042080],[-122.189672,38.041766],[-122.190142,38.041452],[-122.190926,38.041609],[-122.192495,38.041139],[-122.193593,38.038786],[-122.194220,38.037845],[-122.195004,38.036120],[-122.194377,38.035492],[-122.194377,38.034708],[-122.194220,38.034395],[-122.191711,38.032513],[-122.191240,38.032356],[-122.191397,38.031571],[-122.191083,38.030944],[-122.190142,38.030630],[-122.189358,38.030787],[-122.189044,38.030003],[-122.187790,38.029376],[-122.187790,38.028748],[-122.186692,38.026866],[-122.186849,38.026082],[-122.183398,38.025768],[-122.182928,38.025612],[-122.181673,38.022945],[-122.180418,38.022004],[-122.179477,38.021534],[-122.179163,38.020593],[-122.178066,38.019181],[-122.178066,38.018397],[-122.177909,38.017456],[-122.177595,38.015887],[-122.177595,38.015103],[-122.178693,38.015417],[-122.180104,38.015731],[-122.186535,38.016358],[-122.188574,38.016201],[-122.190456,38.015574],[-122.190613,38.016515],[-122.191240,38.017456],[-122.191867,38.017770],[-122.193593,38.018554],[-122.194534,38.019181],[-122.195004,38.019965],[-122.195318,38.021847],[-122.195632,38.022632],[-122.196102,38.023102],[-122.198768,38.025455],[-122.199710,38.026082],[-122.202376,38.027180],[-122.206140,38.028121],[-122.206140,38.040198],[-122.206454,38.041139],[-122.207238,38.041609],[-122.206454,38.042707],[-122.206140,38.043021],[-122.206140,38.046158],[-122.206140,38.047412],[-122.205826,38.047412],[-122.205513,38.047256],[-122.205513,38.046314],[-122.205826,38.045687],[-122.205669,38.045373],[-122.205199,38.045844],[-122.203631,38.045687],[-122.201748,38.046314],[-122.200651,38.046785],[-122.200180,38.047883],[-122.199396,38.048040],[-122.198612,38.048824],[-122.197357,38.048981],[-122.196886,38.049608],[-122.196886,38.049922],[-122.197043,38.050079],[-122.197200,38.050079],[-122.197357,38.049765],[-122.197827,38.049765],[-122.199082,38.051177],[-122.199710,38.051647],[-122.200180,38.052274],[-122.201121,38.052902],[-122.201592,38.053215],[-122.201748,38.053372],[-122.201748,38.053686],[-122.201592,38.054000],[-122.201278,38.054000],[-122.201278,38.053686],[-122.201121,38.053529],[-122.198141,38.052902],[-122.196886,38.052902],[-122.196259,38.052745],[-122.195788,38.052902],[-122.195318,38.052745],[-122.192652,38.052745],[-122.190770,38.052431],[-122.189985,38.052118],[-122.186535,38.050079],[-122.185751,38.049922],[-122.185594,38.049608],[-122.184025,38.048981],[-122.183869,38.048510],[-122.183241,38.048040],[-122.183555,38.047883],[-122.182614,38.046942],[-122.180418,38.045687],[-122.178850,38.044589],[-122.176183,38.040198],[-122.175870,38.040198],[-122.174772,38.038786],[-122.175086,38.038786],[-122.174772,38.038316],[-122.174458,38.036904],[-122.173831,38.036747],[-122.173988,38.036590],[-122.173988,38.036277],[-122.173517,38.035806],[-122.173517,38.034708],[-122.174301,38.034551],[-122.174615,38.035963],[-122.175556,38.035963],[-122.177124,38.036277],[-122.178850,38.035806],[-122.179007,38.035649],[-122.179477,38.035649],[-122.179791,38.035963],[-122.180104,38.037061]]]}}
,{"id":94970,"type":"Feature","properties":{"name":"Stinson Beach"},"geometry":{"type":"Polygon","coordinates":[[[-122.659566,37.939349],[-122.658154,37.940604],[-122.659722,37.941702],[-122.657527,37.940604],[-122.656742,37.939820],[-122.656429,37.939192],[-122.656429,37.938722],[-122.655958,37.938408],[-122.655488,37.937624],[-122.655174,37.937467],[-122.655017,37.937310],[-122.654704,37.936213],[-122.653763,37.936056],[-122.652194,37.935428],[-122.650626,37.935742],[-122.646391,37.933703],[-122.644195,37.929782],[-122.641215,37.926332],[-122.640274,37.924606],[-122.639961,37.924449],[-122.639490,37.924763],[-122.639020,37.924763],[-122.637765,37.923822],[-122.635099,37.922724],[-122.633060,37.921470],[-122.632589,37.921313],[-122.629923,37.920372],[-122.628982,37.919431],[-122.628668,37.918803],[-122.628825,37.917705],[-122.628825,37.916607],[-122.628354,37.916294],[-122.627727,37.916451],[-122.627570,37.916294],[-122.626472,37.914412],[-122.625845,37.913941],[-122.625374,37.913314],[-122.624590,37.912843],[-122.624590,37.912530],[-122.625688,37.911745],[-122.625531,37.911432],[-122.625218,37.911275],[-122.623649,37.910961],[-122.622081,37.910961],[-122.620826,37.910648],[-122.620356,37.910334],[-122.619728,37.909550],[-122.618944,37.909236],[-122.617532,37.909236],[-122.616121,37.909079],[-122.613611,37.910334],[-122.612670,37.910491],[-122.612670,37.909393],[-122.613141,37.909079],[-122.613455,37.908765],[-122.614239,37.908295],[-122.614239,37.908138],[-122.614082,37.907824],[-122.614082,37.907668],[-122.614866,37.907197],[-122.614866,37.905942],[-122.614396,37.905158],[-122.614239,37.904531],[-122.613611,37.904531],[-122.613611,37.906727],[-122.613298,37.906883],[-122.612827,37.906570],[-122.612357,37.907040],[-122.611416,37.907511],[-122.610631,37.907197],[-122.610318,37.906727],[-122.609063,37.906256],[-122.608749,37.906256],[-122.608279,37.906570],[-122.607965,37.906413],[-122.607651,37.905472],[-122.607024,37.905472],[-122.606710,37.904844],[-122.606083,37.904844],[-122.605769,37.904374],[-122.604985,37.903903],[-122.604671,37.903903],[-122.604044,37.904374],[-122.604515,37.903433],[-122.604985,37.903276],[-122.606397,37.903590],[-122.607338,37.904217],[-122.608122,37.903747],[-122.608436,37.903903],[-122.609220,37.904844],[-122.609847,37.904688],[-122.610161,37.904844],[-122.608749,37.902178],[-122.608749,37.901864],[-122.609690,37.900453],[-122.610318,37.899982],[-122.610788,37.898571],[-122.612984,37.896532],[-122.613925,37.895905],[-122.616434,37.895120],[-122.617219,37.894336],[-122.619101,37.893238],[-122.623022,37.888376],[-122.624120,37.887435],[-122.626472,37.886651],[-122.627100,37.886180],[-122.628198,37.886024],[-122.628668,37.885396],[-122.630550,37.886180],[-122.631021,37.886651],[-122.631962,37.887278],[-122.632432,37.888063],[-122.633216,37.888690],[-122.632903,37.889160],[-122.633060,37.889474],[-122.634314,37.890415],[-122.634785,37.890729],[-122.634785,37.891199],[-122.635099,37.891670],[-122.638863,37.894650],[-122.642784,37.897316],[-122.647018,37.899512],[-122.650783,37.901394],[-122.655017,37.902962],[-122.661448,37.904844],[-122.664898,37.905472],[-122.668506,37.905785],[-122.672270,37.906099],[-122.677289,37.906413],[-122.678700,37.906570],[-122.679641,37.907197],[-122.680739,37.908138],[-122.681053,37.908765],[-122.681053,37.909079],[-122.680582,37.909079],[-122.679955,37.909079],[-122.677602,37.907981],[-122.676034,37.907824],[-122.674779,37.907981],[-122.671956,37.908765],[-122.670701,37.908922],[-122.665682,37.908609],[-122.661448,37.909236],[-122.658468,37.908452],[-122.652665,37.906413],[-122.651096,37.905472],[-122.651567,37.904531],[-122.648900,37.906099],[-122.648744,37.905629],[-122.649057,37.905158],[-122.649842,37.904844],[-122.649842,37.904688],[-122.649685,37.904374],[-122.645764,37.902806],[-122.645450,37.902806],[-122.645293,37.903119],[-122.645607,37.903276],[-122.646077,37.903433],[-122.646548,37.904060],[-122.647489,37.904531],[-122.648273,37.905942],[-122.648744,37.906413],[-122.650155,37.905472],[-122.650469,37.905942],[-122.650939,37.905785],[-122.650939,37.906256],[-122.651724,37.906883],[-122.652194,37.906883],[-122.652508,37.906727],[-122.653135,37.906883],[-122.654547,37.907824],[-122.654860,37.908295],[-122.656586,37.909236],[-122.657056,37.909706],[-122.657840,37.910020],[-122.658311,37.909863],[-122.659409,37.910020],[-122.659722,37.910804],[-122.661134,37.911275],[-122.662546,37.911589],[-122.663800,37.912530],[-122.664114,37.912530],[-122.664898,37.913000],[-122.665212,37.913627],[-122.665682,37.913941],[-122.666310,37.914255],[-122.666153,37.915196],[-122.666623,37.916137],[-122.668192,37.917549],[-122.670388,37.918333],[-122.671329,37.918960],[-122.671956,37.919587],[-122.671956,37.920685],[-122.673368,37.921626],[-122.674152,37.922411],[-122.675406,37.924136],[-122.676348,37.924763],[-122.676975,37.925077],[-122.679014,37.924920],[-122.680425,37.925391],[-122.680896,37.925861],[-122.680896,37.926332],[-122.682307,37.927586],[-122.682464,37.928214],[-122.682307,37.928841],[-122.682464,37.928998],[-122.682307,37.929312],[-122.682464,37.929312],[-122.682778,37.929782],[-122.683719,37.929939],[-122.684190,37.930253],[-122.686699,37.930096],[-122.689052,37.930409],[-122.689522,37.930880],[-122.688895,37.931664],[-122.688895,37.931978],[-122.689052,37.932135],[-122.689836,37.932292],[-122.691247,37.932448],[-122.692345,37.933233],[-122.693914,37.933233],[-122.694855,37.933389],[-122.695953,37.934017],[-122.696580,37.934174],[-122.696580,37.934330],[-122.697364,37.934644],[-122.696737,37.935271],[-122.695325,37.935115],[-122.694071,37.935585],[-122.693914,37.935899],[-122.693757,37.936683],[-122.693129,37.936056],[-122.692032,37.936213],[-122.691875,37.935899],[-122.690934,37.935899],[-122.690934,37.935585],[-122.691247,37.935115],[-122.691091,37.934801],[-122.691718,37.934487],[-122.691561,37.934330],[-122.690463,37.934174],[-122.689522,37.934644],[-122.688895,37.934487],[-122.687954,37.935115],[-122.687797,37.936369],[-122.687640,37.936840],[-122.687326,37.936997],[-122.688424,37.936840],[-122.688581,37.936997],[-122.688424,37.937154],[-122.687954,37.937467],[-122.687013,37.937781],[-122.686699,37.937938],[-122.686856,37.938251],[-122.686385,37.938565],[-122.685915,37.938408],[-122.685601,37.938565],[-122.685287,37.939036],[-122.685287,37.939506],[-122.684660,37.939663],[-122.683876,37.939820],[-122.683249,37.940290],[-122.683092,37.940604],[-122.683562,37.941075],[-122.682307,37.940761],[-122.681680,37.941231],[-122.681053,37.941859],[-122.680896,37.942643],[-122.679798,37.943113],[-122.679484,37.943584],[-122.679484,37.944211],[-122.678700,37.944368],[-122.678073,37.945780],[-122.677602,37.945937],[-122.677132,37.946721],[-122.676661,37.947035],[-122.676348,37.946878],[-122.676348,37.946564],[-122.676504,37.946250],[-122.676191,37.946250],[-122.676191,37.945937],[-122.676661,37.945152],[-122.676348,37.944682],[-122.676661,37.944055],[-122.676348,37.943741],[-122.675250,37.943741],[-122.675250,37.943113],[-122.675720,37.942643],[-122.675406,37.942016],[-122.675720,37.941702],[-122.675563,37.941388],[-122.676818,37.940447],[-122.677132,37.939663],[-122.679641,37.938408],[-122.680112,37.937938],[-122.681210,37.937154],[-122.681837,37.937154],[-122.681994,37.936997],[-122.681837,37.936526],[-122.681837,37.936056],[-122.682464,37.935742],[-122.682464,37.935115],[-122.682621,37.934330],[-122.683405,37.934017],[-122.684503,37.933076],[-122.684660,37.932762],[-122.685287,37.932292],[-122.685601,37.932292],[-122.686228,37.931821],[-122.685915,37.931194],[-122.685601,37.930880],[-122.685287,37.930880],[-122.683876,37.931664],[-122.683562,37.931664],[-122.683249,37.930723],[-122.683249,37.930253],[-122.682621,37.929939],[-122.681523,37.930253],[-122.681366,37.930253],[-122.681210,37.930096],[-122.681053,37.929468],[-122.681523,37.928370],[-122.680739,37.928057],[-122.680269,37.928057],[-122.678700,37.928527],[-122.678230,37.928841],[-122.677759,37.929468],[-122.675720,37.929782],[-122.674309,37.930723],[-122.673054,37.931978],[-122.673681,37.933076],[-122.673681,37.933703],[-122.673681,37.933860],[-122.672897,37.933546],[-122.671329,37.933703],[-122.670074,37.934487],[-122.669603,37.934958],[-122.669133,37.935271],[-122.667564,37.935742],[-122.666623,37.936369],[-122.663800,37.937467],[-122.663330,37.938095],[-122.661918,37.938879],[-122.661448,37.939977],[-122.659566,37.939349]]]}}
,{"id":94933,"type":"Feature","properties":{"name":"Forest Knolls"},"geometry":{"type":"Polygon","coordinates":[[[-122.690149,38.024514],[-122.684817,38.017456],[-122.684346,38.015731],[-122.679484,38.016828],[-122.676034,38.016358],[-122.676191,38.015574],[-122.681523,38.014005],[-122.681837,38.014005],[-122.681837,38.013692],[-122.680425,38.012280],[-122.679798,38.011810],[-122.679171,38.011653],[-122.679014,38.010869],[-122.677759,38.010555],[-122.677289,38.009928],[-122.676818,38.009928],[-122.676348,38.009143],[-122.675406,38.008202],[-122.675563,38.007104],[-122.676034,38.006634],[-122.676191,38.006006],[-122.676818,38.005536],[-122.677289,38.004752],[-122.678073,38.004752],[-122.678386,38.003811],[-122.679014,38.003968],[-122.679484,38.003811],[-122.679641,38.003497],[-122.680112,38.003497],[-122.680739,38.002556],[-122.681053,38.002399],[-122.682464,38.003340],[-122.682778,38.003340],[-122.682778,38.003027],[-122.683249,38.002870],[-122.684974,38.003497],[-122.685601,38.003183],[-122.687170,38.002870],[-122.690620,38.004281],[-122.691404,38.004281],[-122.691875,38.004595],[-122.692188,38.004595],[-122.693286,38.005222],[-122.692345,38.005850],[-122.692659,38.006320],[-122.692345,38.007104],[-122.692973,38.007575],[-122.695796,38.008202],[-122.695796,38.014319],[-122.695953,38.014476],[-122.694541,38.015103],[-122.693129,38.015260],[-122.693600,38.016044],[-122.695012,38.016672],[-122.695482,38.016985],[-122.696109,38.016985],[-122.696109,38.020749],[-122.697050,38.020749],[-122.697050,38.024514],[-122.690149,38.024514]]]}}
,{"id":94503,"type":"Feature","properties":{"name":"American Canyon"},"geometry":{"type":"Polygon","coordinates":[[[-122.256172,38.155005],[-122.271072,38.155162],[-122.290677,38.155162],[-122.294912,38.155162],[-122.295225,38.159083],[-122.293030,38.169748],[-122.294127,38.174453],[-122.294912,38.176492],[-122.296323,38.178060],[-122.298048,38.179315],[-122.300244,38.180413],[-122.307773,38.181981],[-122.310596,38.183079],[-122.313105,38.185118],[-122.313576,38.192960],[-122.314674,38.197195],[-122.314517,38.198293],[-122.313419,38.200175],[-122.311380,38.202371],[-122.309027,38.204096],[-122.307302,38.205664],[-122.306675,38.207233],[-122.306832,38.209115],[-122.283776,38.201900],[-122.283776,38.202057],[-122.280796,38.202057],[-122.280325,38.206919],[-122.265896,38.209429],[-122.269033,38.214447],[-122.267935,38.214291],[-122.267621,38.213663],[-122.266524,38.213350],[-122.264641,38.213977],[-122.262446,38.213506],[-122.261505,38.213977],[-122.260093,38.214134],[-122.259152,38.213820],[-122.258525,38.213506],[-122.258054,38.213350],[-122.256956,38.213663],[-122.256486,38.213820],[-122.257427,38.219780],[-122.256172,38.219780],[-122.256015,38.219623],[-122.253506,38.219623],[-122.253819,38.221192],[-122.253192,38.222603],[-122.249898,38.222133],[-122.245193,38.221192],[-122.238292,38.221348],[-122.237038,38.221192],[-122.234058,38.220094],[-122.233430,38.221192],[-122.232646,38.221505],[-122.225588,38.221505],[-122.224647,38.221348],[-122.223706,38.220878],[-122.223236,38.220407],[-122.222608,38.219153],[-122.222295,38.217898],[-122.222295,38.215859],[-122.219942,38.215075],[-122.213041,38.213036],[-122.210218,38.211938],[-122.207708,38.211311],[-122.204101,38.209742],[-122.204415,38.209429],[-122.216335,38.212722],[-122.217746,38.213036],[-122.219942,38.213036],[-122.221667,38.212879],[-122.228098,38.211467],[-122.230450,38.210526],[-122.236724,38.207076],[-122.237665,38.206762],[-122.238449,38.206135],[-122.240017,38.205194],[-122.241586,38.204096],[-122.243468,38.201900],[-122.245507,38.198450],[-122.244723,38.198450],[-122.244095,38.198293],[-122.242997,38.198607],[-122.241743,38.198293],[-122.240802,38.198293],[-122.241272,38.197665],[-122.242997,38.194686],[-122.240959,38.185432],[-122.241429,38.169591],[-122.240331,38.168807],[-122.240017,38.168336],[-122.239861,38.167082],[-122.240174,38.164729],[-122.239861,38.164415],[-122.239076,38.164258],[-122.234371,38.164102],[-122.234058,38.163945],[-122.232803,38.163474],[-122.232332,38.163631],[-122.232332,38.163945],[-122.222451,38.163161],[-122.219471,38.162847],[-122.218060,38.162847],[-122.216805,38.163004],[-122.214609,38.163945],[-122.211473,38.165984],[-122.210531,38.167082],[-122.209434,38.167552],[-122.206924,38.167866],[-122.205042,38.168336],[-122.204258,38.168336],[-122.203474,38.168179],[-122.202689,38.168336],[-122.201905,38.168336],[-122.198141,38.168493],[-122.194534,38.164729],[-122.198925,38.159240],[-122.197827,38.157044],[-122.195318,38.155005],[-122.214609,38.154848],[-122.252094,38.155162],[-122.253663,38.155005],[-122.256172,38.155005]]]}}
,{"id":95632,"type":"Feature","properties":{"name":"Galt"},"geometry":{"type":"Polygon","coordinates":[[[-121.395589,38.221035],[-121.399823,38.221192],[-121.400764,38.221192],[-121.402646,38.222133],[-121.403588,38.222760],[-121.403901,38.223230],[-121.404999,38.224172],[-121.405313,38.224328],[-121.407038,38.224172],[-121.407352,38.224485],[-121.407822,38.225269],[-121.408136,38.225426],[-121.409861,38.225583],[-121.409861,38.222289],[-121.417233,38.222289],[-121.417546,38.222917],[-121.416292,38.224328],[-121.416135,38.224642],[-121.416448,38.225113],[-121.418174,38.226210],[-121.418958,38.226995],[-121.419115,38.227779],[-121.419272,38.232014],[-121.428368,38.231857],[-121.428525,38.241424],[-121.429780,38.244561],[-121.431191,38.246443],[-121.437465,38.246600],[-121.438092,38.246129],[-121.438406,38.246129],[-121.444366,38.246129],[-121.447817,38.255069],[-121.446405,38.255696],[-121.444993,38.256794],[-121.444209,38.256794],[-121.443111,38.256324],[-121.441229,38.256010],[-121.440131,38.255540],[-121.439661,38.257892],[-121.441229,38.264480],[-121.441072,38.265734],[-121.438720,38.270596],[-121.438563,38.271224],[-121.438563,38.272008],[-121.439033,38.274204],[-121.439347,38.275929],[-121.419742,38.275929],[-121.419742,38.290515],[-121.414253,38.290515],[-121.414253,38.299298],[-121.390570,38.299141],[-121.390570,38.290672],[-121.380532,38.290829],[-121.380218,38.291770],[-121.379748,38.292711],[-121.379748,38.294750],[-121.380375,38.296004],[-121.380846,38.296789],[-121.381473,38.298514],[-121.382100,38.299141],[-121.382728,38.299455],[-121.382885,38.299769],[-121.382885,38.300239],[-121.382414,38.301651],[-121.381316,38.303062],[-121.379748,38.305572],[-121.378650,38.306670],[-121.378336,38.307924],[-121.377395,38.308709],[-121.375827,38.311688],[-121.374572,38.312473],[-121.374415,38.312943],[-121.374258,38.313571],[-121.374258,38.314355],[-121.373317,38.314668],[-121.372690,38.315609],[-121.371749,38.316080],[-121.370808,38.317178],[-121.370808,38.317805],[-121.371435,38.318746],[-121.370965,38.320001],[-121.370965,38.320628],[-121.369553,38.321569],[-121.368926,38.322354],[-121.367357,38.323765],[-121.365946,38.327843],[-121.365632,38.327843],[-121.364691,38.328314],[-121.363750,38.329098],[-121.363593,38.329568],[-121.363280,38.329882],[-121.362339,38.330352],[-121.361554,38.332078],[-121.359986,38.332862],[-121.359202,38.334273],[-121.358888,38.334430],[-121.357947,38.334273],[-121.357320,38.334430],[-121.355594,38.335528],[-121.354967,38.336940],[-121.352928,38.337567],[-121.352614,38.338508],[-121.352144,38.339136],[-121.352928,38.340077],[-121.351360,38.341802],[-121.351517,38.344154],[-121.351830,38.345723],[-121.351673,38.346507],[-121.349791,38.348860],[-121.349007,38.350114],[-121.347596,38.354035],[-121.343674,38.357643],[-121.343674,38.357643],[-121.337244,38.346193],[-121.335832,38.343527],[-121.335519,38.343527],[-121.331911,38.335685],[-121.320619,38.335685],[-121.320619,38.338822],[-121.318110,38.339136],[-121.316227,38.338665],[-121.315757,38.338038],[-121.315600,38.337881],[-121.315600,38.338822],[-121.306974,38.338822],[-121.305876,38.338508],[-121.304151,38.337567],[-121.303523,38.337253],[-121.302269,38.337097],[-121.301641,38.337097],[-121.299132,38.338195],[-121.298191,38.338822],[-121.297563,38.338822],[-121.297563,38.351526],[-121.293642,38.351996],[-121.290035,38.352310],[-121.244395,38.351840],[-121.244395,38.343057],[-121.222594,38.343213],[-121.220868,38.340077],[-121.220398,38.335842],[-121.218986,38.320785],[-121.219300,38.320315],[-121.218986,38.319687],[-121.219143,38.318903],[-121.218830,38.318589],[-121.218202,38.318119],[-121.217888,38.316864],[-121.217888,38.315453],[-121.218359,38.314512],[-121.218986,38.314198],[-121.220712,38.312473],[-121.221653,38.312002],[-121.226358,38.310904],[-121.226358,38.305729],[-121.250198,38.292397],[-121.252550,38.291456],[-121.262117,38.286123],[-121.261961,38.285967],[-121.261647,38.285653],[-121.261020,38.285967],[-121.260235,38.285967],[-121.260079,38.285810],[-121.260235,38.285496],[-121.260079,38.285026],[-121.259451,38.285182],[-121.257569,38.285026],[-121.256942,38.284869],[-121.256628,38.284555],[-121.248786,38.284555],[-121.248472,38.284085],[-121.248002,38.284085],[-121.247374,38.283928],[-121.246747,38.283457],[-121.246120,38.283144],[-121.245336,38.283144],[-121.244865,38.282830],[-121.245022,38.277184],[-121.235768,38.277340],[-121.235611,38.275929],[-121.235455,38.275772],[-121.231220,38.275772],[-121.231220,38.274047],[-121.226672,38.274047],[-121.226515,38.277654],[-121.208164,38.277027],[-121.194833,38.277184],[-121.189657,38.277497],[-121.189657,38.277968],[-121.171307,38.278125],[-121.171464,38.260245],[-121.171621,38.259304],[-121.172248,38.257422],[-121.172248,38.256481],[-121.171934,38.255540],[-121.171307,38.256951],[-121.170523,38.257579],[-121.167543,38.258676],[-121.164406,38.259617],[-121.163779,38.259774],[-121.163622,38.260402],[-121.163465,38.260402],[-121.161740,38.260715],[-121.160955,38.261186],[-121.159858,38.262127],[-121.159230,38.263225],[-121.159073,38.263695],[-121.159858,38.265107],[-121.159858,38.265577],[-121.159073,38.266048],[-121.158132,38.266205],[-121.157034,38.267303],[-121.155937,38.267616],[-121.155152,38.268244],[-121.154682,38.268871],[-121.154525,38.269028],[-121.153270,38.268087],[-121.151702,38.267459],[-121.150604,38.267459],[-121.149977,38.267773],[-121.149506,38.267616],[-121.148722,38.268087],[-121.147938,38.268087],[-121.147153,38.268087],[-121.146212,38.267773],[-121.145115,38.267930],[-121.144330,38.268401],[-121.141978,38.268871],[-121.140723,38.269655],[-121.139311,38.270126],[-121.138370,38.271224],[-121.137743,38.271537],[-121.135861,38.272008],[-121.133822,38.271851],[-121.133195,38.272478],[-121.132254,38.273419],[-121.131469,38.274047],[-121.131156,38.274674],[-121.129901,38.275458],[-121.129117,38.276556],[-121.128489,38.277027],[-121.127705,38.277497],[-121.125196,38.277654],[-121.124255,38.277968],[-121.121588,38.278125],[-121.120177,38.278125],[-121.117981,38.277811],[-121.116883,38.277340],[-121.116256,38.277340],[-121.115315,38.277811],[-121.114531,38.278752],[-121.113903,38.278909],[-121.112649,38.279693],[-121.111237,38.280007],[-121.109512,38.281105],[-121.107473,38.281261],[-121.106375,38.281575],[-121.103395,38.282673],[-121.102454,38.283144],[-121.102140,38.283300],[-121.100258,38.282673],[-121.098690,38.283144],[-121.098219,38.282830],[-121.097906,38.282359],[-121.097435,38.282202],[-121.096965,38.282359],[-121.096494,38.282046],[-121.096180,38.282046],[-121.095396,38.281575],[-121.095082,38.281575],[-121.094769,38.281889],[-121.094141,38.281889],[-121.093044,38.282516],[-121.092887,38.282987],[-121.093044,38.283457],[-121.092730,38.283771],[-121.091946,38.283771],[-121.091005,38.284085],[-121.089907,38.283928],[-121.089436,38.284085],[-121.088809,38.284869],[-121.088809,38.285339],[-121.088025,38.285339],[-121.087554,38.285653],[-121.086456,38.286280],[-121.085829,38.287065],[-121.085201,38.286908],[-121.084574,38.286437],[-121.084260,38.286437],[-121.083790,38.286594],[-121.082222,38.288162],[-121.079398,38.289574],[-121.079242,38.290515],[-121.078457,38.291613],[-121.077203,38.291770],[-121.076418,38.291927],[-121.074066,38.293181],[-121.073752,38.293495],[-121.073282,38.294436],[-121.071713,38.294750],[-121.071086,38.295377],[-121.069361,38.297416],[-121.068890,38.298200],[-121.067479,38.298984],[-121.066694,38.299141],[-121.065596,38.299141],[-121.064812,38.299455],[-121.061675,38.298984],[-121.060578,38.298043],[-121.059950,38.297102],[-121.058695,38.296632],[-121.057754,38.296004],[-121.056657,38.295534],[-121.054461,38.293966],[-121.054147,38.293652],[-121.053677,38.293652],[-121.053520,38.293181],[-121.052892,38.293024],[-121.052579,38.292711],[-121.051010,38.291927],[-121.050540,38.291927],[-121.050226,38.291613],[-121.049756,38.291770],[-121.049442,38.291613],[-121.048501,38.291613],[-121.048344,38.291142],[-121.048187,38.291142],[-121.046932,38.291299],[-121.046619,38.291770],[-121.045521,38.292397],[-121.045050,38.292868],[-121.044893,38.293181],[-121.044266,38.293652],[-121.043639,38.293809],[-121.043482,38.294122],[-121.043639,38.294436],[-121.043639,38.294750],[-121.042384,38.295534],[-121.040502,38.297730],[-121.039718,38.297730],[-121.039090,38.298043],[-121.038306,38.297887],[-121.037365,38.298043],[-121.035483,38.298043],[-121.035013,38.298671],[-121.034856,38.298671],[-121.034542,38.298514],[-121.034385,38.298671],[-121.033915,38.298984],[-121.033287,38.298984],[-121.032974,38.299298],[-121.031092,38.299141],[-121.030150,38.298828],[-121.028896,38.299298],[-121.028425,38.299925],[-121.027014,38.300239],[-121.016349,38.274360],[-121.025445,38.265264],[-121.035797,38.257735],[-121.037679,38.256167],[-121.038306,38.256167],[-121.038934,38.256637],[-121.039875,38.256167],[-121.040345,38.256167],[-121.040972,38.256481],[-121.041600,38.256167],[-121.041914,38.255383],[-121.042541,38.255383],[-121.043952,38.255540],[-121.044423,38.255853],[-121.045835,38.255853],[-121.046776,38.256324],[-121.046776,38.257108],[-121.047717,38.257579],[-121.048030,38.258206],[-121.048187,38.258676],[-121.047246,38.259774],[-121.048344,38.260872],[-121.048344,38.261656],[-121.048658,38.261970],[-121.048501,38.262284],[-121.050069,38.262597],[-121.050697,38.262441],[-121.051167,38.261970],[-121.051951,38.262127],[-121.052892,38.262441],[-121.053049,38.262597],[-121.052892,38.262911],[-121.052892,38.263852],[-121.053206,38.264793],[-121.053520,38.265107],[-121.054461,38.264950],[-121.055245,38.265264],[-121.056343,38.264950],[-121.056813,38.264636],[-121.057127,38.264009],[-121.058382,38.263382],[-121.059323,38.263538],[-121.060891,38.264323],[-121.062303,38.264009],[-121.063558,38.264009],[-121.063714,38.263695],[-121.064028,38.263695],[-121.064969,38.263538],[-121.065596,38.263852],[-121.066381,38.263695],[-121.067008,38.264009],[-121.067479,38.263695],[-121.067792,38.263852],[-121.068263,38.264480],[-121.068733,38.264636],[-121.069047,38.264480],[-121.069517,38.264636],[-121.070615,38.264166],[-121.070772,38.264480],[-121.071713,38.264323],[-121.071556,38.264793],[-121.072341,38.264636],[-121.072968,38.265107],[-121.073438,38.265107],[-121.074066,38.264480],[-121.074536,38.263852],[-121.075164,38.264009],[-121.075321,38.263852],[-121.075948,38.264009],[-121.076732,38.263852],[-121.077203,38.263538],[-121.077987,38.264009],[-121.078144,38.264166],[-121.078928,38.264009],[-121.079869,38.264166],[-121.081280,38.264009],[-121.082849,38.264166],[-121.083476,38.263852],[-121.083947,38.263852],[-121.084731,38.263695],[-121.084888,38.263538],[-121.084888,38.263225],[-121.085045,38.262754],[-121.085672,38.262441],[-121.086299,38.262597],[-121.087711,38.261970],[-121.088181,38.261343],[-121.088966,38.261029],[-121.089436,38.261186],[-121.088966,38.249893],[-121.088966,38.235464],[-121.088338,38.223701],[-121.088495,38.223544],[-121.088495,38.222446],[-121.088966,38.221819],[-121.089122,38.221819],[-121.097278,38.221662],[-121.097278,38.221505],[-121.097435,38.220878],[-121.097592,38.220721],[-121.099317,38.220721],[-121.100101,38.220407],[-121.103395,38.219937],[-121.104179,38.219937],[-121.105120,38.220564],[-121.111080,38.220564],[-121.111237,38.220407],[-121.120020,38.220407],[-121.120491,38.220564],[-121.121745,38.220251],[-121.123941,38.220251],[-121.124098,38.220564],[-121.124412,38.220721],[-121.125353,38.220407],[-121.126764,38.220564],[-121.127392,38.221035],[-121.127235,38.221976],[-121.127392,38.222446],[-121.128019,38.222760],[-121.129117,38.222917],[-121.129901,38.222917],[-121.130215,38.222603],[-121.130372,38.221976],[-121.130842,38.222289],[-121.131626,38.222446],[-121.131626,38.222760],[-121.132410,38.223858],[-121.132724,38.224799],[-121.133351,38.225583],[-121.133665,38.226367],[-121.134136,38.226681],[-121.134920,38.226838],[-121.136018,38.227779],[-121.139625,38.229975],[-121.139625,38.230759],[-121.139939,38.230916],[-121.140880,38.231386],[-121.142448,38.231543],[-121.144017,38.230916],[-121.144330,38.230916],[-121.144644,38.231229],[-121.144801,38.232170],[-121.144958,38.232327],[-121.145271,38.232327],[-121.145585,38.232014],[-121.145899,38.232014],[-121.146212,38.232327],[-121.146369,38.233111],[-121.147467,38.233425],[-121.147624,38.233739],[-121.148565,38.234209],[-121.149349,38.234366],[-121.149820,38.234680],[-121.153113,38.234680],[-121.152643,38.219937],[-121.178208,38.218996],[-121.178208,38.221505],[-121.181658,38.221505],[-121.181658,38.226995],[-121.189814,38.226995],[-121.189657,38.218682],[-121.226515,38.218368],[-121.226672,38.234052],[-121.245022,38.233582],[-121.244708,38.218055],[-121.250825,38.218212],[-121.251139,38.221976],[-121.263215,38.222133],[-121.263215,38.218368],[-121.268548,38.218368],[-121.268862,38.230759],[-121.269175,38.230602],[-121.269803,38.229975],[-121.270273,38.230131],[-121.271371,38.229504],[-121.271842,38.229975],[-121.273096,38.229975],[-121.273253,38.230445],[-121.274037,38.230288],[-121.274508,38.230445],[-121.275135,38.230288],[-121.276233,38.230916],[-121.276704,38.231073],[-121.277645,38.231073],[-121.277802,38.231229],[-121.277958,38.232327],[-121.277331,38.232641],[-121.277017,38.233111],[-121.279997,38.233268],[-121.287996,38.245816],[-121.289251,38.244090],[-121.289878,38.242051],[-121.290506,38.241424],[-121.291290,38.240797],[-121.294583,38.239542],[-121.295838,38.238444],[-121.296622,38.237973],[-121.299445,38.237660],[-121.301484,38.237189],[-121.306346,38.236405],[-121.310581,38.236405],[-121.311522,38.236405],[-121.313404,38.235935],[-121.315600,38.236091],[-121.317953,38.235150],[-121.319051,38.234523],[-121.320776,38.233896],[-121.321246,38.233582],[-121.321560,38.233111],[-121.322031,38.232798],[-121.323128,38.232798],[-121.323913,38.233111],[-121.325167,38.233268],[-121.326108,38.232955],[-121.327363,38.233268],[-121.329245,38.232798],[-121.331127,38.231700],[-121.331911,38.231543],[-121.334891,38.231229],[-121.335205,38.231073],[-121.337401,38.229347],[-121.338185,38.229034],[-121.338969,38.228877],[-121.341322,38.229661],[-121.342263,38.229661],[-121.343047,38.229347],[-121.343674,38.228406],[-121.344302,38.228249],[-121.345400,38.228093],[-121.347439,38.228563],[-121.348693,38.229190],[-121.350262,38.230445],[-121.351360,38.230759],[-121.354653,38.231073],[-121.356222,38.230759],[-121.358104,38.230759],[-121.362339,38.229975],[-121.362966,38.229504],[-121.362809,38.229190],[-121.362495,38.228406],[-121.363280,38.228249],[-121.364377,38.228720],[-121.364848,38.229190],[-121.365162,38.229504],[-121.365789,38.230916],[-121.366260,38.231229],[-121.367514,38.231073],[-121.369396,38.230131],[-121.370965,38.229661],[-121.372063,38.229975],[-121.372690,38.230445],[-121.373160,38.231073],[-121.377866,38.230602],[-121.378493,38.230602],[-121.380846,38.231229],[-121.382571,38.232014],[-121.383198,38.231857],[-121.384453,38.231229],[-121.385237,38.231229],[-121.387903,38.232955],[-121.389001,38.233111],[-121.389629,38.232955],[-121.391040,38.231543],[-121.392452,38.230445],[-121.393236,38.229975],[-121.394961,38.229661],[-121.395275,38.229504],[-121.395589,38.229034],[-121.395589,38.228093],[-121.395902,38.227779],[-121.397000,38.227308],[-121.397471,38.227308],[-121.398412,38.227465],[-121.399353,38.228406],[-121.401235,38.229347],[-121.401392,38.230288],[-121.401705,38.230759],[-121.402803,38.230602],[-121.403117,38.230759],[-121.403431,38.230759],[-121.403588,38.230759],[-121.403588,38.230288],[-121.403744,38.229975],[-121.404215,38.229818],[-121.405156,38.229975],[-121.405470,38.230131],[-121.405626,38.231073],[-121.406097,38.231073],[-121.406411,38.231543],[-121.407509,38.231543],[-121.408136,38.231857],[-121.408450,38.232327],[-121.409234,38.231857],[-121.409547,38.231857],[-121.409704,38.232014],[-121.409704,38.232798],[-121.409861,38.232955],[-121.410802,38.232798],[-121.410959,38.231857],[-121.410489,38.231073],[-121.410802,38.230131],[-121.410802,38.229661],[-121.410332,38.227936],[-121.410332,38.227308],[-121.410489,38.226681],[-121.410489,38.226524],[-121.410332,38.226054],[-121.407665,38.225426],[-121.406881,38.224485],[-121.404842,38.224485],[-121.404529,38.224172],[-121.403117,38.222760],[-121.400921,38.221505],[-121.399980,38.221348],[-121.398725,38.221348],[-121.395902,38.221192],[-121.395589,38.221035]]]}}
,{"id":95680,"type":"Feature","properties":{"name":"Ryde"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.566388,38.239699],[-121.559801,38.238287],[-121.558703,38.238130],[-121.559487,38.236719],[-121.559644,38.235621],[-121.559330,38.233582],[-121.558546,38.232014],[-121.567486,38.230131],[-121.567486,38.238915],[-121.566858,38.239071],[-121.566545,38.239385],[-121.566388,38.239699]]],[[[-121.566388,38.239699],[-121.569211,38.239856],[-121.570623,38.239542],[-121.575641,38.236091],[-121.576739,38.235621],[-121.577994,38.235464],[-121.580974,38.235778],[-121.582386,38.235621],[-121.583483,38.234837],[-121.585052,38.232170],[-121.586150,38.231386],[-121.587405,38.231386],[-121.589287,38.231857],[-121.592580,38.232327],[-121.593521,38.232014],[-121.595247,38.230602],[-121.596501,38.230131],[-121.602775,38.230288],[-121.602461,38.231386],[-121.602461,38.232798],[-121.603245,38.237346],[-121.602148,38.241738],[-121.601834,38.244718],[-121.601834,38.246286],[-121.601991,38.248011],[-121.589914,38.248168],[-121.581915,38.248168],[-121.573289,38.247698],[-121.572975,38.247070],[-121.572348,38.246913],[-121.572505,38.246129],[-121.572034,38.245659],[-121.571564,38.245659],[-121.570936,38.245972],[-121.570779,38.246129],[-121.570466,38.246129],[-121.570309,38.245345],[-121.569525,38.245031],[-121.569525,38.244718],[-121.569838,38.244090],[-121.569525,38.243463],[-121.569682,38.243306],[-121.569682,38.242836],[-121.568897,38.242365],[-121.568740,38.242992],[-121.567956,38.242679],[-121.566388,38.243777],[-121.566231,38.244090],[-121.566074,38.245188],[-121.565761,38.245502],[-121.565447,38.245345],[-121.564976,38.244718],[-121.564349,38.244874],[-121.564663,38.243463],[-121.565604,38.240953],[-121.566388,38.239699]]]]}}
,{"id":95639,"type":"Feature","properties":{"name":"Hood"},"geometry":{"type":"Polygon","coordinates":[[[-121.483890,38.408773],[-121.479655,38.388070],[-121.480753,38.388227],[-121.481067,38.388070],[-121.481224,38.387599],[-121.481851,38.387129],[-121.483106,38.387286],[-121.483576,38.387129],[-121.483890,38.386972],[-121.484831,38.386815],[-121.485458,38.386501],[-121.486713,38.386188],[-121.487340,38.385874],[-121.488752,38.385403],[-121.489536,38.385717],[-121.489693,38.386501],[-121.490320,38.386815],[-121.491104,38.386658],[-121.491732,38.386345],[-121.492202,38.386031],[-121.490948,38.386031],[-121.490634,38.372699],[-121.495810,38.371288],[-121.501299,38.369406],[-121.507102,38.366112],[-121.508671,38.365642],[-121.509925,38.365485],[-121.509612,38.364230],[-121.509455,38.362348],[-121.510553,38.363759],[-121.511180,38.364387],[-121.518708,38.366426],[-121.519806,38.367053],[-121.521218,38.367367],[-121.522159,38.371445],[-121.523257,38.373327],[-121.524041,38.375209],[-121.524198,38.378973],[-121.523884,38.379914],[-121.522629,38.381012],[-121.519493,38.382894],[-121.516513,38.385090],[-121.514787,38.387129],[-121.514160,38.388697],[-121.514003,38.388697],[-121.508984,38.387599],[-121.508514,38.395284],[-121.504906,38.411125],[-121.504122,38.412537],[-121.501926,38.415203],[-121.501456,38.416144],[-121.490477,38.415987],[-121.490320,38.422731],[-121.489693,38.422888],[-121.488752,38.422731],[-121.486870,38.422888],[-121.483890,38.408773]]]}}
,{"id":94114,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.428383,37.770432],[-122.428226,37.769491],[-122.426344,37.769648],[-122.426971,37.769177],[-122.426658,37.769021],[-122.426344,37.765884],[-122.427755,37.765570],[-122.427599,37.764629],[-122.426344,37.764629],[-122.426344,37.764002],[-122.427285,37.763845],[-122.427128,37.762904],[-122.426187,37.763061],[-122.426187,37.762276],[-122.426030,37.762120],[-122.425403,37.755062],[-122.425560,37.754905],[-122.425403,37.753493],[-122.425246,37.753337],[-122.424776,37.748631],[-122.438107,37.747847],[-122.438264,37.748631],[-122.441401,37.748631],[-122.442498,37.748161],[-122.443910,37.746749],[-122.444537,37.746749],[-122.444851,37.746906],[-122.444381,37.747220],[-122.444224,37.747533],[-122.444224,37.748318],[-122.443596,37.749416],[-122.442812,37.752396],[-122.442498,37.752396],[-122.442498,37.752552],[-122.441244,37.753807],[-122.440460,37.755062],[-122.439989,37.755846],[-122.440146,37.756317],[-122.440930,37.756160],[-122.440930,37.755846],[-122.442498,37.753650],[-122.442655,37.752552],[-122.442498,37.753650],[-122.441087,37.755846],[-122.441244,37.756317],[-122.442969,37.755532],[-122.442498,37.755376],[-122.442342,37.755062],[-122.442498,37.754434],[-122.442969,37.753964],[-122.444067,37.754121],[-122.443910,37.754434],[-122.444224,37.755062],[-122.444224,37.755846],[-122.444694,37.756630],[-122.445949,37.756473],[-122.446890,37.756473],[-122.447047,37.756944],[-122.447988,37.757571],[-122.450340,37.757414],[-122.451125,37.756787],[-122.452066,37.756630],[-122.452066,37.756944],[-122.452379,37.757101],[-122.453320,37.756630],[-122.453634,37.756944],[-122.453791,37.757414],[-122.452850,37.758042],[-122.453634,37.758669],[-122.453948,37.758826],[-122.453320,37.759140],[-122.451595,37.759453],[-122.448615,37.759610],[-122.448458,37.758983],[-122.447674,37.759140],[-122.447204,37.759610],[-122.446890,37.760394],[-122.446419,37.761022],[-122.446733,37.761806],[-122.445322,37.761806],[-122.443910,37.763218],[-122.442969,37.763531],[-122.442969,37.764159],[-122.443126,37.764472],[-122.443283,37.765256],[-122.441244,37.765256],[-122.439519,37.766511],[-122.438577,37.766354],[-122.438107,37.766825],[-122.438264,37.767139],[-122.435597,37.767295],[-122.435754,37.769021],[-122.429167,37.769491],[-122.429167,37.770275],[-122.428383,37.770432]]]}}
,{"id":94110,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.406425,37.764472],[-122.405014,37.764629],[-122.405170,37.763531],[-122.406268,37.761335],[-122.406425,37.760238],[-122.406268,37.759453],[-122.405955,37.758983],[-122.403759,37.757101],[-122.403288,37.756160],[-122.402975,37.752709],[-122.403288,37.751298],[-122.403288,37.750827],[-122.403759,37.749416],[-122.405014,37.749102],[-122.403916,37.748318],[-122.404857,37.745338],[-122.405170,37.744397],[-122.405484,37.744554],[-122.406111,37.743612],[-122.405955,37.743456],[-122.407523,37.741417],[-122.407994,37.739221],[-122.407837,37.737809],[-122.408150,37.737653],[-122.408307,37.736712],[-122.408778,37.735770],[-122.409876,37.734673],[-122.412071,37.733418],[-122.414424,37.732477],[-122.415522,37.732163],[-122.418972,37.732163],[-122.418816,37.732790],[-122.418345,37.732947],[-122.418345,37.733104],[-122.420227,37.733104],[-122.421796,37.734673],[-122.421796,37.735143],[-122.422109,37.735143],[-122.422266,37.734829],[-122.422893,37.734359],[-122.423834,37.734516],[-122.424776,37.735300],[-122.425089,37.735457],[-122.425089,37.735614],[-122.427285,37.735770],[-122.426501,37.736241],[-122.426658,37.736398],[-122.425560,37.737339],[-122.424776,37.738437],[-122.424148,37.739848],[-122.424305,37.740005],[-122.423991,37.740946],[-122.424305,37.742201],[-122.424305,37.744554],[-122.424619,37.744710],[-122.424619,37.745338],[-122.424462,37.745495],[-122.424619,37.746906],[-122.424776,37.747063],[-122.424776,37.748631],[-122.425246,37.753337],[-122.425403,37.753493],[-122.425560,37.754905],[-122.425403,37.755062],[-122.426030,37.762120],[-122.426187,37.762276],[-122.426187,37.763061],[-122.427128,37.762904],[-122.427285,37.763845],[-122.426344,37.764002],[-122.426344,37.764629],[-122.410503,37.765570],[-122.410346,37.764315],[-122.406425,37.764472]]]}}
,{"id":95304,"type":"Feature","properties":{"name":"Tracy"},"geometry":{"type":"Polygon","coordinates":[[[-121.453306,37.757885],[-121.453306,37.758355],[-121.475734,37.749102],[-121.475420,37.748945],[-121.475577,37.748788],[-121.476048,37.748945],[-121.492516,37.742201],[-121.494712,37.741417],[-121.498162,37.740789],[-121.500829,37.740633],[-121.513219,37.741417],[-121.531412,37.742515],[-121.531569,37.750984],[-121.513219,37.750827],[-121.513219,37.758199],[-121.525609,37.758355],[-121.531569,37.757885],[-121.531569,37.765727],[-121.531726,37.766982],[-121.533138,37.766982],[-121.533138,37.775765],[-121.531726,37.775765],[-121.531569,37.782666],[-121.535961,37.785803],[-121.535804,37.785959],[-121.538470,37.787528],[-121.538627,37.787371],[-121.539254,37.787841],[-121.556977,37.798820],[-121.556977,37.799134],[-121.557134,37.815759],[-121.556977,37.815916],[-121.556821,37.816073],[-121.556977,37.816543],[-121.556977,37.817171],[-121.554782,37.817484],[-121.554311,37.817798],[-121.553527,37.818425],[-121.553370,37.818896],[-121.553213,37.819994],[-121.552429,37.822190],[-121.552272,37.822033],[-121.552115,37.822503],[-121.551488,37.822817],[-121.550704,37.822190],[-121.549606,37.820935],[-121.548508,37.820151],[-121.548038,37.820151],[-121.449699,37.819994],[-121.435426,37.819994],[-121.429780,37.819366],[-121.428682,37.819366],[-121.427584,37.817955],[-121.425388,37.816543],[-121.422408,37.813720],[-121.420840,37.812622],[-121.420213,37.812309],[-121.419428,37.812152],[-121.419428,37.811211],[-121.418958,37.810897],[-121.418801,37.810426],[-121.418644,37.808074],[-121.418644,37.807603],[-121.419272,37.806976],[-121.419742,37.805251],[-121.418017,37.805721],[-121.416448,37.805408],[-121.416135,37.805564],[-121.415037,37.804467],[-121.414723,37.803682],[-121.413782,37.803369],[-121.413939,37.803369],[-121.412998,37.802898],[-121.411273,37.803369],[-121.409547,37.804780],[-121.409547,37.805094],[-121.410018,37.805564],[-121.410175,37.805721],[-121.409547,37.805878],[-121.406881,37.805878],[-121.402019,37.804937],[-121.401078,37.804937],[-121.399510,37.805251],[-121.397941,37.805408],[-121.397314,37.805721],[-121.397000,37.806192],[-121.397000,37.808074],[-121.396843,37.808544],[-121.396530,37.809015],[-121.396059,37.809015],[-121.394961,37.808701],[-121.393863,37.808701],[-121.391040,37.809329],[-121.390727,37.809329],[-121.390883,37.809172],[-121.390727,37.809172],[-121.390570,37.808231],[-121.389629,37.807133],[-121.389001,37.806819],[-121.388060,37.806349],[-121.379120,37.804467],[-121.374415,37.804153],[-121.372690,37.803526],[-121.370965,37.803212],[-121.369553,37.802114],[-121.366416,37.800702],[-121.364848,37.799448],[-121.354653,37.793801],[-121.352771,37.793017],[-121.349791,37.791135],[-121.348066,37.790351],[-121.338969,37.784077],[-121.338185,37.783136],[-121.338185,37.781254],[-121.337401,37.778745],[-121.335048,37.776392],[-121.335048,37.776078],[-121.334107,37.775608],[-121.331755,37.775137],[-121.329402,37.773412],[-121.328304,37.772314],[-121.325795,37.771373],[-121.324540,37.770746],[-121.323128,37.769334],[-121.321874,37.767452],[-121.320305,37.765884],[-121.319992,37.765884],[-121.319051,37.765100],[-121.318266,37.764159],[-121.306974,37.776706],[-121.304935,37.778117],[-121.300387,37.779686],[-121.299759,37.778431],[-121.298818,37.777333],[-121.298661,37.776863],[-121.299916,37.776078],[-121.299759,37.777019],[-121.301171,37.776392],[-121.302582,37.774824],[-121.303053,37.773726],[-121.302896,37.773098],[-121.301798,37.772471],[-121.301014,37.771216],[-121.301171,37.770589],[-121.301484,37.770432],[-121.301484,37.769177],[-121.301798,37.768864],[-121.302582,37.768393],[-121.304621,37.767766],[-121.307601,37.766511],[-121.308072,37.766197],[-121.308385,37.765727],[-121.308542,37.764315],[-121.308699,37.761806],[-121.308229,37.760551],[-121.307915,37.760394],[-121.307758,37.760081],[-121.306974,37.760081],[-121.304308,37.757414],[-121.304308,37.756003],[-121.302896,37.751141],[-121.302582,37.750984],[-121.301955,37.750984],[-121.301955,37.751141],[-121.301484,37.751298],[-121.299132,37.751298],[-121.295681,37.751925],[-121.293486,37.752082],[-121.293015,37.751925],[-121.292074,37.751298],[-121.290976,37.750357],[-121.291447,37.750513],[-121.292074,37.751298],[-121.292858,37.751611],[-121.292388,37.749729],[-121.291917,37.749259],[-121.291447,37.748788],[-121.290976,37.747847],[-121.290506,37.747690],[-121.290506,37.746279],[-121.290662,37.746122],[-121.290506,37.745965],[-121.290192,37.745024],[-121.290192,37.744083],[-121.290349,37.743456],[-121.290819,37.743299],[-121.290349,37.743926],[-121.290506,37.744083],[-121.290662,37.744867],[-121.290819,37.744867],[-121.292701,37.743142],[-121.293015,37.742671],[-121.293642,37.741887],[-121.295211,37.740476],[-121.295838,37.740162],[-121.296466,37.739221],[-121.296622,37.738437],[-121.296622,37.737025],[-121.295368,37.732947],[-121.295838,37.731849],[-121.297407,37.729497],[-121.298191,37.727301],[-121.297250,37.726517],[-121.295211,37.725419],[-121.294270,37.724635],[-121.292231,37.722439],[-121.291603,37.721341],[-121.290976,37.719616],[-121.290662,37.718518],[-121.290662,37.717106],[-121.290035,37.716165],[-121.289408,37.715695],[-121.286741,37.714754],[-121.285957,37.714911],[-121.284702,37.714597],[-121.282820,37.713970],[-121.281879,37.713185],[-121.280311,37.711931],[-121.279684,37.710990],[-121.278899,37.709892],[-121.278429,37.709421],[-121.277331,37.710049],[-121.277017,37.710990],[-121.276860,37.712244],[-121.277174,37.714126],[-121.277331,37.714911],[-121.278272,37.716009],[-121.278586,37.717420],[-121.278429,37.718361],[-121.278115,37.718675],[-121.277958,37.719616],[-121.276547,37.720086],[-121.274665,37.720400],[-121.272626,37.720871],[-121.271685,37.721184],[-121.268391,37.721184],[-121.264627,37.721655],[-121.263372,37.721655],[-121.262274,37.721341],[-121.261020,37.720871],[-121.260079,37.720086],[-121.259451,37.719145],[-121.259294,37.718675],[-121.260863,37.717420],[-121.262274,37.716950],[-121.263686,37.716165],[-121.264470,37.715381],[-121.264470,37.714911],[-121.264784,37.715068],[-121.265411,37.714283],[-121.266980,37.713185],[-121.267921,37.712244],[-121.270744,37.707696],[-121.271685,37.705500],[-121.271998,37.704559],[-121.274665,37.700952],[-121.274822,37.700325],[-121.274508,37.699697],[-121.271998,37.697815],[-121.270744,37.696247],[-121.270273,37.694835],[-121.270116,37.694051],[-121.270273,37.692953],[-121.271214,37.691541],[-121.271842,37.690914],[-121.272469,37.690444],[-121.273096,37.689659],[-121.272783,37.690130],[-121.272939,37.690287],[-121.274351,37.688875],[-121.274978,37.688561],[-121.275135,37.688091],[-121.274194,37.687307],[-121.273410,37.687150],[-121.272469,37.687307],[-121.272626,37.687620],[-121.272312,37.687464],[-121.270744,37.687620],[-121.269646,37.688091],[-121.269332,37.688405],[-121.268548,37.688561],[-121.269332,37.688091],[-121.268705,37.687620],[-121.267607,37.687464],[-121.266038,37.687620],[-121.264941,37.687464],[-121.264313,37.687620],[-121.264313,37.687777],[-121.262431,37.687777],[-121.263059,37.687934],[-121.262902,37.688091],[-121.261804,37.687777],[-121.261176,37.687934],[-121.260235,37.687777],[-121.259765,37.687934],[-121.258196,37.687777],[-121.257255,37.687464],[-121.256628,37.686836],[-121.256158,37.685895],[-121.256158,37.685111],[-121.256001,37.684640],[-121.256158,37.684013],[-121.255844,37.683543],[-121.256001,37.683072],[-121.256158,37.683072],[-121.256001,37.683386],[-121.256314,37.683699],[-121.258196,37.682288],[-121.260549,37.681504],[-121.263843,37.679465],[-121.265411,37.677740],[-121.265254,37.676955],[-121.264627,37.675387],[-121.263529,37.674132],[-121.262274,37.673348],[-121.261490,37.673191],[-121.260235,37.672721],[-121.257883,37.672250],[-121.257883,37.672093],[-121.256628,37.671309],[-121.256628,37.670995],[-121.256471,37.670525],[-121.255373,37.669427],[-121.254746,37.668643],[-121.252707,37.667074],[-121.251609,37.665663],[-121.251139,37.664565],[-121.250511,37.664251],[-121.249570,37.664251],[-121.248629,37.664408],[-121.247061,37.665506],[-121.246590,37.666761],[-121.246904,37.666604],[-121.246904,37.666918],[-121.246747,37.667074],[-121.246747,37.667702],[-121.246433,37.668800],[-121.246590,37.670682],[-121.246590,37.671936],[-121.246120,37.672721],[-121.245492,37.673034],[-121.244865,37.673191],[-121.243453,37.672250],[-121.242826,37.671623],[-121.242983,37.671309],[-121.242512,37.669270],[-121.242199,37.668486],[-121.242042,37.667702],[-121.242042,37.667388],[-121.241728,37.667231],[-121.242042,37.667074],[-121.241101,37.665506],[-121.242356,37.665035],[-121.242042,37.664565],[-121.245179,37.664408],[-121.258196,37.653429],[-121.269489,37.643862],[-121.269489,37.645430],[-121.278272,37.638216],[-121.287682,37.638216],[-121.287526,37.630844],[-121.285487,37.628962],[-121.287526,37.627551],[-121.324069,37.598849],[-121.330029,37.593830],[-121.333637,37.590850],[-121.373317,37.560266],[-121.374258,37.559168],[-121.375513,37.558384],[-121.412057,37.529525],[-121.471970,37.481846],[-121.471186,37.482787],[-121.471029,37.483728],[-121.471186,37.484983],[-121.470558,37.485453],[-121.470715,37.486081],[-121.470088,37.487178],[-121.469774,37.488276],[-121.469617,37.488904],[-121.469304,37.489060],[-121.469304,37.489688],[-121.470715,37.490786],[-121.470872,37.491256],[-121.471970,37.491727],[-121.472440,37.492197],[-121.473695,37.492825],[-121.474793,37.494079],[-121.475420,37.494550],[-121.476048,37.495491],[-121.476361,37.495648],[-121.477459,37.495648],[-121.479655,37.496589],[-121.480126,37.497844],[-121.481694,37.499882],[-121.485458,37.502549],[-121.493300,37.502392],[-121.496123,37.504901],[-121.495496,37.508509],[-121.497535,37.513214],[-121.502083,37.518546],[-121.499731,37.520585],[-121.498633,37.522624],[-121.504122,37.525918],[-121.508514,37.524820],[-121.516669,37.525604],[-121.522159,37.524820],[-121.528589,37.527800],[-121.529530,37.527016],[-121.539725,37.529839],[-121.542862,37.531407],[-121.545685,37.532505],[-121.546783,37.535015],[-121.548351,37.535956],[-121.550390,37.539406],[-121.556664,37.542700],[-121.556821,37.565128],[-121.556036,37.564501],[-121.555723,37.564501],[-121.555566,37.564658],[-121.555095,37.564658],[-121.553213,37.563717],[-121.552429,37.563717],[-121.551959,37.564030],[-121.551331,37.565128],[-121.550861,37.565755],[-121.550390,37.566069],[-121.549449,37.566069],[-121.548979,37.566540],[-121.548194,37.566853],[-121.547881,37.567481],[-121.547253,37.567638],[-121.546783,37.567951],[-121.546312,37.568108],[-121.545371,37.567951],[-121.544430,37.567481],[-121.543803,37.566696],[-121.543646,37.566696],[-121.541607,37.567951],[-121.540039,37.568735],[-121.538000,37.568422],[-121.537372,37.567951],[-121.536745,37.568108],[-121.536118,37.568579],[-121.535490,37.569676],[-121.534863,37.569990],[-121.533922,37.569833],[-121.533451,37.569520],[-121.532824,37.569049],[-121.532510,37.568108],[-121.532197,37.567638],[-121.530315,37.567324],[-121.529687,37.567010],[-121.529060,37.566383],[-121.528276,37.566226],[-121.527491,37.566383],[-121.526394,37.566853],[-121.525923,37.566853],[-121.524825,37.567324],[-121.524355,37.567324],[-121.523884,37.566853],[-121.522786,37.566696],[-121.521688,37.566069],[-121.519649,37.565755],[-121.518552,37.567010],[-121.517297,37.567794],[-121.516826,37.567951],[-121.516199,37.567324],[-121.515415,37.567324],[-121.514787,37.566696],[-121.511807,37.566540],[-121.510866,37.565912],[-121.510396,37.564971],[-121.510710,37.564501],[-121.511651,37.563717],[-121.511964,37.562775],[-121.511023,37.561834],[-121.510239,37.561678],[-121.510082,37.561207],[-121.509298,37.560893],[-121.508984,37.560423],[-121.507730,37.559952],[-121.507259,37.560109],[-121.506789,37.559952],[-121.506004,37.560266],[-121.505063,37.561050],[-121.503965,37.561364],[-121.503338,37.561207],[-121.502868,37.560580],[-121.501613,37.560423],[-121.500201,37.559952],[-121.499888,37.559952],[-121.498790,37.560580],[-121.498476,37.561364],[-121.498005,37.561521],[-121.497221,37.561678],[-121.496908,37.561991],[-121.495967,37.562148],[-121.495182,37.561991],[-121.493771,37.562775],[-121.492202,37.562775],[-121.488595,37.563246],[-121.488125,37.563717],[-121.487340,37.563717],[-121.486556,37.564344],[-121.484517,37.564501],[-121.484204,37.564971],[-121.483419,37.566069],[-121.482792,37.566226],[-121.481851,37.566696],[-121.480910,37.567167],[-121.479655,37.567167],[-121.479028,37.566853],[-121.478087,37.566853],[-121.477459,37.566696],[-121.476832,37.566069],[-121.475420,37.565599],[-121.474323,37.565285],[-121.472754,37.565285],[-121.470715,37.564814],[-121.468206,37.564658],[-121.467892,37.564501],[-121.467265,37.564971],[-121.466951,37.564971],[-121.465853,37.565285],[-121.464598,37.564187],[-121.463971,37.564814],[-121.462716,37.565128],[-121.460991,37.564971],[-121.460521,37.564658],[-121.459893,37.563873],[-121.458639,37.563089],[-121.456286,37.562932],[-121.455659,37.562932],[-121.453933,37.562932],[-121.452835,37.563089],[-121.451581,37.562775],[-121.450640,37.562775],[-121.449071,37.562775],[-121.447346,37.563560],[-121.445778,37.563089],[-121.443582,37.563246],[-121.443268,37.562775],[-121.442170,37.562148],[-121.441543,37.562619],[-121.440602,37.562775],[-121.440445,37.562619],[-121.440445,37.562305],[-121.440288,37.562305],[-121.439504,37.562775],[-121.439190,37.563873],[-121.439190,37.564814],[-121.437622,37.564344],[-121.437465,37.564658],[-121.437465,37.565128],[-121.438249,37.565285],[-121.438720,37.566069],[-121.439190,37.567481],[-121.439033,37.568108],[-121.439347,37.569363],[-121.439661,37.569676],[-121.439661,37.570147],[-121.439975,37.570617],[-121.437622,37.572500],[-121.437151,37.573284],[-121.435583,37.574852],[-121.434485,37.576577],[-121.433074,37.576577],[-121.429780,37.577205],[-121.425545,37.579087],[-121.423193,37.579871],[-121.422095,37.580498],[-121.421311,37.581126],[-121.420997,37.581439],[-121.420526,37.583165],[-121.420369,37.584419],[-121.418174,37.586145],[-121.417389,37.586145],[-121.417076,37.586458],[-121.415194,37.587713],[-121.412998,37.588654],[-121.411430,37.588968],[-121.408136,37.591164],[-121.407038,37.591791],[-121.402176,37.593359],[-121.401862,37.593830],[-121.401705,37.594928],[-121.401078,37.595555],[-121.400764,37.596496],[-121.399353,37.598221],[-121.398725,37.598849],[-121.397000,37.599476],[-121.393707,37.599947],[-121.393079,37.600103],[-121.386335,37.606377],[-121.384296,37.607475],[-121.382257,37.608102],[-121.381787,37.608416],[-121.381159,37.608730],[-121.380689,37.609357],[-121.379905,37.609984],[-121.379905,37.610298],[-121.379277,37.610925],[-121.378964,37.611082],[-121.377238,37.611082],[-121.376140,37.611239],[-121.375043,37.612494],[-121.374572,37.612964],[-121.374258,37.612651],[-121.373631,37.612964],[-121.373474,37.612651],[-121.373004,37.612651],[-121.372376,37.613278],[-121.371122,37.613592],[-121.370181,37.614062],[-121.369553,37.614690],[-121.368298,37.615160],[-121.367514,37.615317],[-121.366887,37.614846],[-121.364691,37.615003],[-121.370808,37.619709],[-121.373317,37.621591],[-121.397628,37.636334],[-121.397628,37.638059],[-121.402333,37.638686],[-121.434328,37.658134],[-121.434328,37.661114],[-121.429623,37.657507],[-121.415978,37.650449],[-121.416448,37.694992],[-121.416448,37.710362],[-121.416605,37.739691],[-121.410802,37.739691],[-121.410802,37.742515],[-121.410645,37.742985],[-121.409547,37.744710],[-121.409547,37.747690],[-121.409704,37.748631],[-121.410332,37.749416],[-121.410959,37.749572],[-121.413155,37.749729],[-121.413782,37.749886],[-121.414253,37.750357],[-121.414566,37.751141],[-121.414566,37.754121],[-121.416605,37.754121],[-121.416605,37.754278],[-121.410175,37.754278],[-121.410175,37.761492],[-121.414723,37.761492],[-121.414723,37.764159],[-121.424134,37.762747],[-121.438720,37.762747],[-121.440916,37.762433],[-121.443739,37.761806],[-121.453306,37.757885]]]}}
,{"id":95205,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.277488,37.951740],[-121.278272,37.952681],[-121.278429,37.955661],[-121.282036,37.969463],[-121.286585,37.968678],[-121.288624,37.973854],[-121.288624,37.974638],[-121.287682,37.975736],[-121.287055,37.976834],[-121.287526,37.976834],[-121.288153,37.975423],[-121.288780,37.974795],[-121.289251,37.974638],[-121.289878,37.975736],[-121.289094,37.976050],[-121.291447,37.982167],[-121.287526,37.983108],[-121.285800,37.978873],[-121.282977,37.974325],[-121.281566,37.994400],[-121.279527,37.994557],[-121.279370,37.994557],[-121.279684,37.994557],[-121.279527,37.994714],[-121.277488,37.995185],[-121.276390,37.995341],[-121.276076,37.995185],[-121.275763,37.995341],[-121.275449,37.995655],[-121.275292,37.996282],[-121.274665,37.996910],[-121.272939,37.998164],[-121.271528,37.999733],[-121.270744,37.999890],[-121.269489,37.999890],[-121.268548,38.000360],[-121.268391,38.000360],[-121.267764,38.002085],[-121.267921,38.003497],[-121.266195,38.004595],[-121.265725,38.004595],[-121.261647,38.003968],[-121.258196,38.004595],[-121.257569,38.004752],[-121.256942,38.002870],[-121.250198,37.986245],[-121.250041,37.984519],[-121.249727,37.980442],[-121.249570,37.979030],[-121.245022,37.968365],[-121.243140,37.964914],[-121.241728,37.961464],[-121.240160,37.957229],[-121.238278,37.952681],[-121.239062,37.952210],[-121.238905,37.951740],[-121.238591,37.951112],[-121.237807,37.951269],[-121.235455,37.945309],[-121.234984,37.942957],[-121.233886,37.933860],[-121.234984,37.934174],[-121.236866,37.935115],[-121.237494,37.934017],[-121.237337,37.933860],[-121.234670,37.932448],[-121.234043,37.931821],[-121.233573,37.930723],[-121.233259,37.930880],[-121.230749,37.924449],[-121.231220,37.924606],[-121.229965,37.921626],[-121.244865,37.917705],[-121.245963,37.920842],[-121.241885,37.921783],[-121.242042,37.921940],[-121.244081,37.927116],[-121.244708,37.926959],[-121.246120,37.926802],[-121.247845,37.926488],[-121.248002,37.926332],[-121.247845,37.925547],[-121.250198,37.931194],[-121.249413,37.931350],[-121.247845,37.931194],[-121.245963,37.931664],[-121.248159,37.937310],[-121.248472,37.937310],[-121.249570,37.939192],[-121.253021,37.938251],[-121.254119,37.940918],[-121.254903,37.944055],[-121.255530,37.944525],[-121.255687,37.944996],[-121.263843,37.942800],[-121.274508,37.940918],[-121.275135,37.942800],[-121.275763,37.943741],[-121.275763,37.944682],[-121.275919,37.945466],[-121.276390,37.945780],[-121.275919,37.946721],[-121.274508,37.946878],[-121.274665,37.947976],[-121.274822,37.947819],[-121.275292,37.948917],[-121.276547,37.948760],[-121.277331,37.950799],[-121.277488,37.951740]]]}}
,{"id":95361,"type":"Feature","properties":{"name":"Oakdale"},"geometry":{"type":"Polygon","coordinates":[[[-120.942477,37.827679],[-120.960827,37.827522],[-120.961925,37.856694],[-120.943575,37.856694],[-120.925381,37.856851],[-120.926322,37.886651],[-120.926322,37.897159],[-120.924597,37.900139],[-120.924283,37.900767],[-120.923970,37.900923],[-120.922872,37.900610],[-120.922558,37.900139],[-120.922558,37.899041],[-120.922401,37.898571],[-120.921774,37.897943],[-120.921774,37.897630],[-120.922244,37.897316],[-120.923028,37.897002],[-120.923499,37.896061],[-120.922872,37.895748],[-120.922244,37.895905],[-120.921931,37.896218],[-120.921146,37.896218],[-120.920049,37.893866],[-120.918794,37.894807],[-120.918480,37.894807],[-120.917696,37.894650],[-120.916912,37.893395],[-120.919892,37.891199],[-120.920519,37.891199],[-120.918480,37.891356],[-120.918480,37.890572],[-120.918166,37.888847],[-120.916598,37.887906],[-120.915814,37.888219],[-120.914873,37.887906],[-120.914559,37.886337],[-120.914873,37.884298],[-120.914559,37.883357],[-120.913775,37.883044],[-120.912991,37.883514],[-120.912991,37.884298],[-120.912520,37.885239],[-120.911265,37.884769],[-120.911109,37.885083],[-120.911579,37.885239],[-120.911579,37.885867],[-120.910952,37.886337],[-120.909697,37.884612],[-120.909697,37.883828],[-120.909383,37.883357],[-120.909854,37.882887],[-120.909854,37.882103],[-120.909697,37.881789],[-120.908756,37.882416],[-120.907658,37.884298],[-120.907031,37.884455],[-120.906717,37.883828],[-120.906560,37.882887],[-120.907031,37.881162],[-120.908129,37.879907],[-120.908129,37.879593],[-120.907501,37.878652],[-120.907344,37.877868],[-120.907031,37.877397],[-120.906560,37.877084],[-120.905933,37.877084],[-120.905306,37.877397],[-120.904208,37.877397],[-120.903580,37.878025],[-120.903423,37.878338],[-120.901698,37.878966],[-120.901228,37.879593],[-120.902169,37.881946],[-120.902169,37.883828],[-120.901071,37.884455],[-120.899973,37.883357],[-120.899816,37.882259],[-120.899502,37.881632],[-120.898561,37.881162],[-120.896836,37.881475],[-120.895895,37.881318],[-120.895425,37.880691],[-120.894484,37.880691],[-120.893856,37.880377],[-120.893072,37.878809],[-120.892288,37.878652],[-120.891974,37.877554],[-120.891033,37.877084],[-120.890406,37.876456],[-120.890092,37.875829],[-120.890092,37.874888],[-120.889935,37.874417],[-120.889465,37.874104],[-120.889151,37.875045],[-120.888680,37.875045],[-120.886955,37.873633],[-120.886485,37.873633],[-120.886328,37.873947],[-120.887112,37.875358],[-120.886171,37.876143],[-120.884132,37.874261],[-120.883818,37.873476],[-120.883662,37.872692],[-120.883505,37.872065],[-120.882877,37.871908],[-120.882564,37.872849],[-120.881936,37.872849],[-120.881466,37.872535],[-120.879584,37.868614],[-120.879427,37.862184],[-120.877074,37.863752],[-120.877702,37.862027],[-120.878486,37.860929],[-120.879427,37.858577],[-120.869703,37.865791],[-120.867821,37.864066],[-120.865311,37.867673],[-120.865625,37.862498],[-120.863586,37.864693],[-120.860449,37.864223],[-120.860292,37.866419],[-120.855273,37.865007],[-120.854960,37.867516],[-120.852921,37.866575],[-120.853548,37.864850],[-120.850882,37.863752],[-120.846334,37.864850],[-120.847431,37.862811],[-120.851196,37.861713],[-120.848372,37.859361],[-120.849313,37.856538],[-120.842883,37.856694],[-120.838178,37.853714],[-120.829865,37.852460],[-120.829552,37.853401],[-120.829708,37.855597],[-120.828924,37.856851],[-120.829238,37.864066],[-120.843040,37.864066],[-120.843667,37.878809],[-120.843354,37.879123],[-120.841942,37.879593],[-120.840530,37.881005],[-120.840060,37.882730],[-120.839903,37.884298],[-120.839276,37.886494],[-120.838648,37.889474],[-120.837550,37.889317],[-120.835198,37.887592],[-120.829395,37.883200],[-120.827042,37.882730],[-120.822807,37.883200],[-120.820612,37.882259],[-120.816534,37.881475],[-120.808849,37.878025],[-120.807908,37.876927],[-120.807751,37.876927],[-120.807594,37.876456],[-120.806810,37.875672],[-120.805398,37.874731],[-120.804771,37.873006],[-120.804771,37.872535],[-120.803987,37.871437],[-120.803673,37.870810],[-120.803830,37.870183],[-120.804300,37.869398],[-120.804143,37.868771],[-120.803673,37.868301],[-120.802889,37.867987],[-120.801791,37.867830],[-120.801634,37.867987],[-120.801791,37.875672],[-120.801791,37.879593],[-120.807594,37.879593],[-120.807594,37.881789],[-120.808064,37.883200],[-120.808378,37.883671],[-120.809319,37.884455],[-120.810731,37.886808],[-120.811672,37.887592],[-120.812142,37.888376],[-120.814495,37.890572],[-120.815436,37.892454],[-120.816534,37.893709],[-120.817475,37.894650],[-120.818886,37.894963],[-120.820298,37.894963],[-120.821396,37.894493],[-120.821866,37.905785],[-120.840374,37.905942],[-120.840217,37.915666],[-120.819357,37.915510],[-120.812142,37.915666],[-120.810260,37.915823],[-120.809162,37.915666],[-120.806967,37.915510],[-120.779676,37.915823],[-120.777481,37.915510],[-120.747367,37.915980],[-120.744544,37.912373],[-120.728703,37.897630],[-120.719450,37.890258],[-120.696080,37.869869],[-120.694512,37.868457],[-120.692316,37.866732],[-120.674750,37.851362],[-120.660007,37.838187],[-120.655145,37.833325],[-120.652636,37.831443],[-120.571079,37.772001],[-120.562923,37.765884],[-120.559786,37.763845],[-120.547553,37.754748],[-120.541906,37.749886],[-120.517125,37.731222],[-120.470858,37.696560],[-120.458624,37.687150],[-120.459408,37.686366],[-120.460192,37.685425],[-120.467093,37.679935],[-120.468662,37.681504],[-120.469289,37.681347],[-120.470858,37.681504],[-120.475720,37.684013],[-120.478386,37.685111],[-120.478856,37.685425],[-120.479327,37.686366],[-120.479797,37.687150],[-120.481836,37.687307],[-120.482464,37.687620],[-120.483248,37.688091],[-120.484189,37.689659],[-120.521203,37.689659],[-120.522615,37.703148],[-120.609504,37.701109],[-120.609661,37.711617],[-120.608407,37.713185],[-120.607152,37.714126],[-120.614680,37.712244],[-120.618915,37.710519],[-120.620326,37.712401],[-120.620483,37.715224],[-120.625032,37.715224],[-120.625032,37.724007],[-120.625189,37.723851],[-120.628482,37.725419],[-120.630521,37.728869],[-120.632090,37.730595],[-120.632874,37.732320],[-120.654831,37.732320],[-120.656243,37.732947],[-120.657184,37.732790],[-120.659537,37.732790],[-120.664869,37.734045],[-120.666124,37.734045],[-120.667222,37.733888],[-120.671927,37.732634],[-120.673182,37.732006],[-120.674593,37.731849],[-120.675064,37.732006],[-120.675848,37.732634],[-120.683219,37.732634],[-120.682749,37.718047],[-120.687611,37.718204],[-120.687611,37.717106],[-120.691846,37.717106],[-120.691689,37.710833],[-120.709412,37.710990],[-120.709882,37.711147],[-120.710353,37.711617],[-120.710667,37.711617],[-120.711451,37.711147],[-120.712392,37.710990],[-120.719450,37.710990],[-120.719293,37.710676],[-120.719763,37.710362],[-120.719136,37.709421],[-120.719450,37.708794],[-120.719763,37.708480],[-120.719920,37.708010],[-120.719606,37.707539],[-120.719136,37.707382],[-120.718979,37.707069],[-120.719450,37.706912],[-120.719606,37.706441],[-120.719293,37.705971],[-120.718352,37.705187],[-120.717097,37.698756],[-120.727605,37.698599],[-120.727605,37.684797],[-120.792851,37.681817],[-120.804300,37.681974],[-120.822651,37.711147],[-120.826572,37.711147],[-120.825944,37.702207],[-120.825787,37.695306],[-120.827356,37.695462],[-120.827199,37.696560],[-120.848372,37.696560],[-120.848216,37.692953],[-120.878329,37.692796],[-120.878329,37.707069],[-120.894013,37.707069],[-120.894013,37.710990],[-120.894640,37.710990],[-120.894797,37.715224],[-120.903894,37.715224],[-120.904364,37.710990],[-120.921931,37.710833],[-120.921931,37.718989],[-120.921931,37.720871],[-120.919892,37.721655],[-120.916912,37.723851],[-120.916598,37.724164],[-120.915186,37.725419],[-120.912991,37.727772],[-120.912991,37.729026],[-120.917539,37.729026],[-120.917539,37.732634],[-120.913148,37.732634],[-120.913618,37.745808],[-120.918323,37.740633],[-120.918794,37.738123],[-120.919735,37.737339],[-120.920519,37.737025],[-120.921774,37.736868],[-120.923028,37.737025],[-120.926165,37.737496],[-120.926008,37.737809],[-120.926165,37.738123],[-120.926165,37.738437],[-120.922401,37.737496],[-120.920676,37.738437],[-120.921460,37.743299],[-120.921146,37.745965],[-120.922244,37.747847],[-120.922244,37.748318],[-120.922087,37.748788],[-120.923185,37.757728],[-120.922715,37.759453],[-120.923185,37.793645],[-120.923970,37.815445],[-120.942163,37.815602],[-120.942320,37.820307],[-120.939967,37.820307],[-120.940124,37.827679],[-120.942477,37.827679]]]}}
,{"id":94010,"type":"Feature","properties":{"name":"Burlingame"},"geometry":{"type":"Polygon","coordinates":[[[-122.378508,37.601672],[-122.374900,37.604025],[-122.373959,37.603868],[-122.373175,37.604181],[-122.372234,37.603868],[-122.370822,37.603083],[-122.369411,37.602299],[-122.368627,37.601829],[-122.366588,37.599947],[-122.365490,37.598692],[-122.365490,37.598692],[-122.365960,37.598065],[-122.365647,37.597437],[-122.365019,37.597908],[-122.364549,37.598535],[-122.364078,37.598535],[-122.363921,37.598378],[-122.363608,37.598065],[-122.362824,37.595398],[-122.361882,37.593830],[-122.362039,37.593516],[-122.361569,37.593516],[-122.360471,37.592105],[-122.359687,37.592105],[-122.357334,37.592261],[-122.352158,37.592105],[-122.338356,37.592261],[-122.338356,37.591007],[-122.338043,37.591007],[-122.338043,37.592261],[-122.334435,37.592105],[-122.334279,37.587870],[-122.333965,37.587713],[-122.333024,37.587870],[-122.333181,37.587556],[-122.334592,37.587086],[-122.334749,37.586615],[-122.330828,37.583008],[-122.330828,37.582851],[-122.342905,37.574539],[-122.341964,37.574225],[-122.347139,37.572029],[-122.348081,37.571559],[-122.352315,37.569833],[-122.350119,37.566383],[-122.352315,37.565442],[-122.354982,37.564658],[-122.354982,37.564501],[-122.354982,37.564187],[-122.353413,37.561991],[-122.352943,37.560893],[-122.352786,37.560893],[-122.351217,37.561834],[-122.337102,37.567638],[-122.336945,37.567167],[-122.336318,37.567481],[-122.335376,37.566853],[-122.333808,37.566226],[-122.333338,37.565755],[-122.332553,37.565599],[-122.332396,37.565285],[-122.331455,37.564187],[-122.330671,37.562619],[-122.329730,37.561678],[-122.329887,37.561521],[-122.339768,37.552424],[-122.339925,37.551953],[-122.340395,37.551169],[-122.340082,37.550542],[-122.340395,37.549444],[-122.339454,37.548189],[-122.339454,37.547562],[-122.338356,37.546621],[-122.337572,37.546150],[-122.336945,37.546621],[-122.332553,37.550856],[-122.329103,37.548346],[-122.328789,37.548660],[-122.328789,37.548503],[-122.330514,37.547091],[-122.330985,37.546307],[-122.332710,37.544111],[-122.329887,37.540975],[-122.333651,37.538622],[-122.334435,37.539249],[-122.336004,37.537995],[-122.339297,37.540190],[-122.341807,37.537995],[-122.338043,37.535015],[-122.341807,37.531721],[-122.343689,37.533446],[-122.345257,37.537681],[-122.345885,37.538936],[-122.345885,37.539406],[-122.349178,37.540190],[-122.349492,37.540347],[-122.349806,37.539563],[-122.350590,37.539563],[-122.350276,37.537524],[-122.349492,37.536740],[-122.349178,37.535799],[-122.349806,37.534231],[-122.350904,37.533917],[-122.351688,37.532662],[-122.355138,37.531094],[-122.358903,37.529996],[-122.360628,37.531251],[-122.361098,37.531407],[-122.362667,37.534544],[-122.367842,37.542229],[-122.376625,37.551483],[-122.378194,37.553365],[-122.381644,37.558541],[-122.387761,37.564658],[-122.388859,37.565442],[-122.390741,37.566226],[-122.395760,37.563403],[-122.397956,37.563403],[-122.399211,37.564501],[-122.399524,37.565442],[-122.400622,37.566069],[-122.401093,37.566853],[-122.402818,37.568108],[-122.402975,37.569363],[-122.406268,37.573127],[-122.406268,37.573754],[-122.408778,37.576577],[-122.411130,37.578460],[-122.411758,37.578616],[-122.412699,37.578460],[-122.412542,37.579087],[-122.412856,37.579557],[-122.412699,37.579871],[-122.410660,37.580342],[-122.409876,37.580969],[-122.410033,37.581596],[-122.409248,37.582694],[-122.409091,37.583792],[-122.410189,37.583949],[-122.410033,37.586145],[-122.410974,37.586615],[-122.412071,37.587870],[-122.413169,37.588654],[-122.413169,37.588811],[-122.412699,37.589125],[-122.410974,37.587399],[-122.409405,37.586145],[-122.406582,37.584106],[-122.405484,37.583635],[-122.403602,37.581596],[-122.399211,37.584419],[-122.395603,37.585360],[-122.393407,37.587086],[-122.390898,37.589282],[-122.389800,37.588654],[-122.388859,37.590850],[-122.388389,37.591320],[-122.390114,37.592575],[-122.388545,37.593516],[-122.387604,37.595241],[-122.387134,37.595712],[-122.382272,37.599162],[-122.379449,37.601045],[-122.380390,37.600888],[-122.382899,37.599476],[-122.383997,37.600417],[-122.380390,37.602456],[-122.378821,37.601358],[-122.378508,37.601672]]]}}
,{"id":94015,"type":"Feature","properties":{"name":"Daly City"},"geometry":{"type":"Polygon","coordinates":[[[-122.459908,37.666604],[-122.461476,37.665349],[-122.460378,37.664094],[-122.461790,37.663624],[-122.462104,37.662683],[-122.462417,37.662840],[-122.462731,37.662369],[-122.463358,37.662526],[-122.463358,37.662212],[-122.463672,37.662369],[-122.463672,37.661428],[-122.462731,37.661742],[-122.463045,37.661114],[-122.461790,37.660173],[-122.456771,37.657193],[-122.458183,37.655782],[-122.456144,37.653586],[-122.458026,37.655468],[-122.453791,37.655939],[-122.453164,37.654998],[-122.450340,37.648567],[-122.453320,37.650136],[-122.454732,37.649979],[-122.455673,37.650606],[-122.455987,37.650292],[-122.456614,37.649979],[-122.458967,37.649822],[-122.463358,37.650292],[-122.466652,37.650292],[-122.468534,37.650449],[-122.469475,37.650292],[-122.470730,37.649351],[-122.471828,37.649195],[-122.471200,37.652175],[-122.471357,37.652959],[-122.471671,37.653900],[-122.476533,37.661742],[-122.478885,37.663624],[-122.481552,37.666133],[-122.482963,37.666761],[-122.485002,37.666918],[-122.485316,37.665349],[-122.485159,37.664251],[-122.485786,37.664251],[-122.485473,37.663153],[-122.485630,37.661742],[-122.485786,37.661428],[-122.488296,37.660958],[-122.489864,37.661114],[-122.491746,37.662369],[-122.493628,37.664408],[-122.495040,37.664408],[-122.495197,37.665035],[-122.495511,37.665192],[-122.495511,37.665506],[-122.496138,37.665976],[-122.495981,37.666290],[-122.496452,37.666290],[-122.496452,37.666447],[-122.495981,37.666761],[-122.495667,37.668329],[-122.495667,37.671936],[-122.495824,37.672877],[-122.495667,37.674132],[-122.495824,37.675073],[-122.496295,37.681504],[-122.496452,37.683072],[-122.496765,37.684013],[-122.497079,37.686523],[-122.497549,37.687464],[-122.498647,37.691541],[-122.499275,37.694521],[-122.500373,37.698442],[-122.500686,37.700325],[-122.501314,37.702677],[-122.501470,37.704246],[-122.502725,37.707226],[-122.502882,37.708167],[-122.498177,37.708167],[-122.484845,37.708323],[-122.469161,37.708167],[-122.469161,37.708010],[-122.468691,37.708167],[-122.470102,37.706755],[-122.470887,37.705500],[-122.471200,37.704246],[-122.471357,37.702050],[-122.471828,37.702207],[-122.471514,37.697972],[-122.470730,37.694835],[-122.470573,37.692326],[-122.470573,37.689659],[-122.471514,37.686679],[-122.471671,37.683229],[-122.470730,37.682131],[-122.470573,37.678837],[-122.470259,37.677896],[-122.465240,37.671780],[-122.460221,37.667231],[-122.459908,37.666604]]]}}
,{"id":94038,"type":"Feature","properties":{"name":"Moss Beach"},"geometry":{"type":"Polygon","coordinates":[[[-122.503980,37.523565],[-122.505235,37.523095],[-122.505705,37.522781],[-122.506489,37.522154],[-122.508215,37.522781],[-122.510097,37.522624],[-122.511351,37.522938],[-122.512606,37.521213],[-122.511038,37.520429],[-122.492844,37.505058],[-122.494256,37.503176],[-122.494883,37.503490],[-122.495511,37.503960],[-122.496295,37.503960],[-122.496765,37.503647],[-122.496765,37.502235],[-122.497393,37.501294],[-122.497079,37.500039],[-122.497236,37.499726],[-122.498020,37.499255],[-122.497393,37.498314],[-122.497079,37.495491],[-122.498334,37.495334],[-122.499432,37.495491],[-122.499275,37.495805],[-122.499432,37.495961],[-122.500529,37.497216],[-122.500686,37.497687],[-122.500529,37.498314],[-122.500059,37.498628],[-122.500059,37.499098],[-122.499118,37.499726],[-122.498647,37.500510],[-122.498804,37.500980],[-122.499745,37.501765],[-122.499902,37.502549],[-122.500373,37.503333],[-122.501784,37.504745],[-122.502412,37.505215],[-122.503823,37.505999],[-122.504607,37.506156],[-122.505862,37.507097],[-122.506646,37.508038],[-122.506960,37.508822],[-122.508371,37.510234],[-122.509626,37.511332],[-122.510881,37.512273],[-122.511195,37.512743],[-122.511822,37.513214],[-122.512449,37.514469],[-122.512920,37.516508],[-122.513704,37.517605],[-122.514175,37.519644],[-122.515586,37.521056],[-122.516684,37.521526],[-122.517311,37.522154],[-122.517939,37.524193],[-122.516998,37.525761],[-122.517155,37.526232],[-122.516998,37.527016],[-122.517625,37.527957],[-122.518096,37.528114],[-122.517782,37.528271],[-122.517311,37.528584],[-122.516998,37.529368],[-122.516998,37.529525],[-122.517468,37.529839],[-122.517625,37.530623],[-122.517939,37.530780],[-122.517939,37.530937],[-122.518252,37.531094],[-122.518096,37.531407],[-122.518252,37.531407],[-122.518096,37.531721],[-122.518252,37.532035],[-122.518723,37.532348],[-122.518723,37.532662],[-122.519664,37.533446],[-122.519664,37.533603],[-122.519664,37.533760],[-122.519664,37.533917],[-122.519821,37.533917],[-122.519507,37.534074],[-122.519664,37.534231],[-122.519664,37.534701],[-122.519350,37.534701],[-122.519664,37.534858],[-122.519821,37.535485],[-122.519507,37.535642],[-122.519821,37.535799],[-122.519507,37.535956],[-122.519821,37.536113],[-122.519664,37.536426],[-122.519664,37.537210],[-122.519507,37.537367],[-122.519037,37.537367],[-122.518723,37.537054],[-122.516684,37.535642],[-122.514175,37.534544],[-122.511038,37.532505],[-122.509783,37.532819],[-122.508685,37.533760],[-122.507587,37.536113],[-122.506803,37.536897],[-122.506489,37.536897],[-122.507274,37.535799],[-122.507587,37.535328],[-122.507430,37.535015],[-122.506803,37.535015],[-122.505548,37.536426],[-122.503823,37.535799],[-122.503509,37.536269],[-122.502568,37.535956],[-122.502568,37.536740],[-122.500686,37.535956],[-122.501941,37.534858],[-122.499432,37.533917],[-122.493785,37.533446],[-122.493315,37.533446],[-122.492531,37.533289],[-122.492374,37.533289],[-122.492217,37.533760],[-122.491903,37.534231],[-122.491276,37.534544],[-122.490962,37.534387],[-122.488923,37.533603],[-122.490648,37.532819],[-122.491276,37.532662],[-122.492844,37.531721],[-122.493628,37.530780],[-122.495511,37.529525],[-122.497863,37.528741],[-122.498804,37.527643],[-122.499745,37.527643],[-122.500216,37.527486],[-122.500686,37.527330],[-122.501784,37.525918],[-122.502568,37.524350],[-122.503980,37.523565]]]}}
,{"id":94020,"type":"Feature","properties":{"name":"La Honda"},"geometry":{"type":"Polygon","coordinates":[[[-122.242527,37.215060],[-122.242056,37.240939],[-122.242841,37.241409],[-122.243625,37.241409],[-122.243625,37.242194],[-122.244723,37.242507],[-122.246918,37.242664],[-122.247232,37.243135],[-122.247232,37.243448],[-122.248173,37.244076],[-122.248957,37.244076],[-122.250839,37.245487],[-122.251937,37.245644],[-122.253349,37.246115],[-122.254447,37.247056],[-122.256172,37.247683],[-122.260720,37.248624],[-122.260250,37.268229],[-122.262289,37.267288],[-122.263073,37.266818],[-122.263387,37.266661],[-122.263544,37.266818],[-122.264014,37.268857],[-122.264014,37.269170],[-122.263544,37.269641],[-122.263700,37.270111],[-122.265426,37.270895],[-122.266680,37.270895],[-122.267935,37.270425],[-122.268406,37.270582],[-122.267778,37.271523],[-122.269190,37.271993],[-122.269347,37.272150],[-122.267778,37.273875],[-122.267778,37.274346],[-122.266837,37.275287],[-122.266837,37.275758],[-122.266994,37.276699],[-122.267935,37.277640],[-122.269974,37.281404],[-122.271856,37.283913],[-122.272327,37.285011],[-122.272327,37.285638],[-122.273111,37.286423],[-122.272954,37.287834],[-122.273581,37.289873],[-122.272954,37.289716],[-122.271542,37.287677],[-122.270758,37.287991],[-122.269817,37.287677],[-122.268562,37.286423],[-122.267465,37.286109],[-122.267465,37.286266],[-122.268092,37.286736],[-122.268249,37.287834],[-122.267935,37.288462],[-122.268406,37.289403],[-122.267935,37.289716],[-122.265269,37.289089],[-122.264641,37.289873],[-122.263857,37.290501],[-122.263857,37.290814],[-122.264171,37.291598],[-122.264798,37.291912],[-122.266524,37.292383],[-122.266994,37.292696],[-122.267465,37.293637],[-122.268092,37.293951],[-122.267621,37.294578],[-122.267308,37.295206],[-122.267935,37.295990],[-122.267778,37.296304],[-122.267935,37.296617],[-122.269033,37.297088],[-122.269347,37.297401],[-122.269974,37.298343],[-122.270758,37.298499],[-122.271386,37.298813],[-122.272013,37.300225],[-122.272797,37.301322],[-122.274522,37.302264],[-122.275620,37.302420],[-122.276248,37.301479],[-122.276091,37.300695],[-122.276718,37.298656],[-122.276404,37.297872],[-122.276561,37.297088],[-122.277032,37.296774],[-122.277502,37.296774],[-122.279855,37.297245],[-122.280325,37.296931],[-122.280169,37.296617],[-122.278914,37.295990],[-122.278914,37.295519],[-122.279228,37.295049],[-122.280796,37.294735],[-122.280953,37.294265],[-122.280796,37.294108],[-122.278757,37.292696],[-122.278914,37.291755],[-122.278443,37.290971],[-122.278443,37.290030],[-122.278600,37.289716],[-122.279384,37.289716],[-122.279855,37.289403],[-122.282364,37.285638],[-122.282364,37.284854],[-122.282521,37.284541],[-122.282835,37.284541],[-122.283149,37.284697],[-122.283462,37.285011],[-122.283305,37.285795],[-122.283462,37.285952],[-122.283776,37.285795],[-122.283933,37.285011],[-122.284403,37.284070],[-122.284090,37.283913],[-122.283619,37.283600],[-122.283619,37.283443],[-122.284246,37.283129],[-122.284560,37.282815],[-122.284560,37.281561],[-122.285501,37.280149],[-122.285658,37.278894],[-122.286913,37.277012],[-122.287226,37.276699],[-122.288011,37.276699],[-122.289893,37.276071],[-122.290363,37.276071],[-122.291461,37.276542],[-122.293030,37.277953],[-122.294127,37.278424],[-122.294598,37.278267],[-122.295068,37.279365],[-122.295225,37.280306],[-122.298833,37.282345],[-122.299460,37.282502],[-122.299460,37.282345],[-122.299303,37.281717],[-122.299460,37.281247],[-122.299774,37.281247],[-122.299460,37.281717],[-122.299617,37.281874],[-122.300087,37.282345],[-122.300401,37.282658],[-122.300558,37.282815],[-122.300872,37.282972],[-122.301499,37.282815],[-122.302754,37.283129],[-122.301499,37.282502],[-122.301185,37.282031],[-122.301185,37.281874],[-122.301342,37.281874],[-122.301499,37.282188],[-122.302283,37.282502],[-122.303067,37.282502],[-122.303381,37.282815],[-122.305106,37.282815],[-122.305734,37.283286],[-122.305734,37.283913],[-122.303695,37.285011],[-122.301813,37.285638],[-122.301656,37.286266],[-122.303067,37.287834],[-122.303224,37.289246],[-122.303067,37.290030],[-122.301969,37.291755],[-122.301969,37.292539],[-122.302440,37.294578],[-122.301813,37.296617],[-122.301342,37.297088],[-122.298833,37.297715],[-122.298205,37.298343],[-122.297735,37.298656],[-122.297421,37.298343],[-122.296480,37.298186],[-122.295225,37.299127],[-122.293343,37.298656],[-122.291618,37.298813],[-122.291147,37.299440],[-122.290677,37.299911],[-122.290520,37.300538],[-122.289422,37.301793],[-122.289422,37.302577],[-122.289109,37.303832],[-122.288638,37.304459],[-122.288481,37.304773],[-122.289109,37.305871],[-122.290363,37.307126],[-122.293500,37.308380],[-122.294912,37.307439],[-122.295068,37.307439],[-122.295696,37.307596],[-122.296951,37.307126],[-122.297264,37.307282],[-122.298676,37.308851],[-122.299146,37.310106],[-122.300087,37.310419],[-122.301656,37.310262],[-122.302283,37.310419],[-122.302754,37.310890],[-122.303224,37.311047],[-122.303852,37.310733],[-122.304165,37.311203],[-122.304322,37.311517],[-122.304165,37.311988],[-122.303538,37.312929],[-122.304008,37.312929],[-122.305106,37.312458],[-122.305263,37.313242],[-122.304008,37.313870],[-122.303224,37.314497],[-122.302283,37.315281],[-122.302283,37.316065],[-122.301342,37.316222],[-122.301185,37.316536],[-122.301342,37.316693],[-122.304008,37.316536],[-122.305263,37.316379],[-122.306204,37.315752],[-122.308243,37.314340],[-122.309184,37.313870],[-122.314987,37.312301],[-122.318751,37.311831],[-122.320320,37.311831],[-122.327378,37.313713],[-122.328162,37.314183],[-122.328319,37.314340],[-122.328319,37.314654],[-122.327848,37.314968],[-122.327534,37.315438],[-122.327064,37.315909],[-122.326907,37.316379],[-122.327221,37.317007],[-122.326907,37.317320],[-122.326750,37.317791],[-122.325966,37.318418],[-122.325966,37.319202],[-122.326123,37.319830],[-122.325966,37.319987],[-122.325809,37.321084],[-122.325182,37.321869],[-122.325496,37.322653],[-122.324711,37.323908],[-122.324398,37.324064],[-122.323927,37.325005],[-122.322986,37.325476],[-122.323300,37.326574],[-122.323613,37.327044],[-122.323143,37.327672],[-122.323457,37.328299],[-122.323143,37.329083],[-122.323143,37.329397],[-122.322829,37.330181],[-122.322829,37.330808],[-122.322359,37.330965],[-122.322202,37.331436],[-122.322045,37.331436],[-122.321888,37.331593],[-122.321418,37.331593],[-122.321418,37.331906],[-122.321261,37.332220],[-122.321575,37.332534],[-122.320320,37.333475],[-122.319849,37.334102],[-122.319536,37.335043],[-122.319065,37.335514],[-122.319222,37.336141],[-122.318751,37.336925],[-122.318908,37.337239],[-122.318595,37.338651],[-122.318595,37.340219],[-122.318281,37.341003],[-122.318438,37.341944],[-122.317653,37.343199],[-122.317340,37.346022],[-122.317183,37.346649],[-122.317183,37.346963],[-122.317653,37.347904],[-122.317810,37.348375],[-122.317653,37.349159],[-122.317497,37.350100],[-122.316869,37.350414],[-122.315301,37.351041],[-122.314360,37.352139],[-122.312791,37.353237],[-122.312007,37.354178],[-122.311850,37.355119],[-122.311223,37.356373],[-122.310909,37.356687],[-122.307773,37.357785],[-122.305890,37.357785],[-122.300401,37.362020],[-122.299774,37.361706],[-122.298205,37.361549],[-122.297421,37.361079],[-122.297107,37.360608],[-122.296010,37.360138],[-122.295539,37.360608],[-122.295225,37.360922],[-122.293657,37.360608],[-122.293030,37.360765],[-122.292245,37.360922],[-122.291461,37.361392],[-122.290991,37.360608],[-122.291304,37.359824],[-122.291147,37.359510],[-122.290206,37.359040],[-122.289736,37.358256],[-122.288638,37.358569],[-122.288011,37.358256],[-122.287697,37.358412],[-122.287697,37.359040],[-122.287540,37.359197],[-122.286599,37.359667],[-122.286285,37.359667],[-122.285972,37.359353],[-122.286129,37.358412],[-122.286129,37.358256],[-122.285031,37.357942],[-122.284560,37.357785],[-122.283462,37.358726],[-122.282835,37.358726],[-122.282521,37.359040],[-122.280953,37.357785],[-122.279541,37.357628],[-122.279228,37.357628],[-122.278600,37.358256],[-122.277502,37.358569],[-122.277032,37.358099],[-122.276718,37.358099],[-122.276561,37.357942],[-122.276718,37.357158],[-122.276248,37.357001],[-122.272954,37.357001],[-122.272954,37.356844],[-122.273581,37.356217],[-122.274209,37.355746],[-122.275777,37.353707],[-122.275934,37.353080],[-122.275934,37.351825],[-122.276404,37.350884],[-122.276248,37.350100],[-122.275777,37.349629],[-122.275777,37.348688],[-122.274209,37.345708],[-122.274052,37.343669],[-122.272170,37.340846],[-122.270758,37.339435],[-122.270445,37.338964],[-122.270445,37.338337],[-122.269817,37.337553],[-122.268719,37.337553],[-122.267935,37.337866],[-122.267465,37.338651],[-122.266994,37.339121],[-122.263857,37.341003],[-122.259623,37.340689],[-122.258525,37.340846],[-122.256956,37.341787],[-122.256172,37.341944],[-122.255231,37.341787],[-122.253819,37.342101],[-122.253035,37.342101],[-122.252565,37.341944],[-122.248957,37.341474],[-122.243468,37.340062],[-122.240645,37.340219],[-122.239861,37.339905],[-122.238606,37.338964],[-122.237351,37.338651],[-122.235626,37.338807],[-122.234058,37.338494],[-122.232803,37.337396],[-122.232175,37.336141],[-122.231862,37.335200],[-122.231548,37.334886],[-122.230137,37.335043],[-122.228725,37.334886],[-122.225902,37.335514],[-122.225745,37.335357],[-122.230293,37.334573],[-122.229666,37.332691],[-122.227470,37.329240],[-122.227470,37.330652],[-122.219628,37.330652],[-122.219001,37.330495],[-122.218687,37.330652],[-122.211316,37.331122],[-122.210688,37.330495],[-122.209590,37.328770],[-122.206454,37.326260],[-122.205042,37.324849],[-122.200807,37.322966],[-122.197043,37.320300],[-122.192495,37.318732],[-122.193122,37.318261],[-122.192652,37.317948],[-122.190142,37.317791],[-122.187633,37.315909],[-122.186535,37.315595],[-122.186064,37.314340],[-122.186378,37.313713],[-122.185908,37.312929],[-122.185751,37.312144],[-122.185594,37.311674],[-122.184496,37.310576],[-122.183241,37.309792],[-122.182300,37.309478],[-122.181202,37.309792],[-122.179634,37.311360],[-122.179007,37.311831],[-122.177595,37.312458],[-122.175870,37.312772],[-122.174301,37.312772],[-122.170851,37.311988],[-122.170537,37.311674],[-122.170537,37.311203],[-122.168812,37.309949],[-122.168812,37.309008],[-122.168655,37.308537],[-122.168185,37.307753],[-122.167557,37.307126],[-122.166616,37.305557],[-122.166146,37.305400],[-122.164734,37.305557],[-122.163950,37.304773],[-122.162225,37.304459],[-122.162068,37.304302],[-122.162538,37.303361],[-122.162852,37.302420],[-122.163636,37.301479],[-122.163636,37.301322],[-122.162695,37.300852],[-122.162695,37.300695],[-122.163323,37.300068],[-122.164107,37.298813],[-122.165205,37.298029],[-122.165205,37.297715],[-122.165205,37.296460],[-122.165361,37.296147],[-122.166773,37.295206],[-122.163166,37.293951],[-122.163323,37.294422],[-122.161127,37.293010],[-122.160186,37.293324],[-122.160813,37.293480],[-122.159715,37.293637],[-122.158774,37.293167],[-122.153598,37.289873],[-122.152814,37.288775],[-122.152501,37.288148],[-122.152344,37.286109],[-122.152501,37.282031],[-122.152657,37.244076],[-122.152187,37.239841],[-122.151403,37.229960],[-122.151716,37.227764],[-122.152971,37.222432],[-122.152814,37.215374],[-122.173517,37.215217],[-122.175399,37.215217],[-122.216335,37.215217],[-122.217903,37.215217],[-122.218844,37.215217],[-122.220256,37.215060],[-122.223236,37.215217],[-122.224177,37.215060],[-122.225902,37.215374],[-122.234685,37.215060],[-122.242527,37.215060]]]}}
,{"id":94085,"type":"Feature","properties":{"name":"Sunnyvale"},"geometry":{"type":"Polygon","coordinates":[[[-122.047731,37.386330],[-122.047261,37.386644],[-122.047417,37.387898],[-122.047261,37.388212],[-122.047261,37.390565],[-122.046633,37.390565],[-122.045692,37.392604],[-122.045065,37.394329],[-122.045535,37.394486],[-122.046633,37.393702],[-122.045692,37.392604],[-122.047574,37.391506],[-122.047731,37.391506],[-122.048358,37.391192],[-122.050084,37.392917],[-122.046790,37.394956],[-122.046476,37.394956],[-122.045849,37.395270],[-122.044437,37.399661],[-122.046163,37.399975],[-122.045692,37.401073],[-122.046947,37.401387],[-122.046476,37.402955],[-122.037380,37.400916],[-122.008678,37.394643],[-122.002561,37.393074],[-121.995817,37.391035],[-121.987034,37.388526],[-121.987034,37.377704],[-121.995817,37.377704],[-121.995974,37.377704],[-121.995974,37.377547],[-122.001306,37.377547],[-122.003502,37.377233],[-122.004286,37.376920],[-122.004443,37.376763],[-122.006012,37.376449],[-122.007737,37.376606],[-122.012913,37.378174],[-122.012756,37.378331],[-122.013069,37.378488],[-122.013069,37.378174],[-122.016049,37.379115],[-122.016206,37.378959],[-122.016363,37.378959],[-122.019186,37.379586],[-122.018872,37.380527],[-122.020284,37.381468],[-122.021852,37.382095],[-122.043653,37.386801],[-122.045222,37.386801],[-122.046633,37.386487],[-122.046790,37.386644],[-122.047731,37.386330]]]}}
,{"id":94043,"type":"Feature","properties":{"name":"Mountain View"},"geometry":{"type":"Polygon","coordinates":[[[-122.059965,37.445616],[-122.059965,37.443577],[-122.059651,37.434009],[-122.059808,37.426795],[-122.057298,37.426481],[-122.056828,37.426952],[-122.055103,37.427579],[-122.055103,37.427893],[-122.055416,37.428677],[-122.055259,37.428991],[-122.052593,37.429775],[-122.051966,37.429775],[-122.051652,37.429304],[-122.049770,37.426167],[-122.049143,37.426167],[-122.043496,37.427265],[-122.041144,37.426952],[-122.034713,37.426481],[-122.036752,37.421462],[-122.037066,37.418796],[-122.037066,37.405935],[-122.037380,37.400916],[-122.046476,37.402955],[-122.046947,37.401387],[-122.045692,37.401073],[-122.046163,37.399975],[-122.044437,37.399661],[-122.045849,37.395270],[-122.046476,37.394956],[-122.046790,37.394956],[-122.050084,37.392917],[-122.048358,37.391192],[-122.047731,37.391506],[-122.047574,37.391506],[-122.045692,37.392604],[-122.046633,37.393702],[-122.045535,37.394486],[-122.045065,37.394329],[-122.045692,37.392604],[-122.046633,37.390565],[-122.047261,37.390565],[-122.047261,37.388212],[-122.047417,37.387898],[-122.047261,37.386644],[-122.047731,37.386330],[-122.049613,37.385859],[-122.051182,37.385859],[-122.052123,37.386173],[-122.052280,37.386016],[-122.057455,37.387742],[-122.057769,37.387585],[-122.062788,37.389153],[-122.062945,37.389153],[-122.067964,37.391035],[-122.068591,37.391192],[-122.068591,37.391506],[-122.082079,37.396838],[-122.091333,37.400602],[-122.103566,37.405465],[-122.105919,37.406562],[-122.108272,37.408131],[-122.107487,37.409072],[-122.106546,37.411268],[-122.105919,37.410954],[-122.105448,37.410483],[-122.105762,37.410954],[-122.103253,37.413150],[-122.101214,37.412052],[-122.101998,37.415502],[-122.101214,37.418012],[-122.100586,37.418169],[-122.100586,37.419266],[-122.100900,37.419423],[-122.100430,37.420521],[-122.100273,37.421776],[-122.097293,37.421619],[-122.097293,37.423972],[-122.096979,37.424129],[-122.101527,37.428206],[-122.100586,37.430088],[-122.100116,37.433382],[-122.099645,37.433539],[-122.099959,37.434166],[-122.099959,37.434637],[-122.099802,37.434951],[-122.099488,37.434951],[-122.099332,37.435264],[-122.099488,37.436048],[-122.099332,37.436205],[-122.098391,37.435578],[-122.097763,37.435421],[-122.096509,37.434951],[-122.095411,37.434951],[-122.095411,37.434794],[-122.095411,37.434480],[-122.096038,37.433696],[-122.096038,37.433225],[-122.094156,37.433382],[-122.093685,37.432912],[-122.093372,37.432127],[-122.086628,37.431814],[-122.086628,37.432912],[-122.086157,37.433539],[-122.085843,37.434323],[-122.085216,37.434951],[-122.088666,37.435892],[-122.091646,37.435735],[-122.093372,37.436205],[-122.097606,37.435892],[-122.092901,37.438558],[-122.092744,37.438872],[-122.091490,37.439342],[-122.091019,37.439342],[-122.090078,37.440440],[-122.090078,37.440910],[-122.088666,37.443106],[-122.088666,37.444361],[-122.088510,37.444675],[-122.088039,37.446557],[-122.087569,37.447341],[-122.088353,37.447655],[-122.088510,37.447968],[-122.086157,37.450321],[-122.085059,37.450478],[-122.084745,37.450948],[-122.084432,37.450635],[-122.084275,37.450948],[-122.084118,37.450948],[-122.083961,37.451105],[-122.083648,37.451105],[-122.083491,37.450791],[-122.083177,37.451105],[-122.082863,37.451105],[-122.083020,37.451419],[-122.083020,37.452046],[-122.082863,37.452046],[-122.080197,37.451889],[-122.080197,37.451576],[-122.079727,37.450791],[-122.079413,37.450635],[-122.079256,37.450007],[-122.078942,37.450007],[-122.078472,37.449223],[-122.078315,37.448439],[-122.078001,37.448282],[-122.077531,37.448282],[-122.077217,37.450007],[-122.076590,37.449850],[-122.076276,37.450007],[-122.075962,37.450007],[-122.075962,37.450164],[-122.075492,37.449694],[-122.075178,37.449850],[-122.074865,37.449850],[-122.073610,37.448752],[-122.073610,37.449066],[-122.073139,37.449066],[-122.072826,37.449537],[-122.072041,37.449694],[-122.072041,37.450007],[-122.071728,37.449850],[-122.071414,37.450478],[-122.070473,37.450321],[-122.070002,37.450321],[-122.069846,37.450478],[-122.069532,37.450635],[-122.069218,37.450478],[-122.069061,37.450635],[-122.068748,37.450635],[-122.068434,37.450791],[-122.067964,37.450321],[-122.067336,37.450478],[-122.067023,37.450164],[-122.067023,37.449850],[-122.066395,37.449380],[-122.066395,37.449066],[-122.065768,37.449066],[-122.064984,37.448125],[-122.064670,37.447655],[-122.064827,37.447498],[-122.064670,37.446714],[-122.064356,37.446243],[-122.064513,37.446086],[-122.064356,37.445929],[-122.064199,37.445773],[-122.064199,37.445616],[-122.062945,37.445773],[-122.062160,37.445459],[-122.059965,37.445616]]]}}
,{"id":95326,"type":"Feature","properties":{"name":"Hughson"},"geometry":{"type":"Polygon","coordinates":[[[-120.856214,37.551169],[-120.893856,37.551169],[-120.893856,37.553836],[-120.901385,37.553836],[-120.901385,37.551326],[-120.901855,37.551326],[-120.901855,37.565599],[-120.901698,37.580185],[-120.901855,37.594771],[-120.902796,37.609357],[-120.926793,37.609357],[-120.927106,37.611553],[-120.927106,37.616729],[-120.931341,37.618297],[-120.938242,37.615788],[-120.938399,37.616258],[-120.938242,37.616101],[-120.931341,37.618454],[-120.926793,37.616729],[-120.918323,37.617199],[-120.915500,37.620963],[-120.908285,37.621434],[-120.907658,37.623786],[-120.903894,37.625041],[-120.902326,37.625668],[-120.897464,37.626766],[-120.894640,37.623316],[-120.888680,37.624727],[-120.886485,37.630060],[-120.883505,37.628335],[-120.878799,37.629119],[-120.876761,37.632726],[-120.875506,37.632726],[-120.872840,37.630687],[-120.869703,37.631315],[-120.867978,37.634922],[-120.865311,37.634765],[-120.862018,37.620806],[-120.859508,37.618768],[-120.855901,37.621277],[-120.849313,37.620806],[-120.844295,37.624257],[-120.841158,37.625982],[-120.833473,37.623159],[-120.801634,37.618768],[-120.800536,37.618611],[-120.787048,37.622845],[-120.782656,37.625041],[-120.782970,37.610298],[-120.768227,37.609671],[-120.769952,37.606063],[-120.767286,37.594771],[-120.769482,37.591477],[-120.773873,37.591320],[-120.782970,37.587556],[-120.782970,37.594771],[-120.819827,37.594614],[-120.819671,37.579087],[-120.815122,37.579087],[-120.814965,37.565599],[-120.828767,37.565599],[-120.828767,37.557443],[-120.822180,37.551169],[-120.828767,37.551169],[-120.828767,37.543798],[-120.835512,37.543798],[-120.847118,37.543955],[-120.847118,37.551169],[-120.856214,37.551169]]]}}
,{"id":95354,"type":"Feature","properties":{"name":"Modesto"},"geometry":{"type":"Polygon","coordinates":[[[-120.993764,37.655782],[-120.993764,37.657350],[-120.993450,37.657350],[-120.993450,37.657821],[-120.989215,37.657664],[-120.989215,37.657193],[-120.986706,37.657193],[-120.986706,37.656096],[-120.987019,37.655782],[-120.986235,37.655311],[-120.986078,37.654527],[-120.984667,37.654527],[-120.984667,37.652645],[-120.986706,37.652802],[-120.986706,37.650763],[-120.986078,37.650763],[-120.986078,37.649665],[-120.986235,37.649665],[-120.986235,37.647626],[-120.985451,37.647626],[-120.985451,37.646842],[-120.987804,37.645901],[-120.987804,37.645430],[-120.984667,37.645430],[-120.984667,37.643548],[-120.984196,37.643548],[-120.983098,37.646528],[-120.978236,37.647469],[-120.974629,37.648410],[-120.970394,37.649195],[-120.968355,37.648567],[-120.964748,37.649351],[-120.961611,37.651233],[-120.960357,37.652175],[-120.957377,37.652488],[-120.955494,37.653116],[-120.953769,37.652175],[-120.952358,37.651077],[-120.947809,37.649979],[-120.946084,37.651233],[-120.942947,37.652175],[-120.939026,37.654213],[-120.941379,37.651077],[-120.939183,37.651077],[-120.939026,37.649038],[-120.930086,37.649038],[-120.930086,37.647940],[-120.930557,37.647940],[-120.930557,37.645587],[-120.930086,37.645587],[-120.930086,37.642764],[-120.930400,37.642764],[-120.930400,37.640098],[-120.929929,37.640098],[-120.929616,37.625198],[-120.929302,37.624257],[-120.931027,37.623786],[-120.944359,37.623630],[-120.940751,37.621591],[-120.939497,37.620650],[-120.938869,37.619238],[-120.938713,37.616729],[-120.939810,37.618297],[-120.942163,37.619081],[-120.944359,37.619865],[-120.947182,37.619552],[-120.951730,37.623159],[-120.954867,37.623786],[-120.960670,37.624257],[-120.963964,37.622532],[-120.966160,37.622218],[-120.968512,37.622061],[-120.971179,37.622375],[-120.972276,37.622689],[-120.978707,37.626139],[-120.981373,37.627864],[-120.986706,37.629589],[-120.988117,37.629589],[-120.989215,37.631158],[-120.988117,37.631158],[-120.987804,37.631472],[-120.991097,37.634138],[-120.992509,37.634452],[-120.993764,37.634452],[-120.995489,37.633197],[-120.994234,37.631785],[-120.993293,37.631315],[-120.993450,37.631158],[-120.991097,37.631158],[-120.990313,37.629433],[-120.992509,37.628962],[-120.994234,37.628805],[-120.996743,37.626453],[-120.997057,37.627394],[-120.996743,37.627394],[-120.997214,37.629746],[-120.997685,37.631001],[-120.997998,37.631001],[-120.998626,37.631785],[-120.999410,37.632726],[-121.002390,37.635236],[-121.002076,37.635393],[-121.005683,37.638373],[-121.005840,37.638216],[-121.006938,37.639157],[-121.006781,37.639314],[-121.009291,37.641353],[-121.011800,37.642921],[-121.011330,37.644960],[-121.011957,37.644960],[-121.011957,37.645901],[-121.010232,37.645901],[-121.009918,37.646058],[-121.009761,37.645901],[-121.008820,37.645901],[-121.008036,37.646842],[-121.008036,37.645901],[-121.002703,37.645901],[-121.002860,37.649351],[-121.005213,37.649351],[-121.002860,37.651547],[-121.002860,37.652959],[-121.003017,37.652959],[-121.003017,37.655625],[-120.997841,37.655625],[-120.993764,37.655782]],[[-120.993764,37.655782],[-120.993764,37.654527],[-120.991097,37.654527],[-120.991097,37.655782],[-120.993764,37.655782]]]}}
,{"id":94605,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.165832,37.753650],[-122.170851,37.760394],[-122.172733,37.762120],[-122.173517,37.761649],[-122.174615,37.762904],[-122.174458,37.763061],[-122.174615,37.763374],[-122.175556,37.762747],[-122.174301,37.761022],[-122.176340,37.760081],[-122.177595,37.761335],[-122.177909,37.761179],[-122.180261,37.763374],[-122.180575,37.763845],[-122.180889,37.763531],[-122.182614,37.765256],[-122.182300,37.765570],[-122.182771,37.766041],[-122.182928,37.765884],[-122.183241,37.766197],[-122.185908,37.764472],[-122.185594,37.764315],[-122.185751,37.764159],[-122.187319,37.765727],[-122.189358,37.764472],[-122.189829,37.764002],[-122.189044,37.764786],[-122.189672,37.765256],[-122.190456,37.764629],[-122.191711,37.765727],[-122.190926,37.766197],[-122.192181,37.767452],[-122.192652,37.767139],[-122.194377,37.768707],[-122.193436,37.769491],[-122.195161,37.770746],[-122.195788,37.770275],[-122.197357,37.771687],[-122.194534,37.773569],[-122.193436,37.774353],[-122.192181,37.775294],[-122.192809,37.775922],[-122.192181,37.776706],[-122.191240,37.775922],[-122.188260,37.777804],[-122.187946,37.777804],[-122.187162,37.776863],[-122.185908,37.775765],[-122.185123,37.775608],[-122.184496,37.776235],[-122.183555,37.776706],[-122.182614,37.777490],[-122.181673,37.778117],[-122.180575,37.779529],[-122.179791,37.779843],[-122.178222,37.779999],[-122.174615,37.780313],[-122.174772,37.780784],[-122.175242,37.780940],[-122.175713,37.781568],[-122.177595,37.782823],[-122.178379,37.783764],[-122.177124,37.783293],[-122.173674,37.781097],[-122.173517,37.781568],[-122.175713,37.782979],[-122.174772,37.783920],[-122.176340,37.784077],[-122.176497,37.784548],[-122.176497,37.785018],[-122.175556,37.785646],[-122.175556,37.786273],[-122.174929,37.786116],[-122.171949,37.786273],[-122.165518,37.780940],[-122.158304,37.781725],[-122.157990,37.782038],[-122.159872,37.783764],[-122.158617,37.782666],[-122.156735,37.784705],[-122.153912,37.783920],[-122.153128,37.783450],[-122.153285,37.784548],[-122.152971,37.785018],[-122.152344,37.785332],[-122.152344,37.784548],[-122.152187,37.784391],[-122.150932,37.784391],[-122.148736,37.783450],[-122.147325,37.784077],[-122.146384,37.785018],[-122.146384,37.785489],[-122.146697,37.785803],[-122.146541,37.786116],[-122.146227,37.785959],[-122.145600,37.785332],[-122.145129,37.785018],[-122.144502,37.785018],[-122.142933,37.785332],[-122.142463,37.785175],[-122.142149,37.784705],[-122.141992,37.782195],[-122.141522,37.781097],[-122.134621,37.777019],[-122.134307,37.777176],[-122.132739,37.775608],[-122.130386,37.772157],[-122.126151,37.767609],[-122.122387,37.760551],[-122.118623,37.754591],[-122.116114,37.749886],[-122.115957,37.748475],[-122.113134,37.749886],[-122.112820,37.748945],[-122.111722,37.747533],[-122.111722,37.747063],[-122.112193,37.745965],[-122.112506,37.743769],[-122.113134,37.742985],[-122.113918,37.741260],[-122.114545,37.740789],[-122.114702,37.740319],[-122.115486,37.739221],[-122.115329,37.736712],[-122.115643,37.735927],[-122.116427,37.734359],[-122.117996,37.732634],[-122.119878,37.731693],[-122.122387,37.729811],[-122.124112,37.729026],[-122.127406,37.729654],[-122.130543,37.730124],[-122.131327,37.730752],[-122.131798,37.731379],[-122.131484,37.731536],[-122.130857,37.732006],[-122.130229,37.732790],[-122.130386,37.732790],[-122.130386,37.733575],[-122.130700,37.733732],[-122.131170,37.733575],[-122.134150,37.734202],[-122.134934,37.734045],[-122.136660,37.731693],[-122.137444,37.731536],[-122.138385,37.730908],[-122.138542,37.731379],[-122.138228,37.731693],[-122.138699,37.732477],[-122.138855,37.733261],[-122.139169,37.733888],[-122.139326,37.734673],[-122.140267,37.734516],[-122.140581,37.735927],[-122.141051,37.736712],[-122.141679,37.737496],[-122.142306,37.737809],[-122.145913,37.741887],[-122.146541,37.742515],[-122.147482,37.741260],[-122.148736,37.740789],[-122.150618,37.741730],[-122.151716,37.741417],[-122.152187,37.742671],[-122.153755,37.744240],[-122.155167,37.745181],[-122.154853,37.744554],[-122.155951,37.744240],[-122.157833,37.746749],[-122.157049,37.747063],[-122.157990,37.748631],[-122.158931,37.748161],[-122.159715,37.749416],[-122.158774,37.749886],[-122.159872,37.751611],[-122.160813,37.751298],[-122.161284,37.751925],[-122.160186,37.752396],[-122.161440,37.755689],[-122.164264,37.754278],[-122.164891,37.755062],[-122.166146,37.754434],[-122.165675,37.753650],[-122.165832,37.753650]]]}}
,{"id":94502,"type":"Feature","properties":{"name":"Alameda"},"geometry":{"type":"Polygon","coordinates":[[[-122.236253,37.748475],[-122.225902,37.749729],[-122.226529,37.747847],[-122.227000,37.745651],[-122.225118,37.745181],[-122.225588,37.732006],[-122.225745,37.731536],[-122.226686,37.730438],[-122.226372,37.726517],[-122.228098,37.726831],[-122.236096,37.718675],[-122.236881,37.718989],[-122.247860,37.726987],[-122.248801,37.727772],[-122.256486,37.721184],[-122.264485,37.732947],[-122.269190,37.737966],[-122.259466,37.752552],[-122.257113,37.756160],[-122.255858,37.755689],[-122.252722,37.754591],[-122.250683,37.753650],[-122.253349,37.749102],[-122.236253,37.748475]]]}}
,{"id":94709,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.266367,37.874261],[-122.270915,37.873633],[-122.270915,37.873163],[-122.271229,37.873163],[-122.272013,37.873006],[-122.272013,37.873476],[-122.273268,37.873320],[-122.274209,37.881318],[-122.275307,37.881318],[-122.275463,37.883044],[-122.274366,37.883200],[-122.274366,37.883514],[-122.274993,37.883514],[-122.275150,37.884612],[-122.275620,37.884612],[-122.275620,37.884769],[-122.274993,37.885396],[-122.274522,37.884926],[-122.272954,37.885710],[-122.272327,37.885239],[-122.266210,37.886024],[-122.264328,37.886337],[-122.264328,37.884612],[-122.264485,37.884455],[-122.265269,37.884455],[-122.264798,37.880848],[-122.266053,37.880534],[-122.265896,37.880220],[-122.265269,37.880220],[-122.265269,37.880377],[-122.264798,37.880534],[-122.264485,37.878966],[-122.257584,37.879750],[-122.258211,37.880534],[-122.257740,37.880377],[-122.257113,37.880534],[-122.256643,37.879907],[-122.255545,37.880220],[-122.255074,37.878338],[-122.255388,37.878338],[-122.254760,37.875672],[-122.255702,37.875672],[-122.266367,37.874261]]]}}
,{"id":94536,"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.969468,37.559952],[-121.968997,37.560109],[-121.968370,37.559482],[-121.969625,37.558698],[-121.970095,37.559482],[-121.969468,37.559952]]],[[[-122.025303,37.578460],[-122.023891,37.577048],[-122.021225,37.575636],[-122.018245,37.574382],[-122.015422,37.577989],[-122.013383,37.580969],[-122.010560,37.581439],[-122.009933,37.580812],[-122.009462,37.580185],[-122.008051,37.579714],[-122.006639,37.582224],[-122.005855,37.586458],[-122.001306,37.589595],[-121.992994,37.596026],[-121.988759,37.599006],[-121.988445,37.599947],[-121.981701,37.604652],[-121.967586,37.596653],[-121.957548,37.590223],[-121.956921,37.591634],[-121.954725,37.593987],[-121.953000,37.595712],[-121.952215,37.596967],[-121.951588,37.597594],[-121.950333,37.598065],[-121.948608,37.598221],[-121.947510,37.598065],[-121.946099,37.597437],[-121.944060,37.597594],[-121.942962,37.597751],[-121.940295,37.598849],[-121.939668,37.598849],[-121.938413,37.598221],[-121.937943,37.597751],[-121.938100,37.595085],[-121.937472,37.592575],[-121.936531,37.591320],[-121.935904,37.591007],[-121.934806,37.591007],[-121.932767,37.591791],[-121.930415,37.585831],[-121.929160,37.585831],[-121.929944,37.584733],[-121.926964,37.581910],[-121.928532,37.580655],[-121.927591,37.579557],[-121.929787,37.578773],[-121.929944,37.577675],[-121.931199,37.576107],[-121.932297,37.576421],[-121.933238,37.576107],[-121.932297,37.574852],[-121.932767,37.574068],[-121.932140,37.573284],[-121.931826,37.572813],[-121.931826,37.572656],[-121.932140,37.572343],[-121.932297,37.572029],[-121.932924,37.571402],[-121.933865,37.570931],[-121.934179,37.570617],[-121.934963,37.570461],[-121.935747,37.569990],[-121.936845,37.569990],[-121.937472,37.570461],[-121.938413,37.570461],[-121.939511,37.570617],[-121.940766,37.570304],[-121.942805,37.570617],[-121.944373,37.570461],[-121.945471,37.569990],[-121.947981,37.569833],[-121.949549,37.570461],[-121.950176,37.570461],[-121.946255,37.569049],[-121.945314,37.568422],[-121.945001,37.567794],[-121.944687,37.567010],[-121.945001,37.565755],[-121.945942,37.565285],[-121.947196,37.565442],[-121.947510,37.567010],[-121.948294,37.567324],[-121.949235,37.568265],[-121.950490,37.568265],[-121.950961,37.569520],[-121.951902,37.569676],[-121.954254,37.569049],[-121.956607,37.567638],[-121.958332,37.566226],[-121.959116,37.567167],[-121.962253,37.564971],[-121.961155,37.564187],[-121.960057,37.562619],[-121.959273,37.561207],[-121.958803,37.559482],[-121.961939,37.557443],[-121.962724,37.557757],[-121.964292,37.558070],[-121.963665,37.558698],[-121.962880,37.558227],[-121.962253,37.558070],[-121.962096,37.558384],[-121.961312,37.558384],[-121.960998,37.558541],[-121.960528,37.559639],[-121.960528,37.560893],[-121.960842,37.561364],[-121.961469,37.561991],[-121.962253,37.561991],[-121.963665,37.560893],[-121.964606,37.560266],[-121.964919,37.559952],[-121.964919,37.559325],[-121.965390,37.558854],[-121.967899,37.561207],[-121.972918,37.558070],[-121.975898,37.554149],[-121.978251,37.555404],[-121.978408,37.555404],[-121.979192,37.555561],[-121.981544,37.556816],[-121.978721,37.560266],[-121.978408,37.560893],[-121.978408,37.561521],[-121.978721,37.562775],[-121.978878,37.562775],[-121.979192,37.564030],[-121.979662,37.564187],[-121.980447,37.564187],[-121.980133,37.562305],[-121.980290,37.561521],[-121.979662,37.561050],[-121.978565,37.560893],[-121.978878,37.560423],[-121.980290,37.558698],[-121.982486,37.559796],[-121.983897,37.558070],[-121.984368,37.557757],[-121.983897,37.557286],[-121.982172,37.556345],[-121.989230,37.547562],[-121.989543,37.547719],[-121.989700,37.547405],[-121.990641,37.546150],[-121.991269,37.545523],[-121.991425,37.545209],[-121.993151,37.543170],[-121.993464,37.542857],[-121.993621,37.542386],[-121.996601,37.538936],[-121.997072,37.538622],[-121.998483,37.539563],[-121.998797,37.539249],[-121.999738,37.538779],[-122.000679,37.537995],[-122.000836,37.537681],[-121.998483,37.536426],[-122.001463,37.532819],[-122.001777,37.530937],[-122.002404,37.529839],[-122.013697,37.535956],[-122.016049,37.537681],[-122.017304,37.539093],[-122.028753,37.554149],[-122.038478,37.563403],[-122.036282,37.566226],[-122.036595,37.566226],[-122.025303,37.578460]]]]}}
,{"id":94538,"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"Polygon","coordinates":[[[-121.993308,37.499412],[-121.998013,37.503960],[-121.995346,37.511018],[-121.994719,37.513998],[-121.989700,37.520429],[-121.987818,37.522467],[-121.998640,37.527800],[-122.002404,37.529839],[-122.001777,37.530937],[-122.001463,37.532819],[-121.998483,37.536426],[-122.000836,37.537681],[-122.000679,37.537995],[-121.999738,37.538779],[-121.998797,37.539249],[-121.998483,37.539563],[-121.997072,37.538622],[-121.996601,37.538936],[-121.993621,37.542386],[-121.993464,37.542857],[-121.993151,37.543170],[-121.991425,37.545209],[-121.991269,37.545523],[-121.990641,37.546150],[-121.989700,37.547405],[-121.989543,37.547719],[-121.989230,37.547562],[-121.982172,37.556345],[-121.983897,37.557286],[-121.984368,37.557757],[-121.983897,37.558070],[-121.982486,37.559796],[-121.980290,37.558698],[-121.978878,37.560423],[-121.978565,37.560893],[-121.979662,37.561050],[-121.980290,37.561521],[-121.980133,37.562305],[-121.980447,37.564187],[-121.979662,37.564187],[-121.979192,37.564030],[-121.978878,37.562775],[-121.978721,37.562775],[-121.978408,37.561521],[-121.978408,37.560893],[-121.978721,37.560266],[-121.981544,37.556816],[-121.979192,37.555561],[-121.978408,37.555404],[-121.978251,37.555404],[-121.975898,37.554149],[-121.972918,37.558070],[-121.967899,37.561207],[-121.965390,37.558854],[-121.964919,37.559325],[-121.964919,37.559952],[-121.964606,37.560266],[-121.963665,37.560893],[-121.962253,37.561991],[-121.961469,37.561991],[-121.960842,37.561364],[-121.960528,37.560893],[-121.960528,37.559639],[-121.960998,37.558541],[-121.961312,37.558384],[-121.962096,37.558384],[-121.962253,37.558070],[-121.962880,37.558227],[-121.963665,37.558698],[-121.964292,37.558070],[-121.962724,37.557757],[-121.961939,37.557443],[-121.958803,37.559482],[-121.954254,37.530466],[-121.953784,37.529212],[-121.951745,37.525134],[-121.945314,37.512743],[-121.947040,37.512430],[-121.949549,37.512430],[-121.951117,37.512116],[-121.951117,37.511959],[-121.949392,37.512273],[-121.947040,37.512273],[-121.945314,37.512743],[-121.941080,37.504588],[-121.940766,37.504588],[-121.941080,37.504588],[-121.932140,37.487335],[-121.932453,37.487022],[-121.932297,37.487022],[-121.932140,37.487178],[-121.931356,37.485767],[-121.930885,37.485924],[-121.919122,37.462241],[-121.917240,37.462868],[-121.917240,37.462711],[-121.918965,37.462084],[-121.917083,37.458477],[-121.922572,37.455497],[-121.922886,37.455653],[-121.925552,37.454399],[-121.926337,37.454556],[-121.926807,37.455183],[-121.927435,37.455026],[-121.927905,37.455340],[-121.927435,37.456281],[-121.927435,37.456751],[-121.927748,37.457065],[-121.928376,37.457379],[-121.929160,37.456908],[-121.930571,37.456438],[-121.932140,37.455340],[-121.932610,37.455183],[-121.932924,37.455497],[-121.932767,37.456908],[-121.931199,37.457379],[-121.931512,37.458790],[-121.931199,37.460202],[-121.931199,37.460672],[-121.931512,37.460986],[-121.932140,37.460986],[-121.933394,37.460829],[-121.933081,37.460672],[-121.932297,37.460359],[-121.933551,37.460202],[-121.934806,37.460516],[-121.935120,37.460829],[-121.935277,37.461457],[-121.934963,37.462084],[-121.934963,37.462398],[-121.936061,37.462868],[-121.938884,37.462398],[-121.939198,37.462554],[-121.939982,37.463182],[-121.940452,37.464280],[-121.941080,37.464907],[-121.943119,37.465064],[-121.944216,37.465848],[-121.944373,37.467417],[-121.944216,37.467573],[-121.944060,37.468044],[-121.944216,37.468514],[-121.944844,37.469142],[-121.945471,37.469142],[-121.946412,37.468514],[-121.947040,37.467417],[-121.947040,37.466319],[-121.946099,37.464437],[-121.946099,37.463966],[-121.946412,37.463339],[-121.947040,37.462554],[-121.947824,37.461927],[-121.948922,37.461613],[-121.949549,37.461457],[-121.951902,37.461457],[-121.955823,37.462711],[-121.959273,37.463495],[-121.964135,37.463182],[-121.966017,37.462868],[-121.968527,37.461927],[-121.974643,37.460672],[-121.974643,37.461300],[-121.969311,37.462554],[-121.968527,37.462868],[-121.968213,37.463652],[-121.967899,37.464437],[-121.967429,37.466475],[-121.967429,37.467260],[-121.967743,37.467573],[-121.968056,37.467730],[-121.969625,37.467417],[-121.971036,37.467417],[-121.972761,37.467887],[-121.974016,37.468671],[-121.973389,37.478082],[-121.973702,37.479650],[-121.974330,37.481062],[-121.975898,37.482944],[-121.993308,37.499412]],[[-121.969468,37.559952],[-121.970095,37.559482],[-121.969625,37.558698],[-121.968370,37.559482],[-121.968997,37.560109],[-121.969468,37.559952]]]}}
,{"id":94541,"type":"Feature","properties":{"name":"Hayward"},"geometry":{"type":"Polygon","coordinates":[[[-122.126308,37.664251],[-122.128033,37.666604],[-122.128033,37.667859],[-122.123485,37.668172],[-122.123642,37.668643],[-122.120662,37.669584],[-122.121760,37.671466],[-122.121603,37.671466],[-122.123328,37.674289],[-122.115957,37.677112],[-122.115329,37.677112],[-122.114075,37.678053],[-122.114388,37.678367],[-122.114075,37.678681],[-122.119721,37.683699],[-122.119407,37.684013],[-122.116741,37.684327],[-122.116741,37.685111],[-122.116741,37.684797],[-122.119407,37.684797],[-122.119721,37.684484],[-122.121289,37.685738],[-122.119407,37.685738],[-122.117682,37.686052],[-122.116270,37.685425],[-122.113447,37.686366],[-122.111722,37.685582],[-122.110467,37.684484],[-122.108428,37.684484],[-122.114702,37.688718],[-122.114231,37.688561],[-122.114231,37.688875],[-122.111879,37.688718],[-122.108428,37.689032],[-122.107958,37.689973],[-122.107487,37.690444],[-122.108899,37.691385],[-122.108742,37.691385],[-122.107330,37.690444],[-122.104821,37.692326],[-122.104194,37.692483],[-122.103880,37.693110],[-122.103409,37.693110],[-122.103253,37.693267],[-122.102782,37.693267],[-122.104664,37.695462],[-122.104194,37.695462],[-122.101527,37.692483],[-122.099959,37.691071],[-122.098704,37.690444],[-122.097293,37.690130],[-122.095881,37.689973],[-122.093999,37.690130],[-122.096352,37.688091],[-122.096038,37.688091],[-122.090078,37.683699],[-122.089294,37.684327],[-122.089137,37.684013],[-122.088823,37.684327],[-122.088510,37.684013],[-122.087882,37.684484],[-122.085373,37.682758],[-122.082863,37.682915],[-122.082393,37.682445],[-122.082079,37.682758],[-122.080354,37.682131],[-122.080197,37.679935],[-122.079727,37.680092],[-122.079570,37.680563],[-122.078942,37.680563],[-122.078472,37.679778],[-122.078001,37.679622],[-122.077374,37.680092],[-122.077060,37.679778],[-122.076903,37.678994],[-122.076590,37.678994],[-122.076119,37.678994],[-122.075492,37.679308],[-122.075178,37.680092],[-122.074551,37.680563],[-122.074551,37.681661],[-122.074080,37.682131],[-122.073296,37.682131],[-122.072982,37.681033],[-122.072669,37.680719],[-122.071571,37.681190],[-122.071100,37.681190],[-122.070316,37.681347],[-122.070159,37.681661],[-122.070316,37.682131],[-122.071257,37.683229],[-122.070316,37.684170],[-122.070002,37.684170],[-122.068905,37.683699],[-122.068591,37.684797],[-122.068277,37.684954],[-122.067807,37.684640],[-122.067493,37.684013],[-122.067179,37.683856],[-122.066395,37.684327],[-122.064513,37.685895],[-122.063886,37.686052],[-122.062474,37.685738],[-122.062004,37.686052],[-122.060435,37.689346],[-122.058710,37.691855],[-122.059024,37.692326],[-122.060122,37.692639],[-122.060122,37.693110],[-122.059965,37.693580],[-122.056985,37.693894],[-122.056514,37.694521],[-122.054946,37.694678],[-122.054946,37.694208],[-122.054475,37.693737],[-122.052123,37.693580],[-122.050868,37.693580],[-122.047888,37.694208],[-122.046790,37.694678],[-122.045222,37.695619],[-122.044908,37.695462],[-122.043967,37.694521],[-122.044124,37.692953],[-122.044437,37.692483],[-122.046163,37.692012],[-122.047261,37.690914],[-122.047104,37.689659],[-122.046947,37.689032],[-122.046476,37.688561],[-122.045692,37.688405],[-122.044908,37.687777],[-122.044281,37.687307],[-122.043653,37.686523],[-122.042555,37.683386],[-122.042085,37.682131],[-122.041301,37.681033],[-122.044124,37.679308],[-122.045849,37.678681],[-122.046947,37.677583],[-122.048829,37.676798],[-122.048045,37.675857],[-122.045535,37.675387],[-122.043183,37.674446],[-122.042085,37.674446],[-122.040360,37.675230],[-122.040830,37.665349],[-122.047574,37.665663],[-122.049613,37.665192],[-122.052593,37.666447],[-122.053377,37.666604],[-122.054789,37.666133],[-122.055259,37.666133],[-122.056201,37.665663],[-122.057298,37.666133],[-122.059024,37.666290],[-122.060906,37.665663],[-122.061063,37.665820],[-122.061533,37.665506],[-122.062004,37.665506],[-122.062788,37.665192],[-122.063572,37.665820],[-122.064043,37.665663],[-122.066081,37.666604],[-122.068120,37.667074],[-122.069218,37.667231],[-122.070159,37.666918],[-122.070944,37.667388],[-122.072512,37.667388],[-122.073610,37.667074],[-122.074708,37.666604],[-122.075492,37.666447],[-122.076903,37.668172],[-122.079883,37.669897],[-122.080668,37.668800],[-122.080824,37.668800],[-122.081138,37.668956],[-122.082079,37.668329],[-122.081452,37.667702],[-122.084118,37.662840],[-122.084432,37.662997],[-122.085843,37.662369],[-122.086157,37.662840],[-122.086471,37.662683],[-122.086157,37.662212],[-122.086471,37.662212],[-122.087098,37.663153],[-122.087255,37.664251],[-122.087725,37.664251],[-122.087569,37.662526],[-122.088039,37.661742],[-122.087882,37.661742],[-122.089137,37.661271],[-122.089451,37.661742],[-122.090078,37.661742],[-122.093058,37.660801],[-122.094470,37.661899],[-122.093685,37.662212],[-122.094156,37.662997],[-122.095254,37.662526],[-122.095724,37.662997],[-122.094783,37.663310],[-122.094940,37.663624],[-122.094626,37.663781],[-122.095097,37.664408],[-122.096665,37.663781],[-122.098391,37.665349],[-122.098547,37.666447],[-122.099018,37.667074],[-122.100116,37.666447],[-122.101214,37.666290],[-122.100586,37.666133],[-122.098861,37.664722],[-122.098077,37.664251],[-122.098547,37.663938],[-122.098077,37.663624],[-122.098077,37.662369],[-122.097136,37.660958],[-122.097606,37.660330],[-122.098077,37.660173],[-122.096979,37.658291],[-122.101684,37.656409],[-122.110154,37.653116],[-122.120191,37.653272],[-122.120191,37.654684],[-122.122230,37.654684],[-122.122230,37.655468],[-122.123171,37.655468],[-122.123328,37.661271],[-122.119250,37.662526],[-122.119407,37.662683],[-122.120348,37.662526],[-122.120505,37.662997],[-122.120662,37.663938],[-122.120348,37.664565],[-122.120976,37.664879],[-122.121917,37.666447],[-122.126308,37.664251]]]}}
,{"id":94546,"type":"Feature","properties":{"name":"Castro Valley"},"geometry":{"type":"Polygon","coordinates":[[[-122.089294,37.684327],[-122.090078,37.683699],[-122.096038,37.688091],[-122.096352,37.688091],[-122.093999,37.690130],[-122.095881,37.689973],[-122.097293,37.690130],[-122.098704,37.690444],[-122.099959,37.691071],[-122.101527,37.692483],[-122.104194,37.695462],[-122.103566,37.695619],[-122.102155,37.693894],[-122.099018,37.695776],[-122.099332,37.695933],[-122.100116,37.695776],[-122.098547,37.696874],[-122.099018,37.697658],[-122.097136,37.698442],[-122.096979,37.698442],[-122.097763,37.698913],[-122.096979,37.699540],[-122.096195,37.699854],[-122.097136,37.700795],[-122.098077,37.702520],[-122.098391,37.702363],[-122.099645,37.702991],[-122.099802,37.703148],[-122.102155,37.702677],[-122.103096,37.702520],[-122.103566,37.702677],[-122.103566,37.703304],[-122.104821,37.704873],[-122.103723,37.705343],[-122.103723,37.705657],[-122.106076,37.707853],[-122.107174,37.707226],[-122.110781,37.710990],[-122.110938,37.711303],[-122.110467,37.711774],[-122.110781,37.712244],[-122.111408,37.712401],[-122.111722,37.712872],[-122.110154,37.712872],[-122.108585,37.713185],[-122.107174,37.713656],[-122.104664,37.714754],[-122.105919,37.715381],[-122.112349,37.720557],[-122.114859,37.723537],[-122.117525,37.725262],[-122.118623,37.728085],[-122.120191,37.728869],[-122.121446,37.727772],[-122.122230,37.727301],[-122.123171,37.726987],[-122.125524,37.727144],[-122.126622,37.727615],[-122.127406,37.729654],[-122.124112,37.729026],[-122.122387,37.729811],[-122.119878,37.731693],[-122.118152,37.727615],[-122.117211,37.726831],[-122.107330,37.721498],[-122.100900,37.727772],[-122.097763,37.726674],[-122.094626,37.728085],[-122.095881,37.727928],[-122.096352,37.728399],[-122.096038,37.728713],[-122.095567,37.728713],[-122.095724,37.728556],[-122.075492,37.737966],[-122.074551,37.738907],[-122.074237,37.740162],[-122.074237,37.741260],[-122.075492,37.744397],[-122.074708,37.745495],[-122.074551,37.746122],[-122.076590,37.747690],[-122.077688,37.748161],[-122.077374,37.748788],[-122.077531,37.749886],[-122.078942,37.749886],[-122.079570,37.749572],[-122.080197,37.750513],[-122.079883,37.751298],[-122.079883,37.751611],[-122.080981,37.753180],[-122.081609,37.754748],[-122.081766,37.755689],[-122.081766,37.756003],[-122.080511,37.757258],[-122.080354,37.757885],[-122.080981,37.758512],[-122.081452,37.758512],[-122.081609,37.759297],[-122.081295,37.759453],[-122.080981,37.759767],[-122.080824,37.759610],[-122.081138,37.759140],[-122.080981,37.758983],[-122.080824,37.758983],[-122.080040,37.759453],[-122.079256,37.759924],[-122.078472,37.761649],[-122.077217,37.761806],[-122.076119,37.762747],[-122.074551,37.762590],[-122.074080,37.762120],[-122.072512,37.762120],[-122.070787,37.761806],[-122.068434,37.762120],[-122.068434,37.761649],[-122.068748,37.760865],[-122.068591,37.760394],[-122.069061,37.760081],[-122.069218,37.759767],[-122.068905,37.759297],[-122.068591,37.759297],[-122.068277,37.758826],[-122.068434,37.758355],[-122.068748,37.758042],[-122.069061,37.756944],[-122.069689,37.756787],[-122.070473,37.757101],[-122.070787,37.757101],[-122.070787,37.756944],[-122.069532,37.756317],[-122.067807,37.756160],[-122.065925,37.754278],[-122.065925,37.753650],[-122.066081,37.753180],[-122.065925,37.753180],[-122.065611,37.753337],[-122.064984,37.753180],[-122.064827,37.752709],[-122.064199,37.752396],[-122.062945,37.750984],[-122.062788,37.750513],[-122.062631,37.749886],[-122.063415,37.749416],[-122.063572,37.749102],[-122.063258,37.748788],[-122.062160,37.748475],[-122.062160,37.746906],[-122.061533,37.743612],[-122.059965,37.738750],[-122.061690,37.729497],[-122.065611,37.720243],[-122.064199,37.718832],[-122.064827,37.717734],[-122.059651,37.717891],[-122.059651,37.718675],[-122.058710,37.718675],[-122.059494,37.713656],[-122.059180,37.713342],[-122.059337,37.713029],[-122.059337,37.713029],[-122.059337,37.712558],[-122.058867,37.711931],[-122.057612,37.711303],[-122.056828,37.711147],[-122.056044,37.711460],[-122.055730,37.711303],[-122.055730,37.711147],[-122.056201,37.710990],[-122.056201,37.710833],[-122.055573,37.709264],[-122.055730,37.707069],[-122.056201,37.705657],[-122.056514,37.705187],[-122.056514,37.704559],[-122.056514,37.704246],[-122.055416,37.703932],[-122.055416,37.703775],[-122.057769,37.703775],[-122.059024,37.703932],[-122.059024,37.703618],[-122.055573,37.703461],[-122.055887,37.703148],[-122.055730,37.702834],[-122.054475,37.702050],[-122.054475,37.701736],[-122.054789,37.701422],[-122.055573,37.700952],[-122.055259,37.699070],[-122.055573,37.698442],[-122.056514,37.698129],[-122.056985,37.697501],[-122.056985,37.696874],[-122.056357,37.696247],[-122.056514,37.695619],[-122.057142,37.694992],[-122.057455,37.694992],[-122.057926,37.695619],[-122.058239,37.695776],[-122.059965,37.693580],[-122.060122,37.693110],[-122.060122,37.692639],[-122.059024,37.692326],[-122.058710,37.691855],[-122.060435,37.689346],[-122.062004,37.686052],[-122.062474,37.685738],[-122.063886,37.686052],[-122.064513,37.685895],[-122.066395,37.684327],[-122.067179,37.683856],[-122.067493,37.684013],[-122.067807,37.684640],[-122.068277,37.684954],[-122.068591,37.684797],[-122.068905,37.683699],[-122.070002,37.684170],[-122.070316,37.684170],[-122.071257,37.683229],[-122.070316,37.682131],[-122.070159,37.681661],[-122.070316,37.681347],[-122.071100,37.681190],[-122.071571,37.681190],[-122.072669,37.680719],[-122.072982,37.681033],[-122.073296,37.682131],[-122.074080,37.682131],[-122.074551,37.681661],[-122.074551,37.680563],[-122.075178,37.680092],[-122.075492,37.679308],[-122.076119,37.678994],[-122.076590,37.678994],[-122.076903,37.678994],[-122.077060,37.679778],[-122.077374,37.680092],[-122.078001,37.679622],[-122.078472,37.679778],[-122.078942,37.680563],[-122.079570,37.680563],[-122.079727,37.680092],[-122.080197,37.679935],[-122.080354,37.682131],[-122.082079,37.682758],[-122.082393,37.682445],[-122.082863,37.682915],[-122.085373,37.682758],[-122.087882,37.684484],[-122.088510,37.684013],[-122.088823,37.684327],[-122.089137,37.684013],[-122.089294,37.684327]]]}}
,{"id":94505,"type":"Feature","properties":{"name":"Discovery Bay"},"geometry":{"type":"Polygon","coordinates":[[[-121.596658,37.823758],[-121.596815,37.823601],[-121.600109,37.825640],[-121.602304,37.827208],[-121.604500,37.829247],[-121.606225,37.830188],[-121.607010,37.831286],[-121.607323,37.833168],[-121.607794,37.834266],[-121.609990,37.835835],[-121.618773,37.845559],[-121.614224,37.845559],[-121.612813,37.845872],[-121.612499,37.846186],[-121.613597,37.847284],[-121.613754,37.878338],[-121.609362,37.878338],[-121.609362,37.885553],[-121.613911,37.885553],[-121.613911,37.889317],[-121.628810,37.889474],[-121.632261,37.889317],[-121.632261,37.896218],[-121.632104,37.896218],[-121.631947,37.893709],[-121.630692,37.893709],[-121.630692,37.892611],[-121.627399,37.892611],[-121.627399,37.894493],[-121.625203,37.894493],[-121.625203,37.895434],[-121.623007,37.895434],[-121.623007,37.896375],[-121.618145,37.896375],[-121.619243,37.897316],[-121.619557,37.897787],[-121.618616,37.903276],[-121.618459,37.903747],[-121.623007,37.903590],[-121.622850,37.918646],[-121.622066,37.918803],[-121.621753,37.918960],[-121.622850,37.918960],[-121.622694,37.932762],[-121.609990,37.932919],[-121.609833,37.931037],[-121.609205,37.929155],[-121.608735,37.926018],[-121.608421,37.926018],[-121.607480,37.919901],[-121.606225,37.918960],[-121.599324,37.919274],[-121.594933,37.919744],[-121.593051,37.921313],[-121.591639,37.921470],[-121.589757,37.921313],[-121.584895,37.919744],[-121.582072,37.919587],[-121.579719,37.920058],[-121.578151,37.920058],[-121.577210,37.919744],[-121.576426,37.918960],[-121.575014,37.917235],[-121.574387,37.917078],[-121.572505,37.916921],[-121.569995,37.917549],[-121.565604,37.918176],[-121.565917,37.916921],[-121.565917,37.916294],[-121.565761,37.915510],[-121.563251,37.912216],[-121.563094,37.911589],[-121.563251,37.910648],[-121.564819,37.909079],[-121.570936,37.905942],[-121.572191,37.905001],[-121.572818,37.904374],[-121.572818,37.903747],[-121.572505,37.903119],[-121.571720,37.902492],[-121.569054,37.901551],[-121.568113,37.901080],[-121.567015,37.899982],[-121.566231,37.898728],[-121.565917,37.897630],[-121.566388,37.895277],[-121.566858,37.894650],[-121.567643,37.892454],[-121.568427,37.891670],[-121.569838,37.890886],[-121.575014,37.889474],[-121.575485,37.889004],[-121.575798,37.888219],[-121.575955,37.887592],[-121.574857,37.885083],[-121.573916,37.883357],[-121.574073,37.882573],[-121.575014,37.880848],[-121.575798,37.879907],[-121.578151,37.875515],[-121.579406,37.872222],[-121.579406,37.870653],[-121.578778,37.870026],[-121.575171,37.867673],[-121.573759,37.866575],[-121.573446,37.865791],[-121.573446,37.864850],[-121.573759,37.864380],[-121.575485,37.863125],[-121.579092,37.861556],[-121.579562,37.861086],[-121.579406,37.860145],[-121.578935,37.858420],[-121.578621,37.858106],[-121.577994,37.857792],[-121.577053,37.858263],[-121.575641,37.859204],[-121.574230,37.859831],[-121.570623,37.860615],[-121.569054,37.860615],[-121.568270,37.859988],[-121.568740,37.859831],[-121.569368,37.858890],[-121.570623,37.857949],[-121.570466,37.857635],[-121.568740,37.857008],[-121.567956,37.857008],[-121.566702,37.857949],[-121.566388,37.858106],[-121.565917,37.857792],[-121.563408,37.854185],[-121.562624,37.853401],[-121.561996,37.853087],[-121.561526,37.853401],[-121.561212,37.853714],[-121.561212,37.854342],[-121.562310,37.855753],[-121.562310,37.856381],[-121.561840,37.857165],[-121.560428,37.858263],[-121.559487,37.858420],[-121.558546,37.857792],[-121.556821,37.857635],[-121.555252,37.857949],[-121.554311,37.858577],[-121.553684,37.859204],[-121.553370,37.859988],[-121.553056,37.860929],[-121.552900,37.861243],[-121.552586,37.861086],[-121.551645,37.860459],[-121.550861,37.858733],[-121.548979,37.856224],[-121.548038,37.855440],[-121.547567,37.855283],[-121.546155,37.855597],[-121.543803,37.856694],[-121.541607,37.857635],[-121.541137,37.857792],[-121.540666,37.857635],[-121.540352,37.857165],[-121.540352,37.856694],[-121.541450,37.855283],[-121.541607,37.854185],[-121.541293,37.853087],[-121.542078,37.851832],[-121.542078,37.851362],[-121.540666,37.849480],[-121.540352,37.849323],[-121.540039,37.848852],[-121.539098,37.848852],[-121.538000,37.849637],[-121.537686,37.850578],[-121.537216,37.850891],[-121.535804,37.850734],[-121.534706,37.850421],[-121.534236,37.849950],[-121.534079,37.849480],[-121.534549,37.848068],[-121.534863,37.847598],[-121.536275,37.846970],[-121.536745,37.846186],[-121.536588,37.844775],[-121.536745,37.844147],[-121.537529,37.843520],[-121.538784,37.842736],[-121.540196,37.841481],[-121.540196,37.840854],[-121.537843,37.838658],[-121.537686,37.837874],[-121.538000,37.837560],[-121.538941,37.836776],[-121.541137,37.835678],[-121.541450,37.835364],[-121.541921,37.834109],[-121.542391,37.833325],[-121.543960,37.832698],[-121.546155,37.832384],[-121.547724,37.833325],[-121.548979,37.833796],[-121.549449,37.833639],[-121.551018,37.831129],[-121.551959,37.830032],[-121.552115,37.828934],[-121.551802,37.827679],[-121.552272,37.827052],[-121.551959,37.826424],[-121.551331,37.825954],[-121.551174,37.825326],[-121.551331,37.824856],[-121.552115,37.824385],[-121.552429,37.824072],[-121.552586,37.823444],[-121.552115,37.822503],[-121.552272,37.822033],[-121.552429,37.822190],[-121.553213,37.819994],[-121.553370,37.818896],[-121.553527,37.818425],[-121.554311,37.817798],[-121.554782,37.817484],[-121.556977,37.817171],[-121.556977,37.816543],[-121.556821,37.816073],[-121.556977,37.815916],[-121.557134,37.815759],[-121.556977,37.799134],[-121.559016,37.800389],[-121.559173,37.800232],[-121.579406,37.812779],[-121.559173,37.818896],[-121.561683,37.818896],[-121.562310,37.818582],[-121.567486,37.816543],[-121.567486,37.816700],[-121.576426,37.816700],[-121.577367,37.816073],[-121.577680,37.824856],[-121.580660,37.822190],[-121.581445,37.821719],[-121.583954,37.820778],[-121.585836,37.820935],[-121.586934,37.821248],[-121.587561,37.821719],[-121.592737,37.825640],[-121.593051,37.826267],[-121.592894,37.827208],[-121.593364,37.827836],[-121.594149,37.825954],[-121.595090,37.824699],[-121.595403,37.824228],[-121.596031,37.824228],[-121.596658,37.823758]]]}}
,{"id":95640,"type":"Feature","properties":{"name":"Ione"},"geometry":{"type":"Polygon","coordinates":[[[-120.878956,38.407361],[-120.878172,38.407047],[-120.874722,38.407518],[-120.873624,38.407361],[-120.872683,38.406891],[-120.871899,38.406263],[-120.868605,38.404381],[-120.866095,38.405009],[-120.860763,38.405793],[-120.858097,38.405009],[-120.856528,38.405322],[-120.853705,38.405165],[-120.852764,38.405479],[-120.851196,38.406420],[-120.850725,38.406577],[-120.847745,38.406577],[-120.845236,38.406734],[-120.844138,38.405950],[-120.842883,38.406106],[-120.840060,38.405950],[-120.837080,38.406734],[-120.830179,38.406891],[-120.829238,38.406420],[-120.826258,38.405636],[-120.820769,38.403597],[-120.820455,38.402499],[-120.819514,38.400303],[-120.817632,38.399676],[-120.816848,38.395128],[-120.818416,38.394814],[-120.818102,38.395912],[-120.819827,38.397323],[-120.820612,38.397794],[-120.822494,38.397794],[-120.822964,38.397794],[-120.823592,38.397323],[-120.826572,38.396853],[-120.827983,38.396382],[-120.829865,38.394030],[-120.830179,38.393402],[-120.830649,38.392932],[-120.830963,38.391834],[-120.831277,38.391363],[-120.831747,38.391207],[-120.832375,38.391207],[-120.832845,38.391050],[-120.832845,38.390736],[-120.832532,38.389481],[-120.833002,38.388383],[-120.834727,38.387286],[-120.835668,38.386345],[-120.836453,38.385090],[-120.836923,38.384776],[-120.838805,38.384306],[-120.840060,38.383208],[-120.841315,38.382424],[-120.843667,38.381953],[-120.844922,38.381482],[-120.845706,38.381012],[-120.846490,38.379914],[-120.847275,38.379130],[-120.848686,38.376620],[-120.849627,38.375993],[-120.850568,38.374895],[-120.850725,38.374268],[-120.852137,38.372543],[-120.852607,38.372386],[-120.853078,38.372229],[-120.854176,38.372699],[-120.855901,38.372699],[-120.856371,38.373797],[-120.857626,38.374268],[-120.858253,38.374268],[-120.859822,38.373327],[-120.861233,38.373013],[-120.861547,38.371758],[-120.861390,38.370817],[-120.861233,38.370504],[-120.860292,38.369249],[-120.860292,38.368465],[-120.860449,38.367367],[-120.860292,38.365798],[-120.860606,38.365014],[-120.862802,38.364073],[-120.863900,38.363759],[-120.864527,38.366112],[-120.864998,38.366739],[-120.865311,38.366739],[-120.869546,38.363132],[-120.869075,38.362034],[-120.867978,38.361250],[-120.868762,38.360309],[-120.868919,38.359368],[-120.868291,38.356074],[-120.867664,38.354349],[-120.867978,38.352310],[-120.867821,38.351996],[-120.867036,38.351526],[-120.866252,38.351212],[-120.866252,38.349958],[-120.865782,38.349644],[-120.865782,38.349016],[-120.865311,38.348703],[-120.865625,38.348075],[-120.865311,38.347605],[-120.865311,38.347448],[-120.866095,38.346978],[-120.865939,38.346664],[-120.865311,38.346350],[-120.865154,38.346193],[-120.866252,38.345880],[-120.866566,38.345252],[-120.866409,38.344625],[-120.864841,38.344311],[-120.864841,38.343998],[-120.863743,38.344154],[-120.861547,38.344311],[-120.857626,38.345095],[-120.857783,38.344625],[-120.858253,38.344468],[-120.858097,38.344154],[-120.858253,38.343841],[-120.860449,38.343057],[-120.861233,38.342272],[-120.861547,38.341488],[-120.862174,38.340704],[-120.862331,38.338508],[-120.862174,38.337097],[-120.862174,38.335215],[-120.862018,38.334587],[-120.860449,38.331921],[-120.860292,38.330823],[-120.859508,38.329882],[-120.858410,38.328784],[-120.857469,38.327843],[-120.854803,38.327059],[-120.852921,38.325961],[-120.851196,38.325961],[-120.849313,38.325334],[-120.847745,38.325177],[-120.845549,38.325177],[-120.844608,38.324706],[-120.843824,38.324393],[-120.841942,38.323138],[-120.841471,38.322981],[-120.840060,38.322981],[-120.839276,38.322354],[-120.838021,38.321726],[-120.837080,38.321883],[-120.836139,38.322510],[-120.833786,38.322981],[-120.832845,38.323608],[-120.832061,38.324393],[-120.831434,38.324706],[-120.831434,38.322667],[-120.831277,38.321883],[-120.830963,38.321099],[-120.830806,38.320158],[-120.829865,38.319374],[-120.829708,38.318903],[-120.830493,38.317648],[-120.830806,38.316237],[-120.831277,38.316080],[-120.832061,38.315766],[-120.832375,38.315609],[-120.832532,38.314041],[-120.833002,38.313100],[-120.832532,38.312159],[-120.832061,38.310434],[-120.829552,38.306042],[-120.830022,38.303062],[-120.830493,38.301964],[-120.830336,38.297416],[-120.830493,38.295691],[-120.830806,38.295063],[-120.831434,38.294750],[-120.833473,38.295534],[-120.837864,38.295220],[-120.839903,38.293966],[-120.843667,38.292711],[-120.846490,38.291299],[-120.847588,38.290986],[-120.848843,38.290986],[-120.850725,38.291299],[-120.852293,38.291299],[-120.853705,38.291613],[-120.854489,38.291770],[-120.854960,38.291613],[-120.856058,38.290829],[-120.856999,38.290829],[-120.857940,38.291142],[-120.860920,38.290986],[-120.861233,38.290829],[-120.862331,38.289417],[-120.863272,38.288947],[-120.863743,38.289103],[-120.865311,38.290201],[-120.868762,38.288790],[-120.869389,38.288790],[-120.870330,38.289103],[-120.870957,38.289103],[-120.871428,38.288790],[-120.871742,38.288319],[-120.871585,38.284398],[-120.870173,38.281575],[-120.870016,38.280791],[-120.870487,38.277497],[-120.870330,38.277340],[-120.868291,38.274204],[-120.866095,38.271694],[-120.865154,38.269342],[-120.864527,38.268714],[-120.862959,38.267616],[-120.860449,38.266205],[-120.859508,38.266048],[-120.858097,38.266048],[-120.857156,38.265577],[-120.856685,38.264950],[-120.855744,38.262284],[-120.853705,38.260245],[-120.852450,38.258206],[-120.850098,38.257265],[-120.852450,38.255696],[-120.853862,38.253814],[-120.854176,38.252873],[-120.854176,38.250678],[-120.854489,38.249893],[-120.855117,38.248795],[-120.855744,38.248325],[-120.857312,38.247384],[-120.859038,38.246913],[-120.860606,38.246286],[-120.863586,38.246129],[-120.866880,38.245188],[-120.868291,38.245188],[-120.870016,38.244404],[-120.871742,38.242836],[-120.872369,38.242365],[-120.873624,38.242365],[-120.874408,38.241894],[-120.874878,38.241424],[-120.874878,38.240797],[-120.875035,38.240169],[-120.875349,38.239699],[-120.876133,38.239699],[-120.877074,38.239699],[-120.878956,38.240797],[-120.879270,38.240953],[-120.880054,38.240640],[-120.880995,38.238915],[-120.881152,38.236719],[-120.880838,38.233582],[-120.880995,38.233268],[-120.882093,38.232798],[-120.882877,38.230759],[-120.883975,38.229661],[-120.884759,38.229034],[-120.885857,38.228720],[-120.886955,38.228563],[-120.887739,38.228406],[-120.888837,38.227622],[-120.888994,38.227151],[-120.890563,38.224956],[-120.891660,38.223074],[-120.892445,38.221976],[-120.892915,38.221505],[-120.893856,38.221348],[-120.895738,38.221505],[-120.896052,38.221505],[-120.896052,38.221192],[-120.899816,38.221976],[-120.901541,38.221976],[-120.902482,38.222289],[-120.903580,38.222917],[-120.903737,38.223544],[-120.904835,38.224485],[-120.905776,38.224956],[-120.906090,38.224956],[-120.906560,38.224956],[-120.907031,38.225113],[-120.908129,38.226524],[-120.909383,38.227465],[-120.912677,38.229504],[-120.914873,38.229975],[-120.917696,38.229975],[-120.919107,38.229661],[-120.925538,38.227622],[-120.927263,38.226681],[-120.928204,38.225897],[-120.930086,38.224956],[-120.933380,38.221976],[-120.934792,38.221192],[-120.936674,38.220721],[-120.937144,38.220721],[-120.938399,38.221348],[-120.939026,38.221976],[-120.940124,38.222446],[-120.942163,38.223387],[-120.947182,38.224642],[-120.948907,38.225426],[-120.950319,38.225897],[-120.952358,38.226367],[-120.953456,38.226367],[-120.954867,38.225583],[-120.956122,38.224015],[-120.957847,38.222917],[-120.961454,38.221976],[-120.962082,38.221662],[-120.962552,38.221348],[-120.962866,38.220407],[-120.963336,38.219937],[-120.963964,38.219623],[-120.964748,38.219623],[-120.965689,38.219937],[-120.966316,38.220564],[-120.967571,38.220407],[-120.970081,38.219623],[-120.970551,38.219309],[-120.971649,38.218055],[-120.972120,38.217898],[-120.978707,38.221035],[-120.981059,38.221819],[-120.982314,38.221819],[-120.983726,38.221192],[-120.984510,38.221192],[-120.985765,38.221348],[-120.988117,38.222603],[-120.989529,38.223858],[-120.991568,38.224172],[-120.991881,38.224485],[-120.991881,38.224956],[-120.992352,38.225269],[-120.993607,38.225583],[-120.995489,38.225426],[-121.004429,38.245345],[-121.006311,38.249893],[-121.006154,38.249893],[-121.016349,38.274360],[-121.027014,38.300239],[-121.027171,38.397637],[-121.027327,38.458021],[-121.008663,38.458021],[-121.008663,38.454413],[-120.963807,38.454570],[-120.964121,38.448296],[-120.954553,38.446258],[-120.955181,38.431985],[-120.955181,38.425555],[-120.955338,38.422575],[-120.955181,38.419908],[-120.955651,38.417869],[-120.955651,38.416301],[-120.956436,38.415046],[-120.956436,38.414576],[-120.956279,38.414105],[-120.955181,38.412694],[-120.954240,38.411125],[-120.953926,38.410184],[-120.954867,38.406734],[-120.955024,38.405165],[-120.956122,38.401558],[-120.956279,38.400146],[-120.956749,38.399833],[-120.957690,38.399362],[-120.958004,38.398892],[-120.957847,38.395598],[-120.958004,38.395284],[-120.960827,38.394500],[-120.961925,38.394657],[-120.963650,38.395441],[-120.964121,38.395441],[-120.964434,38.395128],[-120.964591,38.393716],[-120.965689,38.390893],[-120.966003,38.386658],[-120.965846,38.385874],[-120.965532,38.385403],[-120.963650,38.384462],[-120.963336,38.383521],[-120.963336,38.382894],[-120.964434,38.381796],[-120.966003,38.380698],[-120.968355,38.380228],[-120.969924,38.379130],[-120.970081,38.378502],[-120.969924,38.376934],[-120.971022,38.375052],[-120.968983,38.374268],[-120.961611,38.369719],[-120.959886,38.368778],[-120.959572,38.368778],[-120.959572,38.368935],[-120.957847,38.374268],[-120.954083,38.373327],[-120.954083,38.373484],[-120.952985,38.376620],[-120.953769,38.380228],[-120.952044,38.380385],[-120.951417,38.383835],[-120.944672,38.383208],[-120.926636,38.383051],[-120.926950,38.371758],[-120.927263,38.371758],[-120.927263,38.370033],[-120.926793,38.370033],[-120.926008,38.370504],[-120.925852,38.371602],[-120.924126,38.374425],[-120.923499,38.376307],[-120.923185,38.376464],[-120.922401,38.376464],[-120.921617,38.376150],[-120.920362,38.375993],[-120.919107,38.376307],[-120.917069,38.375836],[-120.916598,38.375366],[-120.912677,38.378032],[-120.912991,38.378973],[-120.912834,38.379287],[-120.912834,38.379757],[-120.913932,38.381482],[-120.913775,38.383051],[-120.914245,38.384149],[-120.914716,38.385560],[-120.915186,38.386188],[-120.915030,38.387286],[-120.915030,38.389324],[-120.915657,38.390579],[-120.915500,38.392148],[-120.915971,38.394187],[-120.916284,38.394971],[-120.916284,38.395598],[-120.915971,38.395912],[-120.915343,38.396069],[-120.912207,38.398892],[-120.912520,38.399519],[-120.912520,38.400146],[-120.912207,38.400617],[-120.912520,38.401401],[-120.912363,38.402970],[-120.911422,38.405009],[-120.912207,38.407832],[-120.912207,38.408302],[-120.912520,38.408930],[-120.912050,38.410341],[-120.909697,38.409871],[-120.908913,38.407832],[-120.907501,38.407204],[-120.908129,38.405636],[-120.908442,38.404224],[-120.907972,38.404224],[-120.907344,38.404695],[-120.906090,38.405165],[-120.904678,38.406106],[-120.902326,38.406577],[-120.900287,38.406577],[-120.898875,38.405950],[-120.898248,38.405950],[-120.897464,38.406420],[-120.894954,38.406106],[-120.892601,38.406420],[-120.890563,38.406577],[-120.884289,38.406420],[-120.883191,38.405950],[-120.882407,38.405793],[-120.881623,38.406106],[-120.880995,38.406891],[-120.880525,38.407361],[-120.879741,38.407518],[-120.878956,38.407361]]]}}
,{"id":94598,"type":"Feature","properties":{"name":"Walnut Creek"},"geometry":{"type":"Polygon","coordinates":[[[-122.033302,37.902021],[-122.030949,37.901080],[-122.030322,37.900767],[-122.030165,37.900453],[-122.030322,37.899355],[-122.030636,37.898884],[-122.031420,37.897943],[-122.032361,37.897002],[-122.032518,37.896218],[-122.032518,37.894807],[-122.032988,37.896061],[-122.033929,37.897002],[-122.035027,37.897943],[-122.035968,37.899669],[-122.036752,37.900139],[-122.037693,37.899669],[-122.038164,37.899826],[-122.041458,37.900139],[-122.049300,37.899512],[-122.050554,37.901237],[-122.050397,37.902021],[-122.050084,37.902021],[-122.050084,37.902178],[-122.050711,37.903433],[-122.050711,37.903903],[-122.051652,37.905942],[-122.051025,37.906256],[-122.051338,37.906883],[-122.051966,37.906727],[-122.052280,37.907354],[-122.051966,37.907824],[-122.052123,37.908138],[-122.054475,37.907197],[-122.054946,37.908138],[-122.053377,37.908609],[-122.053377,37.909079],[-122.053848,37.910491],[-122.054632,37.910491],[-122.054632,37.912059],[-122.054162,37.912686],[-122.054632,37.913000],[-122.053064,37.915823],[-122.053848,37.917392],[-122.054475,37.917549],[-122.054475,37.917705],[-122.053848,37.918490],[-122.053848,37.919274],[-122.053534,37.919587],[-122.053064,37.919901],[-122.052280,37.919744],[-122.051495,37.919901],[-122.050554,37.920685],[-122.050084,37.921156],[-122.049770,37.923038],[-122.048986,37.924763],[-122.048829,37.925704],[-122.048515,37.926018],[-122.049456,37.926175],[-122.051025,37.926488],[-122.051025,37.927273],[-122.050397,37.928684],[-122.049613,37.928998],[-122.049456,37.929939],[-122.048045,37.929625],[-122.047731,37.929625],[-122.047731,37.928214],[-122.047888,37.927273],[-122.047888,37.927429],[-122.047574,37.928057],[-122.047417,37.929312],[-122.047731,37.930723],[-122.047261,37.932762],[-122.047574,37.933703],[-122.046947,37.934017],[-122.036125,37.939663],[-122.033145,37.936369],[-122.034713,37.935428],[-122.033772,37.934174],[-122.034713,37.933703],[-122.033615,37.932605],[-122.032047,37.933233],[-122.031890,37.933076],[-122.029224,37.934487],[-122.026558,37.931350],[-122.020911,37.934330],[-122.019186,37.935585],[-122.017461,37.935585],[-122.010246,37.940447],[-122.009933,37.939977],[-122.007737,37.939506],[-122.007737,37.939036],[-122.008207,37.938095],[-122.008051,37.937624],[-122.007423,37.937154],[-122.005698,37.936369],[-122.005541,37.935742],[-122.005227,37.934958],[-122.004443,37.934487],[-122.004443,37.933703],[-122.004129,37.933233],[-122.004129,37.932448],[-122.004129,37.930880],[-122.003816,37.930723],[-122.000993,37.934487],[-121.998170,37.936683],[-121.997385,37.937781],[-121.996915,37.939192],[-121.997072,37.941388],[-121.996915,37.942486],[-121.990014,37.939192],[-121.987348,37.934958],[-121.986720,37.933389],[-121.984211,37.923979],[-121.979976,37.918646],[-121.977153,37.914725],[-121.989386,37.899826],[-121.990641,37.899512],[-121.988132,37.898257],[-121.988132,37.897943],[-121.988759,37.897316],[-121.988916,37.897002],[-121.988602,37.896375],[-121.988132,37.895748],[-121.987975,37.894650],[-121.986877,37.893709],[-121.985779,37.892925],[-121.985465,37.892140],[-121.983897,37.891670],[-121.981858,37.889945],[-121.980603,37.888690],[-121.980133,37.887592],[-121.979035,37.886651],[-121.978565,37.885867],[-121.976526,37.884612],[-121.975428,37.883514],[-121.974643,37.883200],[-121.973859,37.883044],[-121.972448,37.883514],[-121.972448,37.883357],[-121.972605,37.883044],[-121.972605,37.882730],[-121.971507,37.882730],[-121.970879,37.881789],[-121.968684,37.881946],[-121.968527,37.881789],[-121.968527,37.881318],[-121.968370,37.881162],[-121.967115,37.881005],[-121.966174,37.881162],[-121.966017,37.881005],[-121.966174,37.880534],[-121.966017,37.880220],[-121.964919,37.880220],[-121.964919,37.879436],[-121.964292,37.879279],[-121.963665,37.879279],[-121.963037,37.878495],[-121.961626,37.877868],[-121.961155,37.876770],[-121.961469,37.876613],[-121.961939,37.876927],[-121.962410,37.876770],[-121.962880,37.875202],[-121.962567,37.874731],[-121.961469,37.874417],[-121.960371,37.873790],[-121.959901,37.873163],[-121.958646,37.873163],[-121.958018,37.873006],[-121.957705,37.872535],[-121.956607,37.872692],[-121.955823,37.872378],[-121.954568,37.872535],[-121.953784,37.873163],[-121.953313,37.873163],[-121.953156,37.873163],[-121.953000,37.872849],[-121.952686,37.872692],[-121.951431,37.872849],[-121.950804,37.873476],[-121.950490,37.873320],[-121.950176,37.872849],[-121.949079,37.873006],[-121.949235,37.872535],[-121.949863,37.872222],[-121.950020,37.871908],[-121.950490,37.871594],[-121.950647,37.871124],[-121.950333,37.870653],[-121.949706,37.870340],[-121.949235,37.870340],[-121.948922,37.869555],[-121.948608,37.869555],[-121.947824,37.870026],[-121.947667,37.869869],[-121.947353,37.869555],[-121.946569,37.869398],[-121.946412,37.869242],[-121.946255,37.868614],[-121.945942,37.868301],[-121.945158,37.867360],[-121.944687,37.867203],[-121.944687,37.866575],[-121.944060,37.866262],[-121.943903,37.865791],[-121.943746,37.865791],[-121.942962,37.866105],[-121.943275,37.867046],[-121.942648,37.867673],[-121.943432,37.867987],[-121.943903,37.868457],[-121.944060,37.869555],[-121.943746,37.869555],[-121.942962,37.868771],[-121.942178,37.868771],[-121.940923,37.868301],[-121.940609,37.868614],[-121.941080,37.869085],[-121.941080,37.869555],[-121.939825,37.869398],[-121.939668,37.869555],[-121.940139,37.870183],[-121.940766,37.870183],[-121.941393,37.870810],[-121.942648,37.871594],[-121.942805,37.871908],[-121.942648,37.872065],[-121.941707,37.871437],[-121.939982,37.871437],[-121.938884,37.871124],[-121.937943,37.870967],[-121.937002,37.870496],[-121.936218,37.870340],[-121.935433,37.869869],[-121.935433,37.868771],[-121.935277,37.867673],[-121.933708,37.867203],[-121.932767,37.867360],[-121.931983,37.866419],[-121.931669,37.865791],[-121.933238,37.865007],[-121.932924,37.864536],[-121.932610,37.864223],[-121.933238,37.863752],[-121.932767,37.863282],[-121.932610,37.862654],[-121.933708,37.861243],[-121.934492,37.859831],[-121.935433,37.858890],[-121.935590,37.857322],[-121.934649,37.856851],[-121.934336,37.856067],[-121.933394,37.855440],[-121.932453,37.855440],[-121.931669,37.854812],[-121.930415,37.853401],[-121.929787,37.853244],[-121.929160,37.852773],[-121.927905,37.852773],[-121.926650,37.852460],[-121.925709,37.852146],[-121.925552,37.851989],[-121.926337,37.851362],[-121.926807,37.851676],[-121.927748,37.851362],[-121.928062,37.851832],[-121.928376,37.851832],[-121.929317,37.851362],[-121.929787,37.850421],[-121.929944,37.850264],[-121.930258,37.850421],[-121.930258,37.850891],[-121.930415,37.851205],[-121.931356,37.850421],[-121.931669,37.850578],[-121.931983,37.851048],[-121.932453,37.851048],[-121.932767,37.850891],[-121.932924,37.849950],[-121.933551,37.852303],[-121.934336,37.852930],[-121.934179,37.853401],[-121.934336,37.853714],[-121.935120,37.853558],[-121.935433,37.853558],[-121.935590,37.854028],[-121.936374,37.854028],[-121.937002,37.854342],[-121.937629,37.854028],[-121.938100,37.854028],[-121.938727,37.854028],[-121.939041,37.854185],[-121.939668,37.854342],[-121.940295,37.854028],[-121.940452,37.854185],[-121.940452,37.854499],[-121.940766,37.855126],[-121.941864,37.854812],[-121.942962,37.854655],[-121.944530,37.854969],[-121.945314,37.855283],[-121.946883,37.855283],[-121.947981,37.854812],[-121.949549,37.854969],[-121.949863,37.855126],[-121.950333,37.854812],[-121.950490,37.854499],[-121.950647,37.854185],[-121.952686,37.855283],[-121.953470,37.855440],[-121.954411,37.855753],[-121.954725,37.855753],[-121.955195,37.855126],[-121.955509,37.855283],[-121.955979,37.855440],[-121.956136,37.857165],[-121.956450,37.857949],[-121.957234,37.857949],[-121.957862,37.858263],[-121.958489,37.858263],[-121.959116,37.858890],[-121.959587,37.859047],[-121.959744,37.859204],[-121.960371,37.859361],[-121.961469,37.859361],[-121.962880,37.859988],[-121.963351,37.860459],[-121.963978,37.860615],[-121.964919,37.860302],[-121.966017,37.860615],[-121.966645,37.859831],[-121.967743,37.860459],[-121.968056,37.861243],[-121.968997,37.861556],[-121.969468,37.862654],[-121.970252,37.863125],[-121.970409,37.862654],[-121.971193,37.862498],[-121.971664,37.861400],[-121.972291,37.861086],[-121.973546,37.862341],[-121.989073,37.861870],[-121.989857,37.868301],[-121.998326,37.869869],[-121.997072,37.872378],[-122.001777,37.873790],[-122.002247,37.874417],[-122.000836,37.875515],[-122.000365,37.876613],[-122.000522,37.876927],[-122.001934,37.877554],[-122.003188,37.877554],[-122.003502,37.877711],[-121.997856,37.878495],[-121.999738,37.884298],[-122.007109,37.882416],[-122.006325,37.885083],[-122.006012,37.890886],[-122.005698,37.891356],[-122.006168,37.891042],[-122.006482,37.892140],[-122.006953,37.893238],[-122.009305,37.894963],[-122.012442,37.896375],[-122.014167,37.896689],[-122.017461,37.898100],[-122.024362,37.900296],[-122.027185,37.901080],[-122.029538,37.902492],[-122.033302,37.903433],[-122.033302,37.902021]]]}}
,{"id":94523,"type":"Feature","properties":{"name":"Pleasant Hill"},"geometry":{"type":"Polygon","coordinates":[[[-122.074080,37.981226],[-122.068905,37.981696],[-122.067650,37.981539],[-122.065768,37.981853],[-122.065611,37.980912],[-122.064670,37.978246],[-122.063572,37.976521],[-122.064670,37.975736],[-122.064043,37.973697],[-122.062788,37.973697],[-122.060749,37.970404],[-122.063258,37.970404],[-122.062317,37.965071],[-122.059965,37.965228],[-122.059808,37.964444],[-122.059337,37.963973],[-122.056201,37.966012],[-122.056044,37.966012],[-122.053064,37.960680],[-122.052593,37.959268],[-122.052436,37.958170],[-122.052593,37.956915],[-122.054318,37.953622],[-122.053848,37.952994],[-122.052907,37.950956],[-122.052436,37.950328],[-122.052123,37.949230],[-122.051966,37.947662],[-122.051652,37.947505],[-122.051025,37.947976],[-122.051182,37.947191],[-122.051025,37.946721],[-122.051652,37.945152],[-122.051182,37.944996],[-122.051495,37.943741],[-122.051182,37.943270],[-122.050554,37.942800],[-122.051338,37.942800],[-122.051809,37.940447],[-122.052593,37.940447],[-122.052907,37.940447],[-122.052907,37.937467],[-122.053064,37.936683],[-122.054946,37.936683],[-122.054475,37.939506],[-122.056044,37.939349],[-122.056201,37.938565],[-122.056357,37.938408],[-122.059651,37.938565],[-122.059651,37.938565],[-122.059808,37.937310],[-122.059024,37.937310],[-122.059024,37.936683],[-122.056828,37.936683],[-122.056828,37.934644],[-122.053377,37.934801],[-122.053691,37.933233],[-122.054946,37.933233],[-122.055103,37.932605],[-122.060122,37.932605],[-122.060122,37.931507],[-122.061690,37.931507],[-122.061690,37.931978],[-122.061533,37.932292],[-122.061533,37.932448],[-122.061376,37.932605],[-122.063572,37.932605],[-122.063572,37.932762],[-122.065297,37.932762],[-122.066709,37.933233],[-122.066866,37.933076],[-122.067493,37.933233],[-122.067650,37.933076],[-122.070159,37.933389],[-122.073453,37.933389],[-122.073453,37.926332],[-122.082079,37.926175],[-122.086000,37.926175],[-122.088039,37.925234],[-122.088039,37.926332],[-122.088666,37.926175],[-122.088823,37.927273],[-122.086471,37.927900],[-122.086784,37.931821],[-122.088353,37.931821],[-122.088510,37.932919],[-122.089764,37.932919],[-122.089608,37.933703],[-122.090705,37.935428],[-122.090078,37.935899],[-122.089608,37.936683],[-122.089451,37.937938],[-122.089608,37.939820],[-122.089608,37.940918],[-122.092431,37.940761],[-122.093058,37.942486],[-122.098391,37.942486],[-122.098547,37.945937],[-122.098547,37.946250],[-122.096352,37.946250],[-122.096352,37.947191],[-122.096822,37.947191],[-122.096665,37.947035],[-122.097450,37.947035],[-122.097606,37.947819],[-122.098234,37.947662],[-122.098547,37.947505],[-122.098547,37.948132],[-122.098861,37.948603],[-122.100743,37.950328],[-122.100900,37.950956],[-122.100743,37.950956],[-122.100586,37.950799],[-122.099802,37.951269],[-122.099488,37.951269],[-122.098861,37.951897],[-122.100586,37.952838],[-122.101684,37.955033],[-122.092744,37.955190],[-122.092274,37.955504],[-122.091803,37.955974],[-122.091803,37.956288],[-122.091490,37.956288],[-122.091333,37.956602],[-122.092587,37.957856],[-122.091960,37.958327],[-122.091960,37.959268],[-122.092117,37.959739],[-122.093842,37.959582],[-122.096352,37.963189],[-122.098861,37.967110],[-122.100743,37.969149],[-122.101998,37.969776],[-122.101998,37.969620],[-122.103723,37.970090],[-122.103723,37.970090],[-122.102625,37.969933],[-122.102312,37.971188],[-122.103096,37.971502],[-122.102939,37.971815],[-122.104194,37.972443],[-122.104351,37.972756],[-122.100430,37.975736],[-122.099959,37.975893],[-122.090392,37.975893],[-122.080197,37.976050],[-122.077844,37.975893],[-122.077844,37.977932],[-122.077060,37.978089],[-122.077060,37.979344],[-122.076433,37.978716],[-122.076433,37.979344],[-122.075806,37.979344],[-122.075806,37.979814],[-122.077060,37.979814],[-122.077217,37.981539],[-122.078942,37.981539],[-122.078786,37.981696],[-122.078158,37.982167],[-122.077217,37.982324],[-122.077060,37.981853],[-122.074865,37.981853],[-122.074865,37.981226],[-122.074080,37.981226]]]}}
,{"id":94597,"type":"Feature","properties":{"name":"Walnut Creek"},"geometry":{"type":"Polygon","coordinates":[[[-122.082079,37.926175],[-122.073453,37.926332],[-122.073453,37.933389],[-122.070159,37.933389],[-122.067650,37.933076],[-122.067493,37.933233],[-122.066866,37.933076],[-122.066709,37.933233],[-122.065297,37.932762],[-122.063572,37.932762],[-122.063572,37.932605],[-122.061376,37.932605],[-122.061533,37.932448],[-122.061533,37.932292],[-122.061690,37.931978],[-122.061690,37.931507],[-122.060122,37.931507],[-122.060122,37.932605],[-122.055103,37.932605],[-122.054946,37.933233],[-122.053691,37.933233],[-122.053377,37.934801],[-122.056828,37.934644],[-122.056828,37.936683],[-122.059024,37.936683],[-122.059024,37.937310],[-122.059808,37.937310],[-122.059651,37.938565],[-122.059651,37.938565],[-122.056357,37.938408],[-122.056201,37.938565],[-122.056044,37.939349],[-122.054475,37.939506],[-122.054946,37.936683],[-122.053064,37.936683],[-122.052907,37.937467],[-122.052907,37.940447],[-122.052593,37.940447],[-122.052907,37.936683],[-122.052750,37.936683],[-122.052593,37.937467],[-122.052280,37.937467],[-122.051966,37.939506],[-122.051809,37.939349],[-122.051809,37.939663],[-122.051495,37.939192],[-122.050397,37.937938],[-122.050554,37.937781],[-122.050397,37.937624],[-122.049300,37.936683],[-122.046947,37.934017],[-122.047574,37.933703],[-122.047261,37.932762],[-122.047731,37.930723],[-122.047417,37.929312],[-122.047574,37.928057],[-122.047888,37.927429],[-122.047888,37.927273],[-122.047731,37.928214],[-122.047731,37.929625],[-122.048045,37.929625],[-122.049456,37.929939],[-122.049613,37.928998],[-122.050397,37.928684],[-122.051025,37.927273],[-122.051025,37.926488],[-122.049456,37.926175],[-122.048515,37.926018],[-122.048829,37.925704],[-122.048986,37.924763],[-122.049770,37.923038],[-122.050084,37.921156],[-122.050554,37.920685],[-122.051495,37.919901],[-122.052280,37.919744],[-122.053064,37.919901],[-122.053534,37.919587],[-122.053848,37.919274],[-122.053848,37.918490],[-122.054475,37.917705],[-122.054475,37.917549],[-122.053848,37.917392],[-122.053064,37.915823],[-122.054632,37.913000],[-122.054162,37.912686],[-122.054632,37.912059],[-122.054632,37.910491],[-122.053848,37.910491],[-122.053377,37.909079],[-122.053377,37.908609],[-122.054946,37.908138],[-122.057612,37.907197],[-122.058083,37.911118],[-122.056671,37.915666],[-122.056357,37.917078],[-122.057926,37.917078],[-122.058083,37.915353],[-122.059494,37.915353],[-122.060122,37.911589],[-122.061376,37.911745],[-122.062945,37.911745],[-122.063729,37.911745],[-122.063258,37.915510],[-122.062788,37.917235],[-122.064043,37.917235],[-122.065611,37.915666],[-122.066238,37.914569],[-122.069061,37.906883],[-122.070944,37.898100],[-122.070787,37.897159],[-122.070630,37.896532],[-122.071571,37.896532],[-122.071728,37.896846],[-122.072982,37.896218],[-122.075178,37.895905],[-122.077060,37.896061],[-122.081452,37.897316],[-122.081452,37.898257],[-122.080981,37.899669],[-122.083804,37.900923],[-122.084589,37.901551],[-122.083648,37.902806],[-122.084118,37.903119],[-122.083961,37.903119],[-122.083961,37.904060],[-122.082393,37.903903],[-122.082236,37.904531],[-122.081922,37.904374],[-122.081922,37.904844],[-122.081138,37.905629],[-122.080981,37.906099],[-122.080981,37.906413],[-122.082236,37.906413],[-122.082236,37.907354],[-122.082863,37.907354],[-122.083648,37.907511],[-122.084745,37.908138],[-122.085687,37.909393],[-122.086314,37.909706],[-122.086784,37.910334],[-122.086628,37.910648],[-122.090392,37.910020],[-122.099018,37.910177],[-122.098547,37.911902],[-122.098391,37.912843],[-122.098704,37.913314],[-122.099645,37.914882],[-122.099959,37.917392],[-122.091803,37.917235],[-122.092274,37.918646],[-122.092274,37.919117],[-122.092587,37.920372],[-122.094783,37.919274],[-122.095567,37.920372],[-122.096195,37.920372],[-122.096509,37.920528],[-122.096352,37.921156],[-122.096038,37.921626],[-122.094783,37.921783],[-122.093842,37.922411],[-122.093215,37.922567],[-122.092431,37.920842],[-122.091176,37.921156],[-122.091019,37.920685],[-122.089451,37.921470],[-122.089451,37.924920],[-122.088039,37.925234],[-122.086000,37.926175],[-122.082079,37.926175]]]}}
,{"id":95219,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.699075,38.026082],[-121.706446,38.024514],[-121.708642,38.023573],[-121.711465,38.022788],[-121.714759,38.023102],[-121.717582,38.024827],[-121.724013,38.026709],[-121.723699,38.027023],[-121.724013,38.027023],[-121.724013,38.027337],[-121.723385,38.028278],[-121.721660,38.029689],[-121.721346,38.030160],[-121.721033,38.031415],[-121.720562,38.032042],[-121.719935,38.032356],[-121.719307,38.032513],[-121.716798,38.032669],[-121.716170,38.032826],[-121.714759,38.032669],[-121.711622,38.033297],[-121.708485,38.033454],[-121.706290,38.034081],[-121.704094,38.035336],[-121.700800,38.038159],[-121.698134,38.040355],[-121.696565,38.040668],[-121.694056,38.042393],[-121.692801,38.044119],[-121.692174,38.045060],[-121.691547,38.046628],[-121.691547,38.047883],[-121.690449,38.049922],[-121.689037,38.052118],[-121.683077,38.055411],[-121.681038,38.056509],[-121.679940,38.056823],[-121.676647,38.061057],[-121.676647,38.061842],[-121.675863,38.063567],[-121.675235,38.065920],[-121.674921,38.069370],[-121.675392,38.070311],[-121.675863,38.073918],[-121.676490,38.077055],[-121.677117,38.079251],[-121.677431,38.081447],[-121.677431,38.082074],[-121.677117,38.083172],[-121.676647,38.085211],[-121.676804,38.087250],[-121.676176,38.088191],[-121.675392,38.088975],[-121.673353,38.090230],[-121.669589,38.091798],[-121.666923,38.092582],[-121.664256,38.093210],[-121.661747,38.093367],[-121.660022,38.093053],[-121.658924,38.092582],[-121.655787,38.090700],[-121.651552,38.087564],[-121.647474,38.085681],[-121.647318,38.085054],[-121.647788,38.084270],[-121.649043,38.083643],[-121.649670,38.083015],[-121.649513,38.081917],[-121.648729,38.080663],[-121.648415,38.078937],[-121.648572,38.074389],[-121.648259,38.072664],[-121.649043,38.069841],[-121.649043,38.069213],[-121.648259,38.069684],[-121.645906,38.079251],[-121.643553,38.081917],[-121.642612,38.082701],[-121.639789,38.082858],[-121.636652,38.083486],[-121.632731,38.084584],[-121.631163,38.084740],[-121.629595,38.085525],[-121.628340,38.086622],[-121.627242,38.087720],[-121.626928,38.088348],[-121.626771,38.088818],[-121.626771,38.090073],[-121.627085,38.091955],[-121.626771,38.092896],[-121.626458,38.093210],[-121.625203,38.088975],[-121.623791,38.085681],[-121.623164,38.083329],[-121.623007,38.082074],[-121.622066,38.079565],[-121.622066,38.074389],[-121.621753,38.072036],[-121.622380,38.069997],[-121.622694,38.066704],[-121.623791,38.064351],[-121.624419,38.061999],[-121.625517,38.059803],[-121.625987,38.058548],[-121.626144,38.057450],[-121.626144,38.054000],[-121.626615,38.052745],[-121.628026,38.051333],[-121.631006,38.049922],[-121.633986,38.049922],[-121.634927,38.050549],[-121.636025,38.052118],[-121.637593,38.052588],[-121.638221,38.052902],[-121.640887,38.053059],[-121.645749,38.054313],[-121.649827,38.056195],[-121.653748,38.056039],[-121.657198,38.057450],[-121.657355,38.055411],[-121.657042,38.054941],[-121.658610,38.053059],[-121.658296,38.051333],[-121.655160,38.049138],[-121.653434,38.047726],[-121.653434,38.047256],[-121.653591,38.046942],[-121.659551,38.047412],[-121.659865,38.046942],[-121.660649,38.042080],[-121.662531,38.042080],[-121.665197,38.042550],[-121.668962,38.041766],[-121.672098,38.041296],[-121.675706,38.041452],[-121.675706,38.039100],[-121.676647,38.037218],[-121.675863,38.035963],[-121.672883,38.035963],[-121.671941,38.034708],[-121.671785,38.034081],[-121.673667,38.032826],[-121.674608,38.031571],[-121.673353,38.029846],[-121.671000,38.030630],[-121.668334,38.029846],[-121.668334,38.028278],[-121.663629,38.027807],[-121.663315,38.027650],[-121.663472,38.026082],[-121.661747,38.025612],[-121.661120,38.024671],[-121.660178,38.023886],[-121.659551,38.022632],[-121.658924,38.021534],[-121.658924,38.021220],[-121.658610,38.021063],[-121.657983,38.020436],[-121.655473,38.019024],[-121.654219,38.017770],[-121.653434,38.017142],[-121.652180,38.016985],[-121.650611,38.017142],[-121.647788,38.016201],[-121.646847,38.015574],[-121.646690,38.015260],[-121.646533,38.014790],[-121.647161,38.014162],[-121.648259,38.013378],[-121.649043,38.013692],[-121.653121,38.013535],[-121.656571,38.013849],[-121.658924,38.013692],[-121.658924,38.013692],[-121.659394,38.013692],[-121.659394,38.013692],[-121.667707,38.013692],[-121.674921,38.012594],[-121.678215,38.011496],[-121.678529,38.011653],[-121.679784,38.012751],[-121.680411,38.012907],[-121.681195,38.012907],[-121.683077,38.014162],[-121.683705,38.015887],[-121.682607,38.016358],[-121.682136,38.016985],[-121.682136,38.018083],[-121.682607,38.018711],[-121.683705,38.019181],[-121.685587,38.019024],[-121.686214,38.019808],[-121.687312,38.020279],[-121.683705,38.016672],[-121.684175,38.016044],[-121.684018,38.015574],[-121.684489,38.014476],[-121.685430,38.016985],[-121.690919,38.022161],[-121.691233,38.024043],[-121.696722,38.026082],[-121.699075,38.026082]]],[[[-121.358574,38.021377],[-121.357163,38.018397],[-121.353712,38.011025],[-121.341165,37.979500],[-121.343361,37.978089],[-121.345557,37.976521],[-121.346498,37.975579],[-121.347596,37.974952],[-121.347909,37.974325],[-121.348223,37.974011],[-121.349948,37.973854],[-121.350732,37.973697],[-121.351673,37.972756],[-121.351987,37.971972],[-121.352771,37.971031],[-121.354026,37.970090],[-121.358104,37.968051],[-121.359202,37.967581],[-121.359986,37.967581],[-121.362182,37.968208],[-121.363750,37.968365],[-121.364064,37.968208],[-121.365005,37.967581],[-121.365475,37.967424],[-121.367828,37.967267],[-121.368769,37.967424],[-121.370808,37.969149],[-121.372063,37.968365],[-121.371592,37.968835],[-121.380375,37.976991],[-121.385708,37.981226],[-121.392766,37.986401],[-121.400921,37.989225],[-121.414880,37.995028],[-121.420369,37.995498],[-121.425702,37.995028],[-121.435583,37.993616],[-121.437151,37.994243],[-121.445150,37.998164],[-121.450169,37.999733],[-121.450169,37.998949],[-121.450012,37.998792],[-121.447817,37.997694],[-121.447032,37.997223],[-121.445621,37.996753],[-121.446719,37.996126],[-121.447973,37.994714],[-121.448914,37.993930],[-121.450012,37.993616],[-121.452208,37.993773],[-121.452051,37.994087],[-121.452835,37.995498],[-121.452835,37.996596],[-121.452365,37.997851],[-121.451581,37.999106],[-121.451424,37.999419],[-121.458639,38.002399],[-121.460521,38.003027],[-121.461775,38.004124],[-121.462403,38.005065],[-121.462246,38.006320],[-121.461618,38.008830],[-121.459736,38.012280],[-121.459736,38.012751],[-121.462246,38.016358],[-121.464285,38.017456],[-121.465226,38.018240],[-121.465696,38.019338],[-121.466951,38.022945],[-121.468206,38.024043],[-121.470872,38.025455],[-121.472440,38.025768],[-121.473225,38.026239],[-121.473852,38.026396],[-121.475264,38.026396],[-121.475734,38.026082],[-121.475734,38.025298],[-121.476361,38.024984],[-121.478871,38.024200],[-121.480282,38.024043],[-121.484360,38.025141],[-121.487497,38.026553],[-121.490477,38.028592],[-121.491732,38.029219],[-121.492046,38.029846],[-121.492673,38.030003],[-121.495339,38.029219],[-121.497221,38.028435],[-121.499731,38.027650],[-121.501142,38.027650],[-121.501142,38.028121],[-121.502397,38.027650],[-121.507886,38.027023],[-121.508671,38.026553],[-121.509298,38.025141],[-121.514944,38.023102],[-121.518238,38.023886],[-121.523100,38.024357],[-121.523414,38.024671],[-121.520277,38.029846],[-121.519963,38.030630],[-121.519806,38.032356],[-121.519963,38.033297],[-121.521845,38.037061],[-121.522943,38.040041],[-121.524668,38.042237],[-121.530001,38.042550],[-121.530785,38.043648],[-121.535647,38.048667],[-121.535020,38.056352],[-121.546312,38.057764],[-121.556193,38.060744],[-121.558703,38.067488],[-121.560585,38.070938],[-121.572975,38.074232],[-121.575328,38.076428],[-121.576739,38.078153],[-121.577053,38.080192],[-121.576896,38.081604],[-121.577210,38.084897],[-121.577210,38.085995],[-121.577837,38.089446],[-121.578308,38.091798],[-121.579249,38.093367],[-121.580033,38.094464],[-121.578935,38.094935],[-121.574073,38.096347],[-121.570152,38.096817],[-121.569995,38.094621],[-121.570779,38.094151],[-121.571407,38.092739],[-121.571407,38.092582],[-121.569838,38.091328],[-121.569211,38.089916],[-121.569525,38.085995],[-121.567956,38.085681],[-121.565761,38.085995],[-121.564819,38.087093],[-121.563722,38.088034],[-121.562624,38.088505],[-121.561369,38.088505],[-121.557448,38.087093],[-121.553997,38.086936],[-121.552115,38.086779],[-121.550861,38.087093],[-121.549135,38.088505],[-121.547724,38.089132],[-121.545371,38.088191],[-121.541450,38.086152],[-121.540196,38.085681],[-121.539882,38.085838],[-121.539568,38.085995],[-121.538157,38.087877],[-121.537372,38.088661],[-121.535020,38.089916],[-121.533608,38.091014],[-121.532197,38.091485],[-121.529217,38.091641],[-121.525139,38.090230],[-121.520747,38.089446],[-121.519806,38.089446],[-121.518708,38.088818],[-121.518081,38.087877],[-121.517140,38.087250],[-121.514160,38.084270],[-121.513376,38.082388],[-121.511651,38.081290],[-121.509925,38.080819],[-121.508827,38.080192],[-121.503809,38.072350],[-121.503495,38.072350],[-121.503024,38.072664],[-121.501299,38.072350],[-121.500829,38.074075],[-121.500985,38.075957],[-121.500985,38.076742],[-121.498947,38.078780],[-121.499103,38.079878],[-121.499574,38.080819],[-121.502240,38.084427],[-121.502083,38.085368],[-121.501299,38.087407],[-121.501299,38.088661],[-121.500201,38.089289],[-121.497378,38.090073],[-121.494555,38.091798],[-121.493928,38.091798],[-121.493300,38.091798],[-121.492830,38.091485],[-121.491575,38.090230],[-121.490791,38.089602],[-121.489850,38.089446],[-121.488909,38.089602],[-121.486556,38.090387],[-121.484517,38.091171],[-121.483576,38.091328],[-121.482792,38.091014],[-121.481067,38.089759],[-121.480439,38.087093],[-121.479812,38.085838],[-121.478400,38.085211],[-121.474009,38.084740],[-121.472911,38.084584],[-121.472284,38.084113],[-121.471343,38.082858],[-121.469617,38.079565],[-121.470402,38.075644],[-121.470402,38.075330],[-121.469774,38.074232],[-121.469304,38.073605],[-121.468363,38.073134],[-121.465383,38.072350],[-121.464128,38.070938],[-121.462403,38.070154],[-121.459736,38.068272],[-121.459580,38.067958],[-121.458168,38.067958],[-121.457854,38.068586],[-121.456756,38.069527],[-121.454090,38.070625],[-121.453620,38.071095],[-121.452051,38.073762],[-121.451267,38.075173],[-121.448130,38.076742],[-121.445307,38.079251],[-121.444052,38.080035],[-121.443582,38.080663],[-121.442798,38.082074],[-121.435740,38.082545],[-121.435269,38.082858],[-121.433544,38.084584],[-121.433230,38.084740],[-121.431976,38.084897],[-121.428368,38.084270],[-121.426800,38.084584],[-121.424447,38.084740],[-121.424134,38.084740],[-121.424290,38.085368],[-121.420997,38.085838],[-121.417076,38.084113],[-121.416135,38.082858],[-121.415664,38.082701],[-121.415664,38.083015],[-121.415351,38.083015],[-121.414723,38.076898],[-121.415037,38.075957],[-121.416919,38.072821],[-121.416605,38.072821],[-121.398725,38.072664],[-121.397628,38.072977],[-121.388688,38.072977],[-121.387590,38.072821],[-121.386806,38.072507],[-121.378336,38.072507],[-121.377395,38.072821],[-121.377238,38.072350],[-121.378336,38.072507],[-121.378336,38.072350],[-121.379120,38.072193],[-121.379748,38.072350],[-121.386335,38.072350],[-121.386492,38.072507],[-121.388217,38.072350],[-121.393079,38.072350],[-121.392452,38.065763],[-121.393079,38.064822],[-121.393236,38.063881],[-121.392922,38.063567],[-121.392609,38.063724],[-121.392295,38.064508],[-121.391981,38.062312],[-121.392609,38.062469],[-121.393236,38.062312],[-121.393707,38.061999],[-121.393550,38.061685],[-121.393236,38.061685],[-121.392766,38.061528],[-121.391981,38.061842],[-121.391668,38.058078],[-121.391354,38.058078],[-121.382100,38.057921],[-121.372847,38.058078],[-121.368298,38.043648],[-121.368142,38.043178],[-121.367828,38.043178],[-121.367671,38.042550],[-121.365318,38.035022],[-121.358574,38.021377]]]]}}
,{"id":94547,"type":"Feature","properties":{"name":"Hercules"},"geometry":{"type":"Polygon","coordinates":[[[-122.234528,38.003968],[-122.234371,38.003811],[-122.234528,38.003340],[-122.234371,38.002713],[-122.231862,37.999733],[-122.229195,37.999106],[-122.227000,37.998321],[-122.226216,37.998164],[-122.225431,37.998478],[-122.224177,37.998164],[-122.223392,37.997067],[-122.223236,37.996282],[-122.230293,37.996439],[-122.230607,37.995655],[-122.221353,37.984519],[-122.224333,37.985460],[-122.229509,37.984676],[-122.234058,37.984519],[-122.249742,37.992989],[-122.253506,37.994557],[-122.256956,37.993459],[-122.256799,37.992989],[-122.257427,37.992675],[-122.258995,37.992675],[-122.260093,37.992675],[-122.264485,37.991891],[-122.265112,37.991420],[-122.265896,37.991577],[-122.266367,37.992048],[-122.266524,37.991891],[-122.266837,37.991734],[-122.267621,37.992205],[-122.268092,37.991734],[-122.268406,37.992048],[-122.268719,37.992048],[-122.269033,37.992518],[-122.270758,37.993459],[-122.272483,37.993302],[-122.272797,37.993773],[-122.273581,37.994243],[-122.274209,37.994243],[-122.274993,37.994871],[-122.275463,37.995341],[-122.275777,37.996439],[-122.277659,37.999262],[-122.277346,37.999262],[-122.278443,38.000988],[-122.279541,38.000988],[-122.280169,38.000988],[-122.282051,38.000988],[-122.281423,38.001772],[-122.281267,38.001772],[-122.279855,38.002399],[-122.279698,38.002713],[-122.279855,38.003183],[-122.279384,38.003340],[-122.280012,38.003811],[-122.281737,38.004281],[-122.283305,38.006948],[-122.285188,38.009300],[-122.287070,38.008202],[-122.289579,38.007889],[-122.289893,38.007889],[-122.289893,38.008045],[-122.289893,38.007889],[-122.290520,38.007889],[-122.290677,38.008673],[-122.291147,38.009300],[-122.292716,38.010712],[-122.295539,38.014319],[-122.294598,38.015260],[-122.297578,38.015260],[-122.302126,38.017926],[-122.301342,38.018554],[-122.298519,38.019181],[-122.297421,38.019495],[-122.296637,38.019965],[-122.296010,38.021063],[-122.295853,38.022788],[-122.294755,38.024357],[-122.293971,38.025141],[-122.291932,38.026553],[-122.289422,38.026553],[-122.288638,38.026866],[-122.288167,38.027180],[-122.287854,38.027964],[-122.287383,38.029533],[-122.286756,38.030317],[-122.286285,38.030630],[-122.281423,38.031415],[-122.281110,38.031728],[-122.280796,38.032826],[-122.280796,38.035022],[-122.281110,38.038629],[-122.280953,38.039570],[-122.280325,38.040511],[-122.279228,38.041766],[-122.278600,38.042237],[-122.276091,38.043491],[-122.275777,38.035963],[-122.274209,38.034395],[-122.270288,38.030630],[-122.270131,38.030160],[-122.267465,38.027337],[-122.267308,38.027494],[-122.266367,38.026396],[-122.264171,38.024514],[-122.261034,38.021377],[-122.253663,38.014162],[-122.256643,38.013849],[-122.256799,38.013535],[-122.258995,38.013221],[-122.261661,38.013221],[-122.264485,38.013535],[-122.269347,38.014946],[-122.272170,38.011810],[-122.266994,38.012280],[-122.265896,38.011966],[-122.263387,38.010869],[-122.262603,38.010712],[-122.261034,38.010712],[-122.259152,38.011182],[-122.258525,38.010869],[-122.258054,38.010712],[-122.253192,38.012437],[-122.252408,38.012907],[-122.248016,38.008673],[-122.239076,38.007261],[-122.236567,38.003811],[-122.234842,38.004438],[-122.234528,38.003968]]]}}
,{"id":94850,"type":"Feature","properties":{"name":"Richmond"},"geometry":{"type":"Polygon","coordinates":[[[-122.320006,37.903903],[-122.320320,37.904374],[-122.319849,37.904217],[-122.320006,37.904531],[-122.319065,37.906099],[-122.314046,37.899982],[-122.316712,37.899669],[-122.320006,37.903903]]]}}
,{"id":94901,"type":"Feature","properties":{"name":"San Rafael"},"geometry":{"type":"Polygon","coordinates":[[[-122.540524,37.963816],[-122.540837,37.964130],[-122.541465,37.964287],[-122.541622,37.964287],[-122.541778,37.964601],[-122.542406,37.964601],[-122.542876,37.965228],[-122.543504,37.965228],[-122.544131,37.965699],[-122.544445,37.965855],[-122.544602,37.966012],[-122.545543,37.966796],[-122.545543,37.967267],[-122.546170,37.967110],[-122.546170,37.967581],[-122.545699,37.967581],[-122.545699,37.968208],[-122.545386,37.968365],[-122.548366,37.970874],[-122.548523,37.971188],[-122.548209,37.971815],[-122.548523,37.972129],[-122.549150,37.972286],[-122.550248,37.971972],[-122.550875,37.972286],[-122.551032,37.973227],[-122.550875,37.976207],[-122.550875,37.976521],[-122.552444,37.976677],[-122.552287,37.977775],[-122.551346,37.978559],[-122.551346,37.979030],[-122.550562,37.980755],[-122.554012,37.982637],[-122.555267,37.983108],[-122.556051,37.983108],[-122.557306,37.983578],[-122.558717,37.982167],[-122.560442,37.979971],[-122.560913,37.979187],[-122.559501,37.984519],[-122.559031,37.987342],[-122.557619,37.993302],[-122.552757,37.991734],[-122.550562,37.991107],[-122.549777,37.992048],[-122.543661,37.989068],[-122.542406,37.988284],[-122.539740,37.988440],[-122.539740,37.988911],[-122.539269,37.988440],[-122.538955,37.988440],[-122.538328,37.987186],[-122.537387,37.987029],[-122.536603,37.987186],[-122.536446,37.987813],[-122.535034,37.988127],[-122.534407,37.987029],[-122.534250,37.986872],[-122.532839,37.986872],[-122.532525,37.987656],[-122.532525,37.988911],[-122.532054,37.989225],[-122.531741,37.989068],[-122.531427,37.989225],[-122.531113,37.989068],[-122.530329,37.989538],[-122.530015,37.990009],[-122.529074,37.990636],[-122.527820,37.991107],[-122.526879,37.990636],[-122.525781,37.990479],[-122.525310,37.990793],[-122.524683,37.990950],[-122.523899,37.991577],[-122.522958,37.991734],[-122.522487,37.992361],[-122.522644,37.992832],[-122.522330,37.992675],[-122.522173,37.991577],[-122.521860,37.991264],[-122.521546,37.991420],[-122.521232,37.991891],[-122.521076,37.991891],[-122.520291,37.991734],[-122.519350,37.991891],[-122.518096,37.991420],[-122.517468,37.991734],[-122.517311,37.992205],[-122.516527,37.992989],[-122.514488,37.993459],[-122.514175,37.993930],[-122.513547,37.995498],[-122.513233,37.995812],[-122.512136,37.996282],[-122.511822,37.996753],[-122.511038,37.996753],[-122.510724,37.997067],[-122.509940,37.997067],[-122.508999,37.996910],[-122.508685,37.996596],[-122.508528,37.996126],[-122.508058,37.995812],[-122.507430,37.996753],[-122.506960,37.996910],[-122.505862,37.996753],[-122.505391,37.997380],[-122.504921,37.997851],[-122.504450,37.998164],[-122.503823,37.998164],[-122.502725,37.997537],[-122.501784,37.996753],[-122.501470,37.996282],[-122.500843,37.996596],[-122.500216,37.995969],[-122.498647,37.995655],[-122.496922,37.995969],[-122.495511,37.995812],[-122.495197,37.996126],[-122.495040,37.996282],[-122.495667,37.997067],[-122.496608,37.999890],[-122.496765,37.999890],[-122.496608,38.000047],[-122.498647,38.006006],[-122.498020,38.006006],[-122.496452,38.006006],[-122.496608,38.006320],[-122.495824,38.006634],[-122.495040,38.007732],[-122.494726,38.008516],[-122.495197,38.009143],[-122.495824,38.009457],[-122.497236,38.011339],[-122.497863,38.011496],[-122.498961,38.011339],[-122.500373,38.011339],[-122.502098,38.015887],[-122.503196,38.015887],[-122.502725,38.016672],[-122.501627,38.016985],[-122.485316,38.017142],[-122.478729,38.011496],[-122.471828,38.010398],[-122.469004,38.008673],[-122.464613,38.008359],[-122.459594,38.006634],[-122.457869,38.002870],[-122.452850,38.000047],[-122.449086,37.996596],[-122.446419,37.993146],[-122.443596,37.988597],[-122.442812,37.984676],[-122.444381,37.981853],[-122.447831,37.979344],[-122.456457,37.975893],[-122.460692,37.976677],[-122.464770,37.977932],[-122.468377,37.979814],[-122.470730,37.977775],[-122.471200,37.973541],[-122.467279,37.971031],[-122.461947,37.966640],[-122.461947,37.963189],[-122.464299,37.960836],[-122.467750,37.959582],[-122.471043,37.960052],[-122.475749,37.962091],[-122.478729,37.965228],[-122.484532,37.965542],[-122.485786,37.958484],[-122.484061,37.952524],[-122.480611,37.950171],[-122.476847,37.948760],[-122.473082,37.948446],[-122.472141,37.946564],[-122.471514,37.944368],[-122.471984,37.942172],[-122.472298,37.941545],[-122.474180,37.939820],[-122.477003,37.938251],[-122.481238,37.936369],[-122.483434,37.936369],[-122.484061,37.935899],[-122.489707,37.935742],[-122.491746,37.936369],[-122.497706,37.938408],[-122.501941,37.941231],[-122.502412,37.941702],[-122.502882,37.941702],[-122.502255,37.942016],[-122.505862,37.942329],[-122.508999,37.942329],[-122.513390,37.943113],[-122.513547,37.943898],[-122.510410,37.942957],[-122.507274,37.943113],[-122.507744,37.943898],[-122.508685,37.943741],[-122.508999,37.944055],[-122.508842,37.944211],[-122.508058,37.944368],[-122.508685,37.944839],[-122.508528,37.945152],[-122.508999,37.945309],[-122.509312,37.945309],[-122.510097,37.945937],[-122.509940,37.946250],[-122.509626,37.946407],[-122.508371,37.945780],[-122.508215,37.945466],[-122.506803,37.944368],[-122.504607,37.943898],[-122.504294,37.943427],[-122.502412,37.942957],[-122.502098,37.943898],[-122.501470,37.942800],[-122.501000,37.942486],[-122.499745,37.942172],[-122.499118,37.942329],[-122.499118,37.942016],[-122.498804,37.942016],[-122.497549,37.940761],[-122.497236,37.940290],[-122.496138,37.940290],[-122.496138,37.940761],[-122.495354,37.941075],[-122.495354,37.941702],[-122.494099,37.941859],[-122.493942,37.939349],[-122.493785,37.939349],[-122.492687,37.940447],[-122.491276,37.940604],[-122.491276,37.939192],[-122.490648,37.939192],[-122.490178,37.938408],[-122.488139,37.938722],[-122.487982,37.940604],[-122.487041,37.940290],[-122.484845,37.941231],[-122.481709,37.942016],[-122.481238,37.942329],[-122.480454,37.943427],[-122.479356,37.942957],[-122.479199,37.942957],[-122.481865,37.944368],[-122.483277,37.944839],[-122.484532,37.944996],[-122.486727,37.944839],[-122.488139,37.944996],[-122.489237,37.945309],[-122.490492,37.946093],[-122.492374,37.946407],[-122.493785,37.946093],[-122.494413,37.945623],[-122.500843,37.947348],[-122.501784,37.947819],[-122.504607,37.949387],[-122.505705,37.950485],[-122.506176,37.951740],[-122.508058,37.951269],[-122.509469,37.951897],[-122.510097,37.952210],[-122.511822,37.952524],[-122.514645,37.952053],[-122.516213,37.951583],[-122.518096,37.951897],[-122.520134,37.953935],[-122.520762,37.954406],[-122.522487,37.954563],[-122.523585,37.955504],[-122.524212,37.955818],[-122.528133,37.959268],[-122.529388,37.958484],[-122.532211,37.959895],[-122.532839,37.959739],[-122.532839,37.960209],[-122.533936,37.960523],[-122.534407,37.960993],[-122.534877,37.960993],[-122.535191,37.961307],[-122.535975,37.961464],[-122.536446,37.961934],[-122.536916,37.961621],[-122.537544,37.961934],[-122.537544,37.962248],[-122.538328,37.962875],[-122.539426,37.963346],[-122.539740,37.963660],[-122.540524,37.963816]]]}}
,{"id":94925,"type":"Feature","properties":{"name":"Corte Madera"},"geometry":{"type":"Polygon","coordinates":[[[-122.539583,37.922097],[-122.539740,37.925234],[-122.539112,37.924920],[-122.538642,37.925077],[-122.538171,37.925077],[-122.538171,37.924136],[-122.537073,37.923822],[-122.536132,37.924136],[-122.535505,37.924606],[-122.534721,37.925861],[-122.535348,37.926332],[-122.535034,37.926802],[-122.534407,37.926802],[-122.534250,37.926959],[-122.534407,37.927116],[-122.533780,37.926959],[-122.532839,37.927429],[-122.531898,37.927743],[-122.530643,37.927743],[-122.531584,37.928684],[-122.531898,37.929312],[-122.527192,37.929312],[-122.527035,37.930096],[-122.526251,37.930096],[-122.526408,37.930409],[-122.525153,37.931194],[-122.525624,37.931664],[-122.527035,37.931821],[-122.527035,37.933860],[-122.520762,37.934487],[-122.521076,37.937154],[-122.521546,37.938408],[-122.519193,37.939349],[-122.518880,37.939036],[-122.516370,37.940604],[-122.515900,37.940447],[-122.516370,37.940134],[-122.517311,37.938095],[-122.517155,37.936840],[-122.517311,37.935585],[-122.517155,37.935115],[-122.516841,37.935271],[-122.516841,37.935428],[-122.515743,37.935899],[-122.515743,37.935742],[-122.514802,37.936369],[-122.513861,37.937310],[-122.512763,37.938722],[-122.512920,37.942172],[-122.512449,37.942016],[-122.512449,37.941859],[-122.511038,37.940918],[-122.510567,37.941075],[-122.510254,37.940604],[-122.509783,37.940447],[-122.509940,37.941388],[-122.507587,37.941545],[-122.506489,37.941388],[-122.506489,37.941702],[-122.505548,37.941859],[-122.502882,37.941702],[-122.502412,37.941702],[-122.501941,37.941231],[-122.497706,37.938408],[-122.491746,37.936369],[-122.489707,37.935742],[-122.484061,37.935899],[-122.485630,37.934174],[-122.488139,37.932919],[-122.487198,37.924920],[-122.484375,37.924136],[-122.482022,37.922411],[-122.478572,37.921626],[-122.473710,37.921626],[-122.471200,37.920372],[-122.484532,37.920999],[-122.485630,37.920685],[-122.485943,37.919901],[-122.486727,37.920058],[-122.487982,37.919901],[-122.487198,37.918803],[-122.489080,37.917862],[-122.489237,37.915353],[-122.495667,37.915666],[-122.495981,37.911745],[-122.504921,37.911902],[-122.503039,37.909393],[-122.510724,37.909393],[-122.510567,37.907824],[-122.514018,37.908609],[-122.515586,37.911118],[-122.515429,37.911432],[-122.515743,37.912530],[-122.515900,37.912530],[-122.516213,37.912843],[-122.517468,37.915510],[-122.517625,37.916294],[-122.518409,37.917705],[-122.522330,37.917078],[-122.525781,37.917078],[-122.528290,37.915980],[-122.530015,37.916921],[-122.530643,37.917549],[-122.531270,37.917862],[-122.533152,37.918019],[-122.533309,37.917862],[-122.534093,37.918960],[-122.537073,37.920372],[-122.536916,37.921313],[-122.537387,37.920842],[-122.538642,37.921626],[-122.538798,37.921940],[-122.539583,37.922097]]]}}
,{"id":94960,"type":"Feature","properties":{"name":"San Anselmo"},"geometry":{"type":"Polygon","coordinates":[[[-122.550875,37.976207],[-122.551032,37.973227],[-122.550875,37.972286],[-122.551816,37.972443],[-122.552600,37.972913],[-122.552757,37.972286],[-122.553228,37.972756],[-122.553071,37.972129],[-122.552287,37.971972],[-122.551973,37.971502],[-122.551503,37.971188],[-122.551659,37.970874],[-122.552287,37.970717],[-122.551973,37.970404],[-122.551973,37.969620],[-122.552600,37.969306],[-122.553855,37.969306],[-122.555737,37.968992],[-122.555580,37.968208],[-122.555424,37.968208],[-122.554796,37.967581],[-122.554953,37.967110],[-122.553385,37.966012],[-122.552914,37.965542],[-122.554326,37.964914],[-122.554953,37.964130],[-122.556365,37.963346],[-122.554796,37.961150],[-122.552757,37.959582],[-122.553385,37.959425],[-122.553228,37.959111],[-122.554639,37.960523],[-122.555267,37.961307],[-122.556208,37.961934],[-122.556521,37.962405],[-122.556835,37.962248],[-122.558874,37.961778],[-122.560756,37.966012],[-122.561070,37.966640],[-122.560756,37.967424],[-122.561540,37.968522],[-122.562325,37.967737],[-122.564050,37.966953],[-122.564677,37.966326],[-122.567657,37.965855],[-122.568128,37.966012],[-122.567814,37.966169],[-122.567814,37.966640],[-122.567500,37.966796],[-122.567500,37.967267],[-122.567657,37.967894],[-122.568284,37.967424],[-122.568912,37.967581],[-122.570794,37.967267],[-122.570951,37.966796],[-122.572833,37.967581],[-122.580518,37.969463],[-122.580832,37.970090],[-122.580832,37.973227],[-122.585851,37.976677],[-122.581459,37.977618],[-122.582243,37.979030],[-122.581616,37.981383],[-122.582400,37.981539],[-122.583027,37.981069],[-122.583812,37.981069],[-122.584596,37.981696],[-122.585066,37.981696],[-122.585537,37.982167],[-122.585223,37.982324],[-122.583498,37.981539],[-122.582243,37.982010],[-122.581459,37.981853],[-122.579420,37.986558],[-122.581930,37.986715],[-122.585223,37.995028],[-122.586635,37.999419],[-122.586948,37.999419],[-122.585537,38.002556],[-122.585537,38.003183],[-122.586321,38.003183],[-122.586478,38.003183],[-122.585537,38.003968],[-122.585223,38.003968],[-122.585066,38.004909],[-122.586321,38.005693],[-122.589458,38.006477],[-122.590242,38.006791],[-122.591026,38.006948],[-122.591654,38.006791],[-122.592438,38.007104],[-122.595261,38.008045],[-122.595261,38.008202],[-122.595418,38.008359],[-122.597614,38.007732],[-122.599339,38.008045],[-122.600750,38.008830],[-122.601221,38.009457],[-122.602633,38.009771],[-122.602789,38.009928],[-122.602633,38.010084],[-122.602005,38.010555],[-122.601848,38.010869],[-122.602005,38.011025],[-122.602633,38.011025],[-122.603103,38.011182],[-122.603574,38.011182],[-122.603730,38.011339],[-122.603574,38.011339],[-122.603417,38.011496],[-122.604358,38.012280],[-122.605456,38.012437],[-122.606240,38.013221],[-122.607495,38.013221],[-122.607651,38.014476],[-122.608122,38.014790],[-122.608436,38.016044],[-122.609220,38.016672],[-122.609220,38.016828],[-122.607965,38.016828],[-122.608592,38.017299],[-122.608749,38.018083],[-122.609220,38.018083],[-122.609847,38.018554],[-122.610318,38.017926],[-122.610945,38.017926],[-122.611729,38.017299],[-122.612513,38.017613],[-122.612827,38.018083],[-122.613141,38.018240],[-122.612827,38.022161],[-122.612827,38.022945],[-122.611729,38.024043],[-122.611259,38.024984],[-122.610631,38.025141],[-122.609377,38.025141],[-122.608906,38.025612],[-122.608436,38.026082],[-122.607808,38.026553],[-122.606554,38.026239],[-122.605142,38.026239],[-122.603417,38.026553],[-122.601535,38.027337],[-122.600280,38.027180],[-122.598868,38.027337],[-122.598712,38.027494],[-122.598712,38.027964],[-122.598712,38.028748],[-122.598084,38.028905],[-122.597614,38.028905],[-122.596986,38.029219],[-122.596673,38.029219],[-122.594791,38.028592],[-122.593379,38.027807],[-122.592595,38.027650],[-122.591340,38.027023],[-122.589615,38.026709],[-122.589615,38.026553],[-122.591967,38.024827],[-122.592281,38.024200],[-122.592281,38.023573],[-122.577538,38.014005],[-122.573460,38.011810],[-122.573460,38.011966],[-122.573774,38.012437],[-122.571892,38.010869],[-122.568598,38.007104],[-122.565932,38.003497],[-122.558090,37.994400],[-122.557619,37.993302],[-122.559031,37.987342],[-122.559501,37.984519],[-122.560913,37.979187],[-122.560442,37.979971],[-122.558717,37.982167],[-122.557306,37.983578],[-122.556051,37.983108],[-122.555267,37.983108],[-122.554012,37.982637],[-122.550562,37.980755],[-122.551346,37.979030],[-122.551346,37.978559],[-122.552287,37.977775],[-122.552444,37.976677],[-122.550875,37.976521],[-122.550875,37.976207]]]}}
,{"id":94937,"type":"Feature","properties":{"name":"Inverness"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.973403,37.990950],[-122.973246,37.991891],[-122.974031,37.992361],[-122.974344,37.992518],[-122.975129,37.992518],[-122.975285,37.992361],[-122.975756,37.992361],[-122.977638,37.992832],[-122.978265,37.992832],[-122.979363,37.992675],[-122.979991,37.992832],[-122.980461,37.992361],[-122.981559,37.992675],[-122.983127,37.992518],[-122.983127,37.992675],[-122.983755,37.992989],[-122.984068,37.992989],[-122.984696,37.992832],[-122.985166,37.992989],[-122.985480,37.992989],[-122.985637,37.992675],[-122.986107,37.992675],[-122.985951,37.992205],[-122.986264,37.992048],[-122.986578,37.992205],[-122.986735,37.992518],[-122.987205,37.992675],[-122.986735,37.992989],[-122.987048,37.992989],[-122.986892,37.993302],[-122.987048,37.993459],[-122.987362,37.993616],[-122.987362,37.993302],[-122.987676,37.993616],[-122.987989,37.993146],[-122.988146,37.993616],[-122.988617,37.993773],[-122.988774,37.993930],[-122.989401,37.994087],[-122.990499,37.994714],[-122.991283,37.994557],[-122.991910,37.994243],[-122.992538,37.994400],[-122.993479,37.994087],[-122.993636,37.993146],[-122.994890,37.992832],[-122.995361,37.992989],[-122.995204,37.993146],[-122.995361,37.993773],[-122.995831,37.994087],[-122.996773,37.994243],[-122.998184,37.993930],[-122.998498,37.993616],[-122.999125,37.993930],[-122.999439,37.993302],[-122.999909,37.993616],[-122.999752,37.993930],[-123.000380,37.993930],[-123.000694,37.993930],[-123.000850,37.993459],[-123.001007,37.993302],[-123.001635,37.993146],[-123.002262,37.993302],[-123.002576,37.992989],[-123.003203,37.993146],[-123.003360,37.993302],[-123.003830,37.993146],[-123.003987,37.993302],[-123.005712,37.993302],[-123.006183,37.993773],[-123.006026,37.994243],[-123.006340,37.994714],[-123.007124,37.995028],[-123.007438,37.995028],[-123.007438,37.995341],[-123.008065,37.995498],[-123.009633,37.995498],[-123.009633,37.995185],[-123.009790,37.995028],[-123.010104,37.995185],[-123.010261,37.995341],[-123.010574,37.995028],[-123.010888,37.995498],[-123.011045,37.995341],[-123.011202,37.995498],[-123.011202,37.995185],[-123.011045,37.995028],[-123.011045,37.994871],[-123.011359,37.995028],[-123.011516,37.994714],[-123.011672,37.995185],[-123.011516,37.995498],[-123.012143,37.995655],[-123.012613,37.995028],[-123.013711,37.994557],[-123.014025,37.993930],[-123.014809,37.993930],[-123.016064,37.994243],[-123.016848,37.994087],[-123.017319,37.994557],[-123.017319,37.994243],[-123.017632,37.994087],[-123.017789,37.994243],[-123.018887,37.994557],[-123.018887,37.994871],[-123.019201,37.994871],[-123.020926,37.995185],[-123.021396,37.995028],[-123.021710,37.994871],[-123.022651,37.995028],[-123.022651,37.994714],[-123.022965,37.994557],[-123.023906,37.994714],[-123.024220,37.995185],[-123.024220,37.995498],[-123.023749,37.996439],[-123.023122,37.996596],[-123.022337,37.997537],[-123.022494,37.997694],[-123.022181,37.998008],[-123.021867,37.998164],[-123.021553,37.998164],[-123.021240,37.998635],[-123.021553,37.998635],[-123.021083,37.999106],[-123.020926,37.999576],[-123.020455,37.999890],[-123.020299,37.999733],[-123.019985,37.999890],[-123.019201,37.999576],[-123.018730,37.999576],[-123.017789,37.999262],[-123.017319,37.998792],[-123.016064,37.999106],[-123.016064,37.999419],[-123.016221,37.999576],[-123.016064,37.999733],[-123.015907,37.999890],[-123.013554,37.999890],[-123.013711,37.997380],[-123.012300,37.997851],[-123.011202,37.998008],[-123.009790,37.997223],[-123.006340,37.997067],[-123.003203,37.996126],[-123.001948,37.996282],[-122.999596,37.995969],[-122.999125,37.996126],[-122.998027,37.997380],[-122.995831,37.997851],[-122.995047,37.998164],[-122.992067,37.996596],[-122.991440,37.996439],[-122.989715,37.996439],[-122.988617,37.995969],[-122.986264,37.995812],[-122.984539,37.995812],[-122.982814,37.995341],[-122.981559,37.995498],[-122.979991,37.995185],[-122.979050,37.995655],[-122.977795,37.995498],[-122.977324,37.995185],[-122.977324,37.994871],[-122.975599,37.994400],[-122.973090,37.992989],[-122.972933,37.992989],[-122.972305,37.993302],[-122.971835,37.993146],[-122.971521,37.992675],[-122.971521,37.991734],[-122.973403,37.990950]]],[[[-122.880083,38.024671],[-122.882593,38.025455],[-122.884632,38.025925],[-122.888709,38.026396],[-122.896865,38.027807],[-122.901570,38.028278],[-122.910197,38.028748],[-122.918980,38.028592],[-122.923058,38.029376],[-122.924312,38.028905],[-122.926037,38.028905],[-122.927449,38.029062],[-122.930115,38.031258],[-122.939369,38.031885],[-122.939055,38.032826],[-122.938585,38.033297],[-122.936703,38.033610],[-122.935918,38.034081],[-122.935762,38.034395],[-122.935762,38.034708],[-122.936232,38.035492],[-122.936859,38.035649],[-122.939055,38.035963],[-122.939212,38.035806],[-122.938742,38.034865],[-122.938898,38.034708],[-122.939369,38.034708],[-122.940310,38.034865],[-122.940624,38.035492],[-122.940624,38.036590],[-122.941722,38.038629],[-122.942506,38.039100],[-122.943604,38.039570],[-122.944388,38.040982],[-122.946897,38.042864],[-122.948152,38.044589],[-122.948466,38.045217],[-122.949093,38.046001],[-122.950975,38.046785],[-122.952387,38.047883],[-122.955053,38.048981],[-122.955680,38.049138],[-122.956778,38.048667],[-122.956935,38.049922],[-122.957562,38.050392],[-122.958347,38.050706],[-122.958190,38.051333],[-122.958347,38.051490],[-122.959601,38.051804],[-122.961170,38.052745],[-122.961170,38.053059],[-122.960856,38.053059],[-122.959915,38.052745],[-122.959601,38.053372],[-122.961327,38.054313],[-122.962424,38.054784],[-122.963522,38.055098],[-122.963679,38.055411],[-122.964150,38.055882],[-122.963679,38.056352],[-122.961170,38.055098],[-122.960072,38.055098],[-122.959444,38.054470],[-122.957876,38.053686],[-122.957092,38.053215],[-122.955680,38.051490],[-122.954426,38.051490],[-122.951602,38.050079],[-122.949720,38.048667],[-122.949407,38.048824],[-122.948936,38.049451],[-122.948309,38.051490],[-122.948152,38.053215],[-122.948152,38.054000],[-122.948622,38.054784],[-122.946270,38.060744],[-122.945486,38.060901],[-122.944388,38.060901],[-122.944388,38.061214],[-122.944231,38.061999],[-122.942035,38.063096],[-122.941565,38.063724],[-122.941565,38.064194],[-122.941722,38.065135],[-122.941722,38.065763],[-122.942035,38.066076],[-122.942192,38.066390],[-122.941565,38.067174],[-122.941094,38.068900],[-122.940310,38.070625],[-122.939839,38.070938],[-122.939369,38.074075],[-122.939369,38.076114],[-122.940310,38.077212],[-122.939839,38.078153],[-122.939055,38.078937],[-122.938585,38.079565],[-122.936703,38.080819],[-122.936703,38.081290],[-122.936389,38.082388],[-122.937487,38.082701],[-122.937487,38.082858],[-122.936075,38.084427],[-122.935291,38.085838],[-122.934507,38.086309],[-122.934664,38.086779],[-122.935134,38.087720],[-122.935134,38.088975],[-122.934350,38.089602],[-122.931997,38.090387],[-122.931997,38.090857],[-122.931684,38.091014],[-122.931213,38.091014],[-122.930743,38.091328],[-122.930272,38.091485],[-122.929331,38.091171],[-122.928861,38.091641],[-122.929331,38.091798],[-122.931056,38.091641],[-122.931684,38.091798],[-122.932782,38.092426],[-122.934664,38.093053],[-122.937801,38.095092],[-122.937644,38.095249],[-122.936859,38.095719],[-122.937173,38.096347],[-122.936859,38.096660],[-122.938114,38.097601],[-122.939212,38.099013],[-122.940467,38.099954],[-122.943133,38.102463],[-122.943760,38.103561],[-122.944388,38.104973],[-122.946270,38.106228],[-122.947054,38.106855],[-122.947211,38.107169],[-122.963365,38.107169],[-122.962581,38.108423],[-122.962424,38.109835],[-122.962111,38.110933],[-122.961013,38.112344],[-122.960542,38.113285],[-122.960542,38.114854],[-122.959444,38.117050],[-122.958974,38.119245],[-122.958347,38.119873],[-122.957562,38.121441],[-122.957562,38.122853],[-122.956621,38.124892],[-122.961013,38.124892],[-122.960856,38.128969],[-122.957092,38.140419],[-122.954269,38.147633],[-122.953485,38.150613],[-122.953328,38.153907],[-122.953485,38.157358],[-122.953485,38.160494],[-122.955367,38.163161],[-122.956308,38.166297],[-122.958660,38.168964],[-122.958347,38.171944],[-122.958660,38.174453],[-122.962424,38.176178],[-122.965718,38.177747],[-122.970423,38.177904],[-122.972149,38.180727],[-122.971835,38.184177],[-122.969325,38.187157],[-122.970580,38.189196],[-122.971364,38.192490],[-122.970423,38.195156],[-122.970580,38.198763],[-122.972462,38.200175],[-122.974187,38.201900],[-122.976226,38.204723],[-122.982030,38.209115],[-122.984382,38.212095],[-122.985951,38.216643],[-122.986107,38.220407],[-122.989558,38.223387],[-122.991597,38.224956],[-122.995047,38.225426],[-122.998341,38.227151],[-122.999439,38.230602],[-122.997870,38.233425],[-123.000223,38.240012],[-122.998968,38.243149],[-122.995675,38.245345],[-122.993636,38.244874],[-122.991910,38.243620],[-122.989558,38.242522],[-122.985637,38.241738],[-122.982343,38.238915],[-122.977952,38.240169],[-122.974187,38.233268],[-122.971992,38.230445],[-122.967130,38.226681],[-122.962895,38.222760],[-122.956621,38.216486],[-122.952544,38.212879],[-122.943760,38.206135],[-122.937957,38.201430],[-122.931997,38.197979],[-122.928704,38.194058],[-122.923685,38.187628],[-122.912236,38.173669],[-122.907217,38.167709],[-122.899845,38.157671],[-122.896551,38.152182],[-122.893572,38.148574],[-122.890121,38.141830],[-122.887768,38.138223],[-122.885729,38.134145],[-122.881181,38.126930],[-122.876162,38.121912],[-122.868634,38.117206],[-122.862203,38.112344],[-122.852009,38.103718],[-122.847304,38.100738],[-122.851538,38.097758],[-122.850911,38.097444],[-122.850911,38.096503],[-122.850440,38.095562],[-122.846676,38.093210],[-122.845892,38.092426],[-122.845265,38.091328],[-122.844637,38.091014],[-122.844167,38.090857],[-122.842442,38.090700],[-122.841814,38.090230],[-122.842912,38.089132],[-122.841344,38.087720],[-122.839305,38.086152],[-122.840403,38.085681],[-122.842128,38.085368],[-122.841971,38.085054],[-122.841030,38.084897],[-122.840716,38.084740],[-122.840716,38.084584],[-122.840559,38.083799],[-122.840716,38.083329],[-122.842128,38.082858],[-122.841814,38.082701],[-122.840559,38.082701],[-122.839618,38.083172],[-122.839148,38.083015],[-122.837736,38.083329],[-122.836482,38.083015],[-122.847774,38.077839],[-122.847774,38.076271],[-122.848245,38.076271],[-122.848715,38.076271],[-122.848872,38.075644],[-122.849656,38.075487],[-122.850127,38.075957],[-122.850127,38.076428],[-122.851852,38.075644],[-122.851852,38.075487],[-122.851538,38.075016],[-122.851381,38.074389],[-122.850754,38.074075],[-122.850597,38.072507],[-122.850597,38.071723],[-122.851381,38.070311],[-122.851225,38.070154],[-122.851695,38.070154],[-122.852009,38.069684],[-122.851068,38.067017],[-122.851225,38.066233],[-122.850754,38.065763],[-122.849499,38.065292],[-122.848715,38.063567],[-122.848401,38.063253],[-122.847460,38.063096],[-122.846519,38.062626],[-122.845422,38.061214],[-122.844010,38.060273],[-122.843226,38.060116],[-122.842442,38.059489],[-122.843069,38.059332],[-122.844167,38.058548],[-122.844324,38.058548],[-122.845578,38.059332],[-122.845892,38.059960],[-122.846206,38.060116],[-122.846990,38.059803],[-122.847460,38.059175],[-122.848088,38.059019],[-122.848401,38.058862],[-122.850754,38.059019],[-122.851538,38.058862],[-122.852009,38.058391],[-122.851695,38.057921],[-122.852009,38.057293],[-122.851852,38.055725],[-122.853734,38.052745],[-122.858126,38.048981],[-122.860635,38.048667],[-122.861419,38.048197],[-122.863458,38.047726],[-122.863615,38.047569],[-122.863772,38.046942],[-122.865183,38.045687],[-122.865654,38.045530],[-122.867065,38.045530],[-122.867379,38.045217],[-122.868634,38.044589],[-122.869889,38.044119],[-122.870830,38.043962],[-122.871457,38.043491],[-122.871614,38.043178],[-122.871614,38.042393],[-122.872869,38.041296],[-122.872869,38.040825],[-122.872398,38.039727],[-122.872555,38.038002],[-122.872712,38.037531],[-122.873339,38.037061],[-122.875221,38.036120],[-122.876633,38.035649],[-122.877417,38.035179],[-122.878044,38.033140],[-122.879142,38.032199],[-122.879456,38.031415],[-122.879770,38.031258],[-122.881495,38.030787],[-122.881652,38.030474],[-122.882279,38.028121],[-122.882593,38.028121],[-122.882436,38.027807],[-122.882906,38.026709],[-122.881338,38.026239],[-122.880083,38.024671]]]]}}
,{"id":94930,"type":"Feature","properties":{"name":"Fairfax"},"geometry":{"type":"Polygon","coordinates":[[[-122.586948,37.999419],[-122.586635,37.999419],[-122.585223,37.995028],[-122.581930,37.986715],[-122.579420,37.986558],[-122.581459,37.981853],[-122.582243,37.982010],[-122.583498,37.981539],[-122.585223,37.982324],[-122.585537,37.982167],[-122.585066,37.981696],[-122.584596,37.981696],[-122.583812,37.981069],[-122.583027,37.981069],[-122.582400,37.981539],[-122.581616,37.981383],[-122.582243,37.979030],[-122.581459,37.977618],[-122.585851,37.976677],[-122.580832,37.973227],[-122.580832,37.970090],[-122.580518,37.969463],[-122.581930,37.969306],[-122.582557,37.968992],[-122.583341,37.968992],[-122.583498,37.968522],[-122.583184,37.968051],[-122.583027,37.968051],[-122.582714,37.968208],[-122.580518,37.966640],[-122.580832,37.965855],[-122.580518,37.965385],[-122.581616,37.964914],[-122.581302,37.964287],[-122.582243,37.963503],[-122.581930,37.962405],[-122.581773,37.962405],[-122.581302,37.962875],[-122.580518,37.963189],[-122.579891,37.963032],[-122.579420,37.962562],[-122.580048,37.962248],[-122.581302,37.960993],[-122.581302,37.960836],[-122.580989,37.960523],[-122.579263,37.960052],[-122.578950,37.960209],[-122.578793,37.960836],[-122.578322,37.960836],[-122.577068,37.960052],[-122.576440,37.959895],[-122.576597,37.959739],[-122.577224,37.959739],[-122.577538,37.959268],[-122.577224,37.958484],[-122.577381,37.957543],[-122.577224,37.957543],[-122.577068,37.958013],[-122.576597,37.957543],[-122.575656,37.957229],[-122.576440,37.957072],[-122.576911,37.957229],[-122.577381,37.956915],[-122.578165,37.957072],[-122.577695,37.956759],[-122.577224,37.956131],[-122.577224,37.955661],[-122.577381,37.955347],[-122.578479,37.954720],[-122.580989,37.954092],[-122.581930,37.954877],[-122.582400,37.954720],[-122.583341,37.955347],[-122.584596,37.955661],[-122.584910,37.955661],[-122.587576,37.954563],[-122.589615,37.954406],[-122.590713,37.954406],[-122.591340,37.953779],[-122.591340,37.953151],[-122.591497,37.952994],[-122.591811,37.952994],[-122.592281,37.952838],[-122.592752,37.952524],[-122.593065,37.952053],[-122.594320,37.951897],[-122.595261,37.952210],[-122.595732,37.951897],[-122.596045,37.951897],[-122.596045,37.951583],[-122.597143,37.950485],[-122.597457,37.949544],[-122.597300,37.948760],[-122.597770,37.949387],[-122.598398,37.949701],[-122.598555,37.949387],[-122.598084,37.948917],[-122.598398,37.947662],[-122.597927,37.947348],[-122.597927,37.946878],[-122.597457,37.946721],[-122.597457,37.946407],[-122.597143,37.946250],[-122.596829,37.945780],[-122.597457,37.944839],[-122.597770,37.944839],[-122.599653,37.945309],[-122.599966,37.945309],[-122.600123,37.945152],[-122.600280,37.944525],[-122.600750,37.944055],[-122.600594,37.943741],[-122.601064,37.943584],[-122.601535,37.943270],[-122.601535,37.942957],[-122.601221,37.942800],[-122.601848,37.942016],[-122.601691,37.941388],[-122.601848,37.941231],[-122.602162,37.941075],[-122.603260,37.940604],[-122.603730,37.940918],[-122.604358,37.940918],[-122.604828,37.940604],[-122.605613,37.940918],[-122.605926,37.940134],[-122.606710,37.939977],[-122.607181,37.939663],[-122.607181,37.939192],[-122.606554,37.939192],[-122.605926,37.938722],[-122.605926,37.938408],[-122.606240,37.937938],[-122.606397,37.937310],[-122.606083,37.936840],[-122.605456,37.936526],[-122.605142,37.935899],[-122.605142,37.935115],[-122.604201,37.933703],[-122.604358,37.933076],[-122.603887,37.931978],[-122.604044,37.931507],[-122.603887,37.930566],[-122.603730,37.930253],[-122.603260,37.930096],[-122.603887,37.929155],[-122.604515,37.928841],[-122.605142,37.928998],[-122.605926,37.927743],[-122.605926,37.927429],[-122.606240,37.927116],[-122.606240,37.926802],[-122.605142,37.926488],[-122.605142,37.926332],[-122.604828,37.926332],[-122.603887,37.926018],[-122.603574,37.925547],[-122.603574,37.925234],[-122.603260,37.925234],[-122.601848,37.927429],[-122.595261,37.927586],[-122.595261,37.925704],[-122.595418,37.925547],[-122.595261,37.923979],[-122.595418,37.923508],[-122.595418,37.922881],[-122.595575,37.922724],[-122.596359,37.922724],[-122.596829,37.923038],[-122.597614,37.923038],[-122.597927,37.922567],[-122.598712,37.922411],[-122.599653,37.922567],[-122.600750,37.922881],[-122.601848,37.922097],[-122.602476,37.921940],[-122.603260,37.921313],[-122.603260,37.920685],[-122.603887,37.920058],[-122.604985,37.919901],[-122.606397,37.918960],[-122.606710,37.918490],[-122.607024,37.918176],[-122.607495,37.917078],[-122.607651,37.916137],[-122.607495,37.915196],[-122.610475,37.914255],[-122.610945,37.913314],[-122.611729,37.912843],[-122.611102,37.911902],[-122.611729,37.911432],[-122.612043,37.910648],[-122.612670,37.910491],[-122.613611,37.910334],[-122.616121,37.909079],[-122.617532,37.909236],[-122.618944,37.909236],[-122.619728,37.909550],[-122.620356,37.910334],[-122.620826,37.910648],[-122.622081,37.910961],[-122.623649,37.910961],[-122.625218,37.911275],[-122.625531,37.911432],[-122.625688,37.911745],[-122.624590,37.912530],[-122.624590,37.912843],[-122.625374,37.913314],[-122.625845,37.913941],[-122.626472,37.914412],[-122.627570,37.916294],[-122.627727,37.916451],[-122.628354,37.916294],[-122.628825,37.916607],[-122.628825,37.917705],[-122.628668,37.918803],[-122.628982,37.919431],[-122.629923,37.920372],[-122.632589,37.921313],[-122.633060,37.921470],[-122.635099,37.922724],[-122.637765,37.923822],[-122.639020,37.924763],[-122.639490,37.924763],[-122.639961,37.924449],[-122.640274,37.924606],[-122.641215,37.926332],[-122.644195,37.929782],[-122.646391,37.933703],[-122.650626,37.935742],[-122.652194,37.935428],[-122.653763,37.936056],[-122.654704,37.936213],[-122.655017,37.937310],[-122.655174,37.937467],[-122.655488,37.937624],[-122.655958,37.938408],[-122.655958,37.938722],[-122.655645,37.939663],[-122.655488,37.939977],[-122.656115,37.940761],[-122.656115,37.941075],[-122.655801,37.941075],[-122.654860,37.939506],[-122.655017,37.939192],[-122.654390,37.938879],[-122.654390,37.938251],[-122.653292,37.937938],[-122.652821,37.937154],[-122.651880,37.936526],[-122.651567,37.936683],[-122.651724,37.936683],[-122.652351,37.937154],[-122.652665,37.938095],[-122.653449,37.938565],[-122.653606,37.938879],[-122.652978,37.938879],[-122.652037,37.938251],[-122.650939,37.938095],[-122.650626,37.937781],[-122.650469,37.937781],[-122.649685,37.937938],[-122.648744,37.937781],[-122.648273,37.938251],[-122.647803,37.938408],[-122.646862,37.938408],[-122.646548,37.938251],[-122.646234,37.937781],[-122.645764,37.937781],[-122.643882,37.936997],[-122.643097,37.937781],[-122.642627,37.937781],[-122.642470,37.937624],[-122.642313,37.937154],[-122.641843,37.936997],[-122.641372,37.936997],[-122.640431,37.937781],[-122.640274,37.938408],[-122.639490,37.938565],[-122.638706,37.938565],[-122.637765,37.938251],[-122.637608,37.936683],[-122.636824,37.936056],[-122.636981,37.935585],[-122.636824,37.935428],[-122.636667,37.935428],[-122.636667,37.936213],[-122.636981,37.936526],[-122.637137,37.936997],[-122.636981,37.938095],[-122.636824,37.938408],[-122.637294,37.938722],[-122.636981,37.939506],[-122.638549,37.940761],[-122.637608,37.941075],[-122.637294,37.941702],[-122.637137,37.942016],[-122.636196,37.941388],[-122.635726,37.941545],[-122.635255,37.942016],[-122.634628,37.941702],[-122.633687,37.941859],[-122.633216,37.942329],[-122.633373,37.942957],[-122.632746,37.942957],[-122.632432,37.943113],[-122.632432,37.943898],[-122.633060,37.944368],[-122.633060,37.944682],[-122.633844,37.945623],[-122.633844,37.945937],[-122.633060,37.946093],[-122.632903,37.946564],[-122.633373,37.946878],[-122.633687,37.947348],[-122.633687,37.947819],[-122.634628,37.948917],[-122.634314,37.949073],[-122.633216,37.949073],[-122.632432,37.948446],[-122.632119,37.948446],[-122.631648,37.948917],[-122.632275,37.949858],[-122.631491,37.950485],[-122.631805,37.950799],[-122.632432,37.950642],[-122.632746,37.950799],[-122.632746,37.951112],[-122.633060,37.951269],[-122.633373,37.951897],[-122.634471,37.952524],[-122.634628,37.952994],[-122.636667,37.954249],[-122.636824,37.954406],[-122.636667,37.955033],[-122.637137,37.955818],[-122.636824,37.955974],[-122.635726,37.955190],[-122.634314,37.954877],[-122.633373,37.955661],[-122.632275,37.955190],[-122.631805,37.955190],[-122.631021,37.955818],[-122.630236,37.955974],[-122.630080,37.956288],[-122.629452,37.958013],[-122.629609,37.958641],[-122.629295,37.959111],[-122.628825,37.959425],[-122.628825,37.959739],[-122.629295,37.960209],[-122.629923,37.961150],[-122.630864,37.961934],[-122.631962,37.963503],[-122.631648,37.963660],[-122.630707,37.963189],[-122.629923,37.963189],[-122.629139,37.963816],[-122.628982,37.964444],[-122.629295,37.965071],[-122.629766,37.965542],[-122.630080,37.966169],[-122.630864,37.966953],[-122.631491,37.967267],[-122.631491,37.967424],[-122.631021,37.967581],[-122.629766,37.966953],[-122.628982,37.966326],[-122.627727,37.965699],[-122.627413,37.965228],[-122.627413,37.964601],[-122.626943,37.964130],[-122.626786,37.963660],[-122.626002,37.962719],[-122.625688,37.962562],[-122.625061,37.962875],[-122.624904,37.963189],[-122.625061,37.963503],[-122.625218,37.963973],[-122.625531,37.963816],[-122.626002,37.963973],[-122.625845,37.965385],[-122.626159,37.966012],[-122.626472,37.966169],[-122.626629,37.966796],[-122.627100,37.966953],[-122.628041,37.967737],[-122.629295,37.969463],[-122.631177,37.970247],[-122.632275,37.971031],[-122.634314,37.971972],[-122.635412,37.972129],[-122.637922,37.973227],[-122.638392,37.974952],[-122.639647,37.975736],[-122.640745,37.977148],[-122.641529,37.977462],[-122.643725,37.979187],[-122.645764,37.981853],[-122.642627,37.985147],[-122.637608,37.992832],[-122.634314,37.994714],[-122.633530,37.995028],[-122.632903,37.994871],[-122.632746,37.995498],[-122.631805,37.995341],[-122.631648,37.995969],[-122.629452,37.997067],[-122.629295,37.997851],[-122.628825,37.998008],[-122.628668,37.998792],[-122.628354,37.999419],[-122.627413,37.999733],[-122.627256,38.000360],[-122.626472,38.000047],[-122.626315,38.000047],[-122.626002,38.001301],[-122.626943,38.001929],[-122.626786,38.002242],[-122.627100,38.003340],[-122.626943,38.004124],[-122.627256,38.005693],[-122.626786,38.006320],[-122.626002,38.006477],[-122.624747,38.007575],[-122.622081,38.007889],[-122.620199,38.007418],[-122.619414,38.007104],[-122.618317,38.007104],[-122.617219,38.006477],[-122.616905,38.006006],[-122.617062,38.005693],[-122.616748,38.005379],[-122.616278,38.005379],[-122.615650,38.004752],[-122.614552,38.004438],[-122.615964,38.004438],[-122.616591,38.004595],[-122.616748,38.004438],[-122.616591,38.004438],[-122.615337,38.004124],[-122.614239,38.004124],[-122.614396,38.005379],[-122.614552,38.005693],[-122.615807,38.006948],[-122.616121,38.007575],[-122.617376,38.008359],[-122.617532,38.008830],[-122.617376,38.009771],[-122.617846,38.010869],[-122.618160,38.011182],[-122.618003,38.011496],[-122.617062,38.011653],[-122.616434,38.012280],[-122.615964,38.012280],[-122.614866,38.011966],[-122.614552,38.011025],[-122.613925,38.011025],[-122.613611,38.010555],[-122.614082,38.011810],[-122.613455,38.012594],[-122.613925,38.012907],[-122.614082,38.013378],[-122.613925,38.013849],[-122.614396,38.014946],[-122.613925,38.015887],[-122.614396,38.016201],[-122.614396,38.016515],[-122.614082,38.017613],[-122.613768,38.017770],[-122.613611,38.018240],[-122.614866,38.018083],[-122.614709,38.018397],[-122.614239,38.018554],[-122.615023,38.018711],[-122.615650,38.018711],[-122.616278,38.018240],[-122.616905,38.018240],[-122.616591,38.018711],[-122.616121,38.018711],[-122.615337,38.019652],[-122.615493,38.019652],[-122.616278,38.019338],[-122.616591,38.019652],[-122.615650,38.020279],[-122.612827,38.022161],[-122.613141,38.018240],[-122.612827,38.018083],[-122.612513,38.017613],[-122.611729,38.017299],[-122.610945,38.017926],[-122.610318,38.017926],[-122.609847,38.018554],[-122.609220,38.018083],[-122.608749,38.018083],[-122.608592,38.017299],[-122.607965,38.016828],[-122.609220,38.016828],[-122.609220,38.016672],[-122.608436,38.016044],[-122.608122,38.014790],[-122.607651,38.014476],[-122.607495,38.013221],[-122.606240,38.013221],[-122.605456,38.012437],[-122.604358,38.012280],[-122.603417,38.011496],[-122.603574,38.011339],[-122.603730,38.011339],[-122.603574,38.011182],[-122.603103,38.011182],[-122.602633,38.011025],[-122.602005,38.011025],[-122.601848,38.010869],[-122.602005,38.010555],[-122.602633,38.010084],[-122.602789,38.009928],[-122.602633,38.009771],[-122.601221,38.009457],[-122.600750,38.008830],[-122.599339,38.008045],[-122.597614,38.007732],[-122.595418,38.008359],[-122.595261,38.008202],[-122.595261,38.008045],[-122.592438,38.007104],[-122.591654,38.006791],[-122.591026,38.006948],[-122.590242,38.006791],[-122.589458,38.006477],[-122.586321,38.005693],[-122.585066,38.004909],[-122.585223,38.003968],[-122.585537,38.003968],[-122.586478,38.003183],[-122.586321,38.003183],[-122.585537,38.003183],[-122.585537,38.002556],[-122.586948,37.999419]]]}}
,{"id":94971,"type":"Feature","properties":{"name":"Tomales"},"geometry":{"type":"Polygon","coordinates":[[[-122.900472,38.273419],[-122.901257,38.272322],[-122.902198,38.270283],[-122.900786,38.267303],[-122.899688,38.266675],[-122.898277,38.265107],[-122.897963,38.264323],[-122.898120,38.263538],[-122.897963,38.263068],[-122.897649,38.262754],[-122.897179,38.262754],[-122.896551,38.262441],[-122.892630,38.262597],[-122.891219,38.262911],[-122.890121,38.263225],[-122.888709,38.264009],[-122.888239,38.265107],[-122.887455,38.265734],[-122.886671,38.266205],[-122.885102,38.266832],[-122.881652,38.266518],[-122.880711,38.266205],[-122.878829,38.266048],[-122.878044,38.266518],[-122.877417,38.266518],[-122.876790,38.266205],[-122.876319,38.265264],[-122.875064,38.264166],[-122.873810,38.264009],[-122.873182,38.264323],[-122.873025,38.265107],[-122.873182,38.265421],[-122.873025,38.266675],[-122.872555,38.267303],[-122.871928,38.267459],[-122.870830,38.267146],[-122.869889,38.266675],[-122.869104,38.264793],[-122.868634,38.264009],[-122.868320,38.263538],[-122.867693,38.263068],[-122.866124,38.263068],[-122.861733,38.264323],[-122.860949,38.264323],[-122.860321,38.264009],[-122.860008,38.263538],[-122.859851,38.262597],[-122.860008,38.261813],[-122.860635,38.261343],[-122.860949,38.260715],[-122.860792,38.260088],[-122.860165,38.259461],[-122.860008,38.258833],[-122.859380,38.258520],[-122.859380,38.255226],[-122.852793,38.238758],[-122.860165,38.228093],[-122.862203,38.230131],[-122.861419,38.230759],[-122.863144,38.230445],[-122.870045,38.231073],[-122.870673,38.231229],[-122.871928,38.232641],[-122.873025,38.233425],[-122.875692,38.233582],[-122.877103,38.234052],[-122.882906,38.234680],[-122.884318,38.235464],[-122.884945,38.236562],[-122.885259,38.237973],[-122.885573,38.238444],[-122.886043,38.241424],[-122.886043,38.243149],[-122.891533,38.242051],[-122.902511,38.242365],[-122.902668,38.242051],[-122.903766,38.241267],[-122.903923,38.240953],[-122.905021,38.240640],[-122.905178,38.240326],[-122.905335,38.239699],[-122.906903,38.238287],[-122.907687,38.237973],[-122.908001,38.237503],[-122.909256,38.236405],[-122.909412,38.234837],[-122.912863,38.232798],[-122.913647,38.233268],[-122.914588,38.233111],[-122.915529,38.232798],[-122.915686,38.232484],[-122.915686,38.232170],[-122.915215,38.230445],[-122.915372,38.229975],[-122.915843,38.229190],[-122.917411,38.227465],[-122.917568,38.226210],[-122.917254,38.224799],[-122.917411,38.224172],[-122.918823,38.223387],[-122.921019,38.222603],[-122.922273,38.221976],[-122.922430,38.221662],[-122.923999,38.219780],[-122.926665,38.215388],[-122.928233,38.213663],[-122.937957,38.201430],[-122.943760,38.206135],[-122.952544,38.212879],[-122.956621,38.216486],[-122.962895,38.222760],[-122.967130,38.226681],[-122.971992,38.230445],[-122.974187,38.233268],[-122.977952,38.240169],[-122.973560,38.241424],[-122.972933,38.243149],[-122.971992,38.246913],[-122.972149,38.249737],[-122.967287,38.249580],[-122.967443,38.248952],[-122.966502,38.249266],[-122.966502,38.247384],[-122.965718,38.246757],[-122.966189,38.244404],[-122.964307,38.244874],[-122.962581,38.244874],[-122.961954,38.244718],[-122.962268,38.245188],[-122.961797,38.246913],[-122.960856,38.247854],[-122.960542,38.248011],[-122.958974,38.247227],[-122.957876,38.246913],[-122.956621,38.247070],[-122.955837,38.247698],[-122.954896,38.248168],[-122.953798,38.248168],[-122.952700,38.247541],[-122.952387,38.247698],[-122.952230,38.247854],[-122.952544,38.248795],[-122.952544,38.249109],[-122.945015,38.250678],[-122.943604,38.249423],[-122.942663,38.248795],[-122.942663,38.244874],[-122.942035,38.244090],[-122.941565,38.242836],[-122.939526,38.241738],[-122.937801,38.241738],[-122.933880,38.243933],[-122.931056,38.245816],[-122.928076,38.246757],[-122.925096,38.248011],[-122.923842,38.248011],[-122.923685,38.250050],[-122.923999,38.251462],[-122.926822,38.255696],[-122.927449,38.257422],[-122.926822,38.261343],[-122.927292,38.263538],[-122.927449,38.264950],[-122.926979,38.270439],[-122.927449,38.272008],[-122.927292,38.272478],[-122.924783,38.273106],[-122.922587,38.272949],[-122.919764,38.273106],[-122.917254,38.273106],[-122.913177,38.273419],[-122.914274,38.273263],[-122.916470,38.273106],[-122.917568,38.272322],[-122.917882,38.272165],[-122.917882,38.270753],[-122.917411,38.269655],[-122.916784,38.269185],[-122.915686,38.268871],[-122.914431,38.269185],[-122.912549,38.269342],[-122.912079,38.269655],[-122.911765,38.269969],[-122.910510,38.269812],[-122.909099,38.270439],[-122.907687,38.270126],[-122.906432,38.270126],[-122.904864,38.271380],[-122.904864,38.271851],[-122.904550,38.272165],[-122.904080,38.272322],[-122.903296,38.272165],[-122.902825,38.272322],[-122.902041,38.272165],[-122.900472,38.273419]],[[-122.964150,38.237660],[-122.965404,38.237346],[-122.968071,38.237503],[-122.968071,38.237660],[-122.968698,38.237503],[-122.969325,38.235307],[-122.969325,38.234209],[-122.968071,38.232798],[-122.966189,38.232641],[-122.963993,38.233582],[-122.962895,38.234209],[-122.961170,38.234523],[-122.960072,38.234994],[-122.960542,38.235621],[-122.960072,38.235935],[-122.959601,38.235935],[-122.959915,38.236091],[-122.962424,38.235621],[-122.962581,38.235464],[-122.963365,38.238287],[-122.964150,38.237973],[-122.964150,38.237660]]]}}
,{"id":95757,"type":"Feature","properties":{"name":"Elk Grove"},"geometry":{"type":"Polygon","coordinates":[[[-121.343674,38.357643],[-121.347596,38.354035],[-121.349007,38.350114],[-121.349791,38.348860],[-121.351673,38.346507],[-121.351830,38.345723],[-121.351517,38.344154],[-121.351360,38.341802],[-121.352928,38.340077],[-121.352144,38.339136],[-121.352614,38.338508],[-121.352928,38.337567],[-121.354967,38.336940],[-121.355594,38.335528],[-121.357320,38.334430],[-121.357947,38.334273],[-121.358888,38.334430],[-121.359202,38.334273],[-121.359986,38.332862],[-121.361554,38.332078],[-121.362339,38.330352],[-121.363280,38.329882],[-121.363593,38.329568],[-121.363750,38.329098],[-121.364691,38.328314],[-121.365632,38.327843],[-121.365946,38.327843],[-121.367357,38.323765],[-121.368926,38.322354],[-121.369553,38.321569],[-121.370965,38.320628],[-121.370965,38.320001],[-121.371435,38.318746],[-121.370808,38.317805],[-121.370808,38.317178],[-121.371749,38.316080],[-121.372690,38.315609],[-121.373317,38.314668],[-121.374258,38.314355],[-121.374258,38.313571],[-121.374415,38.312943],[-121.374572,38.312473],[-121.375827,38.311688],[-121.377395,38.308709],[-121.378336,38.307924],[-121.378650,38.306670],[-121.379748,38.305572],[-121.381316,38.303062],[-121.382414,38.301651],[-121.382885,38.300239],[-121.382885,38.299769],[-121.382728,38.299455],[-121.382100,38.299141],[-121.381473,38.298514],[-121.380846,38.296789],[-121.380375,38.296004],[-121.379748,38.294750],[-121.379748,38.292711],[-121.380218,38.291770],[-121.380532,38.290829],[-121.390570,38.290672],[-121.390570,38.299141],[-121.414253,38.299298],[-121.414253,38.290515],[-121.419742,38.290515],[-121.419742,38.275929],[-121.439347,38.275929],[-121.439033,38.274204],[-121.438563,38.272008],[-121.438563,38.271224],[-121.438720,38.270596],[-121.441072,38.265734],[-121.441229,38.264480],[-121.439661,38.257892],[-121.440131,38.255540],[-121.441229,38.256010],[-121.443111,38.256324],[-121.444209,38.256794],[-121.444993,38.256794],[-121.446405,38.255696],[-121.447817,38.255069],[-121.448130,38.255069],[-121.456286,38.276399],[-121.458168,38.284241],[-121.468363,38.277654],[-121.469304,38.277340],[-121.470402,38.277027],[-121.478087,38.277184],[-121.484831,38.276713],[-121.484831,38.276870],[-121.483576,38.276870],[-121.484360,38.277968],[-121.487811,38.294593],[-121.488595,38.299141],[-121.499417,38.299455],[-121.495810,38.276713],[-121.498319,38.276713],[-121.498476,38.278281],[-121.498476,38.279536],[-121.498633,38.280164],[-121.500515,38.281575],[-121.504122,38.284869],[-121.504436,38.285810],[-121.504750,38.287692],[-121.505691,38.290358],[-121.506789,38.291613],[-121.507730,38.292397],[-121.508357,38.292711],[-121.509141,38.293338],[-121.510553,38.295534],[-121.510710,38.296161],[-121.511494,38.304160],[-121.511337,38.305572],[-121.511180,38.305885],[-121.510553,38.305885],[-121.510239,38.307140],[-121.509455,38.308865],[-121.508827,38.309806],[-121.508357,38.310120],[-121.508043,38.310904],[-121.507102,38.311532],[-121.507259,38.312159],[-121.504906,38.314198],[-121.502868,38.317335],[-121.502240,38.317178],[-121.501926,38.317492],[-121.507886,38.352310],[-121.507573,38.352624],[-121.506161,38.343684],[-121.505847,38.343527],[-121.505691,38.343213],[-121.504906,38.339449],[-121.503965,38.336156],[-121.502711,38.336469],[-121.503338,38.335528],[-121.502554,38.335528],[-121.501770,38.335842],[-121.500201,38.337253],[-121.500201,38.338979],[-121.500044,38.339606],[-121.500358,38.341331],[-121.500044,38.342586],[-121.500044,38.343998],[-121.499888,38.343998],[-121.499574,38.343841],[-121.499260,38.343998],[-121.498947,38.344468],[-121.498790,38.344625],[-121.498790,38.346037],[-121.498319,38.347448],[-121.497535,38.347919],[-121.497378,38.349016],[-121.500044,38.349016],[-121.501456,38.349016],[-121.501299,38.369406],[-121.495810,38.371288],[-121.490634,38.372699],[-121.490948,38.386031],[-121.492202,38.386031],[-121.491732,38.386345],[-121.491104,38.386658],[-121.490320,38.386815],[-121.489693,38.386501],[-121.489536,38.385717],[-121.488752,38.385403],[-121.487340,38.385874],[-121.486713,38.386188],[-121.485458,38.386501],[-121.484831,38.386815],[-121.483890,38.386972],[-121.483576,38.387129],[-121.483106,38.387286],[-121.481851,38.387129],[-121.481224,38.387599],[-121.481067,38.388070],[-121.480753,38.388227],[-121.479655,38.388070],[-121.483890,38.408773],[-121.479028,38.408773],[-121.476989,38.408459],[-121.474950,38.407361],[-121.473068,38.405636],[-121.471656,38.404695],[-121.469931,38.404067],[-121.467735,38.403911],[-121.466167,38.404067],[-121.464442,38.404695],[-121.463030,38.405479],[-121.461618,38.407047],[-121.460521,38.407675],[-121.458639,38.408459],[-121.457070,38.408773],[-121.436210,38.408773],[-121.409077,38.409086],[-121.392452,38.408930],[-121.392295,38.407832],[-121.389315,38.407988],[-121.388688,38.407675],[-121.386962,38.405793],[-121.381944,38.398264],[-121.376611,38.390893],[-121.365005,38.378816],[-121.364534,38.378189],[-121.363907,38.376150],[-121.363436,38.375523],[-121.362182,38.376307],[-121.352771,38.367053],[-121.344772,38.359368],[-121.343674,38.357643]]]}}
,{"id":95831,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.505063,38.481233],[-121.503809,38.472136],[-121.503338,38.470254],[-121.503024,38.468529],[-121.503181,38.467117],[-121.503338,38.467117],[-121.504122,38.466490],[-121.505220,38.469784],[-121.508827,38.472764],[-121.519022,38.473548],[-121.538784,38.474646],[-121.543019,38.477312],[-121.544744,38.479194],[-121.547410,38.481233],[-121.559173,38.498015],[-121.558075,38.501936],[-121.556821,38.506484],[-121.551802,38.513856],[-121.547253,38.515267],[-121.533138,38.516836],[-121.525139,38.519032],[-121.524668,38.520914],[-121.525609,38.523109],[-121.524041,38.522796],[-121.522316,38.523266],[-121.521845,38.523109],[-121.522159,38.516208],[-121.520120,38.516208],[-121.518081,38.516679],[-121.516513,38.516836],[-121.514160,38.515738],[-121.511023,38.515581],[-121.510239,38.515424],[-121.509612,38.515110],[-121.507573,38.513542],[-121.506945,38.513228],[-121.506004,38.513228],[-121.506632,38.512758],[-121.506475,38.509307],[-121.506161,38.508994],[-121.506318,38.502720],[-121.505847,38.502720],[-121.506161,38.489546],[-121.505063,38.481233]]]}}
,{"id":95823,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.475264,38.510405],[-121.464598,38.510405],[-121.464598,38.507739],[-121.462403,38.507739],[-121.462246,38.509464],[-121.461775,38.509621],[-121.461462,38.508837],[-121.460991,38.508680],[-121.459736,38.508680],[-121.456756,38.505700],[-121.456443,38.505700],[-121.458325,38.507582],[-121.460050,38.510405],[-121.443268,38.510405],[-121.443268,38.510092],[-121.441543,38.509307],[-121.441386,38.509935],[-121.440131,38.510092],[-121.438249,38.509935],[-121.438249,38.510405],[-121.435897,38.510562],[-121.433230,38.504759],[-121.432132,38.504916],[-121.429780,38.503975],[-121.429309,38.503975],[-121.427741,38.504759],[-121.427427,38.504759],[-121.427584,38.503347],[-121.428368,38.502250],[-121.429466,38.501309],[-121.431191,38.500681],[-121.425075,38.487507],[-121.424918,38.487193],[-121.422565,38.486879],[-121.422565,38.485311],[-121.423977,38.485154],[-121.422408,38.481703],[-121.415507,38.481703],[-121.415507,38.481390],[-121.420840,38.481390],[-121.421624,38.480762],[-121.421311,38.480135],[-121.421624,38.479978],[-121.421154,38.478880],[-121.418487,38.479665],[-121.418017,38.478880],[-121.417076,38.479037],[-121.416605,38.479194],[-121.415978,38.478567],[-121.415821,38.477155],[-121.415978,38.476685],[-121.416605,38.476371],[-121.416919,38.475900],[-121.416605,38.475430],[-121.415821,38.475273],[-121.415821,38.474332],[-121.418958,38.474332],[-121.417233,38.470411],[-121.415978,38.470725],[-121.411116,38.470725],[-121.411273,38.468999],[-121.413155,38.468999],[-121.413155,38.467117],[-121.415194,38.467117],[-121.414253,38.465235],[-121.414723,38.465235],[-121.411273,38.458177],[-121.411900,38.458177],[-121.412684,38.458021],[-121.417546,38.458021],[-121.418017,38.456139],[-121.418017,38.448610],[-121.417703,38.446101],[-121.417703,38.437945],[-121.420997,38.438102],[-121.423349,38.437788],[-121.423663,38.437945],[-121.424290,38.439357],[-121.425075,38.440454],[-121.425388,38.440611],[-121.429309,38.441239],[-121.434642,38.441239],[-121.435740,38.442023],[-121.437151,38.442337],[-121.438406,38.443121],[-121.439661,38.443434],[-121.440759,38.443591],[-121.441543,38.443905],[-121.442170,38.445003],[-121.442954,38.445630],[-121.443896,38.446885],[-121.444366,38.447199],[-121.444680,38.447199],[-121.444680,38.444219],[-121.444993,38.441552],[-121.446248,38.434181],[-121.455345,38.434181],[-121.457541,38.434181],[-121.458011,38.437631],[-121.459893,38.437631],[-121.459893,38.438886],[-121.459109,38.440141],[-121.458952,38.440925],[-121.459423,38.445317],[-121.459893,38.446101],[-121.459736,38.446258],[-121.460207,38.448610],[-121.459893,38.448924],[-121.460207,38.451433],[-121.461462,38.453002],[-121.464442,38.454884],[-121.464755,38.454727],[-121.465226,38.459746],[-121.463657,38.459903],[-121.461618,38.461471],[-121.460834,38.461471],[-121.461462,38.465392],[-121.466324,38.481547],[-121.475264,38.510405]]]}}
,{"id":95693,"type":"Feature","properties":{"name":"Wilton"},"geometry":{"type":"Polygon","coordinates":[[[-121.211144,38.454727],[-121.209576,38.457236],[-121.209262,38.458648],[-121.208949,38.459118],[-121.207380,38.460373],[-121.205028,38.461785],[-121.203773,38.463039],[-121.203145,38.464137],[-121.202989,38.464608],[-121.202989,38.466804],[-121.202204,38.469627],[-121.201420,38.471509],[-121.200950,38.472293],[-121.200009,38.475900],[-121.199538,38.476528],[-121.198440,38.477155],[-121.196715,38.478567],[-121.196401,38.479978],[-121.196558,38.480606],[-121.196872,38.481076],[-121.196872,38.481860],[-121.195460,38.484213],[-121.194676,38.484997],[-121.192010,38.486409],[-121.190912,38.486566],[-121.188716,38.485468],[-121.188559,38.485311],[-121.189030,38.484997],[-121.189187,38.484840],[-121.188559,38.484056],[-121.186520,38.483272],[-121.157348,38.466490],[-121.156564,38.466333],[-121.149977,38.466333],[-121.144173,38.465549],[-121.142762,38.445317],[-121.141194,38.403126],[-121.134136,38.404067],[-121.133508,38.404067],[-121.131626,38.404224],[-121.130685,38.404852],[-121.130372,38.405165],[-121.130215,38.405950],[-121.129430,38.407361],[-121.128960,38.409400],[-121.127392,38.410341],[-121.125980,38.410184],[-121.124882,38.410184],[-121.124568,38.410498],[-121.124568,38.410968],[-121.124725,38.411282],[-121.125980,38.412380],[-121.126451,38.413007],[-121.125980,38.413948],[-121.124725,38.415360],[-121.123941,38.415517],[-121.122686,38.415203],[-121.122059,38.415360],[-121.121745,38.416144],[-121.120647,38.416615],[-121.119863,38.417242],[-121.118452,38.416772],[-121.118295,38.416615],[-121.118452,38.416301],[-121.118452,38.416301],[-121.116570,38.416458],[-121.115315,38.416928],[-121.113746,38.418183],[-121.113746,38.418497],[-121.112649,38.419124],[-121.112021,38.420222],[-121.112335,38.421006],[-121.112178,38.421634],[-121.111080,38.422731],[-121.110453,38.423045],[-121.109355,38.423516],[-121.108884,38.423673],[-121.107473,38.423986],[-121.107002,38.423986],[-121.105277,38.423202],[-121.104179,38.423202],[-121.102924,38.423829],[-121.102297,38.424457],[-121.101827,38.424770],[-121.100886,38.424143],[-121.100101,38.423359],[-121.098847,38.422731],[-121.097749,38.422888],[-121.096651,38.423516],[-121.095710,38.423673],[-121.094769,38.423673],[-121.093357,38.422261],[-121.091946,38.422261],[-121.091005,38.421477],[-121.090848,38.419124],[-121.089907,38.418497],[-121.089436,38.418340],[-121.088025,38.418967],[-121.086613,38.419281],[-121.084731,38.418967],[-121.084574,38.419438],[-121.084260,38.419595],[-121.082222,38.419752],[-121.081751,38.419438],[-121.080183,38.419281],[-121.078614,38.418654],[-121.077359,38.418497],[-121.076889,38.418183],[-121.075007,38.417556],[-121.073909,38.417399],[-121.072811,38.417713],[-121.070458,38.417556],[-121.066694,38.415517],[-121.065126,38.414419],[-121.064028,38.414419],[-121.063401,38.414105],[-121.061675,38.414105],[-121.061362,38.413948],[-121.060578,38.413007],[-121.059793,38.413007],[-121.058695,38.412380],[-121.055872,38.411910],[-121.054304,38.411282],[-121.051481,38.411439],[-121.050853,38.411439],[-121.050383,38.411125],[-121.050069,38.410655],[-121.049285,38.410184],[-121.048815,38.409871],[-121.073909,38.409086],[-121.074066,38.394187],[-121.091161,38.393716],[-121.100258,38.393559],[-121.149036,38.393402],[-121.150604,38.392775],[-121.150761,38.392618],[-121.150761,38.391834],[-121.150918,38.391520],[-121.152172,38.391207],[-121.153584,38.391207],[-121.155152,38.391520],[-121.158603,38.391050],[-121.159073,38.390579],[-121.158446,38.389795],[-121.158446,38.389481],[-121.158916,38.388227],[-121.159387,38.387913],[-121.160171,38.388070],[-121.160328,38.388070],[-121.160642,38.386815],[-121.161426,38.386031],[-121.162053,38.385560],[-121.163308,38.385247],[-121.164563,38.385403],[-121.165190,38.385090],[-121.166131,38.385090],[-121.167543,38.384776],[-121.168484,38.385247],[-121.168484,38.386031],[-121.169268,38.386188],[-121.170680,38.385874],[-121.172091,38.385090],[-121.176796,38.383521],[-121.179463,38.383521],[-121.181188,38.383678],[-121.184168,38.385090],[-121.185893,38.386501],[-121.186677,38.386345],[-121.200636,38.386815],[-121.191226,38.371288],[-121.190128,38.369092],[-121.189657,38.365485],[-121.189657,38.346978],[-121.189971,38.343057],[-121.190912,38.340233],[-121.191069,38.339449],[-121.190755,38.338508],[-121.189344,38.335685],[-121.220398,38.335842],[-121.220868,38.340077],[-121.222594,38.343213],[-121.244395,38.343057],[-121.244395,38.351840],[-121.290035,38.352310],[-121.293642,38.351996],[-121.297563,38.351526],[-121.297563,38.338822],[-121.298191,38.338822],[-121.299132,38.338195],[-121.301641,38.337097],[-121.302269,38.337097],[-121.303523,38.337253],[-121.304151,38.337567],[-121.305876,38.338508],[-121.306974,38.338822],[-121.315600,38.338822],[-121.315600,38.337881],[-121.315757,38.338038],[-121.316227,38.338665],[-121.318110,38.339136],[-121.320619,38.338822],[-121.320619,38.335685],[-121.331911,38.335685],[-121.335519,38.343527],[-121.335832,38.343527],[-121.337244,38.346193],[-121.343674,38.357643],[-121.342890,38.358427],[-121.342263,38.359995],[-121.341792,38.360466],[-121.339126,38.361877],[-121.338499,38.362348],[-121.336617,38.363446],[-121.334264,38.364230],[-121.332853,38.364230],[-121.330186,38.364701],[-121.327677,38.364857],[-121.326422,38.365171],[-121.324540,38.367210],[-121.323913,38.368935],[-121.323913,38.369563],[-121.324383,38.370504],[-121.324854,38.372229],[-121.324697,38.372856],[-121.323599,38.373797],[-121.322972,38.374738],[-121.321560,38.375523],[-121.320776,38.375993],[-121.320148,38.376777],[-121.319678,38.378189],[-121.319207,38.378973],[-121.317796,38.379130],[-121.316541,38.380385],[-121.315600,38.380385],[-121.313718,38.381639],[-121.310267,38.382267],[-121.309170,38.382424],[-121.307915,38.382424],[-121.307131,38.382580],[-121.305876,38.382267],[-121.301641,38.384462],[-121.300230,38.384933],[-121.299916,38.386972],[-121.300073,38.388383],[-121.299132,38.389168],[-121.297720,38.390893],[-121.297563,38.391677],[-121.296936,38.393402],[-121.296779,38.394343],[-121.296309,38.395598],[-121.296622,38.397323],[-121.295838,38.399049],[-121.294113,38.399990],[-121.292545,38.399833],[-121.291603,38.400617],[-121.291447,38.401244],[-121.291760,38.402656],[-121.291603,38.403440],[-121.291917,38.403911],[-121.291603,38.404852],[-121.291290,38.405322],[-121.289878,38.405479],[-121.287526,38.404852],[-121.286428,38.405165],[-121.286114,38.405322],[-121.285800,38.405793],[-121.285800,38.406577],[-121.285644,38.407047],[-121.283918,38.408459],[-121.282507,38.410027],[-121.281879,38.411596],[-121.282193,38.412694],[-121.281879,38.413321],[-121.280938,38.415360],[-121.279684,38.416928],[-121.278115,38.417869],[-121.276233,38.417085],[-121.274037,38.417085],[-121.273253,38.416928],[-121.272626,38.417085],[-121.272155,38.416772],[-121.271214,38.416458],[-121.270901,38.416458],[-121.269646,38.417085],[-121.266509,38.416772],[-121.265882,38.417085],[-121.265725,38.418340],[-121.265411,38.418967],[-121.262117,38.420536],[-121.258667,38.421790],[-121.258510,38.421947],[-121.258040,38.422888],[-121.257569,38.423359],[-121.255844,38.424614],[-121.254119,38.425555],[-121.253178,38.425868],[-121.251295,38.425398],[-121.249257,38.425555],[-121.246120,38.425241],[-121.245492,38.425398],[-121.243767,38.426809],[-121.242199,38.428535],[-121.240473,38.429319],[-121.239532,38.430103],[-121.238278,38.430730],[-121.237807,38.431201],[-121.237807,38.432456],[-121.237964,38.433553],[-121.237650,38.434338],[-121.237180,38.434808],[-121.236866,38.435436],[-121.236866,38.436220],[-121.237337,38.437004],[-121.237023,38.438886],[-121.237180,38.439827],[-121.236552,38.440141],[-121.235768,38.440454],[-121.232788,38.440768],[-121.230593,38.440611],[-121.229652,38.440768],[-121.229024,38.441396],[-121.228083,38.441552],[-121.226044,38.442807],[-121.225574,38.443748],[-121.224319,38.444846],[-121.222594,38.445473],[-121.221339,38.446728],[-121.220084,38.447355],[-121.218986,38.447355],[-121.216791,38.446885],[-121.215536,38.446571],[-121.214595,38.446571],[-121.213811,38.447826],[-121.213183,38.449238],[-121.212085,38.450335],[-121.210988,38.451590],[-121.210988,38.452061],[-121.211615,38.452688],[-121.211772,38.453315],[-121.211615,38.453943],[-121.211144,38.454727]]]}}
,{"id":95827,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.359202,38.571730],[-121.346341,38.577690],[-121.345086,38.578317],[-121.328147,38.580042],[-121.327834,38.589139],[-121.331598,38.594472],[-121.331441,38.596824],[-121.331127,38.597609],[-121.328461,38.599961],[-121.328304,38.599334],[-121.329716,38.597609],[-121.329873,38.596040],[-121.328461,38.596040],[-121.327206,38.594942],[-121.327520,38.594158],[-121.327206,38.592590],[-121.326422,38.592276],[-121.325638,38.591492],[-121.325481,38.591021],[-121.324697,38.590394],[-121.324069,38.590394],[-121.324854,38.589610],[-121.324383,38.588669],[-121.324069,38.587257],[-121.323128,38.584120],[-121.321403,38.584591],[-121.320933,38.582866],[-121.320933,38.582395],[-121.322501,38.582081],[-121.321874,38.579729],[-121.309797,38.585689],[-121.309954,38.581297],[-121.309640,38.580356],[-121.309013,38.579572],[-121.304621,38.575337],[-121.301798,38.573612],[-121.300857,38.573612],[-121.300857,38.573141],[-121.300700,38.572828],[-121.298348,38.571259],[-121.298034,38.570789],[-121.301171,38.569377],[-121.302582,38.571573],[-121.303053,38.571730],[-121.303523,38.571730],[-121.305876,38.570632],[-121.306660,38.570632],[-121.306660,38.568436],[-121.306817,38.567652],[-121.306033,38.566868],[-121.305719,38.566397],[-121.306660,38.566084],[-121.308542,38.565927],[-121.314659,38.562790],[-121.317325,38.561065],[-121.317012,38.550870],[-121.320776,38.548518],[-121.321717,38.548831],[-121.321089,38.541617],[-121.318737,38.539107],[-121.317796,38.538637],[-121.316541,38.538637],[-121.314188,38.540048],[-121.313091,38.540205],[-121.309170,38.539421],[-121.304464,38.538950],[-121.298661,38.537852],[-121.297250,38.537068],[-121.292388,38.535813],[-121.297877,38.531736],[-121.297877,38.519188],[-121.334891,38.529069],[-121.334891,38.539264],[-121.343988,38.539264],[-121.353555,38.538793],[-121.356692,38.538950],[-121.355594,38.539107],[-121.355594,38.541146],[-121.354810,38.541146],[-121.354810,38.540362],[-121.352144,38.540362],[-121.350419,38.541146],[-121.349164,38.541146],[-121.349164,38.540675],[-121.343988,38.540519],[-121.343831,38.543969],[-121.344145,38.545381],[-121.344145,38.548831],[-121.346184,38.555105],[-121.348223,38.559967],[-121.348850,38.560908],[-121.350732,38.565299],[-121.351203,38.565456],[-121.353712,38.570632],[-121.354496,38.571259],[-121.357006,38.570789],[-121.358417,38.570789],[-121.359202,38.571730]]]}}
,{"id":94107,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.397799,37.784705],[-122.395603,37.786430],[-122.394192,37.785175],[-122.393407,37.785018],[-122.391996,37.785332],[-122.391055,37.785803],[-122.390114,37.786587],[-122.391368,37.785646],[-122.391368,37.785175],[-122.392153,37.784234],[-122.392153,37.784234],[-122.388545,37.787057],[-122.387604,37.787214],[-122.387918,37.788783],[-122.387447,37.789410],[-122.386350,37.790194],[-122.385565,37.790508],[-122.385565,37.790821],[-122.385252,37.791606],[-122.381644,37.783607],[-122.384781,37.782823],[-122.384781,37.782509],[-122.387761,37.782352],[-122.387761,37.781725],[-122.385565,37.781882],[-122.385565,37.781725],[-122.384781,37.781725],[-122.385565,37.781725],[-122.385565,37.781568],[-122.387604,37.781411],[-122.387604,37.780940],[-122.387447,37.781097],[-122.387447,37.780940],[-122.387291,37.781097],[-122.387291,37.780940],[-122.387291,37.781097],[-122.387134,37.780940],[-122.387134,37.781097],[-122.386977,37.780940],[-122.386977,37.781097],[-122.386977,37.780940],[-122.386820,37.781097],[-122.386663,37.780940],[-122.386663,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386350,37.781097],[-122.386350,37.781097],[-122.386193,37.781097],[-122.386193,37.781254],[-122.386036,37.781097],[-122.386036,37.781254],[-122.385879,37.781097],[-122.385879,37.781254],[-122.385879,37.781097],[-122.385722,37.781254],[-122.385722,37.781097],[-122.385565,37.781254],[-122.385565,37.781097],[-122.385565,37.781254],[-122.385409,37.781097],[-122.385409,37.781254],[-122.385252,37.781097],[-122.385252,37.781254],[-122.385095,37.781097],[-122.385095,37.781254],[-122.385095,37.781097],[-122.384938,37.781254],[-122.384781,37.781097],[-122.384781,37.781254],[-122.384781,37.780940],[-122.384781,37.781097],[-122.384938,37.780940],[-122.385095,37.781097],[-122.385095,37.780940],[-122.385095,37.781097],[-122.385252,37.780940],[-122.385252,37.781097],[-122.385252,37.780940],[-122.385409,37.781097],[-122.385409,37.780940],[-122.385565,37.781097],[-122.385565,37.780940],[-122.385722,37.781097],[-122.385722,37.780940],[-122.385722,37.781097],[-122.385879,37.780940],[-122.385879,37.781097],[-122.386036,37.780940],[-122.386036,37.781097],[-122.386036,37.780940],[-122.386193,37.781097],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386506,37.780940],[-122.386663,37.780940],[-122.386663,37.780940],[-122.386663,37.780940],[-122.386820,37.780940],[-122.386977,37.780940],[-122.386977,37.780784],[-122.386977,37.780940],[-122.386977,37.780784],[-122.387134,37.780940],[-122.387134,37.780784],[-122.387291,37.780940],[-122.387291,37.780784],[-122.387291,37.780940],[-122.387447,37.780784],[-122.387604,37.780940],[-122.387604,37.780470],[-122.387447,37.780627],[-122.387291,37.780470],[-122.387291,37.780627],[-122.387134,37.780470],[-122.387134,37.780627],[-122.386977,37.780470],[-122.386977,37.780627],[-122.386977,37.780470],[-122.386820,37.780627],[-122.386820,37.780470],[-122.386820,37.780627],[-122.386663,37.780470],[-122.386663,37.780627],[-122.386506,37.780470],[-122.386506,37.780627],[-122.386350,37.780627],[-122.386350,37.780627],[-122.386193,37.780627],[-122.386350,37.780627],[-122.386036,37.780627],[-122.386036,37.780627],[-122.386036,37.780627],[-122.385879,37.780627],[-122.385722,37.780627],[-122.385722,37.780627],[-122.385722,37.780627],[-122.385722,37.780784],[-122.385565,37.780627],[-122.385565,37.780784],[-122.385252,37.780627],[-122.385252,37.780784],[-122.385252,37.780627],[-122.385252,37.780784],[-122.384938,37.780627],[-122.384938,37.780784],[-122.384781,37.780627],[-122.384781,37.780784],[-122.384781,37.780470],[-122.384781,37.780627],[-122.384938,37.780470],[-122.384938,37.780627],[-122.385095,37.780470],[-122.385095,37.780627],[-122.385252,37.780470],[-122.385252,37.780627],[-122.385409,37.780470],[-122.385409,37.780627],[-122.385565,37.780470],[-122.385565,37.780627],[-122.385565,37.780470],[-122.385722,37.780627],[-122.385722,37.780470],[-122.385722,37.780627],[-122.385879,37.780470],[-122.385879,37.780627],[-122.386036,37.780470],[-122.386036,37.780627],[-122.386036,37.780470],[-122.386193,37.780470],[-122.386193,37.780470],[-122.386193,37.780470],[-122.386350,37.780470],[-122.386350,37.780470],[-122.386506,37.780470],[-122.386506,37.780470],[-122.386506,37.780470],[-122.386663,37.780470],[-122.386663,37.780470],[-122.386663,37.780470],[-122.386820,37.780470],[-122.386820,37.780470],[-122.386977,37.780470],[-122.386977,37.780470],[-122.387134,37.780313],[-122.387134,37.780470],[-122.387134,37.780313],[-122.387604,37.780470],[-122.387447,37.779999],[-122.387447,37.780156],[-122.387291,37.779999],[-122.387291,37.780156],[-122.386977,37.779999],[-122.386977,37.780156],[-122.386977,37.779999],[-122.386977,37.780156],[-122.386820,37.780156],[-122.386820,37.780156],[-122.386820,37.780156],[-122.386663,37.780156],[-122.386506,37.780156],[-122.386663,37.780156],[-122.386506,37.780156],[-122.386506,37.780156],[-122.386350,37.780156],[-122.386350,37.780156],[-122.386193,37.780156],[-122.386193,37.780156],[-122.386193,37.780156],[-122.386036,37.780313],[-122.386036,37.780156],[-122.386036,37.780313],[-122.385879,37.780156],[-122.385879,37.780313],[-122.385722,37.780156],[-122.385722,37.780313],[-122.385565,37.780156],[-122.385565,37.780313],[-122.385409,37.780156],[-122.385409,37.780313],[-122.385252,37.780156],[-122.385252,37.780313],[-122.385252,37.780156],[-122.385095,37.780313],[-122.385095,37.780156],[-122.385095,37.780313],[-122.384781,37.780156],[-122.384781,37.780313],[-122.384781,37.780156],[-122.384781,37.780156],[-122.384938,37.779999],[-122.385252,37.780156],[-122.385252,37.779999],[-122.385409,37.780156],[-122.385409,37.779999],[-122.385879,37.780156],[-122.385879,37.779999],[-122.386036,37.780156],[-122.386036,37.779999],[-122.386350,37.780156],[-122.386350,37.779999],[-122.386820,37.779999],[-122.386820,37.779999],[-122.386977,37.779999],[-122.386977,37.779999],[-122.387134,37.779999],[-122.387291,37.779999],[-122.387291,37.779999],[-122.387447,37.779999],[-122.387447,37.779999],[-122.387447,37.779686],[-122.384781,37.779843],[-122.384781,37.779686],[-122.387447,37.779686],[-122.387447,37.779215],[-122.384781,37.779529],[-122.384781,37.779372],[-122.387447,37.779215],[-122.387447,37.778902],[-122.384781,37.779215],[-122.384781,37.778902],[-122.387447,37.778902],[-122.387291,37.778588],[-122.385095,37.778745],[-122.385095,37.778588],[-122.387291,37.778588],[-122.387291,37.778431],[-122.385409,37.778431],[-122.387761,37.778274],[-122.387604,37.778274],[-122.390427,37.777176],[-122.390114,37.776863],[-122.390427,37.777019],[-122.390271,37.776706],[-122.392466,37.775137],[-122.394035,37.776392],[-122.394192,37.776392],[-122.396231,37.774667],[-122.396231,37.774510],[-122.397642,37.773098],[-122.397956,37.772314],[-122.398583,37.772942],[-122.400779,37.771216],[-122.396701,37.767766],[-122.396544,37.767923],[-122.394819,37.766511],[-122.394505,37.766511],[-122.393878,37.766041],[-122.393721,37.764002],[-122.387918,37.764315],[-122.387604,37.760551],[-122.386663,37.760551],[-122.386350,37.758042],[-122.385565,37.758042],[-122.385095,37.757728],[-122.384781,37.757728],[-122.381331,37.757885],[-122.381488,37.757571],[-122.381488,37.757101],[-122.381331,37.757101],[-122.381331,37.756473],[-122.381331,37.756317],[-122.381174,37.755846],[-122.381017,37.755846],[-122.381017,37.755689],[-122.380703,37.755532],[-122.380703,37.755219],[-122.381331,37.755062],[-122.381644,37.755219],[-122.383997,37.754905],[-122.384154,37.754591],[-122.383370,37.754748],[-122.382899,37.754434],[-122.381488,37.754591],[-122.380076,37.754591],[-122.380076,37.753337],[-122.386820,37.752866],[-122.386506,37.750357],[-122.391368,37.750200],[-122.393251,37.749886],[-122.393251,37.751455],[-122.395290,37.751298],[-122.395290,37.750984],[-122.395290,37.749729],[-122.402034,37.749416],[-122.402975,37.749572],[-122.403759,37.749416],[-122.403288,37.750827],[-122.403288,37.751298],[-122.402975,37.752709],[-122.403288,37.756160],[-122.403759,37.757101],[-122.405955,37.758983],[-122.406268,37.759453],[-122.406425,37.760238],[-122.406268,37.761335],[-122.405170,37.763531],[-122.405014,37.764629],[-122.401563,37.764786],[-122.401406,37.763531],[-122.400465,37.763688],[-122.400779,37.766197],[-122.399838,37.766197],[-122.399838,37.766511],[-122.399681,37.766668],[-122.400622,37.767452],[-122.401877,37.767452],[-122.402034,37.769962],[-122.403445,37.769805],[-122.403916,37.770119],[-122.399367,37.773569],[-122.402504,37.776078],[-122.402034,37.776392],[-122.403132,37.777333],[-122.403602,37.777019],[-122.405641,37.778431],[-122.397799,37.784705]]]}}
,{"id":94133,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.402190,37.798507],[-122.401877,37.796938],[-122.403602,37.796625],[-122.403445,37.796468],[-122.404386,37.796311],[-122.414895,37.795056],[-122.415522,37.798663],[-122.417247,37.798507],[-122.418031,37.802271],[-122.419600,37.801957],[-122.419757,37.802898],[-122.418188,37.803212],[-122.418188,37.803682],[-122.418972,37.806819],[-122.420541,37.806662],[-122.420698,37.807603],[-122.419129,37.807760],[-122.419286,37.808388],[-122.420070,37.808858],[-122.421011,37.812936],[-122.407523,37.812779],[-122.398426,37.807290],[-122.402347,37.805094],[-122.403445,37.805094],[-122.403445,37.805251],[-122.404543,37.806035],[-122.405641,37.806662],[-122.405955,37.806505],[-122.405327,37.805721],[-122.405170,37.804780],[-122.405955,37.804623],[-122.405798,37.803839],[-122.405641,37.803682],[-122.405014,37.803839],[-122.404857,37.802898],[-122.403132,37.803055],[-122.402190,37.798507]]]}}
,{"id":95376,"type":"Feature","properties":{"name":"Tracy"},"geometry":{"type":"Polygon","coordinates":[[[-121.453306,37.757885],[-121.443739,37.761806],[-121.440916,37.762433],[-121.438720,37.762747],[-121.424134,37.762747],[-121.414723,37.764159],[-121.414723,37.761492],[-121.410175,37.761492],[-121.410175,37.754278],[-121.416605,37.754278],[-121.416605,37.754121],[-121.414566,37.754121],[-121.414566,37.751141],[-121.414253,37.750357],[-121.413782,37.749886],[-121.413155,37.749729],[-121.410959,37.749572],[-121.410332,37.749416],[-121.409704,37.748631],[-121.409547,37.747690],[-121.409547,37.744710],[-121.410645,37.742985],[-121.410802,37.742515],[-121.410802,37.739691],[-121.416605,37.739691],[-121.416448,37.710362],[-121.416605,37.710676],[-121.434485,37.710519],[-121.434642,37.710676],[-121.434642,37.710833],[-121.434956,37.710676],[-121.452835,37.710519],[-121.452992,37.718047],[-121.455345,37.717891],[-121.455972,37.720871],[-121.454247,37.721655],[-121.453620,37.721655],[-121.453620,37.721969],[-121.453149,37.721969],[-121.453149,37.721498],[-121.452992,37.721498],[-121.453149,37.721812],[-121.453149,37.728242],[-121.453306,37.757885]]]}}
,{"id":95207,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.357163,38.018397],[-121.358574,38.021377],[-121.356692,38.021377],[-121.356692,38.020436],[-121.356065,38.019338],[-121.355438,38.019652],[-121.355908,38.020279],[-121.356065,38.021063],[-121.355438,38.021063],[-121.352144,38.021063],[-121.351517,38.020906],[-121.350732,38.021063],[-121.339440,38.021063],[-121.339440,38.021220],[-121.336146,38.021220],[-121.336303,38.020279],[-121.336774,38.019652],[-121.336303,38.019181],[-121.335205,38.019652],[-121.333323,38.019652],[-121.333323,38.021063],[-121.325324,38.021063],[-121.323913,38.019495],[-121.323599,38.019965],[-121.323128,38.021063],[-121.304935,38.020906],[-121.295368,38.003654],[-121.291290,37.993146],[-121.297877,37.991891],[-121.300073,37.991734],[-121.302269,37.991891],[-121.303994,37.991420],[-121.306033,37.990166],[-121.306346,37.989695],[-121.307444,37.987342],[-121.309170,37.984990],[-121.309954,37.984363],[-121.315443,37.980598],[-121.317796,37.979814],[-121.318580,37.979814],[-121.319051,37.979971],[-121.320305,37.980755],[-121.321560,37.980912],[-121.321717,37.981226],[-121.321874,37.981226],[-121.321560,37.980755],[-121.322501,37.980912],[-121.323442,37.980912],[-121.325952,37.981696],[-121.327677,37.981853],[-121.326579,37.981853],[-121.324697,37.981696],[-121.326579,37.982167],[-121.327520,37.982010],[-121.332068,37.980598],[-121.332853,37.980598],[-121.334578,37.980755],[-121.336303,37.980128],[-121.339126,37.979971],[-121.341165,37.979500],[-121.353712,38.011025],[-121.357163,38.018397]]]}}
,{"id":95204,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.291290,37.993146],[-121.289408,37.993616],[-121.287526,37.993302],[-121.283918,37.993616],[-121.281566,37.994400],[-121.282977,37.974325],[-121.285800,37.978873],[-121.287526,37.983108],[-121.291447,37.982167],[-121.289094,37.976050],[-121.289878,37.975736],[-121.289251,37.974638],[-121.288780,37.974795],[-121.288153,37.975423],[-121.287526,37.976834],[-121.287055,37.976834],[-121.287682,37.975736],[-121.288624,37.974638],[-121.288624,37.973854],[-121.286585,37.968678],[-121.297877,37.966796],[-121.297720,37.966796],[-121.297407,37.965855],[-121.298818,37.965699],[-121.298975,37.966640],[-121.305562,37.965542],[-121.305719,37.966012],[-121.305562,37.966796],[-121.305876,37.968051],[-121.306817,37.968365],[-121.307758,37.968522],[-121.314032,37.966796],[-121.313875,37.966169],[-121.327363,37.963032],[-121.328931,37.962562],[-121.346498,37.958170],[-121.349478,37.956759],[-121.353555,37.958013],[-121.354340,37.956915],[-121.359986,37.959739],[-121.369083,37.967110],[-121.368769,37.967424],[-121.367828,37.967267],[-121.365475,37.967424],[-121.365005,37.967581],[-121.364064,37.968208],[-121.363750,37.968365],[-121.362182,37.968208],[-121.359986,37.967581],[-121.359202,37.967581],[-121.358104,37.968051],[-121.354026,37.970090],[-121.352771,37.971031],[-121.351987,37.971972],[-121.351673,37.972756],[-121.350732,37.973697],[-121.349948,37.973854],[-121.348223,37.974011],[-121.347909,37.974325],[-121.347596,37.974952],[-121.346498,37.975579],[-121.345557,37.976521],[-121.343361,37.978089],[-121.341165,37.979500],[-121.339126,37.979971],[-121.336303,37.980128],[-121.334578,37.980755],[-121.332853,37.980598],[-121.332068,37.980598],[-121.327520,37.982010],[-121.326579,37.982167],[-121.324697,37.981696],[-121.326579,37.981853],[-121.327677,37.981853],[-121.325952,37.981696],[-121.323442,37.980912],[-121.322501,37.980912],[-121.321560,37.980755],[-121.321874,37.981226],[-121.321717,37.981226],[-121.321560,37.980912],[-121.320305,37.980755],[-121.319051,37.979971],[-121.318580,37.979814],[-121.318580,37.977932],[-121.317482,37.975423],[-121.316698,37.975736],[-121.316227,37.976364],[-121.315286,37.976207],[-121.313091,37.976677],[-121.313561,37.978089],[-121.306660,37.979814],[-121.309326,37.983265],[-121.309954,37.984363],[-121.309170,37.984990],[-121.307444,37.987342],[-121.306346,37.989695],[-121.306033,37.990166],[-121.303994,37.991420],[-121.302269,37.991891],[-121.300073,37.991734],[-121.297877,37.991891],[-121.291290,37.993146]]]}}
,{"id":95385,"type":"Feature","properties":{"name":"Vernalis"},"geometry":{"type":"Polygon","coordinates":[[[-121.287526,37.627551],[-121.285487,37.628962],[-121.287526,37.630844],[-121.287682,37.638216],[-121.278272,37.638216],[-121.269489,37.645430],[-121.269489,37.643862],[-121.258196,37.653429],[-121.247688,37.639627],[-121.235768,37.640411],[-121.230436,37.641039],[-121.226985,37.638373],[-121.220868,37.638686],[-121.214752,37.627864],[-121.210988,37.635863],[-121.196872,37.637275],[-121.185893,37.624884],[-121.188873,37.622061],[-121.185423,37.620022],[-121.186050,37.617983],[-121.174601,37.609200],[-121.176012,37.606063],[-121.179619,37.606691],[-121.180717,37.599319],[-121.178992,37.598378],[-121.180874,37.599319],[-121.182286,37.595869],[-121.182443,37.593830],[-121.185579,37.590066],[-121.188246,37.588340],[-121.193892,37.584890],[-121.195774,37.584890],[-121.203459,37.582224],[-121.205969,37.580185],[-121.225260,37.600260],[-121.229338,37.607475],[-121.231063,37.606377],[-121.232945,37.606848],[-121.248786,37.594614],[-121.269175,37.594771],[-121.269018,37.565442],[-121.285330,37.565599],[-121.286114,37.566383],[-121.287369,37.565599],[-121.288937,37.565599],[-121.298818,37.576107],[-121.307601,37.578930],[-121.319207,37.589595],[-121.330029,37.593830],[-121.324069,37.598849],[-121.287526,37.627551]]]}}
,{"id":95202,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.298818,37.965699],[-121.297407,37.965855],[-121.297720,37.966796],[-121.297877,37.966796],[-121.286585,37.968678],[-121.282036,37.969463],[-121.278429,37.955661],[-121.278272,37.952681],[-121.277488,37.951740],[-121.287682,37.950014],[-121.288937,37.949858],[-121.289094,37.950171],[-121.290349,37.949858],[-121.290506,37.950171],[-121.293015,37.949701],[-121.293956,37.952994],[-121.291290,37.953465],[-121.291447,37.953935],[-121.291603,37.954092],[-121.293329,37.953935],[-121.294740,37.954092],[-121.294270,37.954877],[-121.294897,37.956288],[-121.295524,37.958954],[-121.296936,37.958798],[-121.297093,37.959739],[-121.295838,37.960052],[-121.296309,37.961934],[-121.297720,37.961778],[-121.297877,37.962719],[-121.296622,37.962875],[-121.297250,37.964914],[-121.298504,37.964601],[-121.298818,37.965699]]]}}
,{"id":95234,"type":"Feature","properties":{"name":"Holt"},"geometry":{"type":"Polygon","coordinates":[[[-121.560428,37.858263],[-121.561840,37.857165],[-121.562310,37.856381],[-121.562310,37.855753],[-121.561212,37.854342],[-121.561212,37.853714],[-121.561526,37.853401],[-121.561996,37.853087],[-121.562624,37.853401],[-121.563408,37.854185],[-121.565917,37.857792],[-121.566388,37.858106],[-121.566702,37.857949],[-121.567956,37.857008],[-121.568740,37.857008],[-121.570466,37.857635],[-121.570623,37.857949],[-121.569368,37.858890],[-121.568740,37.859831],[-121.568270,37.859988],[-121.569054,37.860615],[-121.570623,37.860615],[-121.574230,37.859831],[-121.575641,37.859204],[-121.577053,37.858263],[-121.577994,37.857792],[-121.578621,37.858106],[-121.578935,37.858420],[-121.579406,37.860145],[-121.579562,37.861086],[-121.579092,37.861556],[-121.575485,37.863125],[-121.573759,37.864380],[-121.573446,37.864850],[-121.573446,37.865791],[-121.573759,37.866575],[-121.575171,37.867673],[-121.578778,37.870026],[-121.579406,37.870653],[-121.579406,37.872222],[-121.578151,37.875515],[-121.575798,37.879907],[-121.575014,37.880848],[-121.574073,37.882573],[-121.573916,37.883357],[-121.574857,37.885083],[-121.575955,37.887592],[-121.575798,37.888219],[-121.575485,37.889004],[-121.575014,37.889474],[-121.569838,37.890886],[-121.568427,37.891670],[-121.567643,37.892454],[-121.566858,37.894650],[-121.566388,37.895277],[-121.565917,37.897630],[-121.566231,37.898728],[-121.567015,37.899982],[-121.568113,37.901080],[-121.569054,37.901551],[-121.571720,37.902492],[-121.572505,37.903119],[-121.572818,37.903747],[-121.572818,37.904374],[-121.572191,37.905001],[-121.570936,37.905942],[-121.564819,37.909079],[-121.563251,37.910648],[-121.563094,37.911589],[-121.563251,37.912216],[-121.565761,37.915510],[-121.565917,37.916294],[-121.565917,37.916921],[-121.565604,37.918176],[-121.565604,37.918490],[-121.565133,37.919117],[-121.561840,37.920372],[-121.558232,37.921313],[-121.557291,37.921940],[-121.556350,37.923352],[-121.556350,37.923665],[-121.557919,37.925391],[-121.558546,37.926175],[-121.558860,37.927900],[-121.558546,37.929625],[-121.557605,37.930566],[-121.557134,37.931507],[-121.557291,37.932292],[-121.558703,37.933703],[-121.560742,37.935115],[-121.561526,37.935899],[-121.561840,37.936683],[-121.561996,37.937624],[-121.561840,37.938251],[-121.561683,37.938879],[-121.561055,37.939349],[-121.560898,37.939820],[-121.561526,37.941545],[-121.561996,37.942172],[-121.563251,37.942643],[-121.563565,37.943427],[-121.563408,37.944211],[-121.562781,37.944682],[-121.561840,37.944839],[-121.559957,37.944996],[-121.558232,37.945309],[-121.557762,37.945937],[-121.557605,37.946564],[-121.558232,37.947348],[-121.560742,37.947505],[-121.562467,37.946878],[-121.563565,37.946093],[-121.565604,37.944211],[-121.566545,37.943898],[-121.567486,37.944055],[-121.568113,37.944525],[-121.568584,37.945466],[-121.569054,37.947662],[-121.568897,37.948446],[-121.568584,37.949230],[-121.567956,37.949858],[-121.563722,37.953465],[-121.563408,37.954092],[-121.563565,37.954720],[-121.564035,37.955190],[-121.565290,37.955190],[-121.573603,37.953779],[-121.575171,37.955033],[-121.575328,37.955661],[-121.575171,37.956288],[-121.574544,37.956915],[-121.573289,37.957386],[-121.571564,37.957543],[-121.567956,37.957543],[-121.565604,37.957856],[-121.565133,37.958170],[-121.564976,37.958954],[-121.565133,37.959895],[-121.565761,37.960523],[-121.566388,37.960993],[-121.570152,37.963189],[-121.573759,37.966483],[-121.573916,37.967267],[-121.573916,37.970561],[-121.574387,37.972443],[-121.575485,37.973697],[-121.576426,37.973854],[-121.577837,37.974638],[-121.579406,37.976050],[-121.579876,37.976050],[-121.580190,37.976364],[-121.580033,37.976991],[-121.579249,37.977462],[-121.578621,37.977618],[-121.576896,37.977775],[-121.574230,37.977462],[-121.573289,37.977618],[-121.572662,37.978089],[-121.572348,37.979030],[-121.573603,37.980285],[-121.577680,37.980912],[-121.579562,37.981539],[-121.580504,37.982010],[-121.581445,37.982794],[-121.580190,37.983265],[-121.579406,37.987029],[-121.579092,37.987656],[-121.575328,37.989695],[-121.574700,37.990322],[-121.574544,37.990950],[-121.574387,37.993930],[-121.574073,37.995185],[-121.573759,37.995812],[-121.572034,37.997223],[-121.570623,37.997694],[-121.569995,37.998164],[-121.566702,38.001301],[-121.564819,38.003027],[-121.561212,38.003811],[-121.560271,38.004124],[-121.557448,38.008516],[-121.556507,38.009300],[-121.555252,38.009457],[-121.551959,38.008359],[-121.551174,38.007889],[-121.550233,38.006163],[-121.548194,38.005065],[-121.545058,38.003811],[-121.544273,38.003654],[-121.543489,38.003811],[-121.541764,38.004909],[-121.540980,38.005222],[-121.537529,38.005065],[-121.534706,38.003968],[-121.534079,38.003968],[-121.532824,38.004438],[-121.532354,38.004438],[-121.532197,38.004281],[-121.532197,38.004124],[-121.524355,38.002085],[-121.524041,38.001772],[-121.524511,38.000988],[-121.525923,37.999576],[-121.529374,37.997067],[-121.530315,37.995655],[-121.530785,37.994243],[-121.530942,37.993302],[-121.530315,37.991891],[-121.529374,37.990636],[-121.529374,37.990166],[-121.529844,37.990009],[-121.533451,37.988754],[-121.534079,37.988440],[-121.534863,37.987656],[-121.535177,37.986872],[-121.535177,37.986088],[-121.534236,37.984049],[-121.534079,37.983265],[-121.534706,37.982167],[-121.536118,37.980285],[-121.536275,37.979657],[-121.536118,37.978716],[-121.534863,37.976991],[-121.534863,37.976677],[-121.535333,37.976050],[-121.538470,37.974011],[-121.538784,37.973541],[-121.538941,37.973070],[-121.538157,37.972913],[-121.538000,37.971972],[-121.536431,37.970717],[-121.535177,37.970090],[-121.533765,37.970247],[-121.532197,37.969149],[-121.531099,37.969306],[-121.530471,37.968992],[-121.530001,37.968992],[-121.528746,37.969149],[-121.528276,37.969463],[-121.527805,37.970247],[-121.527491,37.970874],[-121.527805,37.971502],[-121.527335,37.971345],[-121.527021,37.971188],[-121.527335,37.970247],[-121.527648,37.969620],[-121.529687,37.968522],[-121.530785,37.967737],[-121.530315,37.965385],[-121.529687,37.963503],[-121.530471,37.962562],[-121.530471,37.962248],[-121.530001,37.962562],[-121.530001,37.962405],[-121.530001,37.961307],[-121.530158,37.960680],[-121.529530,37.959268],[-121.527178,37.957229],[-121.526707,37.955504],[-121.525766,37.955661],[-121.524825,37.951740],[-121.524511,37.950642],[-121.523727,37.949858],[-121.523727,37.949073],[-121.524198,37.947662],[-121.524511,37.947348],[-121.528119,37.944996],[-121.531099,37.943741],[-121.531256,37.943270],[-121.531569,37.940918],[-121.531412,37.939820],[-121.522316,37.939663],[-121.478557,37.937310],[-121.478714,37.934958],[-121.435426,37.933233],[-121.435897,37.932762],[-121.436367,37.932135],[-121.436367,37.931037],[-121.436210,37.930253],[-121.435112,37.928527],[-121.433074,37.927273],[-121.432446,37.926332],[-121.432446,37.925704],[-121.432760,37.925234],[-121.435583,37.923352],[-121.435897,37.922881],[-121.435897,37.922097],[-121.436838,37.922411],[-121.436838,37.922254],[-121.436995,37.922254],[-121.439661,37.920685],[-121.443739,37.917862],[-121.446405,37.916294],[-121.453306,37.911589],[-121.455345,37.910020],[-121.460207,37.906883],[-121.465853,37.903903],[-121.467735,37.902806],[-121.472597,37.900296],[-121.474793,37.899198],[-121.483106,37.897159],[-121.483890,37.896846],[-121.486556,37.894650],[-121.488438,37.893866],[-121.487497,37.893709],[-121.487183,37.893866],[-121.488595,37.892611],[-121.489222,37.891513],[-121.489379,37.890886],[-121.490007,37.891199],[-121.490634,37.890258],[-121.490477,37.889317],[-121.490634,37.889160],[-121.504750,37.883200],[-121.505534,37.882887],[-121.507573,37.883044],[-121.508514,37.882887],[-121.509768,37.881946],[-121.511023,37.880691],[-121.512121,37.880064],[-121.530785,37.872222],[-121.552272,37.862968],[-121.553213,37.862341],[-121.553684,37.861870],[-121.554311,37.859831],[-121.554782,37.859204],[-121.555252,37.858890],[-121.556350,37.858733],[-121.558232,37.859361],[-121.559173,37.859518],[-121.559957,37.859361],[-121.560742,37.858890],[-121.561369,37.858106],[-121.560428,37.858263]]]}}
,{"id":94061,"type":"Feature","properties":{"name":"Redwood City"},"geometry":{"type":"Polygon","coordinates":[[[-122.229666,37.482160],[-122.225588,37.479180],[-122.225745,37.478552],[-122.224020,37.477141],[-122.223392,37.477611],[-122.222295,37.476827],[-122.221510,37.475572],[-122.221824,37.475102],[-122.221667,37.474945],[-122.220412,37.474317],[-122.218687,37.473063],[-122.218217,37.473847],[-122.219315,37.474631],[-122.217746,37.476984],[-122.217589,37.476984],[-122.214766,37.475259],[-122.215237,37.475102],[-122.215394,37.474788],[-122.216021,37.475259],[-122.217589,37.473376],[-122.213668,37.470553],[-122.213198,37.471181],[-122.211316,37.470083],[-122.211786,37.469299],[-122.212100,37.469455],[-122.213198,37.468044],[-122.213198,37.467730],[-122.214139,37.466475],[-122.215707,37.465064],[-122.216021,37.464907],[-122.216962,37.465064],[-122.218217,37.463339],[-122.218844,37.461613],[-122.220412,37.459261],[-122.220726,37.458633],[-122.222138,37.457222],[-122.220412,37.456281],[-122.220883,37.455810],[-122.219001,37.454556],[-122.219315,37.454242],[-122.217746,37.453144],[-122.224961,37.443890],[-122.240331,37.455026],[-122.241115,37.454399],[-122.242684,37.454085],[-122.243938,37.452830],[-122.247075,37.455497],[-122.254133,37.449850],[-122.255702,37.448125],[-122.257113,37.448125],[-122.257740,37.447968],[-122.258368,37.448125],[-122.259466,37.447498],[-122.260250,37.447498],[-122.260407,37.446557],[-122.260877,37.445929],[-122.261505,37.445145],[-122.263700,37.443577],[-122.266367,37.443734],[-122.268719,37.444204],[-122.269347,37.444361],[-122.269817,37.445302],[-122.269660,37.445459],[-122.269817,37.445616],[-122.268406,37.446557],[-122.269817,37.447811],[-122.269347,37.448282],[-122.268719,37.448596],[-122.268249,37.449380],[-122.266837,37.450164],[-122.265896,37.450321],[-122.265112,37.450007],[-122.264798,37.449537],[-122.263857,37.448909],[-122.263857,37.449537],[-122.265582,37.450321],[-122.268876,37.452360],[-122.268092,37.453144],[-122.267621,37.453144],[-122.267308,37.453144],[-122.267151,37.453771],[-122.266524,37.454242],[-122.266994,37.455183],[-122.267935,37.456281],[-122.267935,37.456595],[-122.267621,37.457222],[-122.266524,37.456751],[-122.266680,37.456124],[-122.266210,37.455967],[-122.266367,37.455340],[-122.264014,37.454085],[-122.263544,37.454712],[-122.263387,37.454556],[-122.263544,37.454399],[-122.263230,37.454242],[-122.262603,37.454399],[-122.262446,37.454712],[-122.261975,37.454399],[-122.261505,37.454869],[-122.259309,37.454399],[-122.259152,37.456124],[-122.258838,37.456438],[-122.259152,37.456438],[-122.259466,37.455810],[-122.259623,37.456124],[-122.258681,37.456751],[-122.259779,37.457536],[-122.259623,37.457849],[-122.258525,37.457222],[-122.257270,37.458320],[-122.258368,37.459418],[-122.258838,37.459261],[-122.258995,37.459574],[-122.258995,37.459731],[-122.258211,37.459888],[-122.258054,37.459574],[-122.257270,37.459888],[-122.256486,37.460202],[-122.255858,37.460986],[-122.254760,37.461457],[-122.254447,37.461770],[-122.254447,37.463025],[-122.254290,37.463339],[-122.253192,37.463652],[-122.251467,37.463652],[-122.249428,37.465378],[-122.249114,37.465221],[-122.248801,37.465691],[-122.248801,37.466475],[-122.249271,37.467260],[-122.250055,37.468201],[-122.249898,37.468671],[-122.243311,37.471181],[-122.242370,37.470553],[-122.239547,37.472749],[-122.240331,37.473220],[-122.240174,37.473376],[-122.239233,37.474788],[-122.238920,37.474631],[-122.238449,37.475259],[-122.238135,37.475102],[-122.236724,37.476513],[-122.237194,37.476827],[-122.232803,37.480748],[-122.231862,37.480121],[-122.229666,37.482160]]]}}
,{"id":94027,"type":"Feature","properties":{"name":"Atherton"},"geometry":{"type":"Polygon","coordinates":[[[-122.203944,37.439185],[-122.205356,37.440440],[-122.205513,37.439813],[-122.206610,37.440440],[-122.207081,37.439813],[-122.207708,37.440126],[-122.210061,37.438087],[-122.210845,37.438558],[-122.213198,37.435578],[-122.212414,37.435107],[-122.212884,37.433539],[-122.214609,37.432441],[-122.214296,37.432127],[-122.218217,37.428206],[-122.218530,37.428206],[-122.219315,37.429461],[-122.220099,37.428363],[-122.225274,37.423501],[-122.227627,37.424285],[-122.229195,37.424285],[-122.229195,37.424599],[-122.233430,37.428050],[-122.238606,37.431657],[-122.241900,37.434951],[-122.242370,37.435892],[-122.242056,37.435892],[-122.234058,37.430402],[-122.232803,37.431343],[-122.233744,37.432441],[-122.233744,37.433696],[-122.232803,37.434637],[-122.232332,37.434323],[-122.231548,37.435107],[-122.231862,37.435421],[-122.230450,37.437460],[-122.231234,37.438087],[-122.231391,37.438872],[-122.230921,37.439813],[-122.230921,37.440283],[-122.229509,37.439656],[-122.228254,37.439656],[-122.224961,37.443890],[-122.217746,37.453144],[-122.219315,37.454242],[-122.219001,37.454556],[-122.220883,37.455810],[-122.220412,37.456281],[-122.222138,37.457222],[-122.220726,37.458633],[-122.220412,37.459261],[-122.218844,37.461613],[-122.218217,37.463339],[-122.216962,37.465064],[-122.216021,37.464907],[-122.215707,37.465064],[-122.214139,37.466475],[-122.213198,37.467730],[-122.213198,37.468044],[-122.212100,37.469455],[-122.211786,37.469299],[-122.208963,37.467103],[-122.206454,37.465378],[-122.205826,37.466005],[-122.205513,37.465848],[-122.204258,37.467417],[-122.203944,37.467260],[-122.203317,37.468044],[-122.202376,37.467417],[-122.199710,37.470240],[-122.199553,37.470083],[-122.197984,37.472592],[-122.194377,37.471181],[-122.193436,37.471024],[-122.192338,37.472749],[-122.190142,37.471808],[-122.189672,37.471651],[-122.187005,37.476356],[-122.185594,37.476670],[-122.180261,37.476513],[-122.176811,37.476043],[-122.174145,37.475102],[-122.169439,37.472749],[-122.167871,37.471651],[-122.173988,37.459574],[-122.175399,37.460202],[-122.176497,37.458947],[-122.179634,37.460359],[-122.179320,37.460672],[-122.180418,37.461300],[-122.183398,37.457849],[-122.188574,37.460359],[-122.186221,37.463339],[-122.188103,37.464123],[-122.188888,37.464437],[-122.189044,37.464593],[-122.192181,37.460986],[-122.193436,37.461770],[-122.194847,37.460045],[-122.195318,37.460202],[-122.195632,37.459888],[-122.187476,37.455810],[-122.201905,37.438715],[-122.203003,37.439342],[-122.203160,37.438872],[-122.203944,37.439185]]]}}
,{"id":94080,"type":"Feature","properties":{"name":"South San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.422266,37.640725],[-122.423364,37.640255],[-122.423678,37.640568],[-122.432618,37.634608],[-122.436539,37.637745],[-122.444067,37.634295],[-122.445635,37.634765],[-122.445322,37.635393],[-122.445949,37.636020],[-122.446576,37.636334],[-122.447674,37.635079],[-122.448145,37.635079],[-122.448145,37.634922],[-122.449243,37.635079],[-122.452536,37.636804],[-122.454889,37.638216],[-122.458810,37.640411],[-122.460692,37.639784],[-122.462417,37.639470],[-122.463986,37.638843],[-122.468534,37.643705],[-122.471828,37.649195],[-122.470730,37.649351],[-122.469475,37.650292],[-122.468534,37.650449],[-122.466652,37.650292],[-122.463358,37.650292],[-122.458967,37.649822],[-122.456614,37.649979],[-122.455987,37.650292],[-122.455673,37.650606],[-122.454732,37.649979],[-122.453320,37.650136],[-122.450340,37.648567],[-122.453164,37.654998],[-122.453791,37.655939],[-122.458026,37.655468],[-122.456144,37.653586],[-122.458183,37.655782],[-122.456771,37.657193],[-122.461790,37.660173],[-122.463045,37.661114],[-122.462731,37.661742],[-122.463672,37.661428],[-122.463672,37.662369],[-122.463358,37.662212],[-122.463358,37.662526],[-122.462731,37.662369],[-122.462417,37.662840],[-122.462104,37.662683],[-122.461790,37.663624],[-122.460378,37.664094],[-122.461476,37.665349],[-122.459908,37.666604],[-122.453477,37.670839],[-122.453948,37.672721],[-122.453791,37.672721],[-122.447674,37.667545],[-122.444694,37.665506],[-122.437166,37.671309],[-122.436539,37.671152],[-122.435911,37.671623],[-122.433559,37.670211],[-122.432618,37.671936],[-122.431833,37.674916],[-122.429324,37.682131],[-122.429167,37.682915],[-122.428697,37.682445],[-122.428069,37.681190],[-122.427128,37.680876],[-122.426501,37.680249],[-122.425560,37.680249],[-122.425403,37.679622],[-122.424776,37.679308],[-122.424148,37.679308],[-122.423521,37.678524],[-122.422893,37.678053],[-122.422423,37.678053],[-122.420854,37.678367],[-122.419443,37.678053],[-122.417247,37.678210],[-122.415679,37.677583],[-122.414895,37.677583],[-122.413640,37.676798],[-122.412699,37.676955],[-122.412071,37.676642],[-122.410817,37.676485],[-122.407837,37.674760],[-122.404543,37.674289],[-122.402975,37.673348],[-122.400308,37.673662],[-122.399681,37.674289],[-122.397799,37.674289],[-122.397642,37.671466],[-122.392310,37.671309],[-122.392466,37.670839],[-122.392310,37.669897],[-122.391368,37.670054],[-122.388232,37.671780],[-122.387291,37.671780],[-122.387761,37.670995],[-122.387918,37.668800],[-122.389016,37.668329],[-122.391525,37.668486],[-122.392780,37.668329],[-122.392937,37.667702],[-122.392780,37.666604],[-122.395290,37.665192],[-122.394819,37.664408],[-122.394662,37.664408],[-122.391839,37.665976],[-122.391525,37.665820],[-122.391525,37.665663],[-122.391055,37.665976],[-122.390427,37.665976],[-122.388702,37.665820],[-122.387761,37.665035],[-122.387918,37.664565],[-122.387134,37.664565],[-122.385722,37.665192],[-122.385722,37.666290],[-122.385252,37.666918],[-122.386036,37.667545],[-122.385879,37.667702],[-122.384938,37.668329],[-122.384311,37.668329],[-122.381174,37.668172],[-122.381017,37.667702],[-122.381017,37.665506],[-122.381017,37.664722],[-122.381174,37.664565],[-122.374273,37.664094],[-122.374430,37.662526],[-122.374430,37.661585],[-122.374743,37.661271],[-122.375057,37.661114],[-122.379292,37.660958],[-122.379919,37.660644],[-122.379919,37.660487],[-122.380076,37.659703],[-122.379762,37.659389],[-122.379762,37.659075],[-122.379135,37.658762],[-122.377410,37.657507],[-122.376469,37.656409],[-122.376312,37.655311],[-122.375528,37.654998],[-122.377253,37.654841],[-122.377880,37.654527],[-122.378037,37.653586],[-122.377880,37.652802],[-122.377567,37.652175],[-122.379292,37.651233],[-122.379762,37.649979],[-122.380076,37.649822],[-122.380076,37.648567],[-122.380233,37.648097],[-122.385722,37.647940],[-122.386820,37.647783],[-122.388389,37.647783],[-122.391212,37.648097],[-122.391682,37.644019],[-122.393407,37.641980],[-122.393251,37.640725],[-122.392780,37.639941],[-122.392466,37.639627],[-122.391682,37.639314],[-122.391682,37.639157],[-122.394662,37.639157],[-122.395760,37.639000],[-122.397799,37.639000],[-122.397799,37.638529],[-122.399211,37.638686],[-122.400465,37.638529],[-122.401249,37.638216],[-122.402818,37.637118],[-122.402661,37.636804],[-122.402975,37.636490],[-122.402818,37.636020],[-122.402975,37.635706],[-122.403132,37.636020],[-122.403445,37.635706],[-122.403445,37.635549],[-122.403602,37.635549],[-122.405014,37.634922],[-122.405641,37.635393],[-122.406111,37.635079],[-122.405955,37.634765],[-122.407053,37.634452],[-122.407366,37.634452],[-122.409562,37.634138],[-122.411444,37.634295],[-122.411287,37.636334],[-122.411444,37.636334],[-122.411601,37.641039],[-122.416620,37.639314],[-122.416620,37.639314],[-122.417247,37.639157],[-122.418972,37.641980],[-122.422266,37.640725]]]}}
,{"id":94066,"type":"Feature","properties":{"name":"San Bruno"},"geometry":{"type":"Polygon","coordinates":[[[-122.422266,37.640725],[-122.418972,37.641980],[-122.417247,37.639157],[-122.416620,37.639314],[-122.416620,37.639314],[-122.411601,37.641039],[-122.411444,37.636334],[-122.411287,37.636334],[-122.411444,37.634295],[-122.409562,37.634138],[-122.407366,37.634452],[-122.407053,37.634452],[-122.405955,37.634765],[-122.406111,37.635079],[-122.405641,37.635393],[-122.405014,37.634922],[-122.403602,37.635549],[-122.403602,37.634295],[-122.402975,37.631785],[-122.403132,37.631785],[-122.402818,37.631315],[-122.403288,37.631158],[-122.402661,37.627237],[-122.400465,37.621277],[-122.403445,37.621120],[-122.405014,37.619709],[-122.404857,37.619552],[-122.405170,37.619395],[-122.400152,37.612651],[-122.401093,37.612180],[-122.400465,37.611553],[-122.401877,37.610769],[-122.403759,37.612651],[-122.403759,37.612808],[-122.404386,37.613278],[-122.404857,37.613905],[-122.405014,37.613905],[-122.406111,37.615003],[-122.406582,37.614846],[-122.405170,37.613905],[-122.405327,37.613592],[-122.405484,37.613905],[-122.405955,37.612964],[-122.405798,37.612494],[-122.405798,37.612180],[-122.406582,37.612180],[-122.406582,37.612337],[-122.406896,37.612651],[-122.408464,37.613592],[-122.409405,37.613905],[-122.410503,37.613435],[-122.410974,37.613435],[-122.416933,37.609828],[-122.418345,37.609357],[-122.418659,37.610141],[-122.420227,37.609357],[-122.420698,37.608887],[-122.420854,37.608102],[-122.422893,37.607161],[-122.423834,37.606377],[-122.425403,37.605750],[-122.425717,37.605279],[-122.426344,37.604966],[-122.428226,37.604966],[-122.427755,37.603711],[-122.426658,37.602142],[-122.424619,37.600260],[-122.426501,37.601829],[-122.428697,37.604181],[-122.428853,37.604025],[-122.429324,37.604495],[-122.431676,37.606848],[-122.437636,37.613592],[-122.438577,37.613435],[-122.438577,37.614376],[-122.440930,37.616572],[-122.444224,37.619238],[-122.442969,37.617670],[-122.444381,37.617199],[-122.441714,37.612808],[-122.445008,37.610769],[-122.451752,37.617199],[-122.451282,37.617670],[-122.451909,37.617826],[-122.451595,37.618140],[-122.451595,37.618297],[-122.453477,37.618768],[-122.454575,37.618454],[-122.462731,37.619395],[-122.470102,37.628492],[-122.470730,37.630531],[-122.471200,37.630374],[-122.472612,37.631628],[-122.472769,37.633824],[-122.471357,37.634608],[-122.471671,37.635236],[-122.469475,37.637275],[-122.468377,37.638373],[-122.468377,37.638216],[-122.466025,37.638686],[-122.463986,37.638843],[-122.462417,37.639470],[-122.460692,37.639784],[-122.458810,37.640411],[-122.454889,37.638216],[-122.452536,37.636804],[-122.449243,37.635079],[-122.448145,37.634922],[-122.448145,37.635079],[-122.447674,37.635079],[-122.446576,37.636334],[-122.445949,37.636020],[-122.445322,37.635393],[-122.445635,37.634765],[-122.444067,37.634295],[-122.436539,37.637745],[-122.432618,37.634608],[-122.423678,37.640568],[-122.423364,37.640255],[-122.422266,37.640725]]]}}
,{"id":94044,"type":"Feature","properties":{"name":"Pacifica"},"geometry":{"type":"Polygon","coordinates":[[[-122.495040,37.664408],[-122.493628,37.664408],[-122.491746,37.662369],[-122.489864,37.661114],[-122.488296,37.660958],[-122.485786,37.661428],[-122.485630,37.661742],[-122.485473,37.663153],[-122.485786,37.664251],[-122.485159,37.664251],[-122.485316,37.665349],[-122.485002,37.666918],[-122.482963,37.666761],[-122.481552,37.666133],[-122.478885,37.663624],[-122.476533,37.661742],[-122.471671,37.653900],[-122.471357,37.652959],[-122.471200,37.652175],[-122.471828,37.649195],[-122.468534,37.643705],[-122.463986,37.638843],[-122.466025,37.638686],[-122.468377,37.638216],[-122.468377,37.638373],[-122.469475,37.637275],[-122.471671,37.635236],[-122.471357,37.634608],[-122.472769,37.633824],[-122.472612,37.631628],[-122.471200,37.630374],[-122.470730,37.630531],[-122.470102,37.628492],[-122.462731,37.619395],[-122.454575,37.618454],[-122.453477,37.618768],[-122.451595,37.618297],[-122.451595,37.618140],[-122.453007,37.618297],[-122.452693,37.617513],[-122.452223,37.616101],[-122.451909,37.615631],[-122.452066,37.615003],[-122.452693,37.614219],[-122.452379,37.613905],[-122.451909,37.614219],[-122.450968,37.614376],[-122.450497,37.613905],[-122.450497,37.613121],[-122.449870,37.612808],[-122.449870,37.612180],[-122.450497,37.611710],[-122.451282,37.611553],[-122.451595,37.610925],[-122.450654,37.610455],[-122.450811,37.609828],[-122.451438,37.609357],[-122.451909,37.609200],[-122.452536,37.609514],[-122.453320,37.610925],[-122.453634,37.611082],[-122.455046,37.610298],[-122.456300,37.610298],[-122.456144,37.609514],[-122.456457,37.609043],[-122.456300,37.607632],[-122.456928,37.606691],[-122.457555,37.606377],[-122.457869,37.605907],[-122.458339,37.605750],[-122.458183,37.604652],[-122.456771,37.602456],[-122.455516,37.601201],[-122.454261,37.600731],[-122.452379,37.598221],[-122.449556,37.596653],[-122.448145,37.596182],[-122.447204,37.596182],[-122.445478,37.595241],[-122.443440,37.594457],[-122.462731,37.584890],[-122.459437,37.584733],[-122.459594,37.578146],[-122.450654,37.577989],[-122.450497,37.577675],[-122.450654,37.570461],[-122.459437,37.570774],[-122.459437,37.566069],[-122.459751,37.566069],[-122.467593,37.566226],[-122.467750,37.565285],[-122.467593,37.563560],[-122.477631,37.563560],[-122.477944,37.562148],[-122.480140,37.562148],[-122.481552,37.562619],[-122.482336,37.563246],[-122.483747,37.564658],[-122.485473,37.565442],[-122.487669,37.565912],[-122.490492,37.566069],[-122.492531,37.566540],[-122.493785,37.568108],[-122.493785,37.569363],[-122.494413,37.570304],[-122.495197,37.570461],[-122.497079,37.570304],[-122.497549,37.570461],[-122.499902,37.572343],[-122.500529,37.572343],[-122.501941,37.572186],[-122.502412,37.572343],[-122.502725,37.572813],[-122.504294,37.573127],[-122.506646,37.573911],[-122.507587,37.574068],[-122.508371,37.573911],[-122.509156,37.574068],[-122.509626,37.575009],[-122.509783,37.575793],[-122.510254,37.576264],[-122.512292,37.576891],[-122.512606,37.577362],[-122.513077,37.578930],[-122.512763,37.580028],[-122.512920,37.580342],[-122.513233,37.580342],[-122.513233,37.580655],[-122.513077,37.580969],[-122.512606,37.581126],[-122.512136,37.581596],[-122.512292,37.581910],[-122.512920,37.582224],[-122.512920,37.582537],[-122.511979,37.583008],[-122.511508,37.583478],[-122.511665,37.583949],[-122.512136,37.584106],[-122.513704,37.584263],[-122.513390,37.584419],[-122.511979,37.584733],[-122.508842,37.585047],[-122.510724,37.585517],[-122.514018,37.585204],[-122.514175,37.585674],[-122.514645,37.586145],[-122.517311,37.586772],[-122.517311,37.588654],[-122.517155,37.589125],[-122.517311,37.590693],[-122.517468,37.591320],[-122.518723,37.592261],[-122.519978,37.593359],[-122.520448,37.593516],[-122.520919,37.594300],[-122.519978,37.594928],[-122.516370,37.595241],[-122.514959,37.595712],[-122.514175,37.596496],[-122.514018,37.597594],[-122.514018,37.598065],[-122.514959,37.598378],[-122.514959,37.598692],[-122.514645,37.598692],[-122.511665,37.597908],[-122.510410,37.597280],[-122.507117,37.596026],[-122.505705,37.596496],[-122.503823,37.597594],[-122.502568,37.598692],[-122.501157,37.600417],[-122.500529,37.601201],[-122.499745,37.603083],[-122.500059,37.604338],[-122.501627,37.605436],[-122.502098,37.605907],[-122.501941,37.606534],[-122.502098,37.606534],[-122.501941,37.606691],[-122.501784,37.607318],[-122.501627,37.607632],[-122.500843,37.607946],[-122.500059,37.607946],[-122.499275,37.607789],[-122.498647,37.608102],[-122.497706,37.609200],[-122.497236,37.610612],[-122.496922,37.612180],[-122.497079,37.612494],[-122.497706,37.612808],[-122.497863,37.613592],[-122.498177,37.613905],[-122.498177,37.614219],[-122.497863,37.614376],[-122.497863,37.615474],[-122.498020,37.615788],[-122.498020,37.616258],[-122.497393,37.616415],[-122.497236,37.618297],[-122.497393,37.618924],[-122.497706,37.619552],[-122.497706,37.619238],[-122.497863,37.619238],[-122.498177,37.619709],[-122.498804,37.619552],[-122.498961,37.620179],[-122.498020,37.620806],[-122.496922,37.621120],[-122.496138,37.622845],[-122.496138,37.623473],[-122.495824,37.623943],[-122.495824,37.625355],[-122.495511,37.626453],[-122.494883,37.631628],[-122.495040,37.633354],[-122.494413,37.636804],[-122.494726,37.638843],[-122.494569,37.639157],[-122.494256,37.641823],[-122.494413,37.645901],[-122.494256,37.648410],[-122.494256,37.649822],[-122.494099,37.652018],[-122.494413,37.656409],[-122.494256,37.660958],[-122.494726,37.663310],[-122.495197,37.663624],[-122.495040,37.663938],[-122.495040,37.664408]]]}}
,{"id":94014,"type":"Feature","properties":{"name":"Daly City"},"geometry":{"type":"Polygon","coordinates":[[[-122.429324,37.682131],[-122.431833,37.674916],[-122.432618,37.671936],[-122.433559,37.670211],[-122.435911,37.671623],[-122.436539,37.671152],[-122.437166,37.671309],[-122.444694,37.665506],[-122.447674,37.667545],[-122.453791,37.672721],[-122.453948,37.672721],[-122.453477,37.670839],[-122.459908,37.666604],[-122.460221,37.667231],[-122.465240,37.671780],[-122.470259,37.677896],[-122.470573,37.678837],[-122.470730,37.682131],[-122.471671,37.683229],[-122.471514,37.686679],[-122.470573,37.689659],[-122.470573,37.692326],[-122.470730,37.694835],[-122.471514,37.697972],[-122.471828,37.702207],[-122.471357,37.702050],[-122.471200,37.704246],[-122.470887,37.705500],[-122.470102,37.706755],[-122.468691,37.708167],[-122.469161,37.708010],[-122.469161,37.708167],[-122.469004,37.708167],[-122.465397,37.708167],[-122.463515,37.708323],[-122.452223,37.708167],[-122.444537,37.708323],[-122.440460,37.708167],[-122.440460,37.708323],[-122.434029,37.708167],[-122.428226,37.708480],[-122.423834,37.708167],[-122.405327,37.708323],[-122.406896,37.704559],[-122.410346,37.705500],[-122.412228,37.701579],[-122.411287,37.701266],[-122.411915,37.699697],[-122.412385,37.699227],[-122.412071,37.699070],[-122.412385,37.698599],[-122.413640,37.698756],[-122.413797,37.698286],[-122.412856,37.697658],[-122.413954,37.697658],[-122.413954,37.697815],[-122.414895,37.697972],[-122.419600,37.699227],[-122.420698,37.699227],[-122.421011,37.699070],[-122.421952,37.698599],[-122.423834,37.696090],[-122.424462,37.695776],[-122.425403,37.695619],[-122.426501,37.696090],[-122.429638,37.698286],[-122.430579,37.698442],[-122.431520,37.697972],[-122.432304,37.696247],[-122.433245,37.695776],[-122.433245,37.695462],[-122.433559,37.695149],[-122.435127,37.695306],[-122.436382,37.694835],[-122.437166,37.694208],[-122.437636,37.694051],[-122.438734,37.694365],[-122.439989,37.694992],[-122.441244,37.694992],[-122.441871,37.694678],[-122.442028,37.694365],[-122.441871,37.694051],[-122.440460,37.692483],[-122.440460,37.691541],[-122.439989,37.690914],[-122.440303,37.689816],[-122.440303,37.689032],[-122.440146,37.688718],[-122.439832,37.688561],[-122.439519,37.688718],[-122.439362,37.688875],[-122.439362,37.689503],[-122.439205,37.689816],[-122.438577,37.690287],[-122.437950,37.690287],[-122.437323,37.689659],[-122.436852,37.688718],[-122.434970,37.687620],[-122.434970,37.686052],[-122.434343,37.685268],[-122.432774,37.684797],[-122.432147,37.684327],[-122.431520,37.684327],[-122.431206,37.684170],[-122.430579,37.684013],[-122.430735,37.682758],[-122.429324,37.682131]]]}}
,{"id":95134,"type":"Feature","properties":{"name":"San Jose"},"geometry":{"type":"Polygon","coordinates":[[[-121.967899,37.418953],[-121.959430,37.419266],[-121.961939,37.420521],[-121.965390,37.423188],[-121.966174,37.423501],[-121.966174,37.425540],[-121.968997,37.426324],[-121.969938,37.427265],[-121.968684,37.428050],[-121.963978,37.431343],[-121.955666,37.430716],[-121.952686,37.432598],[-121.952686,37.432755],[-121.953156,37.433539],[-121.953313,37.434009],[-121.953784,37.434323],[-121.955038,37.436205],[-121.955823,37.436362],[-121.956136,37.436676],[-121.956921,37.437931],[-121.958646,37.439813],[-121.959430,37.440440],[-121.959430,37.440597],[-121.959430,37.441067],[-121.961626,37.443577],[-121.962096,37.444047],[-121.962724,37.444047],[-121.963508,37.444831],[-121.963978,37.445145],[-121.964919,37.445145],[-121.966958,37.444988],[-121.967429,37.445302],[-121.967272,37.445773],[-121.965076,37.447184],[-121.965076,37.448596],[-121.968997,37.448596],[-121.967429,37.455183],[-121.965704,37.452987],[-121.967429,37.458163],[-121.964763,37.460359],[-121.974800,37.459731],[-121.974643,37.460672],[-121.968527,37.461927],[-121.966017,37.462868],[-121.964135,37.463182],[-121.959273,37.463495],[-121.955823,37.462711],[-121.951902,37.461457],[-121.949549,37.461457],[-121.948922,37.461613],[-121.947824,37.461927],[-121.947040,37.462554],[-121.946412,37.463339],[-121.946099,37.463966],[-121.946099,37.464437],[-121.947040,37.466319],[-121.947040,37.467417],[-121.946412,37.468514],[-121.945471,37.469142],[-121.944844,37.469142],[-121.944216,37.468514],[-121.944060,37.468044],[-121.944216,37.467573],[-121.944373,37.467417],[-121.944216,37.465848],[-121.943119,37.465064],[-121.941080,37.464907],[-121.940452,37.464280],[-121.939982,37.463182],[-121.939198,37.462554],[-121.938884,37.462398],[-121.936061,37.462868],[-121.934963,37.462398],[-121.934963,37.462084],[-121.935277,37.461457],[-121.935120,37.460829],[-121.934806,37.460516],[-121.933551,37.460202],[-121.932297,37.460359],[-121.933081,37.460672],[-121.933394,37.460829],[-121.932140,37.460986],[-121.931512,37.460986],[-121.931199,37.460672],[-121.931199,37.460202],[-121.931512,37.458790],[-121.931199,37.457379],[-121.932767,37.456908],[-121.932924,37.455497],[-121.932610,37.455183],[-121.932140,37.455340],[-121.930571,37.456438],[-121.929160,37.456908],[-121.928376,37.457379],[-121.927748,37.457065],[-121.927435,37.456751],[-121.927435,37.456281],[-121.927905,37.455340],[-121.927435,37.455026],[-121.926807,37.455183],[-121.926337,37.454556],[-121.925552,37.454399],[-121.924768,37.454085],[-121.924768,37.453771],[-121.925239,37.453301],[-121.927591,37.453144],[-121.928062,37.452987],[-121.928062,37.452517],[-121.927748,37.451889],[-121.927905,37.450791],[-121.927591,37.450478],[-121.927278,37.450478],[-121.926180,37.450948],[-121.925709,37.451576],[-121.925239,37.451576],[-121.923357,37.450164],[-121.923357,37.449850],[-121.923984,37.449066],[-121.924298,37.448282],[-121.924768,37.447498],[-121.924611,37.447341],[-121.923357,37.446714],[-121.924141,37.444361],[-121.923984,37.443890],[-121.923200,37.443106],[-121.923200,37.442793],[-121.923357,37.442479],[-121.924611,37.441695],[-121.924925,37.441067],[-121.926023,37.440126],[-121.926493,37.439342],[-121.926650,37.438558],[-121.926023,37.436989],[-121.926023,37.435578],[-121.926964,37.433539],[-121.928219,37.431500],[-121.928376,37.430559],[-121.928219,37.428991],[-121.927748,37.427579],[-121.925396,37.425226],[-121.925239,37.424599],[-121.925239,37.423815],[-121.925396,37.423501],[-121.926650,37.422560],[-121.930728,37.420521],[-121.931042,37.420051],[-121.931042,37.419894],[-121.930885,37.419580],[-121.929787,37.419266],[-121.929787,37.418953],[-121.930258,37.418012],[-121.928062,37.415502],[-121.927121,37.415502],[-121.926023,37.414561],[-121.925552,37.413150],[-121.924611,37.412836],[-121.923043,37.410954],[-121.922729,37.410483],[-121.923357,37.409386],[-121.923827,37.407660],[-121.923984,37.406876],[-121.923827,37.405935],[-121.923200,37.405465],[-121.921788,37.405778],[-121.920847,37.404680],[-121.918495,37.404053],[-121.918024,37.403739],[-121.917554,37.402798],[-121.917083,37.401073],[-121.915985,37.399975],[-121.915358,37.398877],[-121.915201,37.397779],[-121.915358,37.396525],[-121.915201,37.396054],[-121.918024,37.393858],[-121.918965,37.393545],[-121.920220,37.393545],[-121.921004,37.393702],[-121.921631,37.394172],[-121.924298,37.397152],[-121.925552,37.395897],[-121.923514,37.393074],[-121.921004,37.391192],[-121.924298,37.388212],[-121.926493,37.386644],[-121.931669,37.384291],[-121.931199,37.383507],[-121.931356,37.382566],[-121.935904,37.378017],[-121.937159,37.379272],[-121.937943,37.380527],[-121.938100,37.380997],[-121.938100,37.381782],[-121.937786,37.382252],[-121.936845,37.383193],[-121.935904,37.384291],[-121.935590,37.384918],[-121.935747,37.386016],[-121.936374,37.387428],[-121.938727,37.389310],[-121.939511,37.390408],[-121.939511,37.390722],[-121.939511,37.392604],[-121.940139,37.394643],[-121.941393,37.396838],[-121.941707,37.397779],[-121.941707,37.398877],[-121.941550,37.399348],[-121.941550,37.399975],[-121.941707,37.400289],[-121.942334,37.400759],[-121.942805,37.400916],[-121.945628,37.401073],[-121.947510,37.401544],[-121.952215,37.404837],[-121.953156,37.406406],[-121.954411,37.407503],[-121.956293,37.408445],[-121.958959,37.409386],[-121.960528,37.410170],[-121.961312,37.410797],[-121.967586,37.417855],[-121.967899,37.418953]]]}}
,{"id":95625,"type":"Feature","properties":{"name":"Elmira"},"geometry":{"type":"Polygon","coordinates":[[[-121.911123,38.348546],[-121.913319,38.349644],[-121.915672,38.349958],[-121.915515,38.350271],[-121.923200,38.351369],[-121.923670,38.351996],[-121.923984,38.352624],[-121.924768,38.353251],[-121.924768,38.358584],[-121.915515,38.358897],[-121.915515,38.359054],[-121.917710,38.359054],[-121.917710,38.366112],[-121.896851,38.366112],[-121.896851,38.364701],[-121.901713,38.358897],[-121.902026,38.358897],[-121.905947,38.354506],[-121.906104,38.351683],[-121.907516,38.351526],[-121.908300,38.350742],[-121.907202,38.350114],[-121.908614,38.348389],[-121.906888,38.347448],[-121.908457,38.346664],[-121.909398,38.347448],[-121.910339,38.347762],[-121.910653,38.348232],[-121.911123,38.348389],[-121.911123,38.348546],[-121.911123,38.348546]]]}}
,{"id":95363,"type":"Feature","properties":{"name":"Patterson"},"geometry":{"type":"Polygon","coordinates":[[[-121.205969,37.580185],[-121.203459,37.582224],[-121.195774,37.584890],[-121.193892,37.584890],[-121.188246,37.588340],[-121.185579,37.590066],[-121.182443,37.593830],[-121.182286,37.595869],[-121.180874,37.599319],[-121.178992,37.598378],[-121.178678,37.598065],[-121.174601,37.600260],[-121.172718,37.597751],[-121.178678,37.595085],[-121.174287,37.592889],[-121.172875,37.587556],[-121.168484,37.584576],[-121.167072,37.581596],[-121.167543,37.579557],[-121.168170,37.578930],[-121.169268,37.578303],[-121.171621,37.577832],[-121.172248,37.577518],[-121.172718,37.577048],[-121.172718,37.576421],[-121.172562,37.575950],[-121.170523,37.574695],[-121.170052,37.573911],[-121.169738,37.572970],[-121.169738,37.571872],[-121.170052,37.571088],[-121.170680,37.570774],[-121.171464,37.571088],[-121.172562,37.572029],[-121.173189,37.573284],[-121.173816,37.573597],[-121.174757,37.573441],[-121.175228,37.572813],[-121.175855,37.572500],[-121.176169,37.571402],[-121.176483,37.569833],[-121.176796,37.569363],[-121.176953,37.567167],[-121.176796,37.565755],[-121.175855,37.564344],[-121.174444,37.563246],[-121.173503,37.564030],[-121.172091,37.564814],[-121.170680,37.565285],[-121.169268,37.565442],[-121.167543,37.565442],[-121.159858,37.564814],[-121.158289,37.564501],[-121.154995,37.562932],[-121.154211,37.562775],[-121.154525,37.557443],[-121.149192,37.555561],[-121.148722,37.561207],[-121.131626,37.559482],[-121.128489,37.554463],[-121.124412,37.553992],[-121.123314,37.547876],[-121.116099,37.542543],[-121.111864,37.537367],[-121.114374,37.533917],[-121.111394,37.533289],[-121.109512,37.531878],[-121.111394,37.527486],[-121.109669,37.526388],[-121.099317,37.525291],[-121.098690,37.524036],[-121.101199,37.519801],[-121.092102,37.519801],[-121.092416,37.517292],[-121.096494,37.517605],[-121.096965,37.514939],[-121.090064,37.512430],[-121.081280,37.494393],[-121.080496,37.493766],[-121.069674,37.485610],[-121.069674,37.480121],[-121.066381,37.482160],[-121.062930,37.485924],[-121.061675,37.486551],[-121.060421,37.486081],[-121.059480,37.484669],[-121.060891,37.483257],[-121.061205,37.482003],[-121.060578,37.481689],[-121.057911,37.480905],[-121.055872,37.479336],[-121.050697,37.476827],[-121.049599,37.474788],[-121.048501,37.469769],[-121.044737,37.469455],[-121.034699,37.465064],[-121.034385,37.463339],[-121.043168,37.459104],[-121.043011,37.458947],[-121.043168,37.458947],[-121.036267,37.449694],[-121.031092,37.450791],[-121.028425,37.449537],[-121.026700,37.447184],[-121.027484,37.443577],[-121.022465,37.441067],[-121.022465,37.439656],[-121.036895,37.434951],[-121.037208,37.435107],[-121.067322,37.434794],[-121.141350,37.435421],[-121.141664,37.403739],[-121.141350,37.402641],[-121.139155,37.399661],[-121.138370,37.398720],[-121.136959,37.397466],[-121.138214,37.397623],[-121.138527,37.397623],[-121.148565,37.412052],[-121.150133,37.414875],[-121.153270,37.420992],[-121.153741,37.420835],[-121.154995,37.420208],[-121.156250,37.420051],[-121.158916,37.419266],[-121.160014,37.418796],[-121.160171,37.418482],[-121.162367,37.416443],[-121.162837,37.415502],[-121.163465,37.414875],[-121.164720,37.414718],[-121.165504,37.414875],[-121.166602,37.414404],[-121.167543,37.414404],[-121.169582,37.414875],[-121.173032,37.414718],[-121.175855,37.415345],[-121.178208,37.415345],[-121.179149,37.415345],[-121.180247,37.415816],[-121.181815,37.416914],[-121.184481,37.416914],[-121.185579,37.416443],[-121.185893,37.416443],[-121.186050,37.416914],[-121.186520,37.417698],[-121.186834,37.418325],[-121.187305,37.418482],[-121.187932,37.418169],[-121.188246,37.418169],[-121.188246,37.418796],[-121.187618,37.419110],[-121.187932,37.419580],[-121.188559,37.419894],[-121.188716,37.420208],[-121.188246,37.420678],[-121.188716,37.421149],[-121.189500,37.420992],[-121.189657,37.421305],[-121.189657,37.421776],[-121.189814,37.421933],[-121.190755,37.422246],[-121.191539,37.422560],[-121.192010,37.422717],[-121.192951,37.422560],[-121.193421,37.422717],[-121.193421,37.423188],[-121.196715,37.425383],[-121.197656,37.426011],[-121.198597,37.426167],[-121.202832,37.427109],[-121.203930,37.427109],[-121.210046,37.425383],[-121.210203,37.424913],[-121.210203,37.424285],[-121.210517,37.424285],[-121.211301,37.424599],[-121.213026,37.424285],[-121.213967,37.424285],[-121.214438,37.424442],[-121.214909,37.425226],[-121.215065,37.426011],[-121.215536,37.426324],[-121.216320,37.426324],[-121.217418,37.425854],[-121.218830,37.426324],[-121.219300,37.426167],[-121.220398,37.426011],[-121.221339,37.425383],[-121.220868,37.423972],[-121.221339,37.423658],[-121.223848,37.425070],[-121.225103,37.425383],[-121.225731,37.425383],[-121.226985,37.425540],[-121.227456,37.424756],[-121.227926,37.424599],[-121.229024,37.425226],[-121.230749,37.426481],[-121.232318,37.426952],[-121.233886,37.426638],[-121.234514,37.427422],[-121.235455,37.427893],[-121.237650,37.427265],[-121.237964,37.427109],[-121.238435,37.426167],[-121.238435,37.425070],[-121.239846,37.424285],[-121.239689,37.423501],[-121.240003,37.422874],[-121.240160,37.422560],[-121.240944,37.422403],[-121.241258,37.421933],[-121.241415,37.421619],[-121.241258,37.420992],[-121.241571,37.420364],[-121.242512,37.420051],[-121.243140,37.419423],[-121.243610,37.418169],[-121.244238,37.417071],[-121.244238,37.416130],[-121.244708,37.414561],[-121.244708,37.414091],[-121.238435,37.412679],[-121.238121,37.411268],[-121.238435,37.409856],[-121.237964,37.409229],[-121.237180,37.408915],[-121.235768,37.407503],[-121.234827,37.406249],[-121.234200,37.405621],[-121.235768,37.404837],[-121.236552,37.404210],[-121.238748,37.401700],[-121.238748,37.401387],[-121.239219,37.400289],[-121.239846,37.398564],[-121.246433,37.399191],[-121.251452,37.399191],[-121.253178,37.399661],[-121.254746,37.397779],[-121.256942,37.396054],[-121.258353,37.393858],[-121.263372,37.390251],[-121.264784,37.388212],[-121.265411,37.387742],[-121.266352,37.386801],[-121.266823,37.385389],[-121.270273,37.382095],[-121.272155,37.381625],[-121.275606,37.381625],[-121.277802,37.382095],[-121.279213,37.381938],[-121.280781,37.381311],[-121.281409,37.380527],[-121.282664,37.379900],[-121.283448,37.378802],[-121.283605,37.379115],[-121.283134,37.379586],[-121.283918,37.379900],[-121.285016,37.379429],[-121.285330,37.379743],[-121.285644,37.379743],[-121.285957,37.380056],[-121.286585,37.380056],[-121.286898,37.380370],[-121.287682,37.381468],[-121.288467,37.381938],[-121.289094,37.383036],[-121.289094,37.384134],[-121.289721,37.384762],[-121.289721,37.385389],[-121.290349,37.385546],[-121.290349,37.386016],[-121.290662,37.386330],[-121.290662,37.386801],[-121.290819,37.387271],[-121.291133,37.387742],[-121.292701,37.389310],[-121.292701,37.389624],[-121.293015,37.389937],[-121.293172,37.390408],[-121.293956,37.391506],[-121.294427,37.393388],[-121.297093,37.396681],[-121.299602,37.397623],[-121.302112,37.397623],[-121.302896,37.397936],[-121.306503,37.397309],[-121.306817,37.396995],[-121.309170,37.396211],[-121.312463,37.396368],[-121.315130,37.396054],[-121.317168,37.396681],[-121.318110,37.397779],[-121.318266,37.398877],[-121.318423,37.399034],[-121.318894,37.399191],[-121.319678,37.399505],[-121.321717,37.399818],[-121.322815,37.400759],[-121.324540,37.401073],[-121.325010,37.401700],[-121.325952,37.401700],[-121.326422,37.395740],[-121.329402,37.393388],[-121.330657,37.392760],[-121.331911,37.392447],[-121.333166,37.392604],[-121.334421,37.392447],[-121.335832,37.392760],[-121.337244,37.392447],[-121.338499,37.392604],[-121.339440,37.392447],[-121.339753,37.392604],[-121.340381,37.392133],[-121.341322,37.391819],[-121.341636,37.391976],[-121.342733,37.391035],[-121.344459,37.390565],[-121.344616,37.390094],[-121.345243,37.389310],[-121.346184,37.389310],[-121.346341,37.388996],[-121.346968,37.388996],[-121.347282,37.388683],[-121.347909,37.388526],[-121.348380,37.388526],[-121.349478,37.388212],[-121.350575,37.387271],[-121.351046,37.387114],[-121.351517,37.387114],[-121.351830,37.386644],[-121.352144,37.386487],[-121.352301,37.386330],[-121.352301,37.385703],[-121.352771,37.385703],[-121.353085,37.385075],[-121.353555,37.385075],[-121.353712,37.384762],[-121.354026,37.384605],[-121.354496,37.384605],[-121.354967,37.384448],[-121.355438,37.384605],[-121.356222,37.384448],[-121.357947,37.384291],[-121.359202,37.384762],[-121.360300,37.385546],[-121.360456,37.386173],[-121.361397,37.387114],[-121.361554,37.387742],[-121.361868,37.388212],[-121.362339,37.388683],[-121.412527,37.389467],[-121.413939,37.389624],[-121.414723,37.390251],[-121.416605,37.390251],[-121.419428,37.390722],[-121.423977,37.393702],[-121.431505,37.394172],[-121.432132,37.394486],[-121.433544,37.395427],[-121.434956,37.395897],[-121.436054,37.396054],[-121.437622,37.395740],[-121.439033,37.394643],[-121.440288,37.394486],[-121.442798,37.392760],[-121.444523,37.393388],[-121.445307,37.393388],[-121.446719,37.392760],[-121.448130,37.391663],[-121.450483,37.392604],[-121.451581,37.394643],[-121.456600,37.395584],[-121.458325,37.398093],[-121.455659,37.401073],[-121.456286,37.406719],[-121.463501,37.415973],[-121.466324,37.415032],[-121.472597,37.423344],[-121.472127,37.424129],[-121.469774,37.424599],[-121.469147,37.424756],[-121.468833,37.425070],[-121.468833,37.425697],[-121.470402,37.427736],[-121.470558,37.428520],[-121.470402,37.430088],[-121.469931,37.430873],[-121.468206,37.432912],[-121.467578,37.433382],[-121.467265,37.434009],[-121.465540,37.435892],[-121.466637,37.434166],[-121.336617,37.433853],[-121.335989,37.433853],[-121.336303,37.434794],[-121.335989,37.435107],[-121.335832,37.436362],[-121.335832,37.437460],[-121.336146,37.438087],[-121.335989,37.438401],[-121.335205,37.439028],[-121.333950,37.439185],[-121.333009,37.439028],[-121.332696,37.438244],[-121.332225,37.437931],[-121.331598,37.437774],[-121.330500,37.437774],[-121.329402,37.437460],[-121.328618,37.436205],[-121.327206,37.435892],[-121.326422,37.435892],[-121.324854,37.436362],[-121.323913,37.435735],[-121.323285,37.435578],[-121.322501,37.435735],[-121.321874,37.436048],[-121.321560,37.436676],[-121.321560,37.437303],[-121.321246,37.437774],[-121.320619,37.438087],[-121.319992,37.438087],[-121.317796,37.437303],[-121.317168,37.437303],[-121.316698,37.437617],[-121.316227,37.439185],[-121.314973,37.439499],[-121.314502,37.439969],[-121.314345,37.441067],[-121.313404,37.442165],[-121.311993,37.441224],[-121.310895,37.439969],[-121.310424,37.439813],[-121.308856,37.440754],[-121.307601,37.440910],[-121.306974,37.440440],[-121.305405,37.439185],[-121.304778,37.439185],[-121.304151,37.440283],[-121.303523,37.440597],[-121.302269,37.440597],[-121.295524,37.443420],[-121.293799,37.443890],[-121.292388,37.444047],[-121.290819,37.443734],[-121.290035,37.443890],[-121.288624,37.444204],[-121.287055,37.443734],[-121.286271,37.443734],[-121.285487,37.443734],[-121.284546,37.444675],[-121.283761,37.444988],[-121.283134,37.445459],[-121.282664,37.445929],[-121.282350,37.446557],[-121.282350,37.447184],[-121.282977,37.448439],[-121.283134,37.448909],[-121.283291,37.451105],[-121.282977,37.451576],[-121.281879,37.451889],[-121.281252,37.452830],[-121.280154,37.453301],[-121.279370,37.453301],[-121.278115,37.452674],[-121.277331,37.452674],[-121.276547,37.452517],[-121.275135,37.452830],[-121.273881,37.452517],[-121.272312,37.452830],[-121.271057,37.453458],[-121.266666,37.453615],[-121.265725,37.453458],[-121.263686,37.452517],[-121.262902,37.452046],[-121.261490,37.450948],[-121.259608,37.449066],[-121.258824,37.448596],[-121.255530,37.447968],[-121.254903,37.448125],[-121.254589,37.448439],[-121.255060,37.448752],[-121.256628,37.449223],[-121.257099,37.449694],[-121.257099,37.450164],[-121.255844,37.452203],[-121.255216,37.453615],[-121.253334,37.455340],[-121.252707,37.456438],[-121.253491,37.457379],[-121.254119,37.457692],[-121.254903,37.457849],[-121.255373,37.458163],[-121.255687,37.458790],[-121.255373,37.459261],[-121.253491,37.459888],[-121.253021,37.460359],[-121.253021,37.460986],[-121.253334,37.461300],[-121.252864,37.461457],[-121.252237,37.461457],[-121.251766,37.461770],[-121.251609,37.462084],[-121.251609,37.462711],[-121.251923,37.463339],[-121.252864,37.464437],[-121.253491,37.464907],[-121.254119,37.465064],[-121.254275,37.465378],[-121.253491,37.466162],[-121.252864,37.466162],[-121.250198,37.464593],[-121.247218,37.465691],[-121.246277,37.466475],[-121.244551,37.466789],[-121.244238,37.467260],[-121.244081,37.467887],[-121.244238,37.469142],[-121.243767,37.469612],[-121.242512,37.470396],[-121.240630,37.472122],[-121.240630,37.473063],[-121.240473,37.473376],[-121.239376,37.473690],[-121.238748,37.473847],[-121.238435,37.474317],[-121.237964,37.474317],[-121.236709,37.473690],[-121.235925,37.473690],[-121.235298,37.473847],[-121.234357,37.474945],[-121.233729,37.475259],[-121.232788,37.475415],[-121.229965,37.474945],[-121.229338,37.475102],[-121.228083,37.475729],[-121.226044,37.477611],[-121.224476,37.477454],[-121.223221,37.476984],[-121.221339,37.476984],[-121.217888,37.477925],[-121.217261,37.478082],[-121.215536,37.477925],[-121.214595,37.478082],[-121.213967,37.478395],[-121.212242,37.479964],[-121.211301,37.480121],[-121.210517,37.479964],[-121.208792,37.478238],[-121.207223,37.477141],[-121.203302,37.474317],[-121.201577,37.473376],[-121.200322,37.472122],[-121.196872,37.470553],[-121.194519,37.468985],[-121.193735,37.467730],[-121.191853,37.466005],[-121.190755,37.464593],[-121.189971,37.464280],[-121.183070,37.463025],[-121.182129,37.463182],[-121.180247,37.463809],[-121.203773,37.487335],[-121.202518,37.487963],[-121.200950,37.489060],[-121.199852,37.490786],[-121.196088,37.493923],[-121.197186,37.494864],[-121.197342,37.495491],[-121.199538,37.498628],[-121.201577,37.500667],[-121.202361,37.501608],[-121.204714,37.503490],[-121.206125,37.503960],[-121.211929,37.503333],[-121.216006,37.504117],[-121.218045,37.508822],[-121.217732,37.512116],[-121.215065,37.515096],[-121.219927,37.522154],[-121.213654,37.522154],[-121.213497,37.536583],[-121.206282,37.536583],[-121.206596,37.537210],[-121.209890,37.539406],[-121.210674,37.540661],[-121.213497,37.543641],[-121.216947,37.545523],[-121.219143,37.547091],[-121.220868,37.548817],[-121.221966,37.552110],[-121.224162,37.555247],[-121.226044,37.559011],[-121.226672,37.562775],[-121.229024,37.564814],[-121.220084,37.568892],[-121.216947,37.566069],[-121.202832,37.577362],[-121.203773,37.577989],[-121.205969,37.580185]],[[-121.203930,37.544111],[-121.204400,37.543641],[-121.204400,37.542700],[-121.204087,37.542700],[-121.203930,37.542073],[-121.202832,37.541916],[-121.202675,37.542229],[-121.202048,37.542073],[-121.201734,37.542386],[-121.201420,37.542073],[-121.204400,37.539720],[-121.204400,37.536583],[-121.191382,37.536740],[-121.187932,37.539406],[-121.195774,37.546621],[-121.195931,37.546307],[-121.197029,37.547091],[-121.200479,37.550228],[-121.201577,37.549444],[-121.197186,37.545366],[-121.199852,37.543327],[-121.200322,37.543641],[-121.200636,37.544582],[-121.201734,37.545523],[-121.202204,37.545053],[-121.201577,37.544425],[-121.202204,37.544111],[-121.203302,37.544425],[-121.203930,37.544111]]]}}
,{"id":95307,"type":"Feature","properties":{"name":"Ceres"},"geometry":{"type":"Polygon","coordinates":[[[-120.907344,37.547562],[-120.909383,37.547248],[-120.911265,37.547248],[-120.911265,37.543955],[-120.903737,37.544111],[-120.901855,37.542543],[-120.902012,37.537367],[-120.902169,37.536426],[-120.905306,37.536583],[-120.908442,37.538152],[-120.913148,37.529055],[-120.921303,37.528898],[-120.921303,37.521526],[-120.915500,37.521840],[-120.903580,37.521683],[-120.903580,37.507254],[-120.921460,37.507097],[-120.958474,37.507411],[-120.958474,37.501451],[-120.963807,37.501451],[-120.967571,37.507411],[-120.985608,37.507411],[-121.012584,37.507724],[-121.012741,37.514939],[-121.012584,37.522154],[-121.019799,37.522311],[-121.019956,37.522467],[-121.020426,37.523252],[-121.020426,37.523565],[-121.020113,37.523879],[-121.019329,37.524506],[-121.017603,37.525134],[-121.017446,37.526545],[-121.017446,37.528741],[-121.021211,37.534701],[-121.020426,37.535485],[-121.011957,37.534544],[-121.007879,37.536583],[-120.993920,37.536583],[-120.993607,37.537995],[-120.993607,37.539093],[-120.993764,37.557757],[-120.984510,37.557600],[-120.984353,37.594928],[-120.975256,37.594771],[-120.975413,37.606848],[-120.975100,37.607004],[-120.977766,37.609200],[-120.974158,37.609357],[-120.974158,37.607475],[-120.973845,37.606848],[-120.969924,37.606848],[-120.969924,37.607318],[-120.966160,37.607318],[-120.966160,37.609200],[-120.957063,37.609200],[-120.955965,37.608887],[-120.941379,37.608887],[-120.931341,37.609043],[-120.931341,37.609357],[-120.926793,37.609357],[-120.902796,37.609357],[-120.901855,37.594771],[-120.901698,37.580185],[-120.901855,37.565599],[-120.916284,37.566853],[-120.917225,37.566226],[-120.920362,37.566226],[-120.920833,37.563560],[-120.920833,37.559168],[-120.911579,37.551326],[-120.907344,37.547562]]]}}
,{"id":95355,"type":"Feature","properties":{"name":"Modesto"},"geometry":{"type":"Polygon","coordinates":[[[-120.976041,37.685111],[-120.976041,37.688875],[-120.976041,37.691385],[-120.976668,37.691385],[-120.976668,37.694365],[-120.976197,37.694365],[-120.976197,37.694678],[-120.980746,37.694678],[-120.980746,37.696874],[-120.976197,37.696874],[-120.976197,37.696090],[-120.967885,37.696247],[-120.968199,37.698286],[-120.967885,37.698913],[-120.967571,37.699227],[-120.967257,37.699383],[-120.966944,37.698286],[-120.965532,37.698286],[-120.965532,37.696874],[-120.965062,37.696874],[-120.965062,37.699383],[-120.964591,37.699383],[-120.964591,37.698599],[-120.962866,37.698599],[-120.962866,37.696404],[-120.962552,37.696404],[-120.962552,37.696247],[-120.958004,37.696247],[-120.958004,37.689032],[-120.938556,37.689032],[-120.938556,37.691855],[-120.934792,37.692012],[-120.933380,37.691855],[-120.933380,37.689032],[-120.929773,37.689032],[-120.929929,37.700168],[-120.930086,37.700952],[-120.930243,37.703618],[-120.926322,37.703618],[-120.921617,37.692639],[-120.921617,37.692169],[-120.919892,37.688248],[-120.919107,37.686836],[-120.917539,37.683072],[-120.917225,37.681817],[-120.917539,37.681817],[-120.911422,37.667074],[-120.909697,37.661742],[-120.917539,37.657350],[-120.920990,37.657037],[-120.920990,37.656566],[-120.924440,37.656566],[-120.929145,37.655939],[-120.928832,37.654370],[-120.928675,37.653586],[-120.931498,37.652018],[-120.936360,37.652018],[-120.939026,37.654213],[-120.942947,37.652175],[-120.946084,37.651233],[-120.947809,37.649979],[-120.952358,37.651077],[-120.953769,37.652175],[-120.955494,37.653116],[-120.957377,37.652488],[-120.960357,37.652175],[-120.961611,37.651233],[-120.964748,37.649351],[-120.968355,37.648567],[-120.970394,37.649195],[-120.974629,37.648410],[-120.974629,37.649038],[-120.975570,37.649038],[-120.976668,37.648724],[-120.976668,37.650606],[-120.975884,37.650606],[-120.975884,37.650920],[-120.975570,37.650920],[-120.975570,37.655782],[-120.977295,37.655782],[-120.977295,37.657193],[-120.975570,37.657193],[-120.975727,37.663467],[-120.978079,37.663467],[-120.976668,37.667074],[-120.975727,37.667231],[-120.975727,37.670211],[-120.977609,37.670211],[-120.977609,37.670995],[-120.975727,37.670995],[-120.975727,37.674446],[-120.975884,37.678053],[-120.977452,37.678053],[-120.977609,37.679935],[-120.978393,37.679935],[-120.978393,37.681661],[-120.975884,37.681661],[-120.976041,37.685111]]]}}
,{"id":95368,"type":"Feature","properties":{"name":"Salida"},"geometry":{"type":"Polygon","coordinates":[[[-121.063244,37.690444],[-121.067949,37.694678],[-121.069047,37.695462],[-121.069204,37.695462],[-121.070615,37.696404],[-121.095710,37.696404],[-121.095867,37.717734],[-121.096337,37.718047],[-121.104963,37.717891],[-121.104963,37.721341],[-121.101983,37.721341],[-121.101513,37.721812],[-121.100572,37.721969],[-121.110296,37.730124],[-121.107630,37.732320],[-121.108100,37.732947],[-121.108257,37.733575],[-121.109041,37.733888],[-121.109041,37.734045],[-121.109512,37.734516],[-121.110610,37.738750],[-121.111080,37.739064],[-121.111394,37.740005],[-121.110766,37.741730],[-121.109982,37.742201],[-121.109041,37.742044],[-121.106845,37.740162],[-121.105277,37.740005],[-121.104807,37.740162],[-121.104807,37.740946],[-121.104493,37.741103],[-121.101827,37.740946],[-121.100258,37.740319],[-121.099474,37.739848],[-121.099631,37.739535],[-121.100729,37.739221],[-121.101042,37.738750],[-121.101042,37.738123],[-121.100886,37.737496],[-121.099944,37.738123],[-121.099160,37.738123],[-121.098847,37.737966],[-121.098690,37.736712],[-121.097749,37.736712],[-121.096023,37.736241],[-121.096023,37.735927],[-121.096337,37.735614],[-121.096808,37.735143],[-121.096808,37.734359],[-121.096023,37.733418],[-121.094926,37.733261],[-121.094298,37.732006],[-121.096494,37.731379],[-121.095082,37.729654],[-121.090691,37.728869],[-121.080339,37.733261],[-121.077987,37.733104],[-121.077516,37.707069],[-121.077359,37.706441],[-121.077046,37.705971],[-121.074536,37.703775],[-121.075007,37.703932],[-121.072654,37.701893],[-121.071086,37.700011],[-121.069831,37.700011],[-121.069517,37.698442],[-121.069361,37.697815],[-121.068733,37.696874],[-121.066851,37.694521],[-121.060734,37.689346],[-121.061205,37.689346],[-121.056186,37.685738],[-121.056343,37.685582],[-121.053677,37.683072],[-121.053990,37.682915],[-121.063244,37.690444]]]}}
,{"id":94704,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.272954,37.870653],[-122.273268,37.873320],[-122.272013,37.873476],[-122.272013,37.873006],[-122.271229,37.873163],[-122.270915,37.873163],[-122.270915,37.873633],[-122.266367,37.874261],[-122.266210,37.872535],[-122.265896,37.869712],[-122.266210,37.868771],[-122.266053,37.867830],[-122.252251,37.869555],[-122.252408,37.869242],[-122.250212,37.869398],[-122.250526,37.870026],[-122.251310,37.870183],[-122.252094,37.870967],[-122.252094,37.871437],[-122.251624,37.871908],[-122.251937,37.872065],[-122.252722,37.871437],[-122.253035,37.872065],[-122.253819,37.872535],[-122.253035,37.873006],[-122.252722,37.873006],[-122.251467,37.872222],[-122.250369,37.872065],[-122.249585,37.871437],[-122.248487,37.871908],[-122.245821,37.872849],[-122.245193,37.872849],[-122.245350,37.869712],[-122.245036,37.869712],[-122.242997,37.869712],[-122.242213,37.870026],[-122.241586,37.870026],[-122.240174,37.869555],[-122.239547,37.869869],[-122.239076,37.869398],[-122.237351,37.869085],[-122.237194,37.868771],[-122.236096,37.869712],[-122.235940,37.869398],[-122.235626,37.869712],[-122.235155,37.869712],[-122.234685,37.869398],[-122.235626,37.868771],[-122.236096,37.867987],[-122.236567,37.867673],[-122.238449,37.867673],[-122.238920,37.867203],[-122.239233,37.866575],[-122.240488,37.865634],[-122.240488,37.865164],[-122.240802,37.864066],[-122.241429,37.864223],[-122.241586,37.864066],[-122.242370,37.864223],[-122.243311,37.864223],[-122.243311,37.864066],[-122.242370,37.863125],[-122.243782,37.863282],[-122.244409,37.863909],[-122.244409,37.863282],[-122.244095,37.862654],[-122.244409,37.862654],[-122.244566,37.863752],[-122.244880,37.865948],[-122.244880,37.866419],[-122.245193,37.867673],[-122.246605,37.867673],[-122.247075,37.867516],[-122.247075,37.867203],[-122.246291,37.867203],[-122.246448,37.866889],[-122.246134,37.866575],[-122.246134,37.866105],[-122.247703,37.866105],[-122.247546,37.865791],[-122.247389,37.865007],[-122.246762,37.864536],[-122.246762,37.863909],[-122.247075,37.863595],[-122.248173,37.863282],[-122.248801,37.863282],[-122.248801,37.862341],[-122.253506,37.862184],[-122.253506,37.861870],[-122.257427,37.861556],[-122.258054,37.861713],[-122.258995,37.861400],[-122.267151,37.860302],[-122.271699,37.859831],[-122.272170,37.863282],[-122.272327,37.863282],[-122.272327,37.863439],[-122.272797,37.863439],[-122.272797,37.864536],[-122.272797,37.864536],[-122.272797,37.865164],[-122.272327,37.865164],[-122.272954,37.870653]],[[-122.254133,37.866575],[-122.256329,37.866419],[-122.256172,37.865477],[-122.253976,37.865791],[-122.254133,37.866575]]]}}
,{"id":94552,"type":"Feature","properties":{"name":"Castro Valley"},"geometry":{"type":"Polygon","coordinates":[[[-122.032047,37.675230],[-122.030792,37.675387],[-122.029851,37.675701],[-122.029381,37.676328],[-122.029381,37.676798],[-122.027656,37.676798],[-122.026871,37.676485],[-122.025930,37.676485],[-122.028126,37.679151],[-122.032831,37.678681],[-122.038948,37.679622],[-122.040516,37.679622],[-122.041301,37.681033],[-122.042085,37.682131],[-122.042555,37.683386],[-122.043653,37.686523],[-122.044281,37.687307],[-122.044908,37.687777],[-122.045692,37.688405],[-122.046476,37.688561],[-122.046947,37.689032],[-122.047104,37.689659],[-122.047261,37.690914],[-122.046163,37.692012],[-122.044437,37.692483],[-122.044124,37.692953],[-122.043967,37.694521],[-122.044908,37.695462],[-122.045222,37.695619],[-122.046790,37.694678],[-122.047888,37.694208],[-122.050868,37.693580],[-122.052123,37.693580],[-122.054475,37.693737],[-122.054946,37.694208],[-122.054946,37.694678],[-122.056514,37.694521],[-122.056985,37.693894],[-122.059965,37.693580],[-122.058239,37.695776],[-122.057926,37.695619],[-122.057455,37.694992],[-122.057142,37.694992],[-122.056514,37.695619],[-122.056357,37.696247],[-122.056985,37.696874],[-122.056985,37.697501],[-122.056514,37.698129],[-122.055573,37.698442],[-122.055259,37.699070],[-122.055573,37.700952],[-122.054789,37.701422],[-122.054475,37.701736],[-122.054475,37.702050],[-122.055730,37.702834],[-122.055887,37.703148],[-122.055573,37.703461],[-122.059024,37.703618],[-122.059024,37.703932],[-122.057769,37.703775],[-122.055416,37.703775],[-122.055416,37.703932],[-122.056514,37.704246],[-122.056514,37.704559],[-122.056514,37.705187],[-122.056201,37.705657],[-122.055730,37.707069],[-122.055573,37.709264],[-122.056201,37.710833],[-122.056201,37.710990],[-122.055730,37.711147],[-122.055730,37.711303],[-122.056044,37.711460],[-122.056828,37.711147],[-122.057612,37.711303],[-122.058867,37.711931],[-122.059337,37.712558],[-122.059337,37.713029],[-122.059337,37.713029],[-122.059180,37.713342],[-122.059494,37.713656],[-122.058710,37.718675],[-122.059651,37.718675],[-122.059651,37.717891],[-122.064827,37.717734],[-122.064199,37.718832],[-122.065611,37.720243],[-122.061690,37.729497],[-122.059965,37.738750],[-122.061533,37.743612],[-122.062160,37.746906],[-122.062160,37.748475],[-122.063258,37.748788],[-122.063572,37.749102],[-122.063415,37.749416],[-122.062631,37.749886],[-122.062788,37.750513],[-122.062945,37.750984],[-122.064199,37.752396],[-122.064827,37.752709],[-122.064984,37.753180],[-122.065611,37.753337],[-122.065925,37.753180],[-122.066081,37.753180],[-122.065925,37.753650],[-122.065925,37.754278],[-122.067807,37.756160],[-122.069532,37.756317],[-122.070787,37.756944],[-122.070787,37.757101],[-122.070473,37.757101],[-122.069689,37.756787],[-122.069061,37.756944],[-122.068748,37.758042],[-122.068434,37.758355],[-122.068277,37.758826],[-122.068591,37.759297],[-122.068905,37.759297],[-122.069218,37.759767],[-122.069061,37.760081],[-122.068591,37.760394],[-122.068748,37.760865],[-122.068434,37.761649],[-122.068434,37.762120],[-122.070787,37.761806],[-122.072512,37.762120],[-122.074080,37.762120],[-122.074551,37.762590],[-122.076119,37.762747],[-122.077217,37.761806],[-122.078472,37.761649],[-122.079256,37.759924],[-122.080040,37.759453],[-122.080824,37.758983],[-122.080981,37.758983],[-122.081138,37.759140],[-122.080824,37.759610],[-122.080981,37.759767],[-122.081295,37.759453],[-122.081609,37.759297],[-122.081452,37.758512],[-122.080981,37.758512],[-122.080354,37.757885],[-122.080511,37.757258],[-122.081766,37.756003],[-122.081766,37.755689],[-122.081609,37.754748],[-122.080981,37.753180],[-122.079883,37.751611],[-122.079883,37.751298],[-122.080197,37.750513],[-122.079570,37.749572],[-122.078942,37.749886],[-122.077531,37.749886],[-122.077374,37.748788],[-122.077688,37.748161],[-122.080354,37.749416],[-122.088823,37.756317],[-122.089608,37.757728],[-122.089608,37.759453],[-122.089921,37.760708],[-122.090705,37.761806],[-122.090705,37.763061],[-122.091960,37.764472],[-122.092117,37.764943],[-122.093529,37.764786],[-122.093999,37.764315],[-122.092431,37.768393],[-122.091960,37.768393],[-122.091803,37.768707],[-122.091490,37.769334],[-122.091490,37.769648],[-122.091803,37.769805],[-122.091803,37.770119],[-122.091019,37.770275],[-122.090862,37.770903],[-122.090862,37.771216],[-122.090078,37.770903],[-122.089764,37.771530],[-122.089451,37.772001],[-122.089608,37.772314],[-122.091176,37.773883],[-122.091490,37.774981],[-122.091960,37.775608],[-122.091960,37.776078],[-122.092901,37.776392],[-122.093215,37.776863],[-122.092901,37.777333],[-122.093215,37.778117],[-122.092274,37.778745],[-122.092431,37.779215],[-122.092117,37.779686],[-122.092274,37.780156],[-122.092744,37.781254],[-122.094470,37.782195],[-122.094940,37.782038],[-122.096979,37.782352],[-122.096822,37.782509],[-122.096038,37.782666],[-122.095411,37.783136],[-122.094783,37.783293],[-122.094470,37.783764],[-122.093842,37.783764],[-122.093842,37.784391],[-122.093372,37.786273],[-122.093842,37.787371],[-122.093529,37.787841],[-122.092901,37.788312],[-122.093372,37.788783],[-122.093058,37.789567],[-122.093372,37.789724],[-122.093842,37.789253],[-122.093842,37.788783],[-122.094626,37.788626],[-122.094940,37.788155],[-122.095254,37.789410],[-122.095724,37.789880],[-122.096038,37.789880],[-122.096038,37.789253],[-122.096195,37.789096],[-122.096509,37.789253],[-122.099332,37.792233],[-122.100430,37.793958],[-122.102155,37.794899],[-122.102782,37.795527],[-122.102468,37.796311],[-122.103096,37.797095],[-122.103096,37.797252],[-122.102625,37.797722],[-122.101371,37.798193],[-122.101214,37.798507],[-122.103723,37.799605],[-122.103723,37.799761],[-122.103566,37.799918],[-122.104194,37.800232],[-122.104194,37.800702],[-122.104821,37.801487],[-122.106233,37.802271],[-122.092117,37.801173],[-122.045535,37.798193],[-122.030479,37.787685],[-122.022009,37.784234],[-122.017775,37.781254],[-122.014010,37.780156],[-122.004757,37.770589],[-122.003973,37.769962],[-121.997699,37.763218],[-122.010717,37.755062],[-122.011344,37.753964],[-122.011815,37.747377],[-122.000993,37.739064],[-121.993621,37.738123],[-121.990014,37.733575],[-121.983427,37.730908],[-121.982329,37.730752],[-121.977623,37.729497],[-121.974016,37.729497],[-121.972448,37.728556],[-121.977937,37.724007],[-122.001306,37.703775],[-121.998170,37.703461],[-121.995346,37.702834],[-121.992837,37.702050],[-121.989386,37.700638],[-121.987661,37.700011],[-121.977623,37.698599],[-121.977623,37.697815],[-121.973232,37.697188],[-121.973859,37.696717],[-121.974643,37.696090],[-121.976055,37.696247],[-121.974800,37.695462],[-121.974643,37.694992],[-121.975428,37.694051],[-121.975428,37.693424],[-121.975114,37.692953],[-121.975898,37.692639],[-121.976526,37.691698],[-121.976526,37.690444],[-121.977780,37.689659],[-121.981231,37.689816],[-121.982015,37.689659],[-121.982799,37.689032],[-121.983583,37.689032],[-121.981388,37.684327],[-121.979349,37.678994],[-121.978721,37.678681],[-121.978251,37.677740],[-121.976839,37.676485],[-121.976996,37.675544],[-121.975585,37.674916],[-121.974800,37.673975],[-121.973389,37.674132],[-121.972918,37.673975],[-121.971350,37.673348],[-121.970722,37.672721],[-121.969781,37.672250],[-121.967743,37.671466],[-121.965860,37.671780],[-121.963822,37.671466],[-121.963508,37.671936],[-121.963351,37.671309],[-121.963978,37.670839],[-121.963822,37.670211],[-121.963978,37.669584],[-121.964449,37.669270],[-121.966174,37.668329],[-121.966801,37.667545],[-121.966958,37.667231],[-121.967586,37.666604],[-121.967115,37.665506],[-121.967743,37.664565],[-121.967899,37.664094],[-121.967743,37.663781],[-121.967272,37.663310],[-121.966488,37.662997],[-121.964763,37.662526],[-121.964292,37.662212],[-121.963822,37.661428],[-121.962253,37.660487],[-121.960528,37.659075],[-121.959744,37.658448],[-121.959430,37.657664],[-121.956607,37.656252],[-121.955666,37.654998],[-121.951902,37.652175],[-121.950647,37.653586],[-121.950176,37.653429],[-121.949549,37.652488],[-121.948608,37.651861],[-121.948294,37.651233],[-121.948294,37.650763],[-121.947510,37.650136],[-121.946726,37.649822],[-121.945785,37.649038],[-121.945628,37.648254],[-121.945158,37.647469],[-121.943432,37.646371],[-121.942021,37.645117],[-121.941393,37.644019],[-121.941707,37.643078],[-121.940295,37.642921],[-121.939354,37.642450],[-121.939198,37.642137],[-121.939511,37.641823],[-121.939511,37.641666],[-121.938884,37.641039],[-121.938570,37.640098],[-121.937786,37.639627],[-121.936374,37.639157],[-121.935433,37.638373],[-121.935277,37.638059],[-121.935120,37.637588],[-121.934336,37.636334],[-121.934179,37.635549],[-121.934336,37.635079],[-121.932924,37.633981],[-121.932610,37.633511],[-121.932297,37.632883],[-121.931669,37.632256],[-121.931356,37.631001],[-121.931042,37.630687],[-121.930101,37.630374],[-121.929630,37.630060],[-121.929160,37.628962],[-121.927748,37.628805],[-121.927278,37.628021],[-121.926180,37.626453],[-121.926023,37.625825],[-121.926023,37.624884],[-121.925552,37.624414],[-121.925709,37.623473],[-121.925082,37.621904],[-121.927591,37.621904],[-121.927591,37.616885],[-121.927435,37.616415],[-121.927591,37.616101],[-121.927591,37.605593],[-121.932610,37.605593],[-121.932767,37.591791],[-121.934806,37.591007],[-121.935904,37.591007],[-121.936531,37.591320],[-121.937472,37.592575],[-121.938100,37.595085],[-121.937943,37.597751],[-121.938413,37.598221],[-121.939668,37.598849],[-121.940295,37.598849],[-121.942962,37.597751],[-121.944060,37.597594],[-121.946099,37.597437],[-121.947510,37.598065],[-121.948608,37.598221],[-121.950333,37.598065],[-121.951588,37.597594],[-121.950490,37.605750],[-121.946569,37.605593],[-121.945471,37.606691],[-121.945471,37.607632],[-121.945158,37.608573],[-121.945471,37.609043],[-121.945314,37.609357],[-121.943903,37.610141],[-121.942491,37.610298],[-121.942334,37.610455],[-121.942334,37.611082],[-121.942334,37.611239],[-121.941393,37.611239],[-121.941550,37.611710],[-121.941236,37.612023],[-121.940923,37.613592],[-121.941080,37.613905],[-121.942178,37.614846],[-121.943589,37.614690],[-121.944216,37.615003],[-121.945158,37.616572],[-121.945001,37.617042],[-121.944060,37.617670],[-121.943432,37.618454],[-121.943746,37.619552],[-121.943589,37.620806],[-121.945001,37.620806],[-121.945001,37.621904],[-121.944216,37.622218],[-121.944373,37.624100],[-121.945001,37.626139],[-121.946099,37.625668],[-121.946883,37.626766],[-121.947353,37.627864],[-121.948451,37.626923],[-121.949235,37.627707],[-121.949863,37.628962],[-121.950804,37.628492],[-121.950804,37.631942],[-121.955979,37.632413],[-121.955979,37.628648],[-121.960998,37.628805],[-121.960842,37.635706],[-121.981231,37.635863],[-121.983113,37.634608],[-121.984681,37.634765],[-121.986877,37.634138],[-121.990014,37.633824],[-121.990641,37.633040],[-121.991425,37.631472],[-121.991425,37.630531],[-121.991739,37.630374],[-121.993464,37.630687],[-121.994405,37.631158],[-121.995817,37.631472],[-121.996601,37.631472],[-121.998797,37.630531],[-121.999267,37.629746],[-121.999111,37.628962],[-121.999267,37.628805],[-121.999895,37.628335],[-122.001463,37.628021],[-122.002091,37.627237],[-122.003502,37.627080],[-122.005384,37.627551],[-122.006639,37.627080],[-122.007423,37.627394],[-122.007737,37.628178],[-122.008364,37.628648],[-122.013854,37.631628],[-122.012285,37.632883],[-122.007266,37.636177],[-122.015736,37.636334],[-122.015736,37.639784],[-122.013540,37.641039],[-122.013226,37.640725],[-122.011344,37.642137],[-122.008835,37.644646],[-122.014795,37.651390],[-122.014795,37.651704],[-122.016363,37.653116],[-122.016206,37.653743],[-122.015108,37.653586],[-122.013540,37.653586],[-122.012756,37.653116],[-122.012599,37.653272],[-122.011501,37.653743],[-122.011187,37.654370],[-122.010874,37.654527],[-122.010560,37.654841],[-122.010717,37.655154],[-122.011030,37.654998],[-122.013540,37.656880],[-122.015893,37.656409],[-122.016206,37.660330],[-122.004914,37.672721],[-122.005855,37.673034],[-122.006639,37.673505],[-122.007894,37.673662],[-122.008521,37.673975],[-122.009148,37.673975],[-122.010874,37.674446],[-122.011344,37.674446],[-122.011815,37.673975],[-122.012599,37.674446],[-122.013069,37.674446],[-122.013383,37.674760],[-122.015579,37.674760],[-122.019186,37.674603],[-122.020441,37.674289],[-122.021225,37.673975],[-122.022794,37.672407],[-122.025303,37.675701],[-122.026401,37.676171],[-122.027185,37.676171],[-122.027656,37.676642],[-122.028753,37.676798],[-122.029067,37.676642],[-122.029224,37.675857],[-122.028753,37.675544],[-122.028597,37.675230],[-122.029067,37.674916],[-122.031106,37.674603],[-122.031890,37.674916],[-122.032047,37.675230]]]}}
,{"id":94578,"type":"Feature","properties":{"name":"San Leandro"},"geometry":{"type":"Polygon","coordinates":[[[-122.118937,37.698442],[-122.118937,37.698286],[-122.121132,37.698442],[-122.121132,37.698756],[-122.124740,37.698286],[-122.124897,37.698129],[-122.124740,37.695933],[-122.128190,37.698286],[-122.128661,37.697972],[-122.129445,37.697501],[-122.129445,37.692639],[-122.129759,37.692639],[-122.129759,37.692483],[-122.127877,37.690914],[-122.130072,37.690914],[-122.130072,37.691071],[-122.130857,37.691071],[-122.132111,37.690757],[-122.134934,37.690444],[-122.136032,37.690444],[-122.137601,37.690914],[-122.136503,37.689973],[-122.137287,37.690130],[-122.135875,37.689189],[-122.138855,37.690757],[-122.143874,37.694678],[-122.159872,37.705657],[-122.160970,37.706441],[-122.159245,37.707226],[-122.158460,37.705971],[-122.156108,37.704402],[-122.155481,37.704402],[-122.152344,37.705657],[-122.150932,37.703618],[-122.150462,37.703461],[-122.146854,37.704873],[-122.146541,37.704559],[-122.144188,37.700952],[-122.142149,37.701893],[-122.141208,37.701893],[-122.142306,37.703618],[-122.150462,37.710676],[-122.148266,37.711460],[-122.147325,37.711147],[-122.147011,37.710833],[-122.148736,37.713499],[-122.148109,37.713499],[-122.144659,37.716636],[-122.144188,37.716322],[-122.144031,37.716322],[-122.144502,37.716636],[-122.143247,37.717577],[-122.143874,37.718204],[-122.144188,37.718675],[-122.143717,37.718047],[-122.141365,37.716322],[-122.137287,37.719773],[-122.136503,37.721027],[-122.135091,37.721655],[-122.133523,37.719459],[-122.131013,37.714440],[-122.132425,37.717734],[-122.132268,37.718047],[-122.131013,37.715538],[-122.130700,37.715381],[-122.128818,37.715224],[-122.123956,37.716636],[-122.124112,37.717420],[-122.125053,37.718989],[-122.123642,37.719302],[-122.125210,37.723380],[-122.122544,37.723851],[-122.122230,37.727301],[-122.121446,37.727772],[-122.120191,37.728869],[-122.118623,37.728085],[-122.117525,37.725262],[-122.114859,37.723537],[-122.112349,37.720557],[-122.105919,37.715381],[-122.104664,37.714754],[-122.107174,37.713656],[-122.108585,37.713185],[-122.110154,37.712872],[-122.111722,37.712872],[-122.111408,37.712401],[-122.110781,37.712244],[-122.110467,37.711774],[-122.110938,37.711303],[-122.110781,37.710990],[-122.107174,37.707226],[-122.106076,37.707853],[-122.103723,37.705657],[-122.103723,37.705343],[-122.104821,37.704873],[-122.103566,37.703304],[-122.103566,37.702677],[-122.103096,37.702520],[-122.102155,37.702677],[-122.099802,37.703148],[-122.099645,37.702991],[-122.098391,37.702363],[-122.098077,37.702520],[-122.097136,37.700795],[-122.096195,37.699854],[-122.096979,37.699540],[-122.097763,37.698913],[-122.096979,37.698442],[-122.097136,37.698442],[-122.099018,37.697658],[-122.098547,37.696874],[-122.100116,37.695776],[-122.099332,37.695933],[-122.099018,37.695776],[-122.102155,37.693894],[-122.103566,37.695619],[-122.104194,37.695462],[-122.104664,37.695462],[-122.102782,37.693267],[-122.103253,37.693267],[-122.103409,37.693110],[-122.103880,37.693110],[-122.104194,37.692483],[-122.104821,37.692326],[-122.107330,37.690444],[-122.108742,37.691385],[-122.108899,37.691385],[-122.107487,37.690444],[-122.107958,37.689973],[-122.108428,37.689032],[-122.111879,37.688718],[-122.111722,37.690914],[-122.111565,37.691071],[-122.111565,37.692012],[-122.111879,37.692326],[-122.113290,37.692326],[-122.113447,37.693110],[-122.114231,37.693110],[-122.114231,37.694678],[-122.113918,37.694992],[-122.115486,37.695933],[-122.118937,37.695933],[-122.118937,37.698442]]]}}
,{"id":94566,"type":"Feature","properties":{"name":"Pleasanton"},"geometry":{"type":"Polygon","coordinates":[[[-121.819685,37.674603],[-121.819685,37.674289],[-121.824861,37.673818],[-121.826743,37.673348],[-121.826743,37.668956],[-121.827057,37.668329],[-121.827057,37.667545],[-121.825175,37.666133],[-121.824234,37.664879],[-121.823763,37.663624],[-121.823136,37.663467],[-121.819528,37.662997],[-121.819528,37.658448],[-121.818901,37.658291],[-121.817333,37.657350],[-121.815764,37.657350],[-121.814509,37.657037],[-121.813568,37.656096],[-121.812784,37.656252],[-121.812627,37.655625],[-121.812157,37.655311],[-121.810902,37.654998],[-121.809647,37.654057],[-121.808549,37.653429],[-121.806981,37.653429],[-121.805726,37.653900],[-121.805726,37.652175],[-121.805570,37.648881],[-121.804628,37.647156],[-121.803531,37.646058],[-121.800707,37.643862],[-121.799923,37.642764],[-121.798982,37.640568],[-121.798825,37.638529],[-121.798982,37.636804],[-121.800864,37.635706],[-121.801649,37.634452],[-121.801962,37.633511],[-121.801962,37.631315],[-121.802119,37.629903],[-121.803374,37.628492],[-121.804001,37.627864],[-121.808079,37.625512],[-121.808393,37.624727],[-121.809020,37.623943],[-121.809491,37.621904],[-121.810745,37.623630],[-121.879912,37.623473],[-121.879912,37.622532],[-121.879285,37.620963],[-121.877089,37.616258],[-121.881794,37.615160],[-121.882264,37.614846],[-121.883519,37.615160],[-121.884147,37.615003],[-121.884460,37.615160],[-121.883833,37.615944],[-121.883990,37.616258],[-121.886342,37.616729],[-121.886813,37.617042],[-121.886970,37.617983],[-121.886656,37.618140],[-121.886813,37.618611],[-121.886499,37.618768],[-121.886342,37.619238],[-121.886499,37.619709],[-121.887127,37.619865],[-121.888381,37.619865],[-121.889009,37.619552],[-121.889165,37.619081],[-121.889165,37.618768],[-121.889165,37.617983],[-121.888852,37.617670],[-121.888695,37.617199],[-121.889165,37.616415],[-121.889009,37.615474],[-121.889479,37.615317],[-121.889793,37.614846],[-121.889479,37.613278],[-121.889165,37.612964],[-121.889322,37.612494],[-121.889479,37.612337],[-121.890263,37.612651],[-121.890734,37.613592],[-121.891204,37.614062],[-121.891675,37.614376],[-121.892145,37.615160],[-121.892302,37.615788],[-121.893086,37.616101],[-121.894812,37.616415],[-121.895596,37.616729],[-121.896066,37.617042],[-121.896537,37.616885],[-121.896694,37.616572],[-121.896537,37.615944],[-121.897478,37.615003],[-121.898105,37.615944],[-121.899046,37.616415],[-121.900144,37.618140],[-121.900144,37.618611],[-121.900772,37.619081],[-121.902340,37.620650],[-121.902183,37.620963],[-121.902811,37.621434],[-121.903281,37.621434],[-121.904850,37.623316],[-121.908771,37.626139],[-121.909868,37.626610],[-121.910339,37.627394],[-121.912221,37.629903],[-121.913162,37.632256],[-121.913633,37.632726],[-121.905791,37.632413],[-121.896537,37.637902],[-121.896694,37.640725],[-121.893557,37.638529],[-121.893086,37.639000],[-121.891675,37.638059],[-121.891048,37.637432],[-121.886656,37.638686],[-121.884460,37.639941],[-121.885558,37.641509],[-121.892459,37.648254],[-121.893871,37.646528],[-121.895439,37.644176],[-121.896223,37.644019],[-121.896694,37.644332],[-121.897635,37.645901],[-121.897635,37.646999],[-121.897792,37.647626],[-121.900615,37.651077],[-121.900929,37.652331],[-121.902026,37.653429],[-121.900929,37.654213],[-121.901242,37.654527],[-121.901556,37.654841],[-121.903438,37.655154],[-121.904222,37.655782],[-121.905163,37.655311],[-121.905477,37.656880],[-121.906888,37.660644],[-121.906732,37.661271],[-121.906261,37.661742],[-121.907516,37.663310],[-121.908457,37.665192],[-121.910966,37.671466],[-121.910339,37.671623],[-121.910182,37.671936],[-121.908614,37.672721],[-121.898419,37.676798],[-121.899831,37.677740],[-121.898890,37.678837],[-121.898105,37.679778],[-121.897635,37.679778],[-121.892616,37.682131],[-121.890891,37.683229],[-121.885715,37.685111],[-121.886499,37.686052],[-121.886813,37.686209],[-121.883362,37.687464],[-121.878187,37.688875],[-121.877246,37.686209],[-121.874579,37.684327],[-121.862659,37.675701],[-121.862346,37.676014],[-121.861405,37.676014],[-121.850740,37.675701],[-121.850583,37.675701],[-121.850426,37.676014],[-121.845878,37.676014],[-121.838506,37.678053],[-121.838663,37.673034],[-121.826743,37.674289],[-121.826743,37.673818],[-121.819685,37.674603]]]}}
,{"id":94586,"type":"Feature","properties":{"name":"Sunol"},"geometry":{"type":"Polygon","coordinates":[[[-121.932140,37.573284],[-121.932767,37.574068],[-121.932297,37.574852],[-121.933238,37.576107],[-121.932297,37.576421],[-121.931199,37.576107],[-121.929944,37.577675],[-121.929787,37.578773],[-121.927591,37.579557],[-121.928532,37.580655],[-121.926964,37.581910],[-121.929944,37.584733],[-121.929160,37.585831],[-121.930415,37.585831],[-121.932767,37.591791],[-121.932610,37.605593],[-121.927591,37.605593],[-121.927591,37.616101],[-121.927435,37.616415],[-121.927591,37.616885],[-121.927591,37.621904],[-121.925082,37.621904],[-121.925709,37.623473],[-121.925552,37.624414],[-121.926023,37.624884],[-121.926023,37.625825],[-121.926180,37.626453],[-121.927278,37.628021],[-121.927748,37.628805],[-121.929160,37.628962],[-121.929630,37.630060],[-121.930101,37.630374],[-121.931042,37.630687],[-121.931356,37.631001],[-121.931669,37.632256],[-121.932297,37.632883],[-121.932610,37.633511],[-121.932924,37.633981],[-121.934336,37.635079],[-121.934179,37.635549],[-121.934336,37.636334],[-121.935120,37.637588],[-121.935277,37.638059],[-121.935433,37.638373],[-121.936374,37.639157],[-121.937786,37.639627],[-121.938570,37.640098],[-121.938884,37.641039],[-121.939511,37.641666],[-121.939511,37.641823],[-121.939198,37.642137],[-121.939354,37.642450],[-121.940295,37.642921],[-121.941707,37.643078],[-121.941393,37.644019],[-121.942021,37.645117],[-121.943432,37.646371],[-121.945158,37.647469],[-121.945628,37.648254],[-121.945785,37.649038],[-121.946726,37.649822],[-121.947510,37.650136],[-121.948294,37.650763],[-121.948294,37.651233],[-121.948608,37.651861],[-121.949549,37.652488],[-121.950176,37.653429],[-121.950647,37.653586],[-121.951902,37.652175],[-121.955666,37.654998],[-121.956607,37.656252],[-121.959430,37.657664],[-121.959744,37.658448],[-121.960528,37.659075],[-121.962253,37.660487],[-121.963822,37.661428],[-121.964292,37.662212],[-121.964763,37.662526],[-121.966488,37.662997],[-121.967272,37.663310],[-121.967743,37.663781],[-121.967899,37.664094],[-121.967743,37.664565],[-121.967115,37.665506],[-121.967586,37.666604],[-121.966958,37.667231],[-121.966801,37.667545],[-121.966174,37.668329],[-121.964449,37.669270],[-121.963978,37.669584],[-121.963822,37.670211],[-121.963978,37.670839],[-121.963351,37.671309],[-121.963508,37.671936],[-121.963508,37.672407],[-121.963194,37.673191],[-121.961783,37.673975],[-121.961312,37.674916],[-121.960998,37.675073],[-121.960371,37.674760],[-121.959273,37.674446],[-121.958489,37.673975],[-121.954725,37.672564],[-121.953470,37.672407],[-121.953000,37.672093],[-121.952686,37.671623],[-121.952529,37.671152],[-121.952529,37.670525],[-121.952372,37.669741],[-121.952843,37.668956],[-121.952686,37.668486],[-121.950647,37.667074],[-121.949863,37.666447],[-121.947667,37.664879],[-121.945785,37.664408],[-121.944530,37.664408],[-121.943589,37.663624],[-121.942648,37.663781],[-121.941550,37.663310],[-121.940609,37.663310],[-121.939825,37.663624],[-121.939041,37.663467],[-121.937472,37.663624],[-121.935590,37.662683],[-121.934179,37.662212],[-121.933865,37.661899],[-121.933865,37.661271],[-121.933394,37.660801],[-121.931669,37.660487],[-121.930571,37.655939],[-121.929630,37.653743],[-121.924455,37.644960],[-121.923200,37.643391],[-121.920220,37.639941],[-121.916299,37.636490],[-121.915672,37.634922],[-121.913633,37.632726],[-121.913162,37.632256],[-121.912221,37.629903],[-121.910339,37.627394],[-121.909868,37.626610],[-121.908771,37.626139],[-121.904850,37.623316],[-121.903281,37.621434],[-121.902811,37.621434],[-121.902183,37.620963],[-121.902340,37.620650],[-121.900772,37.619081],[-121.900144,37.618611],[-121.900144,37.618140],[-121.899046,37.616415],[-121.898105,37.615944],[-121.897478,37.615003],[-121.896537,37.615944],[-121.896694,37.616572],[-121.896537,37.616885],[-121.896066,37.617042],[-121.895596,37.616729],[-121.894812,37.616415],[-121.893086,37.616101],[-121.892302,37.615788],[-121.892145,37.615160],[-121.891675,37.614376],[-121.891204,37.614062],[-121.890734,37.613592],[-121.890263,37.612651],[-121.889479,37.612337],[-121.889322,37.612494],[-121.889165,37.612964],[-121.889479,37.613278],[-121.889793,37.614846],[-121.889479,37.615317],[-121.889009,37.615474],[-121.889165,37.616415],[-121.888695,37.617199],[-121.888852,37.617670],[-121.889165,37.617983],[-121.889165,37.618768],[-121.889165,37.619081],[-121.889009,37.619552],[-121.888381,37.619865],[-121.887127,37.619865],[-121.886499,37.619709],[-121.886342,37.619238],[-121.886499,37.618768],[-121.886813,37.618611],[-121.886656,37.618140],[-121.886970,37.617983],[-121.886813,37.617042],[-121.886342,37.616729],[-121.883990,37.616258],[-121.883833,37.615944],[-121.884460,37.615160],[-121.884147,37.615003],[-121.883519,37.615160],[-121.882264,37.614846],[-121.881794,37.615160],[-121.877089,37.616258],[-121.879285,37.620963],[-121.879912,37.622532],[-121.879912,37.623473],[-121.810745,37.623630],[-121.809491,37.621904],[-121.809020,37.623943],[-121.808393,37.624727],[-121.808079,37.625512],[-121.804001,37.627864],[-121.803687,37.628021],[-121.803060,37.628648],[-121.796159,37.626296],[-121.796316,37.624884],[-121.797100,37.624571],[-121.798041,37.621904],[-121.797884,37.620963],[-121.797414,37.620336],[-121.795218,37.619081],[-121.791140,37.617983],[-121.786906,37.615631],[-121.785180,37.614219],[-121.783612,37.612494],[-121.782828,37.610925],[-121.781730,37.606063],[-121.780789,37.604181],[-121.780161,37.603397],[-121.778279,37.602770],[-121.773260,37.601986],[-121.770437,37.602142],[-121.766830,37.601986],[-121.764948,37.601201],[-121.766203,37.600574],[-121.766203,37.599947],[-121.766987,37.599947],[-121.767771,37.599476],[-121.767614,37.599006],[-121.767771,37.598849],[-121.769183,37.598849],[-121.770594,37.598535],[-121.771378,37.598065],[-121.772947,37.597751],[-121.772947,37.597437],[-121.773888,37.596810],[-121.772633,37.595398],[-121.772476,37.595085],[-121.771849,37.594457],[-121.771692,37.593987],[-121.772319,37.593203],[-121.774201,37.592418],[-121.776240,37.592105],[-121.778122,37.591320],[-121.778750,37.591320],[-121.780005,37.590693],[-121.780318,37.590066],[-121.780318,37.589282],[-121.780632,37.588811],[-121.783455,37.588340],[-121.784553,37.587399],[-121.785808,37.586929],[-121.787376,37.586458],[-121.788944,37.585831],[-121.789101,37.585360],[-121.789258,37.584890],[-121.790042,37.584263],[-121.791454,37.583635],[-121.794120,37.583008],[-121.796473,37.581910],[-121.797257,37.581753],[-121.799139,37.580185],[-121.800707,37.579244],[-121.801178,37.579244],[-121.802590,37.579244],[-121.802746,37.579087],[-121.801649,37.577675],[-121.801335,37.576421],[-121.800707,37.575166],[-121.799139,37.573284],[-121.797884,37.571559],[-121.797414,37.569676],[-121.796473,37.569049],[-121.795689,37.568892],[-121.794120,37.569363],[-121.790670,37.569676],[-121.789415,37.569520],[-121.788474,37.569520],[-121.788003,37.569049],[-121.786906,37.569049],[-121.786278,37.568892],[-121.785494,37.569520],[-121.784396,37.569520],[-121.784082,37.569363],[-121.784082,37.569049],[-121.784396,37.568735],[-121.784082,37.568265],[-121.784239,37.567794],[-121.785808,37.565442],[-121.788631,37.564344],[-121.789572,37.564971],[-121.790827,37.565442],[-121.790983,37.565285],[-121.790513,37.564971],[-121.790670,37.564501],[-121.791140,37.564344],[-121.790513,37.564187],[-121.790042,37.563717],[-121.789572,37.563246],[-121.789258,37.561991],[-121.788474,37.561364],[-121.787690,37.561364],[-121.786906,37.560737],[-121.787062,37.559952],[-121.788003,37.559796],[-121.788317,37.559482],[-121.788160,37.559011],[-121.787533,37.557600],[-121.786121,37.556659],[-121.785808,37.555874],[-121.785808,37.555247],[-121.785494,37.554306],[-121.785180,37.553365],[-121.784396,37.552267],[-121.783926,37.551640],[-121.782200,37.550699],[-121.781416,37.550228],[-121.780946,37.549130],[-121.779534,37.548032],[-121.778593,37.546778],[-121.777966,37.546150],[-121.777338,37.543955],[-121.777495,37.543327],[-121.777181,37.542700],[-121.777652,37.541445],[-121.777338,37.540818],[-121.777495,37.540347],[-121.776868,37.540661],[-121.775927,37.540190],[-121.775927,37.539720],[-121.775456,37.539249],[-121.775456,37.538308],[-121.775770,37.537681],[-121.776240,37.537210],[-121.775770,37.535799],[-121.775770,37.534387],[-121.775299,37.533760],[-121.775142,37.533133],[-121.772790,37.531564],[-121.772163,37.531407],[-121.772319,37.530937],[-121.772006,37.530623],[-121.772163,37.530153],[-121.770908,37.528427],[-121.770908,37.527330],[-121.770280,37.527016],[-121.769653,37.526859],[-121.769339,37.526075],[-121.769026,37.525918],[-121.768712,37.525134],[-121.768398,37.524977],[-121.767144,37.525291],[-121.766830,37.524663],[-121.766359,37.524350],[-121.766359,37.523722],[-121.765889,37.523409],[-121.764948,37.523252],[-121.764791,37.522938],[-121.764164,37.522624],[-121.764164,37.522311],[-121.765732,37.521997],[-121.766046,37.521840],[-121.767614,37.521370],[-121.768555,37.520742],[-121.768869,37.520899],[-121.769339,37.521370],[-121.770280,37.521213],[-121.770594,37.521526],[-121.770594,37.521840],[-121.770908,37.522311],[-121.771692,37.522624],[-121.772319,37.522467],[-121.772947,37.521840],[-121.772319,37.521526],[-121.771692,37.520742],[-121.771221,37.520585],[-121.771065,37.520115],[-121.771378,37.519958],[-121.771221,37.519331],[-121.771535,37.518703],[-121.771849,37.517919],[-121.772633,37.517292],[-121.773260,37.515410],[-121.773260,37.514782],[-121.772319,37.513684],[-121.772319,37.513214],[-121.773104,37.512900],[-121.772947,37.511959],[-121.772633,37.511489],[-121.771535,37.511489],[-121.772163,37.510704],[-121.771849,37.510234],[-121.771849,37.509136],[-121.771535,37.508822],[-121.772006,37.508195],[-121.772633,37.505999],[-121.773574,37.505529],[-121.773417,37.503647],[-121.773888,37.502706],[-121.774515,37.502235],[-121.775142,37.502078],[-121.775456,37.501608],[-121.775770,37.501294],[-121.776868,37.501137],[-121.777025,37.500667],[-121.777966,37.500824],[-121.778436,37.501294],[-121.779848,37.501294],[-121.781102,37.501921],[-121.783298,37.501608],[-121.784396,37.501765],[-121.785808,37.501294],[-121.786435,37.501294],[-121.786906,37.501451],[-121.787690,37.502392],[-121.788474,37.502862],[-121.790199,37.502862],[-121.791768,37.502706],[-121.793179,37.503019],[-121.793806,37.503490],[-121.795845,37.504117],[-121.796473,37.504588],[-121.797884,37.505058],[-121.798982,37.505842],[-121.800080,37.505999],[-121.801962,37.505999],[-121.802276,37.506313],[-121.802746,37.506627],[-121.803217,37.507411],[-121.803687,37.507568],[-121.804001,37.507254],[-121.804785,37.507254],[-121.805726,37.506940],[-121.806981,37.506470],[-121.808079,37.506940],[-121.809491,37.506627],[-121.811686,37.506940],[-121.812941,37.506313],[-121.813412,37.505842],[-121.814666,37.505372],[-121.815294,37.505372],[-121.815921,37.505058],[-121.816862,37.505215],[-121.820156,37.504431],[-121.821567,37.503490],[-121.822508,37.503333],[-121.823292,37.503490],[-121.824390,37.503333],[-121.824861,37.503647],[-121.825488,37.504588],[-121.826272,37.504745],[-121.827214,37.504588],[-121.828311,37.505058],[-121.829566,37.506313],[-121.829723,37.506783],[-121.829566,37.507568],[-121.829252,37.508038],[-121.828939,37.508195],[-121.828939,37.508822],[-121.829096,37.509136],[-121.828782,37.509607],[-121.828939,37.509607],[-121.830507,37.509920],[-121.831135,37.510391],[-121.832860,37.509763],[-121.833644,37.509607],[-121.834271,37.509920],[-121.835056,37.510391],[-121.835840,37.510548],[-121.837408,37.511332],[-121.839133,37.511489],[-121.840231,37.511332],[-121.844936,37.509763],[-121.845250,37.508352],[-121.845564,37.508038],[-121.852935,37.503803],[-121.854033,37.503647],[-121.855915,37.504588],[-121.856856,37.504588],[-121.859679,37.503960],[-121.861875,37.503176],[-121.862503,37.503490],[-121.862816,37.504117],[-121.863130,37.505215],[-121.862973,37.506313],[-121.863444,37.506940],[-121.862816,37.507881],[-121.862973,37.508666],[-121.864855,37.509920],[-121.866110,37.510077],[-121.866580,37.511332],[-121.867051,37.511959],[-121.867678,37.512587],[-121.868463,37.512900],[-121.869090,37.513998],[-121.869404,37.514939],[-121.869404,37.515723],[-121.867992,37.516194],[-121.867208,37.516194],[-121.866894,37.516821],[-121.865326,37.517292],[-121.864855,37.517135],[-121.865169,37.517449],[-121.867365,37.517605],[-121.867678,37.518233],[-121.868619,37.518703],[-121.868776,37.519174],[-121.869404,37.519017],[-121.870188,37.519017],[-121.871129,37.519331],[-121.871756,37.519331],[-121.873011,37.519488],[-121.875050,37.520429],[-121.875677,37.520429],[-121.876148,37.520272],[-121.877402,37.520429],[-121.876932,37.521526],[-121.876148,37.522311],[-121.875364,37.522781],[-121.875364,37.523095],[-121.875834,37.523409],[-121.875834,37.523565],[-121.875991,37.523879],[-121.877402,37.524036],[-121.878500,37.523879],[-121.880069,37.523409],[-121.880696,37.523252],[-121.879285,37.526388],[-121.880696,37.528271],[-121.886813,37.535642],[-121.887597,37.544111],[-121.891361,37.549758],[-121.901085,37.545837],[-121.905320,37.549130],[-121.906418,37.549130],[-121.906418,37.549444],[-121.907202,37.549287],[-121.908143,37.551797],[-121.885715,37.555247],[-121.886342,37.556345],[-121.888068,37.557443],[-121.888695,37.557443],[-121.889793,37.556502],[-121.891989,37.556345],[-121.893400,37.556502],[-121.895439,37.556972],[-121.897478,37.557129],[-121.899517,37.557443],[-121.899987,37.558070],[-121.901399,37.558384],[-121.901242,37.559168],[-121.901556,37.559796],[-121.904065,37.561207],[-121.905320,37.562148],[-121.907045,37.561050],[-121.910809,37.559952],[-121.912064,37.559325],[-121.913476,37.558227],[-121.915828,37.555404],[-121.915985,37.560893],[-121.917867,37.560580],[-121.918024,37.561207],[-121.920063,37.560893],[-121.919906,37.560266],[-121.922886,37.559639],[-121.923670,37.557443],[-121.924768,37.557286],[-121.923670,37.559952],[-121.919122,37.561521],[-121.918965,37.565912],[-121.919436,37.567638],[-121.923200,37.568265],[-121.923514,37.569676],[-121.925239,37.571245],[-121.932140,37.573284]]]}}
,{"id":94603,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.165832,37.753650],[-122.165675,37.753650],[-122.166146,37.754434],[-122.164891,37.755062],[-122.164264,37.754278],[-122.161440,37.755689],[-122.160186,37.752396],[-122.161284,37.751925],[-122.160813,37.751298],[-122.159872,37.751611],[-122.158774,37.749886],[-122.159715,37.749416],[-122.158931,37.748161],[-122.157990,37.748631],[-122.157049,37.747063],[-122.157833,37.746749],[-122.155951,37.744240],[-122.154853,37.744554],[-122.155167,37.745181],[-122.153755,37.744240],[-122.152187,37.742671],[-122.151716,37.741417],[-122.150618,37.741730],[-122.148736,37.740789],[-122.160499,37.737653],[-122.164107,37.735927],[-122.165832,37.738123],[-122.165989,37.737966],[-122.165832,37.737809],[-122.171635,37.734986],[-122.169753,37.732320],[-122.170694,37.731693],[-122.174301,37.731222],[-122.173674,37.730595],[-122.173517,37.730752],[-122.170067,37.727772],[-122.171635,37.727772],[-122.172890,37.726674],[-122.174301,37.726517],[-122.175556,37.725262],[-122.179163,37.725105],[-122.180261,37.725576],[-122.180104,37.726046],[-122.180732,37.726046],[-122.181673,37.725262],[-122.183398,37.725419],[-122.185594,37.726517],[-122.186378,37.727458],[-122.187633,37.728085],[-122.190299,37.728869],[-122.190770,37.727928],[-122.191083,37.728085],[-122.191867,37.727144],[-122.193122,37.727772],[-122.196259,37.726046],[-122.196886,37.726987],[-122.197984,37.726517],[-122.197357,37.724948],[-122.196886,37.725262],[-122.196416,37.723851],[-122.189044,37.717891],[-122.192809,37.716793],[-122.193593,37.718675],[-122.195632,37.717891],[-122.195004,37.715695],[-122.197043,37.715538],[-122.197043,37.715381],[-122.201748,37.713029],[-122.204885,37.712401],[-122.208963,37.716009],[-122.207708,37.716636],[-122.205356,37.717420],[-122.205356,37.717577],[-122.203631,37.718361],[-122.202689,37.719145],[-122.201435,37.720714],[-122.200807,37.722125],[-122.200651,37.724321],[-122.199553,37.725733],[-122.201592,37.726517],[-122.201278,37.727458],[-122.200180,37.729497],[-122.198612,37.727458],[-122.192652,37.729967],[-122.192809,37.730124],[-122.194691,37.730124],[-122.196102,37.730595],[-122.197827,37.732006],[-122.198612,37.732320],[-122.196886,37.736241],[-122.196730,37.736868],[-122.196886,37.737025],[-122.196886,37.737809],[-122.196573,37.740319],[-122.195788,37.739691],[-122.196573,37.740476],[-122.196259,37.744710],[-122.195632,37.744554],[-122.195318,37.744083],[-122.195788,37.742828],[-122.195632,37.741887],[-122.193906,37.739378],[-122.192965,37.738907],[-122.192965,37.739535],[-122.192338,37.740319],[-122.190770,37.745808],[-122.185751,37.741574],[-122.184182,37.742828],[-122.184653,37.743299],[-122.184653,37.743299],[-122.189044,37.746906],[-122.187162,37.748161],[-122.186692,37.747533],[-122.184967,37.748475],[-122.183398,37.746436],[-122.181359,37.747533],[-122.180889,37.746906],[-122.176340,37.748945],[-122.176811,37.749729],[-122.175086,37.750513],[-122.174615,37.749886],[-122.174458,37.749886],[-122.174301,37.749729],[-122.165832,37.753650]]]}}
,{"id":94612,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.274366,37.817484],[-122.274209,37.817484],[-122.273738,37.819210],[-122.272640,37.818896],[-122.272797,37.817798],[-122.271386,37.817641],[-122.271542,37.817171],[-122.267935,37.816230],[-122.267935,37.816073],[-122.264328,37.815602],[-122.263700,37.816386],[-122.262603,37.816073],[-122.263073,37.815132],[-122.262759,37.814661],[-122.261505,37.813093],[-122.260720,37.813720],[-122.261348,37.812936],[-122.261191,37.812779],[-122.261505,37.812622],[-122.262289,37.810897],[-122.263073,37.810897],[-122.262759,37.810113],[-122.263230,37.808858],[-122.263073,37.808701],[-122.263387,37.808231],[-122.264328,37.808074],[-122.263544,37.807447],[-122.263073,37.806662],[-122.261975,37.805094],[-122.261191,37.804467],[-122.260720,37.804623],[-122.260564,37.804310],[-122.260564,37.803996],[-122.261348,37.801643],[-122.261348,37.801173],[-122.261505,37.800859],[-122.261505,37.799918],[-122.260877,37.799448],[-122.259309,37.798820],[-122.259152,37.798820],[-122.258525,37.799448],[-122.257740,37.799918],[-122.256643,37.800232],[-122.255388,37.800232],[-122.254917,37.800546],[-122.254604,37.800702],[-122.254447,37.801173],[-122.254604,37.802114],[-122.253976,37.802898],[-122.253506,37.803996],[-122.253192,37.804153],[-122.252251,37.804467],[-122.251153,37.804780],[-122.250526,37.805721],[-122.249742,37.807760],[-122.249585,37.808388],[-122.249114,37.808388],[-122.249585,37.807603],[-122.250839,37.804623],[-122.251467,37.804310],[-122.252878,37.803996],[-122.253349,37.803682],[-122.253819,37.802898],[-122.254447,37.801957],[-122.254447,37.800859],[-122.254760,37.800389],[-122.255388,37.800075],[-122.256643,37.799918],[-122.257427,37.799918],[-122.258211,37.799448],[-122.258995,37.798507],[-122.259623,37.798507],[-122.261191,37.798977],[-122.262446,37.799134],[-122.268562,37.801487],[-122.268092,37.802271],[-122.269190,37.802741],[-122.268876,37.803369],[-122.269974,37.803839],[-122.270915,37.802428],[-122.275620,37.804310],[-122.276091,37.803682],[-122.277346,37.804153],[-122.276875,37.804780],[-122.280325,37.806192],[-122.280012,37.806819],[-122.279071,37.806505],[-122.278757,37.807133],[-122.279541,37.807603],[-122.274836,37.815132],[-122.275463,37.816857],[-122.274522,37.816857],[-122.274366,37.817484]]]}}
,{"id":94706,"type":"Feature","properties":{"name":"Albany"},"geometry":{"type":"Polygon","coordinates":[[[-122.298833,37.898414],[-122.297735,37.898884],[-122.296010,37.898884],[-122.293657,37.898571],[-122.291147,37.897943],[-122.289422,37.897787],[-122.288481,37.897943],[-122.288167,37.898100],[-122.288011,37.899355],[-122.287070,37.899512],[-122.287070,37.898571],[-122.286913,37.898728],[-122.287226,37.890886],[-122.287540,37.890886],[-122.282364,37.891199],[-122.281580,37.888376],[-122.282678,37.886024],[-122.280639,37.885553],[-122.281110,37.884926],[-122.281894,37.885083],[-122.282364,37.884298],[-122.281894,37.884298],[-122.282521,37.882730],[-122.283149,37.882103],[-122.283776,37.881789],[-122.284246,37.881005],[-122.284246,37.880377],[-122.284717,37.880064],[-122.289736,37.881318],[-122.290050,37.881475],[-122.290050,37.881475],[-122.290991,37.881475],[-122.295853,37.880377],[-122.296951,37.880220],[-122.298048,37.883200],[-122.303381,37.882259],[-122.305734,37.882103],[-122.307616,37.889160],[-122.307459,37.889474],[-122.307929,37.891042],[-122.307616,37.892297],[-122.307616,37.893238],[-122.309341,37.897787],[-122.308714,37.898100],[-122.306204,37.898257],[-122.305263,37.898414],[-122.303538,37.898571],[-122.301499,37.898571],[-122.300244,37.898257],[-122.298833,37.898414]]]}}
,{"id":95230,"type":"Feature","properties":{"name":"Farmington"},"geometry":{"type":"Polygon","coordinates":[[[-120.796929,38.017456],[-120.798184,38.017142],[-120.801007,38.017770],[-120.801634,38.017299],[-120.801948,38.016358],[-120.802105,38.016201],[-120.803202,38.015887],[-120.804614,38.016201],[-120.807437,38.015103],[-120.808378,38.014946],[-120.810417,38.014790],[-120.811985,38.014946],[-120.813240,38.015731],[-120.813554,38.014790],[-120.815436,38.014790],[-120.817632,38.015260],[-120.825160,38.014790],[-120.826258,38.015103],[-120.832375,38.013692],[-120.836296,38.013378],[-120.837550,38.013535],[-120.838021,38.013221],[-120.838178,38.012907],[-120.838178,38.012280],[-120.838648,38.011025],[-120.840217,38.009300],[-120.840687,38.008045],[-120.841158,38.006163],[-120.841158,38.005222],[-120.840844,38.004281],[-120.841315,38.003654],[-120.841471,38.002713],[-120.841158,38.000831],[-120.832845,37.993773],[-120.822023,37.984206],[-120.808849,37.972599],[-120.788930,37.954720],[-120.784068,37.950956],[-120.780461,37.947662],[-120.775755,37.943113],[-120.771991,37.940134],[-120.767443,37.936056],[-120.761326,37.931037],[-120.756621,37.926802],[-120.752700,37.923352],[-120.750975,37.920685],[-120.747367,37.915980],[-120.777481,37.915510],[-120.779676,37.915823],[-120.806967,37.915510],[-120.809162,37.915666],[-120.810260,37.915823],[-120.812142,37.915666],[-120.819357,37.915510],[-120.840217,37.915666],[-120.840374,37.905942],[-120.821866,37.905785],[-120.821396,37.894493],[-120.820298,37.894963],[-120.818886,37.894963],[-120.817475,37.894650],[-120.816534,37.893709],[-120.815436,37.892454],[-120.814495,37.890572],[-120.812142,37.888376],[-120.811672,37.887592],[-120.810731,37.886808],[-120.809319,37.884455],[-120.808378,37.883671],[-120.808064,37.883200],[-120.807594,37.881789],[-120.807594,37.879593],[-120.801791,37.879593],[-120.801791,37.875672],[-120.801634,37.867987],[-120.801791,37.867830],[-120.802889,37.867987],[-120.803673,37.868301],[-120.804143,37.868771],[-120.804300,37.869398],[-120.803830,37.870183],[-120.803673,37.870810],[-120.803987,37.871437],[-120.804771,37.872535],[-120.804771,37.873006],[-120.805398,37.874731],[-120.806810,37.875672],[-120.807594,37.876456],[-120.807751,37.876927],[-120.807908,37.876927],[-120.808849,37.878025],[-120.816534,37.881475],[-120.820612,37.882259],[-120.822807,37.883200],[-120.827042,37.882730],[-120.829395,37.883200],[-120.835198,37.887592],[-120.837550,37.889317],[-120.838648,37.889474],[-120.839276,37.886494],[-120.839903,37.884298],[-120.840060,37.882730],[-120.840530,37.881005],[-120.841942,37.879593],[-120.843354,37.879123],[-120.843667,37.878809],[-120.843040,37.864066],[-120.829238,37.864066],[-120.828924,37.856851],[-120.829708,37.855597],[-120.829552,37.853401],[-120.829865,37.852460],[-120.838178,37.853714],[-120.842883,37.856694],[-120.849313,37.856538],[-120.848372,37.859361],[-120.851196,37.861713],[-120.847431,37.862811],[-120.846334,37.864850],[-120.850882,37.863752],[-120.853548,37.864850],[-120.852921,37.866575],[-120.854960,37.867516],[-120.855273,37.865007],[-120.860292,37.866419],[-120.860449,37.864223],[-120.863586,37.864693],[-120.865625,37.862498],[-120.865311,37.867673],[-120.867821,37.864066],[-120.869703,37.865791],[-120.879427,37.858577],[-120.878486,37.860929],[-120.877702,37.862027],[-120.877074,37.863752],[-120.879427,37.862184],[-120.879584,37.868614],[-120.881466,37.872535],[-120.881936,37.872849],[-120.882564,37.872849],[-120.882877,37.871908],[-120.883505,37.872065],[-120.883662,37.872692],[-120.883818,37.873476],[-120.884132,37.874261],[-120.886171,37.876143],[-120.887112,37.875358],[-120.886328,37.873947],[-120.886485,37.873633],[-120.886955,37.873633],[-120.888680,37.875045],[-120.889151,37.875045],[-120.889465,37.874104],[-120.889935,37.874417],[-120.890092,37.874888],[-120.890092,37.875829],[-120.890406,37.876456],[-120.891033,37.877084],[-120.891974,37.877554],[-120.892288,37.878652],[-120.893072,37.878809],[-120.893856,37.880377],[-120.894484,37.880691],[-120.895425,37.880691],[-120.895895,37.881318],[-120.896836,37.881475],[-120.898561,37.881162],[-120.899502,37.881632],[-120.899816,37.882259],[-120.899973,37.883357],[-120.901071,37.884455],[-120.902169,37.883828],[-120.902169,37.881946],[-120.901228,37.879593],[-120.901698,37.878966],[-120.903423,37.878338],[-120.903580,37.878025],[-120.904208,37.877397],[-120.905306,37.877397],[-120.905933,37.877084],[-120.906560,37.877084],[-120.907031,37.877397],[-120.907344,37.877868],[-120.907501,37.878652],[-120.908129,37.879593],[-120.908129,37.879907],[-120.907031,37.881162],[-120.906560,37.882887],[-120.906717,37.883828],[-120.907031,37.884455],[-120.907658,37.884298],[-120.908756,37.882416],[-120.909697,37.881789],[-120.909854,37.882103],[-120.909854,37.882887],[-120.909383,37.883357],[-120.909697,37.883828],[-120.909697,37.884612],[-120.910952,37.886337],[-120.911579,37.885867],[-120.911579,37.885239],[-120.911109,37.885083],[-120.911265,37.884769],[-120.912520,37.885239],[-120.912991,37.884298],[-120.912991,37.883514],[-120.913775,37.883044],[-120.914559,37.883357],[-120.914873,37.884298],[-120.914559,37.886337],[-120.914873,37.887906],[-120.915814,37.888219],[-120.916598,37.887906],[-120.918166,37.888847],[-120.918480,37.890572],[-120.918480,37.891356],[-120.920519,37.891199],[-120.919892,37.891199],[-120.916912,37.893395],[-120.917696,37.894650],[-120.918480,37.894807],[-120.918794,37.894807],[-120.920049,37.893866],[-120.921146,37.896218],[-120.921931,37.896218],[-120.922244,37.895905],[-120.922872,37.895748],[-120.923499,37.896061],[-120.923028,37.897002],[-120.922244,37.897316],[-120.921774,37.897630],[-120.921774,37.897943],[-120.922401,37.898571],[-120.922558,37.899041],[-120.922558,37.900139],[-120.922872,37.900610],[-120.923970,37.900923],[-120.924283,37.900767],[-120.924597,37.900139],[-120.926322,37.897159],[-120.926322,37.886651],[-120.925381,37.856851],[-120.943575,37.856694],[-120.944672,37.886651],[-120.944672,37.900296],[-120.945300,37.903276],[-120.945770,37.903903],[-120.945927,37.905001],[-120.946241,37.906099],[-120.946555,37.906570],[-120.947025,37.906883],[-120.947966,37.906883],[-120.950162,37.905785],[-120.951730,37.904374],[-120.952358,37.904217],[-120.953769,37.905629],[-120.953769,37.908609],[-120.954710,37.909550],[-120.955651,37.909706],[-120.956906,37.908922],[-120.957847,37.908765],[-120.959259,37.908765],[-120.959886,37.909706],[-120.960670,37.910020],[-120.961141,37.910648],[-120.961768,37.912373],[-120.961454,37.912843],[-120.961298,37.913627],[-120.962709,37.914098],[-120.965689,37.916451],[-120.966630,37.918646],[-120.966787,37.919117],[-120.967414,37.919901],[-120.969767,37.922411],[-120.972120,37.924136],[-120.974315,37.924763],[-120.975413,37.924763],[-120.977138,37.924606],[-120.977452,37.924606],[-120.978079,37.925234],[-120.979334,37.925861],[-120.979805,37.926488],[-120.980589,37.926488],[-120.982157,37.926018],[-120.984980,37.926018],[-120.986706,37.926175],[-120.988745,37.925861],[-120.989999,37.925234],[-120.990627,37.925077],[-120.991881,37.925547],[-120.993764,37.925704],[-120.994861,37.926018],[-120.997685,37.927743],[-120.998312,37.927743],[-120.998939,37.927429],[-120.999253,37.926959],[-120.999253,37.925861],[-120.999723,37.925547],[-121.000194,37.925391],[-120.999880,37.893709],[-121.045991,37.892925],[-121.046305,37.901237],[-121.012271,37.901237],[-121.012271,37.921940],[-121.013055,37.921940],[-121.013996,37.922411],[-121.016349,37.923979],[-121.016976,37.924763],[-121.017603,37.924920],[-121.018231,37.925391],[-121.019015,37.925547],[-121.020426,37.925077],[-121.022152,37.923665],[-121.022308,37.923038],[-121.021995,37.922567],[-121.021681,37.921940],[-121.022152,37.921313],[-121.023720,37.920842],[-121.024504,37.920215],[-121.025759,37.919901],[-121.027171,37.920215],[-121.027641,37.920058],[-121.027798,37.929782],[-121.036738,37.929625],[-121.038306,37.930096],[-121.038463,37.938565],[-121.039247,37.963973],[-121.032817,37.964130],[-121.040816,37.973070],[-121.019642,37.973384],[-120.944672,37.973697],[-120.944829,38.017299],[-120.926479,38.017299],[-120.926479,38.063881],[-120.926479,38.072977],[-120.926479,38.077369],[-120.918794,38.070782],[-120.875976,38.028905],[-120.852450,38.009300],[-120.852764,38.011339],[-120.852764,38.015574],[-120.854646,38.020906],[-120.854803,38.022475],[-120.854646,38.023729],[-120.853548,38.025925],[-120.852764,38.028278],[-120.852607,38.029846],[-120.854176,38.029689],[-120.855273,38.029689],[-120.855273,38.031571],[-120.854019,38.032042],[-120.852607,38.032042],[-120.851980,38.033454],[-120.851666,38.034865],[-120.851980,38.035336],[-120.853078,38.035649],[-120.851980,38.035492],[-120.851352,38.035649],[-120.850568,38.037218],[-120.850098,38.037688],[-120.846647,38.039570],[-120.845549,38.039570],[-120.843824,38.039100],[-120.841785,38.039727],[-120.841471,38.040041],[-120.841315,38.040668],[-120.840844,38.041139],[-120.839433,38.041609],[-120.838335,38.042237],[-120.834570,38.045687],[-120.833786,38.046158],[-120.832375,38.046158],[-120.828297,38.046471],[-120.826572,38.046471],[-120.825787,38.046785],[-120.822337,38.047256],[-120.821866,38.047569],[-120.822023,38.048981],[-120.821866,38.049294],[-120.821553,38.049451],[-120.821239,38.049451],[-120.820455,38.048981],[-120.819984,38.048824],[-120.818102,38.049451],[-120.817318,38.049922],[-120.815593,38.050079],[-120.814652,38.050549],[-120.811672,38.050706],[-120.809476,38.051177],[-120.808064,38.051961],[-120.807280,38.052902],[-120.805555,38.054470],[-120.803830,38.054941],[-120.803359,38.054784],[-120.802105,38.054157],[-120.802105,38.052588],[-120.802105,38.052118],[-120.800222,38.049765],[-120.799281,38.049138],[-120.795988,38.049294],[-120.795517,38.049608],[-120.795047,38.050392],[-120.794263,38.050392],[-120.791910,38.049608],[-120.785793,38.048981],[-120.784068,38.049451],[-120.782656,38.050235],[-120.779676,38.053059],[-120.779520,38.053529],[-120.780147,38.054627],[-120.779990,38.054941],[-120.775285,38.056823],[-120.774030,38.057136],[-120.751288,38.057450],[-120.750818,38.057293],[-120.750504,38.056666],[-120.750661,38.054000],[-120.750347,38.053843],[-120.736388,38.053686],[-120.735291,38.053686],[-120.735134,38.053843],[-120.735604,38.055568],[-120.735604,38.055725],[-120.728703,38.058391],[-120.723998,38.053686],[-120.722743,38.051020],[-120.721489,38.049765],[-120.720861,38.049451],[-120.719606,38.049451],[-120.717881,38.049922],[-120.715685,38.049138],[-120.695453,38.048667],[-120.693100,38.048353],[-120.691375,38.047412],[-120.690905,38.047412],[-120.691532,38.046942],[-120.693728,38.046158],[-120.695924,38.044746],[-120.714117,38.030787],[-120.715215,38.029846],[-120.715215,38.028748],[-120.715372,38.028592],[-120.716313,38.028435],[-120.720077,38.028592],[-120.721489,38.027964],[-120.723371,38.027494],[-120.724782,38.026553],[-120.726351,38.026553],[-120.731526,38.024671],[-120.739839,38.023259],[-120.748779,38.018240],[-120.749406,38.018397],[-120.751131,38.019495],[-120.757562,38.024200],[-120.760071,38.025612],[-120.761797,38.025455],[-120.761797,38.025768],[-120.761953,38.026082],[-120.761169,38.026396],[-120.763051,38.028592],[-120.763522,38.028278],[-120.763522,38.027807],[-120.763208,38.027180],[-120.763208,38.026553],[-120.763679,38.026082],[-120.765247,38.025455],[-120.766031,38.024514],[-120.766031,38.024357],[-120.765090,38.023729],[-120.764777,38.022945],[-120.768541,38.023259],[-120.770109,38.022632],[-120.772619,38.023259],[-120.774814,38.021847],[-120.776383,38.021691],[-120.777010,38.021847],[-120.777794,38.022004],[-120.778578,38.021377],[-120.779206,38.021377],[-120.779990,38.021063],[-120.781558,38.020906],[-120.783441,38.021220],[-120.784382,38.020436],[-120.785009,38.020122],[-120.786577,38.019808],[-120.787518,38.019808],[-120.788146,38.019495],[-120.788303,38.019181],[-120.787989,38.018397],[-120.787989,38.017926],[-120.788459,38.017299],[-120.788773,38.016358],[-120.789244,38.016044],[-120.789557,38.016044],[-120.790969,38.016672],[-120.792851,38.016044],[-120.794419,38.016201],[-120.795988,38.017142],[-120.796929,38.017456]]]}}
,{"id":94564,"type":"Feature","properties":{"name":"Pinole"},"geometry":{"type":"Polygon","coordinates":[[[-122.287854,37.984990],[-122.286285,37.986715],[-122.290677,37.989381],[-122.291932,37.989695],[-122.292089,37.988911],[-122.293657,37.989068],[-122.294284,37.988284],[-122.294912,37.986558],[-122.295853,37.986245],[-122.296010,37.987029],[-122.298048,37.986401],[-122.298048,37.986245],[-122.299460,37.985774],[-122.300401,37.985931],[-122.300244,37.986245],[-122.300715,37.986558],[-122.300401,37.988284],[-122.300872,37.989068],[-122.301028,37.989538],[-122.306988,37.989538],[-122.307616,37.989381],[-122.307616,37.988754],[-122.308400,37.988597],[-122.307459,37.987813],[-122.308086,37.987499],[-122.308243,37.987499],[-122.308557,37.986872],[-122.309498,37.986245],[-122.309498,37.985774],[-122.309968,37.985774],[-122.312007,37.983892],[-122.312791,37.984049],[-122.315615,37.985617],[-122.313889,37.987970],[-122.311694,37.989852],[-122.313889,37.990322],[-122.307459,37.993146],[-122.308400,37.994243],[-122.309498,37.995341],[-122.310125,37.996282],[-122.311537,37.997694],[-122.311380,37.997851],[-122.312007,37.998478],[-122.314203,37.997380],[-122.314674,37.997851],[-122.315301,37.997851],[-122.315144,37.997067],[-122.315928,37.996910],[-122.316242,37.997694],[-122.317497,37.999106],[-122.317497,37.999890],[-122.318595,38.001615],[-122.315928,38.002713],[-122.316556,38.003183],[-122.316712,38.003183],[-122.317183,38.003340],[-122.317653,38.003654],[-122.314360,38.004752],[-122.314046,38.006791],[-122.313732,38.008359],[-122.313262,38.011339],[-122.313732,38.011339],[-122.313732,38.011653],[-122.315615,38.011653],[-122.316085,38.012123],[-122.316399,38.012123],[-122.316712,38.011653],[-122.317026,38.011496],[-122.326437,38.009771],[-122.320633,38.015103],[-122.319222,38.015887],[-122.318281,38.016044],[-122.317340,38.016044],[-122.315928,38.015731],[-122.313732,38.015260],[-122.307929,38.015260],[-122.304636,38.015417],[-122.302126,38.017926],[-122.297578,38.015260],[-122.294598,38.015260],[-122.295539,38.014319],[-122.292716,38.010712],[-122.291147,38.009300],[-122.290677,38.008673],[-122.290520,38.007889],[-122.289893,38.007889],[-122.289893,38.008045],[-122.289893,38.007889],[-122.289579,38.007889],[-122.287070,38.008202],[-122.285188,38.009300],[-122.283305,38.006948],[-122.281737,38.004281],[-122.280012,38.003811],[-122.279384,38.003340],[-122.279855,38.003183],[-122.279698,38.002713],[-122.279855,38.002399],[-122.281267,38.001772],[-122.281423,38.001772],[-122.282051,38.000988],[-122.280169,38.000988],[-122.279541,38.000988],[-122.278443,38.000988],[-122.277346,37.999262],[-122.277659,37.999262],[-122.275777,37.996439],[-122.275463,37.995341],[-122.274993,37.994871],[-122.274209,37.994243],[-122.273581,37.994243],[-122.272797,37.993773],[-122.272483,37.993302],[-122.270758,37.993459],[-122.269033,37.992518],[-122.268719,37.992048],[-122.268406,37.992048],[-122.268092,37.991734],[-122.267621,37.992205],[-122.266837,37.991734],[-122.266524,37.991891],[-122.266367,37.992048],[-122.265896,37.991577],[-122.265112,37.991420],[-122.264485,37.991891],[-122.260093,37.992675],[-122.258995,37.992675],[-122.257427,37.992675],[-122.256799,37.992989],[-122.256956,37.993459],[-122.253506,37.994557],[-122.249742,37.992989],[-122.249898,37.992832],[-122.249898,37.992048],[-122.250212,37.991264],[-122.250369,37.991107],[-122.249271,37.990793],[-122.248330,37.990322],[-122.246762,37.989852],[-122.245977,37.989068],[-122.244723,37.988440],[-122.244252,37.987813],[-122.243311,37.987813],[-122.242370,37.986872],[-122.240645,37.985931],[-122.239704,37.984990],[-122.238920,37.983578],[-122.237665,37.982480],[-122.237351,37.981853],[-122.238292,37.979814],[-122.238763,37.979187],[-122.239390,37.979187],[-122.239861,37.978716],[-122.240017,37.977775],[-122.241272,37.977618],[-122.242056,37.977305],[-122.243468,37.976364],[-122.244095,37.975423],[-122.243938,37.974325],[-122.243311,37.973384],[-122.243311,37.972913],[-122.242684,37.972443],[-122.242684,37.971815],[-122.241743,37.971815],[-122.243154,37.971031],[-122.244095,37.971188],[-122.245507,37.972129],[-122.247703,37.972286],[-122.248801,37.972913],[-122.250212,37.973384],[-122.251153,37.975109],[-122.253819,37.976207],[-122.254133,37.975893],[-122.255702,37.975736],[-122.256015,37.975893],[-122.256015,37.976364],[-122.256172,37.975109],[-122.260250,37.972913],[-122.260720,37.972913],[-122.260093,37.972129],[-122.258681,37.971031],[-122.260250,37.971188],[-122.261348,37.972129],[-122.261661,37.972913],[-122.262916,37.973227],[-122.264641,37.973384],[-122.265269,37.973227],[-122.265582,37.973697],[-122.266837,37.973854],[-122.266367,37.974795],[-122.268406,37.974795],[-122.274209,37.978246],[-122.273581,37.978403],[-122.278757,37.981226],[-122.278914,37.982324],[-122.279071,37.982480],[-122.278287,37.983108],[-122.279855,37.984363],[-122.279541,37.983578],[-122.280639,37.983421],[-122.281110,37.983578],[-122.282364,37.983421],[-122.281894,37.982010],[-122.283933,37.982010],[-122.283933,37.983108],[-122.286285,37.983108],[-122.287697,37.983421],[-122.288167,37.983735],[-122.288011,37.983892],[-122.288011,37.984049],[-122.288481,37.984363],[-122.287854,37.984990]]]}}
,{"id":94516,"type":"Feature","properties":{"name":"Canyon"},"geometry":{"type":"Polygon","coordinates":[[[-122.161284,37.840226],[-122.158304,37.835050],[-122.157363,37.829091],[-122.151403,37.825169],[-122.151246,37.820307],[-122.152187,37.820621],[-122.153285,37.821248],[-122.154539,37.821719],[-122.155481,37.822503],[-122.159872,37.825013],[-122.165832,37.829875],[-122.165518,37.829875],[-122.165989,37.830345],[-122.168812,37.832541],[-122.170694,37.833796],[-122.173360,37.836148],[-122.179163,37.838187],[-122.180418,37.838971],[-122.181359,37.839756],[-122.172576,37.845088],[-122.172262,37.845088],[-122.172419,37.841951],[-122.170694,37.841324],[-122.170067,37.840697],[-122.169596,37.840540],[-122.161284,37.840226]]]}}
,{"id":94957,"type":"Feature","properties":{"name":"Ross"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.552914,37.965542],[-122.553385,37.966012],[-122.554953,37.967110],[-122.554796,37.967581],[-122.555424,37.968208],[-122.555580,37.968208],[-122.555737,37.968992],[-122.553855,37.969306],[-122.552600,37.969306],[-122.551973,37.969620],[-122.551973,37.970404],[-122.552287,37.970717],[-122.551659,37.970874],[-122.551503,37.971188],[-122.551973,37.971502],[-122.552287,37.971972],[-122.553071,37.972129],[-122.553228,37.972756],[-122.552757,37.972286],[-122.552600,37.972913],[-122.551816,37.972443],[-122.550875,37.972286],[-122.550248,37.971972],[-122.549150,37.972286],[-122.548523,37.972129],[-122.548209,37.971815],[-122.548523,37.971188],[-122.548366,37.970874],[-122.545386,37.968365],[-122.545699,37.968208],[-122.545699,37.967581],[-122.546170,37.967581],[-122.546170,37.967110],[-122.545543,37.967267],[-122.545543,37.966796],[-122.544602,37.966012],[-122.544445,37.965855],[-122.544131,37.965699],[-122.543504,37.965228],[-122.542876,37.965228],[-122.542406,37.964601],[-122.541778,37.964601],[-122.541622,37.964287],[-122.541465,37.964287],[-122.540837,37.964130],[-122.540524,37.963816],[-122.542719,37.962875],[-122.543190,37.963189],[-122.544288,37.962719],[-122.544445,37.962875],[-122.544288,37.963346],[-122.544758,37.963189],[-122.545072,37.963032],[-122.546484,37.961307],[-122.548523,37.962562],[-122.551189,37.965071],[-122.552444,37.965542],[-122.552914,37.965542]]],[[[-122.580832,37.965855],[-122.580518,37.966640],[-122.582714,37.968208],[-122.583027,37.968051],[-122.583184,37.968051],[-122.583498,37.968522],[-122.583341,37.968992],[-122.582557,37.968992],[-122.581930,37.969306],[-122.580518,37.969463],[-122.572833,37.967581],[-122.570951,37.966796],[-122.570794,37.967267],[-122.568912,37.967581],[-122.568284,37.967424],[-122.567657,37.967894],[-122.567500,37.967267],[-122.567500,37.966796],[-122.567814,37.966640],[-122.567814,37.966169],[-122.568128,37.966012],[-122.567657,37.965855],[-122.564677,37.966326],[-122.564050,37.966953],[-122.562325,37.967737],[-122.561540,37.968522],[-122.560756,37.967424],[-122.561070,37.966640],[-122.560756,37.966012],[-122.558874,37.961778],[-122.556835,37.962248],[-122.555737,37.961150],[-122.555737,37.960523],[-122.556208,37.960366],[-122.554796,37.958013],[-122.555580,37.957700],[-122.555110,37.957386],[-122.555580,37.957229],[-122.555894,37.957386],[-122.557306,37.956445],[-122.557776,37.955347],[-122.559031,37.955504],[-122.559658,37.955504],[-122.560599,37.955818],[-122.561384,37.955818],[-122.561854,37.955347],[-122.563579,37.955347],[-122.564207,37.955661],[-122.564834,37.955661],[-122.564834,37.959111],[-122.564991,37.959111],[-122.564991,37.957229],[-122.565148,37.957229],[-122.565148,37.957856],[-122.565461,37.957856],[-122.565461,37.957229],[-122.565618,37.957229],[-122.565618,37.959111],[-122.565932,37.959268],[-122.565932,37.957386],[-122.566402,37.957386],[-122.566402,37.956602],[-122.566559,37.956915],[-122.568912,37.956759],[-122.568912,37.955818],[-122.570637,37.954877],[-122.574558,37.955033],[-122.574558,37.956131],[-122.574088,37.956445],[-122.573774,37.957386],[-122.573147,37.957543],[-122.572833,37.957856],[-122.572362,37.957856],[-122.573303,37.958484],[-122.575499,37.959268],[-122.578950,37.962562],[-122.578009,37.965228],[-122.580832,37.965855]]]]}}
,{"id":94929,"type":"Feature","properties":{"name":"Dillon Beach"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.964150,38.237660],[-122.964150,38.237973],[-122.963365,38.238287],[-122.962581,38.235464],[-122.962424,38.235621],[-122.959915,38.236091],[-122.959601,38.235935],[-122.960072,38.235935],[-122.960542,38.235621],[-122.960072,38.234994],[-122.961170,38.234523],[-122.962895,38.234209],[-122.963993,38.233582],[-122.966189,38.232641],[-122.968071,38.232798],[-122.969325,38.234209],[-122.969325,38.235307],[-122.968698,38.237503],[-122.968071,38.237660],[-122.968071,38.237503],[-122.965404,38.237346],[-122.964150,38.237660]]],[[[-122.966502,38.249266],[-122.967443,38.248952],[-122.967287,38.249580],[-122.967443,38.250678],[-122.968071,38.251305],[-122.968228,38.251775],[-122.968541,38.252246],[-122.968228,38.253030],[-122.968541,38.253501],[-122.968855,38.253971],[-122.969325,38.254128],[-122.969639,38.254599],[-122.970266,38.255069],[-122.970580,38.255540],[-122.970423,38.256324],[-122.970894,38.257265],[-122.971051,38.258990],[-122.972149,38.260088],[-122.974187,38.261186],[-122.974031,38.261500],[-122.974344,38.261813],[-122.974344,38.262754],[-122.974501,38.263068],[-122.974972,38.263382],[-122.974972,38.263695],[-122.976070,38.264950],[-122.976540,38.265891],[-122.977638,38.266518],[-122.977795,38.267303],[-122.977638,38.267773],[-122.977324,38.267930],[-122.977167,38.268244],[-122.977324,38.269028],[-122.977795,38.269655],[-122.977638,38.269969],[-122.976383,38.269812],[-122.976383,38.268401],[-122.975756,38.267930],[-122.975756,38.267616],[-122.976540,38.267459],[-122.976697,38.267146],[-122.975599,38.266518],[-122.973874,38.266048],[-122.973246,38.265264],[-122.971051,38.263695],[-122.970266,38.263538],[-122.969325,38.263695],[-122.966973,38.262127],[-122.965248,38.261500],[-122.964307,38.260872],[-122.960229,38.257422],[-122.959601,38.257265],[-122.958503,38.257579],[-122.958033,38.257108],[-122.957249,38.256010],[-122.954269,38.255853],[-122.952544,38.256010],[-122.952230,38.255853],[-122.946584,38.251148],[-122.945329,38.250991],[-122.945015,38.250678],[-122.952544,38.249109],[-122.952544,38.248795],[-122.952230,38.247854],[-122.952387,38.247698],[-122.952700,38.247541],[-122.953798,38.248168],[-122.954896,38.248168],[-122.955837,38.247698],[-122.956621,38.247070],[-122.957876,38.246913],[-122.958974,38.247227],[-122.960542,38.248011],[-122.960856,38.247854],[-122.961797,38.246913],[-122.962268,38.245188],[-122.961954,38.244718],[-122.962581,38.244874],[-122.964307,38.244874],[-122.966189,38.244404],[-122.965718,38.246757],[-122.966502,38.247384],[-122.966502,38.249266]]]]}}
,{"id":94924,"type":"Feature","properties":{"name":"Bolinas"},"geometry":{"type":"Polygon","coordinates":[[[-122.659566,37.939349],[-122.661448,37.939977],[-122.661918,37.938879],[-122.663330,37.938095],[-122.663800,37.937467],[-122.666623,37.936369],[-122.667564,37.935742],[-122.669133,37.935271],[-122.669603,37.934958],[-122.670074,37.934487],[-122.671329,37.933703],[-122.672897,37.933546],[-122.673681,37.933860],[-122.673681,37.933703],[-122.673681,37.933076],[-122.673054,37.931978],[-122.674309,37.930723],[-122.675720,37.929782],[-122.677759,37.929468],[-122.678230,37.928841],[-122.678700,37.928527],[-122.680269,37.928057],[-122.680739,37.928057],[-122.681523,37.928370],[-122.681053,37.929468],[-122.681210,37.930096],[-122.681366,37.930253],[-122.681523,37.930253],[-122.682621,37.929939],[-122.683249,37.930253],[-122.683249,37.930723],[-122.683562,37.931664],[-122.683876,37.931664],[-122.685287,37.930880],[-122.685601,37.930880],[-122.685915,37.931194],[-122.686228,37.931821],[-122.685601,37.932292],[-122.685287,37.932292],[-122.684660,37.932762],[-122.684503,37.933076],[-122.683405,37.934017],[-122.682621,37.934330],[-122.682464,37.935115],[-122.682464,37.935742],[-122.681837,37.936056],[-122.681837,37.936526],[-122.681994,37.936997],[-122.681837,37.937154],[-122.681210,37.937154],[-122.680112,37.937938],[-122.679641,37.938408],[-122.677132,37.939663],[-122.676818,37.940447],[-122.675563,37.941388],[-122.675720,37.941702],[-122.675406,37.942016],[-122.675720,37.942643],[-122.675250,37.943113],[-122.675250,37.943741],[-122.676348,37.943741],[-122.676661,37.944055],[-122.676348,37.944682],[-122.676661,37.945152],[-122.676191,37.945937],[-122.676191,37.946250],[-122.676504,37.946250],[-122.676348,37.946564],[-122.676348,37.946878],[-122.676661,37.947035],[-122.677132,37.946721],[-122.677602,37.945937],[-122.678073,37.945780],[-122.678700,37.944368],[-122.679484,37.944211],[-122.679484,37.943584],[-122.679798,37.943113],[-122.680896,37.942643],[-122.681053,37.941859],[-122.681680,37.941231],[-122.682307,37.940761],[-122.683562,37.941075],[-122.683092,37.940604],[-122.683249,37.940290],[-122.683876,37.939820],[-122.684660,37.939663],[-122.685287,37.939506],[-122.685287,37.939036],[-122.685601,37.938565],[-122.685915,37.938408],[-122.686385,37.938565],[-122.686856,37.938251],[-122.686699,37.937938],[-122.687013,37.937781],[-122.687954,37.937467],[-122.688424,37.937154],[-122.688581,37.936997],[-122.688424,37.936840],[-122.687326,37.936997],[-122.687640,37.936840],[-122.687797,37.936369],[-122.687954,37.935115],[-122.688895,37.934487],[-122.689522,37.934644],[-122.690463,37.934174],[-122.691561,37.934330],[-122.691718,37.934487],[-122.691091,37.934801],[-122.691247,37.935115],[-122.690934,37.935585],[-122.690934,37.935899],[-122.691875,37.935899],[-122.692032,37.936213],[-122.693129,37.936056],[-122.693757,37.936683],[-122.693914,37.935899],[-122.694071,37.935585],[-122.695325,37.935115],[-122.696737,37.935271],[-122.697364,37.934644],[-122.696580,37.934330],[-122.696580,37.934174],[-122.695953,37.934017],[-122.694855,37.933389],[-122.693914,37.933233],[-122.692345,37.933233],[-122.691247,37.932448],[-122.689836,37.932292],[-122.689052,37.932135],[-122.688895,37.931978],[-122.688895,37.931664],[-122.689522,37.930880],[-122.689052,37.930409],[-122.686699,37.930096],[-122.684190,37.930253],[-122.683719,37.929939],[-122.682778,37.929782],[-122.682464,37.929312],[-122.682307,37.929312],[-122.682464,37.928998],[-122.682307,37.928841],[-122.682464,37.928214],[-122.682307,37.927586],[-122.680896,37.926332],[-122.680896,37.925861],[-122.680425,37.925391],[-122.679014,37.924920],[-122.676975,37.925077],[-122.676348,37.924763],[-122.675406,37.924136],[-122.674152,37.922411],[-122.673368,37.921626],[-122.671956,37.920685],[-122.671956,37.919587],[-122.671329,37.918960],[-122.670388,37.918333],[-122.668192,37.917549],[-122.666623,37.916137],[-122.666153,37.915196],[-122.666310,37.914255],[-122.665682,37.913941],[-122.665212,37.913627],[-122.664898,37.913000],[-122.664114,37.912530],[-122.663800,37.912530],[-122.662546,37.911589],[-122.661134,37.911275],[-122.659722,37.910804],[-122.659409,37.910020],[-122.658311,37.909863],[-122.657840,37.910020],[-122.657056,37.909706],[-122.656586,37.909236],[-122.654860,37.908295],[-122.654547,37.907824],[-122.653135,37.906883],[-122.652508,37.906727],[-122.652194,37.906883],[-122.651724,37.906883],[-122.650939,37.906256],[-122.650939,37.905785],[-122.650469,37.905942],[-122.650155,37.905472],[-122.648744,37.906413],[-122.648273,37.905942],[-122.647489,37.904531],[-122.646548,37.904060],[-122.646077,37.903433],[-122.645607,37.903276],[-122.645293,37.903119],[-122.645450,37.902806],[-122.645764,37.902806],[-122.649685,37.904374],[-122.649842,37.904688],[-122.649842,37.904844],[-122.649057,37.905158],[-122.648744,37.905629],[-122.648900,37.906099],[-122.651567,37.904531],[-122.651096,37.905472],[-122.652665,37.906413],[-122.658468,37.908452],[-122.661448,37.909236],[-122.665682,37.908609],[-122.670701,37.908922],[-122.671956,37.908765],[-122.674779,37.907981],[-122.676034,37.907824],[-122.677602,37.907981],[-122.679955,37.909079],[-122.680582,37.909079],[-122.681053,37.909079],[-122.681053,37.908765],[-122.680739,37.908138],[-122.679641,37.907197],[-122.678700,37.906570],[-122.677289,37.906413],[-122.672270,37.906099],[-122.668506,37.905785],[-122.664898,37.905472],[-122.661448,37.904844],[-122.655017,37.902962],[-122.650783,37.901394],[-122.647018,37.899512],[-122.642784,37.897316],[-122.638863,37.894650],[-122.635099,37.891670],[-122.634785,37.891199],[-122.634785,37.890729],[-122.634314,37.890415],[-122.633060,37.889474],[-122.632903,37.889160],[-122.633216,37.888690],[-122.632432,37.888063],[-122.631962,37.887278],[-122.631021,37.886651],[-122.630550,37.886180],[-122.628668,37.885396],[-122.631177,37.884141],[-122.634001,37.883044],[-122.635726,37.885239],[-122.637608,37.887906],[-122.640117,37.890572],[-122.643254,37.892297],[-122.646234,37.894493],[-122.650939,37.897002],[-122.656272,37.898884],[-122.661761,37.900453],[-122.667251,37.901551],[-122.672270,37.902021],[-122.679955,37.902335],[-122.686856,37.899826],[-122.691091,37.897630],[-122.694698,37.895905],[-122.696423,37.894022],[-122.697050,37.892140],[-122.699246,37.890415],[-122.703167,37.889788],[-122.707872,37.890886],[-122.712107,37.892454],[-122.713832,37.894650],[-122.717283,37.895591],[-122.721988,37.896061],[-122.726850,37.897002],[-122.732183,37.898884],[-122.735476,37.903747],[-122.736888,37.910020],[-122.738770,37.913471],[-122.740338,37.917078],[-122.743005,37.921313],[-122.737045,37.925704],[-122.739711,37.926959],[-122.742848,37.928998],[-122.745985,37.930253],[-122.746769,37.930880],[-122.748180,37.930880],[-122.749435,37.931507],[-122.750690,37.932605],[-122.752572,37.933703],[-122.753513,37.934801],[-122.754611,37.935428],[-122.756493,37.935742],[-122.757748,37.935742],[-122.759943,37.936056],[-122.761512,37.936683],[-122.762296,37.936526],[-122.764492,37.936997],[-122.765903,37.937624],[-122.767158,37.939820],[-122.767629,37.940918],[-122.768099,37.941545],[-122.769197,37.942329],[-122.769668,37.943113],[-122.770922,37.943898],[-122.773902,37.944055],[-122.774686,37.943898],[-122.775000,37.943584],[-122.776098,37.943113],[-122.776569,37.943270],[-122.776725,37.943584],[-122.776255,37.943898],[-122.775941,37.944368],[-122.775784,37.945309],[-122.776098,37.946250],[-122.777196,37.947348],[-122.778607,37.948132],[-122.779078,37.948289],[-122.779862,37.948289],[-122.782058,37.947662],[-122.782842,37.947976],[-122.783313,37.948289],[-122.783470,37.949701],[-122.782842,37.950956],[-122.783626,37.952524],[-122.783940,37.954249],[-122.783313,37.954249],[-122.781431,37.953935],[-122.780803,37.954406],[-122.779549,37.956131],[-122.777980,37.956602],[-122.777196,37.957543],[-122.776255,37.959739],[-122.775628,37.960366],[-122.775314,37.962719],[-122.774373,37.963346],[-122.773432,37.964130],[-122.772334,37.965385],[-122.772177,37.966640],[-122.772334,37.968208],[-122.772804,37.969933],[-122.772804,37.970247],[-122.771863,37.971188],[-122.771707,37.971658],[-122.771707,37.973854],[-122.771393,37.975579],[-122.770922,37.976834],[-122.771236,37.977618],[-122.771393,37.979814],[-122.771079,37.980442],[-122.769981,37.980912],[-122.769824,37.981539],[-122.769981,37.981696],[-122.771707,37.982167],[-122.772648,37.983578],[-122.772804,37.984363],[-122.773118,37.984676],[-122.772961,37.985304],[-122.772961,37.986088],[-122.774216,37.987656],[-122.775000,37.987656],[-122.774686,37.994400],[-122.774059,37.994243],[-122.772961,37.993302],[-122.771863,37.992989],[-122.771863,37.992675],[-122.772020,37.991891],[-122.771393,37.991577],[-122.771863,37.991420],[-122.771863,37.991107],[-122.772804,37.990322],[-122.772648,37.990166],[-122.773118,37.988597],[-122.772961,37.988284],[-122.772177,37.987970],[-122.772334,37.987813],[-122.772334,37.987656],[-122.771707,37.987342],[-122.769354,37.986715],[-122.769040,37.986245],[-122.769197,37.986088],[-122.768256,37.985774],[-122.767785,37.984990],[-122.767001,37.984833],[-122.766531,37.984206],[-122.765903,37.984049],[-122.765747,37.983892],[-122.765590,37.983578],[-122.765119,37.983265],[-122.765276,37.983108],[-122.765119,37.982951],[-122.764178,37.982324],[-122.764021,37.981853],[-122.764335,37.981696],[-122.764806,37.981069],[-122.764178,37.980755],[-122.764021,37.980912],[-122.763708,37.980912],[-122.763864,37.980598],[-122.763864,37.980442],[-122.763080,37.980285],[-122.763080,37.980128],[-122.763551,37.979657],[-122.762767,37.979187],[-122.762139,37.979030],[-122.761669,37.979187],[-122.761041,37.979657],[-122.761355,37.979971],[-122.760100,37.981539],[-122.760257,37.982637],[-122.759630,37.982480],[-122.758375,37.982637],[-122.758218,37.983108],[-122.757748,37.983265],[-122.757434,37.983735],[-122.757591,37.984049],[-122.757434,37.984363],[-122.757591,37.984519],[-122.757277,37.984676],[-122.756650,37.984833],[-122.756493,37.985147],[-122.755866,37.985147],[-122.755395,37.985304],[-122.754454,37.985147],[-122.753199,37.986245],[-122.752258,37.986245],[-122.751160,37.987186],[-122.750690,37.987029],[-122.750376,37.987186],[-122.750219,37.987029],[-122.750376,37.986872],[-122.750219,37.986558],[-122.750376,37.986245],[-122.750219,37.985931],[-122.749592,37.986088],[-122.749278,37.985460],[-122.748965,37.985460],[-122.748494,37.985931],[-122.748180,37.987029],[-122.747553,37.987186],[-122.744416,37.985931],[-122.743162,37.985774],[-122.742377,37.984833],[-122.741907,37.984990],[-122.741279,37.984519],[-122.740652,37.983265],[-122.739397,37.981539],[-122.737986,37.980442],[-122.737672,37.980755],[-122.737986,37.981696],[-122.738143,37.981853],[-122.736888,37.982637],[-122.736574,37.983265],[-122.735476,37.983265],[-122.735006,37.983578],[-122.734849,37.984049],[-122.734849,37.984363],[-122.734378,37.985147],[-122.732340,37.986401],[-122.731242,37.986872],[-122.729516,37.987029],[-122.726380,37.987970],[-122.721674,37.988440],[-122.720420,37.988911],[-122.719322,37.989538],[-122.717283,37.990009],[-122.715871,37.990793],[-122.714930,37.988911],[-122.715244,37.987342],[-122.714460,37.985304],[-122.713362,37.983578],[-122.713048,37.983421],[-122.712264,37.983421],[-122.710696,37.984049],[-122.710068,37.983421],[-122.707559,37.981853],[-122.707245,37.981539],[-122.705049,37.980442],[-122.704892,37.979657],[-122.704736,37.979344],[-122.704422,37.978403],[-122.703795,37.977618],[-122.703795,37.977462],[-122.703010,37.976991],[-122.702226,37.976207],[-122.701128,37.975736],[-122.700971,37.975266],[-122.700030,37.974795],[-122.699560,37.973854],[-122.698776,37.973227],[-122.698148,37.973070],[-122.697678,37.972443],[-122.697050,37.971972],[-122.696423,37.970874],[-122.695482,37.969620],[-122.694698,37.968992],[-122.694541,37.968365],[-122.693600,37.967894],[-122.691561,37.966326],[-122.691091,37.966483],[-122.689679,37.965855],[-122.689052,37.965385],[-122.688738,37.965385],[-122.688581,37.964444],[-122.687954,37.963816],[-122.687797,37.963346],[-122.687326,37.963189],[-122.686699,37.963032],[-122.686228,37.962248],[-122.685287,37.961934],[-122.684033,37.961934],[-122.683876,37.961621],[-122.683562,37.960523],[-122.682935,37.960209],[-122.682621,37.959739],[-122.682935,37.959268],[-122.683719,37.958954],[-122.683405,37.958327],[-122.683405,37.958013],[-122.682621,37.957386],[-122.682151,37.956759],[-122.681994,37.956288],[-122.680896,37.955818],[-122.680582,37.955033],[-122.678386,37.954092],[-122.677289,37.953935],[-122.677132,37.953622],[-122.676661,37.953622],[-122.676818,37.952681],[-122.676348,37.952367],[-122.676034,37.951269],[-122.675877,37.951269],[-122.674622,37.952053],[-122.673681,37.951740],[-122.672740,37.951112],[-122.672740,37.950485],[-122.672583,37.950171],[-122.671485,37.950014],[-122.670701,37.949387],[-122.668976,37.948917],[-122.668662,37.948132],[-122.669133,37.947348],[-122.668976,37.947191],[-122.667721,37.946878],[-122.667094,37.947035],[-122.665055,37.946250],[-122.664428,37.945937],[-122.664114,37.945466],[-122.663173,37.945309],[-122.662232,37.944211],[-122.661448,37.943584],[-122.661291,37.942957],[-122.660820,37.942643],[-122.660820,37.942172],[-122.660036,37.942016],[-122.659722,37.941702],[-122.658154,37.940604],[-122.659566,37.939349]]]}}
,{"id":94950,"type":"Feature","properties":{"name":"Olema"},"geometry":{"type":"Polygon","coordinates":[[[-122.772648,38.067958],[-122.773118,38.067017],[-122.773118,38.066233],[-122.771550,38.064665],[-122.771079,38.063881],[-122.771236,38.061371],[-122.771079,38.059489],[-122.770609,38.059175],[-122.769040,38.059489],[-122.767472,38.059646],[-122.764649,38.058078],[-122.761669,38.057450],[-122.759630,38.056352],[-122.759316,38.056039],[-122.758846,38.055254],[-122.758532,38.053686],[-122.758689,38.053372],[-122.759630,38.051647],[-122.759316,38.050549],[-122.759002,38.049922],[-122.760728,38.049765],[-122.766060,38.047726],[-122.768256,38.047569],[-122.769354,38.047256],[-122.770138,38.046314],[-122.770765,38.046158],[-122.770765,38.045844],[-122.770452,38.045687],[-122.769040,38.045844],[-122.768099,38.045217],[-122.766217,38.044432],[-122.765119,38.044276],[-122.764178,38.044432],[-122.762767,38.043648],[-122.762296,38.042393],[-122.762453,38.040511],[-122.763080,38.039414],[-122.764335,38.038159],[-122.764492,38.037845],[-122.764335,38.037531],[-122.764021,38.037218],[-122.762923,38.036904],[-122.761512,38.037061],[-122.760257,38.036904],[-122.759787,38.036590],[-122.758689,38.036434],[-122.757905,38.035963],[-122.758375,38.035806],[-122.759316,38.035022],[-122.759787,38.033610],[-122.760414,38.032826],[-122.760571,38.032356],[-122.760257,38.031415],[-122.759787,38.029062],[-122.759473,38.028278],[-122.751474,38.023416],[-122.749592,38.022475],[-122.748494,38.022318],[-122.746926,38.021377],[-122.745044,38.020593],[-122.740966,38.015417],[-122.739554,38.014162],[-122.737045,38.010712],[-122.735320,38.009457],[-122.735163,38.008202],[-122.731555,38.006163],[-122.730144,38.006006],[-122.728889,38.005065],[-122.728419,38.004438],[-122.727791,38.003968],[-122.727164,38.003027],[-122.726066,38.002399],[-122.725595,38.001929],[-122.724968,38.001144],[-122.724811,38.000360],[-122.723086,37.998949],[-122.721831,37.998008],[-122.720263,37.995969],[-122.718381,37.993146],[-122.715871,37.990793],[-122.717283,37.990009],[-122.719322,37.989538],[-122.720420,37.988911],[-122.721674,37.988440],[-122.726380,37.987970],[-122.729516,37.987029],[-122.731242,37.986872],[-122.732340,37.986401],[-122.734378,37.985147],[-122.734849,37.984363],[-122.734849,37.984049],[-122.735006,37.983578],[-122.735476,37.983265],[-122.736574,37.983265],[-122.736888,37.982637],[-122.738143,37.981853],[-122.737986,37.981696],[-122.737672,37.980755],[-122.737986,37.980442],[-122.739397,37.981539],[-122.740652,37.983265],[-122.741279,37.984519],[-122.741907,37.984990],[-122.742691,37.985931],[-122.744887,37.987813],[-122.746455,37.988597],[-122.748494,37.990322],[-122.750690,37.991420],[-122.752415,37.992989],[-122.754297,37.995341],[-122.754768,37.997380],[-122.755709,37.998792],[-122.755866,37.999576],[-122.756807,38.000203],[-122.757120,37.999890],[-122.759159,38.000360],[-122.759316,38.000517],[-122.759159,38.000831],[-122.760728,38.001772],[-122.761041,38.002242],[-122.761512,38.002556],[-122.761982,38.003811],[-122.762923,38.004595],[-122.763551,38.005536],[-122.764178,38.006948],[-122.764649,38.007575],[-122.764806,38.008045],[-122.765590,38.008359],[-122.765903,38.008986],[-122.766688,38.009300],[-122.767001,38.010241],[-122.766844,38.011182],[-122.767158,38.011496],[-122.768099,38.011810],[-122.768256,38.012751],[-122.768413,38.013221],[-122.768883,38.013378],[-122.769824,38.013378],[-122.770138,38.013535],[-122.770452,38.014005],[-122.770295,38.014946],[-122.771236,38.014946],[-122.772020,38.016515],[-122.772334,38.016672],[-122.772491,38.016985],[-122.773275,38.017142],[-122.773589,38.017613],[-122.774373,38.018083],[-122.774530,38.019338],[-122.775628,38.019495],[-122.775941,38.019652],[-122.776255,38.020749],[-122.776569,38.021220],[-122.777039,38.021534],[-122.777980,38.021691],[-122.778294,38.022318],[-122.778921,38.022632],[-122.778921,38.023259],[-122.779862,38.023102],[-122.781274,38.023573],[-122.781431,38.025455],[-122.782685,38.025925],[-122.782528,38.026709],[-122.782999,38.027180],[-122.783783,38.028748],[-122.784724,38.029533],[-122.785352,38.029846],[-122.785822,38.030160],[-122.785822,38.030944],[-122.785979,38.031415],[-122.785665,38.031728],[-122.785665,38.032042],[-122.785195,38.032199],[-122.784567,38.032983],[-122.784254,38.033297],[-122.783940,38.033767],[-122.783940,38.034395],[-122.783626,38.035336],[-122.783626,38.035806],[-122.784254,38.037218],[-122.784567,38.037375],[-122.784881,38.037375],[-122.785195,38.037531],[-122.785979,38.039100],[-122.787234,38.039414],[-122.788332,38.039570],[-122.788488,38.039727],[-122.788959,38.040982],[-122.789586,38.041296],[-122.789743,38.041452],[-122.789743,38.041766],[-122.789116,38.041609],[-122.788645,38.041766],[-122.788802,38.041923],[-122.789743,38.041923],[-122.790057,38.042237],[-122.791939,38.042550],[-122.792409,38.043021],[-122.793350,38.044276],[-122.792880,38.044276],[-122.793350,38.044903],[-122.793350,38.045060],[-122.792566,38.045373],[-122.790057,38.043021],[-122.789743,38.043021],[-122.789429,38.043335],[-122.788802,38.043335],[-122.789116,38.044119],[-122.790057,38.044746],[-122.791625,38.046628],[-122.792253,38.047099],[-122.792566,38.048667],[-122.792880,38.049451],[-122.776882,38.058705],[-122.785665,38.073134],[-122.784724,38.073448],[-122.784097,38.074232],[-122.784567,38.075487],[-122.784567,38.076114],[-122.783940,38.078624],[-122.784567,38.080663],[-122.783940,38.081447],[-122.782685,38.081917],[-122.780646,38.081133],[-122.779862,38.081133],[-122.779392,38.080819],[-122.779392,38.079721],[-122.778607,38.078624],[-122.776725,38.077996],[-122.773902,38.076114],[-122.773275,38.075487],[-122.772177,38.075016],[-122.771707,38.074703],[-122.771393,38.074232],[-122.771079,38.072193],[-122.770452,38.071252],[-122.770138,38.069997],[-122.769981,38.069997],[-122.770452,38.069370],[-122.770765,38.069056],[-122.772648,38.068586],[-122.772961,38.068272],[-122.772648,38.067958]]]}}
,{"id":94559,"type":"Feature","properties":{"name":"Napa"},"geometry":{"type":"Polygon","coordinates":[[[-122.406739,38.155632],[-122.407523,38.157828],[-122.406111,38.159396],[-122.404073,38.160337],[-122.401406,38.160965],[-122.396858,38.161435],[-122.384781,38.160965],[-122.381644,38.160494],[-122.379135,38.159867],[-122.375057,38.158612],[-122.374430,38.157985],[-122.372548,38.157671],[-122.371136,38.157671],[-122.367529,38.158769],[-122.366274,38.160808],[-122.365647,38.165984],[-122.366431,38.169434],[-122.368783,38.172885],[-122.369568,38.174453],[-122.369725,38.175865],[-122.369725,38.177590],[-122.369097,38.181825],[-122.368627,38.182609],[-122.367842,38.183393],[-122.366745,38.183864],[-122.366117,38.183864],[-122.364392,38.183707],[-122.362824,38.183393],[-122.360157,38.181981],[-122.359530,38.181825],[-122.358589,38.181981],[-122.357961,38.182609],[-122.357334,38.184020],[-122.357020,38.186216],[-122.356864,38.188726],[-122.357020,38.190608],[-122.357491,38.191862],[-122.358118,38.192803],[-122.360471,38.194999],[-122.360785,38.196254],[-122.360314,38.197038],[-122.359059,38.197509],[-122.357805,38.197665],[-122.356079,38.197195],[-122.355138,38.196881],[-122.353256,38.195470],[-122.352002,38.194058],[-122.350747,38.193117],[-122.350433,38.192647],[-122.350590,38.192333],[-122.349806,38.193901],[-122.349492,38.193901],[-122.349649,38.194529],[-122.350590,38.195940],[-122.350904,38.196881],[-122.350904,38.198920],[-122.350433,38.200489],[-122.350433,38.201273],[-122.350747,38.201900],[-122.351374,38.202371],[-122.352315,38.202684],[-122.352629,38.203782],[-122.354040,38.205351],[-122.354668,38.205978],[-122.356393,38.206762],[-122.356707,38.207233],[-122.357020,38.208174],[-122.357334,38.208644],[-122.358903,38.209429],[-122.359216,38.210056],[-122.359216,38.210370],[-122.358432,38.211467],[-122.357961,38.214761],[-122.358432,38.218212],[-122.358275,38.218525],[-122.360000,38.230445],[-122.366745,38.247070],[-122.370352,38.246913],[-122.370509,38.245345],[-122.374587,38.244561],[-122.373802,38.247384],[-122.377253,38.248482],[-122.377253,38.249893],[-122.377723,38.250050],[-122.378351,38.250050],[-122.378978,38.250678],[-122.373489,38.253501],[-122.370979,38.254442],[-122.366117,38.256167],[-122.364706,38.256167],[-122.363137,38.255853],[-122.362353,38.255853],[-122.357177,38.258363],[-122.356079,38.258363],[-122.351217,38.256481],[-122.342434,38.255383],[-122.342277,38.255696],[-122.341964,38.256010],[-122.337886,38.257579],[-122.348081,38.269655],[-122.347453,38.271224],[-122.347924,38.271694],[-122.345101,38.272792],[-122.344160,38.272949],[-122.343375,38.272949],[-122.341807,38.272165],[-122.341180,38.272008],[-122.338984,38.272635],[-122.337729,38.272635],[-122.337259,38.272792],[-122.335533,38.273890],[-122.334749,38.274047],[-122.331299,38.270126],[-122.330201,38.272008],[-122.326123,38.275145],[-122.324711,38.278438],[-122.325496,38.280477],[-122.325496,38.280948],[-122.323613,38.284241],[-122.322986,38.284712],[-122.316085,38.287535],[-122.319692,38.282673],[-122.319849,38.271067],[-122.320320,38.271067],[-122.320320,38.270596],[-122.320163,38.270439],[-122.320163,38.270283],[-122.319536,38.269969],[-122.319379,38.269655],[-122.319692,38.269498],[-122.319536,38.269342],[-122.319692,38.268714],[-122.319222,38.268087],[-122.318438,38.267303],[-122.318595,38.267146],[-122.319065,38.267146],[-122.319065,38.266989],[-122.319692,38.266362],[-122.319849,38.265891],[-122.319692,38.265264],[-122.319849,38.264793],[-122.319536,38.264166],[-122.319379,38.262911],[-122.318595,38.262597],[-122.318438,38.261970],[-122.318595,38.261656],[-122.317810,38.260872],[-122.316556,38.260558],[-122.315928,38.260088],[-122.313576,38.259461],[-122.313105,38.258990],[-122.312164,38.258833],[-122.310909,38.258990],[-122.309655,38.258833],[-122.305106,38.258206],[-122.302910,38.257579],[-122.302126,38.258833],[-122.300087,38.261343],[-122.299460,38.262754],[-122.298833,38.267930],[-122.298676,38.271694],[-122.298989,38.274988],[-122.300244,38.280948],[-122.300715,38.286123],[-122.302126,38.291927],[-122.302283,38.293181],[-122.301813,38.295534],[-122.301813,38.296475],[-122.304793,38.306826],[-122.297578,38.308081],[-122.297421,38.307454],[-122.296637,38.307611],[-122.296794,38.308238],[-122.292089,38.309022],[-122.289422,38.309493],[-122.287854,38.307767],[-122.286129,38.308552],[-122.285031,38.308552],[-122.285188,38.310277],[-122.279071,38.310277],[-122.276404,38.310591],[-122.276091,38.311532],[-122.274993,38.311532],[-122.274366,38.311688],[-122.274366,38.310747],[-122.270915,38.311061],[-122.269503,38.311375],[-122.269817,38.311061],[-122.267308,38.311061],[-122.266837,38.311532],[-122.266680,38.311375],[-122.266053,38.311845],[-122.265269,38.311375],[-122.265896,38.311061],[-122.267151,38.311061],[-122.267621,38.310591],[-122.267465,38.310120],[-122.266680,38.309022],[-122.266680,38.308081],[-122.266524,38.307611],[-122.264955,38.306826],[-122.263387,38.309022],[-122.264171,38.309336],[-122.263544,38.309963],[-122.259152,38.309022],[-122.259466,38.308081],[-122.257427,38.304003],[-122.256643,38.304003],[-122.256172,38.303376],[-122.255858,38.303376],[-122.256015,38.303062],[-122.256329,38.303062],[-122.256643,38.302278],[-122.258054,38.302592],[-122.260093,38.302592],[-122.261505,38.301808],[-122.260720,38.301651],[-122.262446,38.298357],[-122.261818,38.297416],[-122.261818,38.296318],[-122.260564,38.296318],[-122.257427,38.295377],[-122.256643,38.295220],[-122.255388,38.294436],[-122.254760,38.294279],[-122.253976,38.294436],[-122.252251,38.295377],[-122.251153,38.295377],[-122.251467,38.294907],[-122.251624,38.293809],[-122.251937,38.293338],[-122.253349,38.293338],[-122.254760,38.292397],[-122.255702,38.292397],[-122.257270,38.292083],[-122.257584,38.291770],[-122.258838,38.291299],[-122.259466,38.290358],[-122.261191,38.289574],[-122.260877,38.289260],[-122.259936,38.289103],[-122.259623,38.288633],[-122.257897,38.288633],[-122.255545,38.288162],[-122.254447,38.286123],[-122.253506,38.285182],[-122.252251,38.284869],[-122.251937,38.284398],[-122.251153,38.283771],[-122.251153,38.283614],[-122.249898,38.283144],[-122.249271,38.282673],[-122.248644,38.282673],[-122.248173,38.282359],[-122.247232,38.282359],[-122.247075,38.282516],[-122.246918,38.282673],[-122.246918,38.286908],[-122.242370,38.287065],[-122.241586,38.294593],[-122.227000,38.293181],[-122.227313,38.288162],[-122.227157,38.288006],[-122.223706,38.286594],[-122.222922,38.285810],[-122.222451,38.284555],[-122.221667,38.283928],[-122.219785,38.283614],[-122.218374,38.282987],[-122.217903,38.282359],[-122.216178,38.281575],[-122.213511,38.279693],[-122.212727,38.279693],[-122.211159,38.280164],[-122.210375,38.280164],[-122.208022,38.278281],[-122.207395,38.278281],[-122.207238,38.277027],[-122.206924,38.276556],[-122.204885,38.276399],[-122.204415,38.276870],[-122.203944,38.276870],[-122.201278,38.276870],[-122.200964,38.276399],[-122.200807,38.276086],[-122.200964,38.273419],[-122.200807,38.272478],[-122.201121,38.272008],[-122.206454,38.271537],[-122.208493,38.272165],[-122.211002,38.271851],[-122.212257,38.272792],[-122.213511,38.270910],[-122.213982,38.269655],[-122.214609,38.269185],[-122.215237,38.267459],[-122.216491,38.266048],[-122.216805,38.264166],[-122.216491,38.263538],[-122.216805,38.262284],[-122.213041,38.259147],[-122.208493,38.258363],[-122.207395,38.259147],[-122.205669,38.258676],[-122.203003,38.259147],[-122.199710,38.258990],[-122.196730,38.258363],[-122.193279,38.256481],[-122.194691,38.254755],[-122.194063,38.252873],[-122.195161,38.250678],[-122.199553,38.250991],[-122.200651,38.249423],[-122.204415,38.249266],[-122.206454,38.250991],[-122.209120,38.251148],[-122.211159,38.252246],[-122.220883,38.253501],[-122.270758,38.261186],[-122.270758,38.262911],[-122.270915,38.265264],[-122.271542,38.268871],[-122.254917,38.268087],[-122.255231,38.272478],[-122.251467,38.274831],[-122.252251,38.276243],[-122.252094,38.277497],[-122.254447,38.277654],[-122.255074,38.277184],[-122.265582,38.277968],[-122.265426,38.280007],[-122.267935,38.280164],[-122.272954,38.280320],[-122.285188,38.281732],[-122.283305,38.279379],[-122.282208,38.278752],[-122.283149,38.278125],[-122.282992,38.278125],[-122.282208,38.278595],[-122.281894,38.278281],[-122.282208,38.276713],[-122.282992,38.274674],[-122.283462,38.273890],[-122.285658,38.272792],[-122.286442,38.272165],[-122.286913,38.271380],[-122.286913,38.270596],[-122.286129,38.269028],[-122.285972,38.267303],[-122.285188,38.266048],[-122.284717,38.265577],[-122.284560,38.265107],[-122.284717,38.264166],[-122.285972,38.262754],[-122.286756,38.261500],[-122.286599,38.260402],[-122.286129,38.259774],[-122.283933,38.258676],[-122.283619,38.256794],[-122.283933,38.255383],[-122.284717,38.253971],[-122.284717,38.249893],[-122.284560,38.246129],[-122.285815,38.242992],[-122.286756,38.239542],[-122.287540,38.234209],[-122.288167,38.232955],[-122.289265,38.232327],[-122.290520,38.232170],[-122.292089,38.232170],[-122.297264,38.230602],[-122.299146,38.229504],[-122.302283,38.227151],[-122.305106,38.226838],[-122.306832,38.225897],[-122.308400,38.224015],[-122.309811,38.221819],[-122.310439,38.220564],[-122.310753,38.218682],[-122.309968,38.215545],[-122.307145,38.210370],[-122.306832,38.209115],[-122.306675,38.207233],[-122.307302,38.205664],[-122.309027,38.204096],[-122.311380,38.202371],[-122.313419,38.200175],[-122.314517,38.198293],[-122.314674,38.197195],[-122.313576,38.192960],[-122.313105,38.185118],[-122.310596,38.183079],[-122.307773,38.181981],[-122.300244,38.180413],[-122.298048,38.179315],[-122.296323,38.178060],[-122.294912,38.176492],[-122.294127,38.174453],[-122.293030,38.169748],[-122.295225,38.159083],[-122.294912,38.155162],[-122.366431,38.155632],[-122.380233,38.155789],[-122.403445,38.155475],[-122.406739,38.155632]]]}}
,{"id":95817,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.449699,38.555575],[-121.440916,38.553223],[-121.440916,38.553693],[-121.439190,38.553693],[-121.437151,38.552909],[-121.437151,38.552752],[-121.436524,38.552752],[-121.436681,38.554948],[-121.424134,38.551654],[-121.424290,38.551341],[-121.423036,38.550870],[-121.423036,38.546792],[-121.431191,38.546792],[-121.431348,38.547106],[-121.433858,38.547106],[-121.434015,38.546792],[-121.435740,38.546792],[-121.435740,38.547263],[-121.436524,38.547263],[-121.436524,38.546792],[-121.445464,38.546635],[-121.455031,38.546792],[-121.455031,38.544596],[-121.455502,38.544596],[-121.455502,38.541146],[-121.462716,38.541146],[-121.466324,38.541146],[-121.467108,38.540989],[-121.467735,38.541146],[-121.470245,38.541146],[-121.475734,38.540989],[-121.475734,38.552439],[-121.475577,38.552439],[-121.475107,38.553380],[-121.475734,38.553536],[-121.475734,38.554477],[-121.474950,38.554477],[-121.474323,38.554321],[-121.474479,38.555889],[-121.474479,38.556830],[-121.474950,38.556987],[-121.475107,38.557771],[-121.475734,38.558555],[-121.476518,38.558869],[-121.478400,38.559339],[-121.478087,38.560281],[-121.476832,38.559967],[-121.476048,38.560124],[-121.474950,38.560594],[-121.473068,38.561692],[-121.472911,38.561849],[-121.474166,38.562319],[-121.474009,38.562790],[-121.471343,38.562163],[-121.471499,38.561535],[-121.470245,38.561222],[-121.470245,38.561065],[-121.467422,38.560281],[-121.469617,38.559967],[-121.470715,38.560124],[-121.471186,38.559026],[-121.464598,38.560751],[-121.464598,38.560124],[-121.462246,38.559496],[-121.461305,38.558398],[-121.459266,38.557771],[-121.459109,38.558085],[-121.449699,38.555575]]]}}
,{"id":95641,"type":"Feature","properties":{"name":"Isleton"},"geometry":{"type":"Polygon","coordinates":[[[-121.519493,38.203155],[-121.520747,38.202998],[-121.522159,38.201900],[-121.523257,38.200332],[-121.524511,38.199391],[-121.525609,38.197352],[-121.527805,38.196411],[-121.528433,38.195940],[-121.528903,38.195313],[-121.529217,38.193901],[-121.528903,38.192960],[-121.528119,38.191706],[-121.526707,38.189980],[-121.526237,38.188726],[-121.525609,38.186687],[-121.524511,38.185589],[-121.524511,38.184648],[-121.524668,38.184177],[-121.525453,38.183550],[-121.527178,38.182922],[-121.527648,38.182138],[-121.527805,38.181668],[-121.527805,38.181040],[-121.527648,38.180570],[-121.526550,38.179786],[-121.526080,38.178845],[-121.525923,38.178060],[-121.526080,38.177119],[-121.525923,38.176649],[-121.524668,38.174767],[-121.524355,38.172728],[-121.524511,38.171787],[-121.524982,38.171473],[-121.528589,38.169748],[-121.529374,38.168964],[-121.529687,38.168336],[-121.529844,38.166925],[-121.530628,38.165356],[-121.531099,38.163317],[-121.531412,38.163161],[-121.532354,38.163004],[-121.533608,38.162533],[-121.533922,38.162063],[-121.533608,38.160808],[-121.533765,38.160024],[-121.536118,38.158142],[-121.536431,38.157828],[-121.536275,38.157201],[-121.534706,38.156103],[-121.534549,38.155632],[-121.535333,38.153436],[-121.536275,38.151554],[-121.536902,38.151241],[-121.537686,38.151241],[-121.540196,38.152025],[-121.541293,38.151868],[-121.542234,38.151398],[-121.542705,38.150770],[-121.543176,38.148104],[-121.543332,38.147633],[-121.543803,38.147320],[-121.544430,38.147320],[-121.546155,38.147947],[-121.547253,38.148104],[-121.548508,38.147477],[-121.549920,38.146065],[-121.550547,38.145594],[-121.551802,38.145281],[-121.553370,38.145438],[-121.554311,38.145281],[-121.558232,38.144340],[-121.559173,38.143869],[-121.559801,38.143085],[-121.560114,38.142144],[-121.559644,38.141203],[-121.557291,38.139164],[-121.557134,38.138380],[-121.557134,38.137909],[-121.557762,38.136811],[-121.558075,38.136498],[-121.560742,38.136498],[-121.562467,38.136027],[-121.567643,38.133675],[-121.571877,38.131479],[-121.566702,38.132577],[-121.565604,38.132263],[-121.562781,38.130538],[-121.559957,38.120657],[-121.556664,38.117834],[-121.546783,38.117206],[-121.536275,38.119402],[-121.528433,38.121912],[-121.516983,38.123009],[-121.511964,38.121127],[-121.510239,38.119402],[-121.505377,38.116736],[-121.501456,38.116265],[-121.501456,38.115167],[-121.498633,38.115324],[-121.498319,38.115167],[-121.498476,38.114070],[-121.498633,38.113285],[-121.499417,38.112031],[-121.500829,38.110933],[-121.501142,38.110149],[-121.501142,38.109521],[-121.500672,38.107953],[-121.500201,38.107169],[-121.499103,38.106384],[-121.497849,38.105757],[-121.503652,38.083799],[-121.503652,38.083486],[-121.502554,38.082701],[-121.502397,38.082388],[-121.502868,38.081290],[-121.502868,38.080663],[-121.501613,38.080192],[-121.501142,38.079878],[-121.501299,38.079408],[-121.502397,38.077526],[-121.502711,38.076898],[-121.502397,38.075016],[-121.502397,38.073762],[-121.503024,38.072664],[-121.503495,38.072350],[-121.503809,38.072350],[-121.508827,38.080192],[-121.509925,38.080819],[-121.511651,38.081290],[-121.513376,38.082388],[-121.514160,38.084270],[-121.517140,38.087250],[-121.518081,38.087877],[-121.518708,38.088818],[-121.519806,38.089446],[-121.520747,38.089446],[-121.525139,38.090230],[-121.529217,38.091641],[-121.532197,38.091485],[-121.533608,38.091014],[-121.535020,38.089916],[-121.537372,38.088661],[-121.538157,38.087877],[-121.539568,38.085995],[-121.539882,38.085838],[-121.540196,38.085681],[-121.541450,38.086152],[-121.545371,38.088191],[-121.547724,38.089132],[-121.549135,38.088505],[-121.550861,38.087093],[-121.552115,38.086779],[-121.553997,38.086936],[-121.557448,38.087093],[-121.561369,38.088505],[-121.562624,38.088505],[-121.563722,38.088034],[-121.564819,38.087093],[-121.565761,38.085995],[-121.567956,38.085681],[-121.569525,38.085995],[-121.569211,38.089916],[-121.569838,38.091328],[-121.571407,38.092582],[-121.571407,38.092739],[-121.570779,38.094151],[-121.569995,38.094621],[-121.570152,38.096817],[-121.569525,38.096974],[-121.569525,38.096974],[-121.570309,38.097288],[-121.570152,38.097601],[-121.571093,38.098229],[-121.571877,38.099013],[-121.574544,38.100268],[-121.577994,38.101209],[-121.584425,38.102150],[-121.585522,38.101993],[-121.585679,38.102150],[-121.586620,38.102307],[-121.593208,38.102777],[-121.593992,38.103561],[-121.595560,38.104816],[-121.598697,38.106228],[-121.599324,38.106698],[-121.602618,38.107953],[-121.604030,38.108266],[-121.607951,38.108423],[-121.609676,38.107953],[-121.613126,38.107796],[-121.613597,38.108737],[-121.614695,38.108266],[-121.614852,38.107325],[-121.615322,38.106698],[-121.617361,38.105757],[-121.618773,38.105443],[-121.622850,38.105130],[-121.625360,38.104502],[-121.625517,38.104345],[-121.625830,38.104345],[-121.627712,38.103875],[-121.630379,38.102307],[-121.632888,38.099483],[-121.633672,38.097758],[-121.634143,38.092739],[-121.634770,38.091328],[-121.635241,38.090857],[-121.636339,38.089916],[-121.637280,38.089916],[-121.639789,38.090543],[-121.642612,38.090857],[-121.644651,38.091485],[-121.645592,38.092582],[-121.646063,38.093367],[-121.647788,38.093680],[-121.648259,38.094151],[-121.649513,38.094464],[-121.650141,38.094778],[-121.651239,38.096033],[-121.650768,38.096190],[-121.650925,38.097131],[-121.650925,38.102463],[-121.650768,38.103248],[-121.650925,38.104502],[-121.650611,38.106698],[-121.651082,38.110149],[-121.651082,38.116579],[-121.653121,38.117520],[-121.654532,38.118147],[-121.657042,38.118775],[-121.660022,38.119873],[-121.660335,38.119716],[-121.660335,38.118775],[-121.660492,38.118461],[-121.660806,38.118147],[-121.661433,38.118304],[-121.662531,38.119559],[-121.662845,38.120814],[-121.663472,38.121441],[-121.665511,38.123323],[-121.665825,38.123480],[-121.668962,38.123166],[-121.669746,38.123323],[-121.671471,38.123950],[-121.672412,38.123950],[-121.678058,38.123323],[-121.680881,38.123166],[-121.682136,38.122853],[-121.682607,38.122382],[-121.685743,38.123009],[-121.690606,38.123009],[-121.686841,38.130067],[-121.686057,38.132263],[-121.685900,38.133518],[-121.686214,38.137282],[-121.686214,38.138066],[-121.685116,38.140576],[-121.683705,38.142928],[-121.682763,38.146692],[-121.681979,38.151241],[-121.681509,38.151868],[-121.680881,38.152495],[-121.677588,38.154064],[-121.676333,38.155162],[-121.685587,38.159710],[-121.684646,38.160808],[-121.680254,38.162847],[-121.678058,38.164886],[-121.676647,38.166297],[-121.671628,38.172414],[-121.669903,38.173669],[-121.668177,38.175237],[-121.667236,38.176335],[-121.666923,38.176963],[-121.661590,38.176178],[-121.658767,38.176022],[-121.655473,38.175551],[-121.652336,38.174924],[-121.650298,38.174139],[-121.647631,38.173512],[-121.643710,38.173042],[-121.638691,38.173042],[-121.637280,38.172728],[-121.633516,38.171473],[-121.631477,38.170532],[-121.627556,38.167082],[-121.626144,38.166454],[-121.622223,38.165043],[-121.616420,38.163788],[-121.616263,38.163945],[-121.613440,38.163788],[-121.609990,38.163788],[-121.605755,38.164415],[-121.602618,38.165513],[-121.599481,38.167238],[-121.597285,38.167552],[-121.595403,38.169277],[-121.593521,38.171630],[-121.593364,38.171787],[-121.593678,38.171944],[-121.590384,38.177276],[-121.586307,38.182609],[-121.584111,38.184961],[-121.581758,38.187000],[-121.578308,38.189039],[-121.570623,38.191862],[-121.565917,38.192960],[-121.564506,38.193588],[-121.561526,38.195470],[-121.560271,38.196881],[-121.558860,38.199234],[-121.558075,38.200802],[-121.557919,38.201900],[-121.557605,38.208174],[-121.557762,38.215388],[-121.557291,38.219937],[-121.556350,38.223544],[-121.548822,38.222917],[-121.544430,38.222760],[-121.543960,38.222446],[-121.544273,38.222133],[-121.544273,38.221662],[-121.543489,38.219309],[-121.543489,38.218212],[-121.543176,38.217271],[-121.542078,38.216173],[-121.539098,38.214447],[-121.538470,38.213977],[-121.536118,38.211311],[-121.536588,38.210840],[-121.538000,38.210683],[-121.539568,38.210213],[-121.540352,38.209742],[-121.540980,38.208801],[-121.540352,38.208644],[-121.540509,38.208174],[-121.540352,38.207860],[-121.540666,38.207076],[-121.540666,38.205978],[-121.539568,38.202841],[-121.532824,38.202841],[-121.529217,38.204253],[-121.528119,38.204566],[-121.528433,38.205351],[-121.519963,38.203782],[-121.519493,38.203155]]]}}
,{"id":95624,"type":"Feature","properties":{"name":"Elk Grove"},"geometry":{"type":"Polygon","coordinates":[[[-121.371749,38.452531],[-121.360300,38.452688],[-121.344302,38.452688],[-121.344145,38.452374],[-121.343674,38.452061],[-121.344772,38.451590],[-121.346027,38.451120],[-121.346027,38.450963],[-121.334735,38.451120],[-121.334735,38.452688],[-121.297563,38.452688],[-121.297563,38.450179],[-121.296779,38.450179],[-121.295995,38.449708],[-121.295524,38.450179],[-121.294583,38.450335],[-121.294427,38.450492],[-121.294583,38.450963],[-121.294270,38.451120],[-121.293172,38.450806],[-121.292231,38.450179],[-121.291917,38.450022],[-121.291290,38.450335],[-121.291133,38.450963],[-121.290976,38.450963],[-121.288310,38.450649],[-121.287369,38.450179],[-121.286898,38.449551],[-121.286271,38.449394],[-121.285800,38.449081],[-121.285016,38.449081],[-121.284546,38.449238],[-121.284075,38.449865],[-121.283448,38.450492],[-121.282820,38.450335],[-121.280938,38.451433],[-121.277958,38.451120],[-121.276390,38.453159],[-121.261647,38.467588],[-121.256471,38.472293],[-121.242199,38.484997],[-121.242199,38.496603],[-121.244081,38.496603],[-121.244081,38.499426],[-121.243767,38.499583],[-121.243610,38.499897],[-121.243767,38.503347],[-121.244238,38.503818],[-121.243924,38.504132],[-121.244238,38.505700],[-121.243924,38.506014],[-121.242512,38.505700],[-121.241415,38.505543],[-121.234514,38.504445],[-121.223221,38.501936],[-121.215536,38.500367],[-121.208164,38.498642],[-121.197186,38.497074],[-121.197186,38.496603],[-121.197029,38.496446],[-121.195303,38.495662],[-121.195774,38.495819],[-121.196245,38.496133],[-121.197342,38.496133],[-121.197813,38.495819],[-121.198127,38.495349],[-121.198597,38.494408],[-121.200793,38.493623],[-121.201734,38.492996],[-121.202361,38.491428],[-121.202361,38.490330],[-121.202832,38.489546],[-121.202989,38.488918],[-121.204087,38.487820],[-121.205812,38.487036],[-121.205969,38.486722],[-121.205969,38.486095],[-121.206439,38.485311],[-121.206596,38.484213],[-121.207537,38.484213],[-121.208008,38.483899],[-121.208635,38.481547],[-121.211458,38.477626],[-121.211615,38.477155],[-121.211301,38.476528],[-121.211301,38.476214],[-121.211615,38.475587],[-121.212242,38.475116],[-121.212399,38.474646],[-121.212085,38.474175],[-121.211144,38.473861],[-121.210988,38.473548],[-121.211929,38.472920],[-121.213026,38.473234],[-121.214595,38.472920],[-121.214752,38.472764],[-121.214595,38.472136],[-121.214124,38.471823],[-121.213967,38.471352],[-121.214281,38.470882],[-121.215222,38.470568],[-121.215850,38.469940],[-121.216477,38.468686],[-121.216320,38.468372],[-121.215850,38.468215],[-121.215850,38.468058],[-121.216477,38.467117],[-121.217104,38.466804],[-121.217732,38.466647],[-121.218045,38.466960],[-121.218202,38.466960],[-121.218516,38.466490],[-121.218359,38.465706],[-121.217575,38.465235],[-121.217261,38.464608],[-121.217418,38.464294],[-121.218045,38.463510],[-121.218202,38.462569],[-121.219143,38.461785],[-121.218830,38.461314],[-121.218359,38.460844],[-121.218202,38.460373],[-121.218516,38.459903],[-121.218673,38.459589],[-121.220241,38.459118],[-121.213026,38.455197],[-121.211144,38.454727],[-121.211615,38.453943],[-121.211772,38.453315],[-121.211615,38.452688],[-121.210988,38.452061],[-121.210988,38.451590],[-121.212085,38.450335],[-121.213183,38.449238],[-121.213811,38.447826],[-121.214595,38.446571],[-121.215536,38.446571],[-121.216791,38.446885],[-121.218986,38.447355],[-121.220084,38.447355],[-121.221339,38.446728],[-121.222594,38.445473],[-121.224319,38.444846],[-121.225574,38.443748],[-121.226044,38.442807],[-121.228083,38.441552],[-121.229024,38.441396],[-121.229652,38.440768],[-121.230593,38.440611],[-121.232788,38.440768],[-121.235768,38.440454],[-121.236552,38.440141],[-121.237180,38.439827],[-121.237023,38.438886],[-121.237337,38.437004],[-121.236866,38.436220],[-121.236866,38.435436],[-121.237180,38.434808],[-121.237650,38.434338],[-121.237964,38.433553],[-121.237807,38.432456],[-121.237807,38.431201],[-121.238278,38.430730],[-121.239532,38.430103],[-121.240473,38.429319],[-121.242199,38.428535],[-121.243767,38.426809],[-121.245492,38.425398],[-121.246120,38.425241],[-121.249257,38.425555],[-121.251295,38.425398],[-121.253178,38.425868],[-121.254119,38.425555],[-121.255844,38.424614],[-121.257569,38.423359],[-121.258040,38.422888],[-121.258510,38.421947],[-121.258667,38.421790],[-121.262117,38.420536],[-121.265411,38.418967],[-121.265725,38.418340],[-121.265882,38.417085],[-121.266509,38.416772],[-121.269646,38.417085],[-121.270901,38.416458],[-121.271214,38.416458],[-121.272155,38.416772],[-121.272626,38.417085],[-121.273253,38.416928],[-121.274037,38.417085],[-121.276233,38.417085],[-121.278115,38.417869],[-121.279684,38.416928],[-121.280938,38.415360],[-121.281879,38.413321],[-121.282193,38.412694],[-121.281879,38.411596],[-121.282507,38.410027],[-121.283918,38.408459],[-121.285644,38.407047],[-121.285800,38.406577],[-121.285800,38.405793],[-121.286114,38.405322],[-121.286428,38.405165],[-121.287526,38.404852],[-121.289878,38.405479],[-121.291290,38.405322],[-121.291603,38.404852],[-121.291917,38.403911],[-121.291603,38.403440],[-121.291760,38.402656],[-121.291447,38.401244],[-121.291603,38.400617],[-121.292545,38.399833],[-121.294113,38.399990],[-121.295838,38.399049],[-121.296622,38.397323],[-121.296309,38.395598],[-121.296779,38.394343],[-121.296936,38.393402],[-121.297563,38.391677],[-121.297720,38.390893],[-121.299132,38.389168],[-121.300073,38.388383],[-121.299916,38.386972],[-121.300230,38.384933],[-121.301641,38.384462],[-121.305876,38.382267],[-121.307131,38.382580],[-121.307915,38.382424],[-121.309170,38.382424],[-121.310267,38.382267],[-121.313718,38.381639],[-121.315600,38.380385],[-121.316541,38.380385],[-121.317796,38.379130],[-121.319207,38.378973],[-121.319678,38.378189],[-121.320148,38.376777],[-121.320776,38.375993],[-121.321560,38.375523],[-121.322972,38.374738],[-121.323599,38.373797],[-121.324697,38.372856],[-121.324854,38.372229],[-121.324383,38.370504],[-121.323913,38.369563],[-121.323913,38.368935],[-121.324540,38.367210],[-121.326422,38.365171],[-121.327677,38.364857],[-121.330186,38.364701],[-121.332853,38.364230],[-121.334264,38.364230],[-121.336617,38.363446],[-121.338499,38.362348],[-121.339126,38.361877],[-121.341792,38.360466],[-121.342263,38.359995],[-121.342890,38.358427],[-121.343674,38.357643],[-121.343674,38.357643],[-121.344772,38.359368],[-121.352771,38.367053],[-121.362182,38.376307],[-121.376768,38.391363],[-121.381316,38.397637],[-121.388688,38.408930],[-121.395589,38.423829],[-121.407665,38.450492],[-121.410645,38.456766],[-121.405470,38.456139],[-121.405626,38.454413],[-121.405156,38.452531],[-121.371749,38.452531]]]}}
,{"id":94571,"type":"Feature","properties":{"name":"Rio Vista"},"geometry":{"type":"Polygon","coordinates":[[[-121.655787,38.313414],[-121.630692,38.313100],[-121.630536,38.294593],[-121.630536,38.294122],[-121.631163,38.293495],[-121.631320,38.293181],[-121.631163,38.292554],[-121.630536,38.292397],[-121.630849,38.291770],[-121.632104,38.292083],[-121.635398,38.290986],[-121.637437,38.290986],[-121.639476,38.290358],[-121.641358,38.290358],[-121.645122,38.289103],[-121.645435,38.288006],[-121.644651,38.287221],[-121.643710,38.286751],[-121.643553,38.286280],[-121.643710,38.283300],[-121.643553,38.282202],[-121.643083,38.281575],[-121.642455,38.281261],[-121.641358,38.281105],[-121.640417,38.279693],[-121.639005,38.278752],[-121.638064,38.277811],[-121.638221,38.277027],[-121.638848,38.276243],[-121.641044,38.274988],[-121.641358,38.274674],[-121.641671,38.273106],[-121.642299,38.272165],[-121.642455,38.271224],[-121.641985,38.270126],[-121.640887,38.268714],[-121.640887,38.267930],[-121.642769,38.265891],[-121.647474,38.263538],[-121.649043,38.262127],[-121.650925,38.262127],[-121.651395,38.261970],[-121.651866,38.261656],[-121.651709,38.260558],[-121.652023,38.255540],[-121.652336,38.254912],[-121.653121,38.254755],[-121.655160,38.254755],[-121.655944,38.254128],[-121.656885,38.249109],[-121.657355,38.248482],[-121.658767,38.247227],[-121.659081,38.246600],[-121.659081,38.246129],[-121.658453,38.244718],[-121.658767,38.244090],[-121.660335,38.243149],[-121.662374,38.242208],[-121.664727,38.240640],[-121.665354,38.239856],[-121.665511,38.239385],[-121.665511,38.237973],[-121.665825,38.235621],[-121.666452,38.235150],[-121.667393,38.234837],[-121.668648,38.234837],[-121.669903,38.234052],[-121.669903,38.233582],[-121.671941,38.232484],[-121.673353,38.232170],[-121.674608,38.228720],[-121.673824,38.223387],[-121.671628,38.218368],[-121.669275,38.215075],[-121.662061,38.208958],[-121.659708,38.207233],[-121.658924,38.205978],[-121.657512,38.203155],[-121.657042,38.199704],[-121.657355,38.195156],[-121.658140,38.191706],[-121.660492,38.187471],[-121.662531,38.183236],[-121.664570,38.180884],[-121.664570,38.180570],[-121.666295,38.178531],[-121.666923,38.177590],[-121.666923,38.176963],[-121.667236,38.176335],[-121.668177,38.175237],[-121.669903,38.173669],[-121.671628,38.172414],[-121.676647,38.166297],[-121.678058,38.164886],[-121.680254,38.162847],[-121.684646,38.160808],[-121.685587,38.159710],[-121.676333,38.155162],[-121.677588,38.154064],[-121.680881,38.152495],[-121.681509,38.151868],[-121.681979,38.151241],[-121.682763,38.146692],[-121.683705,38.142928],[-121.685116,38.140576],[-121.686214,38.138066],[-121.686214,38.137282],[-121.685900,38.133518],[-121.686057,38.132263],[-121.686841,38.130067],[-121.690606,38.123009],[-121.685743,38.123009],[-121.682607,38.122382],[-121.682136,38.122853],[-121.680881,38.123166],[-121.678058,38.123323],[-121.672412,38.123950],[-121.671471,38.123950],[-121.669746,38.123323],[-121.668962,38.123166],[-121.665825,38.123480],[-121.665511,38.123323],[-121.663472,38.121441],[-121.662845,38.120814],[-121.662531,38.119559],[-121.661433,38.118304],[-121.660806,38.118147],[-121.660492,38.118461],[-121.660335,38.118775],[-121.660335,38.119716],[-121.660022,38.119873],[-121.657042,38.118775],[-121.654532,38.118147],[-121.653121,38.117520],[-121.651082,38.116579],[-121.651082,38.110149],[-121.650611,38.106698],[-121.650925,38.104502],[-121.650768,38.103248],[-121.650925,38.102463],[-121.650925,38.097131],[-121.650768,38.096190],[-121.651239,38.096033],[-121.650141,38.094778],[-121.649513,38.094464],[-121.648259,38.094151],[-121.647788,38.093680],[-121.646063,38.093367],[-121.645592,38.092582],[-121.644651,38.091485],[-121.642612,38.090857],[-121.639789,38.090543],[-121.637280,38.089916],[-121.636339,38.089916],[-121.635241,38.090857],[-121.634770,38.091328],[-121.634143,38.092739],[-121.633672,38.097758],[-121.632888,38.099483],[-121.630379,38.102307],[-121.627712,38.103875],[-121.625830,38.104345],[-121.625517,38.104345],[-121.625360,38.104502],[-121.622850,38.105130],[-121.618773,38.105443],[-121.617361,38.105757],[-121.615322,38.106698],[-121.614852,38.107325],[-121.614695,38.108266],[-121.613597,38.108737],[-121.613126,38.107796],[-121.609676,38.107953],[-121.607951,38.108423],[-121.604030,38.108266],[-121.602618,38.107953],[-121.599324,38.106698],[-121.598697,38.106228],[-121.595560,38.104816],[-121.593992,38.103561],[-121.593208,38.102777],[-121.586620,38.102307],[-121.585679,38.102150],[-121.585522,38.101993],[-121.584425,38.102150],[-121.577994,38.101209],[-121.574544,38.100268],[-121.571877,38.099013],[-121.571093,38.098229],[-121.570152,38.097601],[-121.570309,38.097288],[-121.569525,38.096974],[-121.569525,38.096974],[-121.570152,38.096817],[-121.574073,38.096347],[-121.578935,38.094935],[-121.580033,38.094464],[-121.581288,38.093994],[-121.582229,38.094935],[-121.585209,38.096347],[-121.593364,38.097758],[-121.604971,38.099954],[-121.619714,38.099483],[-121.627399,38.098386],[-121.628340,38.097915],[-121.628967,38.097288],[-121.629595,38.096033],[-121.630849,38.092426],[-121.632575,38.088661],[-121.634300,38.087250],[-121.636652,38.086466],[-121.638064,38.086152],[-121.640573,38.086466],[-121.645122,38.087407],[-121.647004,38.088348],[-121.648102,38.089289],[-121.648729,38.090073],[-121.652023,38.091641],[-121.661904,38.095562],[-121.662531,38.095562],[-121.673039,38.093523],[-121.679313,38.089289],[-121.681822,38.082074],[-121.681666,38.080663],[-121.680254,38.076585],[-121.680097,38.075487],[-121.679627,38.068115],[-121.679784,38.065135],[-121.680881,38.062155],[-121.681509,38.061214],[-121.683077,38.059646],[-121.684332,38.058548],[-121.691703,38.053529],[-121.699702,38.045217],[-121.704407,38.042550],[-121.709583,38.039884],[-121.712406,38.038943],[-121.716798,38.037688],[-121.725581,38.033767],[-121.732639,38.029062],[-121.734678,38.027964],[-121.737814,38.026553],[-121.739540,38.026239],[-121.746598,38.024671],[-121.748950,38.024357],[-121.751460,38.024200],[-121.758204,38.024200],[-121.761968,38.023729],[-121.765105,38.023259],[-121.770594,38.021063],[-121.777495,38.018867],[-121.778279,38.019024],[-121.781416,38.018554],[-121.786435,38.018711],[-121.788788,38.018397],[-121.790827,38.018554],[-121.794904,38.019495],[-121.798041,38.020906],[-121.801021,38.021377],[-121.801335,38.021691],[-121.801492,38.021377],[-121.804942,38.021063],[-121.809334,38.020279],[-121.811843,38.020436],[-121.815607,38.021063],[-121.817019,38.021534],[-121.818117,38.022161],[-121.822665,38.025298],[-121.823136,38.025298],[-121.823920,38.025768],[-121.827684,38.027964],[-121.828311,38.028278],[-121.832076,38.031101],[-121.834271,38.034708],[-121.837879,38.038943],[-121.840545,38.045217],[-121.841643,38.051961],[-121.846819,38.059960],[-121.853563,38.064822],[-121.854504,38.065135],[-121.862503,38.066076],[-121.862659,38.067017],[-121.862503,38.067958],[-121.861562,38.069841],[-121.861091,38.069997],[-121.859523,38.071095],[-121.858582,38.071409],[-121.857641,38.072036],[-121.852935,38.072821],[-121.848544,38.074232],[-121.843839,38.076428],[-121.843211,38.076585],[-121.842427,38.076742],[-121.839290,38.075487],[-121.837565,38.074389],[-121.835997,38.073291],[-121.833958,38.071409],[-121.832232,38.069370],[-121.827841,38.066233],[-121.817646,38.062783],[-121.810745,38.060744],[-121.805256,38.059646],[-121.801649,38.059489],[-121.800080,38.059646],[-121.798512,38.060116],[-121.798355,38.096503],[-121.818117,38.096817],[-121.818430,38.096974],[-121.817489,38.097288],[-121.814353,38.100581],[-121.813725,38.103404],[-121.813882,38.104502],[-121.813725,38.105757],[-121.814196,38.106698],[-121.817960,38.107953],[-121.820783,38.107012],[-121.821567,38.106228],[-121.821881,38.106228],[-121.823449,38.107169],[-121.823606,38.107482],[-121.823449,38.108110],[-121.822508,38.109992],[-121.822822,38.110776],[-121.822195,38.111874],[-121.822195,38.115011],[-121.821881,38.116422],[-121.821410,38.116265],[-121.820940,38.116265],[-121.816235,38.118775],[-121.815450,38.118775],[-121.814196,38.118618],[-121.814353,38.122853],[-121.811843,38.123009],[-121.809491,38.123009],[-121.807765,38.123323],[-121.806511,38.123794],[-121.805726,38.123950],[-121.801649,38.123637],[-121.799453,38.123323],[-121.797100,38.122539],[-121.795689,38.122696],[-121.792552,38.123323],[-121.790827,38.123166],[-121.791297,38.125519],[-121.791611,38.127715],[-121.791297,38.128342],[-121.790199,38.129283],[-121.788474,38.131322],[-121.787690,38.131793],[-121.787062,38.132577],[-121.786435,38.133988],[-121.786435,38.134929],[-121.785964,38.135870],[-121.786278,38.137596],[-121.786906,38.138850],[-121.787062,38.140105],[-121.786592,38.141203],[-121.786435,38.142301],[-121.786749,38.143556],[-121.786592,38.145124],[-121.786592,38.147947],[-121.788944,38.147790],[-121.792709,38.148731],[-121.793022,38.148888],[-121.793650,38.149672],[-121.797100,38.150927],[-121.798669,38.152809],[-121.799139,38.152809],[-121.799610,38.152652],[-121.800080,38.153436],[-121.800394,38.153907],[-121.800864,38.155005],[-121.802590,38.157514],[-121.803687,38.157985],[-121.805099,38.158142],[-121.806667,38.157828],[-121.807608,38.158142],[-121.806511,38.160965],[-121.806354,38.161592],[-121.806354,38.167238],[-121.806197,38.169591],[-121.806040,38.183550],[-121.806197,38.183550],[-121.806197,38.197195],[-121.805883,38.214604],[-121.805570,38.242208],[-121.814980,38.242051],[-121.842584,38.242208],[-121.842427,38.271380],[-121.842270,38.278281],[-121.842270,38.278438],[-121.842113,38.278438],[-121.829096,38.278281],[-121.823920,38.272792],[-121.823763,38.271537],[-121.822822,38.271380],[-121.821567,38.270283],[-121.818274,38.266675],[-121.809804,38.258049],[-121.808236,38.259304],[-121.805413,38.260088],[-121.805256,38.260088],[-121.804001,38.259304],[-121.803844,38.259147],[-121.804472,38.259147],[-121.804158,38.258833],[-121.803060,38.258363],[-121.801805,38.258206],[-121.800394,38.258833],[-121.798825,38.259304],[-121.792552,38.259774],[-121.783926,38.260088],[-121.781259,38.260088],[-121.780318,38.260245],[-121.775770,38.260402],[-121.775299,38.260715],[-121.771849,38.261500],[-121.771535,38.261813],[-121.771378,38.263068],[-121.771221,38.263068],[-121.771221,38.263225],[-121.771849,38.263225],[-121.771849,38.262597],[-121.775613,38.261970],[-121.779534,38.263382],[-121.779534,38.274831],[-121.779848,38.281105],[-121.779691,38.281261],[-121.779063,38.281418],[-121.778907,38.281418],[-121.778750,38.284398],[-121.777181,38.284398],[-121.776397,38.284869],[-121.775613,38.284869],[-121.768869,38.284869],[-121.768869,38.285026],[-121.760086,38.285026],[-121.760086,38.285810],[-121.759302,38.286280],[-121.759145,38.286437],[-121.759145,38.293652],[-121.749577,38.296632],[-121.748950,38.296632],[-121.747695,38.296318],[-121.746441,38.295848],[-121.745343,38.295534],[-121.744245,38.294907],[-121.743147,38.294436],[-121.742520,38.293809],[-121.741735,38.292554],[-121.740951,38.291770],[-121.739226,38.292240],[-121.736873,38.291770],[-121.736089,38.290829],[-121.735462,38.290672],[-121.733737,38.290358],[-121.729345,38.290515],[-121.728090,38.290358],[-121.726836,38.290044],[-121.722130,38.285026],[-121.721189,38.284555],[-121.718994,38.284085],[-121.718523,38.283771],[-121.716170,38.280948],[-121.715073,38.280320],[-121.713191,38.278281],[-121.710838,38.276713],[-121.710367,38.276243],[-121.710211,38.275772],[-121.710054,38.273890],[-121.709897,38.273263],[-121.709270,38.272478],[-121.705819,38.270126],[-121.702212,38.266832],[-121.699389,38.264950],[-121.698604,38.263695],[-121.697820,38.261656],[-121.696409,38.260088],[-121.694997,38.257579],[-121.694527,38.257108],[-121.694370,38.256794],[-121.695468,38.250991],[-121.696409,38.247384],[-121.699075,38.247384],[-121.702682,38.247698],[-121.702369,38.245972],[-121.701114,38.245972],[-121.699075,38.245816],[-121.697193,38.245972],[-121.696879,38.245816],[-121.696722,38.244718],[-121.696095,38.244874],[-121.696095,38.244561],[-121.695154,38.243777],[-121.689978,38.244404],[-121.688567,38.244090],[-121.688880,38.243306],[-121.684018,38.238287],[-121.681666,38.240012],[-121.681352,38.241894],[-121.680881,38.242208],[-121.680254,38.242522],[-121.680411,38.242679],[-121.680254,38.242836],[-121.679156,38.243149],[-121.678529,38.243777],[-121.678215,38.244561],[-121.677901,38.245031],[-121.677901,38.246129],[-121.677745,38.246600],[-121.676019,38.248011],[-121.674294,38.250834],[-121.673510,38.251775],[-121.673196,38.253658],[-121.671785,38.254599],[-121.671785,38.254912],[-121.672255,38.256324],[-121.671314,38.259617],[-121.670844,38.262441],[-121.671000,38.263538],[-121.671314,38.264480],[-121.671157,38.265264],[-121.671785,38.265734],[-121.671628,38.265891],[-121.670687,38.266832],[-121.669275,38.269655],[-121.668648,38.269498],[-121.668334,38.270283],[-121.666766,38.272165],[-121.665825,38.273733],[-121.665511,38.274674],[-121.665197,38.276713],[-121.665197,38.279066],[-121.664256,38.282673],[-121.665041,38.285496],[-121.665668,38.286751],[-121.666138,38.289417],[-121.665354,38.289574],[-121.665668,38.289731],[-121.665511,38.290201],[-121.666295,38.290672],[-121.666923,38.292868],[-121.666766,38.313571],[-121.655787,38.313414]]]}}
,{"id":95742,"type":"Feature","properties":{"name":"Rancho Cordova"},"geometry":{"type":"Polygon","coordinates":[[[-121.259765,38.568436],[-121.266509,38.568123],[-121.266980,38.569377],[-121.267921,38.570632],[-121.266509,38.571730],[-121.265254,38.573141],[-121.264941,38.573926],[-121.264941,38.574553],[-121.264470,38.575024],[-121.264627,38.575651],[-121.266038,38.587414],[-121.266195,38.588041],[-121.267293,38.589610],[-121.266980,38.593531],[-121.266666,38.595413],[-121.266823,38.596668],[-121.267607,38.597765],[-121.268234,38.597138],[-121.268862,38.596040],[-121.269175,38.595726],[-121.269803,38.595413],[-121.270744,38.595256],[-121.270901,38.596824],[-121.271214,38.597765],[-121.271998,38.598393],[-121.273881,38.599491],[-121.273410,38.599961],[-121.271998,38.600745],[-121.270901,38.602000],[-121.267607,38.603568],[-121.270116,38.606862],[-121.270430,38.607803],[-121.270430,38.609215],[-121.264627,38.611411],[-121.264470,38.611097],[-121.228083,38.624899],[-121.216947,38.630702],[-121.217104,38.630859],[-121.207851,38.635878],[-121.208321,38.636348],[-121.208321,38.637132],[-121.208164,38.637132],[-121.208008,38.637603],[-121.206753,38.637446],[-121.206282,38.636976],[-121.205969,38.636819],[-121.201891,38.638858],[-121.200322,38.639485],[-121.198754,38.639799],[-121.175071,38.642622],[-121.172091,38.642779],[-121.159073,38.642308],[-121.159230,38.641994],[-121.162367,38.642151],[-121.159230,38.641838],[-121.159387,38.641210],[-121.160014,38.639955],[-121.159387,38.639955],[-121.158289,38.639642],[-121.157819,38.639328],[-121.156878,38.639642],[-121.155937,38.639642],[-121.155623,38.638544],[-121.154682,38.636976],[-121.153898,38.636191],[-121.151702,38.634937],[-121.150447,38.632898],[-121.150447,38.614547],[-121.149192,38.615175],[-121.142605,38.617057],[-121.143232,38.605137],[-121.143232,38.573769],[-121.143860,38.549772],[-121.144644,38.530951],[-121.145115,38.530951],[-121.145428,38.530638],[-121.145742,38.529853],[-121.145899,38.529069],[-121.146526,38.528285],[-121.146683,38.527815],[-121.147781,38.526874],[-121.148722,38.525148],[-121.149036,38.524207],[-121.149663,38.523423],[-121.149663,38.522325],[-121.149506,38.521070],[-121.148879,38.520600],[-121.148408,38.519032],[-121.149036,38.518718],[-121.148879,38.518404],[-121.149192,38.517620],[-121.150447,38.516208],[-121.152329,38.515267],[-121.153113,38.514326],[-121.154995,38.513385],[-121.156407,38.511817],[-121.157662,38.511817],[-121.158446,38.511503],[-121.158603,38.511346],[-121.158603,38.510719],[-121.159387,38.509151],[-121.159701,38.508210],[-121.160328,38.506798],[-121.160328,38.506484],[-121.159858,38.506171],[-121.160485,38.505700],[-121.161426,38.504602],[-121.162837,38.503975],[-121.164249,38.503034],[-121.164563,38.502720],[-121.164876,38.501465],[-121.165817,38.502093],[-121.174130,38.503661],[-121.188402,38.508053],[-121.201891,38.521070],[-121.205812,38.524521],[-121.206282,38.524207],[-121.206753,38.523737],[-121.207066,38.523109],[-121.207694,38.522796],[-121.208008,38.522168],[-121.208478,38.521855],[-121.209105,38.522168],[-121.209262,38.521855],[-121.211458,38.521384],[-121.212399,38.520914],[-121.212870,38.520286],[-121.213183,38.520286],[-121.213654,38.520443],[-121.214281,38.520443],[-121.216006,38.519659],[-121.219143,38.516522],[-121.224005,38.513228],[-121.224162,38.512601],[-121.224633,38.512444],[-121.225103,38.512287],[-121.225260,38.512601],[-121.225731,38.512601],[-121.227299,38.512444],[-121.227142,38.511974],[-121.227299,38.511503],[-121.228397,38.511660],[-121.229024,38.511346],[-121.230436,38.511346],[-121.230749,38.510876],[-121.240003,38.511033],[-121.240003,38.506171],[-121.241258,38.506014],[-121.241415,38.505543],[-121.242512,38.505700],[-121.242669,38.525619],[-121.242826,38.527658],[-121.242983,38.552595],[-121.243767,38.552595],[-121.244081,38.553380],[-121.244865,38.554164],[-121.249570,38.557614],[-121.250825,38.558085],[-121.253334,38.558555],[-121.253805,38.559026],[-121.255687,38.559026],[-121.255687,38.562790],[-121.256628,38.568907],[-121.258667,38.568123],[-121.259765,38.568436]]]}}
,{"id":94118,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.447988,37.793174],[-122.447674,37.791762],[-122.446576,37.786273],[-122.447517,37.785489],[-122.447674,37.785018],[-122.446419,37.785332],[-122.445792,37.782509],[-122.444381,37.782509],[-122.443753,37.781882],[-122.445635,37.781254],[-122.445478,37.780156],[-122.446263,37.779999],[-122.446106,37.778745],[-122.445322,37.778902],[-122.445008,37.777019],[-122.444851,37.776078],[-122.446419,37.775765],[-122.446890,37.777647],[-122.453164,37.776863],[-122.452850,37.774981],[-122.463672,37.773569],[-122.464613,37.772471],[-122.462104,37.771844],[-122.459124,37.771373],[-122.459280,37.770903],[-122.459908,37.770432],[-122.461790,37.770275],[-122.464456,37.769648],[-122.466966,37.768080],[-122.469161,37.769021],[-122.470102,37.769177],[-122.471357,37.769177],[-122.472298,37.768550],[-122.472612,37.767609],[-122.473082,37.767139],[-122.475905,37.766354],[-122.477317,37.766041],[-122.477317,37.766354],[-122.478101,37.767609],[-122.478415,37.769491],[-122.479513,37.771216],[-122.479356,37.771844],[-122.478885,37.772157],[-122.478415,37.772314],[-122.475121,37.772471],[-122.472455,37.772314],[-122.471828,37.772628],[-122.471671,37.772942],[-122.471828,37.773098],[-122.475592,37.772942],[-122.476690,37.786744],[-122.475592,37.786744],[-122.473396,37.787214],[-122.470887,37.787214],[-122.459437,37.789724],[-122.448929,37.791762],[-122.448615,37.791919],[-122.448302,37.793017],[-122.447988,37.793174]]]}}
,{"id":94116,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.463358,37.753023],[-122.462104,37.751925],[-122.461476,37.751455],[-122.460535,37.749886],[-122.458653,37.748004],[-122.458653,37.747533],[-122.459124,37.747220],[-122.459280,37.747220],[-122.459124,37.746906],[-122.460849,37.745338],[-122.461319,37.745495],[-122.463672,37.743769],[-122.467750,37.743456],[-122.468534,37.741574],[-122.471200,37.741417],[-122.470887,37.737025],[-122.470573,37.736555],[-122.471514,37.734673],[-122.471828,37.734829],[-122.474964,37.734673],[-122.475121,37.734673],[-122.475278,37.737496],[-122.481709,37.737182],[-122.482336,37.737496],[-122.483277,37.737496],[-122.485002,37.737182],[-122.485786,37.736712],[-122.486257,37.736712],[-122.488453,37.737025],[-122.488923,37.737182],[-122.490021,37.737966],[-122.490335,37.737966],[-122.491433,37.737182],[-122.491276,37.734202],[-122.491276,37.734045],[-122.496452,37.733888],[-122.496608,37.733732],[-122.499118,37.734359],[-122.499275,37.734516],[-122.500529,37.735143],[-122.502098,37.735457],[-122.505078,37.735614],[-122.505391,37.735457],[-122.506646,37.735457],[-122.506646,37.736241],[-122.508371,37.748945],[-122.508528,37.748945],[-122.510410,37.764002],[-122.509783,37.764002],[-122.508215,37.750984],[-122.470887,37.752552],[-122.471200,37.753493],[-122.471043,37.754748],[-122.469946,37.754748],[-122.470259,37.753964],[-122.469475,37.753650],[-122.469161,37.752866],[-122.468377,37.753180],[-122.468063,37.752709],[-122.467750,37.752709],[-122.463358,37.753023]]]}}
,{"id":94123,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.430108,37.795840],[-122.431833,37.795683],[-122.433402,37.795370],[-122.433245,37.794429],[-122.434970,37.794272],[-122.435127,37.795213],[-122.436695,37.795056],[-122.436539,37.794115],[-122.440616,37.793488],[-122.440930,37.794429],[-122.441714,37.794429],[-122.441557,37.793488],[-122.446419,37.792860],[-122.446263,37.791919],[-122.447674,37.791762],[-122.447988,37.793174],[-122.448458,37.794115],[-122.448615,37.794742],[-122.449086,37.795056],[-122.448615,37.795527],[-122.447674,37.795370],[-122.447361,37.795527],[-122.447517,37.795840],[-122.448929,37.796311],[-122.447988,37.796468],[-122.447988,37.796781],[-122.448615,37.796938],[-122.448615,37.797566],[-122.447988,37.797409],[-122.448302,37.797879],[-122.447988,37.798193],[-122.447361,37.798507],[-122.447674,37.800702],[-122.449243,37.801800],[-122.450811,37.803212],[-122.451752,37.803526],[-122.452693,37.803526],[-122.452850,37.803682],[-122.452379,37.803682],[-122.452850,37.803682],[-122.449086,37.804310],[-122.448302,37.804780],[-122.448458,37.806035],[-122.448145,37.806349],[-122.448145,37.806819],[-122.448615,37.808701],[-122.443126,37.809799],[-122.439519,37.808858],[-122.440930,37.806976],[-122.435911,37.807603],[-122.435911,37.807760],[-122.433872,37.807917],[-122.433715,37.808231],[-122.432931,37.807917],[-122.433715,37.808231],[-122.433715,37.807917],[-122.435911,37.807603],[-122.433872,37.807917],[-122.433872,37.807760],[-122.435754,37.807603],[-122.435597,37.807290],[-122.435597,37.807290],[-122.435597,37.807290],[-122.435441,37.807447],[-122.434813,37.807447],[-122.434813,37.807447],[-122.433715,37.807447],[-122.433715,37.807603],[-122.433559,37.807447],[-122.433559,37.807603],[-122.433559,37.807447],[-122.435597,37.807290],[-122.435597,37.806976],[-122.433088,37.807290],[-122.433088,37.807133],[-122.434343,37.806976],[-122.434186,37.806976],[-122.434029,37.806662],[-122.432931,37.806976],[-122.432931,37.806819],[-122.434029,37.806662],[-122.434029,37.806505],[-122.432931,37.806662],[-122.432774,37.806505],[-122.434029,37.806349],[-122.433872,37.806192],[-122.432774,37.806349],[-122.432774,37.806192],[-122.433872,37.806035],[-122.433872,37.805878],[-122.432774,37.806035],[-122.432774,37.805878],[-122.433872,37.805721],[-122.433559,37.805564],[-122.432618,37.805721],[-122.432461,37.805878],[-122.432618,37.805878],[-122.432461,37.806035],[-122.432461,37.806035],[-122.432461,37.806192],[-122.432461,37.806662],[-122.432304,37.806035],[-122.431676,37.803212],[-122.425089,37.804153],[-122.425089,37.803369],[-122.424932,37.803212],[-122.426501,37.803055],[-122.426344,37.802114],[-122.424776,37.802271],[-122.424619,37.801487],[-122.424462,37.801330],[-122.426187,37.801173],[-122.426030,37.800232],[-122.424305,37.800389],[-122.424462,37.800389],[-122.424148,37.799448],[-122.424148,37.798663],[-122.423991,37.798507],[-122.423991,37.798507],[-122.423834,37.797566],[-122.423678,37.796781],[-122.423678,37.796625],[-122.430108,37.795840]]]}}
,{"id":95209,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.322344,38.042707],[-121.322658,38.041609],[-121.322815,38.040041],[-121.322815,38.027650],[-121.322972,38.021534],[-121.323128,38.021063],[-121.323599,38.019965],[-121.323913,38.019495],[-121.325324,38.021063],[-121.333323,38.021063],[-121.333323,38.019652],[-121.335205,38.019652],[-121.336303,38.019181],[-121.336774,38.019652],[-121.336303,38.020279],[-121.336146,38.021220],[-121.339440,38.021220],[-121.339440,38.021063],[-121.350732,38.021063],[-121.351517,38.020906],[-121.352144,38.021063],[-121.355438,38.021063],[-121.356065,38.021063],[-121.355908,38.020279],[-121.355438,38.019652],[-121.356065,38.019338],[-121.356692,38.020436],[-121.356692,38.021377],[-121.358574,38.021377],[-121.365318,38.035022],[-121.367671,38.042550],[-121.367828,38.043178],[-121.368142,38.043178],[-121.368298,38.043648],[-121.372847,38.058078],[-121.382100,38.057921],[-121.391354,38.058078],[-121.391668,38.058078],[-121.391981,38.061842],[-121.392766,38.061528],[-121.393236,38.061685],[-121.393550,38.061685],[-121.393707,38.061999],[-121.393236,38.062312],[-121.392609,38.062469],[-121.391981,38.062312],[-121.392295,38.064508],[-121.392609,38.063724],[-121.392922,38.063567],[-121.393236,38.063881],[-121.393079,38.064822],[-121.392452,38.065763],[-121.393079,38.072350],[-121.388217,38.072350],[-121.386492,38.072507],[-121.386335,38.072350],[-121.379748,38.072350],[-121.379120,38.072193],[-121.378336,38.072350],[-121.378336,38.072507],[-121.377238,38.072350],[-121.377395,38.072821],[-121.351987,38.072350],[-121.351830,38.057764],[-121.310581,38.057607],[-121.311209,38.056195],[-121.313718,38.051647],[-121.314345,38.050863],[-121.315286,38.049765],[-121.321246,38.050079],[-121.319051,38.046314],[-121.322501,38.046314],[-121.322972,38.046471],[-121.323913,38.046471],[-121.323913,38.044589],[-121.322187,38.042707],[-121.322344,38.042707]]]}}
,{"id":95231,"type":"Feature","properties":{"name":"French Camp"},"geometry":{"type":"Polygon","coordinates":[[[-121.280468,37.855597],[-121.281879,37.855597],[-121.279056,37.865791],[-121.279684,37.865791],[-121.280468,37.862968],[-121.304464,37.862027],[-121.304464,37.855753],[-121.309640,37.855597],[-121.309483,37.864850],[-121.322972,37.864693],[-121.326422,37.865477],[-121.326893,37.865791],[-121.327049,37.866105],[-121.326893,37.867046],[-121.327049,37.867830],[-121.328931,37.870810],[-121.329873,37.872849],[-121.330500,37.873476],[-121.332068,37.874104],[-121.332382,37.874731],[-121.332382,37.875358],[-121.331755,37.876143],[-121.331441,37.876770],[-121.331598,37.877397],[-121.332225,37.878966],[-121.332382,37.879279],[-121.332068,37.881475],[-121.331441,37.883514],[-121.331284,37.886337],[-121.330814,37.886965],[-121.329402,37.888219],[-121.329088,37.889474],[-121.327520,37.891827],[-121.327363,37.892454],[-121.328304,37.893866],[-121.328461,37.894650],[-121.328304,37.895277],[-121.327049,37.897159],[-121.322031,37.897159],[-121.320776,37.896375],[-121.303367,37.896689],[-121.303367,37.897159],[-121.281409,37.897002],[-121.280625,37.896532],[-121.280154,37.896061],[-121.279997,37.894022],[-121.279684,37.893238],[-121.276390,37.890101],[-121.275919,37.894493],[-121.272312,37.892611],[-121.271214,37.891513],[-121.271371,37.890415],[-121.270587,37.889945],[-121.270116,37.889474],[-121.268234,37.888376],[-121.267921,37.888533],[-121.266980,37.888219],[-121.266038,37.888376],[-121.264941,37.887749],[-121.260549,37.888847],[-121.257099,37.888376],[-121.255844,37.887435],[-121.254903,37.886494],[-121.253962,37.884612],[-121.253334,37.883985],[-121.249257,37.881475],[-121.248786,37.880848],[-121.248943,37.880377],[-121.248786,37.880064],[-121.247374,37.878809],[-121.247061,37.878652],[-121.245806,37.878495],[-121.244551,37.879123],[-121.243140,37.879123],[-121.242512,37.878495],[-121.243140,37.878338],[-121.246747,37.873320],[-121.246747,37.873163],[-121.245963,37.872692],[-121.245179,37.872065],[-121.246747,37.869869],[-121.250198,37.871437],[-121.253491,37.873633],[-121.254589,37.872222],[-121.264313,37.872222],[-121.264784,37.880064],[-121.266195,37.881005],[-121.265725,37.877554],[-121.264313,37.853558],[-121.263059,37.826424],[-121.274978,37.826424],[-121.274665,37.855597],[-121.274351,37.855597],[-121.280468,37.855597]]]}}
,{"id":95337,"type":"Feature","properties":{"name":"Manteca"},"geometry":{"type":"Polygon","coordinates":[[[-121.253334,37.816857],[-121.223221,37.799134],[-121.222751,37.799134],[-121.221339,37.798507],[-121.221339,37.798036],[-121.206596,37.789253],[-121.205655,37.789253],[-121.202989,37.787685],[-121.200636,37.786273],[-121.200636,37.785959],[-121.179306,37.773255],[-121.179306,37.774824],[-121.174287,37.770903],[-121.170052,37.768393],[-121.170836,37.768393],[-121.179149,37.768236],[-121.178835,37.753964],[-121.180404,37.752552],[-121.178835,37.752552],[-121.178678,37.739378],[-121.192480,37.739378],[-121.192323,37.724792],[-121.178678,37.724792],[-121.178522,37.707382],[-121.178678,37.706755],[-121.179149,37.705971],[-121.181188,37.704089],[-121.181658,37.703148],[-121.181815,37.703148],[-121.182756,37.700795],[-121.183854,37.700011],[-121.185579,37.699540],[-121.188089,37.699070],[-121.189971,37.697972],[-121.192794,37.696874],[-121.193892,37.696090],[-121.197499,37.697188],[-121.198911,37.697031],[-121.200166,37.697188],[-121.204557,37.695776],[-121.205812,37.695619],[-121.205969,37.695306],[-121.206596,37.694992],[-121.206439,37.694835],[-121.206910,37.694365],[-121.206910,37.693737],[-121.205184,37.692012],[-121.205184,37.691541],[-121.205498,37.691071],[-121.206439,37.690600],[-121.207694,37.688718],[-121.208321,37.686836],[-121.208635,37.686366],[-121.210831,37.685895],[-121.211929,37.685895],[-121.212713,37.686523],[-121.214909,37.686836],[-121.215693,37.687150],[-121.216320,37.687934],[-121.216791,37.687620],[-121.217888,37.685738],[-121.218359,37.685425],[-121.219300,37.685111],[-121.219771,37.684797],[-121.221025,37.683072],[-121.221966,37.682602],[-121.222280,37.682758],[-121.222594,37.682915],[-121.222907,37.683699],[-121.223535,37.683543],[-121.222594,37.680406],[-121.222594,37.679622],[-121.222123,37.678210],[-121.222594,37.677583],[-121.222594,37.676485],[-121.222123,37.674603],[-121.221025,37.672407],[-121.221339,37.671466],[-121.221809,37.670368],[-121.222280,37.669897],[-121.222751,37.669741],[-121.225417,37.669897],[-121.227299,37.669270],[-121.229181,37.668956],[-121.229808,37.666447],[-121.229024,37.664408],[-121.230122,37.662997],[-121.231534,37.662526],[-121.233259,37.662526],[-121.233886,37.662683],[-121.234357,37.662997],[-121.234670,37.663624],[-121.240003,37.664879],[-121.240630,37.665192],[-121.242042,37.664565],[-121.242356,37.665035],[-121.241101,37.665506],[-121.242042,37.667074],[-121.241728,37.667231],[-121.242042,37.667388],[-121.242042,37.667702],[-121.242199,37.668486],[-121.242512,37.669270],[-121.242983,37.671309],[-121.242826,37.671623],[-121.243453,37.672250],[-121.244865,37.673191],[-121.245492,37.673034],[-121.246120,37.672721],[-121.246590,37.671936],[-121.246590,37.670682],[-121.246433,37.668800],[-121.246747,37.667702],[-121.246747,37.667074],[-121.246904,37.666918],[-121.246904,37.666604],[-121.246590,37.666761],[-121.247061,37.665506],[-121.248629,37.664408],[-121.249570,37.664251],[-121.250511,37.664251],[-121.251139,37.664565],[-121.251609,37.665663],[-121.252707,37.667074],[-121.254746,37.668643],[-121.255373,37.669427],[-121.256471,37.670525],[-121.256628,37.670995],[-121.256628,37.671309],[-121.257883,37.672093],[-121.257883,37.672250],[-121.260235,37.672721],[-121.261490,37.673191],[-121.262274,37.673348],[-121.263529,37.674132],[-121.264627,37.675387],[-121.265254,37.676955],[-121.265411,37.677740],[-121.263843,37.679465],[-121.260549,37.681504],[-121.258196,37.682288],[-121.256314,37.683699],[-121.256001,37.683386],[-121.256158,37.683072],[-121.256001,37.683072],[-121.255844,37.683543],[-121.256158,37.684013],[-121.256001,37.684640],[-121.256158,37.685111],[-121.256158,37.685895],[-121.256628,37.686836],[-121.257255,37.687464],[-121.258196,37.687777],[-121.259765,37.687934],[-121.260235,37.687777],[-121.261176,37.687934],[-121.261804,37.687777],[-121.262902,37.688091],[-121.263059,37.687934],[-121.262431,37.687777],[-121.264313,37.687777],[-121.264313,37.687620],[-121.264941,37.687464],[-121.266038,37.687620],[-121.267607,37.687464],[-121.268705,37.687620],[-121.269332,37.688091],[-121.268548,37.688561],[-121.269332,37.688405],[-121.269646,37.688091],[-121.270744,37.687620],[-121.272312,37.687464],[-121.272626,37.687620],[-121.272469,37.687307],[-121.273410,37.687150],[-121.274194,37.687307],[-121.275135,37.688091],[-121.274978,37.688561],[-121.274351,37.688875],[-121.272939,37.690287],[-121.272783,37.690130],[-121.273096,37.689659],[-121.272469,37.690444],[-121.271842,37.690914],[-121.271214,37.691541],[-121.270273,37.692953],[-121.270116,37.694051],[-121.270273,37.694835],[-121.270744,37.696247],[-121.271998,37.697815],[-121.274508,37.699697],[-121.274822,37.700325],[-121.274665,37.700952],[-121.271998,37.704559],[-121.271685,37.705500],[-121.270744,37.707696],[-121.267921,37.712244],[-121.266980,37.713185],[-121.265411,37.714283],[-121.264784,37.715068],[-121.264470,37.714911],[-121.264470,37.715381],[-121.263686,37.716165],[-121.262274,37.716950],[-121.260863,37.717420],[-121.259294,37.718675],[-121.259451,37.719145],[-121.260079,37.720086],[-121.261020,37.720871],[-121.262274,37.721341],[-121.263372,37.721655],[-121.264627,37.721655],[-121.268391,37.721184],[-121.271685,37.721184],[-121.272626,37.720871],[-121.274665,37.720400],[-121.276547,37.720086],[-121.277958,37.719616],[-121.278115,37.718675],[-121.278429,37.718361],[-121.278586,37.717420],[-121.278272,37.716009],[-121.277331,37.714911],[-121.277174,37.714126],[-121.276860,37.712244],[-121.277017,37.710990],[-121.277331,37.710049],[-121.278429,37.709421],[-121.278899,37.709892],[-121.279684,37.710990],[-121.280311,37.711931],[-121.281879,37.713185],[-121.282820,37.713970],[-121.284702,37.714597],[-121.285957,37.714911],[-121.286741,37.714754],[-121.289408,37.715695],[-121.290035,37.716165],[-121.290662,37.717106],[-121.290662,37.718518],[-121.290976,37.719616],[-121.291603,37.721341],[-121.292231,37.722439],[-121.294270,37.724635],[-121.295211,37.725419],[-121.297250,37.726517],[-121.298191,37.727301],[-121.297407,37.729497],[-121.295838,37.731849],[-121.295368,37.732947],[-121.296622,37.737025],[-121.296622,37.738437],[-121.296466,37.739221],[-121.295838,37.740162],[-121.295211,37.740476],[-121.293642,37.741887],[-121.293015,37.742671],[-121.292701,37.743142],[-121.290819,37.744867],[-121.290662,37.744867],[-121.290506,37.744083],[-121.290349,37.743926],[-121.290819,37.743299],[-121.290349,37.743456],[-121.290192,37.744083],[-121.290192,37.745024],[-121.290506,37.745965],[-121.290662,37.746122],[-121.290506,37.746279],[-121.290506,37.747690],[-121.290976,37.747847],[-121.291447,37.748788],[-121.291917,37.749259],[-121.292388,37.749729],[-121.292858,37.751611],[-121.292074,37.751298],[-121.291447,37.750513],[-121.290976,37.750357],[-121.292074,37.751298],[-121.293015,37.751925],[-121.293486,37.752082],[-121.295681,37.751925],[-121.299132,37.751298],[-121.301484,37.751298],[-121.301955,37.751141],[-121.301955,37.750984],[-121.302582,37.750984],[-121.302896,37.751141],[-121.304308,37.756003],[-121.304308,37.757414],[-121.306974,37.760081],[-121.307758,37.760081],[-121.307915,37.760394],[-121.308229,37.760551],[-121.308699,37.761806],[-121.308542,37.764315],[-121.308385,37.765727],[-121.308072,37.766197],[-121.307601,37.766511],[-121.304621,37.767766],[-121.302582,37.768393],[-121.301798,37.768864],[-121.301484,37.769177],[-121.301484,37.770432],[-121.301171,37.770589],[-121.301014,37.771216],[-121.301798,37.772471],[-121.302896,37.773098],[-121.303053,37.773726],[-121.302582,37.774824],[-121.301171,37.776392],[-121.299759,37.777019],[-121.299916,37.776078],[-121.298661,37.776863],[-121.298818,37.777333],[-121.299759,37.778431],[-121.300387,37.779686],[-121.275763,37.787998],[-121.272939,37.789253],[-121.270587,37.790508],[-121.270587,37.797095],[-121.269175,37.797252],[-121.263843,37.797252],[-121.262745,37.799448],[-121.261961,37.801800],[-121.261647,37.804153],[-121.261961,37.811838],[-121.253021,37.811838],[-121.253334,37.816857]]]}}
,{"id":95366,"type":"Feature","properties":{"name":"Ripon"},"geometry":{"type":"Polygon","coordinates":[[[-121.170836,37.768393],[-121.170052,37.768393],[-121.174287,37.770903],[-121.179306,37.774824],[-121.179306,37.777333],[-121.178678,37.777333],[-121.178365,37.776863],[-121.146526,37.776863],[-121.146526,37.778745],[-121.142919,37.778745],[-121.143076,37.797722],[-121.144330,37.826738],[-121.117040,37.827052],[-121.116570,37.810583],[-121.107159,37.805564],[-121.107316,37.805721],[-121.107473,37.812465],[-121.089122,37.812622],[-121.088652,37.798036],[-121.070458,37.798193],[-121.069831,37.777490],[-121.054931,37.777490],[-121.051481,37.777804],[-121.051010,37.758199],[-121.049285,37.757728],[-121.051324,37.754121],[-121.064655,37.754121],[-121.064499,37.750043],[-121.065440,37.749416],[-121.065596,37.749102],[-121.067008,37.745965],[-121.067008,37.745024],[-121.067322,37.744554],[-121.067635,37.743769],[-121.067635,37.741730],[-121.067479,37.741103],[-121.066851,37.740162],[-121.067165,37.739848],[-121.068263,37.739848],[-121.068890,37.739691],[-121.068890,37.739535],[-121.070929,37.738123],[-121.072341,37.737809],[-121.074223,37.738907],[-121.075007,37.738907],[-121.076418,37.737496],[-121.077516,37.737496],[-121.079085,37.738123],[-121.079398,37.738437],[-121.079869,37.740162],[-121.080967,37.740476],[-121.081751,37.739848],[-121.082065,37.739848],[-121.082535,37.740476],[-121.082535,37.741260],[-121.083163,37.741887],[-121.083947,37.741730],[-121.084574,37.740946],[-121.085201,37.740789],[-121.087711,37.741417],[-121.088338,37.741103],[-121.088809,37.739535],[-121.089593,37.738437],[-121.090064,37.736555],[-121.090534,37.735927],[-121.090848,37.735457],[-121.092730,37.734673],[-121.095082,37.734516],[-121.094455,37.733732],[-121.094926,37.733261],[-121.096023,37.733418],[-121.096808,37.734359],[-121.096808,37.735143],[-121.096337,37.735614],[-121.096023,37.735927],[-121.096023,37.736241],[-121.097749,37.736712],[-121.098690,37.736712],[-121.098847,37.737966],[-121.099160,37.738123],[-121.099944,37.738123],[-121.100886,37.737496],[-121.101042,37.738123],[-121.101042,37.738750],[-121.100729,37.739221],[-121.099631,37.739535],[-121.099474,37.739848],[-121.100258,37.740319],[-121.101827,37.740946],[-121.104493,37.741103],[-121.104807,37.740946],[-121.104807,37.740162],[-121.105277,37.740005],[-121.106845,37.740162],[-121.109041,37.742044],[-121.109982,37.742201],[-121.110766,37.741730],[-121.111394,37.740005],[-121.111080,37.739064],[-121.110610,37.738750],[-121.109512,37.734516],[-121.109041,37.734045],[-121.109041,37.733888],[-121.108257,37.733575],[-121.108100,37.732947],[-121.107630,37.732320],[-121.110296,37.730124],[-121.111237,37.729654],[-121.112962,37.727615],[-121.116726,37.726517],[-121.117354,37.725576],[-121.116256,37.724635],[-121.116726,37.724164],[-121.118765,37.723537],[-121.120334,37.724635],[-121.121432,37.724478],[-121.120804,37.722282],[-121.121432,37.721969],[-121.123000,37.722282],[-121.123627,37.722753],[-121.122686,37.723537],[-121.122686,37.724164],[-121.123784,37.724321],[-121.124255,37.724164],[-121.125509,37.722596],[-121.125980,37.722596],[-121.126607,37.722910],[-121.127235,37.723694],[-121.127548,37.724007],[-121.128646,37.724321],[-121.129430,37.723851],[-121.129744,37.722910],[-121.130685,37.722282],[-121.131783,37.722125],[-121.132724,37.722439],[-121.133351,37.723537],[-121.133822,37.723694],[-121.134606,37.723537],[-121.134920,37.723066],[-121.135234,37.722910],[-121.135390,37.723066],[-121.135390,37.723694],[-121.135861,37.724478],[-121.136175,37.724635],[-121.136488,37.724635],[-121.137429,37.724164],[-121.137900,37.723537],[-121.138057,37.722282],[-121.138684,37.722125],[-121.140409,37.722910],[-121.141507,37.722910],[-121.142762,37.722125],[-121.142762,37.721655],[-121.142135,37.721498],[-121.141821,37.720871],[-121.143232,37.719930],[-121.143860,37.719773],[-121.145428,37.719930],[-121.145742,37.719459],[-121.145742,37.718518],[-121.146056,37.717577],[-121.146840,37.717577],[-121.148251,37.718204],[-121.149349,37.718518],[-121.149977,37.718832],[-121.150290,37.719302],[-121.151074,37.719459],[-121.152329,37.719302],[-121.153898,37.718989],[-121.154525,37.719145],[-121.154839,37.719459],[-121.154525,37.720243],[-121.155152,37.720400],[-121.155780,37.719773],[-121.156250,37.719145],[-121.156878,37.718361],[-121.157191,37.717734],[-121.156093,37.716793],[-121.157191,37.716322],[-121.158760,37.716950],[-121.159073,37.716636],[-121.159230,37.715852],[-121.159073,37.715068],[-121.158446,37.714126],[-121.157975,37.713813],[-121.157819,37.713342],[-121.158446,37.711774],[-121.159230,37.711617],[-121.160014,37.711931],[-121.160485,37.711617],[-121.160799,37.711147],[-121.160642,37.710519],[-121.160171,37.710205],[-121.159858,37.709421],[-121.159387,37.708951],[-121.159387,37.708480],[-121.160485,37.707853],[-121.160955,37.708167],[-121.161112,37.708323],[-121.161426,37.708480],[-121.162053,37.708010],[-121.162053,37.707539],[-121.161426,37.706755],[-121.160328,37.706598],[-121.159230,37.706598],[-121.158760,37.706441],[-121.158603,37.705343],[-121.159230,37.704402],[-121.162367,37.703775],[-121.163465,37.703775],[-121.165661,37.704246],[-121.165974,37.703775],[-121.165974,37.703148],[-121.166759,37.702207],[-121.166759,37.701893],[-121.166288,37.701422],[-121.164092,37.700638],[-121.163622,37.700325],[-121.166288,37.699383],[-121.168954,37.699070],[-121.171777,37.701109],[-121.176326,37.704089],[-121.176953,37.705030],[-121.176483,37.706128],[-121.177110,37.706284],[-121.177894,37.706128],[-121.178835,37.705030],[-121.179933,37.704089],[-121.180090,37.703461],[-121.180090,37.702991],[-121.179149,37.702050],[-121.178522,37.702050],[-121.177737,37.702677],[-121.177110,37.702677],[-121.176953,37.702520],[-121.176796,37.702207],[-121.176953,37.701579],[-121.176326,37.701109],[-121.175855,37.699383],[-121.176953,37.698756],[-121.180404,37.698756],[-121.181815,37.699070],[-121.182599,37.698599],[-121.182756,37.697345],[-121.182443,37.696560],[-121.180404,37.695776],[-121.180247,37.695462],[-121.180717,37.693580],[-121.181031,37.693424],[-121.182286,37.693737],[-121.183540,37.693267],[-121.184168,37.692796],[-121.183384,37.691855],[-121.182286,37.691698],[-121.180560,37.692796],[-121.180404,37.692953],[-121.179933,37.693110],[-121.179306,37.692796],[-121.178835,37.691855],[-121.178678,37.691385],[-121.178992,37.691071],[-121.179619,37.690600],[-121.182599,37.690287],[-121.183070,37.689973],[-121.183070,37.689659],[-121.181815,37.689189],[-121.181502,37.688875],[-121.181188,37.688091],[-121.181345,37.687777],[-121.182443,37.687777],[-121.183697,37.688091],[-121.184952,37.688718],[-121.185423,37.688875],[-121.185736,37.688875],[-121.186677,37.687464],[-121.186991,37.687620],[-121.187618,37.687620],[-121.188089,37.688405],[-121.187461,37.689659],[-121.187775,37.689973],[-121.188402,37.689973],[-121.189344,37.689659],[-121.189344,37.690287],[-121.189030,37.691541],[-121.189344,37.691855],[-121.189971,37.692012],[-121.190285,37.691855],[-121.190598,37.690914],[-121.191382,37.690287],[-121.191853,37.690444],[-121.192167,37.692012],[-121.193578,37.693110],[-121.193892,37.694678],[-121.194519,37.694835],[-121.195931,37.694835],[-121.196401,37.694521],[-121.196715,37.694051],[-121.196401,37.693110],[-121.196558,37.692639],[-121.197499,37.691855],[-121.197499,37.691071],[-121.197970,37.690444],[-121.198911,37.690130],[-121.199381,37.690287],[-121.199695,37.690444],[-121.201263,37.692326],[-121.201263,37.693110],[-121.201107,37.693424],[-121.200793,37.693737],[-121.199695,37.694051],[-121.199224,37.694992],[-121.199224,37.695462],[-121.199381,37.695776],[-121.199538,37.695933],[-121.200636,37.695776],[-121.201577,37.696090],[-121.202361,37.695933],[-121.202989,37.694208],[-121.204087,37.693580],[-121.204557,37.693580],[-121.205341,37.693894],[-121.205498,37.694835],[-121.205655,37.694992],[-121.206439,37.694835],[-121.206596,37.694992],[-121.205969,37.695306],[-121.205812,37.695619],[-121.204557,37.695776],[-121.200166,37.697188],[-121.198911,37.697031],[-121.197499,37.697188],[-121.193892,37.696090],[-121.192794,37.696874],[-121.189971,37.697972],[-121.188089,37.699070],[-121.185579,37.699540],[-121.183854,37.700011],[-121.182756,37.700795],[-121.181815,37.703148],[-121.181658,37.703148],[-121.181188,37.704089],[-121.179149,37.705971],[-121.178678,37.706755],[-121.178522,37.707382],[-121.178678,37.724792],[-121.192323,37.724792],[-121.192480,37.739378],[-121.178678,37.739378],[-121.178835,37.752552],[-121.180404,37.752552],[-121.178835,37.753964],[-121.179149,37.768236],[-121.170836,37.768393]]]}}
,{"id":94063,"type":"Feature","properties":{"name":"Redwood City"},"geometry":{"type":"Polygon","coordinates":[[[-122.221510,37.475572],[-122.222295,37.476827],[-122.223392,37.477611],[-122.224020,37.477141],[-122.225745,37.478552],[-122.225588,37.479180],[-122.229666,37.482160],[-122.232960,37.484512],[-122.239704,37.490472],[-122.239390,37.490786],[-122.242370,37.492668],[-122.244252,37.494079],[-122.244252,37.494236],[-122.245036,37.495020],[-122.243782,37.496118],[-122.243154,37.496432],[-122.241115,37.498157],[-122.240645,37.497844],[-122.238135,37.498157],[-122.239547,37.499098],[-122.245664,37.504588],[-122.245977,37.504745],[-122.245821,37.504901],[-122.240174,37.499882],[-122.239704,37.508822],[-122.238920,37.508666],[-122.238606,37.508666],[-122.237351,37.508352],[-122.236253,37.508195],[-122.235469,37.507724],[-122.229195,37.505529],[-122.227784,37.504274],[-122.227313,37.503019],[-122.226843,37.502235],[-122.225588,37.501294],[-122.225118,37.501137],[-122.224177,37.501137],[-122.223706,37.501921],[-122.223392,37.503333],[-122.222922,37.504431],[-122.222295,37.505058],[-122.221510,37.505529],[-122.219628,37.506156],[-122.218530,37.506470],[-122.215864,37.507724],[-122.215080,37.508666],[-122.213668,37.509763],[-122.213041,37.511646],[-122.211629,37.514312],[-122.211159,37.516508],[-122.210218,37.517919],[-122.209747,37.518076],[-122.208649,37.519331],[-122.208179,37.519488],[-122.207238,37.520272],[-122.207238,37.520742],[-122.206767,37.521526],[-122.206454,37.522467],[-122.206454,37.522781],[-122.204885,37.524193],[-122.203631,37.524820],[-122.201748,37.525918],[-122.199553,37.527643],[-122.196730,37.529525],[-122.195475,37.530780],[-122.194534,37.532976],[-122.194691,37.532035],[-122.196573,37.524193],[-122.197357,37.524350],[-122.197827,37.523879],[-122.198455,37.523879],[-122.198455,37.524036],[-122.200023,37.523409],[-122.200651,37.523252],[-122.200964,37.523095],[-122.202376,37.522624],[-122.203160,37.521997],[-122.178693,37.506156],[-122.178379,37.505842],[-122.178379,37.505686],[-122.178693,37.505686],[-122.178379,37.505372],[-122.177909,37.503490],[-122.177595,37.503176],[-122.177595,37.502862],[-122.177909,37.502862],[-122.177752,37.502706],[-122.178222,37.501451],[-122.178222,37.499882],[-122.178379,37.499882],[-122.178693,37.500039],[-122.178850,37.499726],[-122.178536,37.499255],[-122.178536,37.499098],[-122.178222,37.498628],[-122.178222,37.498314],[-122.178693,37.498314],[-122.179007,37.490002],[-122.179320,37.489531],[-122.179634,37.487806],[-122.179477,37.487335],[-122.179007,37.487022],[-122.178222,37.486865],[-122.178222,37.486551],[-122.183712,37.488276],[-122.184653,37.488276],[-122.184653,37.488276],[-122.189044,37.488119],[-122.189044,37.487178],[-122.188260,37.487178],[-122.188574,37.486551],[-122.184967,37.485924],[-122.181987,37.485139],[-122.182928,37.484042],[-122.181987,37.482630],[-122.183084,37.481218],[-122.183398,37.481532],[-122.184496,37.480434],[-122.186064,37.478082],[-122.188731,37.477768],[-122.199553,37.476513],[-122.200337,37.476984],[-122.201435,37.476984],[-122.206140,37.469612],[-122.206767,37.469142],[-122.207238,37.468828],[-122.207395,37.468985],[-122.208963,37.467103],[-122.211786,37.469299],[-122.211316,37.470083],[-122.213198,37.471181],[-122.213668,37.470553],[-122.217589,37.473376],[-122.216021,37.475259],[-122.215394,37.474788],[-122.215237,37.475102],[-122.214766,37.475259],[-122.217589,37.476984],[-122.217746,37.476984],[-122.219315,37.474631],[-122.218217,37.473847],[-122.218687,37.473063],[-122.220412,37.474317],[-122.221667,37.474945],[-122.221824,37.475102],[-122.221510,37.475572]]]}}
,{"id":94402,"type":"Feature","properties":{"name":"San Mateo"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.348081,37.571559],[-122.347139,37.572029],[-122.346512,37.571245],[-122.346355,37.571402],[-122.345257,37.571088],[-122.345101,37.571402],[-122.342434,37.572343],[-122.342434,37.572813],[-122.341807,37.573127],[-122.341807,37.571872],[-122.341650,37.571245],[-122.341180,37.570774],[-122.340395,37.570304],[-122.340239,37.570617],[-122.338200,37.571088],[-122.337886,37.570931],[-122.337572,37.571088],[-122.336631,37.570461],[-122.337729,37.570147],[-122.338043,37.570774],[-122.339454,37.569676],[-122.338200,37.568892],[-122.337415,37.568892],[-122.336318,37.569520],[-122.335533,37.569833],[-122.334122,37.569363],[-122.335220,37.568422],[-122.334122,37.568108],[-122.333965,37.566853],[-122.333808,37.566226],[-122.335376,37.566853],[-122.336318,37.567481],[-122.336945,37.567167],[-122.337102,37.567638],[-122.351217,37.561834],[-122.352786,37.560893],[-122.352943,37.560893],[-122.353413,37.561991],[-122.354982,37.564187],[-122.354982,37.564501],[-122.354982,37.564658],[-122.352315,37.565442],[-122.350119,37.566383],[-122.352315,37.569833],[-122.348081,37.571559]]],[[[-122.329887,37.540975],[-122.332710,37.544111],[-122.330985,37.546307],[-122.330514,37.547091],[-122.328789,37.548503],[-122.328789,37.548660],[-122.329103,37.548346],[-122.332553,37.550856],[-122.336945,37.546621],[-122.337572,37.546150],[-122.338356,37.546621],[-122.339454,37.547562],[-122.339454,37.548189],[-122.340395,37.549444],[-122.340082,37.550542],[-122.340395,37.551169],[-122.339925,37.551953],[-122.339768,37.552424],[-122.329887,37.561521],[-122.329730,37.561678],[-122.330671,37.562619],[-122.331455,37.564187],[-122.332396,37.565285],[-122.331455,37.565755],[-122.330044,37.567010],[-122.328319,37.565599],[-122.327064,37.564030],[-122.325966,37.563089],[-122.325339,37.562148],[-122.324554,37.561678],[-122.318908,37.556659],[-122.317340,37.557757],[-122.316712,37.557129],[-122.314360,37.558698],[-122.314517,37.558854],[-122.314360,37.559011],[-122.315458,37.560109],[-122.315458,37.560266],[-122.320163,37.564658],[-122.319379,37.565285],[-122.320006,37.565912],[-122.316556,37.568265],[-122.315771,37.567638],[-122.313889,37.568892],[-122.314517,37.569520],[-122.313576,37.569676],[-122.312791,37.569520],[-122.302754,37.560423],[-122.296323,37.553365],[-122.299931,37.552738],[-122.307302,37.552581],[-122.308243,37.552424],[-122.309498,37.552110],[-122.312007,37.550385],[-122.313576,37.549601],[-122.319692,37.547719],[-122.323927,37.546935],[-122.325182,37.546150],[-122.328789,37.543484],[-122.329573,37.542386],[-122.329887,37.540975]]],[[[-122.329887,37.540975],[-122.329887,37.539720],[-122.329260,37.536583],[-122.329260,37.534701],[-122.329730,37.532662],[-122.332240,37.525291],[-122.332553,37.523722],[-122.332396,37.522467],[-122.332710,37.522467],[-122.329573,37.517605],[-122.329103,37.516194],[-122.328946,37.515253],[-122.329103,37.514312],[-122.329573,37.513371],[-122.330201,37.512587],[-122.335220,37.508509],[-122.337259,37.507568],[-122.339141,37.507254],[-122.342121,37.508979],[-122.345101,37.510861],[-122.347767,37.513057],[-122.353256,37.518233],[-122.354354,37.519644],[-122.356707,37.523879],[-122.358903,37.526545],[-122.361098,37.531407],[-122.360628,37.531251],[-122.358903,37.529996],[-122.355138,37.531094],[-122.351688,37.532662],[-122.350904,37.533917],[-122.349806,37.534231],[-122.349178,37.535799],[-122.349492,37.536740],[-122.350276,37.537524],[-122.350590,37.539563],[-122.349806,37.539563],[-122.349492,37.540347],[-122.349178,37.540190],[-122.345885,37.539406],[-122.345885,37.538936],[-122.345257,37.537681],[-122.343689,37.533446],[-122.341807,37.531721],[-122.338043,37.535015],[-122.341807,37.537995],[-122.339297,37.540190],[-122.336004,37.537995],[-122.334435,37.539249],[-122.333651,37.538622],[-122.329887,37.540975]]]]}}
,{"id":94005,"type":"Feature","properties":{"name":"Brisbane"},"geometry":{"type":"Polygon","coordinates":[[[-122.429167,37.682915],[-122.429324,37.682131],[-122.430735,37.682758],[-122.430579,37.684013],[-122.431206,37.684170],[-122.431520,37.684327],[-122.432147,37.684327],[-122.432774,37.684797],[-122.434343,37.685268],[-122.434970,37.686052],[-122.434970,37.687620],[-122.436852,37.688718],[-122.437323,37.689659],[-122.437950,37.690287],[-122.438577,37.690287],[-122.439205,37.689816],[-122.439362,37.689503],[-122.439362,37.688875],[-122.439519,37.688718],[-122.439832,37.688561],[-122.440146,37.688718],[-122.440303,37.689032],[-122.440303,37.689816],[-122.439989,37.690914],[-122.440460,37.691541],[-122.440460,37.692483],[-122.441871,37.694051],[-122.442028,37.694365],[-122.441871,37.694678],[-122.441244,37.694992],[-122.439989,37.694992],[-122.438734,37.694365],[-122.437636,37.694051],[-122.437166,37.694208],[-122.436382,37.694835],[-122.435127,37.695306],[-122.433559,37.695149],[-122.433245,37.695462],[-122.433245,37.695776],[-122.432304,37.696247],[-122.431520,37.697972],[-122.430579,37.698442],[-122.429638,37.698286],[-122.426501,37.696090],[-122.425403,37.695619],[-122.424462,37.695776],[-122.423834,37.696090],[-122.421952,37.698599],[-122.421011,37.699070],[-122.420698,37.699227],[-122.419600,37.699227],[-122.414895,37.697972],[-122.413954,37.697815],[-122.413954,37.697658],[-122.412856,37.697658],[-122.413797,37.698286],[-122.413640,37.698756],[-122.412385,37.698599],[-122.412071,37.699070],[-122.412385,37.699227],[-122.411915,37.699697],[-122.411287,37.701266],[-122.412228,37.701579],[-122.410346,37.705500],[-122.406896,37.704559],[-122.405327,37.708323],[-122.395133,37.708323],[-122.393721,37.708167],[-122.393251,37.708323],[-122.394035,37.707696],[-122.394192,37.707069],[-122.393564,37.706128],[-122.393251,37.706128],[-122.392937,37.706284],[-122.392466,37.705814],[-122.392310,37.704716],[-122.392937,37.702991],[-122.392937,37.701579],[-122.392466,37.700011],[-122.392153,37.699540],[-122.392153,37.697972],[-122.391055,37.693894],[-122.390741,37.691228],[-122.390427,37.690757],[-122.390427,37.689973],[-122.389800,37.687777],[-122.389643,37.687464],[-122.389800,37.687150],[-122.389486,37.686836],[-122.389486,37.685738],[-122.388859,37.684013],[-122.387918,37.678681],[-122.386663,37.677426],[-122.381174,37.677426],[-122.381017,37.677269],[-122.381017,37.671936],[-122.381174,37.671780],[-122.387291,37.671780],[-122.388232,37.671780],[-122.391368,37.670054],[-122.392310,37.669897],[-122.392466,37.670839],[-122.392310,37.671309],[-122.397642,37.671466],[-122.397799,37.674289],[-122.399681,37.674289],[-122.400308,37.673662],[-122.402975,37.673348],[-122.404543,37.674289],[-122.407837,37.674760],[-122.410817,37.676485],[-122.412071,37.676642],[-122.412699,37.676955],[-122.413640,37.676798],[-122.414895,37.677583],[-122.415679,37.677583],[-122.417247,37.678210],[-122.419443,37.678053],[-122.420854,37.678367],[-122.422423,37.678053],[-122.422893,37.678053],[-122.423521,37.678524],[-122.424148,37.679308],[-122.424776,37.679308],[-122.425403,37.679622],[-122.425560,37.680249],[-122.426501,37.680249],[-122.427128,37.680876],[-122.428069,37.681190],[-122.428697,37.682445],[-122.429167,37.682915]]]}}
,{"id":95054,"type":"Feature","properties":{"name":"Santa Clara"},"geometry":{"type":"Polygon","coordinates":[[[-121.987034,37.377704],[-121.987034,37.388526],[-121.987191,37.402798],[-121.986720,37.404680],[-121.986877,37.412052],[-121.984995,37.412679],[-121.971507,37.418482],[-121.970252,37.418796],[-121.967899,37.418953],[-121.967586,37.417855],[-121.961312,37.410797],[-121.960528,37.410170],[-121.958959,37.409386],[-121.956293,37.408445],[-121.954411,37.407503],[-121.953156,37.406406],[-121.952215,37.404837],[-121.947510,37.401544],[-121.945628,37.401073],[-121.942805,37.400916],[-121.942334,37.400759],[-121.941707,37.400289],[-121.941550,37.399975],[-121.941550,37.399348],[-121.941707,37.398877],[-121.941707,37.397779],[-121.941393,37.396838],[-121.940139,37.394643],[-121.939511,37.392604],[-121.939511,37.390722],[-121.939511,37.390408],[-121.938727,37.389310],[-121.936374,37.387428],[-121.935747,37.386016],[-121.935590,37.384918],[-121.935904,37.384291],[-121.936845,37.383193],[-121.937786,37.382252],[-121.938100,37.381782],[-121.938100,37.380997],[-121.937943,37.380527],[-121.940452,37.378645],[-121.941707,37.376763],[-121.947510,37.377704],[-121.946255,37.375351],[-121.945785,37.373469],[-121.949392,37.374096],[-121.950176,37.373940],[-121.950176,37.374096],[-121.950647,37.374253],[-121.956293,37.374253],[-121.963351,37.374096],[-121.965860,37.374253],[-121.967586,37.374410],[-121.974957,37.374410],[-121.976055,37.374724],[-121.977623,37.375665],[-121.977623,37.375822],[-121.978721,37.376606],[-121.978094,37.376449],[-121.977780,37.376763],[-121.977780,37.380527],[-121.982329,37.380370],[-121.986877,37.380527],[-121.986877,37.377704],[-121.987034,37.377704]]]}}
,{"id":94089,"type":"Feature","properties":{"name":"Sunnyvale"},"geometry":{"type":"Polygon","coordinates":[[[-121.995817,37.391035],[-122.002561,37.393074],[-122.008678,37.394643],[-122.037380,37.400916],[-122.037066,37.405935],[-122.037066,37.418796],[-122.036752,37.421462],[-122.034713,37.426481],[-122.041144,37.426952],[-122.038007,37.439342],[-122.001150,37.420364],[-122.001934,37.418169],[-122.000052,37.417855],[-121.996601,37.418012],[-121.995660,37.417384],[-121.994719,37.416914],[-121.995190,37.417228],[-121.986720,37.417071],[-121.986877,37.417071],[-121.986720,37.416757],[-121.986877,37.416914],[-121.986877,37.412052],[-121.986720,37.404680],[-121.987191,37.402798],[-121.987034,37.388526],[-121.995817,37.391035]]]}}
,{"id":94591,"type":"Feature","properties":{"name":"Vallejo"},"geometry":{"type":"Polygon","coordinates":[[[-122.229666,38.100738],[-122.229509,38.110619],[-122.230293,38.120500],[-122.230137,38.122382],[-122.229823,38.123166],[-122.229352,38.124264],[-122.218374,38.141517],[-122.217276,38.143399],[-122.216805,38.144967],[-122.216491,38.146065],[-122.216648,38.149202],[-122.216491,38.151241],[-122.215707,38.153280],[-122.214609,38.154848],[-122.195318,38.155005],[-122.197827,38.157044],[-122.198925,38.159240],[-122.194534,38.164729],[-122.198141,38.168493],[-122.201905,38.168336],[-122.194063,38.173826],[-122.192809,38.175080],[-122.190613,38.177904],[-122.189672,38.178845],[-122.188731,38.179629],[-122.185751,38.181354],[-122.182614,38.184334],[-122.180732,38.185432],[-122.179948,38.184648],[-122.178066,38.185118],[-122.176497,38.184805],[-122.175086,38.185902],[-122.173988,38.185902],[-122.171165,38.187314],[-122.170224,38.187471],[-122.169126,38.188412],[-122.168028,38.188726],[-122.167557,38.189196],[-122.166773,38.189510],[-122.165832,38.189980],[-122.165048,38.189823],[-122.164891,38.190608],[-122.164264,38.190294],[-122.163479,38.190921],[-122.161911,38.191392],[-122.161284,38.191078],[-122.160656,38.189823],[-122.160029,38.189196],[-122.159245,38.188882],[-122.158774,38.188569],[-122.157990,38.188255],[-122.157206,38.187628],[-122.157049,38.187157],[-122.157206,38.186844],[-122.157049,38.185902],[-122.157049,38.184334],[-122.156892,38.183550],[-122.156108,38.182452],[-122.155951,38.180256],[-122.154696,38.179315],[-122.154383,38.178845],[-122.153912,38.178688],[-122.153598,38.178374],[-122.154069,38.178060],[-122.154226,38.177747],[-122.154226,38.177276],[-122.153912,38.177119],[-122.153598,38.176492],[-122.153442,38.174610],[-122.152657,38.174296],[-122.151873,38.173669],[-122.151873,38.172728],[-122.152187,38.172101],[-122.152344,38.171003],[-122.154696,38.167552],[-122.161440,38.156103],[-122.164107,38.150143],[-122.166146,38.147006],[-122.167557,38.141830],[-122.168341,38.141360],[-122.168498,38.141046],[-122.168341,38.139635],[-122.168498,38.139007],[-122.168969,38.138066],[-122.169910,38.137282],[-122.169596,38.136811],[-122.169753,38.136027],[-122.169126,38.134616],[-122.169282,38.134145],[-122.168812,38.133361],[-122.167400,38.132263],[-122.167087,38.131636],[-122.166616,38.131479],[-122.166459,38.130851],[-122.166459,38.129597],[-122.166302,38.128969],[-122.166459,38.128499],[-122.165989,38.127715],[-122.166302,38.126774],[-122.165518,38.125989],[-122.166302,38.125519],[-122.166302,38.125205],[-122.165989,38.124421],[-122.165518,38.123794],[-122.165205,38.121912],[-122.166616,38.119245],[-122.166302,38.118932],[-122.165989,38.118775],[-122.165518,38.118147],[-122.165675,38.117050],[-122.165518,38.116579],[-122.164891,38.116108],[-122.164577,38.115011],[-122.164734,38.114226],[-122.164420,38.113129],[-122.164577,38.112972],[-122.165361,38.112344],[-122.165361,38.110776],[-122.165048,38.110149],[-122.163636,38.108266],[-122.163793,38.107796],[-122.164107,38.107482],[-122.164264,38.107169],[-122.163636,38.106855],[-122.163950,38.106071],[-122.163479,38.105130],[-122.163479,38.104189],[-122.163793,38.103561],[-122.163636,38.103091],[-122.163323,38.102777],[-122.163323,38.101836],[-122.162852,38.101209],[-122.164420,38.100581],[-122.165361,38.100581],[-122.169753,38.101993],[-122.170380,38.102307],[-122.172890,38.104189],[-122.176654,38.105757],[-122.179477,38.107639],[-122.183555,38.099483],[-122.182928,38.099327],[-122.192024,38.082858],[-122.193906,38.083956],[-122.194063,38.083799],[-122.193906,38.083486],[-122.194220,38.081133],[-122.192965,38.080035],[-122.193436,38.079408],[-122.193436,38.078937],[-122.193279,38.078467],[-122.192652,38.078153],[-122.192652,38.077839],[-122.194534,38.078624],[-122.197357,38.079565],[-122.197671,38.079408],[-122.197984,38.079094],[-122.198298,38.078153],[-122.197984,38.075800],[-122.197357,38.074546],[-122.197357,38.073448],[-122.196886,38.072821],[-122.196259,38.071566],[-122.195788,38.070938],[-122.195788,38.069997],[-122.195161,38.069056],[-122.194847,38.067802],[-122.193906,38.065763],[-122.193906,38.065292],[-122.193436,38.064194],[-122.193436,38.063567],[-122.193122,38.062783],[-122.193122,38.061999],[-122.192965,38.061842],[-122.192965,38.061528],[-122.192181,38.060901],[-122.194220,38.058862],[-122.194847,38.056509],[-122.201748,38.058078],[-122.225118,38.061057],[-122.225902,38.061057],[-122.226372,38.066390],[-122.226686,38.067645],[-122.228725,38.071566],[-122.230764,38.074546],[-122.232175,38.077055],[-122.232803,38.078624],[-122.233273,38.080819],[-122.233273,38.082858],[-122.232960,38.084897],[-122.231391,38.088818],[-122.232019,38.087877],[-122.231548,38.089446],[-122.230764,38.091485],[-122.230450,38.091328],[-122.230137,38.092426],[-122.229823,38.095092],[-122.229666,38.100738]]]}}
,{"id":95386,"type":"Feature","properties":{"name":"Waterford"},"geometry":{"type":"Polygon","coordinates":[[[-120.804300,37.681974],[-120.792851,37.681817],[-120.727605,37.684797],[-120.727605,37.698599],[-120.717097,37.698756],[-120.718352,37.705187],[-120.719293,37.705971],[-120.719606,37.706441],[-120.719450,37.706912],[-120.718979,37.707069],[-120.719136,37.707382],[-120.719606,37.707539],[-120.719920,37.708010],[-120.719763,37.708480],[-120.719450,37.708794],[-120.719136,37.709421],[-120.719763,37.710362],[-120.719293,37.710676],[-120.719450,37.710990],[-120.712392,37.710990],[-120.711451,37.711147],[-120.710667,37.711617],[-120.710353,37.711617],[-120.709882,37.711147],[-120.709412,37.710990],[-120.691689,37.710833],[-120.691846,37.717106],[-120.687611,37.717106],[-120.687611,37.718204],[-120.682749,37.718047],[-120.683219,37.732634],[-120.675848,37.732634],[-120.675064,37.732006],[-120.674593,37.731849],[-120.673182,37.732006],[-120.671927,37.732634],[-120.667222,37.733888],[-120.666124,37.734045],[-120.664869,37.734045],[-120.659537,37.732790],[-120.657184,37.732790],[-120.656243,37.732947],[-120.654831,37.732320],[-120.632874,37.732320],[-120.632090,37.730595],[-120.630521,37.728869],[-120.628482,37.725419],[-120.625189,37.723851],[-120.625032,37.724007],[-120.625032,37.715224],[-120.620483,37.715224],[-120.620326,37.712401],[-120.618915,37.710519],[-120.614680,37.712244],[-120.607152,37.714126],[-120.608407,37.713185],[-120.609661,37.711617],[-120.609504,37.701109],[-120.522615,37.703148],[-120.521203,37.689659],[-120.484189,37.689659],[-120.483248,37.688091],[-120.482464,37.687620],[-120.481836,37.687307],[-120.479797,37.687150],[-120.479327,37.686366],[-120.478856,37.685425],[-120.478386,37.685111],[-120.475720,37.684013],[-120.470858,37.681504],[-120.469289,37.681347],[-120.468662,37.681504],[-120.467093,37.679935],[-120.460192,37.685425],[-120.459408,37.686366],[-120.458624,37.687150],[-120.441372,37.674132],[-120.441842,37.674132],[-120.443567,37.673818],[-120.444195,37.673191],[-120.444979,37.671466],[-120.455017,37.668329],[-120.463800,37.668800],[-120.471485,37.668956],[-120.477915,37.669427],[-120.481836,37.664251],[-120.486071,37.661742],[-120.488110,37.656880],[-120.494384,37.651077],[-120.495011,37.648567],[-120.495795,37.646685],[-120.497364,37.644489],[-120.504108,37.637902],[-120.513204,37.633354],[-120.517753,37.631472],[-120.528732,37.626139],[-120.538142,37.628962],[-120.550689,37.627394],[-120.573431,37.630531],[-120.603231,37.639470],[-120.604799,37.639627],[-120.606995,37.640568],[-120.609818,37.640411],[-120.617503,37.637588],[-120.618444,37.636961],[-120.617817,37.635079],[-120.618131,37.633511],[-120.618131,37.627394],[-120.617817,37.627080],[-120.615778,37.626610],[-120.615308,37.624100],[-120.618288,37.623786],[-120.618288,37.621120],[-120.639932,37.621591],[-120.641029,37.621904],[-120.643068,37.623316],[-120.648715,37.622689],[-120.655459,37.632256],[-120.656243,37.635393],[-120.662517,37.635549],[-120.662517,37.641823],[-120.664869,37.642294],[-120.671613,37.640725],[-120.675221,37.642450],[-120.675377,37.645274],[-120.692944,37.644646],[-120.702825,37.642607],[-120.716470,37.638686],[-120.722743,37.640098],[-120.739368,37.636177],[-120.759130,37.636334],[-120.773246,37.629903],[-120.782656,37.625041],[-120.787048,37.622845],[-120.800536,37.618611],[-120.801634,37.618768],[-120.801948,37.622689],[-120.803359,37.622532],[-120.809162,37.623002],[-120.811044,37.624257],[-120.811201,37.638686],[-120.809947,37.638686],[-120.808849,37.639470],[-120.806496,37.640725],[-120.805084,37.642294],[-120.802418,37.642294],[-120.802575,37.646685],[-120.803830,37.647626],[-120.809790,37.647626],[-120.810731,37.647156],[-120.812142,37.647469],[-120.813554,37.648097],[-120.813240,37.682131],[-120.804300,37.681974]]]}}
,{"id":95323,"type":"Feature","properties":{"name":"Hickman"},"geometry":{"type":"Polygon","coordinates":[[[-120.572961,37.584890],[-120.572961,37.580655],[-120.645735,37.579401],[-120.645735,37.583949],[-120.656086,37.583635],[-120.655772,37.594300],[-120.681965,37.593987],[-120.683063,37.595555],[-120.717568,37.595085],[-120.716940,37.592889],[-120.718822,37.592889],[-120.722586,37.591477],[-120.722900,37.590223],[-120.721018,37.587086],[-120.723371,37.586929],[-120.722743,37.585674],[-120.728860,37.580028],[-120.731056,37.578773],[-120.732624,37.581126],[-120.736388,37.585674],[-120.737643,37.587870],[-120.743603,37.594771],[-120.767286,37.594771],[-120.769952,37.606063],[-120.768227,37.609671],[-120.782970,37.610298],[-120.782656,37.625041],[-120.773246,37.629903],[-120.759130,37.636334],[-120.739368,37.636177],[-120.722743,37.640098],[-120.716470,37.638686],[-120.702825,37.642607],[-120.692944,37.644646],[-120.675377,37.645274],[-120.675221,37.642450],[-120.671613,37.640725],[-120.664869,37.642294],[-120.662517,37.641823],[-120.662517,37.635549],[-120.656243,37.635393],[-120.655459,37.632256],[-120.648715,37.622689],[-120.643068,37.623316],[-120.641029,37.621904],[-120.639932,37.621591],[-120.618288,37.621120],[-120.618288,37.616415],[-120.618131,37.615317],[-120.613112,37.615944],[-120.604956,37.616415],[-120.604015,37.615944],[-120.600565,37.613592],[-120.596644,37.612023],[-120.596487,37.611553],[-120.596487,37.611082],[-120.598839,37.608259],[-120.598839,37.607632],[-120.598212,37.606848],[-120.596957,37.600103],[-120.597114,37.598221],[-120.594291,37.595398],[-120.593036,37.594928],[-120.582842,37.594928],[-120.580960,37.595241],[-120.574372,37.591164],[-120.573274,37.591164],[-120.572961,37.590850],[-120.572961,37.584890]]]}}
,{"id":94609,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.271229,37.846500],[-122.271072,37.846657],[-122.271072,37.846970],[-122.269190,37.847284],[-122.269660,37.848068],[-122.269660,37.848539],[-122.268406,37.848696],[-122.268876,37.851676],[-122.266053,37.851989],[-122.257740,37.853087],[-122.257427,37.851048],[-122.256799,37.851205],[-122.256799,37.850734],[-122.256956,37.850578],[-122.256329,37.846029],[-122.257270,37.846029],[-122.257113,37.845245],[-122.258054,37.844147],[-122.257113,37.843677],[-122.257897,37.842579],[-122.261348,37.841481],[-122.261191,37.841324],[-122.261818,37.841010],[-122.261818,37.840854],[-122.259936,37.841167],[-122.259152,37.841010],[-122.260250,37.839756],[-122.262289,37.837874],[-122.262132,37.837874],[-122.262289,37.837246],[-122.257270,37.836619],[-122.254290,37.835521],[-122.254917,37.834266],[-122.253035,37.833482],[-122.256799,37.827679],[-122.257897,37.828149],[-122.258838,37.826424],[-122.257584,37.826267],[-122.258681,37.824385],[-122.261661,37.825326],[-122.262132,37.823758],[-122.261975,37.822974],[-122.259936,37.822346],[-122.263073,37.817484],[-122.263857,37.817641],[-122.264328,37.815759],[-122.267935,37.816230],[-122.271542,37.817171],[-122.271386,37.817641],[-122.272797,37.817798],[-122.272640,37.818896],[-122.273738,37.819210],[-122.272483,37.824856],[-122.274993,37.825326],[-122.275307,37.825640],[-122.275150,37.825954],[-122.275463,37.826111],[-122.275150,37.826267],[-122.272170,37.825640],[-122.269660,37.835364],[-122.267151,37.835050],[-122.267151,37.835364],[-122.267935,37.836305],[-122.269503,37.836148],[-122.269347,37.837089],[-122.269190,37.838030],[-122.269660,37.839128],[-122.270601,37.843363],[-122.272483,37.843206],[-122.272640,37.843990],[-122.270758,37.844304],[-122.271229,37.846500]]]}}
,{"id":94606,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.234685,37.799761],[-122.233430,37.799605],[-122.233117,37.798977],[-122.233117,37.796625],[-122.230137,37.797722],[-122.229823,37.798036],[-122.229509,37.798977],[-122.226372,37.798350],[-122.226843,37.796625],[-122.224490,37.796154],[-122.224020,37.795683],[-122.223549,37.795840],[-122.223706,37.794899],[-122.225902,37.794742],[-122.226529,37.793488],[-122.226059,37.793331],[-122.228568,37.790351],[-122.229039,37.790821],[-122.230137,37.790194],[-122.231705,37.788626],[-122.231862,37.788155],[-122.232019,37.787214],[-122.232489,37.786587],[-122.235940,37.783293],[-122.234842,37.782666],[-122.235626,37.782038],[-122.238606,37.783764],[-122.238606,37.783607],[-122.238606,37.783136],[-122.237351,37.782195],[-122.237038,37.780784],[-122.235940,37.779843],[-122.236253,37.779529],[-122.236253,37.779058],[-122.236724,37.779058],[-122.236567,37.777490],[-122.236096,37.776706],[-122.236253,37.776706],[-122.235940,37.773883],[-122.234842,37.773412],[-122.236410,37.771687],[-122.240645,37.774353],[-122.244880,37.777333],[-122.244880,37.779058],[-122.245036,37.780940],[-122.246134,37.783450],[-122.250526,37.786116],[-122.254760,37.786744],[-122.255545,37.786273],[-122.257897,37.784234],[-122.268406,37.787998],[-122.264485,37.790665],[-122.263073,37.790821],[-122.262916,37.791135],[-122.263230,37.791606],[-122.262759,37.791606],[-122.262132,37.792390],[-122.261661,37.793488],[-122.261034,37.794115],[-122.261191,37.795056],[-122.260093,37.795370],[-122.259623,37.796154],[-122.259466,37.796625],[-122.259466,37.797879],[-122.260250,37.798350],[-122.259466,37.798036],[-122.258681,37.798036],[-122.259623,37.798507],[-122.258995,37.798507],[-122.258211,37.799448],[-122.257427,37.799918],[-122.256643,37.799918],[-122.255388,37.800075],[-122.254760,37.800389],[-122.254447,37.800859],[-122.254447,37.801957],[-122.253819,37.802898],[-122.253349,37.803682],[-122.252878,37.803996],[-122.251467,37.804310],[-122.250839,37.804623],[-122.249585,37.807603],[-122.250055,37.806349],[-122.249114,37.806035],[-122.249585,37.804937],[-122.249271,37.804780],[-122.248173,37.805564],[-122.248016,37.805721],[-122.247860,37.805721],[-122.246605,37.806662],[-122.245821,37.807760],[-122.245664,37.807447],[-122.245821,37.806819],[-122.245350,37.806192],[-122.246134,37.805094],[-122.244723,37.804623],[-122.243468,37.805721],[-122.239861,37.804467],[-122.240488,37.803839],[-122.240645,37.803212],[-122.239704,37.802584],[-122.237194,37.803055],[-122.237508,37.802741],[-122.238135,37.802428],[-122.238292,37.801487],[-122.235626,37.798977],[-122.234685,37.799761]]]}}
,{"id":94702,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.295853,37.880377],[-122.290991,37.881475],[-122.290050,37.881475],[-122.290050,37.881475],[-122.289736,37.881318],[-122.284717,37.880064],[-122.284246,37.880377],[-122.284246,37.881005],[-122.283776,37.881789],[-122.283149,37.882103],[-122.282678,37.881318],[-122.283149,37.881005],[-122.282051,37.881632],[-122.281580,37.880691],[-122.283149,37.879907],[-122.281737,37.867360],[-122.280639,37.867673],[-122.280482,37.865948],[-122.281580,37.865791],[-122.281423,37.864066],[-122.281267,37.864066],[-122.280953,37.862027],[-122.280796,37.861400],[-122.280953,37.861400],[-122.279541,37.854969],[-122.279384,37.854969],[-122.278287,37.850578],[-122.278443,37.850578],[-122.278443,37.850421],[-122.278287,37.850421],[-122.277659,37.847911],[-122.277816,37.847911],[-122.277816,37.847598],[-122.279541,37.847441],[-122.281737,37.846970],[-122.282678,37.849166],[-122.283619,37.849009],[-122.283776,37.850264],[-122.284246,37.850734],[-122.286129,37.850107],[-122.286285,37.850578],[-122.289579,37.849950],[-122.289579,37.850264],[-122.288167,37.850578],[-122.288324,37.851048],[-122.288011,37.851205],[-122.288011,37.851519],[-122.287070,37.851676],[-122.287226,37.851989],[-122.286756,37.852146],[-122.288795,37.851832],[-122.289109,37.852773],[-122.289265,37.852773],[-122.289736,37.853871],[-122.288638,37.854185],[-122.289265,37.856067],[-122.288011,37.856224],[-122.288324,37.857165],[-122.289422,37.856851],[-122.289736,37.857479],[-122.289736,37.857792],[-122.288638,37.858106],[-122.289109,37.859361],[-122.290206,37.859047],[-122.290677,37.860929],[-122.289579,37.861086],[-122.290834,37.864693],[-122.291147,37.864536],[-122.291304,37.865164],[-122.291461,37.865007],[-122.291932,37.866262],[-122.291304,37.866419],[-122.292245,37.869085],[-122.292873,37.869085],[-122.292873,37.869398],[-122.293500,37.869398],[-122.294127,37.871437],[-122.293030,37.871751],[-122.294284,37.875202],[-122.294441,37.875202],[-122.294598,37.876299],[-122.295853,37.880377]]]}}
,{"id":94539,"type":"Feature","properties":{"name":"Fremont"},"geometry":{"type":"Polygon","coordinates":[[[-121.917083,37.458477],[-121.918965,37.462084],[-121.917240,37.462711],[-121.917240,37.462868],[-121.919122,37.462241],[-121.930885,37.485924],[-121.931356,37.485767],[-121.932140,37.487178],[-121.932297,37.487022],[-121.932453,37.487022],[-121.932140,37.487335],[-121.941080,37.504588],[-121.940766,37.504588],[-121.941080,37.504588],[-121.945314,37.512743],[-121.947040,37.512273],[-121.949392,37.512273],[-121.951117,37.511959],[-121.951117,37.512116],[-121.949549,37.512430],[-121.947040,37.512430],[-121.945314,37.512743],[-121.951745,37.525134],[-121.953784,37.529212],[-121.954254,37.530466],[-121.958803,37.559482],[-121.959273,37.561207],[-121.960057,37.562619],[-121.961155,37.564187],[-121.962253,37.564971],[-121.959116,37.567167],[-121.958332,37.566226],[-121.956607,37.567638],[-121.954254,37.569049],[-121.951902,37.569676],[-121.950961,37.569520],[-121.950490,37.568265],[-121.949235,37.568265],[-121.948294,37.567324],[-121.947510,37.567010],[-121.947196,37.565442],[-121.945942,37.565285],[-121.945001,37.565755],[-121.944687,37.567010],[-121.945001,37.567794],[-121.945314,37.568422],[-121.946255,37.569049],[-121.950176,37.570461],[-121.949549,37.570461],[-121.947981,37.569833],[-121.945471,37.569990],[-121.944373,37.570461],[-121.942805,37.570617],[-121.940766,37.570304],[-121.939511,37.570617],[-121.938413,37.570461],[-121.937472,37.570461],[-121.936845,37.569990],[-121.935747,37.569990],[-121.934963,37.570461],[-121.934179,37.570617],[-121.933865,37.570931],[-121.932924,37.571402],[-121.932297,37.572029],[-121.932140,37.572343],[-121.931826,37.572656],[-121.931826,37.572813],[-121.932140,37.573284],[-121.925239,37.571245],[-121.923514,37.569676],[-121.923200,37.568265],[-121.919436,37.567638],[-121.918965,37.565912],[-121.919122,37.561521],[-121.923670,37.559952],[-121.924768,37.557286],[-121.923670,37.557443],[-121.922886,37.559639],[-121.919906,37.560266],[-121.920063,37.560893],[-121.918024,37.561207],[-121.917867,37.560580],[-121.915985,37.560893],[-121.915828,37.555404],[-121.913476,37.558227],[-121.912064,37.559325],[-121.910809,37.559952],[-121.907045,37.561050],[-121.905320,37.562148],[-121.904065,37.561207],[-121.901556,37.559796],[-121.901242,37.559168],[-121.901399,37.558384],[-121.899987,37.558070],[-121.899517,37.557443],[-121.897478,37.557129],[-121.895439,37.556972],[-121.893400,37.556502],[-121.891989,37.556345],[-121.889793,37.556502],[-121.888695,37.557443],[-121.888068,37.557443],[-121.886342,37.556345],[-121.885715,37.555247],[-121.908143,37.551797],[-121.907202,37.549287],[-121.906418,37.549444],[-121.906418,37.549130],[-121.905320,37.549130],[-121.901085,37.545837],[-121.891361,37.549758],[-121.887597,37.544111],[-121.886813,37.535642],[-121.880696,37.528271],[-121.879285,37.526388],[-121.880696,37.523252],[-121.880069,37.523409],[-121.878500,37.523879],[-121.877402,37.524036],[-121.875991,37.523879],[-121.875834,37.523565],[-121.875834,37.523409],[-121.875364,37.523095],[-121.875364,37.522781],[-121.876148,37.522311],[-121.876932,37.521526],[-121.877402,37.520429],[-121.876148,37.520272],[-121.875677,37.520429],[-121.875050,37.520429],[-121.873011,37.519488],[-121.871756,37.519331],[-121.871129,37.519331],[-121.870188,37.519017],[-121.869404,37.519017],[-121.868776,37.519174],[-121.868619,37.518703],[-121.867678,37.518233],[-121.867365,37.517605],[-121.865169,37.517449],[-121.864855,37.517135],[-121.865326,37.517292],[-121.866894,37.516821],[-121.867208,37.516194],[-121.867992,37.516194],[-121.869404,37.515723],[-121.869404,37.514939],[-121.869090,37.513998],[-121.868463,37.512900],[-121.867678,37.512587],[-121.867051,37.511959],[-121.866580,37.511332],[-121.866110,37.510077],[-121.864855,37.509920],[-121.862973,37.508666],[-121.862816,37.507881],[-121.863444,37.506940],[-121.862973,37.506313],[-121.863130,37.505215],[-121.862816,37.504117],[-121.862503,37.503490],[-121.861875,37.503176],[-121.862346,37.502549],[-121.862816,37.501765],[-121.863130,37.500510],[-121.863444,37.499882],[-121.863130,37.497530],[-121.861875,37.495805],[-121.861248,37.494550],[-121.861405,37.492668],[-121.861091,37.492040],[-121.860464,37.491413],[-121.860777,37.490472],[-121.860621,37.489688],[-121.859679,37.488276],[-121.858895,37.487492],[-121.858268,37.486394],[-121.857484,37.485767],[-121.855915,37.484826],[-121.855758,37.484512],[-121.865326,37.484669],[-121.869874,37.481689],[-121.870031,37.480748],[-121.870501,37.480277],[-121.870815,37.479493],[-121.872697,37.478238],[-121.873638,37.477768],[-121.873952,37.477454],[-121.874266,37.476356],[-121.874579,37.475729],[-121.875207,37.475259],[-121.875834,37.474945],[-121.876305,37.474945],[-121.876461,37.475102],[-121.877402,37.475259],[-121.877716,37.474945],[-121.878187,37.474004],[-121.878971,37.473376],[-121.879441,37.472122],[-121.879912,37.471808],[-121.881167,37.471024],[-121.882578,37.470553],[-121.883833,37.470710],[-121.884460,37.471181],[-121.885088,37.471338],[-121.886029,37.471338],[-121.887754,37.470867],[-121.889322,37.470083],[-121.890420,37.468358],[-121.890891,37.468044],[-121.894969,37.467573],[-121.897635,37.466946],[-121.898262,37.466632],[-121.899046,37.465848],[-121.899831,37.465691],[-121.901242,37.464907],[-121.905163,37.464280],[-121.906888,37.463652],[-121.907045,37.463652],[-121.907045,37.463339],[-121.907359,37.463339],[-121.907359,37.463495],[-121.908614,37.463025],[-121.909084,37.463025],[-121.911123,37.461770],[-121.911123,37.461613],[-121.912535,37.460986],[-121.912848,37.460829],[-121.915985,37.458947],[-121.917083,37.458477]]]}}
,{"id":94588,"type":"Feature","properties":{"name":"Pleasanton"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.824547,37.838971],[-121.823136,37.838971],[-121.823136,37.838344],[-121.822665,37.837560],[-121.822038,37.837089],[-121.822508,37.835991],[-121.822195,37.835364],[-121.821410,37.834894],[-121.822038,37.834423],[-121.822351,37.833796],[-121.822351,37.832541],[-121.822038,37.831286],[-121.822195,37.830973],[-121.822195,37.830502],[-121.821410,37.829404],[-121.821410,37.828934],[-121.821254,37.828306],[-121.821410,37.828149],[-121.820469,37.827836],[-121.819999,37.827365],[-121.819842,37.826895],[-121.819999,37.825954],[-121.819842,37.825797],[-121.820940,37.794115],[-121.820940,37.774196],[-121.822038,37.774510],[-121.824077,37.774510],[-121.825959,37.775294],[-121.827684,37.775137],[-121.828625,37.775608],[-121.829566,37.775137],[-121.829880,37.774040],[-121.829723,37.772942],[-121.829409,37.772471],[-121.826900,37.770275],[-121.826743,37.769962],[-121.827057,37.769177],[-121.826743,37.767923],[-121.824861,37.765727],[-121.822508,37.764159],[-121.831919,37.764159],[-121.831919,37.756630],[-121.832232,37.756473],[-121.832232,37.756160],[-121.832546,37.756003],[-121.833173,37.757414],[-121.834271,37.758512],[-121.835369,37.758355],[-121.838035,37.759767],[-121.838977,37.759924],[-121.839761,37.760394],[-121.840388,37.760708],[-121.841800,37.760865],[-121.843211,37.760551],[-121.844152,37.760551],[-121.845093,37.760081],[-121.845721,37.759924],[-121.846191,37.760081],[-121.846034,37.760551],[-121.846348,37.761022],[-121.848073,37.762276],[-121.848857,37.762276],[-121.849799,37.761806],[-121.850583,37.762276],[-121.850740,37.762120],[-121.851681,37.762904],[-121.852308,37.763061],[-121.852935,37.762904],[-121.854033,37.763374],[-121.855131,37.763061],[-121.856700,37.763531],[-121.857484,37.763845],[-121.858268,37.763845],[-121.859523,37.764002],[-121.861875,37.763845],[-121.862032,37.764002],[-121.862189,37.764315],[-121.864228,37.764472],[-121.864071,37.764786],[-121.864228,37.764943],[-121.866737,37.764159],[-121.866267,37.765570],[-121.862973,37.772157],[-121.862032,37.774353],[-121.861718,37.775765],[-121.861875,37.777490],[-121.862503,37.779215],[-121.863130,37.784077],[-121.864228,37.788155],[-121.864071,37.788939],[-121.863757,37.790821],[-121.864071,37.792704],[-121.864385,37.793645],[-121.865012,37.794899],[-121.865953,37.795840],[-121.867051,37.796468],[-121.872384,37.798507],[-121.877873,37.799291],[-121.877559,37.807447],[-121.877089,37.807760],[-121.876305,37.808858],[-121.876618,37.809485],[-121.876618,37.809799],[-121.876305,37.810426],[-121.875991,37.810426],[-121.875834,37.810740],[-121.874736,37.813093],[-121.873638,37.814504],[-121.873011,37.815445],[-121.872697,37.816230],[-121.872070,37.816857],[-121.871599,37.818739],[-121.871599,37.819994],[-121.869560,37.821248],[-121.868776,37.822033],[-121.867365,37.824542],[-121.866110,37.825483],[-121.866110,37.826111],[-121.864855,37.827679],[-121.864071,37.829718],[-121.864228,37.831129],[-121.863757,37.832070],[-121.863130,37.832698],[-121.862973,37.833639],[-121.895910,37.838187],[-121.893400,37.846029],[-121.861405,37.846029],[-121.846975,37.845872],[-121.845878,37.844147],[-121.844623,37.843206],[-121.843995,37.841951],[-121.843368,37.840540],[-121.843054,37.840226],[-121.842270,37.839756],[-121.841015,37.839912],[-121.839133,37.839599],[-121.838035,37.838971],[-121.837722,37.838658],[-121.835526,37.837717],[-121.833644,37.837560],[-121.832389,37.837874],[-121.832232,37.837089],[-121.831919,37.836776],[-121.830978,37.836776],[-121.830821,37.836933],[-121.830507,37.837403],[-121.830350,37.838187],[-121.829723,37.838501],[-121.829409,37.838501],[-121.828782,37.838030],[-121.828311,37.838971],[-121.826272,37.838815],[-121.825959,37.838501],[-121.825802,37.837874],[-121.825488,37.837717],[-121.825018,37.838187],[-121.824547,37.838187],[-121.824704,37.838344],[-121.824547,37.838971]]],[[[-121.844936,37.701266],[-121.828625,37.701109],[-121.830193,37.700795],[-121.830193,37.700325],[-121.831135,37.700011],[-121.833173,37.698599],[-121.833173,37.698286],[-121.833017,37.697972],[-121.835683,37.697345],[-121.836153,37.696717],[-121.836938,37.696247],[-121.836781,37.700481],[-121.846191,37.700481],[-121.846662,37.700168],[-121.847132,37.699070],[-121.847916,37.698756],[-121.848073,37.696404],[-121.848230,37.696560],[-121.848230,37.694835],[-121.848701,37.694365],[-121.848701,37.693894],[-121.848544,37.693894],[-121.848387,37.693737],[-121.848387,37.692326],[-121.847760,37.691698],[-121.847132,37.691541],[-121.843054,37.691071],[-121.837722,37.685895],[-121.837408,37.686209],[-121.834271,37.682915],[-121.832703,37.681033],[-121.830350,37.679151],[-121.819685,37.685111],[-121.819685,37.674603],[-121.826743,37.673818],[-121.826743,37.674289],[-121.838663,37.673034],[-121.838506,37.678053],[-121.845878,37.676014],[-121.850426,37.676014],[-121.850583,37.675701],[-121.850740,37.675701],[-121.861405,37.676014],[-121.862346,37.676014],[-121.862659,37.675701],[-121.874579,37.684327],[-121.877246,37.686209],[-121.878187,37.688875],[-121.883362,37.687464],[-121.886813,37.686209],[-121.886499,37.686052],[-121.885715,37.685111],[-121.890891,37.683229],[-121.892616,37.682131],[-121.897635,37.679778],[-121.898105,37.679778],[-121.898890,37.678837],[-121.899831,37.677740],[-121.898419,37.676798],[-121.908614,37.672721],[-121.910182,37.671936],[-121.910339,37.671623],[-121.910966,37.671466],[-121.908457,37.665192],[-121.907516,37.663310],[-121.906261,37.661742],[-121.906732,37.661271],[-121.906888,37.660644],[-121.905477,37.656880],[-121.905163,37.655311],[-121.904222,37.655782],[-121.903438,37.655154],[-121.901556,37.654841],[-121.901242,37.654527],[-121.900929,37.654213],[-121.902026,37.653429],[-121.900929,37.652331],[-121.900615,37.651077],[-121.897792,37.647626],[-121.897635,37.646999],[-121.897635,37.645901],[-121.896694,37.644332],[-121.896223,37.644019],[-121.895439,37.644176],[-121.893871,37.646528],[-121.892459,37.648254],[-121.885558,37.641509],[-121.884460,37.639941],[-121.886656,37.638686],[-121.891048,37.637432],[-121.891675,37.638059],[-121.893086,37.639000],[-121.893557,37.638529],[-121.896694,37.640725],[-121.896537,37.637902],[-121.905791,37.632413],[-121.913633,37.632726],[-121.915672,37.634922],[-121.916299,37.636490],[-121.920220,37.639941],[-121.923200,37.643391],[-121.924455,37.644960],[-121.929630,37.653743],[-121.930571,37.655939],[-121.931669,37.660487],[-121.933394,37.660801],[-121.933865,37.661271],[-121.933865,37.661899],[-121.934179,37.662212],[-121.935590,37.662683],[-121.937472,37.663624],[-121.939041,37.663467],[-121.939825,37.663624],[-121.940609,37.663310],[-121.941550,37.663310],[-121.942648,37.663781],[-121.943589,37.663624],[-121.944530,37.664408],[-121.945785,37.664408],[-121.947667,37.664879],[-121.949863,37.666447],[-121.950647,37.667074],[-121.952686,37.668486],[-121.952843,37.668956],[-121.952372,37.669741],[-121.952529,37.670525],[-121.952529,37.671152],[-121.952686,37.671623],[-121.953000,37.672093],[-121.953470,37.672407],[-121.954725,37.672564],[-121.958489,37.673975],[-121.959273,37.674446],[-121.960371,37.674760],[-121.960998,37.675073],[-121.961312,37.674916],[-121.961783,37.673975],[-121.963194,37.673191],[-121.963508,37.672407],[-121.963508,37.671936],[-121.963822,37.671466],[-121.965860,37.671780],[-121.967743,37.671466],[-121.969781,37.672250],[-121.970722,37.672721],[-121.971350,37.673348],[-121.972918,37.673975],[-121.973389,37.674132],[-121.974800,37.673975],[-121.975585,37.674916],[-121.976996,37.675544],[-121.976839,37.676485],[-121.978251,37.677740],[-121.978721,37.678681],[-121.979349,37.678994],[-121.981388,37.684327],[-121.983583,37.689032],[-121.982799,37.689032],[-121.982015,37.689659],[-121.981231,37.689816],[-121.977780,37.689659],[-121.976526,37.690444],[-121.976526,37.691698],[-121.975898,37.692639],[-121.975114,37.692953],[-121.975428,37.693424],[-121.975428,37.694051],[-121.974643,37.694992],[-121.974800,37.695462],[-121.976055,37.696247],[-121.974643,37.696090],[-121.973859,37.696717],[-121.973232,37.697188],[-121.977623,37.697815],[-121.977623,37.698599],[-121.972605,37.697658],[-121.967899,37.697345],[-121.963978,37.697658],[-121.958489,37.698599],[-121.957391,37.698599],[-121.935747,37.698442],[-121.932767,37.698913],[-121.922572,37.701109],[-121.919906,37.701893],[-121.916456,37.702050],[-121.907202,37.701893],[-121.907045,37.701736],[-121.906418,37.701893],[-121.899517,37.701893],[-121.844936,37.701266]]]]}}
,{"id":94568,"type":"Feature","properties":{"name":"Dublin"},"geometry":{"type":"Polygon","coordinates":[[[-121.870658,37.740162],[-121.859993,37.742671],[-121.860307,37.742358],[-121.862189,37.741103],[-121.862659,37.740633],[-121.864071,37.740162],[-121.864698,37.739691],[-121.865639,37.739064],[-121.867365,37.736868],[-121.867835,37.735770],[-121.867992,37.735457],[-121.867835,37.734986],[-121.865169,37.737182],[-121.854033,37.737809],[-121.853563,37.730908],[-121.849955,37.730908],[-121.853092,37.728713],[-121.853563,37.727458],[-121.852778,37.726517],[-121.851994,37.726831],[-121.851367,37.725733],[-121.851837,37.724635],[-121.851837,37.724321],[-121.850112,37.722596],[-121.849485,37.722282],[-121.849485,37.721969],[-121.850269,37.720714],[-121.850426,37.720557],[-121.852308,37.720557],[-121.852622,37.719145],[-121.852308,37.718361],[-121.851994,37.718361],[-121.851681,37.718047],[-121.851210,37.716793],[-121.850896,37.716322],[-121.851053,37.715538],[-121.851681,37.714283],[-121.851524,37.714283],[-121.851681,37.712715],[-121.851994,37.710362],[-121.851681,37.709735],[-121.850583,37.708637],[-121.850426,37.708323],[-121.850426,37.702677],[-121.849485,37.702677],[-121.847289,37.701579],[-121.844936,37.701266],[-121.899517,37.701893],[-121.906418,37.701893],[-121.907045,37.701736],[-121.907202,37.701893],[-121.916456,37.702050],[-121.919906,37.701893],[-121.922572,37.701109],[-121.932767,37.698913],[-121.935747,37.698442],[-121.957391,37.698599],[-121.958489,37.698599],[-121.963978,37.697658],[-121.967899,37.697345],[-121.972605,37.697658],[-121.977623,37.698599],[-121.987661,37.700011],[-121.989386,37.700638],[-121.992837,37.702050],[-121.995346,37.702834],[-121.998170,37.703461],[-122.001306,37.703775],[-121.977937,37.724007],[-121.972448,37.728556],[-121.960842,37.718675],[-121.950020,37.721027],[-121.943746,37.722753],[-121.939198,37.723537],[-121.939198,37.723694],[-121.939041,37.723694],[-121.937002,37.724321],[-121.937002,37.724321],[-121.932767,37.725419],[-121.929473,37.726203],[-121.929317,37.726046],[-121.929317,37.726203],[-121.917397,37.729026],[-121.910182,37.730438],[-121.904536,37.732006],[-121.874266,37.739064],[-121.870658,37.740162]]]}}
,{"id":94610,"type":"Feature","properties":{"name":"Oakland"},"geometry":{"type":"Polygon","coordinates":[[[-122.215237,37.812309],[-122.215394,37.811995],[-122.217276,37.812622],[-122.217746,37.812779],[-122.217746,37.812936],[-122.219785,37.813406],[-122.221040,37.812465],[-122.221197,37.811524],[-122.222608,37.810113],[-122.223863,37.809956],[-122.224490,37.809485],[-122.223079,37.808074],[-122.223236,37.807917],[-122.223392,37.808074],[-122.223863,37.807760],[-122.224647,37.808544],[-122.226059,37.807447],[-122.226059,37.807290],[-122.227470,37.806349],[-122.229039,37.805721],[-122.229039,37.805251],[-122.228725,37.804780],[-122.228568,37.804937],[-122.228568,37.804623],[-122.228882,37.804623],[-122.228882,37.804467],[-122.229039,37.804310],[-122.227470,37.803996],[-122.227784,37.802741],[-122.229509,37.803055],[-122.230293,37.803369],[-122.234685,37.799761],[-122.235626,37.798977],[-122.238292,37.801487],[-122.238135,37.802428],[-122.237508,37.802741],[-122.237194,37.803055],[-122.239704,37.802584],[-122.240645,37.803212],[-122.240488,37.803839],[-122.239861,37.804467],[-122.243468,37.805721],[-122.244723,37.804623],[-122.246134,37.805094],[-122.245350,37.806192],[-122.245821,37.806819],[-122.245664,37.807447],[-122.245821,37.807760],[-122.246605,37.806662],[-122.247860,37.805721],[-122.248016,37.805721],[-122.248173,37.805564],[-122.249271,37.804780],[-122.249585,37.804937],[-122.249114,37.806035],[-122.250055,37.806349],[-122.249585,37.807603],[-122.249114,37.808388],[-122.249585,37.808388],[-122.249742,37.807760],[-122.250526,37.805721],[-122.251153,37.804780],[-122.252251,37.804467],[-122.253192,37.804153],[-122.253506,37.803996],[-122.253976,37.802898],[-122.254604,37.802114],[-122.254447,37.801173],[-122.254604,37.800702],[-122.254917,37.800546],[-122.255388,37.800232],[-122.256643,37.800232],[-122.257740,37.799918],[-122.258525,37.799448],[-122.259152,37.798820],[-122.259309,37.798820],[-122.260877,37.799448],[-122.261505,37.799918],[-122.261505,37.800859],[-122.261348,37.801173],[-122.261348,37.801643],[-122.260564,37.803996],[-122.260564,37.804310],[-122.260720,37.804623],[-122.261191,37.804467],[-122.261975,37.805094],[-122.263073,37.806662],[-122.263544,37.807447],[-122.264328,37.808074],[-122.263387,37.808231],[-122.263073,37.808701],[-122.263230,37.808858],[-122.262759,37.810113],[-122.263073,37.810897],[-122.262289,37.810897],[-122.261505,37.812622],[-122.261191,37.812779],[-122.261348,37.812936],[-122.260720,37.813720],[-122.258995,37.815289],[-122.258838,37.815289],[-122.257584,37.816386],[-122.257113,37.816073],[-122.255231,37.817327],[-122.255702,37.817641],[-122.253976,37.818739],[-122.254290,37.819523],[-122.255231,37.819994],[-122.254447,37.819994],[-122.255388,37.820935],[-122.254604,37.821562],[-122.254133,37.819837],[-122.253349,37.819210],[-122.251937,37.820151],[-122.251467,37.820307],[-122.250526,37.819523],[-122.249114,37.820621],[-122.249114,37.821092],[-122.247546,37.821562],[-122.245664,37.819837],[-122.245350,37.820307],[-122.245193,37.820935],[-122.244252,37.820778],[-122.243468,37.822817],[-122.240017,37.823758],[-122.239704,37.823601],[-122.238920,37.823444],[-122.237665,37.822346],[-122.237194,37.822190],[-122.237508,37.822033],[-122.237194,37.821719],[-122.236096,37.822033],[-122.234528,37.819994],[-122.233901,37.820151],[-122.232960,37.819210],[-122.231862,37.818739],[-122.231705,37.817484],[-122.231078,37.817014],[-122.228882,37.816543],[-122.228098,37.816700],[-122.228098,37.817014],[-122.227313,37.817484],[-122.226216,37.817171],[-122.225274,37.817014],[-122.225274,37.818896],[-122.223392,37.817798],[-122.223079,37.817641],[-122.222295,37.817798],[-122.220883,37.818582],[-122.220569,37.817955],[-122.219942,37.817484],[-122.220412,37.816073],[-122.220726,37.815916],[-122.221510,37.815602],[-122.220569,37.813877],[-122.220256,37.813720],[-122.218530,37.814034],[-122.217746,37.813720],[-122.216491,37.813093],[-122.216648,37.812779],[-122.215237,37.812309]]]}}
,{"id":94707,"type":"Feature","properties":{"name":"Berkeley"},"geometry":{"type":"Polygon","coordinates":[[[-122.287383,37.910491],[-122.288952,37.914412],[-122.282835,37.918646],[-122.282364,37.918333],[-122.281894,37.918176],[-122.281737,37.917705],[-122.281267,37.917235],[-122.281110,37.915823],[-122.280639,37.915510],[-122.279698,37.915353],[-122.280953,37.914255],[-122.281580,37.914098],[-122.281110,37.912373],[-122.279855,37.911118],[-122.280639,37.909863],[-122.280639,37.908765],[-122.280482,37.908295],[-122.279541,37.907354],[-122.279384,37.906883],[-122.279071,37.907197],[-122.278130,37.905785],[-122.277973,37.904374],[-122.278287,37.904060],[-122.278130,37.903276],[-122.276248,37.903903],[-122.274993,37.904531],[-122.274366,37.904060],[-122.274209,37.903903],[-122.273268,37.904217],[-122.272483,37.904217],[-122.271856,37.903903],[-122.271699,37.903590],[-122.271856,37.903119],[-122.272640,37.902649],[-122.271229,37.901237],[-122.269817,37.901551],[-122.269660,37.901237],[-122.269974,37.900767],[-122.269190,37.900610],[-122.269190,37.900296],[-122.270915,37.899355],[-122.270131,37.898414],[-122.269974,37.897943],[-122.269503,37.898100],[-122.268719,37.896532],[-122.268562,37.895591],[-122.268249,37.895277],[-122.268562,37.894493],[-122.268406,37.893866],[-122.267935,37.893238],[-122.266994,37.892611],[-122.266994,37.892454],[-122.266994,37.891984],[-122.266680,37.891199],[-122.266367,37.891042],[-122.265896,37.891199],[-122.265896,37.891042],[-122.266367,37.890572],[-122.266994,37.890572],[-122.267151,37.890415],[-122.267151,37.890415],[-122.266680,37.888690],[-122.266367,37.888690],[-122.266210,37.886024],[-122.272327,37.885239],[-122.272954,37.885710],[-122.274522,37.884926],[-122.274993,37.885396],[-122.275620,37.884769],[-122.281267,37.881946],[-122.280482,37.881162],[-122.281580,37.880691],[-122.282051,37.881632],[-122.283149,37.881005],[-122.282678,37.881318],[-122.283149,37.882103],[-122.282521,37.882730],[-122.281894,37.884298],[-122.282364,37.884298],[-122.281894,37.885083],[-122.281110,37.884926],[-122.280639,37.885553],[-122.282678,37.886024],[-122.281580,37.888376],[-122.282364,37.891199],[-122.287540,37.890886],[-122.287226,37.890886],[-122.286913,37.898728],[-122.287070,37.898571],[-122.287070,37.899512],[-122.288011,37.899355],[-122.288011,37.900139],[-122.288638,37.902178],[-122.288638,37.903590],[-122.289109,37.903747],[-122.290363,37.903747],[-122.291147,37.904217],[-122.290050,37.905158],[-122.288481,37.905942],[-122.289109,37.909079],[-122.287226,37.909863],[-122.287383,37.910491]]]}}
,{"id":95254,"type":"Feature","properties":{"name":"Wallace"},"geometry":{"type":"Polygon","coordinates":[[[-120.930557,38.195470],[-120.931184,38.194529],[-120.932439,38.194215],[-120.935889,38.194215],[-120.937615,38.194529],[-120.938399,38.194529],[-120.938399,38.194529],[-120.942006,38.192960],[-120.942163,38.193117],[-120.952358,38.187941],[-120.965532,38.182138],[-120.959572,38.179786],[-120.959572,38.178374],[-120.957690,38.175708],[-120.957533,38.175237],[-120.957377,38.173669],[-120.958004,38.171630],[-120.958004,38.169905],[-120.958474,38.166768],[-120.956749,38.165356],[-120.956436,38.164258],[-120.958945,38.164258],[-120.959259,38.163945],[-120.959415,38.163317],[-120.959886,38.163004],[-120.963180,38.163004],[-120.963650,38.163317],[-120.963807,38.163788],[-120.963807,38.166768],[-120.963650,38.167082],[-120.962552,38.167709],[-120.962709,38.168964],[-120.969767,38.168179],[-120.971179,38.168023],[-120.975256,38.177904],[-120.981687,38.194058],[-120.987647,38.207390],[-120.985765,38.207233],[-120.975413,38.204723],[-120.975100,38.205194],[-120.974629,38.205351],[-120.974629,38.206135],[-120.973688,38.206292],[-120.973374,38.207233],[-120.972590,38.207703],[-120.972276,38.207703],[-120.971179,38.207076],[-120.971022,38.207390],[-120.971492,38.208017],[-120.971492,38.208331],[-120.971335,38.208644],[-120.970865,38.208644],[-120.970237,38.209115],[-120.969924,38.209272],[-120.968042,38.209272],[-120.968042,38.209899],[-120.967885,38.210056],[-120.966316,38.210526],[-120.965375,38.210997],[-120.964905,38.210997],[-120.963964,38.209115],[-120.963964,38.208487],[-120.964591,38.208174],[-120.965219,38.206919],[-120.965219,38.206762],[-120.964748,38.206292],[-120.964591,38.206292],[-120.964121,38.206762],[-120.963650,38.206605],[-120.963180,38.206919],[-120.962239,38.206919],[-120.962239,38.207233],[-120.962709,38.208017],[-120.962709,38.208174],[-120.961454,38.207860],[-120.961298,38.208487],[-120.960513,38.208331],[-120.960043,38.208801],[-120.959729,38.208801],[-120.958788,38.208487],[-120.956749,38.208487],[-120.956279,38.208174],[-120.955808,38.207546],[-120.955651,38.207546],[-120.955338,38.208017],[-120.954867,38.208017],[-120.952671,38.208801],[-120.950632,38.211311],[-120.950476,38.211781],[-120.950789,38.212722],[-120.950476,38.212879],[-120.949691,38.212879],[-120.949848,38.212095],[-120.948123,38.212408],[-120.947809,38.212095],[-120.947496,38.211624],[-120.947496,38.210213],[-120.947496,38.210056],[-120.947182,38.210056],[-120.946868,38.210213],[-120.946241,38.211467],[-120.945300,38.211624],[-120.945300,38.211938],[-120.945770,38.213820],[-120.944986,38.214134],[-120.944202,38.214604],[-120.943575,38.214604],[-120.943104,38.214447],[-120.942477,38.213193],[-120.942634,38.212252],[-120.942947,38.211938],[-120.942634,38.210526],[-120.942477,38.210370],[-120.941222,38.211311],[-120.940595,38.212252],[-120.940281,38.212408],[-120.939810,38.212408],[-120.938713,38.212095],[-120.937615,38.212565],[-120.937144,38.211938],[-120.936987,38.210840],[-120.937301,38.210213],[-120.937301,38.209272],[-120.937144,38.208958],[-120.936674,38.208644],[-120.935262,38.208331],[-120.935576,38.208017],[-120.936360,38.207546],[-120.936517,38.207076],[-120.936830,38.206292],[-120.936830,38.205821],[-120.936517,38.205508],[-120.935889,38.206449],[-120.935262,38.206919],[-120.934164,38.207233],[-120.933223,38.208487],[-120.934948,38.213663],[-120.936360,38.214604],[-120.934635,38.213820],[-120.931812,38.214447],[-120.929929,38.214447],[-120.928047,38.213506],[-120.925852,38.210370],[-120.925067,38.209742],[-120.923342,38.204410],[-120.921931,38.201430],[-120.920362,38.200645],[-120.918794,38.200645],[-120.917539,38.200175],[-120.916598,38.200332],[-120.914873,38.199861],[-120.914089,38.200018],[-120.914089,38.199704],[-120.914402,38.199234],[-120.914402,38.199077],[-120.912520,38.198293],[-120.912050,38.198293],[-120.911736,38.198136],[-120.910795,38.198136],[-120.909227,38.196411],[-120.907658,38.196411],[-120.906717,38.197038],[-120.905776,38.197509],[-120.906247,38.195313],[-120.906717,38.194842],[-120.907501,38.194529],[-120.908442,38.194529],[-120.912991,38.195783],[-120.915343,38.195940],[-120.916441,38.195783],[-120.919578,38.194529],[-120.920990,38.194215],[-120.926950,38.194842],[-120.930557,38.195470]]]}}
,{"id":94582,"type":"Feature","properties":{"name":"San Ramon"},"geometry":{"type":"Polygon","coordinates":[[[-121.925552,37.792233],[-121.923357,37.792233],[-121.923200,37.789096],[-121.915828,37.788939],[-121.915201,37.789253],[-121.913319,37.789253],[-121.913005,37.789410],[-121.912692,37.788939],[-121.900772,37.788783],[-121.900615,37.781882],[-121.898733,37.781725],[-121.898890,37.781411],[-121.898419,37.781411],[-121.898105,37.781568],[-121.897792,37.782195],[-121.896694,37.782979],[-121.896223,37.783136],[-121.895753,37.783450],[-121.894655,37.785175],[-121.894341,37.785959],[-121.894341,37.786273],[-121.894184,37.786587],[-121.894184,37.787214],[-121.893871,37.787841],[-121.893243,37.788312],[-121.892616,37.788312],[-121.892302,37.788626],[-121.891675,37.788626],[-121.891518,37.781725],[-121.883362,37.781882],[-121.885088,37.779215],[-121.884147,37.778745],[-121.884303,37.775451],[-121.884931,37.774981],[-121.885558,37.772942],[-121.884303,37.771844],[-121.884303,37.769805],[-121.884931,37.769491],[-121.885715,37.767923],[-121.885872,37.764472],[-121.885872,37.763845],[-121.885244,37.763061],[-121.884774,37.762590],[-121.881323,37.760865],[-121.880539,37.759924],[-121.880853,37.757728],[-121.882264,37.754121],[-121.884617,37.750670],[-121.884617,37.749102],[-121.883206,37.743769],[-121.884147,37.742985],[-121.883049,37.742985],[-121.881637,37.743612],[-121.880539,37.745024],[-121.878187,37.746436],[-121.877559,37.747220],[-121.876461,37.748788],[-121.875834,37.749416],[-121.874893,37.749572],[-121.871599,37.749416],[-121.871756,37.746279],[-121.871756,37.744710],[-121.871599,37.742828],[-121.870658,37.741103],[-121.870658,37.740162],[-121.874266,37.739064],[-121.904536,37.732006],[-121.910182,37.730438],[-121.917397,37.729026],[-121.920063,37.735770],[-121.921161,37.736241],[-121.921945,37.737339],[-121.922572,37.737809],[-121.923514,37.738123],[-121.924768,37.737966],[-121.929160,37.744710],[-121.929317,37.744710],[-121.929944,37.745181],[-121.931042,37.744867],[-121.932767,37.747690],[-121.933865,37.748631],[-121.935120,37.750357],[-121.939511,37.754591],[-121.940452,37.756003],[-121.940766,37.757571],[-121.941080,37.758199],[-121.941864,37.758826],[-121.943903,37.759610],[-121.946099,37.761806],[-121.950490,37.764472],[-121.954254,37.767923],[-121.955666,37.769334],[-121.958332,37.772942],[-121.956450,37.773726],[-121.956293,37.774040],[-121.956607,37.774981],[-121.958646,37.777176],[-121.957391,37.777804],[-121.960528,37.779999],[-121.963037,37.779058],[-121.963665,37.779686],[-121.964135,37.780940],[-121.964449,37.781411],[-121.961469,37.782823],[-121.958489,37.783607],[-121.955038,37.785803],[-121.950804,37.786900],[-121.950961,37.795840],[-121.948765,37.795840],[-121.941550,37.791606],[-121.941236,37.788783],[-121.938257,37.788469],[-121.933081,37.788626],[-121.933081,37.792390],[-121.925552,37.792233]]]}}
,{"id":94521,"type":"Feature","properties":{"name":"Concord"},"geometry":{"type":"Polygon","coordinates":[[[-121.931983,37.983265],[-121.931983,37.979971],[-121.913476,37.980285],[-121.913476,37.974795],[-121.914730,37.974638],[-121.916142,37.974011],[-121.919906,37.971502],[-121.924298,37.969149],[-121.926337,37.967737],[-121.927121,37.967110],[-121.927591,37.966326],[-121.927905,37.964130],[-121.928219,37.963503],[-121.929787,37.962091],[-121.929630,37.962091],[-121.929317,37.961934],[-121.928532,37.962248],[-121.927748,37.962248],[-121.926023,37.960680],[-121.925396,37.960366],[-121.924768,37.960366],[-121.923670,37.960680],[-121.923043,37.960523],[-121.921475,37.960366],[-121.918651,37.961150],[-121.918024,37.961621],[-121.917083,37.962091],[-121.914887,37.962405],[-121.914417,37.962719],[-121.914103,37.963346],[-121.913789,37.965228],[-121.913005,37.967581],[-121.912692,37.968051],[-121.911594,37.969306],[-121.910496,37.969776],[-121.910653,37.974952],[-121.908771,37.975579],[-121.905791,37.977305],[-121.902026,37.978559],[-121.900929,37.979187],[-121.900144,37.979971],[-121.899517,37.980755],[-121.898890,37.982951],[-121.898419,37.982794],[-121.896380,37.976521],[-121.894969,37.973070],[-121.894341,37.972129],[-121.893557,37.971345],[-121.892616,37.970717],[-121.890107,37.969149],[-121.888695,37.968051],[-121.887597,37.967581],[-121.886499,37.966483],[-121.885401,37.966169],[-121.884147,37.964914],[-121.883362,37.962405],[-121.883990,37.962719],[-121.884931,37.963660],[-121.885558,37.963973],[-121.885715,37.963816],[-121.885872,37.963503],[-121.886499,37.963816],[-121.886970,37.963503],[-121.887127,37.963189],[-121.886813,37.962562],[-121.887127,37.962405],[-121.887597,37.962248],[-121.888381,37.962562],[-121.889636,37.962719],[-121.890420,37.961934],[-121.890420,37.961621],[-121.889322,37.960366],[-121.889165,37.958954],[-121.888852,37.957700],[-121.888538,37.957229],[-121.889322,37.956759],[-121.889793,37.955974],[-121.890891,37.955347],[-121.894498,37.954563],[-121.895282,37.954249],[-121.896694,37.954249],[-121.896537,37.955504],[-121.897635,37.954249],[-121.913633,37.953935],[-121.913633,37.955033],[-121.914574,37.955033],[-121.914574,37.955190],[-121.933081,37.955818],[-121.933551,37.955347],[-121.938727,37.955504],[-121.939668,37.955033],[-121.941707,37.954406],[-121.943746,37.954720],[-121.944687,37.954563],[-121.946255,37.952053],[-121.946412,37.951112],[-121.947196,37.951112],[-121.950961,37.951897],[-121.951431,37.952838],[-121.951902,37.953308],[-121.952372,37.953465],[-121.951431,37.954406],[-121.951431,37.954877],[-121.952215,37.955504],[-121.952529,37.955661],[-121.957077,37.952367],[-121.957391,37.952053],[-121.956293,37.951583],[-121.950961,37.948760],[-121.951117,37.948446],[-121.950804,37.948446],[-121.951274,37.945780],[-121.950961,37.941859],[-121.950490,37.941702],[-121.950961,37.941545],[-121.950961,37.941231],[-121.943746,37.941231],[-121.943746,37.938879],[-121.943903,37.937467],[-121.946099,37.937310],[-121.945785,37.936526],[-121.946099,37.936056],[-121.945471,37.935115],[-121.945628,37.933546],[-121.950961,37.933546],[-121.951117,37.931350],[-121.952372,37.930409],[-121.952215,37.929939],[-121.951274,37.929625],[-121.951117,37.928370],[-121.951274,37.928214],[-121.951745,37.928214],[-121.952058,37.928841],[-121.952686,37.928841],[-121.953470,37.928998],[-121.953784,37.928841],[-121.953784,37.928527],[-121.954097,37.928214],[-121.954882,37.927900],[-121.955666,37.927743],[-121.956136,37.927429],[-121.957234,37.927429],[-121.958175,37.927586],[-121.959587,37.927429],[-121.957705,37.928370],[-121.958018,37.929312],[-121.957705,37.929782],[-121.957077,37.930409],[-121.957234,37.930566],[-121.957548,37.930723],[-121.958175,37.930566],[-121.959901,37.929625],[-121.962096,37.928214],[-121.967899,37.925861],[-121.977153,37.914725],[-121.979976,37.918646],[-121.984211,37.923979],[-121.986720,37.933389],[-121.987348,37.934958],[-121.990014,37.939192],[-121.996915,37.942486],[-121.995974,37.944525],[-121.995346,37.945309],[-121.994092,37.946407],[-121.992210,37.947191],[-121.992994,37.947976],[-121.996131,37.949701],[-121.999424,37.953622],[-122.002091,37.955818],[-122.005071,37.959111],[-122.007109,37.960523],[-122.008051,37.961621],[-122.008207,37.962248],[-122.008051,37.962562],[-122.008207,37.963503],[-122.006325,37.963660],[-122.006796,37.965385],[-122.007266,37.965385],[-122.007580,37.966012],[-122.008678,37.965855],[-122.009305,37.969933],[-122.008207,37.969776],[-122.008207,37.971031],[-122.007423,37.971031],[-122.007423,37.970404],[-122.005855,37.969933],[-122.005855,37.968992],[-122.005541,37.968992],[-122.005384,37.969776],[-122.006482,37.971815],[-122.000522,37.971815],[-121.999895,37.971031],[-121.999738,37.970090],[-121.996131,37.973227],[-121.997229,37.973854],[-121.997072,37.974011],[-121.998954,37.975423],[-121.998170,37.975893],[-121.998483,37.976207],[-121.997856,37.977932],[-121.994249,37.977932],[-121.993151,37.977775],[-121.983583,37.974952],[-121.982642,37.975736],[-121.984524,37.977148],[-121.983740,37.977775],[-121.981858,37.976364],[-121.981544,37.976677],[-121.977937,37.973697],[-121.975585,37.975266],[-121.970095,37.971815],[-121.968370,37.973227],[-121.963822,37.972756],[-121.961939,37.971188],[-121.961155,37.970247],[-121.958489,37.968365],[-121.959116,37.967894],[-121.958332,37.967267],[-121.957705,37.967737],[-121.952372,37.963660],[-121.950961,37.963816],[-121.948608,37.963032],[-121.945314,37.963503],[-121.940452,37.967737],[-121.939198,37.971658],[-121.939198,37.979814],[-121.942178,37.981696],[-121.941550,37.983421],[-121.931983,37.983265]]]}}
,{"id":94528,"type":"Feature","properties":{"name":"Diablo"},"geometry":{"type":"Polygon","coordinates":[[[-121.972291,37.861086],[-121.971664,37.861400],[-121.971193,37.862498],[-121.970409,37.862654],[-121.970252,37.863125],[-121.969468,37.862654],[-121.968997,37.861556],[-121.968056,37.861243],[-121.967743,37.860459],[-121.966645,37.859831],[-121.966017,37.860615],[-121.964919,37.860302],[-121.963978,37.860615],[-121.963351,37.860459],[-121.962880,37.859988],[-121.961469,37.859361],[-121.960371,37.859361],[-121.959744,37.859204],[-121.959587,37.859047],[-121.959116,37.858890],[-121.958489,37.858263],[-121.957862,37.858263],[-121.957234,37.857949],[-121.956450,37.857949],[-121.956136,37.857165],[-121.955979,37.855440],[-121.955509,37.855283],[-121.955195,37.855126],[-121.954725,37.855753],[-121.954411,37.855753],[-121.953470,37.855440],[-121.952686,37.855283],[-121.950647,37.854185],[-121.950490,37.854499],[-121.950333,37.854812],[-121.949863,37.855126],[-121.949549,37.854969],[-121.947981,37.854812],[-121.946883,37.855283],[-121.945314,37.855283],[-121.944530,37.854969],[-121.942962,37.854655],[-121.941864,37.854812],[-121.940766,37.855126],[-121.940452,37.854499],[-121.940452,37.854185],[-121.940295,37.854028],[-121.939668,37.854342],[-121.939041,37.854185],[-121.938727,37.854028],[-121.938100,37.854028],[-121.937629,37.854028],[-121.937002,37.854342],[-121.936374,37.854028],[-121.935590,37.854028],[-121.935433,37.853558],[-121.935120,37.853558],[-121.934336,37.853714],[-121.934179,37.853401],[-121.934336,37.852930],[-121.933551,37.852303],[-121.933865,37.850421],[-121.927748,37.846970],[-121.927748,37.846029],[-121.923827,37.844775],[-121.921004,37.843049],[-121.921318,37.842736],[-121.922416,37.842579],[-121.921945,37.841481],[-121.922416,37.841010],[-121.922886,37.840854],[-121.923514,37.840854],[-121.925239,37.841167],[-121.926180,37.842108],[-121.926337,37.842579],[-121.926964,37.842892],[-121.927278,37.842579],[-121.928062,37.842422],[-121.928376,37.842108],[-121.929160,37.841795],[-121.929944,37.842265],[-121.931356,37.842265],[-121.931669,37.842108],[-121.931983,37.841481],[-121.932297,37.841481],[-121.932453,37.841638],[-121.932610,37.842265],[-121.933238,37.842736],[-121.933394,37.843363],[-121.933394,37.843677],[-121.933708,37.843990],[-121.934022,37.843990],[-121.934492,37.843520],[-121.935904,37.843677],[-121.937159,37.844304],[-121.937315,37.844304],[-121.937315,37.843834],[-121.937159,37.843206],[-121.937159,37.842736],[-121.937472,37.841795],[-121.938100,37.841167],[-121.938727,37.841010],[-121.940295,37.841481],[-121.940766,37.841951],[-121.940766,37.842265],[-121.940295,37.842892],[-121.940295,37.843206],[-121.940766,37.842892],[-121.941080,37.842892],[-121.941550,37.843049],[-121.941550,37.843363],[-121.941707,37.843363],[-121.943432,37.842108],[-121.943746,37.841951],[-121.945001,37.842579],[-121.946099,37.843363],[-121.947353,37.842422],[-121.947981,37.842265],[-121.948137,37.842265],[-121.948294,37.842736],[-121.947824,37.843049],[-121.947824,37.843206],[-121.949079,37.843834],[-121.950020,37.844147],[-121.950176,37.843677],[-121.950176,37.842579],[-121.950020,37.842422],[-121.949706,37.842579],[-121.949549,37.842579],[-121.949706,37.841481],[-121.949549,37.841167],[-121.949079,37.840854],[-121.947667,37.841010],[-121.947510,37.840383],[-121.948294,37.838344],[-121.949549,37.837403],[-121.950647,37.835678],[-121.951588,37.835207],[-121.952058,37.832384],[-121.951902,37.831914],[-121.956450,37.831914],[-121.958646,37.833012],[-121.959430,37.833325],[-121.960842,37.833482],[-121.961783,37.833168],[-121.962253,37.833012],[-121.963822,37.833796],[-121.965233,37.833639],[-121.966017,37.833953],[-121.967272,37.835364],[-121.968370,37.835835],[-121.969154,37.835835],[-121.968840,37.837246],[-121.969625,37.837246],[-121.969625,37.837403],[-121.969468,37.837560],[-121.969625,37.837717],[-121.969311,37.837874],[-121.969781,37.838187],[-121.970252,37.838187],[-121.970566,37.838344],[-121.972291,37.838187],[-121.972291,37.838344],[-121.976055,37.838030],[-121.975585,37.838971],[-121.972605,37.839756],[-121.967115,37.842108],[-121.965233,37.843363],[-121.965390,37.843363],[-121.965233,37.843520],[-121.964763,37.843363],[-121.964606,37.844147],[-121.963665,37.844304],[-121.960842,37.845245],[-121.960842,37.845559],[-121.960528,37.845559],[-121.960528,37.857008],[-121.964919,37.858577],[-121.966645,37.858106],[-121.966801,37.858733],[-121.969154,37.859047],[-121.969311,37.859988],[-121.971193,37.859988],[-121.972291,37.861086]]]}}
,{"id":94575,"type":"Feature","properties":{"name":"Moraga"},"geometry":{"type":"Polygon","coordinates":[[[-122.108742,37.847284],[-122.108742,37.846657],[-122.108428,37.845245],[-122.107801,37.845559],[-122.106860,37.843363],[-122.106546,37.843049],[-122.105919,37.842892],[-122.109526,37.837874],[-122.113918,37.837874],[-122.114545,37.842736],[-122.110467,37.845088],[-122.110154,37.845402],[-122.109369,37.847127],[-122.109056,37.847284],[-122.108742,37.847284]]]}}
,{"id":94947,"type":"Feature","properties":{"name":"Novato"},"geometry":{"type":"Polygon","coordinates":[[[-122.698305,38.140105],[-122.696580,38.142458],[-122.694698,38.144183],[-122.692188,38.145751],[-122.687170,38.147163],[-122.685444,38.147947],[-122.684033,38.148888],[-122.683249,38.149202],[-122.680739,38.149202],[-122.666937,38.148574],[-122.664741,38.148104],[-122.664271,38.147633],[-122.663957,38.147006],[-122.663487,38.146536],[-122.661918,38.145751],[-122.661134,38.145438],[-122.660036,38.145594],[-122.655017,38.147633],[-122.652821,38.147947],[-122.649371,38.147633],[-122.646862,38.147006],[-122.643882,38.146536],[-122.641529,38.146379],[-122.639490,38.146536],[-122.637294,38.147163],[-122.633216,38.149515],[-122.632119,38.150143],[-122.630236,38.150613],[-122.629295,38.150770],[-122.627570,38.150457],[-122.625845,38.149515],[-122.621453,38.151868],[-122.617062,38.150457],[-122.611259,38.148574],[-122.608749,38.147790],[-122.608906,38.138850],[-122.611102,38.133204],[-122.611886,38.131793],[-122.613768,38.129597],[-122.614709,38.125989],[-122.616121,38.125676],[-122.616748,38.125205],[-122.618473,38.120657],[-122.617219,38.120500],[-122.617062,38.120971],[-122.614239,38.120186],[-122.615493,38.120029],[-122.611259,38.118618],[-122.605926,38.116422],[-122.605142,38.115638],[-122.604044,38.114697],[-122.601848,38.115167],[-122.600594,38.116265],[-122.599496,38.116736],[-122.598398,38.116265],[-122.597457,38.116108],[-122.596359,38.116265],[-122.595104,38.115795],[-122.594634,38.115952],[-122.594163,38.116108],[-122.593536,38.116108],[-122.591183,38.115167],[-122.589772,38.114854],[-122.590242,38.113756],[-122.591654,38.111874],[-122.589615,38.110933],[-122.589144,38.111560],[-122.583027,38.108737],[-122.582557,38.109364],[-122.582086,38.109364],[-122.581930,38.108894],[-122.581302,38.108110],[-122.580361,38.107953],[-122.579420,38.107482],[-122.578322,38.106541],[-122.577224,38.106541],[-122.576597,38.107012],[-122.576283,38.107012],[-122.575499,38.106384],[-122.574872,38.105443],[-122.574088,38.104973],[-122.573460,38.104502],[-122.572990,38.104345],[-122.572519,38.103718],[-122.571735,38.104345],[-122.571264,38.105286],[-122.570794,38.104973],[-122.570637,38.103875],[-122.570167,38.102934],[-122.569382,38.101836],[-122.570480,38.101365],[-122.569539,38.100738],[-122.566873,38.098072],[-122.565775,38.097444],[-122.565775,38.096817],[-122.565461,38.096347],[-122.565618,38.096190],[-122.565148,38.095876],[-122.564207,38.095562],[-122.563266,38.096033],[-122.562481,38.095406],[-122.561854,38.094151],[-122.562325,38.091641],[-122.562325,38.091014],[-122.562011,38.090543],[-122.561854,38.090387],[-122.559031,38.092269],[-122.546170,38.080035],[-122.543661,38.077683],[-122.543817,38.077526],[-122.543033,38.076742],[-122.542092,38.075644],[-122.539896,38.071409],[-122.552444,38.071409],[-122.552444,38.073918],[-122.558560,38.076742],[-122.563736,38.075173],[-122.566246,38.077055],[-122.569069,38.077055],[-122.568284,38.075957],[-122.568128,38.075487],[-122.568284,38.074859],[-122.569853,38.075173],[-122.571421,38.075800],[-122.572362,38.076114],[-122.574401,38.076114],[-122.575813,38.076428],[-122.576127,38.075800],[-122.576597,38.075800],[-122.580204,38.076114],[-122.581145,38.076585],[-122.582557,38.077055],[-122.583341,38.077683],[-122.584125,38.078153],[-122.585223,38.078310],[-122.585851,38.078624],[-122.586635,38.085525],[-122.586948,38.085368],[-122.588987,38.085838],[-122.590242,38.085525],[-122.591026,38.084897],[-122.592438,38.084427],[-122.592752,38.083956],[-122.593379,38.083643],[-122.593536,38.082545],[-122.593222,38.081290],[-122.594006,38.080349],[-122.596045,38.079878],[-122.597457,38.079251],[-122.599966,38.076428],[-122.603730,38.076114],[-122.607338,38.077839],[-122.615337,38.083015],[-122.620512,38.084897],[-122.627884,38.088348],[-122.630550,38.089759],[-122.633687,38.089759],[-122.635569,38.090857],[-122.639490,38.091798],[-122.646077,38.088191],[-122.649371,38.088818],[-122.652978,38.089602],[-122.654390,38.090387],[-122.656272,38.091485],[-122.661761,38.092739],[-122.663643,38.093680],[-122.665055,38.094778],[-122.665369,38.095719],[-122.665526,38.096817],[-122.665526,38.104032],[-122.666467,38.107796],[-122.666937,38.111560],[-122.667408,38.112815],[-122.673368,38.115324],[-122.676034,38.115952],[-122.679798,38.115795],[-122.683719,38.114854],[-122.687170,38.114383],[-122.691404,38.114226],[-122.696266,38.116422],[-122.698619,38.120971],[-122.698776,38.122225],[-122.699246,38.124892],[-122.699874,38.132577],[-122.700187,38.134145],[-122.699560,38.135400],[-122.699874,38.136498],[-122.699560,38.137596],[-122.698305,38.140105]]]}}
,{"id":94952,"type":"Feature","properties":{"name":"Petaluma"},"geometry":{"type":"Polygon","coordinates":[[[-122.900472,38.273419],[-122.902041,38.272165],[-122.902825,38.272322],[-122.903296,38.272165],[-122.904080,38.272322],[-122.904550,38.272165],[-122.904864,38.271851],[-122.904864,38.271380],[-122.906432,38.270126],[-122.907687,38.270126],[-122.909099,38.270439],[-122.910510,38.269812],[-122.911765,38.269969],[-122.912079,38.269655],[-122.912549,38.269342],[-122.914431,38.269185],[-122.915686,38.268871],[-122.916784,38.269185],[-122.917411,38.269655],[-122.917882,38.270753],[-122.917882,38.272165],[-122.917568,38.272322],[-122.916470,38.273106],[-122.914274,38.273263],[-122.913177,38.273419],[-122.917254,38.273106],[-122.919764,38.273106],[-122.922587,38.272949],[-122.924783,38.273106],[-122.927292,38.272478],[-122.927449,38.272008],[-122.926979,38.270439],[-122.927449,38.264950],[-122.927292,38.263538],[-122.926822,38.261343],[-122.927449,38.257422],[-122.926822,38.255696],[-122.923999,38.251462],[-122.923685,38.250050],[-122.923842,38.248011],[-122.925096,38.248011],[-122.928076,38.246757],[-122.931056,38.245816],[-122.933880,38.243933],[-122.937801,38.241738],[-122.939526,38.241738],[-122.941565,38.242836],[-122.942035,38.244090],[-122.942663,38.244874],[-122.942663,38.248795],[-122.943604,38.253187],[-122.943604,38.254599],[-122.942506,38.256324],[-122.942349,38.256951],[-122.942663,38.258833],[-122.942506,38.259617],[-122.942819,38.263382],[-122.945172,38.265421],[-122.945799,38.265577],[-122.947211,38.266675],[-122.948466,38.269185],[-122.948622,38.273106],[-122.948466,38.274360],[-122.948466,38.275458],[-122.948309,38.277340],[-122.947525,38.280007],[-122.947368,38.280320],[-122.946897,38.279379],[-122.946427,38.279066],[-122.943604,38.278281],[-122.941722,38.277340],[-122.940780,38.276556],[-122.938271,38.275615],[-122.933880,38.274831],[-122.930586,38.274047],[-122.928076,38.273576],[-122.926979,38.273890],[-122.926665,38.278595],[-122.926822,38.281105],[-122.926351,38.282359],[-122.926665,38.283928],[-122.926665,38.289103],[-122.926508,38.290044],[-122.925881,38.292554],[-122.926194,38.293024],[-122.927135,38.293495],[-122.926979,38.294750],[-122.925724,38.295848],[-122.926979,38.298357],[-122.926979,38.298671],[-122.923999,38.302121],[-122.921175,38.306670],[-122.921019,38.307924],[-122.919293,38.308865],[-122.917882,38.309963],[-122.915843,38.312316],[-122.915372,38.312943],[-122.915372,38.313727],[-122.916470,38.315296],[-122.919137,38.316237],[-122.919450,38.316707],[-122.918352,38.317021],[-122.916157,38.316394],[-122.910197,38.315453],[-122.910824,38.316864],[-122.910824,38.317178],[-122.910197,38.317962],[-122.909099,38.318276],[-122.908001,38.318276],[-122.907530,38.318433],[-122.907217,38.318746],[-122.906589,38.319844],[-122.906903,38.320158],[-122.907687,38.320628],[-122.910981,38.321256],[-122.911608,38.321099],[-122.912549,38.320315],[-122.915686,38.320315],[-122.916470,38.320001],[-122.918195,38.317805],[-122.919764,38.317178],[-122.920234,38.318119],[-122.921646,38.317335],[-122.922273,38.317335],[-122.925567,38.318276],[-122.926351,38.318746],[-122.927763,38.320315],[-122.927920,38.320942],[-122.927763,38.323452],[-122.927920,38.323765],[-122.927292,38.326745],[-122.926194,38.329411],[-122.924312,38.332862],[-122.922587,38.334901],[-122.919137,38.338038],[-122.918039,38.339763],[-122.916627,38.341018],[-122.916313,38.342116],[-122.916313,38.344468],[-122.916000,38.346350],[-122.916313,38.349487],[-122.914118,38.350114],[-122.912392,38.350114],[-122.910981,38.349644],[-122.909412,38.349330],[-122.908471,38.349644],[-122.908158,38.350114],[-122.907687,38.349958],[-122.906903,38.350271],[-122.906589,38.350271],[-122.905491,38.350585],[-122.904707,38.350585],[-122.904394,38.350742],[-122.904237,38.351212],[-122.903923,38.351055],[-122.903452,38.351683],[-122.900002,38.352938],[-122.899688,38.352781],[-122.899531,38.352624],[-122.898590,38.352938],[-122.898120,38.352938],[-122.897493,38.353251],[-122.896865,38.353408],[-122.895924,38.354192],[-122.894983,38.354349],[-122.894199,38.354820],[-122.893415,38.354820],[-122.892317,38.355290],[-122.891376,38.355290],[-122.889807,38.355917],[-122.888239,38.356074],[-122.888239,38.344468],[-122.868791,38.344468],[-122.864399,38.343998],[-122.860792,38.343057],[-122.845578,38.339763],[-122.845422,38.340077],[-122.846049,38.340547],[-122.848245,38.341802],[-122.848245,38.344311],[-122.844637,38.344154],[-122.841030,38.338822],[-122.840716,38.338665],[-122.837736,38.338665],[-122.833188,38.337881],[-122.833502,38.337724],[-122.833345,38.337410],[-122.833815,38.336469],[-122.833658,38.336312],[-122.824875,38.335528],[-122.824875,38.328784],[-122.814994,38.328784],[-122.814994,38.327529],[-122.810917,38.327529],[-122.810917,38.332235],[-122.809662,38.332078],[-122.806996,38.331294],[-122.806996,38.329255],[-122.798840,38.329411],[-122.788332,38.329098],[-122.785195,38.328941],[-122.784254,38.331137],[-122.774686,38.330823],[-122.774530,38.326745],[-122.774373,38.326431],[-122.770295,38.326431],[-122.770295,38.329725],[-122.768727,38.329725],[-122.768413,38.329568],[-122.768413,38.326118],[-122.765119,38.326118],[-122.764806,38.325961],[-122.763551,38.328627],[-122.760728,38.328627],[-122.760257,38.329411],[-122.760414,38.330039],[-122.760100,38.330039],[-122.760414,38.332235],[-122.760100,38.331607],[-122.759630,38.332705],[-122.758689,38.333489],[-122.758218,38.333803],[-122.757591,38.333960],[-122.756650,38.334117],[-122.756022,38.334430],[-122.755395,38.334430],[-122.754454,38.334744],[-122.752415,38.335058],[-122.749906,38.333019],[-122.740025,38.325490],[-122.739084,38.325177],[-122.736417,38.326588],[-122.735633,38.324863],[-122.735320,38.323922],[-122.735006,38.320472],[-122.735163,38.317962],[-122.732653,38.316707],[-122.732183,38.316551],[-122.731085,38.316707],[-122.729046,38.317178],[-122.727948,38.317021],[-122.728732,38.316080],[-122.728732,38.315609],[-122.728262,38.315453],[-122.727634,38.314668],[-122.726693,38.314198],[-122.725752,38.314825],[-122.724654,38.316237],[-122.721047,38.314198],[-122.722615,38.312943],[-122.724654,38.312473],[-122.724027,38.311532],[-122.725439,38.311375],[-122.726693,38.310904],[-122.729360,38.307924],[-122.715558,38.301023],[-122.712421,38.298984],[-122.712578,38.299141],[-122.712421,38.299298],[-122.708343,38.303690],[-122.701913,38.295848],[-122.700501,38.294593],[-122.691247,38.288319],[-122.678857,38.278752],[-122.671485,38.273106],[-122.670074,38.272165],[-122.669760,38.271694],[-122.666937,38.269498],[-122.663173,38.266205],[-122.661918,38.265264],[-122.643882,38.255069],[-122.626629,38.246129],[-122.625061,38.245188],[-122.623649,38.243777],[-122.622708,38.242365],[-122.615493,38.228563],[-122.615180,38.228406],[-122.614552,38.228563],[-122.612984,38.227936],[-122.610004,38.226210],[-122.607181,38.225113],[-122.606240,38.224485],[-122.605926,38.224015],[-122.605142,38.222446],[-122.603887,38.221348],[-122.603260,38.221035],[-122.600280,38.220878],[-122.599025,38.220564],[-122.596359,38.221035],[-122.594634,38.220721],[-122.593693,38.219780],[-122.592438,38.218212],[-122.588046,38.213663],[-122.584439,38.209585],[-122.578636,38.207233],[-122.571108,38.204566],[-122.569382,38.204096],[-122.567343,38.202528],[-122.564207,38.198763],[-122.561697,38.197665],[-122.561070,38.197509],[-122.558247,38.197509],[-122.554012,38.199704],[-122.551346,38.200018],[-122.549777,38.199548],[-122.548836,38.198607],[-122.547582,38.196881],[-122.546327,38.192647],[-122.545543,38.189667],[-122.545229,38.187000],[-122.544915,38.184961],[-122.543661,38.183079],[-122.540524,38.179158],[-122.536760,38.175865],[-122.532995,38.173042],[-122.531741,38.171316],[-122.532054,38.169121],[-122.533309,38.167866],[-122.534093,38.167082],[-122.541935,38.164729],[-122.543817,38.163474],[-122.544758,38.162376],[-122.544758,38.161906],[-122.544602,38.159867],[-122.545386,38.158769],[-122.546327,38.158299],[-122.547582,38.157514],[-122.548523,38.157201],[-122.549620,38.157358],[-122.555894,38.158926],[-122.557149,38.159553],[-122.557933,38.160181],[-122.558404,38.161122],[-122.558404,38.161906],[-122.557933,38.163474],[-122.557306,38.164415],[-122.556051,38.165513],[-122.553541,38.166611],[-122.552914,38.167082],[-122.551973,38.168179],[-122.551973,38.168964],[-122.552600,38.169591],[-122.553228,38.169905],[-122.554326,38.170062],[-122.555580,38.169905],[-122.557619,38.168964],[-122.559188,38.168650],[-122.560913,38.168807],[-122.563266,38.169277],[-122.564207,38.170689],[-122.564050,38.173512],[-122.564520,38.175080],[-122.564991,38.175394],[-122.567657,38.176335],[-122.568441,38.176963],[-122.568128,38.177747],[-122.566402,38.179158],[-122.566246,38.179472],[-122.565148,38.181825],[-122.565148,38.182295],[-122.565305,38.182766],[-122.565775,38.183079],[-122.567814,38.183864],[-122.568912,38.184491],[-122.569539,38.185275],[-122.569696,38.186059],[-122.570637,38.187157],[-122.571892,38.187157],[-122.572519,38.187000],[-122.572990,38.186687],[-122.573147,38.185902],[-122.572362,38.185275],[-122.570637,38.184334],[-122.570480,38.184177],[-122.570637,38.183550],[-122.573303,38.183236],[-122.574401,38.183550],[-122.578165,38.183550],[-122.578479,38.183707],[-122.579734,38.185432],[-122.578793,38.184020],[-122.575813,38.180099],[-122.573617,38.176492],[-122.572205,38.176178],[-122.570480,38.174767],[-122.570480,38.174296],[-122.570637,38.173669],[-122.571421,38.173512],[-122.571735,38.173042],[-122.569226,38.167709],[-122.568598,38.166768],[-122.567657,38.164572],[-122.567971,38.164415],[-122.568441,38.163788],[-122.568912,38.163474],[-122.572990,38.162220],[-122.573460,38.161906],[-122.576127,38.163788],[-122.578950,38.166141],[-122.585694,38.170532],[-122.589301,38.173042],[-122.591026,38.172257],[-122.591497,38.171473],[-122.591183,38.171316],[-122.591183,38.171159],[-122.591811,38.170532],[-122.593222,38.169591],[-122.593222,38.169121],[-122.593693,38.168650],[-122.594163,38.168650],[-122.594791,38.168650],[-122.594634,38.169121],[-122.594791,38.169277],[-122.595104,38.169434],[-122.596673,38.168336],[-122.596986,38.167709],[-122.598398,38.167866],[-122.599182,38.168336],[-122.602633,38.168650],[-122.603417,38.168650],[-122.603887,38.168179],[-122.604358,38.168023],[-122.606083,38.169121],[-122.607651,38.169277],[-122.607965,38.170062],[-122.610945,38.170532],[-122.612200,38.170218],[-122.612827,38.170532],[-122.614552,38.171159],[-122.615493,38.171316],[-122.616434,38.171003],[-122.617376,38.170062],[-122.618473,38.168964],[-122.618630,38.168964],[-122.619101,38.169121],[-122.619414,38.169277],[-122.621140,38.172257],[-122.622551,38.173198],[-122.622865,38.173355],[-122.623649,38.173355],[-122.626159,38.171787],[-122.626159,38.171630],[-122.625374,38.171159],[-122.625061,38.170532],[-122.624433,38.170218],[-122.624120,38.169905],[-122.623179,38.169748],[-122.623022,38.169591],[-122.624747,38.168807],[-122.624747,38.168650],[-122.624277,38.168179],[-122.624277,38.167866],[-122.625218,38.167395],[-122.625688,38.166925],[-122.625845,38.165513],[-122.625531,38.164258],[-122.624433,38.162533],[-122.624590,38.162220],[-122.624590,38.161592],[-122.623806,38.160651],[-122.623649,38.160024],[-122.623022,38.159396],[-122.622708,38.158769],[-122.622081,38.158299],[-122.621453,38.158299],[-122.620983,38.157985],[-122.620512,38.157514],[-122.620199,38.156416],[-122.619258,38.155789],[-122.619414,38.155632],[-122.619885,38.155162],[-122.619728,38.154378],[-122.619101,38.154064],[-122.618944,38.153593],[-122.619101,38.153280],[-122.619728,38.152809],[-122.618630,38.151868],[-122.618317,38.151241],[-122.617689,38.151241],[-122.617062,38.150457],[-122.621453,38.151868],[-122.625845,38.149515],[-122.627570,38.150457],[-122.629295,38.150770],[-122.630236,38.150613],[-122.632119,38.150143],[-122.633216,38.149515],[-122.637294,38.147163],[-122.639490,38.146536],[-122.641529,38.146379],[-122.643882,38.146536],[-122.646862,38.147006],[-122.649371,38.147633],[-122.652821,38.147947],[-122.655017,38.147633],[-122.660036,38.145594],[-122.661134,38.145438],[-122.661918,38.145751],[-122.663487,38.146536],[-122.663957,38.147006],[-122.664271,38.147633],[-122.664741,38.148104],[-122.666937,38.148574],[-122.680739,38.149202],[-122.683249,38.149202],[-122.684033,38.148888],[-122.685444,38.147947],[-122.687170,38.147163],[-122.692188,38.145751],[-122.694698,38.144183],[-122.696580,38.142458],[-122.698305,38.140105],[-122.702069,38.141987],[-122.705677,38.142615],[-122.707559,38.138380],[-122.708813,38.137125],[-122.709598,38.136027],[-122.710382,38.136341],[-122.711009,38.136655],[-122.711009,38.137125],[-122.710852,38.137439],[-122.711166,38.138223],[-122.710852,38.138693],[-122.711009,38.139007],[-122.712891,38.139478],[-122.713362,38.139791],[-122.715087,38.141203],[-122.715401,38.141673],[-122.715401,38.142615],[-122.716342,38.143399],[-122.718538,38.144340],[-122.719165,38.144967],[-122.719479,38.144967],[-122.720106,38.144497],[-122.720733,38.144183],[-122.721204,38.143712],[-122.722459,38.143242],[-122.722772,38.143242],[-122.723243,38.143712],[-122.724027,38.143242],[-122.724968,38.143242],[-122.725439,38.142771],[-122.726380,38.142144],[-122.726536,38.141673],[-122.727164,38.140576],[-122.727791,38.140419],[-122.728419,38.140576],[-122.728732,38.140262],[-122.729516,38.140105],[-122.730144,38.139635],[-122.730457,38.139007],[-122.733437,38.137282],[-122.735633,38.135400],[-122.736417,38.133518],[-122.736417,38.132734],[-122.736261,38.132106],[-122.740182,38.130695],[-122.740338,38.128813],[-122.759630,38.121127],[-122.766217,38.126303],[-122.772020,38.121127],[-122.773275,38.120971],[-122.774530,38.121284],[-122.776098,38.120500],[-122.776098,38.120814],[-122.775628,38.121598],[-122.775784,38.122068],[-122.776569,38.122382],[-122.776255,38.123009],[-122.776412,38.123794],[-122.777039,38.124107],[-122.778607,38.124264],[-122.779235,38.124735],[-122.779392,38.125048],[-122.779235,38.125676],[-122.779705,38.126460],[-122.780960,38.128028],[-122.781744,38.129910],[-122.782215,38.130381],[-122.782842,38.130695],[-122.783313,38.131008],[-122.784097,38.131165],[-122.784411,38.131479],[-122.785038,38.132106],[-122.785352,38.133047],[-122.786136,38.133047],[-122.787547,38.131636],[-122.787704,38.131636],[-122.787704,38.132263],[-122.788175,38.131949],[-122.788959,38.131949],[-122.790684,38.132890],[-122.791312,38.134302],[-122.790841,38.134929],[-122.790998,38.135086],[-122.791468,38.135086],[-122.791939,38.135400],[-122.793978,38.133204],[-122.796017,38.132890],[-122.796330,38.132420],[-122.807623,38.139791],[-122.807623,38.141203],[-122.821111,38.149986],[-122.816720,38.152495],[-122.816563,38.153436],[-122.815308,38.155162],[-122.814524,38.156730],[-122.813740,38.159083],[-122.812799,38.160651],[-122.812014,38.162847],[-122.810760,38.163474],[-122.810446,38.163788],[-122.809819,38.165356],[-122.808250,38.166454],[-122.809505,38.166611],[-122.811073,38.166297],[-122.812328,38.166141],[-122.812485,38.167082],[-122.813426,38.167238],[-122.813897,38.167709],[-122.814210,38.167866],[-122.814367,38.168650],[-122.814053,38.169121],[-122.813897,38.169591],[-122.814524,38.170532],[-122.815465,38.171003],[-122.815308,38.171630],[-122.814994,38.171944],[-122.815936,38.174610],[-122.817190,38.174610],[-122.818445,38.175708],[-122.819229,38.175865],[-122.819857,38.175865],[-122.820641,38.175237],[-122.822366,38.175237],[-122.823464,38.174767],[-122.823934,38.174610],[-122.825189,38.175080],[-122.825346,38.175237],[-122.825346,38.175865],[-122.824719,38.176335],[-122.825189,38.177119],[-122.825816,38.177433],[-122.825973,38.177276],[-122.826444,38.177276],[-122.826757,38.177904],[-122.827385,38.177904],[-122.829110,38.177433],[-122.830365,38.177904],[-122.830992,38.177904],[-122.831306,38.177590],[-122.831620,38.177590],[-122.832561,38.178217],[-122.834443,38.178531],[-122.834913,38.179001],[-122.835697,38.179472],[-122.836168,38.180256],[-122.836638,38.180570],[-122.836638,38.181511],[-122.836952,38.182138],[-122.837893,38.182766],[-122.838207,38.183393],[-122.839305,38.183393],[-122.839932,38.184020],[-122.840246,38.185275],[-122.840246,38.186373],[-122.839618,38.187785],[-122.839775,38.188882],[-122.839618,38.189353],[-122.841971,38.191392],[-122.843853,38.191235],[-122.845265,38.191235],[-122.846990,38.191706],[-122.846990,38.191862],[-122.846206,38.192333],[-122.847774,38.192333],[-122.848245,38.192647],[-122.848401,38.193274],[-122.848715,38.193431],[-122.849343,38.193431],[-122.849970,38.193588],[-122.850127,38.193431],[-122.850284,38.192803],[-122.851381,38.191078],[-122.852479,38.190294],[-122.852793,38.189823],[-122.852950,38.189196],[-122.852793,38.188412],[-122.853107,38.187785],[-122.869575,38.196568],[-122.869732,38.196254],[-122.870986,38.195783],[-122.872712,38.194686],[-122.880867,38.200332],[-122.878358,38.201900],[-122.876790,38.202371],[-122.875221,38.202528],[-122.874123,38.203782],[-122.873653,38.204410],[-122.873653,38.205978],[-122.874751,38.207860],[-122.875535,38.208331],[-122.876319,38.207546],[-122.877574,38.207233],[-122.878358,38.207703],[-122.879613,38.208017],[-122.880397,38.208487],[-122.880867,38.208644],[-122.881808,38.208331],[-122.882122,38.208487],[-122.882436,38.209585],[-122.880397,38.210683],[-122.879770,38.211781],[-122.879770,38.212565],[-122.880397,38.213036],[-122.881338,38.213193],[-122.882122,38.213036],[-122.883691,38.213350],[-122.884788,38.212722],[-122.885729,38.212879],[-122.886200,38.212722],[-122.888866,38.213350],[-122.891062,38.212879],[-122.892003,38.213350],[-122.892317,38.213663],[-122.892317,38.213977],[-122.891689,38.214134],[-122.890905,38.214918],[-122.889807,38.215702],[-122.889651,38.216173],[-122.889180,38.216486],[-122.889023,38.217114],[-122.889023,38.217898],[-122.890278,38.218212],[-122.890592,38.218839],[-122.891062,38.220721],[-122.890592,38.221505],[-122.890592,38.222289],[-122.891062,38.223387],[-122.892003,38.224485],[-122.893101,38.224956],[-122.892787,38.225583],[-122.892317,38.225897],[-122.892474,38.226210],[-122.892317,38.226838],[-122.892630,38.227465],[-122.893258,38.227779],[-122.893728,38.227936],[-122.895297,38.227936],[-122.895767,38.227779],[-122.896081,38.226524],[-122.896238,38.226210],[-122.896081,38.225269],[-122.896238,38.224328],[-122.895924,38.223387],[-122.895767,38.222760],[-122.896081,38.222289],[-122.896865,38.221819],[-122.897336,38.221819],[-122.897806,38.222133],[-122.898590,38.222446],[-122.899218,38.222917],[-122.900316,38.223544],[-122.901100,38.224485],[-122.901570,38.224485],[-122.902041,38.224328],[-122.902198,38.224172],[-122.902198,38.223701],[-122.901414,38.222917],[-122.901570,38.222603],[-122.901257,38.222289],[-122.901100,38.221819],[-122.901727,38.220878],[-122.902668,38.220721],[-122.902982,38.220878],[-122.903296,38.221348],[-122.904550,38.222289],[-122.906119,38.222760],[-122.910353,38.224799],[-122.910510,38.225113],[-122.910510,38.225740],[-122.909412,38.226524],[-122.908785,38.227151],[-122.908315,38.227465],[-122.907844,38.228093],[-122.907687,38.228720],[-122.908315,38.229504],[-122.909883,38.230131],[-122.911608,38.232014],[-122.912863,38.232798],[-122.909412,38.234837],[-122.909256,38.236405],[-122.908001,38.237503],[-122.907687,38.237973],[-122.906903,38.238287],[-122.905335,38.239699],[-122.905178,38.240326],[-122.905021,38.240640],[-122.903923,38.240953],[-122.903766,38.241267],[-122.902668,38.242051],[-122.902511,38.242365],[-122.891533,38.242051],[-122.886043,38.243149],[-122.886043,38.241424],[-122.885573,38.238444],[-122.885259,38.237973],[-122.884945,38.236562],[-122.884318,38.235464],[-122.882906,38.234680],[-122.877103,38.234052],[-122.875692,38.233582],[-122.873025,38.233425],[-122.871928,38.232641],[-122.870673,38.231229],[-122.870045,38.231073],[-122.863144,38.230445],[-122.861419,38.230759],[-122.862203,38.230131],[-122.860165,38.228093],[-122.852793,38.238758],[-122.859380,38.255226],[-122.859380,38.258520],[-122.860008,38.258833],[-122.860165,38.259461],[-122.860792,38.260088],[-122.860949,38.260715],[-122.860635,38.261343],[-122.860008,38.261813],[-122.859851,38.262597],[-122.860008,38.263538],[-122.860321,38.264009],[-122.860949,38.264323],[-122.861733,38.264323],[-122.866124,38.263068],[-122.867693,38.263068],[-122.868320,38.263538],[-122.868634,38.264009],[-122.869104,38.264793],[-122.869889,38.266675],[-122.870830,38.267146],[-122.871928,38.267459],[-122.872555,38.267303],[-122.873025,38.266675],[-122.873182,38.265421],[-122.873025,38.265107],[-122.873182,38.264323],[-122.873810,38.264009],[-122.875064,38.264166],[-122.876319,38.265264],[-122.876790,38.266205],[-122.877417,38.266518],[-122.878044,38.266518],[-122.878829,38.266048],[-122.880711,38.266205],[-122.881652,38.266518],[-122.885102,38.266832],[-122.886671,38.266205],[-122.887455,38.265734],[-122.888239,38.265107],[-122.888709,38.264009],[-122.890121,38.263225],[-122.891219,38.262911],[-122.892630,38.262597],[-122.896551,38.262441],[-122.897179,38.262754],[-122.897649,38.262754],[-122.897963,38.263068],[-122.898120,38.263538],[-122.897963,38.264323],[-122.898277,38.265107],[-122.899688,38.266675],[-122.900786,38.267303],[-122.902198,38.270283],[-122.901257,38.272322],[-122.900472,38.273419]]]}}
,{"id":94558,"type":"Feature","properties":{"name":"Napa"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.267935,38.280164],[-122.265426,38.280007],[-122.265582,38.277968],[-122.255074,38.277184],[-122.254447,38.277654],[-122.252094,38.277497],[-122.252251,38.276243],[-122.251467,38.274831],[-122.255231,38.272478],[-122.254917,38.268087],[-122.271542,38.268871],[-122.270915,38.265264],[-122.270758,38.262911],[-122.270758,38.261186],[-122.220883,38.253501],[-122.211159,38.252246],[-122.212414,38.248639],[-122.210218,38.247384],[-122.209590,38.244874],[-122.208336,38.244247],[-122.205356,38.244561],[-122.204415,38.240953],[-122.201748,38.240326],[-122.197200,38.232798],[-122.197200,38.231386],[-122.195945,38.230445],[-122.195945,38.229034],[-122.195004,38.225269],[-122.193593,38.223544],[-122.193436,38.221192],[-122.196102,38.218996],[-122.196259,38.216173],[-122.194691,38.215232],[-122.193906,38.213663],[-122.195004,38.212252],[-122.197514,38.211781],[-122.199553,38.210683],[-122.201435,38.211624],[-122.204101,38.209742],[-122.207708,38.211311],[-122.210218,38.211938],[-122.213041,38.213036],[-122.219942,38.215075],[-122.222295,38.215859],[-122.222295,38.217898],[-122.222608,38.219153],[-122.223236,38.220407],[-122.223706,38.220878],[-122.224647,38.221348],[-122.225588,38.221505],[-122.232646,38.221505],[-122.233430,38.221192],[-122.234058,38.220094],[-122.237038,38.221192],[-122.238292,38.221348],[-122.245193,38.221192],[-122.249898,38.222133],[-122.253192,38.222603],[-122.253819,38.221192],[-122.253506,38.219623],[-122.256015,38.219623],[-122.256172,38.219780],[-122.257427,38.219780],[-122.256486,38.213820],[-122.256956,38.213663],[-122.258054,38.213350],[-122.258525,38.213506],[-122.259152,38.213820],[-122.260093,38.214134],[-122.261505,38.213977],[-122.262446,38.213506],[-122.264641,38.213977],[-122.266524,38.213350],[-122.267621,38.213663],[-122.267935,38.214291],[-122.269033,38.214447],[-122.265896,38.209429],[-122.280325,38.206919],[-122.280796,38.202057],[-122.283776,38.202057],[-122.283776,38.201900],[-122.306832,38.209115],[-122.307145,38.210370],[-122.309968,38.215545],[-122.310753,38.218682],[-122.310439,38.220564],[-122.309811,38.221819],[-122.308400,38.224015],[-122.306832,38.225897],[-122.305106,38.226838],[-122.302283,38.227151],[-122.299146,38.229504],[-122.297264,38.230602],[-122.292089,38.232170],[-122.290520,38.232170],[-122.289265,38.232327],[-122.288167,38.232955],[-122.287540,38.234209],[-122.286756,38.239542],[-122.285815,38.242992],[-122.284560,38.246129],[-122.284717,38.249893],[-122.284717,38.253971],[-122.283933,38.255383],[-122.283619,38.256794],[-122.283933,38.258676],[-122.286129,38.259774],[-122.286599,38.260402],[-122.286756,38.261500],[-122.285972,38.262754],[-122.284717,38.264166],[-122.284560,38.265107],[-122.284717,38.265577],[-122.285188,38.266048],[-122.285972,38.267303],[-122.286129,38.269028],[-122.286913,38.270596],[-122.286913,38.271380],[-122.286442,38.272165],[-122.285658,38.272792],[-122.283462,38.273890],[-122.282992,38.274674],[-122.282208,38.276713],[-122.281894,38.278281],[-122.282208,38.278595],[-122.282992,38.278125],[-122.283149,38.278125],[-122.282208,38.278752],[-122.283305,38.279379],[-122.285188,38.281732],[-122.272954,38.280320],[-122.267935,38.280164]]],[[[-122.292089,38.309022],[-122.296794,38.308238],[-122.296637,38.307611],[-122.297421,38.307454],[-122.297578,38.308081],[-122.304793,38.306826],[-122.301813,38.296475],[-122.301813,38.295534],[-122.302283,38.293181],[-122.302126,38.291927],[-122.300715,38.286123],[-122.300244,38.280948],[-122.298989,38.274988],[-122.298676,38.271694],[-122.298833,38.267930],[-122.299460,38.262754],[-122.300087,38.261343],[-122.302126,38.258833],[-122.302910,38.257579],[-122.305106,38.258206],[-122.309655,38.258833],[-122.310909,38.258990],[-122.312164,38.258833],[-122.313105,38.258990],[-122.313576,38.259461],[-122.315928,38.260088],[-122.316556,38.260558],[-122.317810,38.260872],[-122.318595,38.261656],[-122.318438,38.261970],[-122.318595,38.262597],[-122.319379,38.262911],[-122.319536,38.264166],[-122.319849,38.264793],[-122.319692,38.265264],[-122.319849,38.265891],[-122.319692,38.266362],[-122.319065,38.266989],[-122.319065,38.267146],[-122.318595,38.267146],[-122.318438,38.267303],[-122.319222,38.268087],[-122.319692,38.268714],[-122.319536,38.269342],[-122.319692,38.269498],[-122.319379,38.269655],[-122.319536,38.269969],[-122.320163,38.270283],[-122.320163,38.270439],[-122.320320,38.270596],[-122.320320,38.271067],[-122.319849,38.271067],[-122.319692,38.282673],[-122.316085,38.287535],[-122.322986,38.284712],[-122.323613,38.284241],[-122.325496,38.280948],[-122.325496,38.280477],[-122.324711,38.278438],[-122.326123,38.275145],[-122.330201,38.272008],[-122.331299,38.270126],[-122.334749,38.274047],[-122.335533,38.273890],[-122.337259,38.272792],[-122.337729,38.272635],[-122.338984,38.272635],[-122.341180,38.272008],[-122.341807,38.272165],[-122.343375,38.272949],[-122.344160,38.272949],[-122.345101,38.272792],[-122.347924,38.271694],[-122.347453,38.271224],[-122.348081,38.269655],[-122.337886,38.257579],[-122.341964,38.256010],[-122.342277,38.255696],[-122.342434,38.255383],[-122.351217,38.256481],[-122.356079,38.258363],[-122.357177,38.258363],[-122.362353,38.255853],[-122.363137,38.255853],[-122.364706,38.256167],[-122.366117,38.256167],[-122.370979,38.254442],[-122.373489,38.253501],[-122.378978,38.250678],[-122.379449,38.251148],[-122.380703,38.252873],[-122.381801,38.253187],[-122.382115,38.253971],[-122.383840,38.254285],[-122.384781,38.254755],[-122.385565,38.256637],[-122.388232,38.258363],[-122.388859,38.259931],[-122.389957,38.260715],[-122.389800,38.261343],[-122.389330,38.261813],[-122.389330,38.262597],[-122.389486,38.263382],[-122.389016,38.264323],[-122.389486,38.264950],[-122.389016,38.266518],[-122.389330,38.268244],[-122.388702,38.269028],[-122.387291,38.269969],[-122.387447,38.270126],[-122.388075,38.270596],[-122.388232,38.270910],[-122.388389,38.271537],[-122.388232,38.271851],[-122.387447,38.272322],[-122.387134,38.272792],[-122.387291,38.273263],[-122.388232,38.274204],[-122.389173,38.274360],[-122.390271,38.274204],[-122.391996,38.273419],[-122.393721,38.273263],[-122.393878,38.273106],[-122.393878,38.272478],[-122.394192,38.272165],[-122.395603,38.272165],[-122.397015,38.272165],[-122.398113,38.272792],[-122.398897,38.273576],[-122.399995,38.274204],[-122.400308,38.274517],[-122.400936,38.275772],[-122.401406,38.276399],[-122.401720,38.277654],[-122.403132,38.280164],[-122.404543,38.281418],[-122.404700,38.281889],[-122.404229,38.282516],[-122.403916,38.282830],[-122.403288,38.282987],[-122.402975,38.283144],[-122.402661,38.283928],[-122.402034,38.284398],[-122.401249,38.286908],[-122.401563,38.288319],[-122.400779,38.289574],[-122.401563,38.290672],[-122.401406,38.291613],[-122.402347,38.293966],[-122.401720,38.295220],[-122.401720,38.295691],[-122.402190,38.296318],[-122.402661,38.298043],[-122.403602,38.299141],[-122.403759,38.299612],[-122.403602,38.299925],[-122.402504,38.300866],[-122.402034,38.302121],[-122.401249,38.302749],[-122.399995,38.303376],[-122.397642,38.303533],[-122.394662,38.304631],[-122.394662,38.304787],[-122.395603,38.307140],[-122.395760,38.307924],[-122.396074,38.308238],[-122.396231,38.308865],[-122.396387,38.309179],[-122.397328,38.309806],[-122.398897,38.311845],[-122.400308,38.312473],[-122.401877,38.314198],[-122.402034,38.315766],[-122.402347,38.316080],[-122.402818,38.317492],[-122.403759,38.318433],[-122.403602,38.319217],[-122.403759,38.319687],[-122.405170,38.321256],[-122.405327,38.322040],[-122.407053,38.321569],[-122.407523,38.321099],[-122.407523,38.320472],[-122.408150,38.320158],[-122.408621,38.320158],[-122.409091,38.320628],[-122.409405,38.321099],[-122.409719,38.322354],[-122.409876,38.324079],[-122.409562,38.324863],[-122.409562,38.325804],[-122.409719,38.325961],[-122.411444,38.327059],[-122.412071,38.327843],[-122.412856,38.329882],[-122.413797,38.330666],[-122.413483,38.332078],[-122.412856,38.332705],[-122.412385,38.333332],[-122.411915,38.333960],[-122.412071,38.334273],[-122.413169,38.334744],[-122.414424,38.336312],[-122.414738,38.336469],[-122.416306,38.336940],[-122.417561,38.338038],[-122.417561,38.338351],[-122.417247,38.339292],[-122.417247,38.339763],[-122.418816,38.339606],[-122.419129,38.339449],[-122.419757,38.338508],[-122.420070,38.338351],[-122.421482,38.339449],[-122.421639,38.340077],[-122.421639,38.340390],[-122.421796,38.341018],[-122.422737,38.341488],[-122.422893,38.341802],[-122.422737,38.342429],[-122.423207,38.342586],[-122.425246,38.345409],[-122.426814,38.345880],[-122.427285,38.346037],[-122.427285,38.347605],[-122.426971,38.347762],[-122.426658,38.348232],[-122.426814,38.348703],[-122.427912,38.349330],[-122.429167,38.349487],[-122.429324,38.349958],[-122.429324,38.351055],[-122.430892,38.352153],[-122.431833,38.352467],[-122.433715,38.353879],[-122.436695,38.355133],[-122.437480,38.356702],[-122.437950,38.357172],[-122.438421,38.357172],[-122.439519,38.358113],[-122.440303,38.358427],[-122.442342,38.359054],[-122.443283,38.359054],[-122.444067,38.358741],[-122.447204,38.359054],[-122.448929,38.360623],[-122.451282,38.361407],[-122.452223,38.362034],[-122.453634,38.363603],[-122.454105,38.364387],[-122.454418,38.365642],[-122.455046,38.365955],[-122.455830,38.366269],[-122.456457,38.366739],[-122.457555,38.367210],[-122.457869,38.367994],[-122.457085,38.369249],[-122.457085,38.370504],[-122.456457,38.371288],[-122.455830,38.371602],[-122.453634,38.374111],[-122.452850,38.374738],[-122.452223,38.374895],[-122.450497,38.374738],[-122.450027,38.374895],[-122.447831,38.379287],[-122.453477,38.382424],[-122.454261,38.382737],[-122.453948,38.383835],[-122.460535,38.388070],[-122.465868,38.390422],[-122.470259,38.397480],[-122.468063,38.399990],[-122.470730,38.402813],[-122.470573,38.404852],[-122.475435,38.406577],[-122.475592,38.409086],[-122.495511,38.423516],[-122.497236,38.423829],[-122.497549,38.424300],[-122.497549,38.424457],[-122.493472,38.429162],[-122.494256,38.431044],[-122.491433,38.434338],[-122.487041,38.431671],[-122.486257,38.435592],[-122.485473,38.437474],[-122.484218,38.437945],[-122.483120,38.440454],[-122.479983,38.442964],[-122.479983,38.446414],[-122.464299,38.446414],[-122.465554,38.460216],[-122.442028,38.460060],[-122.442028,38.457864],[-122.439675,38.456923],[-122.436852,38.457707],[-122.435284,38.456452],[-122.434500,38.456766],[-122.433088,38.455197],[-122.433088,38.453315],[-122.433715,38.452845],[-122.434500,38.452374],[-122.437166,38.451904],[-122.437480,38.451747],[-122.438107,38.450335],[-122.439989,38.450806],[-122.435754,38.446885],[-122.433559,38.447355],[-122.432774,38.447199],[-122.431990,38.447669],[-122.431363,38.447669],[-122.427755,38.447042],[-122.426187,38.446258],[-122.425403,38.446101],[-122.424305,38.447042],[-122.416933,38.452531],[-122.420698,38.456452],[-122.412071,38.460687],[-122.411915,38.460530],[-122.411915,38.461471],[-122.411758,38.461471],[-122.411287,38.461471],[-122.410974,38.461785],[-122.411130,38.463196],[-122.410660,38.463824],[-122.410503,38.464137],[-122.410974,38.464608],[-122.412228,38.464608],[-122.410346,38.465863],[-122.399211,38.469784],[-122.398897,38.470097],[-122.400308,38.475430],[-122.402661,38.478567],[-122.404229,38.479821],[-122.403916,38.481233],[-122.404386,38.483115],[-122.404543,38.483586],[-122.405641,38.484683],[-122.405170,38.485311],[-122.405798,38.486252],[-122.405798,38.487193],[-122.405798,38.487350],[-122.404386,38.486879],[-122.403916,38.487507],[-122.402661,38.487820],[-122.400936,38.487663],[-122.398740,38.486879],[-122.397956,38.486722],[-122.397172,38.486722],[-122.393407,38.487663],[-122.391839,38.487507],[-122.388389,38.486252],[-122.386036,38.485781],[-122.384468,38.484840],[-122.381644,38.482801],[-122.376782,38.480606],[-122.375057,38.480135],[-122.372391,38.480135],[-122.372077,38.479821],[-122.372234,38.479194],[-122.372077,38.479037],[-122.371607,38.479037],[-122.370666,38.479821],[-122.370666,38.480606],[-122.370195,38.481076],[-122.368940,38.481076],[-122.366431,38.480606],[-122.364549,38.481703],[-122.363137,38.481390],[-122.361882,38.481860],[-122.360471,38.481703],[-122.358903,38.482174],[-122.358118,38.483115],[-122.357491,38.483272],[-122.356236,38.482801],[-122.355766,38.482958],[-122.355295,38.480135],[-122.355452,38.478880],[-122.354668,38.478410],[-122.354825,38.477469],[-122.353570,38.476998],[-122.353884,38.475900],[-122.351531,38.473705],[-122.347767,38.469470],[-122.346669,38.469313],[-122.345885,38.467588],[-122.339297,38.468999],[-122.337729,38.466647],[-122.337729,38.464294],[-122.295225,38.464294],[-122.295068,38.465549],[-122.294912,38.475273],[-122.279071,38.475430],[-122.244409,38.474332],[-122.244723,38.486095],[-122.245193,38.486879],[-122.247075,38.491741],[-122.247232,38.492525],[-122.246762,38.493310],[-122.246762,38.494094],[-122.247075,38.494408],[-122.247546,38.494721],[-122.249428,38.495505],[-122.251153,38.496603],[-122.250212,38.496446],[-122.249428,38.495819],[-122.248487,38.495505],[-122.247232,38.495662],[-122.245664,38.494878],[-122.245193,38.494721],[-122.244723,38.494878],[-122.244880,38.495349],[-122.244723,38.495349],[-122.244409,38.499897],[-122.244095,38.507112],[-122.252251,38.507268],[-122.252094,38.535343],[-122.264641,38.535186],[-122.264485,38.539734],[-122.264798,38.547106],[-122.271386,38.549929],[-122.272797,38.550086],[-122.273581,38.552125],[-122.273111,38.553850],[-122.273111,38.554477],[-122.273424,38.554948],[-122.273424,38.555418],[-122.273895,38.556516],[-122.274052,38.557614],[-122.274522,38.558398],[-122.274209,38.559339],[-122.274209,38.560437],[-122.276091,38.560124],[-122.275463,38.566084],[-122.275934,38.566554],[-122.275777,38.567025],[-122.308400,38.570005],[-122.312635,38.602784],[-122.314517,38.610783],[-122.314674,38.611881],[-122.311850,38.611411],[-122.311694,38.611097],[-122.310909,38.610783],[-122.310125,38.610783],[-122.310125,38.611567],[-122.309811,38.612195],[-122.309968,38.612508],[-122.309184,38.613136],[-122.309027,38.613763],[-122.309184,38.614077],[-122.307929,38.614077],[-122.307616,38.614390],[-122.307302,38.615018],[-122.306832,38.615175],[-122.305734,38.615959],[-122.305577,38.616429],[-122.305577,38.617057],[-122.305106,38.616743],[-122.304322,38.617214],[-122.302910,38.617214],[-122.300558,38.617527],[-122.297421,38.616429],[-122.296480,38.616900],[-122.295696,38.617370],[-122.295539,38.617841],[-122.294598,38.618311],[-122.293814,38.617527],[-122.292873,38.617214],[-122.291147,38.617214],[-122.290206,38.616743],[-122.289265,38.616586],[-122.289265,38.617214],[-122.288795,38.617214],[-122.288324,38.616900],[-122.287070,38.616743],[-122.286913,38.616900],[-122.286913,38.617527],[-122.286756,38.618155],[-122.287697,38.618939],[-122.287383,38.619253],[-122.287540,38.619566],[-122.287226,38.620037],[-122.287540,38.620978],[-122.289265,38.621135],[-122.289265,38.621291],[-122.289265,38.621605],[-122.288638,38.621762],[-122.288481,38.622233],[-122.288795,38.622860],[-122.289579,38.623644],[-122.288952,38.623801],[-122.289109,38.624899],[-122.289265,38.625212],[-122.288795,38.625212],[-122.287854,38.624428],[-122.288011,38.623801],[-122.287854,38.623644],[-122.287383,38.622389],[-122.286756,38.621919],[-122.285658,38.622389],[-122.284874,38.623017],[-122.285344,38.623487],[-122.286756,38.624115],[-122.286913,38.624428],[-122.287070,38.624899],[-122.287226,38.625212],[-122.287383,38.625683],[-122.288011,38.626624],[-122.287226,38.626781],[-122.286129,38.626467],[-122.285972,38.626624],[-122.286285,38.627095],[-122.287540,38.627722],[-122.287383,38.628349],[-122.287540,38.628820],[-122.288481,38.629133],[-122.288481,38.629447],[-122.288795,38.630075],[-122.289736,38.630702],[-122.290050,38.630859],[-122.288795,38.633368],[-122.288795,38.634152],[-122.289109,38.635093],[-122.290520,38.637446],[-122.290677,38.638073],[-122.290206,38.639171],[-122.289893,38.640897],[-122.288952,38.642465],[-122.287854,38.644818],[-122.284560,38.646700],[-122.282835,38.648425],[-122.282364,38.649209],[-122.282208,38.650464],[-122.281894,38.650934],[-122.280325,38.651875],[-122.279071,38.652032],[-122.278443,38.652503],[-122.278443,38.652660],[-122.279228,38.654071],[-122.278443,38.656581],[-122.278600,38.657365],[-122.279228,38.658933],[-122.279228,38.664423],[-122.279071,38.665050],[-122.278287,38.666462],[-122.276718,38.667559],[-122.275934,38.668657],[-122.276248,38.669598],[-122.276091,38.670853],[-122.276718,38.672108],[-122.276875,38.673519],[-122.277659,38.674617],[-122.277659,38.675245],[-122.277189,38.676029],[-122.276561,38.676342],[-122.273424,38.677127],[-122.273895,38.678225],[-122.273111,38.678695],[-122.272327,38.679479],[-122.272327,38.680107],[-122.272013,38.680734],[-122.271699,38.682146],[-122.272013,38.682930],[-122.273424,38.683871],[-122.274993,38.683714],[-122.275777,38.682930],[-122.276248,38.681675],[-122.276718,38.681048],[-122.276875,38.680420],[-122.277189,38.680107],[-122.277816,38.679793],[-122.278287,38.679950],[-122.278757,38.680577],[-122.279384,38.681361],[-122.280012,38.682930],[-122.280012,38.683400],[-122.280012,38.683714],[-122.279071,38.684341],[-122.278443,38.685282],[-122.278443,38.686067],[-122.278130,38.687321],[-122.278287,38.687949],[-122.279698,38.689203],[-122.280482,38.689988],[-122.282051,38.691085],[-122.283776,38.692026],[-122.285501,38.693438],[-122.286599,38.693909],[-122.287226,38.693909],[-122.287854,38.694222],[-122.288167,38.694536],[-122.288167,38.695163],[-122.287697,38.696261],[-122.287854,38.697202],[-122.286913,38.698457],[-122.286913,38.698771],[-122.287226,38.699241],[-122.287697,38.699398],[-122.288167,38.699712],[-122.288795,38.701123],[-122.289579,38.701751],[-122.290991,38.702221],[-122.290991,38.702692],[-122.290520,38.702848],[-122.290206,38.703162],[-122.290363,38.703319],[-122.290834,38.703790],[-122.290363,38.704574],[-122.289893,38.705515],[-122.288952,38.706142],[-122.288167,38.707083],[-122.288324,38.707867],[-122.289579,38.708652],[-122.289579,38.708965],[-122.289109,38.709279],[-122.287854,38.709279],[-122.287226,38.709906],[-122.287226,38.710220],[-122.287697,38.711004],[-122.287540,38.711318],[-122.286913,38.711632],[-122.286913,38.711945],[-122.287226,38.712416],[-122.287226,38.712729],[-122.286442,38.713200],[-122.285658,38.713357],[-122.284246,38.714141],[-122.283462,38.714298],[-122.282521,38.712573],[-122.280482,38.712416],[-122.278443,38.711318],[-122.277816,38.710847],[-122.277502,38.709906],[-122.277189,38.709593],[-122.275934,38.709122],[-122.275777,38.708652],[-122.275307,38.708338],[-122.274993,38.708338],[-122.274522,38.708808],[-122.274366,38.708808],[-122.273581,38.707867],[-122.273268,38.707711],[-122.271542,38.707711],[-122.270915,38.707554],[-122.268406,38.705985],[-122.267465,38.705672],[-122.267308,38.705672],[-122.267308,38.705044],[-122.267151,38.704887],[-122.266210,38.704574],[-122.265739,38.704574],[-122.265426,38.704887],[-122.265426,38.706142],[-122.265112,38.706299],[-122.265112,38.706926],[-122.264798,38.707397],[-122.263544,38.707240],[-122.262603,38.707554],[-122.261975,38.708024],[-122.261975,38.708965],[-122.261661,38.709436],[-122.261661,38.710220],[-122.261975,38.710691],[-122.262289,38.711475],[-122.262916,38.712102],[-122.263544,38.712259],[-122.263700,38.712416],[-122.263700,38.712886],[-122.263387,38.713200],[-122.261818,38.713827],[-122.260877,38.714455],[-122.260720,38.714455],[-122.260564,38.715239],[-122.261191,38.716494],[-122.261505,38.717435],[-122.262289,38.718846],[-122.262759,38.719474],[-122.263700,38.720415],[-122.264485,38.721356],[-122.264798,38.722767],[-122.266524,38.724336],[-122.267308,38.725120],[-122.268249,38.725904],[-122.268876,38.726688],[-122.269033,38.727629],[-122.269817,38.728884],[-122.269503,38.729825],[-122.269503,38.730139],[-122.270288,38.731393],[-122.270445,38.732178],[-122.271072,38.733746],[-122.272327,38.735785],[-122.272640,38.737667],[-122.272170,38.739549],[-122.272013,38.740490],[-122.272170,38.740804],[-122.274052,38.741902],[-122.274679,38.742529],[-122.274836,38.742843],[-122.274679,38.743941],[-122.274836,38.744254],[-122.275307,38.744254],[-122.276875,38.743784],[-122.277816,38.743941],[-122.278130,38.744411],[-122.279541,38.747705],[-122.280012,38.748019],[-122.281423,38.748646],[-122.282051,38.749273],[-122.282521,38.750057],[-122.282521,38.750685],[-122.284246,38.752724],[-122.283776,38.753665],[-122.282835,38.754763],[-122.281580,38.755076],[-122.280012,38.755076],[-122.279541,38.755390],[-122.278757,38.756331],[-122.277816,38.758213],[-122.277189,38.758841],[-122.276561,38.759311],[-122.276404,38.759782],[-122.274993,38.760723],[-122.273268,38.761507],[-122.272170,38.763075],[-122.271229,38.763389],[-122.270915,38.763546],[-122.271229,38.764800],[-122.271229,38.766055],[-122.272170,38.767310],[-122.272954,38.769506],[-122.272954,38.770133],[-122.272483,38.770604],[-122.272640,38.771858],[-122.273581,38.773740],[-122.274679,38.774681],[-122.274836,38.775466],[-122.275934,38.776407],[-122.276091,38.777661],[-122.277502,38.778602],[-122.278130,38.779857],[-122.278600,38.780484],[-122.279541,38.780955],[-122.281267,38.781269],[-122.283462,38.782210],[-122.285658,38.784719],[-122.285815,38.785347],[-122.286129,38.785660],[-122.288324,38.786288],[-122.289579,38.786915],[-122.291304,38.787229],[-122.292089,38.787856],[-122.293971,38.788327],[-122.295853,38.789111],[-122.297107,38.790209],[-122.300558,38.793973],[-122.302126,38.795855],[-122.302754,38.796012],[-122.304636,38.795541],[-122.306832,38.796169],[-122.308870,38.797266],[-122.311380,38.797737],[-122.312948,38.798678],[-122.314360,38.799305],[-122.315301,38.800090],[-122.316869,38.801815],[-122.317183,38.803383],[-122.317810,38.804795],[-122.317810,38.805893],[-122.318124,38.806520],[-122.318751,38.807147],[-122.319536,38.807618],[-122.320633,38.807932],[-122.321261,38.808088],[-122.321575,38.808245],[-122.322829,38.808559],[-122.323300,38.808873],[-122.323613,38.809343],[-122.324241,38.809970],[-122.324868,38.811068],[-122.325025,38.811853],[-122.325339,38.812323],[-122.325966,38.812794],[-122.326280,38.813264],[-122.326593,38.814048],[-122.326437,38.815146],[-122.326907,38.815617],[-122.327848,38.816087],[-122.328319,38.816558],[-122.328946,38.817028],[-122.331455,38.818126],[-122.333024,38.820008],[-122.333965,38.820636],[-122.335063,38.821420],[-122.337102,38.822831],[-122.337259,38.823145],[-122.337259,38.824086],[-122.337259,38.825027],[-122.339925,38.827066],[-122.340082,38.827537],[-122.341023,38.828634],[-122.341493,38.828791],[-122.341964,38.828948],[-122.342905,38.828634],[-122.343062,38.828634],[-122.343062,38.829105],[-122.343375,38.829576],[-122.343375,38.830046],[-122.343062,38.830046],[-122.341964,38.830046],[-122.341493,38.830203],[-122.340552,38.831301],[-122.340552,38.832399],[-122.341023,38.833810],[-122.341964,38.834438],[-122.341650,38.834908],[-122.342748,38.835535],[-122.342905,38.836790],[-122.342748,38.837418],[-122.343218,38.838202],[-122.343689,38.838986],[-122.344787,38.839456],[-122.343532,38.841339],[-122.342121,38.842123],[-122.340395,38.841966],[-122.338356,38.842123],[-122.335376,38.843534],[-122.334435,38.843377],[-122.332710,38.842436],[-122.331142,38.842123],[-122.329730,38.842436],[-122.327691,38.844632],[-122.326280,38.845887],[-122.324084,38.846201],[-122.320006,38.843848],[-122.317653,38.840868],[-122.315301,38.839456],[-122.311537,38.840084],[-122.308243,38.841025],[-122.306988,38.841025],[-122.303852,38.842280],[-122.303067,38.842436],[-122.302597,38.841809],[-122.302597,38.840554],[-122.302440,38.839927],[-122.301813,38.839613],[-122.298048,38.839300],[-122.296010,38.838672],[-122.289736,38.839300],[-122.288011,38.839927],[-122.287697,38.839143],[-122.286913,38.838045],[-122.285344,38.833497],[-122.284090,38.830987],[-122.282992,38.828478],[-122.282678,38.826439],[-122.281580,38.824557],[-122.278757,38.822047],[-122.276561,38.818597],[-122.276561,38.817342],[-122.276091,38.816401],[-122.274679,38.812794],[-122.274522,38.811068],[-122.274052,38.809500],[-122.270758,38.804795],[-122.270445,38.803383],[-122.269347,38.801815],[-122.266994,38.800717],[-122.265582,38.796796],[-122.263700,38.795227],[-122.261818,38.793189],[-122.261348,38.792248],[-122.261505,38.790993],[-122.261191,38.790679],[-122.259623,38.789895],[-122.259309,38.789581],[-122.259309,38.788797],[-122.260093,38.787542],[-122.260093,38.786758],[-122.259779,38.786288],[-122.258368,38.785503],[-122.256799,38.783621],[-122.256015,38.782210],[-122.255702,38.781112],[-122.255702,38.780014],[-122.255388,38.778602],[-122.254290,38.776093],[-122.254290,38.775152],[-122.253035,38.772642],[-122.252878,38.769976],[-122.251937,38.767780],[-122.251310,38.764330],[-122.251624,38.762918],[-122.251153,38.762134],[-122.250526,38.758841],[-122.250055,38.758370],[-122.250212,38.756488],[-122.250055,38.755233],[-122.247860,38.752253],[-122.247232,38.750998],[-122.246918,38.749901],[-122.246448,38.749430],[-122.244409,38.748803],[-122.244095,38.748489],[-122.243625,38.747391],[-122.242684,38.746293],[-122.241429,38.743156],[-122.241272,38.743000],[-122.240802,38.742843],[-122.239547,38.743000],[-122.238763,38.742372],[-122.237665,38.742059],[-122.235783,38.740333],[-122.235155,38.740176],[-122.234999,38.738765],[-122.233587,38.738138],[-122.233430,38.737824],[-122.234214,38.736883],[-122.233744,38.736099],[-122.232019,38.735001],[-122.231705,38.734530],[-122.231234,38.733746],[-122.231078,38.732648],[-122.230137,38.732178],[-122.230764,38.730766],[-122.229666,38.729982],[-122.229823,38.729511],[-122.229352,38.729198],[-122.228254,38.727472],[-122.227470,38.727002],[-122.226529,38.727002],[-122.226529,38.726688],[-122.227000,38.725434],[-122.226216,38.724963],[-122.226372,38.724336],[-122.226216,38.723865],[-122.225274,38.722767],[-122.224961,38.722297],[-122.224961,38.721512],[-122.225274,38.721042],[-122.225745,38.721042],[-122.228411,38.720571],[-122.225118,38.709436],[-122.223079,38.704574],[-122.224177,38.700025],[-122.221667,38.696261],[-122.221667,38.695948],[-122.219942,38.695163],[-122.219001,38.694850],[-122.217746,38.695006],[-122.216805,38.694693],[-122.214609,38.693438],[-122.213825,38.693438],[-122.212570,38.693909],[-122.212414,38.694222],[-122.213041,38.695320],[-122.212570,38.695948],[-122.212100,38.695948],[-122.211002,38.694850],[-122.209434,38.695006],[-122.208649,38.695634],[-122.208179,38.695477],[-122.208022,38.695163],[-122.207708,38.693909],[-122.207238,38.693281],[-122.206140,38.692811],[-122.204572,38.691399],[-122.203631,38.690301],[-122.203317,38.689360],[-122.202533,38.689047],[-122.202062,38.688262],[-122.202219,38.687635],[-122.202062,38.686380],[-122.201121,38.685753],[-122.200807,38.684969],[-122.200180,38.684184],[-122.199710,38.683243],[-122.199710,38.682302],[-122.200494,38.680263],[-122.202062,38.679009],[-122.202846,38.678695],[-122.203003,38.678068],[-122.203474,38.677440],[-122.203474,38.677127],[-122.202689,38.676029],[-122.200023,38.673206],[-122.198612,38.669598],[-122.198298,38.669128],[-122.197200,38.668657],[-122.196730,38.668344],[-122.196416,38.667716],[-122.194063,38.666305],[-122.193593,38.665834],[-122.192809,38.664736],[-122.192495,38.663795],[-122.191867,38.663325],[-122.190299,38.662227],[-122.189829,38.661756],[-122.187476,38.660345],[-122.187005,38.659561],[-122.186692,38.659247],[-122.185751,38.658776],[-122.183241,38.657208],[-122.182614,38.657051],[-122.181987,38.657835],[-122.181202,38.657835],[-122.180575,38.657678],[-122.179477,38.658149],[-122.177438,38.657835],[-122.176968,38.658149],[-122.176497,38.658619],[-122.176183,38.658776],[-122.171792,38.656581],[-122.169126,38.655796],[-122.168341,38.655326],[-122.167087,38.653601],[-122.166930,38.653130],[-122.166459,38.652660],[-122.165361,38.650307],[-122.165205,38.649680],[-122.164420,38.648582],[-122.163479,38.647797],[-122.163166,38.647013],[-122.163166,38.645915],[-122.163009,38.644974],[-122.162381,38.644033],[-122.162381,38.643563],[-122.163009,38.643249],[-122.164891,38.642465],[-122.165989,38.641994],[-122.166146,38.641524],[-122.165989,38.640269],[-122.163636,38.638544],[-122.163009,38.637289],[-122.162538,38.637132],[-122.162225,38.636662],[-122.161284,38.635721],[-122.161284,38.635093],[-122.161911,38.634152],[-122.162538,38.632741],[-122.165205,38.631643],[-122.166616,38.631643],[-122.168028,38.630545],[-122.169753,38.630231],[-122.170380,38.629761],[-122.170380,38.629604],[-122.169439,38.627722],[-122.169596,38.626624],[-122.169439,38.625840],[-122.168655,38.624899],[-122.168341,38.624271],[-122.168498,38.623487],[-122.168185,38.622389],[-122.168498,38.621919],[-122.168498,38.619880],[-122.168341,38.619253],[-122.166459,38.617841],[-122.165989,38.617684],[-122.162538,38.619409],[-122.162068,38.619409],[-122.161597,38.619253],[-122.160970,38.619253],[-122.157833,38.622546],[-122.157519,38.622703],[-122.155637,38.623017],[-122.155010,38.623174],[-122.153285,38.624742],[-122.151716,38.625369],[-122.151403,38.625212],[-122.151089,38.625056],[-122.150775,38.624428],[-122.151246,38.623330],[-122.151403,38.622860],[-122.151089,38.621919],[-122.150148,38.621135],[-122.149834,38.620507],[-122.147795,38.618782],[-122.146854,38.617057],[-122.146384,38.616429],[-122.145286,38.615488],[-122.145129,38.613763],[-122.144815,38.612822],[-122.144345,38.612195],[-122.141992,38.609685],[-122.139953,38.609842],[-122.139326,38.609215],[-122.139169,38.608274],[-122.136816,38.604666],[-122.136973,38.603882],[-122.136816,38.603255],[-122.136660,38.602627],[-122.135875,38.601686],[-122.135719,38.600589],[-122.133837,38.597609],[-122.133680,38.596511],[-122.134150,38.595099],[-122.133993,38.594629],[-122.133366,38.593531],[-122.133052,38.592747],[-122.132425,38.591649],[-122.130543,38.590237],[-122.130386,38.589453],[-122.129759,38.588041],[-122.128974,38.586943],[-122.128974,38.586316],[-122.128661,38.585846],[-122.128190,38.583650],[-122.128974,38.583022],[-122.129131,38.581768],[-122.129131,38.580827],[-122.128818,38.580199],[-122.127877,38.578788],[-122.127720,38.576906],[-122.126151,38.575180],[-122.125838,38.572828],[-122.125524,38.572671],[-122.122387,38.562476],[-122.120976,38.560437],[-122.120662,38.559810],[-122.120191,38.556360],[-122.119250,38.554007],[-122.119250,38.553380],[-122.118152,38.550870],[-122.117211,38.546479],[-122.115800,38.542871],[-122.115800,38.542244],[-122.114702,38.540205],[-122.114075,38.537852],[-122.114075,38.537225],[-122.115173,38.535813],[-122.115329,38.535186],[-122.115173,38.534402],[-122.115016,38.533775],[-122.114388,38.533147],[-122.113918,38.532833],[-122.113290,38.532677],[-122.112663,38.532206],[-122.112349,38.531579],[-122.111879,38.531265],[-122.111565,38.530638],[-122.112036,38.529697],[-122.112820,38.529540],[-122.112977,38.529069],[-122.112663,38.526560],[-122.112036,38.525776],[-122.111879,38.524521],[-122.111565,38.524050],[-122.111095,38.523894],[-122.110154,38.523894],[-122.109369,38.523109],[-122.109840,38.522011],[-122.109526,38.521384],[-122.104978,38.516993],[-122.103723,38.515110],[-122.103253,38.513385],[-122.103409,38.511974],[-122.106233,38.508366],[-122.107174,38.494564],[-122.104978,38.492839],[-122.104821,38.490800],[-122.108115,38.486095],[-122.111252,38.477155],[-122.113134,38.474803],[-122.120505,38.453943],[-122.123642,38.447669],[-122.125524,38.438259],[-122.125838,38.436690],[-122.126465,38.436063],[-122.126622,38.435436],[-122.126465,38.433397],[-122.126151,38.432926],[-122.126622,38.432456],[-122.126465,38.428848],[-122.125210,38.424300],[-122.124897,38.423986],[-122.124426,38.423829],[-122.123642,38.423202],[-122.123015,38.422104],[-122.122701,38.421320],[-122.121760,38.420849],[-122.121603,38.420536],[-122.121132,38.420065],[-122.120505,38.418967],[-122.119878,38.418340],[-122.119564,38.416928],[-122.119094,38.416458],[-122.117996,38.414105],[-122.114702,38.413948],[-122.115016,38.412380],[-122.114075,38.412223],[-122.112193,38.409557],[-122.110624,38.408616],[-122.109683,38.407361],[-122.109840,38.406106],[-122.109526,38.404538],[-122.099018,38.394030],[-122.098547,38.392932],[-122.092744,38.388540],[-122.092587,38.388070],[-122.091646,38.387286],[-122.091490,38.386815],[-122.090392,38.385403],[-122.089764,38.384776],[-122.089137,38.384619],[-122.086000,38.380541],[-122.085843,38.379444],[-122.077688,38.363759],[-122.076119,38.363759],[-122.073453,38.360936],[-122.073453,38.358427],[-122.070944,38.353251],[-122.069689,38.350742],[-122.070630,38.349801],[-122.070316,38.349016],[-122.070630,38.346350],[-122.069532,38.344154],[-122.069846,38.342743],[-122.069218,38.341959],[-122.068434,38.339763],[-122.064827,38.333489],[-122.062945,38.333489],[-122.061376,38.329568],[-122.061533,38.328784],[-122.061376,38.327373],[-122.062004,38.325177],[-122.063415,38.324863],[-122.065454,38.323138],[-122.066238,38.320942],[-122.068120,38.318433],[-122.065140,38.317178],[-122.064827,38.315923],[-122.131327,38.315609],[-122.179948,38.315923],[-122.191240,38.315609],[-122.205983,38.315766],[-122.206454,38.314982],[-122.206140,38.314041],[-122.204101,38.310120],[-122.201905,38.308865],[-122.201435,38.308081],[-122.202533,38.305729],[-122.202533,38.304160],[-122.200964,38.302749],[-122.200494,38.301964],[-122.199239,38.301494],[-122.199082,38.300082],[-122.200651,38.298514],[-122.201905,38.296789],[-122.203003,38.294436],[-122.203787,38.293966],[-122.203474,38.292868],[-122.201748,38.292397],[-122.201435,38.289260],[-122.199710,38.287692],[-122.199239,38.286594],[-122.198455,38.285810],[-122.198298,38.284869],[-122.196730,38.284398],[-122.196416,38.281889],[-122.194377,38.280791],[-122.192652,38.278909],[-122.190613,38.277497],[-122.191083,38.275929],[-122.188417,38.271537],[-122.193122,38.271380],[-122.195632,38.271537],[-122.197357,38.272792],[-122.201121,38.272008],[-122.200807,38.272478],[-122.200964,38.273419],[-122.200807,38.276086],[-122.200964,38.276399],[-122.201278,38.276870],[-122.203944,38.276870],[-122.204415,38.276870],[-122.204885,38.276399],[-122.206924,38.276556],[-122.207238,38.277027],[-122.207395,38.278281],[-122.208022,38.278281],[-122.210375,38.280164],[-122.211159,38.280164],[-122.212727,38.279693],[-122.213511,38.279693],[-122.216178,38.281575],[-122.217903,38.282359],[-122.218374,38.282987],[-122.219785,38.283614],[-122.221667,38.283928],[-122.222451,38.284555],[-122.222922,38.285810],[-122.223706,38.286594],[-122.227157,38.288006],[-122.227313,38.288162],[-122.227000,38.293181],[-122.241586,38.294593],[-122.242370,38.287065],[-122.246918,38.286908],[-122.246918,38.282673],[-122.247075,38.282516],[-122.247232,38.282359],[-122.248173,38.282359],[-122.248644,38.282673],[-122.249271,38.282673],[-122.249898,38.283144],[-122.251153,38.283614],[-122.251153,38.283771],[-122.251937,38.284398],[-122.252251,38.284869],[-122.253506,38.285182],[-122.254447,38.286123],[-122.255545,38.288162],[-122.257897,38.288633],[-122.259623,38.288633],[-122.259936,38.289103],[-122.260877,38.289260],[-122.261191,38.289574],[-122.259466,38.290358],[-122.258838,38.291299],[-122.257584,38.291770],[-122.257270,38.292083],[-122.255702,38.292397],[-122.254760,38.292397],[-122.253349,38.293338],[-122.251937,38.293338],[-122.251624,38.293809],[-122.251467,38.294907],[-122.251153,38.295377],[-122.252251,38.295377],[-122.253976,38.294436],[-122.254760,38.294279],[-122.255388,38.294436],[-122.256643,38.295220],[-122.257427,38.295377],[-122.260564,38.296318],[-122.261818,38.296318],[-122.261818,38.297416],[-122.262446,38.298357],[-122.260720,38.301651],[-122.261505,38.301808],[-122.260093,38.302592],[-122.258054,38.302592],[-122.256643,38.302278],[-122.256329,38.303062],[-122.256015,38.303062],[-122.255858,38.303376],[-122.256172,38.303376],[-122.256643,38.304003],[-122.257427,38.304003],[-122.259466,38.308081],[-122.259152,38.309022],[-122.263544,38.309963],[-122.264171,38.309336],[-122.263387,38.309022],[-122.264955,38.306826],[-122.266524,38.307611],[-122.266680,38.308081],[-122.266680,38.309022],[-122.267465,38.310120],[-122.267621,38.310591],[-122.267151,38.311061],[-122.265896,38.311061],[-122.265269,38.311375],[-122.266053,38.311845],[-122.266680,38.311375],[-122.266837,38.311532],[-122.267308,38.311061],[-122.269817,38.311061],[-122.269503,38.311375],[-122.270915,38.311061],[-122.274366,38.310747],[-122.274366,38.311688],[-122.274993,38.311532],[-122.276091,38.311532],[-122.276404,38.310591],[-122.279071,38.310277],[-122.285188,38.310277],[-122.285031,38.308552],[-122.286129,38.308552],[-122.287854,38.307767],[-122.289422,38.309493],[-122.292089,38.309022]],[[-122.352472,38.442807],[-122.359059,38.435122],[-122.369568,38.421477],[-122.368627,38.421163],[-122.367999,38.421790],[-122.367058,38.421634],[-122.365804,38.422104],[-122.363294,38.421790],[-122.362196,38.421477],[-122.360941,38.421634],[-122.360471,38.421947],[-122.359844,38.421947],[-122.359059,38.421477],[-122.357491,38.421320],[-122.356550,38.420065],[-122.355609,38.419595],[-122.355295,38.419595],[-122.354511,38.419752],[-122.354040,38.419752],[-122.353570,38.419438],[-122.352943,38.418654],[-122.351845,38.418340],[-122.341180,38.427594],[-122.343218,38.429632],[-122.345257,38.431044],[-122.345885,38.431515],[-122.351374,38.439670],[-122.352472,38.442807]],[[-122.380547,38.377718],[-122.380390,38.376934],[-122.377410,38.378189],[-122.376625,38.381012],[-122.375371,38.382580],[-122.376469,38.384149],[-122.375214,38.386031],[-122.375214,38.389638],[-122.373802,38.390579],[-122.369881,38.384933],[-122.364392,38.387286],[-122.364392,38.388227],[-122.364078,38.388697],[-122.354197,38.393402],[-122.355923,38.395284],[-122.349649,38.400146],[-122.356550,38.405793],[-122.352158,38.409086],[-122.357334,38.414105],[-122.361255,38.410968],[-122.365176,38.413948],[-122.366274,38.412537],[-122.367529,38.411596],[-122.366745,38.410498],[-122.370352,38.408302],[-122.372391,38.409400],[-122.374900,38.409871],[-122.378664,38.411753],[-122.381174,38.411753],[-122.381488,38.411439],[-122.379762,38.410498],[-122.371450,38.407361],[-122.368627,38.406106],[-122.369097,38.405950],[-122.360157,38.397323],[-122.361569,38.396853],[-122.364549,38.394814],[-122.367529,38.398264],[-122.377723,38.392461],[-122.379135,38.390579],[-122.385565,38.390422],[-122.385565,38.385403],[-122.381017,38.385090],[-122.380547,38.377718]]]]}}
,{"id":95758,"type":"Feature","properties":{"name":"Elk Grove"},"geometry":{"type":"Polygon","coordinates":[[[-121.455345,38.434181],[-121.446248,38.434181],[-121.444993,38.441552],[-121.444680,38.444219],[-121.444680,38.447199],[-121.444366,38.447199],[-121.443896,38.446885],[-121.442954,38.445630],[-121.442170,38.445003],[-121.441543,38.443905],[-121.440759,38.443591],[-121.439661,38.443434],[-121.438406,38.443121],[-121.437151,38.442337],[-121.435740,38.442023],[-121.434642,38.441239],[-121.429309,38.441239],[-121.425388,38.440611],[-121.425075,38.440454],[-121.424290,38.439357],[-121.423663,38.437945],[-121.423349,38.437788],[-121.420997,38.438102],[-121.417703,38.437945],[-121.417703,38.446101],[-121.418017,38.448610],[-121.418017,38.456139],[-121.417546,38.458021],[-121.412684,38.458021],[-121.411900,38.458177],[-121.411273,38.458177],[-121.410645,38.456766],[-121.407665,38.450492],[-121.395589,38.423829],[-121.388688,38.408930],[-121.381316,38.397637],[-121.376768,38.391363],[-121.362182,38.376307],[-121.363436,38.375523],[-121.363907,38.376150],[-121.364534,38.378189],[-121.365005,38.378816],[-121.376611,38.390893],[-121.381944,38.398264],[-121.386962,38.405793],[-121.388688,38.407675],[-121.389315,38.407988],[-121.392295,38.407832],[-121.392452,38.408930],[-121.409077,38.409086],[-121.436210,38.408773],[-121.457070,38.408773],[-121.458639,38.408459],[-121.460521,38.407675],[-121.461618,38.407047],[-121.463030,38.405479],[-121.464442,38.404695],[-121.466167,38.404067],[-121.467735,38.403911],[-121.469931,38.404067],[-121.471656,38.404695],[-121.473068,38.405636],[-121.474950,38.407361],[-121.476989,38.408459],[-121.479028,38.408773],[-121.483890,38.408773],[-121.486870,38.422888],[-121.490320,38.439670],[-121.489536,38.440611],[-121.486556,38.442180],[-121.486086,38.442650],[-121.485458,38.443591],[-121.484988,38.444846],[-121.484360,38.447199],[-121.482635,38.451590],[-121.478087,38.457393],[-121.474950,38.458805],[-121.468519,38.459746],[-121.465226,38.459746],[-121.464755,38.454727],[-121.464442,38.454884],[-121.461462,38.453002],[-121.460207,38.451433],[-121.459893,38.448924],[-121.460207,38.448610],[-121.459736,38.446258],[-121.459893,38.446101],[-121.459423,38.445317],[-121.458952,38.440925],[-121.459109,38.440141],[-121.459893,38.438886],[-121.459893,38.437631],[-121.458011,38.437631],[-121.457541,38.434181],[-121.455345,38.434181]]]}}
,{"id":95690,"type":"Feature","properties":{"name":"Walnut Grove"},"geometry":{"type":"Polygon","coordinates":[[[-121.498319,38.276713],[-121.495810,38.276713],[-121.499417,38.299455],[-121.488595,38.299141],[-121.487811,38.294593],[-121.484360,38.277968],[-121.483576,38.276870],[-121.484831,38.276870],[-121.484831,38.276713],[-121.478087,38.277184],[-121.470402,38.277027],[-121.469304,38.277340],[-121.468363,38.277654],[-121.458168,38.284241],[-121.456286,38.276399],[-121.448130,38.255069],[-121.449855,38.254599],[-121.450953,38.254755],[-121.453306,38.255853],[-121.455502,38.257422],[-121.455972,38.257579],[-121.457227,38.257265],[-121.458325,38.257265],[-121.458952,38.257579],[-121.459736,38.258363],[-121.460991,38.259147],[-121.464442,38.259461],[-121.466010,38.259931],[-121.467108,38.259931],[-121.468833,38.259461],[-121.471029,38.259931],[-121.471656,38.259774],[-121.474166,38.258520],[-121.475734,38.258049],[-121.476205,38.257735],[-121.476518,38.257422],[-121.476518,38.256324],[-121.476989,38.256010],[-121.480126,38.253501],[-121.479969,38.252716],[-121.479655,38.252089],[-121.478557,38.251148],[-121.478244,38.248482],[-121.478557,38.246129],[-121.479969,38.245188],[-121.482165,38.244090],[-121.483262,38.242208],[-121.484674,38.241424],[-121.486556,38.240483],[-121.487027,38.239856],[-121.487340,38.238758],[-121.486556,38.237346],[-121.486556,38.236719],[-121.486713,38.235778],[-121.487183,38.235150],[-121.487654,38.234680],[-121.489379,38.233896],[-121.490477,38.232955],[-121.490791,38.232170],[-121.490634,38.229504],[-121.491104,38.228563],[-121.491732,38.227622],[-121.492516,38.227308],[-121.493143,38.227622],[-121.493771,38.227622],[-121.495810,38.227151],[-121.497692,38.227622],[-121.498476,38.227622],[-121.500044,38.227308],[-121.500985,38.226838],[-121.501613,38.226054],[-121.502240,38.225583],[-121.503495,38.225113],[-121.504279,38.224485],[-121.506161,38.224328],[-121.506318,38.224642],[-121.507259,38.223230],[-121.507416,38.222603],[-121.507416,38.221505],[-121.506318,38.217584],[-121.505220,38.215859],[-121.504750,38.213977],[-121.504593,38.213193],[-121.504279,38.212565],[-121.504279,38.212095],[-121.504750,38.211467],[-121.507102,38.210056],[-121.508043,38.209272],[-121.508357,38.207076],[-121.509925,38.204566],[-121.511651,38.203312],[-121.513219,38.202371],[-121.513533,38.202371],[-121.515415,38.202998],[-121.519493,38.203155],[-121.519963,38.203782],[-121.528433,38.205351],[-121.528119,38.204566],[-121.529217,38.204253],[-121.532824,38.202841],[-121.539568,38.202841],[-121.540666,38.205978],[-121.540666,38.207076],[-121.540352,38.207860],[-121.540509,38.208174],[-121.540352,38.208644],[-121.540980,38.208801],[-121.540352,38.209742],[-121.539568,38.210213],[-121.538000,38.210683],[-121.536588,38.210840],[-121.536118,38.211311],[-121.538470,38.213977],[-121.539098,38.214447],[-121.542078,38.216173],[-121.543176,38.217271],[-121.543489,38.218212],[-121.543489,38.219309],[-121.544273,38.221662],[-121.544273,38.222133],[-121.543960,38.222446],[-121.544430,38.222760],[-121.548822,38.222917],[-121.556350,38.223544],[-121.557291,38.219937],[-121.557762,38.215388],[-121.557605,38.208174],[-121.557919,38.201900],[-121.558075,38.200802],[-121.558860,38.199234],[-121.560271,38.196881],[-121.561526,38.195470],[-121.564506,38.193588],[-121.565917,38.192960],[-121.570623,38.191862],[-121.578308,38.189039],[-121.581758,38.187000],[-121.584111,38.184961],[-121.586307,38.182609],[-121.590384,38.177276],[-121.593678,38.171944],[-121.593364,38.171787],[-121.593521,38.171630],[-121.595403,38.169277],[-121.597285,38.167552],[-121.599481,38.167238],[-121.602618,38.165513],[-121.605755,38.164415],[-121.609990,38.163788],[-121.613440,38.163788],[-121.616263,38.163945],[-121.616420,38.163788],[-121.622223,38.165043],[-121.626144,38.166454],[-121.627556,38.167082],[-121.631477,38.170532],[-121.633516,38.171473],[-121.637280,38.172728],[-121.638691,38.173042],[-121.643710,38.173042],[-121.647631,38.173512],[-121.650298,38.174139],[-121.652336,38.174924],[-121.655473,38.175551],[-121.658767,38.176022],[-121.661590,38.176178],[-121.666923,38.176963],[-121.666923,38.177590],[-121.666295,38.178531],[-121.664570,38.180570],[-121.664570,38.180884],[-121.662531,38.183236],[-121.660492,38.187471],[-121.658140,38.191706],[-121.657355,38.195156],[-121.657042,38.199704],[-121.657512,38.203155],[-121.658924,38.205978],[-121.659708,38.207233],[-121.662061,38.208958],[-121.669275,38.215075],[-121.671628,38.218368],[-121.673824,38.223387],[-121.674608,38.228720],[-121.673353,38.232170],[-121.671941,38.232484],[-121.669903,38.233582],[-121.669903,38.234052],[-121.668648,38.234837],[-121.667393,38.234837],[-121.666452,38.235150],[-121.665825,38.235621],[-121.665511,38.237973],[-121.665511,38.239385],[-121.665354,38.239856],[-121.664727,38.240640],[-121.662374,38.242208],[-121.660335,38.243149],[-121.658767,38.244090],[-121.658453,38.244718],[-121.659081,38.246129],[-121.659081,38.246600],[-121.658767,38.247227],[-121.657355,38.248482],[-121.656885,38.249109],[-121.655944,38.254128],[-121.655160,38.254755],[-121.653121,38.254755],[-121.652336,38.254912],[-121.652023,38.255540],[-121.651709,38.260558],[-121.651866,38.261656],[-121.651395,38.261970],[-121.650925,38.262127],[-121.649043,38.262127],[-121.647474,38.263538],[-121.642769,38.265891],[-121.640887,38.267930],[-121.640887,38.268714],[-121.641985,38.270126],[-121.642455,38.271224],[-121.642299,38.272165],[-121.641671,38.273106],[-121.641358,38.274674],[-121.641044,38.274988],[-121.638848,38.276243],[-121.638221,38.277027],[-121.638064,38.277811],[-121.639005,38.278752],[-121.640417,38.279693],[-121.641358,38.281105],[-121.642455,38.281261],[-121.643083,38.281575],[-121.643553,38.282202],[-121.643710,38.283300],[-121.643553,38.286280],[-121.643710,38.286751],[-121.644651,38.287221],[-121.645435,38.288006],[-121.645122,38.289103],[-121.641358,38.290358],[-121.639476,38.290358],[-121.637437,38.290986],[-121.635398,38.290986],[-121.632104,38.292083],[-121.630849,38.291770],[-121.630849,38.291613],[-121.629751,38.291142],[-121.626144,38.290201],[-121.624889,38.290201],[-121.623478,38.290672],[-121.622694,38.290672],[-121.618302,38.290201],[-121.615949,38.289731],[-121.613440,38.288162],[-121.612342,38.288006],[-121.609048,38.288162],[-121.608578,38.287849],[-121.608107,38.286751],[-121.607480,38.286280],[-121.605755,38.285653],[-121.605441,38.285810],[-121.604814,38.284869],[-121.601834,38.281732],[-121.601206,38.280791],[-121.600893,38.279379],[-121.600736,38.278438],[-121.601050,38.277027],[-121.601520,38.275772],[-121.602304,38.274360],[-121.603089,38.273106],[-121.603873,38.271694],[-121.604030,38.270126],[-121.603716,38.269028],[-121.602618,38.266989],[-121.601991,38.265734],[-121.601520,38.264009],[-121.600893,38.260402],[-121.600265,38.258206],[-121.600265,38.256794],[-121.600736,38.254285],[-121.597285,38.254442],[-121.596501,38.254755],[-121.595560,38.255540],[-121.594776,38.256324],[-121.594305,38.257422],[-121.593992,38.258833],[-121.594149,38.259304],[-121.594149,38.260245],[-121.594149,38.261029],[-121.593835,38.261343],[-121.592580,38.261970],[-121.588816,38.262284],[-121.587718,38.263382],[-121.587405,38.264636],[-121.587561,38.267303],[-121.588659,38.269028],[-121.588973,38.270283],[-121.588816,38.271067],[-121.587875,38.273419],[-121.587875,38.273733],[-121.588032,38.274047],[-121.588659,38.274674],[-121.590228,38.275458],[-121.590541,38.276243],[-121.590228,38.276870],[-121.588973,38.278909],[-121.588816,38.282046],[-121.588659,38.282673],[-121.588346,38.283144],[-121.587875,38.283928],[-121.585522,38.285653],[-121.583797,38.286594],[-121.583170,38.287535],[-121.583170,38.291142],[-121.583013,38.292554],[-121.582072,38.295220],[-121.581601,38.296318],[-121.581288,38.297887],[-121.580817,38.298984],[-121.580033,38.299925],[-121.579406,38.301651],[-121.578778,38.302278],[-121.576739,38.303376],[-121.576269,38.303690],[-121.574857,38.304160],[-121.574544,38.304474],[-121.572505,38.304160],[-121.567015,38.297259],[-121.564819,38.294907],[-121.564663,38.294907],[-121.560898,38.291142],[-121.557919,38.288633],[-121.555566,38.286280],[-121.554154,38.285182],[-121.551959,38.283771],[-121.551802,38.283300],[-121.550547,38.282830],[-121.548038,38.281261],[-121.544430,38.278752],[-121.542078,38.276713],[-121.539725,38.278438],[-121.525139,38.268871],[-121.516042,38.276556],[-121.515258,38.277027],[-121.514474,38.277027],[-121.498319,38.276713]],[[-121.566388,38.239699],[-121.566545,38.239385],[-121.566858,38.239071],[-121.567486,38.238915],[-121.567486,38.230131],[-121.558546,38.232014],[-121.559330,38.233582],[-121.559644,38.235621],[-121.559487,38.236719],[-121.558703,38.238130],[-121.559801,38.238287],[-121.566388,38.239699]],[[-121.566388,38.239699],[-121.565604,38.240953],[-121.564663,38.243463],[-121.564349,38.244874],[-121.564976,38.244718],[-121.565447,38.245345],[-121.565761,38.245502],[-121.566074,38.245188],[-121.566231,38.244090],[-121.566388,38.243777],[-121.567956,38.242679],[-121.568740,38.242992],[-121.568897,38.242365],[-121.569682,38.242836],[-121.569682,38.243306],[-121.569525,38.243463],[-121.569838,38.244090],[-121.569525,38.244718],[-121.569525,38.245031],[-121.570309,38.245345],[-121.570466,38.246129],[-121.570779,38.246129],[-121.570936,38.245972],[-121.571564,38.245659],[-121.572034,38.245659],[-121.572505,38.246129],[-121.572348,38.246913],[-121.572975,38.247070],[-121.573289,38.247698],[-121.581915,38.248168],[-121.589914,38.248168],[-121.601991,38.248011],[-121.601834,38.246286],[-121.601834,38.244718],[-121.602148,38.241738],[-121.603245,38.237346],[-121.602461,38.232798],[-121.602461,38.231386],[-121.602775,38.230288],[-121.596501,38.230131],[-121.595247,38.230602],[-121.593521,38.232014],[-121.592580,38.232327],[-121.589287,38.231857],[-121.587405,38.231386],[-121.586150,38.231386],[-121.585052,38.232170],[-121.583483,38.234837],[-121.582386,38.235621],[-121.580974,38.235778],[-121.577994,38.235464],[-121.576739,38.235621],[-121.575641,38.236091],[-121.570623,38.239542],[-121.569211,38.239856],[-121.566388,38.239699]]]}}
,{"id":95615,"type":"Feature","properties":{"name":"Courtland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.581288,38.343527],[-121.581131,38.343998],[-121.579876,38.346664],[-121.578778,38.347919],[-121.577994,38.348232],[-121.573603,38.347919],[-121.573289,38.348075],[-121.574073,38.351055],[-121.574230,38.352310],[-121.573289,38.353722],[-121.571720,38.354976],[-121.571877,38.355290],[-121.570936,38.355604],[-121.568897,38.355133],[-121.567172,38.354506],[-121.565447,38.354663],[-121.564035,38.355447],[-121.563251,38.356074],[-121.562781,38.357015],[-121.562467,38.359054],[-121.563251,38.360466],[-121.563565,38.361721],[-121.563408,38.362975],[-121.562624,38.364073],[-121.560898,38.364701],[-121.560428,38.362975],[-121.560898,38.362818],[-121.561840,38.361877],[-121.560742,38.358113],[-121.560898,38.357015],[-121.561683,38.355447],[-121.563251,38.354349],[-121.565447,38.353565],[-121.565133,38.352624],[-121.562310,38.349644],[-121.565761,38.347762],[-121.560742,38.343213],[-121.561369,38.342743],[-121.562153,38.341488],[-121.567486,38.337253],[-121.568897,38.335528],[-121.571564,38.333332],[-121.575171,38.329411],[-121.576269,38.328000],[-121.577837,38.328941],[-121.579092,38.329882],[-121.579719,38.330823],[-121.580974,38.331607],[-121.582229,38.332078],[-121.584425,38.331921],[-121.584268,38.332391],[-121.583954,38.334430],[-121.583640,38.335058],[-121.582229,38.337097],[-121.582072,38.337724],[-121.581601,38.340233],[-121.581131,38.341802],[-121.581445,38.341959],[-121.581288,38.342429],[-121.581288,38.343527]]],[[[-121.500044,38.349016],[-121.497378,38.349016],[-121.497535,38.347919],[-121.498319,38.347448],[-121.498790,38.346037],[-121.498790,38.344625],[-121.498947,38.344468],[-121.499260,38.343998],[-121.499574,38.343841],[-121.499888,38.343998],[-121.500044,38.343998],[-121.500044,38.342586],[-121.500358,38.341331],[-121.500044,38.339606],[-121.500201,38.338979],[-121.500201,38.337253],[-121.501770,38.335842],[-121.502554,38.335528],[-121.503338,38.335528],[-121.502711,38.336469],[-121.503965,38.336156],[-121.504906,38.339449],[-121.505691,38.343213],[-121.505847,38.343527],[-121.506161,38.343684],[-121.507573,38.352624],[-121.507886,38.352310],[-121.501926,38.317492],[-121.502240,38.317178],[-121.502868,38.317335],[-121.504906,38.314198],[-121.507259,38.312159],[-121.507102,38.311532],[-121.508043,38.310904],[-121.508357,38.310120],[-121.508827,38.309806],[-121.509455,38.308865],[-121.510239,38.307140],[-121.510553,38.305885],[-121.511180,38.305885],[-121.511337,38.305572],[-121.511494,38.304160],[-121.510710,38.296161],[-121.510553,38.295534],[-121.509141,38.293338],[-121.508357,38.292711],[-121.507730,38.292397],[-121.506789,38.291613],[-121.505691,38.290358],[-121.504750,38.287692],[-121.504436,38.285810],[-121.504122,38.284869],[-121.500515,38.281575],[-121.498633,38.280164],[-121.498476,38.279536],[-121.498476,38.278281],[-121.498319,38.276713],[-121.514474,38.277027],[-121.515258,38.277027],[-121.516042,38.276556],[-121.525139,38.268871],[-121.539725,38.278438],[-121.542078,38.276713],[-121.544430,38.278752],[-121.548038,38.281261],[-121.550547,38.282830],[-121.551802,38.283300],[-121.551959,38.283771],[-121.554154,38.285182],[-121.555566,38.286280],[-121.557919,38.288633],[-121.560898,38.291142],[-121.564663,38.294907],[-121.564819,38.294907],[-121.567015,38.297259],[-121.572505,38.304160],[-121.574544,38.304474],[-121.574857,38.304160],[-121.576269,38.303690],[-121.576739,38.303376],[-121.578778,38.302278],[-121.579406,38.301651],[-121.580033,38.299925],[-121.580817,38.298984],[-121.581288,38.297887],[-121.581601,38.296318],[-121.582072,38.295220],[-121.583013,38.292554],[-121.583170,38.291142],[-121.583170,38.287535],[-121.583797,38.286594],[-121.585522,38.285653],[-121.587875,38.283928],[-121.588346,38.283144],[-121.588659,38.282673],[-121.588816,38.282046],[-121.588973,38.278909],[-121.590228,38.276870],[-121.590541,38.276243],[-121.590228,38.275458],[-121.588659,38.274674],[-121.588032,38.274047],[-121.587875,38.273733],[-121.587875,38.273419],[-121.588816,38.271067],[-121.588973,38.270283],[-121.588659,38.269028],[-121.587561,38.267303],[-121.587405,38.264636],[-121.587718,38.263382],[-121.588816,38.262284],[-121.592580,38.261970],[-121.593835,38.261343],[-121.594149,38.261029],[-121.594149,38.260245],[-121.594149,38.259304],[-121.593992,38.258833],[-121.594305,38.257422],[-121.594776,38.256324],[-121.595560,38.255540],[-121.596501,38.254755],[-121.597285,38.254442],[-121.600736,38.254285],[-121.600265,38.256794],[-121.600265,38.258206],[-121.600893,38.260402],[-121.601520,38.264009],[-121.601991,38.265734],[-121.602618,38.266989],[-121.603716,38.269028],[-121.604030,38.270126],[-121.603873,38.271694],[-121.603089,38.273106],[-121.602304,38.274360],[-121.601520,38.275772],[-121.601050,38.277027],[-121.600736,38.278438],[-121.600893,38.279379],[-121.601206,38.280791],[-121.601834,38.281732],[-121.604814,38.284869],[-121.605441,38.285810],[-121.605441,38.286123],[-121.604500,38.287849],[-121.603873,38.289574],[-121.604186,38.291613],[-121.605284,38.295377],[-121.604971,38.296632],[-121.604500,38.297416],[-121.603716,38.298200],[-121.601050,38.300239],[-121.599952,38.301494],[-121.599795,38.302435],[-121.599795,38.304160],[-121.599795,38.304631],[-121.599168,38.305415],[-121.598070,38.306356],[-121.597599,38.307140],[-121.597599,38.307924],[-121.598540,38.309336],[-121.598697,38.309963],[-121.597756,38.310747],[-121.596344,38.311375],[-121.593208,38.313100],[-121.592267,38.314041],[-121.590384,38.317492],[-121.590071,38.318276],[-121.589914,38.320158],[-121.590228,38.320785],[-121.590228,38.321413],[-121.590228,38.321883],[-121.589757,38.322667],[-121.587091,38.323452],[-121.586463,38.323922],[-121.585836,38.324549],[-121.585209,38.325490],[-121.585209,38.326118],[-121.585522,38.327529],[-121.585679,38.328784],[-121.585366,38.329725],[-121.584425,38.331137],[-121.583483,38.331921],[-121.582229,38.331607],[-121.580974,38.331137],[-121.578465,38.328784],[-121.576739,38.327529],[-121.575641,38.327059],[-121.574700,38.327686],[-121.571877,38.330980],[-121.569054,38.333646],[-121.566702,38.335528],[-121.566702,38.335999],[-121.559330,38.342586],[-121.556664,38.343527],[-121.549763,38.345095],[-121.546626,38.345566],[-121.545685,38.345723],[-121.543019,38.345880],[-121.541137,38.346193],[-121.537216,38.347605],[-121.534863,38.349173],[-121.533922,38.349801],[-121.529374,38.354506],[-121.527021,38.356388],[-121.525453,38.357956],[-121.521688,38.360152],[-121.521061,38.361250],[-121.520747,38.362191],[-121.520747,38.364544],[-121.521218,38.367367],[-121.519806,38.367053],[-121.518708,38.366426],[-121.511180,38.364387],[-121.510553,38.363759],[-121.509455,38.362348],[-121.509612,38.364230],[-121.509925,38.365485],[-121.508671,38.365642],[-121.507102,38.366112],[-121.501299,38.369406],[-121.501456,38.349016],[-121.500044,38.349016]]]]}}
,{"id":95829,"type":"Feature","properties":{"name":"Sacramento"},"geometry":{"type":"Polygon","coordinates":[[[-121.360300,38.452688],[-121.371749,38.452531],[-121.372063,38.494251],[-121.372219,38.495505],[-121.372219,38.505857],[-121.371749,38.507425],[-121.370181,38.510562],[-121.369867,38.511346],[-121.369867,38.522011],[-121.365005,38.522168],[-121.362809,38.522168],[-121.362809,38.520443],[-121.361397,38.520914],[-121.360300,38.521070],[-121.360143,38.520914],[-121.359672,38.520129],[-121.359045,38.519816],[-121.359359,38.519659],[-121.359202,38.519188],[-121.360143,38.518404],[-121.360927,38.518247],[-121.360927,38.518090],[-121.359359,38.517620],[-121.358731,38.517777],[-121.357790,38.518090],[-121.357006,38.518090],[-121.356849,38.518247],[-121.357163,38.518561],[-121.357006,38.518718],[-121.356379,38.518875],[-121.355751,38.519659],[-121.354967,38.519816],[-121.354496,38.519659],[-121.354183,38.519032],[-121.353085,38.518404],[-121.351203,38.517777],[-121.351203,38.519973],[-121.353242,38.520129],[-121.353399,38.520129],[-121.353399,38.525305],[-121.344145,38.525305],[-121.344145,38.531422],[-121.334891,38.529069],[-121.297877,38.519188],[-121.274508,38.512915],[-121.275292,38.511817],[-121.275763,38.511033],[-121.275763,38.510719],[-121.276233,38.510405],[-121.276547,38.510248],[-121.277174,38.509935],[-121.277958,38.509778],[-121.279527,38.508994],[-121.279684,38.508837],[-121.279527,38.508366],[-121.279527,38.508053],[-121.279527,38.507896],[-121.279684,38.507425],[-121.280154,38.507582],[-121.281252,38.507112],[-121.281409,38.506641],[-121.281723,38.506641],[-121.281879,38.506327],[-121.282350,38.506327],[-121.282977,38.506014],[-121.282977,38.505386],[-121.283134,38.505230],[-121.283291,38.504759],[-121.283918,38.504602],[-121.283761,38.504289],[-121.284075,38.504132],[-121.284075,38.503975],[-121.284546,38.503975],[-121.285016,38.503661],[-121.285173,38.503818],[-121.286114,38.503504],[-121.286428,38.503191],[-121.286898,38.503191],[-121.287526,38.502720],[-121.288467,38.502877],[-121.288780,38.502720],[-121.288624,38.502406],[-121.288780,38.502406],[-121.289565,38.502250],[-121.290035,38.502406],[-121.290349,38.502093],[-121.290662,38.501465],[-121.291447,38.501309],[-121.292388,38.501309],[-121.292388,38.500995],[-121.293172,38.501152],[-121.293329,38.500838],[-121.293799,38.500838],[-121.293956,38.500367],[-121.294583,38.500524],[-121.294897,38.500211],[-121.295681,38.500524],[-121.296466,38.500524],[-121.296466,38.500838],[-121.296779,38.500995],[-121.297093,38.501622],[-121.296779,38.501779],[-121.296779,38.502093],[-121.297250,38.502406],[-121.297877,38.502563],[-121.297720,38.481703],[-121.297563,38.452688],[-121.334735,38.452688],[-121.334735,38.451120],[-121.346027,38.450963],[-121.346027,38.451120],[-121.344772,38.451590],[-121.343674,38.452061],[-121.344145,38.452374],[-121.344302,38.452688],[-121.360300,38.452688]]]}}
,{"id":95683,"type":"Feature","properties":{"name":"Sloughhouse"},"geometry":{"type":"Polygon","coordinates":[[[-121.164876,38.501465],[-121.164563,38.502720],[-121.164249,38.503034],[-121.162837,38.503975],[-121.161426,38.504602],[-121.160485,38.505700],[-121.159858,38.506171],[-121.160328,38.506484],[-121.160328,38.506798],[-121.159701,38.508210],[-121.159387,38.509151],[-121.158603,38.510719],[-121.158603,38.511346],[-121.158446,38.511503],[-121.157662,38.511817],[-121.156407,38.511817],[-121.154995,38.513385],[-121.153113,38.514326],[-121.152329,38.515267],[-121.150447,38.516208],[-121.149192,38.517620],[-121.148879,38.518404],[-121.149036,38.518718],[-121.148408,38.519032],[-121.148879,38.520600],[-121.149506,38.521070],[-121.149663,38.522325],[-121.149663,38.523423],[-121.149036,38.524207],[-121.148722,38.525148],[-121.147781,38.526874],[-121.146683,38.527815],[-121.146526,38.528285],[-121.145899,38.529069],[-121.145742,38.529853],[-121.145428,38.530638],[-121.145115,38.530951],[-121.144644,38.530951],[-121.143860,38.549772],[-121.143232,38.573769],[-121.143232,38.605137],[-121.142605,38.617057],[-121.138998,38.617841],[-121.130999,38.618155],[-121.122530,38.619096],[-121.120804,38.619566],[-121.115942,38.621605],[-121.101042,38.624899],[-121.089279,38.627879],[-121.086613,38.627722],[-121.083790,38.628349],[-121.082378,38.629133],[-121.080496,38.630859],[-121.080026,38.631643],[-121.079555,38.632270],[-121.079242,38.632898],[-121.073909,38.617684],[-121.070458,38.607646],[-121.055559,38.573141],[-121.047403,38.554007],[-121.042541,38.543185],[-121.037836,38.533304],[-121.031562,38.517620],[-121.027484,38.508366],[-121.027484,38.503504],[-121.027641,38.500054],[-121.027327,38.489232],[-121.027327,38.458021],[-121.027171,38.397637],[-121.028268,38.398421],[-121.028425,38.398108],[-121.027798,38.397637],[-121.028268,38.397637],[-121.028739,38.398264],[-121.028896,38.398578],[-121.029366,38.398735],[-121.029366,38.398892],[-121.029837,38.399205],[-121.029680,38.399519],[-121.030307,38.399205],[-121.030621,38.399362],[-121.030464,38.399676],[-121.030464,38.399990],[-121.029994,38.400617],[-121.030464,38.401088],[-121.030307,38.401872],[-121.029994,38.402029],[-121.029837,38.401715],[-121.029680,38.401872],[-121.029837,38.402185],[-121.030307,38.402185],[-121.030307,38.403126],[-121.030621,38.403283],[-121.030935,38.403911],[-121.031562,38.404381],[-121.032033,38.404381],[-121.032033,38.404067],[-121.032346,38.403911],[-121.032660,38.404538],[-121.033444,38.404538],[-121.033915,38.404852],[-121.034699,38.404852],[-121.035169,38.405009],[-121.035640,38.404852],[-121.036267,38.404852],[-121.037051,38.404538],[-121.037365,38.405009],[-121.038934,38.405322],[-121.039561,38.405793],[-121.040188,38.405950],[-121.040502,38.406577],[-121.041286,38.407047],[-121.041757,38.407518],[-121.042227,38.407361],[-121.043011,38.407518],[-121.043482,38.407832],[-121.043639,38.407675],[-121.043796,38.407675],[-121.044266,38.408145],[-121.044109,38.408616],[-121.044266,38.409086],[-121.044893,38.408616],[-121.045991,38.408930],[-121.045991,38.408616],[-121.045835,38.408302],[-121.046462,38.408145],[-121.046619,38.408145],[-121.046619,38.408459],[-121.047403,38.408459],[-121.047717,38.408773],[-121.047717,38.409243],[-121.048344,38.409400],[-121.048815,38.409871],[-121.049285,38.410184],[-121.050069,38.410655],[-121.050383,38.411125],[-121.050853,38.411439],[-121.051481,38.411439],[-121.054304,38.411282],[-121.055872,38.411910],[-121.058695,38.412380],[-121.059793,38.413007],[-121.060578,38.413007],[-121.061362,38.413948],[-121.061675,38.414105],[-121.063401,38.414105],[-121.064028,38.414419],[-121.065126,38.414419],[-121.066694,38.415517],[-121.070458,38.417556],[-121.072811,38.417713],[-121.073909,38.417399],[-121.075007,38.417556],[-121.076889,38.418183],[-121.077359,38.418497],[-121.078614,38.418654],[-121.080183,38.419281],[-121.081751,38.419438],[-121.082222,38.419752],[-121.084260,38.419595],[-121.084574,38.419438],[-121.084731,38.418967],[-121.086613,38.419281],[-121.088025,38.418967],[-121.089436,38.418340],[-121.089907,38.418497],[-121.090848,38.419124],[-121.091005,38.421477],[-121.091946,38.422261],[-121.093357,38.422261],[-121.094769,38.423673],[-121.095710,38.423673],[-121.096651,38.423516],[-121.097749,38.422888],[-121.098847,38.422731],[-121.100101,38.423359],[-121.100886,38.424143],[-121.101827,38.424770],[-121.102297,38.424457],[-121.102924,38.423829],[-121.104179,38.423202],[-121.105277,38.423202],[-121.107002,38.423986],[-121.107473,38.423986],[-121.108884,38.423673],[-121.109355,38.423516],[-121.110453,38.423045],[-121.111080,38.422731],[-121.112178,38.421634],[-121.112335,38.421006],[-121.112021,38.420222],[-121.112649,38.419124],[-121.113746,38.418497],[-121.113746,38.418183],[-121.115315,38.416928],[-121.116570,38.416458],[-121.118452,38.416301],[-121.118452,38.416301],[-121.118295,38.416615],[-121.118452,38.416772],[-121.119863,38.417242],[-121.120647,38.416615],[-121.121745,38.416144],[-121.122059,38.415360],[-121.122686,38.415203],[-121.123941,38.415517],[-121.124725,38.415360],[-121.125980,38.413948],[-121.126451,38.413007],[-121.125980,38.412380],[-121.124725,38.411282],[-121.124568,38.410968],[-121.124568,38.410498],[-121.124882,38.410184],[-121.125980,38.410184],[-121.127392,38.410341],[-121.128960,38.409400],[-121.129430,38.407361],[-121.130215,38.405950],[-121.130372,38.405165],[-121.130685,38.404852],[-121.131626,38.404224],[-121.133508,38.404067],[-121.134136,38.404067],[-121.141194,38.403126],[-121.142762,38.445317],[-121.144173,38.465549],[-121.149977,38.466333],[-121.156564,38.466333],[-121.157348,38.466490],[-121.186520,38.483272],[-121.188559,38.484056],[-121.189187,38.484840],[-121.189030,38.484997],[-121.188559,38.485311],[-121.188716,38.485468],[-121.190912,38.486566],[-121.192010,38.486409],[-121.194676,38.484997],[-121.195460,38.484213],[-121.196872,38.481860],[-121.196872,38.481076],[-121.196558,38.480606],[-121.196401,38.479978],[-121.196715,38.478567],[-121.198440,38.477155],[-121.199538,38.476528],[-121.200009,38.475900],[-121.200950,38.472293],[-121.201420,38.471509],[-121.202204,38.469627],[-121.202989,38.466804],[-121.202989,38.464608],[-121.203145,38.464137],[-121.203773,38.463039],[-121.205028,38.461785],[-121.207380,38.460373],[-121.208949,38.459118],[-121.209262,38.458648],[-121.209576,38.457236],[-121.211144,38.454727],[-121.213026,38.455197],[-121.220241,38.459118],[-121.218673,38.459589],[-121.218516,38.459903],[-121.218202,38.460373],[-121.218359,38.460844],[-121.218830,38.461314],[-121.219143,38.461785],[-121.218202,38.462569],[-121.218045,38.463510],[-121.217418,38.464294],[-121.217261,38.464608],[-121.217575,38.465235],[-121.218359,38.465706],[-121.218516,38.466490],[-121.218202,38.466960],[-121.218045,38.466960],[-121.217732,38.466647],[-121.217104,38.466804],[-121.216477,38.467117],[-121.215850,38.468058],[-121.215850,38.468215],[-121.216320,38.468372],[-121.216477,38.468686],[-121.215850,38.469940],[-121.215222,38.470568],[-121.214281,38.470882],[-121.213967,38.471352],[-121.214124,38.471823],[-121.214595,38.472136],[-121.214752,38.472764],[-121.214595,38.472920],[-121.213026,38.473234],[-121.211929,38.472920],[-121.210988,38.473548],[-121.211144,38.473861],[-121.212085,38.474175],[-121.212399,38.474646],[-121.212242,38.475116],[-121.211615,38.475587],[-121.211301,38.476214],[-121.211301,38.476528],[-121.211615,38.477155],[-121.211458,38.477626],[-121.208635,38.481547],[-121.208008,38.483899],[-121.207537,38.484213],[-121.206596,38.484213],[-121.206439,38.485311],[-121.205969,38.486095],[-121.205969,38.486722],[-121.205812,38.487036],[-121.204087,38.487820],[-121.202989,38.488918],[-121.202832,38.489546],[-121.202361,38.490330],[-121.202361,38.491428],[-121.201734,38.492996],[-121.200793,38.493623],[-121.198597,38.494408],[-121.198127,38.495349],[-121.197813,38.495819],[-121.197342,38.496133],[-121.196245,38.496133],[-121.195774,38.495819],[-121.195303,38.495662],[-121.197029,38.496446],[-121.197186,38.496603],[-121.197186,38.497074],[-121.208164,38.498642],[-121.215536,38.500367],[-121.223221,38.501936],[-121.234514,38.504445],[-121.241415,38.505543],[-121.241258,38.506014],[-121.240003,38.506171],[-121.240003,38.511033],[-121.230749,38.510876],[-121.230436,38.511346],[-121.229024,38.511346],[-121.228397,38.511660],[-121.227299,38.511503],[-121.227142,38.511974],[-121.227299,38.512444],[-121.225731,38.512601],[-121.225260,38.512601],[-121.225103,38.512287],[-121.224633,38.512444],[-121.224162,38.512601],[-121.224005,38.513228],[-121.219143,38.516522],[-121.216006,38.519659],[-121.214281,38.520443],[-121.213654,38.520443],[-121.213183,38.520286],[-121.212870,38.520286],[-121.212399,38.520914],[-121.211458,38.521384],[-121.209262,38.521855],[-121.209105,38.522168],[-121.208478,38.521855],[-121.208008,38.522168],[-121.207694,38.522796],[-121.207066,38.523109],[-121.206753,38.523737],[-121.206282,38.524207],[-121.205812,38.524521],[-121.201891,38.521070],[-121.188402,38.508053],[-121.174130,38.503661],[-121.165817,38.502093],[-121.164876,38.501465]]]}}
,{"id":94132,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.491276,37.734045],[-122.491276,37.734202],[-122.491433,37.737182],[-122.490335,37.737966],[-122.490021,37.737966],[-122.488923,37.737182],[-122.488453,37.737025],[-122.486257,37.736712],[-122.485786,37.736712],[-122.485002,37.737182],[-122.483277,37.737496],[-122.482336,37.737496],[-122.481709,37.737182],[-122.475278,37.737496],[-122.475121,37.734673],[-122.474964,37.734673],[-122.471828,37.734829],[-122.471514,37.734673],[-122.471671,37.734202],[-122.471828,37.732163],[-122.471984,37.731222],[-122.471828,37.731065],[-122.472141,37.731065],[-122.472298,37.728869],[-122.471984,37.728869],[-122.472141,37.726987],[-122.471984,37.726831],[-122.472455,37.721812],[-122.472298,37.721655],[-122.464456,37.721655],[-122.464299,37.722125],[-122.463986,37.722282],[-122.462260,37.723066],[-122.462260,37.721655],[-122.462731,37.721655],[-122.462574,37.711303],[-122.462574,37.711147],[-122.460849,37.710519],[-122.464142,37.710519],[-122.466025,37.710205],[-122.467750,37.709264],[-122.469004,37.708167],[-122.469161,37.708167],[-122.484845,37.708323],[-122.498177,37.708167],[-122.498177,37.710833],[-122.498490,37.714911],[-122.498804,37.715852],[-122.500216,37.717734],[-122.500373,37.718361],[-122.500216,37.718989],[-122.500529,37.720557],[-122.502725,37.723380],[-122.503039,37.724007],[-122.503039,37.725262],[-122.503666,37.725419],[-122.505391,37.726360],[-122.506019,37.726987],[-122.506489,37.727928],[-122.507274,37.732634],[-122.506646,37.735457],[-122.505391,37.735457],[-122.505078,37.735614],[-122.502098,37.735457],[-122.500529,37.735143],[-122.499275,37.734516],[-122.499118,37.734359],[-122.496608,37.733732],[-122.496452,37.733888],[-122.491276,37.734045]]]}}
,{"id":94158,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.394505,37.766511],[-122.394819,37.766511],[-122.396544,37.767923],[-122.396701,37.767766],[-122.400779,37.771216],[-122.398583,37.772942],[-122.397956,37.772314],[-122.397642,37.773098],[-122.396231,37.774510],[-122.396231,37.774667],[-122.394192,37.776392],[-122.394035,37.776392],[-122.392466,37.775137],[-122.390271,37.776706],[-122.390427,37.777019],[-122.390114,37.776863],[-122.390427,37.777176],[-122.387604,37.778274],[-122.387761,37.778274],[-122.385409,37.778431],[-122.387291,37.778431],[-122.387291,37.778588],[-122.385095,37.778588],[-122.385095,37.778745],[-122.387291,37.778588],[-122.387447,37.778902],[-122.384781,37.778902],[-122.384781,37.779215],[-122.387447,37.778902],[-122.387447,37.779215],[-122.384781,37.779372],[-122.384781,37.779529],[-122.387447,37.779215],[-122.387447,37.779686],[-122.384781,37.779686],[-122.384781,37.779843],[-122.387447,37.779686],[-122.387447,37.779999],[-122.387447,37.779999],[-122.387291,37.779999],[-122.387291,37.779999],[-122.387134,37.779999],[-122.386977,37.779999],[-122.386977,37.779999],[-122.386820,37.779999],[-122.386820,37.779999],[-122.386350,37.779999],[-122.386350,37.780156],[-122.386036,37.779999],[-122.386036,37.780156],[-122.385879,37.779999],[-122.385879,37.780156],[-122.385409,37.779999],[-122.385409,37.780156],[-122.385252,37.779999],[-122.385252,37.780156],[-122.384938,37.779999],[-122.384781,37.780156],[-122.384781,37.780156],[-122.384781,37.780313],[-122.384781,37.780156],[-122.385095,37.780313],[-122.385095,37.780156],[-122.385095,37.780313],[-122.385252,37.780156],[-122.385252,37.780313],[-122.385252,37.780156],[-122.385409,37.780313],[-122.385409,37.780156],[-122.385565,37.780313],[-122.385565,37.780156],[-122.385722,37.780313],[-122.385722,37.780156],[-122.385879,37.780313],[-122.385879,37.780156],[-122.386036,37.780313],[-122.386036,37.780156],[-122.386036,37.780313],[-122.386193,37.780156],[-122.386193,37.780156],[-122.386193,37.780156],[-122.386350,37.780156],[-122.386350,37.780156],[-122.386506,37.780156],[-122.386506,37.780156],[-122.386663,37.780156],[-122.386506,37.780156],[-122.386663,37.780156],[-122.386820,37.780156],[-122.386820,37.780156],[-122.386820,37.780156],[-122.386977,37.780156],[-122.386977,37.779999],[-122.386977,37.780156],[-122.386977,37.779999],[-122.387291,37.780156],[-122.387291,37.779999],[-122.387447,37.780156],[-122.387447,37.779999],[-122.387604,37.780470],[-122.387134,37.780313],[-122.387134,37.780470],[-122.387134,37.780313],[-122.386977,37.780470],[-122.386977,37.780470],[-122.386820,37.780470],[-122.386820,37.780470],[-122.386663,37.780470],[-122.386663,37.780470],[-122.386663,37.780470],[-122.386506,37.780470],[-122.386506,37.780470],[-122.386506,37.780470],[-122.386350,37.780470],[-122.386350,37.780470],[-122.386193,37.780470],[-122.386193,37.780470],[-122.386193,37.780470],[-122.386036,37.780470],[-122.386036,37.780627],[-122.386036,37.780470],[-122.385879,37.780627],[-122.385879,37.780470],[-122.385722,37.780627],[-122.385722,37.780470],[-122.385722,37.780627],[-122.385565,37.780470],[-122.385565,37.780627],[-122.385565,37.780470],[-122.385409,37.780627],[-122.385409,37.780470],[-122.385252,37.780627],[-122.385252,37.780470],[-122.385095,37.780627],[-122.385095,37.780470],[-122.384938,37.780627],[-122.384938,37.780470],[-122.384781,37.780627],[-122.384781,37.780470],[-122.384781,37.780784],[-122.384781,37.780627],[-122.384938,37.780784],[-122.384938,37.780627],[-122.385252,37.780784],[-122.385252,37.780627],[-122.385252,37.780784],[-122.385252,37.780627],[-122.385565,37.780784],[-122.385565,37.780627],[-122.385722,37.780784],[-122.385722,37.780627],[-122.385722,37.780627],[-122.385722,37.780627],[-122.385879,37.780627],[-122.386036,37.780627],[-122.386036,37.780627],[-122.386036,37.780627],[-122.386350,37.780627],[-122.386193,37.780627],[-122.386350,37.780627],[-122.386350,37.780627],[-122.386506,37.780627],[-122.386506,37.780470],[-122.386663,37.780627],[-122.386663,37.780470],[-122.386820,37.780627],[-122.386820,37.780470],[-122.386820,37.780627],[-122.386977,37.780470],[-122.386977,37.780627],[-122.386977,37.780470],[-122.387134,37.780627],[-122.387134,37.780470],[-122.387291,37.780627],[-122.387291,37.780470],[-122.387447,37.780627],[-122.387604,37.780470],[-122.387604,37.780940],[-122.387447,37.780784],[-122.387291,37.780940],[-122.387291,37.780784],[-122.387291,37.780940],[-122.387134,37.780784],[-122.387134,37.780940],[-122.386977,37.780784],[-122.386977,37.780940],[-122.386977,37.780784],[-122.386977,37.780940],[-122.386820,37.780940],[-122.386663,37.780940],[-122.386663,37.780940],[-122.386663,37.780940],[-122.386506,37.780940],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386350,37.780940],[-122.386193,37.781097],[-122.386036,37.780940],[-122.386036,37.781097],[-122.386036,37.780940],[-122.385879,37.781097],[-122.385879,37.780940],[-122.385722,37.781097],[-122.385722,37.780940],[-122.385722,37.781097],[-122.385565,37.780940],[-122.385565,37.781097],[-122.385409,37.780940],[-122.385409,37.781097],[-122.385252,37.780940],[-122.385252,37.781097],[-122.385252,37.780940],[-122.385095,37.781097],[-122.385095,37.780940],[-122.385095,37.781097],[-122.384938,37.780940],[-122.384781,37.781097],[-122.384781,37.780940],[-122.384781,37.781254],[-122.384781,37.781097],[-122.384938,37.781254],[-122.385095,37.781097],[-122.385095,37.781254],[-122.385095,37.781097],[-122.385252,37.781254],[-122.385252,37.781097],[-122.385409,37.781254],[-122.385409,37.781097],[-122.385565,37.781254],[-122.385565,37.781097],[-122.385565,37.781254],[-122.385722,37.781097],[-122.385722,37.781254],[-122.385879,37.781097],[-122.385879,37.781254],[-122.385879,37.781097],[-122.386036,37.781254],[-122.386036,37.781097],[-122.386193,37.781254],[-122.386193,37.781097],[-122.386350,37.781097],[-122.386350,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386506,37.781097],[-122.386663,37.781097],[-122.386663,37.780940],[-122.386820,37.781097],[-122.386977,37.780940],[-122.386977,37.781097],[-122.386977,37.780940],[-122.387134,37.781097],[-122.387134,37.780940],[-122.387291,37.781097],[-122.387291,37.780940],[-122.387291,37.781097],[-122.387447,37.780940],[-122.387447,37.781097],[-122.387604,37.780940],[-122.387604,37.781411],[-122.385565,37.781568],[-122.385565,37.781725],[-122.384781,37.781725],[-122.385565,37.781725],[-122.385565,37.781882],[-122.387761,37.781725],[-122.387761,37.782352],[-122.384781,37.782509],[-122.384781,37.782823],[-122.381644,37.783607],[-122.378037,37.753650],[-122.380076,37.753337],[-122.380076,37.754591],[-122.381488,37.754591],[-122.382899,37.754434],[-122.383370,37.754748],[-122.384154,37.754591],[-122.383997,37.754905],[-122.381644,37.755219],[-122.381331,37.755062],[-122.380703,37.755219],[-122.380703,37.755532],[-122.381017,37.755689],[-122.381017,37.755846],[-122.381174,37.755846],[-122.381331,37.756317],[-122.381331,37.756473],[-122.381331,37.757101],[-122.381488,37.757101],[-122.381488,37.757571],[-122.381331,37.757885],[-122.384781,37.757728],[-122.385095,37.757728],[-122.385565,37.758042],[-122.386350,37.758042],[-122.386663,37.760551],[-122.387604,37.760551],[-122.387918,37.764315],[-122.393721,37.764002],[-122.393878,37.766041],[-122.394505,37.766511]]]}}
,{"id":94103,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.406425,37.764472],[-122.410346,37.764315],[-122.410503,37.765570],[-122.426344,37.764629],[-122.427599,37.764629],[-122.427755,37.765570],[-122.426344,37.765884],[-122.426658,37.769021],[-122.426971,37.769177],[-122.426344,37.769648],[-122.420227,37.774353],[-122.409248,37.783136],[-122.409091,37.783136],[-122.408621,37.783293],[-122.408621,37.783607],[-122.404543,37.786744],[-122.403445,37.787685],[-122.402818,37.787998],[-122.401877,37.787214],[-122.402504,37.786744],[-122.400465,37.785018],[-122.399367,37.785959],[-122.397799,37.784705],[-122.405641,37.778431],[-122.403602,37.777019],[-122.403132,37.777333],[-122.402034,37.776392],[-122.402504,37.776078],[-122.399367,37.773569],[-122.403916,37.770119],[-122.403445,37.769805],[-122.402034,37.769962],[-122.401877,37.767452],[-122.400622,37.767452],[-122.399681,37.766668],[-122.399838,37.766511],[-122.399838,37.766197],[-122.400779,37.766197],[-122.400465,37.763688],[-122.401406,37.763531],[-122.401563,37.764786],[-122.405014,37.764629],[-122.406425,37.764472]]]}}
,{"id":94122,"type":"Feature","properties":{"name":"San Francisco"},"geometry":{"type":"Polygon","coordinates":[[[-122.477317,37.765413],[-122.458496,37.766197],[-122.457712,37.766041],[-122.457555,37.763531],[-122.460849,37.762590],[-122.460535,37.760551],[-122.460065,37.759297],[-122.463201,37.758669],[-122.462574,37.756630],[-122.463672,37.756473],[-122.463515,37.755376],[-122.463829,37.753807],[-122.463358,37.753023],[-122.467750,37.752709],[-122.468063,37.752709],[-122.468377,37.753180],[-122.469161,37.752866],[-122.469475,37.753650],[-122.470259,37.753964],[-122.469946,37.754748],[-122.471043,37.754748],[-122.471200,37.753493],[-122.470887,37.752552],[-122.508215,37.750984],[-122.509783,37.764002],[-122.509940,37.764159],[-122.477317,37.765413]]]}}
,{"id":95212,"type":"Feature","properties":{"name":"Stockton"},"geometry":{"type":"Polygon","coordinates":[[[-121.277331,38.057450],[-121.277017,38.057450],[-121.277017,38.057607],[-121.262274,38.057607],[-121.259451,38.057607],[-121.259451,38.057607],[-121.259451,38.057450],[-121.257569,38.057450],[-121.259138,38.059175],[-121.259294,38.061057],[-121.259138,38.061057],[-121.259138,38.060901],[-121.257255,38.062155],[-121.255060,38.063253],[-121.253178,38.064508],[-121.250354,38.064665],[-121.249413,38.064978],[-121.247061,38.066390],[-121.245649,38.066861],[-121.242356,38.067017],[-121.242356,38.067331],[-121.235455,38.067331],[-121.230279,38.068429],[-121.228083,38.069684],[-121.226985,38.069997],[-121.220241,38.070154],[-121.219457,38.070311],[-121.218830,38.070782],[-121.218045,38.072036],[-121.217261,38.072507],[-121.214595,38.073448],[-121.212085,38.074075],[-121.214281,38.079565],[-121.214909,38.081760],[-121.214909,38.085054],[-121.213811,38.085525],[-121.213654,38.085995],[-121.213183,38.086309],[-121.212870,38.086466],[-121.211144,38.086309],[-121.209105,38.086779],[-121.207537,38.086936],[-121.205655,38.088348],[-121.204871,38.089759],[-121.203930,38.090700],[-121.202675,38.091171],[-121.201577,38.091171],[-121.196872,38.092269],[-121.193265,38.092896],[-121.188246,38.093053],[-121.186677,38.092426],[-121.184952,38.092582],[-121.184795,38.092896],[-121.185266,38.093367],[-121.185266,38.093680],[-121.184325,38.094151],[-121.184168,38.094464],[-121.184795,38.095249],[-121.185579,38.095876],[-121.185579,38.096503],[-121.184325,38.097131],[-121.181815,38.097601],[-121.180560,38.098072],[-121.179306,38.097915],[-121.187148,38.072507],[-121.180247,38.072664],[-121.163779,38.080035],[-121.159858,38.080192],[-121.160014,38.073448],[-121.159701,38.073291],[-121.156878,38.073134],[-121.152957,38.073291],[-121.152016,38.072977],[-121.150290,38.073134],[-121.150133,38.073605],[-121.149506,38.073762],[-121.148879,38.073448],[-121.148251,38.073762],[-121.147938,38.073605],[-121.146526,38.074389],[-121.146056,38.074389],[-121.145585,38.074703],[-121.144644,38.075016],[-121.144173,38.075487],[-121.143860,38.076271],[-121.143546,38.076428],[-121.142919,38.076271],[-121.142605,38.075644],[-121.141821,38.075016],[-121.140096,38.074703],[-121.139782,38.074389],[-121.139468,38.074389],[-121.139155,38.074859],[-121.137900,38.075016],[-121.136959,38.075800],[-121.136175,38.076114],[-121.135547,38.076271],[-121.134920,38.076114],[-121.134606,38.076114],[-121.133979,38.076742],[-121.133822,38.077369],[-121.133665,38.077369],[-121.133038,38.076585],[-121.133038,38.074389],[-121.132410,38.074232],[-121.132410,38.073918],[-121.140880,38.073762],[-121.141037,38.065292],[-121.141664,38.065292],[-121.142135,38.065606],[-121.143546,38.067488],[-121.143546,38.068115],[-121.144330,38.068429],[-121.146212,38.067958],[-121.147938,38.068115],[-121.148251,38.067802],[-121.148408,38.067174],[-121.148565,38.066861],[-121.149663,38.065920],[-121.150133,38.065606],[-121.150918,38.065606],[-121.152800,38.065920],[-121.153741,38.065135],[-121.154525,38.064822],[-121.155623,38.065135],[-121.156721,38.065292],[-121.156721,38.064665],[-121.157505,38.064351],[-121.158760,38.063567],[-121.158603,38.063096],[-121.158603,38.062626],[-121.159701,38.062155],[-121.159858,38.061528],[-121.160171,38.061214],[-121.160485,38.061214],[-121.161426,38.061528],[-121.162994,38.060744],[-121.163151,38.058548],[-121.163622,38.058548],[-121.164249,38.058705],[-121.164406,38.057921],[-121.165190,38.057607],[-121.165504,38.057607],[-121.165817,38.057921],[-121.166288,38.057921],[-121.166602,38.057607],[-121.167072,38.057293],[-121.167543,38.056509],[-121.168484,38.055568],[-121.169738,38.054784],[-121.170052,38.054157],[-121.170523,38.053686],[-121.170993,38.053372],[-121.172248,38.053059],[-121.174130,38.051961],[-121.174914,38.051490],[-121.174914,38.050863],[-121.176169,38.050549],[-121.176483,38.050079],[-121.176796,38.049922],[-121.177580,38.049765],[-121.178678,38.050079],[-121.179306,38.050706],[-121.181031,38.051020],[-121.181658,38.051020],[-121.182443,38.051177],[-121.184011,38.050706],[-121.184795,38.050549],[-121.185893,38.051020],[-121.187305,38.051961],[-121.188873,38.051647],[-121.189344,38.051804],[-121.189814,38.052274],[-121.190912,38.052274],[-121.192167,38.052431],[-121.192480,38.052274],[-121.193265,38.051177],[-121.192480,38.050392],[-121.191539,38.049294],[-121.191539,38.048981],[-121.191696,38.048667],[-121.192480,38.048197],[-121.192794,38.047883],[-121.194206,38.046628],[-121.196245,38.046001],[-121.197656,38.046158],[-121.198911,38.045373],[-121.200636,38.045373],[-121.201577,38.044903],[-121.202675,38.044589],[-121.203145,38.043648],[-121.203302,38.042393],[-121.203616,38.041296],[-121.204087,38.040198],[-121.204400,38.039727],[-121.205498,38.039100],[-121.210046,38.037531],[-121.210674,38.037061],[-121.213654,38.034081],[-121.215222,38.032356],[-121.218045,38.030003],[-121.226044,38.023886],[-121.232788,38.018397],[-121.234827,38.015887],[-121.236239,38.013692],[-121.237180,38.012907],[-121.237650,38.012594],[-121.241258,38.012594],[-121.242669,38.012123],[-121.243767,38.012280],[-121.245022,38.012123],[-121.246277,38.010555],[-121.247374,38.009771],[-121.257099,38.005222],[-121.257569,38.004909],[-121.257569,38.004752],[-121.258196,38.004595],[-121.261647,38.003968],[-121.265725,38.004595],[-121.266195,38.004595],[-121.267921,38.003497],[-121.267764,38.002085],[-121.268391,38.000360],[-121.268548,38.000360],[-121.269489,37.999890],[-121.270744,37.999890],[-121.271528,37.999733],[-121.272939,37.998164],[-121.274665,37.996910],[-121.275292,37.996282],[-121.275449,37.995655],[-121.275763,37.995341],[-121.276076,37.995185],[-121.276390,37.995341],[-121.277488,37.995185],[-121.279527,37.994714],[-121.279684,37.994557],[-121.279370,37.994557],[-121.279527,37.994557],[-121.281566,37.994400],[-121.278586,38.036904],[-121.295054,38.036904],[-121.295368,38.044276],[-121.294583,38.044746],[-121.292231,38.047569],[-121.289565,38.049294],[-121.287369,38.049451],[-121.285330,38.050863],[-121.282507,38.052118],[-121.281879,38.052274],[-121.277488,38.052431],[-121.277488,38.052745],[-121.277802,38.052588],[-121.277488,38.052745],[-121.277645,38.052745],[-121.277645,38.052902],[-121.277331,38.057450]]]}}
,{"id":95330,"type":"Feature","properties":{"name":"Lathrop"},"geometry":{"type":"Polygon","coordinates":[[[-121.280468,37.855597],[-121.274351,37.855597],[-121.274665,37.855597],[-121.274978,37.826424],[-121.263059,37.826424],[-121.253805,37.826581],[-121.263059,37.826424],[-121.262588,37.821562],[-121.258510,37.819837],[-121.253334,37.816857],[-121.253021,37.811838],[-121.261961,37.811838],[-121.261647,37.804153],[-121.261961,37.801800],[-121.262745,37.799448],[-121.263843,37.797252],[-121.269175,37.797252],[-121.270587,37.797095],[-121.270587,37.790508],[-121.272939,37.789253],[-121.275763,37.787998],[-121.300387,37.779686],[-121.304935,37.778117],[-121.306974,37.776706],[-121.318266,37.764159],[-121.319051,37.765100],[-121.319992,37.765884],[-121.320305,37.765884],[-121.321874,37.767452],[-121.323128,37.769334],[-121.324540,37.770746],[-121.325795,37.771373],[-121.328304,37.772314],[-121.329402,37.773412],[-121.331755,37.775137],[-121.334107,37.775608],[-121.335048,37.776078],[-121.335048,37.776392],[-121.337401,37.778745],[-121.338185,37.781254],[-121.338185,37.783136],[-121.338969,37.784077],[-121.348066,37.790351],[-121.349791,37.791135],[-121.352771,37.793017],[-121.354653,37.793801],[-121.364848,37.799448],[-121.366416,37.800702],[-121.369553,37.802114],[-121.370965,37.803212],[-121.372690,37.803526],[-121.374415,37.804153],[-121.379120,37.804467],[-121.388060,37.806349],[-121.389001,37.806819],[-121.389629,37.807133],[-121.390570,37.808231],[-121.390727,37.809172],[-121.390883,37.809172],[-121.390727,37.809329],[-121.391040,37.809329
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment